diff --git a/Make.config b/Make.config
index efd757c7e0ec..0e7edc1cca26 100644
--- a/Make.config
+++ b/Make.config
@@ -401,7 +401,7 @@ DOTNET_BCL_DIR:=$(abspath $(TOP)/packages/microsoft.netcore.app.ref/$(DOTNET_BCL
ifneq ($(DOTNET_BCL_DIR),$(shell ls -1d $(DOTNET_BCL_DIR) 2>/dev/null))
DOTNET_BCL_DIR:=$(abspath $(TOP)/packages/microsoft.netcore.app.ref/$(DOTNET_BCL_VERSION)/ref/net8.0)
endif
-DOTNET_ANALYZERS_DIR=$(DOTNET_DIR)/sdk/$(DOTNET_VERSION_BAND)/Sdks/Microsoft.NET.Sdk/analyzers
+DOTNET_ANALYZERS_DIR?=$(DOTNET_DIR)/sdk/$(DOTNET_VERSION_BAND)/Sdks/Microsoft.NET.Sdk/analyzers
# The sdk version band has the last two digits set to 0: https://github.com/dotnet/sdk/blob/22c4860dcb2cf6b123dd641cc4a87a50380759d5/src/Resolvers/Microsoft.NET.Sdk.WorkloadManifestReader/SdkDirectoryWorkloadManifestProvider.cs#L52-L53
DOTNET_MANIFEST_VERSION_BAND=$(shell echo $(DOTNET_VERSION_BAND) | sed 's/..$$/00/')
diff --git a/NuGet.config b/NuGet.config
index b25b1b7a93c6..89d632919b1f 100644
--- a/NuGet.config
+++ b/NuGet.config
@@ -14,20 +14,14 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
@@ -46,25 +40,21 @@
+
+
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
diff --git a/create-make-config.sh b/create-make-config.sh
index e5f581a73631..3171d658f6bb 100755
--- a/create-make-config.sh
+++ b/create-make-config.sh
@@ -33,4 +33,10 @@ if which ccache > /dev/null 2>&1; then
echo "Found ccache on the system, enabling it"
fi
+# Detect ADR
+if test -d ../macios-adr; then
+ printf "ENABLE_XAMARIN=1\n" >> "$OUTPUT_FILE"
+ echo "Detected the macios-adr repository, automatically enabled the Xamarin build"
+fi
+
mv "$OUTPUT_FILE" "$OUTPUT"
diff --git a/docs/api/AudioToolbox/AudioQueue.xml b/docs/api/AudioToolbox/AudioQueue.xml
new file mode 100644
index 000000000000..07536356f9ce
--- /dev/null
+++ b/docs/api/AudioToolbox/AudioQueue.xml
@@ -0,0 +1,66 @@
+
+
+ Current Level meters, one per channel in the range zero (minimum) to one (maximum).
+ Array of level meters, one per audio channel.
+
+
+ To use this property, make sure that you set the property on the queue.
+
+
+ Use the if you want to get the values in decibels.
+
+
+
+
+
+
+
+ Current Level meters, one per channel in decibels.
+ Array of level meters, one per audio channel.
+
+
+ To use this property, make sure that you set the property on the queue.
+
+
+ Use the if you want to get the values normalized to the range zero (minimum) to one (maximum).
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/AudioUnit/AUAudioUnit.xml b/docs/api/AudioUnit/AUAudioUnit.xml
new file mode 100644
index 000000000000..fcac8a29d342
--- /dev/null
+++ b/docs/api/AudioUnit/AUAudioUnit.xml
@@ -0,0 +1,54 @@
+
+
+ Notification constant for AudioComponentRegistrationsChanged
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification AUAudioUnit", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification AUAudioUnit", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (AUAudioUnit.AudioComponentRegistrationsChangedNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for AudioComponentInstanceInvalidation
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification AUAudioUnit", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification AUAudioUnit", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (AUAudioUnit.AudioComponentInstanceInvalidationNotification, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/AudioUnit/AudioComponentDescription.xml b/docs/api/AudioUnit/AudioComponentDescription.xml
new file mode 100644
index 000000000000..5de678ccb93e
--- /dev/null
+++ b/docs/api/AudioUnit/AudioComponentDescription.xml
@@ -0,0 +1,62 @@
+
+
+ Audio Unit component subtype, depending on the value you should use one of the values from , , , , , T:AudioUnit.AudioTypePanner,
+
+ Audio Unit component subtype, depending on the you should use one of the values from , , , , , T:AudioUnit.AudioTypePanner, .
+
+ Since this is an integer, and the values on those enumerations are strongly typed, you typically need to cast. The following example shows this:
+
+
+
+
+ .
+
+
+ Audio Unit component subtype, depending on the value you should use one of the values from , , , , , T:AudioUnit.AudioTypePanner,
+
+ Audio Unit component subtype, depending on the you should use one of the values from , , , , , T:AudioUnit.AudioTypePanner, .
+
+ Since this is an integer, and the values on those enumerations are strongly typed, you typically need to cast. The following example shows this:
+
+
+
+
+ .
+
+
\ No newline at end of file
diff --git a/docs/api/CoreData/NSPersistentStoreCoordinator.xml b/docs/api/CoreData/NSPersistentStoreCoordinator.xml
new file mode 100644
index 000000000000..e32e0b92aadd
--- /dev/null
+++ b/docs/api/CoreData/NSPersistentStoreCoordinator.xml
@@ -0,0 +1,262 @@
+
+
+ Notification constant for WillRemoveStore
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = NSPersistentStoreCoordinator.Notifications.ObserveWillRemoveStore (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification NSPersistentStoreCoordinator", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification NSPersistentStoreCoordinator", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (NSPersistentStoreCoordinator.WillRemoveStoreNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for StoresDidChange
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = NSPersistentStoreCoordinator.Notifications.ObserveStoresDidChange (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification NSPersistentStoreCoordinator", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification NSPersistentStoreCoordinator", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (NSPersistentStoreCoordinator.StoresDidChangeNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidImportUbiquitousContentChanges
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = NSPersistentStoreCoordinator.Notifications.ObserveDidImportUbiquitousContentChanges (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification NSPersistentStoreCoordinator", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification NSPersistentStoreCoordinator", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (NSPersistentStoreCoordinator.DidImportUbiquitousContentChangesNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for StoresWillChange
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+
+ Console.WriteLine ("EventType", args.EventType);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, CoreData.NSPersistentStoreCoordinatorStoreChangeEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+
+ Console.WriteLine ("EventType", args.EventType);
+}
+
+void Setup ()
+{
+ notification = NSPersistentStoreCoordinator.Notifications.ObserveStoresWillChange (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification NSPersistentStoreCoordinator", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification NSPersistentStoreCoordinator", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (NSPersistentStoreCoordinator.StoresWillChangeNotification, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/CoreLocation/CLPlacemark.xml b/docs/api/CoreLocation/CLPlacemark.xml
new file mode 100644
index 000000000000..f87087a87d2c
--- /dev/null
+++ b/docs/api/CoreLocation/CLPlacemark.xml
@@ -0,0 +1,41 @@
+
+
+ Developers should not use this deprecated property. Developers should use 'CLPlacemark' properties to access data.
+ To be added.
+
+ Available keys are:
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/CoreMidi/Midi.xml b/docs/api/CoreMidi/Midi.xml
new file mode 100644
index 000000000000..11b2f8568c18
--- /dev/null
+++ b/docs/api/CoreMidi/Midi.xml
@@ -0,0 +1,132 @@
+
+
+ Notification raised when the MIDI network has changed.
+
+
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = Midi.Notifications.ObserveNetworkNotificationContactsDidChange (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification Midi", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification Midi", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (Midi.NetworkNotificationContactsDidChange, Callback);
+}
+]]>
+
+
+
+
+ Notification raised when the MIDI session has changed
+
+
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = Midi.Notifications.ObserveNetworkNotificationSessionDidChange (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification Midi", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification Midi", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (Midi.NetworkNotificationSessionDidChange, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/ExternalAccessory/EAAccessoryManager.xml b/docs/api/ExternalAccessory/EAAccessoryManager.xml
new file mode 100644
index 000000000000..b49ff664c1be
--- /dev/null
+++ b/docs/api/ExternalAccessory/EAAccessoryManager.xml
@@ -0,0 +1,142 @@
+
+
+ Notification constant for DidConnect
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+
+ Console.WriteLine ("Accessory", args.Accessory);
+ Console.WriteLine ("Selected", args.Selected);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, ExternalAccessory.EAAccessoryEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+
+ Console.WriteLine ("Accessory", args.Accessory);
+ Console.WriteLine ("Selected", args.Selected);
+}
+
+void Setup ()
+{
+ notification = EAAccessoryManager.Notifications.ObserveDidConnect (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification EAAccessoryManager", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification EAAccessoryManager", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (EAAccessoryManager.DidConnectNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidDisconnect
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+
+ Console.WriteLine ("Accessory", args.Accessory);
+ Console.WriteLine ("Selected", args.Selected);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, ExternalAccessory.EAAccessoryEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+
+ Console.WriteLine ("Accessory", args.Accessory);
+ Console.WriteLine ("Selected", args.Selected);
+}
+
+void Setup ()
+{
+ notification = EAAccessoryManager.Notifications.ObserveDidDisconnect (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification EAAccessoryManager", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification EAAccessoryManager", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (EAAccessoryManager.DidDisconnectNotification, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/Foundation/NSBundleResourceRequest.xml b/docs/api/Foundation/NSBundleResourceRequest.xml
new file mode 100644
index 000000000000..d48d5e52f88a
--- /dev/null
+++ b/docs/api/Foundation/NSBundleResourceRequest.xml
@@ -0,0 +1,28 @@
+
+
+ Notification constant for LowDiskSpace
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification NSBundleResourceRequest", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification NSBundleResourceRequest", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (NSBundleResourceRequest.LowDiskSpaceNotification, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/Foundation/NSCalendar.xml b/docs/api/Foundation/NSCalendar.xml
new file mode 100644
index 000000000000..98d961073665
--- /dev/null
+++ b/docs/api/Foundation/NSCalendar.xml
@@ -0,0 +1,66 @@
+
+
+ Notification constant for DayChanged
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = NSCalendar.Notifications.ObserveDayChanged (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification NSCalendar", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification NSCalendar", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (NSCalendar.DayChangedNotification, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/GameController/GCController.xml b/docs/api/GameController/GCController.xml
new file mode 100644
index 000000000000..766b73d9283f
--- /dev/null
+++ b/docs/api/GameController/GCController.xml
@@ -0,0 +1,130 @@
+
+
+ Notification constant for DidConnect
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = GCController.Notifications.ObserveDidConnect (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification GCController", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification GCController", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (GCController.DidConnectNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidDisconnect
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = GCController.Notifications.ObserveDidDisconnect (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification GCController", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification GCController", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (GCController.DidDisconnectNotification, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/GameKit/GKPlayer.xml b/docs/api/GameKit/GKPlayer.xml
new file mode 100644
index 000000000000..b34eaa8bb211
--- /dev/null
+++ b/docs/api/GameKit/GKPlayer.xml
@@ -0,0 +1,66 @@
+
+
+ Notification constant for DidChangeNotificationName
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ The following example shows how to use the strongly typed Notifications class, to take the guesswork out of the available properties in the notification:
+
+ {
+ /* Access strongly typed args */
+ Console.WriteLine ("Notification: {0}", args.Notification);
+});
+
+// To stop listening:
+notification.Dispose ();
+
+//
+// Method style
+//
+NSObject notification;
+void Callback (object sender, Foundation.NSNotificationEventArgs args)
+{
+ // Access strongly typed args
+ Console.WriteLine ("Notification: {0}", args.Notification);
+}
+
+void Setup ()
+{
+ notification = GKPlayer.Notifications.ObserveDidChangeNotificationName (Callback);
+}
+
+void Teardown ()
+{
+ notification.Dispose ();
+}]]>
+
+ The following example shows how to use the notification with the DefaultCenter API:
+
+ {Console.WriteLine ("Received the notification GKPlayer", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification GKPlayer", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (GKPlayer.DidChangeNotificationNameNotification, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/docs/api/MultipeerConnectivity/MCAdvertiserAssistant.xml b/docs/api/MultipeerConnectivity/MCAdvertiserAssistant.xml
new file mode 100644
index 000000000000..709b4fdee356
--- /dev/null
+++ b/docs/api/MultipeerConnectivity/MCAdvertiserAssistant.xml
@@ -0,0 +1,11 @@
+
+
+ A small dictionary of data available to browsers.
+ This will contain the data passed in to the C:MultipeerConnectivity.MCAdvertiserAssistant(string,Foundation.NSDictionary, MultipeerConnectivity.MCSession) constructor.
+
+ The total size of keys and data in this dictionary should be less than ~400 bytes so that it can fit into a single Bluetooth data packet.
+ The dictionary should map s to s. Each key-value pair must be no more than 255 bytes with the equals sign inserted between them (i.e., System.Text.ASCIIEncoding.Unicode.GetByteCount(String.Format("{0}={1}",key,value)) <= 255 ). Keys may not contain equals signs.
+ The dictionary is advertised as a Bonjour TXT record (see RFC 6763, Section 6).
+
+
+
\ No newline at end of file
diff --git a/docs/api/MultipeerConnectivity/MCNearbyServiceAdvertiser.xml b/docs/api/MultipeerConnectivity/MCNearbyServiceAdvertiser.xml
new file mode 100644
index 000000000000..4aa5a8f5ed23
--- /dev/null
+++ b/docs/api/MultipeerConnectivity/MCNearbyServiceAdvertiser.xml
@@ -0,0 +1,29 @@
+
+
+ A small dictionary of data available to aide peer discovery and negotiation.
+ This will contain the data passed in to the C:MultipeerConnectivity.MCNearbyServiceAdvertiser(MultipeerConnectivity.MCPeerID,Foundation.NSDictionary,string) constructor.
+
+ The total size of keys and data in this dictionary should be less than ~400 bytes so that it can fit into a single Bluetooth data packet.
+ The dictionary should map s to s. Each key-value pair must be no more than 255 bytes with the equals sign inserted between them (i.e., System.Text.ASCIIEncoding.Unicode.GetByteCount(String.Format("{0}={1}",key,value)) <= 255 ). Keys may not contain equals signs.
+ The dictionary is advertised as a Bonjour TXT record (see RFC 6763, Section 6).
+
+
+
+ A small dictionary of data available to aide peer discovery and negotiation.
+ This will contain the data passed in to the C:MultipeerConnectivity.MCNearbyServiceAdvertiser(MultipeerConnectivity.MCPeerID,Foundation.NSDictionary,string) constructor.
+
+ The total size of keys and data in this dictionary should be less than ~400 bytes so that it can fit into a single Bluetooth data packet.
+ The dictionary should map s to s. Each key-value pair must be no more than 255 bytes with the equals sign inserted between them (i.e., System.Text.ASCIIEncoding.Unicode.GetByteCount(String.Format("{0}={1}",key,value)) <= 255 ). Keys may not contain equals signs.
+ The dictionary is advertised as a Bonjour TXT record (see RFC 6763, Section 6).
+
+
+
+ A small dictionary of data available to aide peer discovery and negotiation.
+ This will contain the data passed in to the C:MultipeerConnectivity.MCNearbyServiceAdvertiser(MultipeerConnectivity.MCPeerID,Foundation.NSDictionary,string) constructor.
+
+ The total size of keys and data in this dictionary should be less than ~400 bytes so that it can fit into a single Bluetooth data packet.
+ The dictionary should map s to s. Each key-value pair must be no more than 255 bytes with the equals sign inserted between them (i.e., System.Text.ASCIIEncoding.Unicode.GetByteCount(String.Format("{0}={1}",key,value)) <= 255 ). Keys may not contain equals signs.
+ The dictionary is advertised as a Bonjour TXT record (see RFC 6763, Section 6).
+
+
+
\ No newline at end of file
diff --git a/docs/api/PdfKit/PdfDocument.xml b/docs/api/PdfKit/PdfDocument.xml
new file mode 100644
index 000000000000..ece8a38f48d2
--- /dev/null
+++ b/docs/api/PdfKit/PdfDocument.xml
@@ -0,0 +1,262 @@
+
+
+ Notification constant for DidEndPageWrite
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidEndPageWriteNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidBeginPageWrite
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidBeginPageWriteNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidEndWrite
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidEndWriteNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidBeginWrite
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidBeginWriteNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidFindMatch
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidFindMatchNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidEndPageFind
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidEndPageFindNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidBeginPageFind
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidBeginPageFindNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidBeginFind
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidBeginFindNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidEndFind
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidEndFindNotification, Callback);
+}
+]]>
+
+
+
+
+ Notification constant for DidUnlock
+ NSString constant, should be used as a token to NSNotificationCenter.
+
+
+
+ {Console.WriteLine ("Received the notification PdfDocument", notification); }
+
+
+// Method style
+void Callback (NSNotification notification)
+{
+ Console.WriteLine ("Received a notification PdfDocument", notification);
+}
+
+void Setup ()
+{
+ NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidUnlockNotification, Callback);
+}
+]]>
+
+
+
+
\ No newline at end of file
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 9012aa648f0c..fc40a68a33ce 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -1,34 +1,34 @@
-
+
https://github.com/dotnet/sdk
- 049799c39d766c58ef6388865d5f5ed273b6a75e
+ 346d06baea1cf7113e181e779b056b955973c633
https://github.com/dotnet/runtime
cf47d9ff6827a3e1d6f2acbf925cd618418f20dd
-
+
https://dev.azure.com/dnceng/internal/_git/dotnet-runtime
- c8acea22626efab11c13778c028975acdc34678f
+ 80aa709f5d919c6814726788dc6dabe23e79e672
-
+
https://dev.azure.com/dnceng/internal/_git/dotnet-runtime
- c8acea22626efab11c13778c028975acdc34678f
+ 80aa709f5d919c6814726788dc6dabe23e79e672
-
+
https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore
- 4442a188f9200a57635373dcd640893c0e8dcc78
+ 704f7cb1d2cea33afb00c2097731216f121c2c73
-
+
https://github.com/dotnet/emsdk
- 4c9d1b112c16716c2479e054e9ad4db8b5b8c70c
+ 2c27e405e17595694d91892159593d6dd10e61e2
-
+
https://github.com/dotnet/cecil
- 72791f7604750fb8af9249b94318547c5f1d6683
+ 7ea2381200e5ca70cf67efc887d9cd693d82b77f
diff --git a/eng/Versions.props b/eng/Versions.props
index 1bde8156add4..5adbd0affde3 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -2,16 +2,16 @@
- 9.0.103-servicing.25065.25
- 9.0.1
+ 9.0.104-servicing.25111.36
+ 9.0.2
9.0.0-alpha.1.23556.4
9.0.0-beta.25111.5
8.0.0-beta.24413.2
- 9.0.1
+ 9.0.2
8.0.0-rtm.23511.3
9.0.0-rc.2.24462.10
7.0.100-alpha.1.21601.1
- 0.11.5-alpha.24602.1
+ 0.11.5-alpha.25056.3
10.0.0-prerelease.24610.1
9.0.0-beta.25111.5
diff --git a/global.json b/global.json
index 51f1d72cb4f1..bacb38923757 100644
--- a/global.json
+++ b/global.json
@@ -1,9 +1,9 @@
{
"sdk": {
- "version": "9.0.103-servicing.25065.25"
+ "version": "9.0.104-servicing.25111.36"
},
"tools": {
- "dotnet": "9.0.103-servicing.25065.25"
+ "dotnet": "9.0.104-servicing.25111.36"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.25111.5"
diff --git a/scripts/generate-workloadmanifest-json/generate-workloadmanifest-json.cs b/scripts/generate-workloadmanifest-json/generate-workloadmanifest-json.cs
index 6b94c9b37fed..f585ed240c65 100755
--- a/scripts/generate-workloadmanifest-json/generate-workloadmanifest-json.cs
+++ b/scripts/generate-workloadmanifest-json/generate-workloadmanifest-json.cs
@@ -36,6 +36,19 @@
}).
ToDictionary (v => v.Item1, v => v.Item2, StringComparer.OrdinalIgnoreCase);
+var sortedAllApiVersions = allApiVersions.
+ Select (v => {
+ v = v.Replace ("net", "");
+ v = v [0..v.IndexOf ('_')];
+ return v;
+ }).
+ Select (Version.Parse).
+ Distinct ().
+ OrderBy (v => v).
+ ToArray ();
+var earliestDotNetVersion = sortedAllApiVersions.First ().Major;
+var latestDotNetVersion = sortedAllApiVersions.Last ().Major;
+
var failed = false;
using (TextWriter writer = new StreamWriter (outputPath)) {
writer.WriteLine ($"{{");
@@ -61,10 +74,12 @@
writer.WriteLine ($" \"extends\": [");
if (platform == "macOS") {
writer.WriteLine ($" \"microsoft-net-runtime-mono-tooling\",");
- writer.WriteLine ($" \"microsoft-net-runtime-mono-tooling-net8\",");
+ for (var i = earliestDotNetVersion; i < latestDotNetVersion; i++)
+ writer.WriteLine ($" \"microsoft-net-runtime-mono-tooling-net{i}\",");
} else {
writer.WriteLine ($" \"microsoft-net-runtime-{platformLowerCase}\",");
- writer.WriteLine ($" \"microsoft-net-runtime-{platformLowerCase}-net8\",");
+ for (var i = earliestDotNetVersion; i < latestDotNetVersion; i++)
+ writer.WriteLine ($" \"microsoft-net-runtime-{platformLowerCase}-net{i}\",");
}
writer.WriteLine ($" ]");
writer.WriteLine ($" }},");
diff --git a/src/AVFoundation/AVAssetDownloadStorageManagementPolicy.cs b/src/AVFoundation/AVAssetDownloadStorageManagementPolicy.cs
index b4bcb7ff7a81..cd1b0c2c495b 100644
--- a/src/AVFoundation/AVAssetDownloadStorageManagementPolicy.cs
+++ b/src/AVFoundation/AVAssetDownloadStorageManagementPolicy.cs
@@ -10,6 +10,9 @@
namespace AVFoundation {
public partial class AVAssetDownloadStorageManagementPolicy {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public virtual AVAssetDownloadedAssetEvictionPriority Priority {
get { return AVAssetDownloadedAssetEvictionPriorityExtensions.GetValue (_Priority); }
set { throw new NotImplementedException (); }
@@ -18,6 +21,9 @@ public virtual AVAssetDownloadedAssetEvictionPriority Priority {
public partial class AVMutableAssetDownloadStorageManagementPolicy {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public override AVAssetDownloadedAssetEvictionPriority Priority {
get { return AVAssetDownloadedAssetEvictionPriorityExtensions.GetValue (_Priority); }
set { _Priority = value.GetConstant () ?? throw new ArgumentOutOfRangeException (nameof (Priority)); }
diff --git a/src/AVFoundation/AVAssetDownloadTask.cs b/src/AVFoundation/AVAssetDownloadTask.cs
index 486f7d89188d..7747aac62654 100644
--- a/src/AVFoundation/AVAssetDownloadTask.cs
+++ b/src/AVFoundation/AVAssetDownloadTask.cs
@@ -17,18 +17,27 @@ namespace AVFoundation {
public partial class AVAssetDownloadTask : NSUrlSessionTask {
// NSURLRequest and NSURLResponse objects are not available for AVAssetDownloadTask
+ /// Gets the original URL request object that was passed to the task when the task was initialized.
+ /// To be added.
+ /// To be added.
public override NSUrlRequest OriginalRequest {
get {
throw new NotSupportedException ("OriginalRequest not available for AVAssetDownloadTask");
}
}
+ /// Gets the URL request object that the task is currently handling.
+ /// To be added.
+ /// To be added.
public override NSUrlRequest CurrentRequest {
get {
throw new NotSupportedException ("CurrentRequest not available for AVAssetDownloadTask");
}
}
+ /// Gets the HTTP response for the current request.
+ /// To be added.
+ /// To be added.
public override NSUrlResponse Response {
get {
throw new NotSupportedException ("Response not available for AVAssetDownloadTask");
diff --git a/src/AVFoundation/AVAssetDownloadUrlSession.cs b/src/AVFoundation/AVAssetDownloadUrlSession.cs
index 4e22e6493907..290efa9699f4 100644
--- a/src/AVFoundation/AVAssetDownloadUrlSession.cs
+++ b/src/AVFoundation/AVAssetDownloadUrlSession.cs
@@ -17,6 +17,9 @@ namespace AVFoundation {
#if !MONOMAC
public partial class AVAssetDownloadUrlSession : NSUrlSession {
+ /// Gets the shared session data.
+ /// To be added.
+ /// To be added.
public new static NSUrlSession SharedSession {
get {
throw new NotSupportedException ("NS_UNAVAILABLE");
diff --git a/src/AVFoundation/AVAudioBuffer.cs b/src/AVFoundation/AVAudioBuffer.cs
index 10bea97fba25..665c35591d0f 100644
--- a/src/AVFoundation/AVAudioBuffer.cs
+++ b/src/AVFoundation/AVAudioBuffer.cs
@@ -13,12 +13,18 @@
namespace AVFoundation {
public partial class AVAudioBuffer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioBuffers AudioBufferList {
get {
return new AudioBuffers (audioBufferList);
}
}
+ /// Gets a mutable version of the underlying .
+ /// To be added.
+ /// To be added.
public AudioBuffers MutableAudioBufferList {
get {
return new AudioBuffers (mutableAudioBufferList);
diff --git a/src/AVFoundation/AVAudioChannelLayout.cs b/src/AVFoundation/AVAudioChannelLayout.cs
index d8c2fedc4d1c..ee0803cc01d0 100644
--- a/src/AVFoundation/AVAudioChannelLayout.cs
+++ b/src/AVFoundation/AVAudioChannelLayout.cs
@@ -41,6 +41,9 @@ public AVAudioChannelLayout (AudioChannelLayout layout)
Marshal.FreeHGlobal (handleToLayout);
}
+ /// The underlying .
+ /// To be added.
+ /// To be added.
public AudioChannelLayout? Layout {
get {
return AudioChannelLayout.FromHandle (_Layout);
diff --git a/src/AVFoundation/AVAudioConverterPrimeInfo.cs b/src/AVFoundation/AVAudioConverterPrimeInfo.cs
index bbeed0225428..d40cb05077d8 100644
--- a/src/AVFoundation/AVAudioConverterPrimeInfo.cs
+++ b/src/AVFoundation/AVAudioConverterPrimeInfo.cs
@@ -39,7 +39,11 @@ namespace AVFoundation {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AVAudioConverterPrimeInfo {
+ /// To be added.
+ /// To be added.
public uint LeadingFrames;
+ /// To be added.
+ /// To be added.
public uint TrailingFrames;
public AVAudioConverterPrimeInfo (uint leadingFrames, uint trailingFrames)
diff --git a/src/AVFoundation/AVAudioFormat.cs b/src/AVFoundation/AVAudioFormat.cs
index 1be5afb79b8d..312f29859ec7 100644
--- a/src/AVFoundation/AVAudioFormat.cs
+++ b/src/AVFoundation/AVAudioFormat.cs
@@ -36,6 +36,9 @@ public partial class AVAudioFormat {
return !(a == b);
}
+ /// Gets the audio stream description.
+ /// To be added.
+ /// To be added.
[Export ("StreamDescription")]
#if NET
[SupportedOSPlatform ("ios")]
diff --git a/src/AVFoundation/AVUrlAssetOptions.cs b/src/AVFoundation/AVUrlAssetOptions.cs
index 8bd912e602f8..3023ef88d75b 100644
--- a/src/AVFoundation/AVUrlAssetOptions.cs
+++ b/src/AVFoundation/AVUrlAssetOptions.cs
@@ -52,6 +52,10 @@ public AVUrlAssetOptions (NSDictionary dictionary)
: base (dictionary)
{
}
+ /// Indicates whether the asset should be prepared to indicate a precise duration and provide precise random access by time.
+ ///
+ ///
+ /// The property uses constant AVURLAssetPreferPreciseDurationAndTimingKey value to access the underlying dictionary.
public bool? PreferPreciseDurationAndTiming {
set {
SetBooleanValue (AVUrlAsset.PreferPreciseDurationAndTimingKey, value);
@@ -61,6 +65,10 @@ public bool? PreferPreciseDurationAndTiming {
}
}
+ /// Represents the restrictions used by the asset when resolving references to external media data.
+ ///
+ ///
+ /// The property uses constant AVURLAssetReferenceRestrictionsKey value to access the underlying dictionary.
public AVAssetReferenceRestrictions? ReferenceRestrictions {
set {
SetNumberValue (AVUrlAsset.ReferenceRestrictionsKey, (nuint?) (ulong?) value);
diff --git a/src/AVFoundation/AVVideoSettings.cs b/src/AVFoundation/AVVideoSettings.cs
index f933c3b7fd2c..6ba53660d1de 100644
--- a/src/AVFoundation/AVVideoSettings.cs
+++ b/src/AVFoundation/AVVideoSettings.cs
@@ -38,31 +38,51 @@ namespace AVFoundation {
// Convenience enum for native strings - AVVideoSettings.h
public enum AVVideoCodec : int {
+ /// To be added.
H264 = 1,
+ /// To be added.
JPEG = 2
}
// Convenience enum for native strings - AVVideoSettings.h
public enum AVVideoScalingMode : int {
+ /// Crop to remove edge processing region.
+ /// Preserves aspect ratio of cropped source by reducing specified width or height if necessary. This mode does not scale a small source up to larger dimensions.
Fit,
+ /// Crop to remove edge processing region and scales remaining area to fit destination area.
+ /// This mode does not preserve the aspect ratio.
Resize,
+ /// Preserves aspect ratio of the source and fills remaining areas with black to fit destination dimensions.
ResizeAspect,
+ /// Preserves aspect ratio of the source and crops picture to fit destination dimensions.
ResizeAspectFill
}
// Convenience enum for native strings - AVVideoSettings.h
public enum AVVideoProfileLevelH264 : int {
+ /// Specifies a baseline level 3.0 profile.
Baseline30 = 1,
+ /// Specifies a baseline level 3.1 profile.
Baseline31,
+ /// Specifies a baseline level 4.1 profile.
Baseline41,
+ /// Specifies a main level 3.0 profile.
Main30,
+ /// Specifies a main level 3.1 profile.
Main31,
+ /// Specifies a main level 3.2 profile.
Main32,
+ /// Specifies a main level 4.1 profile.
Main41,
+ /// Specifies a high level 4.0 profile.
High40,
+ /// Specifies a high level 4.1 profile.
High41,
+ /// To be added.
BaselineAutoLevel,
+ /// To be added.
MainAutoLevel,
+ /// To be added.
HighAutoLevel,
}
@@ -98,6 +118,10 @@ public AVVideoSettingsUncompressed (NSDictionary dictionary)
return null;
}
+ /// Represents the video scaling mode.
+ ///
+ ///
+ /// The property uses constant AVVideoScalingModeKey value to access the underlying dictionary.
public AVVideoScalingMode? ScalingMode {
get {
return ScalingModeFromNSString (GetNSStringValue (AVVideo.ScalingModeKey));
@@ -137,7 +161,9 @@ public AVVideoScalingMode? ScalingMode {
#if !MONOMAC
// Convenience enum for native strings - AVVideoSettings.h
public enum AVVideoH264EntropyMode {
+ /// To be added.
AdaptiveVariableLength,
+ /// To be added.
AdaptiveBinaryArithmetic
}
#endif
@@ -160,6 +186,10 @@ public AVVideoSettingsCompressed (NSDictionary dictionary)
{
}
+ /// Represents codec used to encode the video.
+ ///
+ ///
+ /// The property uses constant AVVideoCodecKey value to access the underlying dictionary.
public AVVideoCodec? Codec {
get {
var k = GetNSStringValue (AVVideo.CodecKey);
@@ -194,6 +224,10 @@ public AVVideoCodec? Codec {
}
// documentation only says 'NSNumber', leaving as int because I doubt we'll need more than 32bits for it ever.
+ /// Represents width of the video in pixels.
+ ///
+ ///
+ /// The property uses constant AVVideoWidthKey value to access the underlying dictionary.
public int? Width {
set {
SetNumberValue (AVVideo.WidthKey, value);
@@ -204,6 +238,10 @@ public int? Width {
}
// documentation only says 'NSNumber', leaving as int because I doubt we'll need more than 32bits for it ever.
+ /// Represents height of the video in pixels.
+ ///
+ ///
+ /// The property uses constant AVVideoHeightKey value to access the underlying dictionary.
public int? Height {
set {
SetNumberValue (AVVideo.HeightKey, value);
@@ -214,6 +252,9 @@ public int? Height {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -230,6 +271,9 @@ public double? MaxKeyFrameIntervalDuration {
#if !MONOMAC
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
@@ -245,6 +289,9 @@ public bool? AllowFrameReordering {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
@@ -286,6 +333,9 @@ public AVVideoH264EntropyMode? EntropyEncoding {
// frame rate can be floating point (29.97 is common for instance)
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
@@ -302,6 +352,9 @@ public float? ExpectedSourceFrameRate {
// frame rate can be floating point (29.97 is common for instance)
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
@@ -317,6 +370,10 @@ public float? AverageNonDroppableFrameRate {
}
#endif
+ /// Represents the video scaling mode.
+ ///
+ ///
+ /// The property uses constant AVVideoScalingModeKey value to access the underlying dictionary.
public AVVideoScalingMode? ScalingMode {
get {
return AVVideoSettingsUncompressed.ScalingModeFromNSString (GetNSStringValue (AVVideo.ScalingModeKey));
@@ -351,6 +408,10 @@ public AVVideoScalingMode? ScalingMode {
}
}
+ /// Specifies access the compression properties.
+ ///
+ ///
+ /// The property uses constant AVVideoCompressionPropertiesKey value to access the underlying dictionary.
public AVVideoCodecSettings? CodecSettings {
get {
var dict = GetNSDictionary (AVVideo.CompressionPropertiesKey);
@@ -384,6 +445,10 @@ public AVVideoCodecSettings (NSDictionary dictionary)
{
}
+ /// Represents average bit rate (as bits per second) used in encoding.
+ ///
+ ///
+ /// The property uses constant AVVideoAverageBitRateKey value to access the underlying dictionary.
public int? AverageBitRate {
set {
SetNumberValue (AVVideo.AverageBitRateKey, value);
@@ -393,6 +458,9 @@ public int? AverageBitRate {
}
}
+ /// Represents JPEG coded quality.
+ /// Value is in range 0 to 1.0
+ /// The property uses constant AVVideoQualityKey value to access the underlying dictionary.
public float? JPEGQuality {
set {
SetNumberValue (AVVideo.QualityKey, value);
@@ -402,6 +470,9 @@ public float? JPEGQuality {
}
}
+ /// Specifies a key to access the maximum interval between key frames.
+ /// 1 means key frames only.
+ /// The property uses constant AVVideoMaxKeyFrameIntervalKey value to access the underlying dictionary.
public int? MaxKeyFrameInterval {
set {
SetNumberValue (AVVideo.MaxKeyFrameIntervalKey, value);
@@ -411,6 +482,10 @@ public int? MaxKeyFrameInterval {
}
}
+ /// Represents the video profile.
+ ///
+ ///
+ /// The property uses constant AVVideoProfileLevelKey value to access the underlying dictionary.
public AVVideoProfileLevelH264? ProfileLevelH264 {
get {
var level = GetNSStringValue (AVVideo.ProfileLevelKey);
@@ -508,6 +583,10 @@ public AVVideoProfileLevelH264? ProfileLevelH264 {
}
}
+ /// Represents pixel aspect ratio.
+ ///
+ ///
+ /// The property uses constant AVVideoPixelAspectRatioKey value to access the underlying dictionary.
public AVVideoPixelAspectRatioSettings? PixelAspectRatio {
get {
var dict = GetNSDictionary (AVVideo.PixelAspectRatioKey);
@@ -521,6 +600,10 @@ public AVVideoPixelAspectRatioSettings? PixelAspectRatio {
}
}
+ /// Represents the clean aperture settings.
+ ///
+ ///
+ /// The property uses constant AVVideoCleanApertureKey value to access the underlying dictionary.
public AVVideoCleanApertureSettings? VideoCleanAperture {
get {
var dict = GetNSDictionary (AVVideo.CleanApertureKey);
@@ -554,6 +637,10 @@ public AVVideoPixelAspectRatioSettings (NSDictionary dictionary)
{
}
+ /// Represents pixel aspect ratio horizontal spacing.
+ ///
+ ///
+ /// The property uses constant AVVideoPixelAspectRatioHorizontalSpacingKey value to access the underlying dictionary.
public int? HorizontalSpacing {
set {
SetNumberValue (AVVideo.PixelAspectRatioHorizontalSpacingKey, value);
@@ -563,6 +650,10 @@ public int? HorizontalSpacing {
}
}
+ /// Represents pixel aspect ratio vertical spacing.
+ ///
+ ///
+ /// The property uses constant AVVideoPixelAspectRatioVerticalSpacingKey value to access the underlying dictionary.
public int? VerticalSpacing {
set {
SetNumberValue (AVVideo.PixelAspectRatioVerticalSpacingKey, value);
@@ -592,6 +683,10 @@ public AVVideoCleanApertureSettings (NSDictionary dictionary)
{
}
+ /// Represents the clean aperture width.
+ ///
+ ///
+ /// The property uses constant AVVideoCleanApertureWidthKey value to access the underlying dictionary.
public int? Width {
set {
SetNumberValue (AVVideo.CleanApertureWidthKey, value);
@@ -601,6 +696,10 @@ public int? Width {
}
}
+ /// Represents the clean aperture height.
+ ///
+ ///
+ /// The property uses constant AVVideoCleanApertureHeightKey value to access the underlying dictionary.
public int? Height {
set {
SetNumberValue (AVVideo.CleanApertureHeightKey, value);
@@ -610,6 +709,10 @@ public int? Height {
}
}
+ /// Represents the clean aperture horizontal offset.
+ ///
+ ///
+ /// The property uses constant AVVideoCleanApertureHorizontalOffsetKey value to access the underlying dictionary.
public int? HorizontalOffset {
set {
SetNumberValue (AVVideo.CleanApertureHorizontalOffsetKey, value);
@@ -619,6 +722,10 @@ public int? HorizontalOffset {
}
}
+ /// Represents the clean aperture vertical offset.
+ ///
+ ///
+ /// The property uses constant AVVideoCleanApertureVerticalOffsetKey value to access the underlying dictionary.
public int? VerticalOffset {
set {
SetNumberValue (AVVideo.CleanApertureVerticalOffsetKey, value);
diff --git a/src/AVFoundation/AudioRendererWasFlushedAutomaticallyEventArgs.cs b/src/AVFoundation/AudioRendererWasFlushedAutomaticallyEventArgs.cs
index 74858c91a77d..b7fd0bc75a8a 100644
--- a/src/AVFoundation/AudioRendererWasFlushedAutomaticallyEventArgs.cs
+++ b/src/AVFoundation/AudioRendererWasFlushedAutomaticallyEventArgs.cs
@@ -13,6 +13,9 @@ namespace AVFoundation {
[SupportedOSPlatform ("maccatalyst")]
#endif
public partial class AudioRendererWasFlushedAutomaticallyEventArgs {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CMTime AudioRendererFlushTime {
get {
return _AudioRendererFlushTime.CMTimeValue;
diff --git a/src/AVFoundation/Enums.cs b/src/AVFoundation/Enums.cs
index 2151aa192370..7428fe28a572 100644
--- a/src/AVFoundation/Enums.cs
+++ b/src/AVFoundation/Enums.cs
@@ -307,11 +307,17 @@ public enum AVPlayerStatus : long {
[Native]
// NSUInteger - AVAsset.h
public enum AVAssetReferenceRestrictions : ulong {
+ /// There are no restrictions on references to media data.
ForbidNone = 0,
+ /// Remote assets cannot require a local media resource (e.g., an HTTP URL cannot require a client-side file).
ForbidRemoteReferenceToLocal = (1 << 0),
+ /// Local asset references to remote media are not allowed.
ForbidLocalReferenceToRemote = (1 << 1),
+ /// Remote asset references to a different site are not allowed.
ForbidCrossSiteReference = (1 << 2),
+ /// Local asset references to local media outside the container are not allowed.
ForbidLocalReferenceToLocal = (1 << 3),
+ /// Only references to media data stored within the asset's container are allowed.
ForbidAll = 0xFFFF,
}
diff --git a/src/AVFoundation/Events.cs b/src/AVFoundation/Events.cs
index 83fc58bee0e3..e373ff161e9d 100644
--- a/src/AVFoundation/Events.cs
+++ b/src/AVFoundation/Events.cs
@@ -48,6 +48,9 @@ public AVErrorEventArgs (NSError error)
Error = error;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSError Error { get; private set; }
}
@@ -63,6 +66,9 @@ public AVStatusEventArgs (bool status)
Status = status;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Status { get; private set; }
}
diff --git a/src/AddressBook/ABAddressBook.cs b/src/AddressBook/ABAddressBook.cs
index fbeeb3e682f1..86bfd92a548b 100644
--- a/src/AddressBook/ABAddressBook.cs
+++ b/src/AddressBook/ABAddressBook.cs
@@ -45,16 +45,12 @@
#endif
namespace AddressBook {
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ExternalChangeEventArgs : EventArgs {
public ExternalChangeEventArgs (ABAddressBook addressBook, NSDictionary? info)
{
@@ -78,6 +74,12 @@ public ExternalChangeEventArgs (ABAddressBook addressBook, NSDictionary? info)
// Note that the above comment was removed from iOS 6.0+ documentation (and were not part of OSX docs AFAIK).
// It make sense since it's not possible to call those functions, from 6.0+ they will return NULL on devices,
// unless the application has been authorized to access the address book.
+ [SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
static class InitConstants {
public static void Init () { }
@@ -111,16 +113,12 @@ static InitConstants ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABAddressBook : NativeObject, IEnumerable {
public static readonly NSString ErrorDomain;
@@ -130,14 +128,12 @@ public class ABAddressBook : NativeObject, IEnumerable {
[DllImport (Constants.AddressBookLibrary)]
internal extern static IntPtr ABAddressBookCreate ();
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios6.0", "Use the static Create method instead.")]
-#else
- [Deprecated (PlatformName.iOS, 6, 0, message: "Use the static Create method instead")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the static Create method instead")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the static Create method instead")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public ABAddressBook ()
: this (ABAddressBookCreate (), true)
{
diff --git a/src/AddressBook/ABGroup.cs b/src/AddressBook/ABGroup.cs
index 3fbc14992b04..9c54e5dccdbf 100644
--- a/src/AddressBook/ABGroup.cs
+++ b/src/AddressBook/ABGroup.cs
@@ -46,6 +46,12 @@
#endif
namespace AddressBook {
+ [SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
static class ABGroupProperty {
public static int Name { get; private set; }
@@ -61,16 +67,12 @@ internal static void Init ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABGroup : ABRecord, IEnumerable {
[DllImport (Constants.AddressBookLibrary)]
diff --git a/src/AddressBook/ABMultiValue.cs b/src/AddressBook/ABMultiValue.cs
index aa62cfda4e67..3c127e13052e 100644
--- a/src/AddressBook/ABMultiValue.cs
+++ b/src/AddressBook/ABMultiValue.cs
@@ -46,16 +46,12 @@
namespace AddressBook {
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0)]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
static class ABMultiValue {
public const uint Mask = (1 << 8);
@@ -105,16 +101,12 @@ static class ABMultiValue {
public static extern byte RemoveValueAndLabelAtIndex (IntPtr multiValue, nint index);
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public struct ABMultiValueEntry {
ABMultiValue self;
nint index;
@@ -185,16 +177,12 @@ public int Identifier {
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABMultiValue : NativeObject, IEnumerable> {
internal Converter toManaged;
internal Converter toNative;
@@ -280,16 +268,12 @@ public ABMutableMultiValue ToMutableMultiValue ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABMutableMultiValue : ABMultiValue {
[Preserve (Conditional = true)]
internal ABMutableMultiValue (NativeHandle handle, bool owns)
@@ -334,16 +318,12 @@ public bool RemoveAt (nint index)
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABMutableDateMultiValue : ABMutableMultiValue {
public ABMutableDateMultiValue ()
: base (ABMultiValue.CreateMutable (ABPropertyType.MultiDateTime), true)
@@ -351,16 +331,12 @@ public ABMutableDateMultiValue ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABMutableDictionaryMultiValue : ABMutableMultiValue {
public ABMutableDictionaryMultiValue ()
: base (ABMultiValue.CreateMutable (ABPropertyType.MultiDictionary), true)
@@ -368,16 +344,12 @@ public ABMutableDictionaryMultiValue ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABMutableStringMultiValue : ABMutableMultiValue {
public ABMutableStringMultiValue ()
: base (ABMultiValue.CreateMutable (ABPropertyType.MultiString),
diff --git a/src/AddressBook/ABPerson.cs b/src/AddressBook/ABPerson.cs
index 6d665b24ccbf..09a4a822bf7c 100644
--- a/src/AddressBook/ABPerson.cs
+++ b/src/AddressBook/ABPerson.cs
@@ -46,14 +46,12 @@
namespace AddressBook {
-#if NET
[SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
[SupportedOSPlatform ("maccatalyst")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
static class ABPersonPropertyId {
public static int Address { get; private set; }
@@ -180,16 +178,12 @@ public static ABPersonProperty ToPersonProperty (int id)
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABPersonAddressKey {
public static NSString? City { get; private set; }
@@ -216,16 +210,12 @@ internal static void Init ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABPersonDateLabel {
public static NSString? Anniversary { get; private set; }
@@ -240,14 +230,12 @@ internal static void Init ()
}
}
-#if NET
[SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
[SupportedOSPlatform ("maccatalyst")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
static class ABPersonKindId {
public static NSNumber? Organization { get; private set; }
public static NSNumber? Person { get; private set; }
@@ -283,16 +271,12 @@ public static ABPersonKind ToPersonKind (NSNumber value)
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
static class ABPersonSocialProfile {
public static readonly NSString? URLKey;
public static readonly NSString? ServiceKey;
@@ -309,16 +293,12 @@ static ABPersonSocialProfile ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABPersonSocialProfileService {
public static readonly NSString? Twitter;
public static readonly NSString? GameCenter;
@@ -341,16 +321,12 @@ static ABPersonSocialProfileService ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABPersonPhoneLabel {
public static NSString? HomeFax { get; private set; }
public static NSString? iPhone { get; private set; }
@@ -378,16 +354,12 @@ internal static void Init ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABPersonInstantMessageService {
public static NSString? Aim { get; private set; }
public static NSString? Icq { get; private set; }
@@ -421,16 +393,12 @@ internal static void Init ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABPersonInstantMessageKey {
public static NSString? Service { get; private set; }
public static NSString? Username { get; private set; }
@@ -448,16 +416,12 @@ internal static void Init ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABPersonUrlLabel {
public static NSString? HomePage { get; private set; }
@@ -472,16 +436,12 @@ internal static void Init ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABPersonRelatedNamesLabel {
public static NSString? Assistant { get; private set; }
public static NSString? Brother { get; private set; }
@@ -517,16 +477,12 @@ internal static void Init ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static class ABLabel {
public static NSString? Home { get; private set; }
public static NSString? Other { get; private set; }
@@ -546,16 +502,12 @@ internal static void Init ()
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABPerson : ABRecord, IComparable, IComparable {
[DllImport (Constants.AddressBookLibrary)]
extern static IntPtr ABPersonCreate ();
@@ -670,53 +622,27 @@ public void RemoveImage ()
[DllImport (Constants.AddressBookLibrary)]
extern static ABPersonCompositeNameFormat ABPersonGetCompositeNameFormat ();
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios7.0", "Use 'GetCompositeNameFormat (null)' instead.")]
-#else
- [Deprecated (PlatformName.iOS, 7, 0, message: "Use 'GetCompositeNameFormat (null)' instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use 'GetCompositeNameFormat (null)' instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use 'GetCompositeNameFormat (null)' instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public static ABPersonCompositeNameFormat CompositeNameFormat {
get { return ABPersonGetCompositeNameFormat (); }
}
-#if NET
- [SupportedOSPlatform ("ios")]
- [SupportedOSPlatform ("maccatalyst")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#endif
[DllImport (Constants.AddressBookLibrary)]
extern static ABPersonCompositeNameFormat ABPersonGetCompositeNameFormatForRecord (IntPtr record);
-#if NET
- [SupportedOSPlatform ("ios")]
- [SupportedOSPlatform ("maccatalyst")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#endif
public static ABPersonCompositeNameFormat GetCompositeNameFormat (ABRecord? record)
{
return ABPersonGetCompositeNameFormatForRecord (record.GetHandle ());
}
-#if NET
- [SupportedOSPlatform ("ios")]
- [SupportedOSPlatform ("maccatalyst")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#endif
[DllImport (Constants.AddressBookLibrary)]
extern static IntPtr ABPersonCopyCompositeNameDelimiterForRecord (IntPtr record);
-#if NET
- [SupportedOSPlatform ("ios")]
- [SupportedOSPlatform ("maccatalyst")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#endif
public static string? GetCompositeNameDelimiter (ABRecord? record)
{
var handle = ABPersonCopyCompositeNameDelimiterForRecord (record.GetHandle ());
@@ -1056,16 +982,12 @@ public void SetRelatedNames (ABMultiValue? value)
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class SocialProfile : DictionaryContainer {
public SocialProfile ()
{
@@ -1113,16 +1035,12 @@ public string? Url {
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class InstantMessageService : DictionaryContainer {
public InstantMessageService ()
{
@@ -1155,16 +1073,12 @@ public string? Username {
}
}
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class PersonAddress : DictionaryContainer {
public PersonAddress ()
{
diff --git a/src/AddressBook/ABRecord.cs b/src/AddressBook/ABRecord.cs
index 578d9811c7b8..68b22fcdda9c 100644
--- a/src/AddressBook/ABRecord.cs
+++ b/src/AddressBook/ABRecord.cs
@@ -44,16 +44,12 @@
namespace AddressBook {
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABRecord : NativeObject {
public const int InvalidRecordId = -1;
diff --git a/src/AddressBook/ABSource.cs b/src/AddressBook/ABSource.cs
index ca40ea5a6c7b..162c01f2c62b 100644
--- a/src/AddressBook/ABSource.cs
+++ b/src/AddressBook/ABSource.cs
@@ -44,16 +44,12 @@
namespace AddressBook {
-#if NET
- [SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
- [Introduced (PlatformName.MacCatalyst, 14, 0)]
- [Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABSource : ABRecord {
[Preserve (Conditional = true)]
internal ABSource (NativeHandle handle, bool owns)
@@ -79,14 +75,12 @@ public ABSourceType SourceType {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
[SupportedOSPlatform ("maccatalyst")]
- [ObsoletedOSPlatform ("maccatalyst14.0", "Use the 'Contacts' API instead.")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
static class ABSourcePropertyId {
public static int Name { get; private set; }
diff --git a/src/AddressBookUI/ABAddressFormatting.cs b/src/AddressBookUI/ABAddressFormatting.cs
index 27fe35ff4740..7d48427d887e 100644
--- a/src/AddressBookUI/ABAddressFormatting.cs
+++ b/src/AddressBookUI/ABAddressFormatting.cs
@@ -18,12 +18,12 @@
namespace AddressBookUI {
// http://developer.apple.com/library/ios/#DOCUMENTATION/AddressBookUI/Reference/AddressBookUI_Functions/Reference/reference.html#//apple_ref/c/func/ABCreateStringWithAddressDictionary
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
static public class ABAddressFormatting {
[DllImport (Constants.AddressBookUILibrary)]
diff --git a/src/AddressBookUI/ABNewPersonViewController.cs b/src/AddressBookUI/ABNewPersonViewController.cs
index 3ba390a8c336..735a1a84c64c 100644
--- a/src/AddressBookUI/ABNewPersonViewController.cs
+++ b/src/AddressBookUI/ABNewPersonViewController.cs
@@ -16,12 +16,12 @@
namespace AddressBookUI {
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABNewPersonCompleteEventArgs : EventArgs {
public ABNewPersonCompleteEventArgs (ABPerson? person)
@@ -35,6 +35,12 @@ public bool Completed {
}
}
+ [SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
class InternalABNewPersonViewControllerDelegate : ABNewPersonViewControllerDelegate {
internal EventHandler? newPersonComplete;
diff --git a/src/AddressBookUI/ABPeoplePickerNavigationController.cs b/src/AddressBookUI/ABPeoplePickerNavigationController.cs
index 7165ffa71975..671080ac9e5a 100644
--- a/src/AddressBookUI/ABPeoplePickerNavigationController.cs
+++ b/src/AddressBookUI/ABPeoplePickerNavigationController.cs
@@ -16,12 +16,12 @@
using ObjCRuntime;
namespace AddressBookUI {
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABPeoplePickerSelectPersonEventArgs : EventArgs {
public ABPeoplePickerSelectPersonEventArgs (ABPerson person)
@@ -34,12 +34,12 @@ public ABPeoplePickerSelectPersonEventArgs (ABPerson person)
public bool Continue { get; set; }
}
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABPeoplePickerPerformActionEventArgs : ABPeoplePickerSelectPersonEventArgs {
public ABPeoplePickerPerformActionEventArgs (ABPerson person, ABPersonProperty property, int? identifier)
@@ -53,12 +53,12 @@ public ABPeoplePickerPerformActionEventArgs (ABPerson person, ABPersonProperty p
public int? Identifier { get; private set; }
}
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABPeoplePickerSelectPerson2EventArgs : EventArgs {
public ABPeoplePickerSelectPerson2EventArgs (ABPerson person)
@@ -69,12 +69,12 @@ public ABPeoplePickerSelectPerson2EventArgs (ABPerson person)
public ABPerson Person { get; private set; }
}
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABPeoplePickerPerformAction2EventArgs : ABPeoplePickerSelectPerson2EventArgs {
public ABPeoplePickerPerformAction2EventArgs (ABPerson person, ABPersonProperty property, int? identifier)
@@ -88,6 +88,12 @@ public ABPeoplePickerPerformAction2EventArgs (ABPerson person, ABPersonProperty
public int? Identifier { get; private set; }
}
+ [SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
class InternalABPeoplePickerNavigationControllerDelegate : ABPeoplePickerNavigationControllerDelegate {
internal EventHandler? selectPerson;
internal EventHandler? performAction;
diff --git a/src/AddressBookUI/ABPersonViewController.cs b/src/AddressBookUI/ABPersonViewController.cs
index 5694954859c0..0e6f8c29234a 100644
--- a/src/AddressBookUI/ABPersonViewController.cs
+++ b/src/AddressBookUI/ABPersonViewController.cs
@@ -15,12 +15,12 @@
using ObjCRuntime;
namespace AddressBookUI {
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABPersonViewPerformDefaultActionEventArgs : EventArgs {
public ABPersonViewPerformDefaultActionEventArgs (ABPerson person, ABPersonProperty property, int? identifier)
{
@@ -36,6 +36,12 @@ public ABPersonViewPerformDefaultActionEventArgs (ABPerson person, ABPersonPrope
public bool ShouldPerformDefaultAction { get; set; }
}
+ [SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
class InternalABPersonViewControllerDelegate : ABPersonViewControllerDelegate {
internal EventHandler? performDefaultAction;
diff --git a/src/AddressBookUI/ABUnknownPersonViewController.cs b/src/AddressBookUI/ABUnknownPersonViewController.cs
index 1d165e5e441f..78ba8b42c358 100644
--- a/src/AddressBookUI/ABUnknownPersonViewController.cs
+++ b/src/AddressBookUI/ABUnknownPersonViewController.cs
@@ -15,12 +15,12 @@
using ObjCRuntime;
namespace AddressBookUI {
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class ABUnknownPersonCreatedEventArgs : EventArgs {
public ABUnknownPersonCreatedEventArgs (ABPerson? person)
@@ -31,6 +31,12 @@ public ABUnknownPersonCreatedEventArgs (ABPerson? person)
public ABPerson? Person { get; private set; }
}
+ [SupportedOSPlatform ("ios")]
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
class InternalABUnknownPersonViewControllerDelegate : ABUnknownPersonViewControllerDelegate {
internal EventHandler? performDefaultAction;
internal EventHandler? personCreated;
diff --git a/src/AddressBookUI/DisplayedPropertiesCollection.cs b/src/AddressBookUI/DisplayedPropertiesCollection.cs
index 5c9f6d291020..053603b9a9c4 100644
--- a/src/AddressBookUI/DisplayedPropertiesCollection.cs
+++ b/src/AddressBookUI/DisplayedPropertiesCollection.cs
@@ -20,12 +20,12 @@ namespace AddressBookUI {
delegate T ABFunc ();
-#if NET
[SupportedOSPlatform ("ios")]
- [ObsoletedOSPlatform ("ios9.0", "Use the 'Contacts' API instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
-#endif
+ [ObsoletedOSPlatform ("ios", "Use the 'Contacts' API instead.")]
+ [SupportedOSPlatform ("maccatalyst")]
+ [ObsoletedOSPlatform ("maccatalyst", "Use the 'Contacts' API instead.")]
+ [UnsupportedOSPlatform ("macos")]
+ [UnsupportedOSPlatform ("tvos")]
public class DisplayedPropertiesCollection : ICollection {
ABFunc g;
diff --git a/src/AudioToolbox/AudioBuffers.cs b/src/AudioToolbox/AudioBuffers.cs
index ff40e0f49c52..23b03f4a03b8 100644
--- a/src/AudioToolbox/AudioBuffers.cs
+++ b/src/AudioToolbox/AudioBuffers.cs
@@ -97,6 +97,11 @@ public unsafe AudioBuffers (int count)
Dispose (false);
}
+ /// Returns the number of buffers managed.
+ ///
+ ///
+ ///
+ ///
public unsafe int Count {
get {
return *(int*) address;
@@ -136,6 +141,9 @@ public AudioBuffer this [int index] {
}
}
+ /// Handle (pointer) to the unmanaged object representation.
+ /// A pointer
+ /// This IntPtr is a handle to the underlying unmanaged representation for this object.
public NativeHandle Handle {
get { return address; }
}
diff --git a/src/AudioToolbox/AudioClassDescription.cs b/src/AudioToolbox/AudioClassDescription.cs
index f4f91d2a4a76..1c0635b7ac75 100644
--- a/src/AudioToolbox/AudioClassDescription.cs
+++ b/src/AudioToolbox/AudioClassDescription.cs
@@ -46,8 +46,14 @@ namespace AudioToolbox {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioClassDescription {
+ /// To be added.
+ /// To be added.
public AudioCodecComponentType Type;
+ /// To be added.
+ /// To be added.
public AudioFormatType SubType;
+ /// To be added.
+ /// To be added.
public AudioCodecManufacturer Manufacturer;
public AudioClassDescription (AudioCodecComponentType type, AudioFormatType subType, AudioCodecManufacturer manufacturer)
@@ -57,6 +63,9 @@ public AudioClassDescription (AudioCodecComponentType type, AudioFormatType subT
Manufacturer = manufacturer;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsHardwareCodec {
get {
return Manufacturer == AudioCodecManufacturer.AppleHardware;
@@ -87,7 +96,9 @@ public bool IsHardwareCodec {
public enum AudioCodecComponentType // Implictly cast to OSType in CoreAudio.framework - CoreAudioTypes.h
{
+ /// Value identifies decoders to linear PCM.
Decoder = 0x61646563, // 'adec'
+ /// Value identifies encoders from linear PCM.
Encoder = 0x61656e63, // 'aenc'
}
}
diff --git a/src/AudioToolbox/AudioConverter.cs b/src/AudioToolbox/AudioConverter.cs
index b993c9f7208d..48a5a9f28059 100644
--- a/src/AudioToolbox/AudioConverter.cs
+++ b/src/AudioToolbox/AudioConverter.cs
@@ -43,42 +43,67 @@
namespace AudioToolbox {
public enum AudioConverterError // Impliclty cast to OSStatus in AudioConverter.h
{
+ /// To be added.
None = 0,
+ /// To be added.
FormatNotSupported = 0x666d743f, // 'fmt?'
+ /// To be added.
OperationNotSupported = 0x6f703f3f, // 'op??'
+ /// To be added.
PropertyNotSupported = 0x70726f70, // 'prop'
+ /// To be added.
InvalidInputSize = 0x696e737a, // 'insz'
+ /// To be added.
InvalidOutputSize = 0x6f74737a, // 'otsz'
+ /// To be added.
UnspecifiedError = 0x77686174, // 'what'
+ /// To be added.
BadPropertySizeError = 0x2173697a, // '!siz'
+ /// To be added.
RequiresPacketDescriptionsError = 0x21706b64, // '!pkd'
+ /// To be added.
InputSampleRateOutOfRange = 0x21697372, // '!isr'
+ /// To be added.
OutputSampleRateOutOfRange = 0x216f7372, // '!osr'
+ /// To be added.
HardwareInUse = 0x68776975, // 'hwiu'
+ /// To be added.
NoHardwarePermission = 0x7065726d, // 'perm'
+ /// To be added.
AudioFormatUnsupported = 0x21646174, // '!dat' From http://lists.apple.com/archives/coreaudio-api/2009/Feb/msg00082.html
}
public enum AudioConverterSampleRateConverterComplexity // typedef UInt32 AudioConverterPropertyID
{
+ /// Represents lowest quality sample rate.
Linear = 0x6c696e65, // 'line'
+ /// Represents normal quality sample rate.
Normal = 0x6e6f726d, // 'norm'
+ /// Represents mastering quality sample rate.
Mastering = 0x62617473, // 'bats'
}
public enum AudioConverterQuality // typedef UInt32 AudioConverterPropertyID
{
+ /// Represents maximum quality.
Max = 0x7F,
+ /// Represents high quality.
High = 0x60,
+ /// Represents medium quality.
Medium = 0x40,
+ /// Represents low quality.
Low = 0x20,
+ /// Represents minimum quality.
Min = 0
}
public enum AudioConverterPrimeMethod // typedef UInt32 AudioConverterPropertyID
{
+ /// Represents primes with both leading and trailing input frames.
Pre = 0,
+ /// Represents primes with trailing input frames only.
Normal = 1,
+ /// Represents primes with both leading and trailing input frames to be silence.
None = 2
}
@@ -104,7 +129,13 @@ public enum AudioConverterOptions : uint {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioConverterPrimeInfo {
+ /// The number of leading input frames.
+ ///
+ ///
public int LeadingFrames;
+ /// The number of trailing input frames.
+ ///
+ ///
public int TrailingFrames;
}
@@ -135,42 +166,77 @@ internal AudioConverter (NativeHandle handle, bool owns)
{
}
+ /// The size in bytes of the smallest buffer of input data.
+ ///
+ ///
+ ///
+ ///
public uint MinimumInputBufferSize {
get {
return GetUIntProperty (AudioConverterPropertyID.MinimumInputBufferSize);
}
}
+ /// The size in bytes of the smallest buffer of output data.
+ ///
+ ///
+ ///
+ ///
public uint MinimumOutputBufferSize {
get {
return GetUIntProperty (AudioConverterPropertyID.MinimumOutputBufferSize);
}
}
+ /// The size in bytes of the largest single packet of data in the input format.
+ ///
+ ///
+ ///
+ ///
public uint MaximumInputPacketSize {
get {
return GetUIntProperty (AudioConverterPropertyID.MaximumInputPacketSize);
}
}
+ /// The size in bytes of the largest single packet of data in the output format.
+ ///
+ ///
+ ///
+ ///
public uint MaximumOutputPacketSize {
get {
return GetUIntProperty (AudioConverterPropertyID.MaximumOutputPacketSize);
}
}
+ /// To be added.
+ ///
+ ///
+ ///
+ ///
public uint CalculateInputBufferSize {
get {
return GetUIntProperty (AudioConverterPropertyID.CalculateInputBufferSize);
}
}
+ /// To be added.
+ ///
+ ///
+ ///
+ ///
public uint CalculateOutputBufferSize {
get {
return GetUIntProperty (AudioConverterPropertyID.CalculateOutputBufferSize);
}
}
+ /// The initial sub-sample position of the sample rate converter.
+ ///
+ ///
+ ///
+ ///
public double SampleRateConverterInitialPhase {
get {
return GetDoubleProperty (AudioConverterPropertyID.SampleRateConverterInitialPhase);
@@ -180,6 +246,11 @@ public double SampleRateConverterInitialPhase {
}
}
+ /// The sample rate converter algorithm.
+ ///
+ ///
+ ///
+ ///
public AudioConverterSampleRateConverterComplexity SampleRateConverterComplexity {
get {
return (AudioConverterSampleRateConverterComplexity) GetUIntProperty (AudioConverterPropertyID.SampleRateConverterComplexity);
@@ -189,6 +260,11 @@ public AudioConverterSampleRateConverterComplexity SampleRateConverterComplexity
}
}
+ /// The rendering quality of the sample rate converter.
+ ///
+ ///
+ ///
+ ///
public AudioConverterQuality SampleRateConverterQuality {
get {
return (AudioConverterQuality) GetUIntProperty (AudioConverterPropertyID.SampleRateConverterQuality);
@@ -198,6 +274,11 @@ public AudioConverterQuality SampleRateConverterQuality {
}
}
+ /// Rendering quality of the converter codec.
+ ///
+ ///
+ ///
+ ///
public AudioConverterQuality CodecQuality {
get {
return (AudioConverterQuality) GetUIntProperty (AudioConverterPropertyID.CodecQuality);
@@ -207,6 +288,11 @@ public AudioConverterQuality CodecQuality {
}
}
+ /// The priming information for converter's priming method.
+ ///
+ ///
+ ///
+ ///
public AudioConverterPrimeMethod PrimeMethod {
get {
return (AudioConverterPrimeMethod) GetUIntProperty (AudioConverterPropertyID.PrimeMethod);
@@ -216,6 +302,11 @@ public AudioConverterPrimeMethod PrimeMethod {
}
}
+ /// The priming method.
+ ///
+ ///
+ ///
+ ///
public unsafe AudioConverterPrimeInfo PrimeInfo {
get {
AudioConverterPrimeInfo value;
@@ -228,12 +319,22 @@ public unsafe AudioConverterPrimeInfo PrimeInfo {
}
}
+ /// Input to Output channel mapping.
+ ///
+ ///
+ ///
+ ///
public int []? ChannelMap {
get {
return GetArray (AudioConverterPropertyID.ChannelMap, sizeof (int));
}
}
+ /// Gets or sets a magic cookie that is used for compression.
+ ///
+ ///
+ ///
+ ///
public byte []? CompressionMagicCookie {
get {
int size;
@@ -258,6 +359,10 @@ public byte []? CompressionMagicCookie {
}
}
+ /// Gets or sets a magic cookie that is used for decompression.
+ ///
+ ///
+ /// If the audio data format has a magic cookie associated with it, you must add this information to appropriately decompress the data.
public byte []? DecompressionMagicCookie {
get {
int size;
@@ -281,6 +386,11 @@ public byte []? DecompressionMagicCookie {
}
}
+ /// The number of bits per second to aim for when encoding data.
+ ///
+ ///
+ ///
+ ///
public uint EncodeBitRate {
get {
return GetUIntProperty (AudioConverterPropertyID.EncodeBitRate);
@@ -290,6 +400,11 @@ public uint EncodeBitRate {
}
}
+ /// An an output sample rate.
+ ///
+ ///
+ ///
+ ///
public double EncodeAdjustableSampleRate {
get {
return GetDoubleProperty (AudioConverterPropertyID.EncodeAdjustableSampleRate);
@@ -299,6 +414,11 @@ public double EncodeAdjustableSampleRate {
}
}
+ /// Input audio channels layout.
+ ///
+ ///
+ ///
+ ///
public AudioChannelLayout? InputChannelLayout {
get {
int size;
@@ -314,6 +434,11 @@ public AudioChannelLayout? InputChannelLayout {
}
}
+ /// Output audio channels layout.
+ ///
+ ///
+ ///
+ ///
public AudioChannelLayout? OutputChannelLayout {
get {
int size;
@@ -329,36 +454,65 @@ public AudioChannelLayout? OutputChannelLayout {
}
}
+ /// All applicable bit rates based on current settings.
+ ///
+ ///
+ ///
+ ///
public AudioValueRange []? ApplicableEncodeBitRates {
get {
return GetAudioValueRange (AudioConverterPropertyID.ApplicableEncodeBitRates);
}
}
+ /// All available bit rates for the input format.
+ ///
+ ///
+ ///
+ ///
public AudioValueRange []? AvailableEncodeBitRates {
get {
return GetAudioValueRange (AudioConverterPropertyID.AvailableEncodeBitRates);
}
}
+ /// All applicable sample rates based on current settings.
+ ///
+ ///
+ ///
+ ///
public AudioValueRange []? ApplicableEncodeSampleRates {
get {
return GetAudioValueRange (AudioConverterPropertyID.ApplicableEncodeSampleRates);
}
}
+ /// All applicable sample rates based on current settings.
+ ///
+ ///
+ ///
+ ///
public AudioValueRange []? AvailableEncodeSampleRates {
get {
return GetAudioValueRange (AudioConverterPropertyID.AvailableEncodeSampleRates);
}
}
+ /// All audio channel layouts for the input format.
+ ///
+ ///
+ ///
+ ///
public AudioChannelLayoutTag []? AvailableEncodeChannelLayoutTags {
get {
return GetArray (AudioConverterPropertyID.AvailableEncodeChannelLayoutTags, sizeof (AudioChannelLayoutTag));
}
}
+ /// Completely filled output audio description.
+ ///
+ ///
+ /// The property can be used to obtain converter filled for output audio stream.
public unsafe AudioStreamBasicDescription CurrentOutputStreamDescription {
get {
int size;
@@ -378,6 +532,10 @@ public unsafe AudioStreamBasicDescription CurrentOutputStreamDescription {
}
}
+ /// Completely filled input audio description.
+ ///
+ ///
+ /// The property can be used to obtain converter filled for input audio stream.
public unsafe AudioStreamBasicDescription CurrentInputStreamDescription {
get {
int size;
@@ -397,6 +555,11 @@ public unsafe AudioStreamBasicDescription CurrentInputStreamDescription {
}
}
+ /// The source bit depth to preserve.
+ ///
+ ///
+ ///
+ ///
public int BitDepthHint {
get {
return (int) GetUIntProperty (AudioConverterPropertyID.PropertyBitDepthHint);
@@ -406,6 +569,11 @@ public int BitDepthHint {
}
}
+ /// All the data formats produced by the converter encoder.
+ ///
+ ///
+ ///
+ ///
public unsafe AudioFormat []? FormatList {
get {
return GetArray (AudioConverterPropertyID.PropertyFormatList, sizeof (AudioFormat));
@@ -413,6 +581,11 @@ public unsafe AudioFormat []? FormatList {
}
#if !MONOMAC
+ /// The underlying codec supports resumption following an interruption.
+ ///
+ ///
+ ///
+ ///
public bool CanResumeFromInterruption {
get {
return GetUIntProperty (AudioConverterPropertyID.CanResumeFromInterruption) != 0;
@@ -498,12 +671,22 @@ public bool CanResumeFromInterruption {
return Create (sourceFormat, destinationFormat, options, out var _);
}
+ /// All valid converter input formats.
+ ///
+ ///
+ ///
+ ///
public static AudioFormatType []? DecodeFormats {
get {
return GetFormats (AudioFormatProperty.DecodeFormatIDs);
}
}
+ /// All valid converter output formats.
+ ///
+ ///
+ ///
+ ///
public static AudioFormatType []? EncodeFormats {
get {
return GetFormats (AudioFormatProperty.EncodeFormatIDs);
diff --git a/src/AudioToolbox/AudioFile.cs b/src/AudioToolbox/AudioFile.cs
index 83c5ca7ac299..3085cc097ba4 100644
--- a/src/AudioToolbox/AudioFile.cs
+++ b/src/AudioToolbox/AudioFile.cs
@@ -50,31 +50,50 @@
namespace AudioToolbox {
public enum AudioFileType { // UInt32 AudioFileTypeID
+ /// Audio Interchange File Format.
AIFF = 0x41494646, // AIFF
+ /// Compressed Audio Interchange File Format.
AIFC = 0x41494643, // AIFC
+ /// Microsoft WAVE format.
WAVE = 0x57415645, // WAVE
#if NET
+ /// BWF-compatible RF64 multichannel sound format.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
#endif
RF64 = 0x52463634, // RF64
+ /// Sound Designer 2 file.
SoundDesigner2 = 0x53643266, // Sd2f
+ /// NeXT/Sun audio file format
Next = 0x4e655854, // NeXT
+ /// MPEG-1 Audio Layer 3.
MP3 = 0x4d504733, // MPG3
+ /// MPEG-1 Audio Layer 2.
MP2 = 0x4d504732, // MPG2
+ /// MPEG-1 Audio Layer 1, largely outdated
MP1 = 0x4d504731, // MPG1
+ /// Digital Audio Compression Standard (also known as Dolby Digital or Audio Codec 3)
AC3 = 0x61632d33, // ac-3
+ /// Audio Transport Stream, a contains for Advanced Audio Coding (AAC) data.
AAC_ADTS = 0x61647473, // adts
+ /// MPEG-4 file.
MPEG4 = 0x6d703466, // mp4f
+ /// MPEG-4 Audio Layer with no bookmark metadata (use M4B for that).
M4A = 0x6d346166, // m4af
+ /// MPEG-4 Audio Layer with metadata for bookmarks, chapter markers, images and hyperlinks.
M4B = 0x6d346266, // m4bf
+ /// Apple Core Audio Format. CAF files are containers that can contain multiple audio formats, metadata tracks. Uses 64-bit offsetes, so it is not limited to 4GB.
CAF = 0x63616666, // caff
+ /// 3GP (3GPP file format) is a multimedia container format defined by the Third Generation Partnership Project (3GPP) for 3G UMTS multimedia services. It is used on 3G mobile phones but can also be played on some 2G and 4G phones.
ThreeGP = 0x33677070, // 3gpp
+ /// 3G2 (3GPP2 file format) is a multimedia container format defined by the 3GPP2 for 3G CDMA2000 multimedia services. It is very similar to the 3GP file format, but has some extensions and limitations in comparison to 3GP.
ThreeGP2 = 0x33677032, // 3gp2
+ /// Adaptive Multi-Rate format, optimized for speech coding Used widely in GSM an UMTS.
AMR = 0x616d7266, // amrf
#if NET
+ /// Free Lossless Audio Codec format.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
@@ -94,100 +113,177 @@ public enum AudioFileType { // UInt32 AudioFileTypeID
}
public enum AudioFileError {// Implictly cast to OSType in AudioFile.h
+ /// To be added.
Success = 0, // noErr
+ /// An unspecified error has occurred.
Unspecified = 0x7768743f, // wht?
+ /// The file type is not supported.
UnsupportedFileType = 0x7479703f, // typ?
+ /// The data format is not supported.
UnsupportedDataFormat = 0x666d743f, // fmt?
+ /// The property is not supported.
UnsupportedProperty = 0x7074793f, // pty?
+ /// The size of the property data was invalid.
BadPropertySize = 0x2173697a, // !siz
+ /// To be added.
Permissions = 0x70726d3f, // prm?
+ /// The file must be optimized in order to write more audio data.
NotOptimized = 0x6f70746d, // optm
+ /// The chunk does not exist or is not supported by the file.
InvalidChunk = 0x63686b3f, // chk?
+ /// The a file offset was too large for the file type.
DoesNotAllow64BitDataSize = 0x6f66663f, // off?
+ /// A packet offset is not valid.
InvalidPacketOffset = 0x70636b3f, // pck?
+ /// The file is invalid.
InvalidFile = 0x6474613f, // dta?
+ /// To be added.
OperationNotSupported = 0x6F703F3F, // op??
+ /// The file is not opened.
FileNotOpen = -38,
+ /// The end of file.
EndOfFile = -39,
+ /// File not found.
FileNotFound = -43,
+ /// Invalid file position.
FilePosition = -40,
}
[Flags]
public enum AudioFilePermission {
+ /// To be added.
Read = 0x01,
+ /// To be added.
Write = 0x02,
+ /// To be added.
ReadWrite = 0x03
}
[Flags]
public enum AudioFileFlags { // UInt32 in AudioFileCreateWithURL()
+ /// To be added.
EraseFlags = 1,
+ /// If this flag is set, audio data will be written without page alignment. This will make the data more compact but possibly slow readout.
DontPageAlignAudioData = 2
}
public enum AudioFileProperty { // typedef UInt32 AudioFilePropertyID
+ /// To be added.
FileFormat = 0x66666d74,
+ /// To be added.
DataFormat = 0x64666d74,
+ /// To be added.
IsOptimized = 0x6f70746d,
+ /// To be added.
MagicCookieData = 0x6d676963,
+ /// To be added.
AudioDataByteCount = 0x62636e74,
+ /// To be added.
AudioDataPacketCount = 0x70636e74,
+ /// To be added.
MaximumPacketSize = 0x70737a65,
+ /// To be added.
DataOffset = 0x646f6666,
+ /// To be added.
ChannelLayout = 0x636d6170,
+ /// To be added.
DeferSizeUpdates = 0x64737a75,
+ /// To be added.
DataFormatName = 0x666e6d65,
+ /// To be added.
MarkerList = 0x6d6b6c73,
+ /// To be added.
RegionList = 0x72676c73,
+ /// To be added.
PacketToFrame = 0x706b6672,
+ /// To be added.
FrameToPacket = 0x6672706b,
+ /// To be added.
PacketToByte = 0x706b6279,
+ /// To be added.
ByteToPacket = 0x6279706b,
+ /// To be added.
ChunkIDs = 0x63686964,
+ /// To be added.
InfoDictionary = 0x696e666f,
+ /// To be added.
PacketTableInfo = 0x706e666f,
+ /// To be added.
FormatList = 0x666c7374,
+ /// To be added.
PacketSizeUpperBound = 0x706b7562,
+ /// To be added.
ReserveDuration = 0x72737276,
+ /// To be added.
EstimatedDuration = 0x65647572,
+ /// To be added.
BitRate = 0x62726174,
+ /// To be added.
ID3Tag = 0x69643374,
+ /// To be added.
SourceBitDepth = 0x73627464,
+ /// To be added.
AlbumArtwork = 0x61617274,
+ /// To be added.
ReadyToProducePackets = 0x72656479,
+ /// The average number of bytes per audio packet.
AverageBytesPerPacket = 0x61627070,
+ /// To be added.
AudioTrackCount = 0x61746374,
+ /// To be added.
UseAudioTrack = 0x7561746b,
}
public enum AudioFileLoopDirection { // Unused?
+ /// To be added.
NoLooping = 0,
+ /// To be added.
Forward = 1,
+ /// To be added.
ForwardAndBackward = 2,
+ /// To be added.
Backward = 3
}
public enum AudioFileChunkType : uint // CoreAudio.framework - CoreAudioTypes.h - "four char code IDs"
{
+ /// To be added.
CAFStreamDescription = 0x64657363, // 'desc'
+ /// To be added.
CAFAudioData = 0x64617461, // 'data'
+ /// To be added.
CAFChannelLayout = 0x6368616e, // 'chan'
+ /// To be added.
CAFFiller = 0x66726565, // 'free'
+ /// To be added.
CAFMarker = 0x6d61726b, // 'mark'
+ /// To be added.
CAFRegion = 0x7265676e, // 'regn'
+ /// To be added.
CAFInstrument = 0x696e7374, // 'inst'
+ /// To be added.
CAFMagicCookieID = 0x6b756b69, // 'kuki'
+ /// To be added.
CAFInfoStrings = 0x696e666f, // 'info'
+ /// To be added.
CAFEditComments = 0x65646374, // 'edct'
+ /// To be added.
CAFPacketTable = 0x70616b74, // 'pakt'
+ /// To be added.
CAFStrings = 0x73747267, // 'strg'
+ /// To be added.
CAFUUID = 0x75756964, // 'uuid'
+ /// To be added.
CAFPeak = 0x7065616b, // 'peak'
+ /// To be added.
CAFOverview = 0x6f767677, // 'ovvw'
+ /// To be added.
CAFMIDI = 0x6d696469, // 'midi'
+ /// To be added.
CAFUMID = 0x756d6964, // 'umid'
+ /// To be added.
CAFFormatListID = 0x6c647363, // 'ldsc'
+ /// To be added.
CAFiXML = 0x69584d4c, // 'iXML'
}
@@ -220,10 +316,20 @@ enum BytePacketTranslationFlags : uint // Stored in UInt32 in AudioBytePacketTr
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioFileSmpteTime { // AudioFile_SMPTE_Time
+ /// To be added.
+ /// To be added.
public sbyte Hours;
+ /// To be added.
+ /// To be added.
public byte Minutes;
+ /// To be added.
+ /// To be added.
public byte Seconds;
+ /// To be added.
+ /// To be added.
public byte Frames;
+ /// To be added.
+ /// To be added.
public uint SubFrameSampleOffset;
}
@@ -235,14 +341,29 @@ public struct AudioFileSmpteTime { // AudioFile_SMPTE_Time
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioFileMarker {
+ /// To be added.
+ /// To be added.
public double FramePosition;
internal IntPtr Name_cfstringref;
+ /// To be added.
+ /// To be added.
public int MarkerID;
+ /// To be added.
+ /// To be added.
public AudioFileSmpteTime SmpteTime;
+ /// To be added.
+ /// To be added.
public AudioFileMarkerType Type;
+ /// To be added.
+ /// To be added.
public ushort Reserved;
+ /// To be added.
+ /// To be added.
public ushort Channel;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get {
return CFString.FromHandle (Name_cfstringref);
@@ -318,29 +439,52 @@ public bool IsIndependentlyDecodable {
public enum AudioFileMarkerType : uint // UInt32 in AudioFileMarkerType - AudioFile.h
{
+ /// To be added.
Generic = 0,
+ /// To be added.
CAFProgramStart = 0x70626567, // 'pbeg'
+ /// To be added.
CAFProgramEnd = 0x70656e64, // 'pend'
+ /// To be added.
CAFTrackStart = 0x74626567, // 'tbeg'
+ /// To be added.
CAFTrackEnd = 0x74656e54, // 'tend'
+ /// To be added.
CAFIndex = 0x696e6478, // 'indx'
+ /// To be added.
CAFRegionStart = 0x72626567, // 'rbeg'
+ /// To be added.
CAFRegionEnd = 0x72626567, // 'rend'
+ /// To be added.
CAFRegionSyncPoint = 0x72737963, // 'rsyc'
+ /// To be added.
CAFSelectionStart = 0x73626567, // 'sbeg'
+ /// To be added.
CAFSelectionEnd = 0x73626567, // 'send'
+ /// To be added.
CAFEditSourceBegin = 0x63626567, // 'cbeg'
+ /// To be added.
CAFEditSourceEnd = 0x63626567, // 'cend'
+ /// To be added.
CAFEditDestinationBegin = 0x64626567, // 'dbeg'
+ /// To be added.
CAFEditDestinationEnd = 0x64626567, // 'dend'
+ /// To be added.
CAFSustainLoopStart = 0x736c6267, // 'slbg'
+ /// To be added.
CAFSustainLoopEnd = 0x736c6265, // 'slen'
+ /// To be added.
CAFReleaseLoopStart = 0x726c6267, // 'rlbg'
+ /// To be added.
CAFReleaseLoopEnd = 0x726c6265, // 'rlen'
+ /// To be added.
CAFSavedPlayPosition = 0x73706c79, // 'sply'
+ /// To be added.
CAFTempo = 0x746d706f, // 'tmpo'
+ /// To be added.
CAFTimeSignature = 0x74736967, // 'tsig'
+ /// To be added.
CAFKeySignature = 0x6b736967, // 'ksig'
}
@@ -365,12 +509,18 @@ public AudioFileMarkerList (IntPtr ptr, bool owns)
Dispose (false);
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public SmpteTimeType SmpteTimeType {
get {
return (SmpteTimeType) Marshal.ReadInt32 (ptr);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint Count {
get {
return (uint) Marshal.ReadInt32 (ptr, 4);
@@ -427,8 +577,14 @@ protected virtual void Dispose (bool disposing)
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioFilePacketTableInfo {
+ /// To be added.
+ /// To be added.
public long ValidFrames;
+ /// To be added.
+ /// To be added.
public int PrimingFrames;
+ /// To be added.
+ /// To be added.
public int RemainderFrames;
}
@@ -458,12 +614,18 @@ public AudioFileRegion (IntPtr ptr)
this.ptr = ptr;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint RegionID {
get {
return (uint) Marshal.ReadInt32 (ptr);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get {
return CFString.FromHandle (NameWeak);
@@ -476,12 +638,18 @@ internal IntPtr NameWeak {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe AudioFileRegionFlags Flags {
get {
return (AudioFileRegionFlags) Marshal.ReadInt32 (ptr, sizeof (uint) + sizeof (IntPtr));
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe int Count {
get {
return Marshal.ReadInt32 (ptr, 2 * sizeof (uint) + sizeof (IntPtr));
@@ -510,8 +678,11 @@ internal unsafe int TotalSize {
[Flags]
public enum AudioFileRegionFlags : uint // UInt32 in AudioFileRegion
{
+ /// In conjunction with at least one other flag, loops the region.
LoopEnable = 1,
+ /// The region is played normally.
PlayForward = 2,
+ /// The region is played in reverse.
PlayBackward = 4
}
@@ -536,12 +707,18 @@ public AudioFileRegionList (IntPtr ptr, bool owns)
Dispose (false);
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public SmpteTimeType SmpteTimeType {
get {
return (SmpteTimeType) Marshal.ReadInt32 (ptr);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint Count {
get {
return (uint) Marshal.ReadInt32 (ptr, sizeof (uint));
@@ -629,6 +806,9 @@ protected override void Dispose (bool disposing)
base.Dispose (disposing);
}
+ /// Audio file size, in bytes.
+ ///
+ /// To be added.
public long Length {
get {
return GetLong (AudioFileProperty.AudioDataByteCount);
@@ -1546,12 +1726,18 @@ unsafe AudioFileError SetDouble (AudioFileProperty property, double value)
return AudioFileSetProperty (Handle, property, sizeof (double), (IntPtr) (&value));
}
+ /// Audio file type.
+ /// To be added.
+ /// To be added.
public AudioFileType FileType {
get {
return (AudioFileType) GetInt (AudioFileProperty.FileFormat);
}
}
+ /// The audio basic description, as determined by decoding the file.
+ ///
+ /// To be added.
[Advice ("Use 'DataFormat' instead.")]
public AudioStreamBasicDescription StreamBasicDescription {
get {
@@ -1559,14 +1745,23 @@ public AudioStreamBasicDescription StreamBasicDescription {
}
}
+ /// Gets the status of the stream's basic description.
+ /// To be added.
+ /// To be added.
public AudioFileError StreamBasicDescriptionStatus { get; private set; }
+ /// Gets the , if present, that describes the format of the audio data.
+ /// To be added.
+ /// To be added.
public AudioStreamBasicDescription? DataFormat {
get {
return GetProperty (AudioFileProperty.DataFormat);
}
}
+ /// Returns a list of the supported audio formats.
+ /// To be added.
+ /// To be added.
public AudioFormat []? AudioFormats {
get {
unsafe {
@@ -1588,12 +1783,18 @@ public AudioFormat []? AudioFormats {
}
}
+ /// Gets a Boolean value that tells whether the audio file has been optimized and is ready to receive sound data.
+ /// To be added.
+ /// To be added.
public bool IsOptimized {
get {
return GetInt (AudioFileProperty.IsOptimized) == 1;
}
}
+ /// The magic cookie for this file.
+ ///
+ /// Certain files require the magic cookie to be set before they can be written to. Set this property before you write packets from your source (AudioQueue).
public byte [] MagicCookie {
get {
int size;
@@ -1620,30 +1821,45 @@ public byte [] MagicCookie {
}
}
+ /// Gets the number of audio data packets in the audio file.
+ /// To be added.
+ /// To be added.
public long DataPacketCount {
get {
return GetLong (AudioFileProperty.AudioDataPacketCount);
}
}
+ /// Gets the maximum audio packet size.
+ /// To be added.
+ /// To be added.
public int MaximumPacketSize {
get {
return GetInt (AudioFileProperty.MaximumPacketSize);
}
}
+ /// Gets the offset, in bytes, to the beginning of the audio data in the audio file.
+ /// To be added.
+ /// To be added.
public long DataOffset {
get {
return GetLong (AudioFileProperty.DataOffset);
}
}
+ /// Gets the album artwork for the audio file.
+ /// To be added.
+ /// To be added.
public NSData? AlbumArtwork {
get {
return Runtime.GetNSObject (GetIntPtr (AudioFileProperty.AlbumArtwork));
}
}
+ /// Gets the channel layout of the audio file.
+ /// To be added.
+ /// To be added.
public AudioChannelLayout? ChannelLayout {
get {
int size;
@@ -1658,6 +1874,9 @@ public AudioChannelLayout? ChannelLayout {
}
}
+ /// Gets or sets a Boolean value that controls whether the updating of file size information in the header will be deferred until the file is read, optimized, or closed. The default, which is safer, is
+ /// To be added.
+ /// To be added.
public bool DeferSizeUpdates {
get {
return GetInt (AudioFileProperty.DeferSizeUpdates) == 1;
@@ -1667,30 +1886,45 @@ public bool DeferSizeUpdates {
}
}
+ /// Audio file bit rate.
+ /// To be added.
+ /// To be added.
public int BitRate {
get {
return GetInt (AudioFileProperty.BitRate);
}
}
+ /// Gets the estimated duration, in seconds, of the audio data in the file.
+ /// To be added.
+ /// To be added.
public double EstimatedDuration {
get {
return GetDouble (AudioFileProperty.EstimatedDuration);
}
}
+ /// Gets the theoretical upper bound for the audio packet size for audio data in the file.
+ /// To be added.
+ /// To be added.
public int PacketSizeUpperBound {
get {
return GetInt (AudioFileProperty.PacketSizeUpperBound);
}
}
+ /// Gets the amount of recording time to reserve in the audio file.
+ /// To be added.
+ /// To be added.
public double ReserveDuration {
get {
return GetDouble (AudioFileProperty.ReserveDuration);
}
}
+ /// Gets the that contains the markers for the audio file.
+ /// To be added.
+ /// To be added.
public AudioFileMarkerList? MarkerList {
get {
var ptr = GetProperty (AudioFileProperty.MarkerList, out var _);
@@ -1701,6 +1935,9 @@ public AudioFileMarkerList? MarkerList {
}
}
+ /// Gets a list of all the audio regions in the audio file.
+ /// To be added.
+ /// To be added.
public AudioFileRegionList? RegionList {
get {
var ptr = GetProperty (AudioFileProperty.RegionList, out var _);
@@ -1711,8 +1948,14 @@ public AudioFileRegionList? RegionList {
}
}
+ /// Gets the status of the audio packet table..
+ /// To be added.
+ /// To be added.
public AudioFileError PacketTableInfoStatus { get; private set; }
+ /// Gets or sets the structure that describes the audio file packet table.
+ /// To be added.
+ /// To be added.
public unsafe AudioFilePacketTableInfo? PacketTableInfo {
get {
return GetProperty (AudioFileProperty.PacketTableInfo);
@@ -1728,6 +1971,9 @@ public unsafe AudioFilePacketTableInfo? PacketTableInfo {
}
}
+ /// Gets an array of four-character codes that describe the kind of each chunk in the audio file.
+ /// To be added.
+ /// To be added.
public unsafe AudioFileChunkType []? ChunkIDs {
get {
int size;
@@ -1746,6 +1992,9 @@ public unsafe AudioFileChunkType []? ChunkIDs {
}
}
+ /// Gets a byte array that contains the ID3Tag for the audio data.
+ /// To be added.
+ /// To be added.
public unsafe byte []? ID3Tag {
get {
int size;
@@ -1764,6 +2013,9 @@ public unsafe byte []? ID3Tag {
}
}
+ /// Gets the CF dictionary that contains audio file metadata.
+ /// To be added.
+ /// To be added.
public AudioFileInfoDictionary? InfoDictionary {
get {
var ptr = GetIntPtr (AudioFileProperty.InfoDictionary);
@@ -1850,132 +2102,198 @@ internal AudioFileInfoDictionary (NSDictionary dict)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Album {
get {
return GetStringValue ("album");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? ApproximateDurationInSeconds {
get {
return GetStringValue ("approximate duration in seconds");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Artist {
get {
return GetStringValue ("artist");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? ChannelLayout {
get {
return GetStringValue ("channel layout");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Composer {
get {
return GetStringValue ("composer");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Comments {
get {
return GetStringValue ("comments");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Copyright {
get {
return GetStringValue ("copyright");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? EncodingApplication {
get {
return GetStringValue ("encoding application");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Genre {
get {
return GetStringValue ("genre");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? ISRC {
get {
return GetStringValue ("ISRC");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? KeySignature {
get {
return GetStringValue ("key signature");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Lyricist {
get {
return GetStringValue ("lyricist");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? NominalBitRate {
get {
return GetStringValue ("nominal bit rate");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? RecordedDate {
get {
return GetStringValue ("recorded date");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? SourceBitDepth {
get {
return GetStringValue ("source bit depth");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? SourceEncoder {
get {
return GetStringValue ("source encoder");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? SubTitle {
get {
return GetStringValue ("subtitle");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Tempo {
get {
return GetStringValue ("tempo");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? TimeSignature {
get {
return GetStringValue ("time signature");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Title {
get {
return GetStringValue ("title");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? TrackNumber {
get {
return GetStringValue ("track number");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Year {
get {
return GetStringValue ("year");
@@ -2082,6 +2400,9 @@ static int SourceSetSize (IntPtr clientData, long size)
audioSource.Size = size;
return 0;
}
+ /// Used to set or get the size of the audio stream.
+ /// The size of the file.
+ /// If the AudioSource is created in reading mode, this method should return the size of the audio data. If the AudioSource is created to write data, this method is invoked to set the audio file size.
public abstract long Size { get; set; }
protected override void Dispose (bool disposing)
diff --git a/src/AudioToolbox/AudioFileGlobalInfo.cs b/src/AudioToolbox/AudioFileGlobalInfo.cs
index f21b524cc6c8..32b18f4d4d4a 100644
--- a/src/AudioToolbox/AudioFileGlobalInfo.cs
+++ b/src/AudioToolbox/AudioFileGlobalInfo.cs
@@ -49,6 +49,9 @@ namespace AudioToolbox {
[SupportedOSPlatform ("tvos")]
#endif
public unsafe static class AudioFileGlobalInfo {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static AudioFileType []? ReadableTypes {
get {
uint size;
@@ -62,6 +65,9 @@ public static AudioFileType []? ReadableTypes {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static AudioFileType []? WritableTypes {
get {
uint size;
@@ -109,6 +115,9 @@ public static AudioFileType []? WritableTypes {
return data;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static string? []? AllExtensions {
get {
if (!TryGetGlobalInfo (AudioFileGlobalProperty.AllExtensions, out var ptr))
@@ -118,6 +127,9 @@ public static string? []? AllExtensions {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static string? []? AllUTIs {
get {
if (!TryGetGlobalInfo (AudioFileGlobalProperty.AllUTIs, out var ptr))
@@ -127,6 +139,9 @@ public static string? []? AllUTIs {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static string? []? AllMIMETypes {
get {
if (!TryGetGlobalInfo (AudioFileGlobalProperty.AllMIMETypes, out var ptr))
diff --git a/src/AudioToolbox/AudioFileStream.cs b/src/AudioToolbox/AudioFileStream.cs
index d227efe43049..31c205e7a93c 100644
--- a/src/AudioToolbox/AudioFileStream.cs
+++ b/src/AudioToolbox/AudioFileStream.cs
@@ -47,45 +47,79 @@ namespace AudioToolbox {
[Flags]
public enum AudioFileStreamPropertyFlag { // UInt32 in AudioFileStream_PropertyListenerProc
+ /// To be added.
PropertyIsCached = 1,
+ /// To be added.
CacheProperty = 2,
}
public enum AudioFileStreamStatus { // Implictly cast to OSType
+ /// To be added.
Ok = 0,
+ /// To be added.
UnsupportedFileType = 0x7479703f,
+ /// To be added.
UnsupportedDataFormat = 0x666d743f,
+ /// To be added.
UnsupportedProperty = 0x7074793f,
+ /// To be added.
BadPropertySize = 0x2173697a,
+ /// To be added.
NotOptimized = 0x6f70746d,
+ /// To be added.
InvalidPacketOffset = 0x70636b3f,
+ /// To be added.
InvalidFile = 0x6474613f,
+ /// To be added.
ValueUnknown = 0x756e6b3f,
+ /// To be added.
DataUnavailable = 0x6d6f7265,
+ /// To be added.
IllegalOperation = 0x6e6f7065,
+ /// To be added.
UnspecifiedError = 0x7768743f,
+ /// To be added.
DiscontinuityCantRecover = 0x64736321,
}
public enum AudioFileStreamProperty { // UInt32 AudioFileStreamPropertyID
+ /// To be added.
ReadyToProducePackets = 0x72656479,
+ /// To be added.
FileFormat = 0x66666d74,
+ /// To be added.
DataFormat = 0x64666d74,
+ /// To be added.
FormatList = 0x666c7374,
+ /// To be added.
MagicCookieData = 0x6d676963,
+ /// To be added.
AudioDataByteCount = 0x62636e74,
+ /// To be added.
AudioDataPacketCount = 0x70636e74,
+ /// To be added.
MaximumPacketSize = 0x70737a65,
+ /// To be added.
DataOffset = 0x646f6666,
+ /// To be added.
ChannelLayout = 0x636d6170,
+ /// To be added.
PacketToFrame = 0x706b6672,
+ /// To be added.
FrameToPacket = 0x6672706b,
+ /// To be added.
PacketToByte = 0x706b6279,
+ /// To be added.
ByteToPacket = 0x6279706b,
+ /// To be added.
PacketTableInfo = 0x706e666f,
+ /// To be added.
PacketSizeUpperBound = 0x706b7562,
+ /// To be added.
AverageBytesPerPacket = 0x61627070,
+ /// To be added.
BitRate = 0x62726174,
+ /// To be added.
InfoDictionary = 0x696e666f,
}
@@ -102,7 +136,13 @@ public PropertyFoundEventArgs (AudioFileStreamProperty propertyID, AudioFileStre
Flags = ioFlags;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioFileStreamProperty Property { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioFileStreamPropertyFlag Flags { get; set; }
public override string ToString ()
@@ -124,8 +164,17 @@ public PacketReceivedEventArgs (int numberOfBytes, IntPtr inputData, AudioStream
this.InputData = inputData;
this.PacketDescriptions = packetDescriptions;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int Bytes { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public IntPtr InputData { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioStreamPacketDescription []? PacketDescriptions { get; private set; }
public override string ToString ()
@@ -218,6 +267,8 @@ static void InPackets (IntPtr clientData, int numberBytes, int numberPackets, In
afs!.OnPacketDecoded (numberBytes, inputData, desc);
}
+ /// This event is raised when a packet has been decoded.
+ /// To be added.
public EventHandler? PacketDecoded;
protected virtual void OnPacketDecoded (int numberOfBytes, IntPtr inputData, AudioStreamPacketDescription []? packetDescriptions)
{
@@ -226,6 +277,8 @@ protected virtual void OnPacketDecoded (int numberOfBytes, IntPtr inputData, Aud
p (this, new PacketReceivedEventArgs (numberOfBytes, inputData, packetDescriptions));
}
+ /// This event is raised when a property has been found on the decoded data.
+ /// The most interesting property that is raised is AudioFileStreamProperty.ReadyToProducePackets; When this property is parsed there is enough information to create the output queue. The MagicCookie and the StreamBasicDescription contain the information necessary to create a working instance of the OutputAudioQueue.
public EventHandler? PropertyFound;
protected virtual void OnPropertyFound (AudioFileStreamProperty propertyID, ref AudioFileStreamPropertyFlag ioFlags)
{
@@ -482,18 +535,42 @@ public bool SetProperty (AudioFileStreamProperty property, int dataSize, IntPtr
[DllImport (Constants.AudioToolboxLibrary)]
extern static AudioFileStreamStatus AudioFileStreamClose (AudioFileStreamID inAudioFileStream);
+ /// Set to true once the file stream parser has read enough of the headers to be able to produce audio packets.
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public bool ReadyToProducePackets {
get {
return GetInt (AudioFileStreamProperty.ReadyToProducePackets) == 1;
}
}
+ /// The audio file type for the audio stream.
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public AudioFileType FileType {
get {
return (AudioFileType) GetInt (AudioFileStreamProperty.FileFormat);
}
}
+ /// Format of the data
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
[Advice ("Use 'DataFormat' instead.")]
public AudioStreamBasicDescription StreamBasicDescription {
get {
@@ -501,12 +578,35 @@ public AudioStreamBasicDescription StreamBasicDescription {
}
}
+ /// Format of the data (as an AudioStreamBasicDescription
+ /// .
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public AudioStreamBasicDescription DataFormat {
get {
return GetProperty (AudioFileStreamProperty.DataFormat) ?? default (AudioStreamBasicDescription);
}
}
+ /// List of formats supported by the audio stream.
+ ///
+ ///
+ ///
+ ///
+ /// Some formats (like AAC) that support multiple encodings
+ /// will set this property to the available audio formats.
+ /// You would typically use one of the returned
+ /// AudioStreamBasicDescription descriptions to create an
+ /// .
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public unsafe AudioFormat []? FormatList {
get {
int size;
@@ -527,12 +627,33 @@ public unsafe AudioFormat []? FormatList {
}
}
+ /// Contains information about the valid frames in the audio file stream (their start and end).
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public AudioFilePacketTableInfo? PacketTableInfo {
get {
return GetProperty (AudioFileStreamProperty.PacketTableInfo);
}
}
+ /// The magic cookie for this file.
+ ///
+ ///
+ ///
+ ///
+ /// Some file formats require that the magic cookie is written
+ /// before data can be written, use this property to retrieve
+ /// the magic cookie for this file stream.
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public byte [] MagicCookie {
get {
int size;
@@ -548,30 +669,73 @@ public byte [] MagicCookie {
}
}
+ /// For streams whose length is known, the number of audio byte data.
+ ///
+ ///
+ ///
+ ///
+ /// After the audio stream header is parsed, it is possible to determine the number of bytes of audio data. For streaming formats, this value is not specified.
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public long DataByteCount {
get {
return GetLong (AudioFileStreamProperty.AudioDataByteCount);
}
}
+ /// The number of audio packets on the audio file stream.
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public long DataPacketCount {
get {
return GetLong (AudioFileStreamProperty.AudioDataPacketCount);
}
}
+ /// Maximum packet size for data on the audio file stream
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public int MaximumPacketSize {
get {
return GetInt (AudioFileStreamProperty.MaximumPacketSize);
}
}
+ /// Offset of the audio date from the beginning of the audio file stream.
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public long DataOffset {
get {
return GetLong (AudioFileStreamProperty.DataOffset);
}
}
+ /// The channel layout for the audio stream.
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public AudioChannelLayout? ChannelLayout {
get {
int size;
@@ -657,24 +821,56 @@ public long ByteToPacket (long byteval, out int byteOffsetInPacket, out bool isE
}
}
+ /// The stream's bit rate in bits per second.
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public int BitRate {
get {
return GetInt (AudioFileStreamProperty.BitRate);
}
}
+ /// The largest possible packet size.
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public int PacketSizeUpperBound {
get {
return GetInt (AudioFileStreamProperty.PacketSizeUpperBound);
}
}
+ /// Average bytes per packet. This value is precise for audio files with constant bit rates or audio files that have a packet index, otherwise it is a computed average.
+ ///
+ ///
+ ///
+ ///
+ /// This updates the property.
+ ///
+ ///
public double AverageBytesPerPacket {
get {
return GetDouble (AudioFileStreamProperty.AverageBytesPerPacket);
}
}
+ /// Contains the latest error code set by one of the methods in AudioFileStream.
+ ///
+ ///
+ ///
+ /// Accessing some properties and methods set this value when
+ /// accessed, you can use this during debugging to identify
+ /// problems in your code.
+ ///
public AudioFileStreamStatus LastError { get; private set; }
}
}
diff --git a/src/AudioToolbox/AudioFormat.cs b/src/AudioToolbox/AudioFormat.cs
index f1111b23fe7c..973fc84f4a6d 100644
--- a/src/AudioToolbox/AudioFormat.cs
+++ b/src/AudioToolbox/AudioFormat.cs
@@ -50,7 +50,13 @@ namespace AudioToolbox {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioFormat {
+ /// The AudioStreamBasicDescription.
+ ///
+ ///
public AudioStreamBasicDescription AudioStreamBasicDescription;
+ /// The AudioChannelLayoutTag
+ ///
+ ///
public AudioChannelLayoutTag AudioChannelLayoutTag;
public unsafe static AudioFormat? GetFirstPlayableFormat (AudioFormat [] formatList)
@@ -78,12 +84,19 @@ public override string ToString ()
public enum AudioFormatError : int // Implictly cast to OSType
{
+ /// To be added.
None = 0,
+ /// To be added.
Unspecified = 0x77686174, // 'what'
+ /// To be added.
UnsupportedProperty = 0x70726f70, // 'prop'
+ /// To be added.
BadPropertySize = 0x2173697a, // '!siz'
+ /// To be added.
BadSpecifierSize = 0x21737063, // '!spc'
+ /// To be added.
UnsupportedDataFormat = 0x666d743f, // 'fmt?'
+ /// To be added.
UnknownFormat = 0x21666d74 // '!fmt'
// TODO: Not documented
@@ -98,13 +111,19 @@ public enum AudioFormatError : int // Implictly cast to OSType
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioValueRange {
+ /// To be added.
+ /// To be added.
public double Minimum;
+ /// To be added.
+ /// To be added.
public double Maximum;
}
public enum AudioBalanceFadeType : uint // UInt32 in AudioBalanceFades
{
+ /// Overall gain is not allowed to exceed 1.0.
MaxUnityGain = 0,
+ /// Overall loudness remains constant, but gain may be as high as 1.414 (+3dB).
EqualPower = 1
}
@@ -132,9 +151,21 @@ public AudioBalanceFade (AudioChannelLayout channelLayout)
this.ChannelLayout = channelLayout;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float LeftRightBalance { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float BackFrontFade { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioBalanceFadeType Type { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioChannelLayout ChannelLayout { get; private set; }
public unsafe float []? GetBalanceFade ()
@@ -181,7 +212,9 @@ Layout ToStruct ()
public enum PanningMode : uint // UInt32 in AudioPanningInfo
{
+ /// To be added.
SoundField = 3,
+ /// To be added.
VectorBasedPanning = 4
}
@@ -212,10 +245,25 @@ public AudioPanningInfo (AudioChannelLayout outputChannelMap)
this.OutputChannelMap = outputChannelMap;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public PanningMode PanningMode { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioChannelFlags CoordinateFlags { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float [] Coordinates { get; private set; } = Array.Empty ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float GainScale { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioChannelLayout OutputChannelMap { get; private set; }
public unsafe float []? GetPanningMatrix ()
diff --git a/src/AudioToolbox/AudioQueue.cs b/src/AudioToolbox/AudioQueue.cs
index 1e7bee989edb..34e6e39c2ba5 100644
--- a/src/AudioToolbox/AudioQueue.cs
+++ b/src/AudioToolbox/AudioQueue.cs
@@ -48,32 +48,58 @@
namespace AudioToolbox {
public enum AudioQueueStatus { // Implictly cast to OSType
+ /// To be added.
Ok = 0,
+ /// To be added.
InvalidBuffer = -66687,
+ /// To be added.
BufferEmpty = -66686,
+ /// To be added.
DisposalPending = -66685,
+ /// To be added.
InvalidProperty = -66684,
+ /// To be added.
InvalidPropertySize = -66683,
+ /// To be added.
InvalidParameter = -66682,
+ /// To be added.
CannotStart = -66681,
+ /// To be added.
InvalidDevice = -66680,
+ /// To be added.
BufferInQueue = -66679,
+ /// To be added.
InvalidRunState = -66678,
+ /// To be added.
InvalidQueueType = -66677,
+ /// To be added.
Permissions = -66676,
+ /// To be added.
InvalidPropertyValue = -66675,
+ /// To be added.
PrimeTimedOut = -66674,
+ /// To be added.
CodecNotFound = -66673,
+ /// To be added.
InvalidCodecAccess = -66672,
+ /// To be added.
QueueInvalidated = -66671,
+ /// To be added.
TooManyTaps = -66670,
+ /// To be added.
InvalidTapContext = -66669,
+ /// To be added.
RecordUnderrun = -66668,
+ /// To be added.
InvalidTapType = -66667,
+ /// To be added.
EnqueueDuringReset = -66632,
+ /// To be added.
InvalidOfflineMode = -66626,
+ /// To be added.
BufferEnqueuedTwice = -66666,
#if NET
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -82,11 +108,15 @@ public enum AudioQueueStatus { // Implictly cast to OSType
CannotStartYet = -66665,
// There is countless of not well documented error codes returned
+ /// To be added.
QueueStopped = 0x73746f70, // 'stop'
+ /// To be added.
DataFormatError = 0x666d743f, // 'fmt?'
+ /// To be added.
UnsupportedProperty = 0x70726F70, // 'prop'
// From kAudio_
+ /// To be added.
GeneralParamError = -50
}
@@ -179,72 +209,116 @@ internal AudioQueueException (int k) : base (Lookup (k))
ErrorCode = (AudioQueueStatus) k;
}
+ /// The underlying AudioToolbox error code.
+ ///
+ ///
+ ///
+ ///
public AudioQueueStatus ErrorCode { get; private set; }
}
public enum AudioQueueProperty : uint // UInt32 AudioQueuePropertyID
{
+ /// To be added.
IsRunning = 0x6171726e,
+ /// To be added.
DeviceSampleRate = 0x61717372, // 'aqsr'
+ /// To be added.
DeviceNumberChannels = 0x61716463,
+ /// To be added.
CurrentDevice = 0x61716364,
+ /// To be added.
MagicCookie = 0x61716d63,
+ /// To be added.
MaximumOutputPacketSize = 0x786f7073, // 'xops'
+ /// To be added.
StreamDescription = 0x61716674, // 'aqft'
+ /// To be added.
ChannelLayout = 0x6171636c, // 'aqcl'
+ /// To be added.
EnableLevelMetering = 0x61716d65,
+ /// To be added.
CurrentLevelMeter = 0x61716d76,
+ /// To be added.
CurrentLevelMeterDB = 0x61716d64,
+ /// To be added.
DecodeBufferSizeFrames = 0x64636266,
+ /// To be added.
ConverterError = 0x71637665, // 'qcve'
+ /// To be added.
EnableTimePitch = 0x715f7470, // 'q_tp'
+ /// To be added.
TimePitchAlgorithm = 0x71747061, // 'qtpa'
+ /// To be added.
TimePitchBypass = 0x71747062, // 'qtpb'
#if !MONOMAC
+ /// To be added.
HardwareCodecPolicy = 0x61716370, // 'aqcp'
+ /// To be added.
ChannelAssignments = 0x61716361, // 'aqca'
#endif
}
public enum AudioQueueTimePitchAlgorithm : uint {
+ /// To be added.
Spectral = 0x73706563, // spec
+ /// To be added.
TimeDomain = 0x7469646f, // tido
#if !MONOMAC
+ /// To be added.
LowQualityZeroLatency = 0x6c717a6c, // lqzl
#endif
+ /// To be added.
Varispeed = 0x76737064 // vspd
}
public enum AudioQueueHardwareCodecPolicy { // A AudioQueuePropertyID (UInt32)
+ /// To be added.
Default = 0,
+ /// To be added.
UseSoftwareOnly = 1,
+ /// To be added.
UseHardwareOnly = 2,
+ /// To be added.
PreferSoftware = 3,
+ /// To be added.
PreferHardware = 4
}
public enum AudioQueueParameter : uint // UInt32 AudioQueueParameterID
{
+ /// To be added.
Volume = 1,
+ /// To be added.
PlayRate = 2,
+ /// To be added.
Pitch = 3,
+ /// To be added.
VolumeRampTime = 4,
+ /// To be added.
Pan = 13,
}
public enum AudioQueueDeviceProperty { // UInt32 AudioQueueParameterID
+ /// To be added.
SampleRate = 0x61717372,
+ /// To be added.
NumberChannels = 0x61716463
}
[Flags]
public enum AudioQueueProcessingTapFlags : uint // UInt32 in AudioQueueProcessingTapNew
{
+ /// The tap is executed before any effects have run.
PreEffects = (1 << 0),
+ /// The tap is executed after any effects have run.
PostEffects = (1 << 1),
+ /// The tap is a siphon tap, it can only examine the AudioBuffers provided to the callback, but should not modify its contents.
Siphon = (1 << 2),
+ /// Indicates the start of audio and is returned by GetSourceAudio. As a flag passed to a tap processor, this indicates a discontinuity in the audio. Either because it is starting, or because there is a playback gap. For the tap processor this means that the data being requested should correspond to the first frame in the audio source. This should reset any internal state in the tap processor that might have been saved from previous invocations to the tap handler.
StartOfStream = (1 << 8),
+ /// Indicates the end of the audio stream, it happens when the queue is being stopped asynchronosuly and is returned by a call to GetSourceAudio. You must propagate this value to the caller.
EndOfStream = (1 << 9),
}
@@ -256,15 +330,32 @@ public enum AudioQueueProcessingTapFlags : uint // UInt32 in AudioQueueProcessin
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioQueueBuffer {
+ /// To be added.
+ /// To be added.
public uint AudioDataBytesCapacity;
+ /// Pointer to the audio data.
+ /// To be added.
public IntPtr AudioData;
+ /// To be added.
+ /// To be added.
public uint AudioDataByteSize;
+ /// To be added.
+ /// To be added.
public IntPtr UserData;
+ /// To be added.
+ /// To be added.
public uint PacketDescriptionCapacity;
+ /// To be added.
+ /// To be added.
public IntPtr IntPtrPacketDescriptions;
+ /// To be added.
+ /// To be added.
public int PacketDescriptionCount;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioStreamPacketDescription []? PacketDescriptions {
get {
return AudioFile.PacketDescriptionFrom (PacketDescriptionCount, IntPtrPacketDescriptions);
@@ -285,13 +376,19 @@ public unsafe void CopyToAudioData (IntPtr source, int size)
#endif
[StructLayout (LayoutKind.Explicit)]
public struct AudioQueueParameterEvent {
+ /// To be added.
+ /// To be added.
[FieldOffset (0)]
[Advice ("Use Parameter.")]
public uint ID;
+ /// To be added.
+ /// To be added.
[FieldOffset (0)]
public AudioQueueParameter Parameter;
+ /// To be added.
+ /// To be added.
[FieldOffset (4)]
public float Value;
@@ -311,7 +408,13 @@ public AudioQueueParameterEvent (AudioQueueParameter parameter, float value)
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioQueueLevelMeterState {
+ /// The audio channel average root mean square power.
+ ///
+ ///
public float AveragePower;
+ /// The audio channel peak root mean square power.
+ ///
+ ///
public float PeakPower;
}
@@ -356,7 +459,13 @@ public unsafe BufferCompletedEventArgs (AudioQueueBuffer* audioQueueBuffer)
IntPtrBuffer = (IntPtr) audioQueueBuffer;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public IntPtr IntPtrBuffer { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe AudioQueueBuffer* UnsafeBuffer {
get { return (AudioQueueBuffer*) IntPtrBuffer; }
set { IntPtrBuffer = (IntPtr) value; }
@@ -377,15 +486,30 @@ public unsafe InputCompletedEventArgs (IntPtr audioQueueBuffer, AudioTimeStamp t
PacketDescriptions = pdec;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public IntPtr IntPtrBuffer { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe AudioQueueBuffer* UnsafeBuffer {
get { return (AudioQueueBuffer*) IntPtrBuffer; }
set { IntPtrBuffer = (IntPtr) value; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe AudioQueueBuffer Buffer {
get { return *(AudioQueueBuffer*) IntPtrBuffer; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioTimeStamp TimeStamp { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioStreamPacketDescription []? PacketDescriptions { get; private set; }
}
@@ -396,9 +520,16 @@ public unsafe AudioQueueBuffer Buffer {
[SupportedOSPlatform ("tvos")]
#endif
public abstract class AudioQueue : IDisposable {
+ /// To be added.
+ /// To be added.
internal protected IntPtr handle;
+ /// To be added.
+ /// To be added.
internal protected GCHandle gch;
+ /// Handle (pointer) to the unmanaged object representation.
+ /// A pointer
+ /// This IntPtr is a handle to the underlying unmanaged representation for this object.
public IntPtr Handle { get { return handle; } }
internal AudioQueue ()
@@ -732,6 +863,11 @@ public AudioQueueStatus GetCurrentTime (AudioQueueTimeline? timeline, ref AudioT
[DllImport (Constants.AudioToolboxLibrary)]
unsafe extern static AudioQueueStatus AudioQueueDeviceGetCurrentTime (IntPtr AQ, AudioTimeStamp* time);
+ /// Returns the current time for the hardware device.
+ ///
+ ///
+ ///
+ ///
public AudioTimeStamp CurrentTime {
get {
AudioTimeStamp stamp = new AudioTimeStamp ();
@@ -780,6 +916,10 @@ public AudioTimeStamp TranslateTime (AudioTimeStamp timeToTranslate)
[DllImport (Constants.AudioToolboxLibrary)]
extern static OSStatus AudioQueueSetParameter (IntPtr AQ, AudioQueueParameter parameterId, float value);
+ /// The volume
+ /// Value between 0.0 and 1.0.
+ ///
+ ///
public float Volume {
get {
float r;
@@ -799,6 +939,9 @@ public float Volume {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float VolumeRampTime {
get {
float r;
@@ -818,6 +961,9 @@ public float VolumeRampTime {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float Pan {
get {
float r;
@@ -1079,24 +1225,38 @@ double GetDouble (AudioQueueProperty property)
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsRunning {
get {
return GetInt (AudioQueueProperty.IsRunning) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public double SampleRate {
get {
return GetDouble (AudioQueueProperty.DeviceSampleRate);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int DeviceChannels {
get {
return GetInt (AudioQueueProperty.DeviceNumberChannels);
}
}
+ /// Unique identifier for the device associated with this Audio Queue.
+ ///
+ ///
+ ///
+ ///
public string? CurrentDevice {
get {
return CFString.FromHandle ((IntPtr) GetInt (AudioQueueProperty.CurrentDevice));
@@ -1110,6 +1270,16 @@ public string? CurrentDevice {
#pragma warning disable 612
+ /// Audio metadata required by certain formats.
+ /// Opaque byte array with a codec-specific token.
+ ///
+ ///
+ /// Certain file format produce a MagicCookie that
+ /// contains audio metadata. When playing back or recording, you need to copy
+ /// this magic cookie from the AudioQueue to the by copying this property to the
+ ///
+ /// property.
+ ///
public byte [] MagicCookie {
get {
int size;
@@ -1139,6 +1309,18 @@ public byte [] MagicCookie {
}
}
+ /// The audio queue channel layout.
+ /// To be added.
+ ///
+ ///
+ /// The ChannelLayout must match the number of channels in the
+ /// audio format.
+ ///
+ ///
+ /// This property is used to configure the channel layout in
+ /// complex scenarios like 5.1 surround sound.
+ ///
+ ///
public AudioChannelLayout? ChannelLayout {
get {
int size;
@@ -1163,6 +1345,14 @@ public AudioChannelLayout? ChannelLayout {
}
}
+ /// Enables level metering on the audio queue.
+ ///
+ ///
+ ///
+ ///
+ /// Enable level metering in your audio queue if you want to read the level meters with the or properties.n
+ ///
+ ///
public bool EnableLevelMetering {
get {
return GetInt (AudioQueueProperty.EnableLevelMetering) != 0;
@@ -1172,18 +1362,27 @@ public bool EnableLevelMetering {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MaximumOutputPacketSize {
get {
return GetInt (AudioQueueProperty.MaximumOutputPacketSize);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int DecodeBufferSizeFrames {
get {
return GetInt (AudioQueueProperty.DecodeBufferSizeFrames);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioStreamBasicDescription AudioStreamDescription {
get {
#if !MONOMAC
@@ -1194,6 +1393,7 @@ public AudioStreamBasicDescription AudioStreamDescription {
}
}
+ ///
public AudioQueueLevelMeterState [] CurrentLevelMeter {
get {
unsafe {
@@ -1211,6 +1411,7 @@ public AudioQueueLevelMeterState [] CurrentLevelMeter {
}
}
+ ///
public AudioQueueLevelMeterState [] CurrentLevelMeterDB {
get {
unsafe {
@@ -1230,6 +1431,11 @@ public AudioQueueLevelMeterState [] CurrentLevelMeterDB {
#pragma warning restore 612
+ /// Contains the most recent error generated in the audio queue's encoding or decoding process.
+ ///
+ ///
+ ///
+ ///
public uint ConverterError {
get {
return (uint) GetInt (AudioQueueProperty.ConverterError);
@@ -1237,6 +1443,9 @@ public uint ConverterError {
}
#if !MONOMAC
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioQueueHardwareCodecPolicy HardwareCodecPolicy {
get {
return (AudioQueueHardwareCodecPolicy) GetInt (AudioQueueProperty.HardwareCodecPolicy);
@@ -1362,7 +1571,16 @@ internal GCHandle Handle {
}
internal IntPtr TapHandle { get; set; }
+ /// Maximum number of sample frames per tap.
+ ///
+ ///
+ /// Apple lists this as being "50 msec of audio, 2048 samples at 44.1Khz".
public uint MaxFrames { get; internal set; }
+ /// The format of the data that will be provided to the tap render function.
+ ///
+ ///
+ ///
+ ///
public AudioStreamBasicDescription ProcessingFormat { get; internal set; }
public void Dispose ()
@@ -1668,7 +1886,13 @@ public unsafe AudioQueueStatus EnqueueBuffer (AudioQueueBuffer* buffer)
[SupportedOSPlatform ("tvos")]
#endif
public class AudioQueueTimeline : IDisposable {
+ /// Handle to the underlying C timeline object.
+ ///
+ ///
internal protected IntPtr timelineHandle;
+ /// The handle to the underlying C queue.
+ ///
+ ///
internal protected IntPtr queueHandle;
internal AudioQueueTimeline (IntPtr queueHandle, IntPtr timelineHandle)
diff --git a/src/AudioToolbox/AudioServices.cs b/src/AudioToolbox/AudioServices.cs
index c50a4ebb3ea5..39cdfe3289d9 100644
--- a/src/AudioToolbox/AudioServices.cs
+++ b/src/AudioToolbox/AudioServices.cs
@@ -37,12 +37,19 @@
namespace AudioToolbox {
public enum AudioServicesError { // Implictly cast to OSType
+ /// To be added.
None = 0,
+ /// To be added.
UnsupportedProperty = 0x7074793f, // 'pty?'
+ /// To be added.
BadPropertySize = 0x2173697a, // '!siz'
+ /// To be added.
BadSpecifierSizeError = 0x21737063, // '!spc'
+ /// To be added.
SystemSoundUnspecifiedError = -1500,
+ /// To be added.
SystemSoundClientTimedOutError = -1501,
+ /// To be added.
SystemSoundExceededMaximumDurationError = -1502,
}
diff --git a/src/AudioToolbox/AudioSessions.cs b/src/AudioToolbox/AudioSessions.cs
index 7df57c126ecf..1829609ac69d 100644
--- a/src/AudioToolbox/AudioSessions.cs
+++ b/src/AudioToolbox/AudioSessions.cs
@@ -38,98 +38,173 @@ namespace AudioToolbox {
/// An enumeration whose values can be returned by the method or the property.
public enum AudioSessionErrors { // Implictly cast to OSType
+ /// To be added.
None = 0,
+ /// To be added.
NotInitialized = 0x21696e69, // '!ini',
+ /// To be added.
AlreadyInitialized = 0x696e6974, // 'init',
+ /// To be added.
InitializationError = 0x696e693f, // 'ini?',
+ /// To be added.
UnsupportedPropertyError = 0x7074793f, // 'pty?',
+ /// To be added.
BadPropertySizeError = 0x2173697a, // '!siz',
+ /// To be added.
NotActiveError = 0x21616374, // '!act',
+ /// To be added.
NoHardwareError = 0x6e6f6877, // 'nohw'
+ /// To be added.
IncompatibleCategory = 0x21636174, // '!cat'
+ /// To be added.
NoCategorySet = 0x3f636174, // '?cat'
+ /// To be added.
UnspecifiedError = 0x77686371, // 'what'
}
/// An enumeration whose values represent the beginning and end of an audio session interruption.
public enum AudioSessionInterruptionState { // UInt32 in AudioSessionInterruptionListener
+ /// To be added.
End = 0,
+ /// To be added.
Begin = 1,
}
/// Categories for your audio session.
public enum AudioSessionCategory { // UInt32 AudioSessionPropertyID
+ ///
+ /// Use this category if playing audio is not your
+ /// application's main use and if your application can be used
+ /// with the sound off. This allows background music to be
+ /// mixed with the audio your application produces.
+ ///
AmbientSound = 0x616d6269, // 'ambi'
+ ///
+ /// This is the default audio session category.
+ ///
SoloAmbientSound = 0x736f6c6f, // 'solo'
+ ///
+ /// Use this if the main use of your application is to play back music.
+ ///
MediaPlayback = 0x6d656469, // 'medi'
+ ///
+ /// Used to record audio. This will prevent background audio and messages from playing back.
+ ///
RecordAudio = 0x72656361, // 'reca'
+ ///
+ /// Used to perform both playback and recording at the same time, for example for live chat applications.
+ ///
PlayAndRecord = 0x706c6172, // 'plar'
+ ///
+ /// Use this category when you want to use the hardware accelerated audio support to perform audio conversions.
+ ///
AudioProcessing = 0x70726f63 // 'proc'
}
/// Possible values to override the audio route
public enum AudioSessionRoutingOverride { // UInt32 AudioSessionPropertyID
+ /// Use the normal audio route.
None = 0,
+ /// Send audio to the built-in speaker. If a headset is plugged when this value is set, the microphone is also redirected to the built-in microphone.
Speaker = 0x73706b72, // 'spkr'
}
/// The reason for AudioSession route change event to be raised.
public enum AudioSessionRouteChangeReason { // UInt32 AudioSessionPropertyID
+ /// The route changed, but there is no information about why.
Unknown = 0,
+ /// A new audio device has been plugged.
NewDeviceAvailable = 1,
+ /// The previous device is no longer available.
OldDeviceUnavailable = 2,
+ /// The AudioSession category has changed.
CategoryChange = 3,
+ /// Audio has been forcibly been redirected by the user setting the AudioSession Category.
Override = 4,
+ /// Device has woken up from sleep
WakeFromSleep = 6,
+ /// There is no audio device for the current set category in the audio session. For example, recording when there is no microphone available.
NoSuitableRouteForCategory = 7,
+ /// To be added.
RouteConfigurationChange = 8
}
/// An enumeration whose values indicate whether the application should resume after an interruption. Returned by the property.
public enum AudioSessionInterruptionType { // UInt32 AudioSessionInterruptionType
+ /// To be added.
ShouldResume = 1769108333, // 'irsm'
+ /// To be added.
ShouldNotResume = 561148781, // '!rsm'
}
// Should be internal with AudioSessionPropertyListener public
/// An enumeration whose values specify properties for audio sessions.
public enum AudioSessionProperty { // typedef UInt32 AudioSessionPropertyID
+ /// To be added.
PreferredHardwareSampleRate = 0x68777372,
+ /// To be added.
PreferredHardwareIOBufferDuration = 0x696f6264,
+ /// To be added.
AudioCategory = 0x61636174, // 'acat'
+ /// Developers should not use this deprecated field.
[Deprecated (PlatformName.iOS, 5, 0)]
[Deprecated (PlatformName.MacOSX, 10, 7)]
[Deprecated (PlatformName.TvOS, 9, 0)]
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
AudioRoute = 0x726f7574,
+ /// To be added.
AudioRouteChange = 0x726f6368,
+ /// To be added.
CurrentHardwareSampleRate = 0x63687372,
+ /// To be added.
CurrentHardwareInputNumberChannels = 0x63686963,
+ /// To be added.
CurrentHardwareOutputNumberChannels = 0x63686f63,
+ /// To be added.
CurrentHardwareOutputVolume = 0x63686f76,
+ /// To be added.
CurrentHardwareInputLatency = 0x63696c74,
+ /// To be added.
CurrentHardwareOutputLatency = 0x636f6c74,
+ /// To be added.
CurrentHardwareIOBufferDuration = 0x63686264,
+ /// To be added.
OtherAudioIsPlaying = 0x6f746872,
+ /// To be added.
OverrideAudioRoute = 0x6f767264,
+ /// To be added.
AudioInputAvailable = 0x61696176,
+ /// To be added.
ServerDied = 0x64696564,
+ /// To be added.
[Deprecated (PlatformName.iOS, 7, 0)]
[Deprecated (PlatformName.MacOSX, 10, 9)]
[Deprecated (PlatformName.TvOS, 9, 0)]
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
OtherMixableAudioShouldDuck = 0x6475636b,
+ /// To be added.
OverrideCategoryMixWithOthers = 0x636d6978,
+ /// To be added.
OverrideCategoryDefaultToSpeaker = 0x6373706b, //'cspk'
+ /// To be added.
OverrideCategoryEnableBluetoothInput = 0x63626c75, //'cblu'
+ /// To be added.
InterruptionType = 0x74797065, // 'type'
+ /// To be added.
Mode = 0x6d6f6465,
+ /// To be added.
InputSources = 0x73726373, // 'srcs'
+ /// To be added.
OutputDestinations = 0x64737473, // 'dsts'
+ /// To be added.
InputSource = 0x69737263, // 'isrc'
+ /// To be added.
OutputDestination = 0x6f647374, // 'odst'
+ /// To be added.
InputGainAvailable = 0x69676176, // 'igav'
+ /// To be added.
InputGainScalar = 0x69677363, // 'igsc'
+ /// To be added.
AudioRouteDescription = 0x63726172, // 'crar'
}
@@ -144,10 +219,25 @@ public enum AudioSessionProperty { // typedef UInt32 AudioSessionPropertyID
/// any gain changes for Audio).
///
public enum AudioSessionMode { // UInt32 AudioSessionPropertyID
+ ///
+ ///
+ /// The default value uses the same settings that existed in the
+ /// pre iOS 5.0 days. If there is more than one microphone on
+ /// the device, the primary one is used.
+ ///
+ ///
Default = 0x64666c74,
+ ///
+ ///
+ /// Used when you want to perform voice chats over a network connection. The audio stack is configured for voice recording, the default system microphone is used and sets the to true.
+ ///
+ ///
VoiceChat = 0x76636374,
+ /// Configures the audio for video recording, and uses the microphone closer to the camera as its input.
VideoRecording = 0x76726364,
+ /// Used when you want to measure the audio, so no gains are applied to the data. This is used when setting the property to PlayAndRecord or RecordAudio values.
Measurement = 0x6d736d74, // 'msmt'
+ /// Set by GameKit, users should not set this directly. Use VoiceChat instead.
GameChat = 0x676d6374, // 'gmct'
}
@@ -157,30 +247,47 @@ public enum AudioSessionMode { // UInt32 AudioSessionPropertyID
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
public enum AudioSessionActiveFlags : uint // UInt32 in AudioSessionSetActiveWithFlags
{
+ /// If this value is set, the operating system might notify and resume background applications that were playing audio back.
NotifyOthersOnDeactivation = (1 << 0)
}
/// The available audio input sources on the device.
public enum AudioSessionInputRouteKind { // UInt32 AudioSessionPropertyID
+ /// No input device.
None,
+ /// Line input
LineIn,
+ /// The built-in microphone (this device is not available on iPod touch devices for example).
BuiltInMic,
+ /// Headset based microphone
HeadsetMic,
+ /// Bluetooth based microphone
BluetoothHFP,
+ /// Microphone connected through USB (connected either throught the Lightning or 30-pin ports).
USBAudio,
}
/// An enumeration whose values specify different kinds of output routes.
public enum AudioSessionOutputRouteKind { // UInt32 (set only) in AudioSession.h
+ /// To be added.
None,
+ /// To be added.
LineOut,
+ /// To be added.
Headphones,
+ /// To be added.
BluetoothHFP,
+ /// To be added.
BluetoothA2DP,
+ /// To be added.
BuiltInReceiver,
+ /// To be added.
BuiltInSpeaker,
+ /// To be added.
USBAudio,
+ /// To be added.
HDMI,
+ /// To be added.
AirPlay,
}
}
diff --git a/src/AudioToolbox/AudioToolbox.cs b/src/AudioToolbox/AudioToolbox.cs
index 61680bc4c4e0..9129d3d37b06 100644
--- a/src/AudioToolbox/AudioToolbox.cs
+++ b/src/AudioToolbox/AudioToolbox.cs
@@ -24,9 +24,17 @@ namespace AudioToolbox {
public class InstrumentInfo {
// defines, not NSString, are used for the key names
+ /// To be added.
+ /// To be added.
public const string NameKey = "name";
+ /// To be added.
+ /// To be added.
public const string MSBKey = "MSB";
+ /// To be added.
+ /// To be added.
public const string LSBKey = "LSB";
+ /// To be added.
+ /// To be added.
public const string ProgramKey = "program";
internal InstrumentInfo (NSDictionary d)
@@ -34,23 +42,38 @@ internal InstrumentInfo (NSDictionary d)
Dictionary = d;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string Name {
get { return Dictionary [NameKey].ToString (); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MSB {
get { return (Dictionary [MSBKey] as NSNumber)!.Int32Value; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int LSB {
get { return (Dictionary [LSBKey] as NSNumber)!.Int32Value; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int Program {
get { return (Dictionary [ProgramKey] as NSNumber)!.Int32Value; }
}
// some API likely wants the [CF|NS]Dictionary
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
}
diff --git a/src/AudioToolbox/AudioType.cs b/src/AudioToolbox/AudioType.cs
index 88801bfc0702..6a33200a061a 100644
--- a/src/AudioToolbox/AudioType.cs
+++ b/src/AudioToolbox/AudioType.cs
@@ -45,50 +45,88 @@
namespace AudioToolbox {
public enum AudioFormatType : uint { // UInt32 in AudioStreamBasicDescription -- CoreAudio.framework CoreAudioTypes.h
+ /// Uncompressed Linear Pulse Code Modulation (LCPM) format. Each packet contains a single frame.
LinearPCM = 0x6c70636d,
+ /// AC-3 codec.
AC3 = 0x61632d33,
+ /// CAC-3 codec.
CAC3 = 0x63616333,
+ /// Apple's IMA 4:1 ADPCM codec.
AppleIMA4 = 0x696d6134,
+ /// MPEG-4 AAC codec.
MPEG4AAC = 0x61616320,
+ /// MPEG-4 CELP codec.
MPEG4CELP = 0x63656c70,
+ /// MPEG-4 HVXC codec.
MPEG4HVXC = 0x68767863,
+ /// MPEG-4 TwinVQ codec.
MPEG4TwinVQ = 0x74777671,
+ /// MACE 3:1 codec.
MACE3 = 0x4d414333,
+ /// MACE 6:1 codec.
MACE6 = 0x4d414336,
+ /// μ-Law codec.
ULaw = 0x756c6177,
+ /// A-law 2:1 compression scheme.
ALaw = 0x616c6177,
+ /// QDesign audio.
QDesign = 0x51444d43,
+ /// QDesign2 audio.
QDesign2 = 0x51444d32,
+ /// QUALCOMM PureVoice data.
QUALCOMM = 0x51636c70,
+ /// MPEG-1/2, layer 1 codec.
MPEGLayer1 = 0x2e6d7031,
+ /// MPEG-1/2, layer 2 codec.
MPEGLayer2 = 0x2e6d7032,
+ /// MPEG-1/2, layer 3 codec.
MPEGLayer3 = 0x2e6d7033,
+ /// IOAudioTimeStamp data.
TimeCode = 0x74696d65,
+ /// MIDI stream.
MIDIStream = 0x6d696469,
+ /// 32-bit floating point data on a side chain.
ParameterValueStream = 0x61707673,
+ /// Apple Lossless format.
AppleLossless = 0x616c6163,
+ /// MPEG-4 high efficiency AAC codec.
MPEG4AAC_HE = 0x61616368,
+ /// MPEG-4 AAC low delay codec.
MPEG4AAC_LD = 0x6161636c,
+ /// MPEG-4 AAC enhanced low delay audio.
MPEG4AAC_ELD = 0x61616365, // 'aace'
+ /// MPEG-4 AAC enhanced low delay codec with spectral band replication.
MPEG4AAC_ELD_SBR = 0x61616366, // 'aacf',
+ /// MPEG-4 AAC enhanced low delay codec, version 2.
MPEG4AAC_ELD_V2 = 0x61616367, // 'aacg',
+ /// MPEG-4 high efficiency AAC codec, version 2.
MPEG4AAC_HE_V2 = 0x61616370,
+ /// MPEG-4 spatial codec.
MPEG4AAC_Spatial = 0x61616373,
MpegD_Usac = 0x75736163, // 'usac' (Unified Speech and Audio Coding)
+ /// Adaptive multi-rate codec.
AMR = 0x73616d72, // 'samr'
+ /// Wide-band adaptive multi-rate (AMR-WB) codec.
AMRWideBand = 0x73617762, // 'sawb'
+ /// Audible audiobook codec.
Audible = 0x41554442,
+ /// Internet low bitrate codec for speech.
iLBC = 0x696c6263,
+ /// DVI/Intel IMA ADPCM codec.
DVIIntelIMA = 0x6d730011,
+ /// Microsoft GSM 6.10 codec.
MicrosoftGSM = 0x6d730031,
+ /// AES3-2003 codec.
AES3 = 0x61657333, // 'aes3'
#if !XAMCORE_5_0
+ /// Enhanced AES-3.
[Obsolete ("Use 'EnhancedAC3' instead.")]
[EditorBrowsable (EditorBrowsableState.Never)]
EnhancedAES3 = 0x65632d33, // 'ec-3'
#endif
/// Enhanced AC-3.
EnhancedAC3 = 0x65632d33, // 'ec-3'
+ /// To be added.
Flac = 0x666c6163, // 'flac'
#if NET
[SupportedOSPlatform ("ios13.0")]
@@ -100,6 +138,7 @@ public enum AudioFormatType : uint { // UInt32 in AudioStreamBasicDescription --
[TV (13, 0)]
#endif
LatmInLoas = 0x6c6f6173, // 'loas'
+ /// To be added.
Opus = 0x6f707573, // 'opus'
/// Apple Positional Audio Codec.
#if NET
@@ -116,33 +155,59 @@ public enum AudioFormatType : uint { // UInt32 in AudioStreamBasicDescription --
[Flags]
public enum AudioFormatFlags : uint // UInt32 in AudioStreamBasicDescription
{
+ /// If this flag is set, the data is encoded using floating point values instead of integers.
IsFloat = (1 << 0), // 0x1
+ /// If this flag is set, the data is encoded in big endian format otherwise it is in little endian.
IsBigEndian = (1 << 1), // 0x2
+ /// If the data encoded using integers (the IsFloat flag is cleared) this determines whether they are signed or unsigned.
IsSignedInteger = (1 << 2), // 0x4
+ /// Set if the sample bits occupy the entire available bits for the channel, clear if they are high- or low-aligned within the channel.
IsPacked = (1 << 3), // 0x8
+ /// If set, sample bits are on the high bits.
IsAlignedHigh = (1 << 4), // 0x10
+ /// If set, the data is non-interleaved (monophonic).
IsNonInterleaved = (1 << 5), // 0x20
+ /// If set, the audio data is non-mixable.
IsNonMixable = (1 << 6), // 0x40
+ /// Use this value to indicate that no flags are set. Use instead of the value zero, as that represents that no flag state is set.
FlagsAreAllClear = unchecked((uint) (1 << 31)),
+ /// To be added.
LinearPCMIsFloat = (1 << 0), // 0x1
+ /// To be added.
LinearPCMIsBigEndian = (1 << 1), // 0x2
+ /// To be added.
LinearPCMIsSignedInteger = (1 << 2), // 0x4
+ /// To be added.
LinearPCMIsPacked = (1 << 3), // 0x8
+ /// Linear PCM audio format: if set, sample bits are on the high bits.
LinearPCMIsAlignedHigh = (1 << 4), // 0x10
+ /// If this flag is set then there are separate s for each
+ /// channel, otherwise the data for the left and right channels is
+ /// interleaved in the same buffer.
LinearPCMIsNonInterleaved = (1 << 5), // 0x20
+ /// To be added.
LinearPCMIsNonMixable = (1 << 6), // 0x40
+ /// To be added.
LinearPCMSampleFractionShift = 7,
+ /// To be added.
LinearPCMSampleFractionMask = 0x3F << (int) LinearPCMSampleFractionShift,
+ /// Linear PCM audio format: all flags are set to zero. Use this instead of zero, which means that no flags are configured.
LinearPCMFlagsAreAllClear = FlagsAreAllClear,
+ /// Apple Lossless data, native endian, signed integers, 16 bits.
AppleLossless16BitSourceData = 1,
+ /// Apple Lossless data, native endian, signed integers, 20 bits (24 bit aligned).
AppleLossless20BitSourceData = 2,
+ /// Apple Lossless data, native endian, signed integers, 24 bits.
AppleLossless24BitSourceData = 3,
+ /// Apple Lossless data, native endian, signed integers, 32 bits.
AppleLossless32BitSourceData = 4,
+ /// To be added.
CafIsFloat = (1 << 0),
+ /// To be added.
CafIsLittleEndian = (1 << 1)
}
@@ -162,23 +227,56 @@ unsafe struct AudioFormatInfo {
[DebuggerDisplay ("{FormatName}")]
[StructLayout (LayoutKind.Sequential)]
public struct AudioStreamBasicDescription {
+ /// The sample rate for the audio data.
+ ///
+ /// For uncompressed formats, the number of audio samples per channel, per second.
+ ///
public double SampleRate;
+ /// Audio format type.
+ ///
+ ///
public AudioFormatType Format;
+ /// Audio format specific flags.
+ ///
+ ///
public AudioFormatFlags FormatFlags;
+ /// To be added.
+ /// To be added.
public int BytesPerPacket; // uint
+ /// Number of frames per audio packet.
+ ///
+ ///
public int FramesPerPacket; // uint
+ /// Number of bytes in an audio frame; Use Zero for compressed formats.
+ ///
+ /// This value must take into account whether the data is interleaved. If so, the size must include the whole size for the frame, including interleaved data.
+ ///
public int BytesPerFrame; // uint
+ /// Number of audio channels.
+ ///
+ ///
public int ChannelsPerFrame; // uint
+ /// Number of bits for an audio sample, per channel; Use zero for compressed formats.
+ ///
+ ///
public int BitsPerChannel; // uint
+ /// Unused, must be zero.
+ ///
+ ///
public int Reserved; // uint
#if !COREBUILD
+ /// Flag used to indicate that the audio stream can use any rate (can be assigned to the SampleRate field)
+ ///
+ ///
public const double AudioStreamAnyRate = 0;
const int AudioUnitSampleFractionBits = 24;
const AudioFormatFlags AudioFormatFlagIsBigEndian = 0;
#if NET
+ /// Developers should not use this deprecated field. Canonical is no longer encouraged, since fixed-point no longer provides a performance advantage over floating point. 'AudioFormatFlagsNativeFloatPacked' is preffered instead.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -195,8 +293,12 @@ public struct AudioStreamBasicDescription {
AudioFormatFlags.IsPacked | AudioFormatFlags.IsNonInterleaved | (AudioFormatFlags) (AudioUnitSampleFractionBits << (int) AudioFormatFlags.LinearPCMSampleFractionShift);
+ /// To be added.
+ /// To be added.
public static readonly AudioFormatFlags AudioFormatFlagsNativeFloat = AudioFormatFlags.IsFloat | AudioFormatFlags.IsPacked | (BitConverter.IsLittleEndian ? 0 : AudioFormatFlags.IsBigEndian);
+ /// To be added.
+ /// To be added.
public static readonly AudioFormatFlags AudioFormatFlagsAudioUnitNativeFloat = AudioFormatFlags.IsFloat | AudioFormatFlags.IsPacked | (BitConverter.IsLittleEndian ? 0 : AudioFormatFlags.IsBigEndian) | AudioFormatFlags.IsNonInterleaved;
public AudioStreamBasicDescription (AudioFormatType formatType)
@@ -315,6 +417,9 @@ public static AudioFormatError GetFormatInfo (ref AudioStreamBasicDescription fo
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe string? FormatName {
get {
IntPtr ptr;
@@ -329,6 +434,9 @@ public unsafe string? FormatName {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe bool IsEncrypted {
get {
uint data;
@@ -343,6 +451,9 @@ public unsafe bool IsEncrypted {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe bool IsExternallyFramed {
get {
uint data;
@@ -357,6 +468,9 @@ public unsafe bool IsExternallyFramed {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe bool IsVariableBitrate {
get {
uint data;
@@ -387,8 +501,14 @@ public override string ToString ()
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioStreamPacketDescription {
+ /// The zero-based byte index from the beginning of the buffer to the beginning of the packet.
+ /// To be added.
public long StartOffset;
+ /// The number of frames in the packet, or 0 if the packets are of a constant size.
+ /// To be added.
public int VariableFramesInPacket;
+ /// The size of the packet, in bytes.
+ /// To be added.
public int DataByteSize;
public override string ToString ()
@@ -399,47 +519,85 @@ public override string ToString ()
[Flags]
public enum AudioChannelFlags : uint { // UInt32 in AudioPanningInfo -- AudioFormat.h
+ /// To be added.
AllOff = 0,
+ /// To be added.
RectangularCoordinates = 1 << 0,
+ /// To be added.
SphericalCoordinates = 1 << 1,
+ /// To be added.
Meters = 1 << 2
}
public enum AudioChannelLabel : int { // UInt32 AudioChannelLabel
+ /// To be added.
Unknown = -1,
+ /// To be added.
Unused = 0,
+ /// To be added.
UseCoordinates = 100,
+ /// To be added.
Left = 1,
+ /// To be added.
Right = 2,
+ /// To be added.
Center = 3,
+ /// To be added.
LFEScreen = 4,
+ /// To be added.
LeftSurround = 5,
+ /// To be added.
RightSurround = 6,
+ /// To be added.
LeftCenter = 7,
+ /// To be added.
RightCenter = 8,
+ /// To be added.
CenterSurround = 9,
+ /// To be added.
LeftSurroundDirect = 10,
+ /// To be added.
RightSurroundDirect = 11,
+ /// To be added.
TopCenterSurround = 12,
+ /// To be added.
VerticalHeightLeft = 13,
+ /// To be added.
VerticalHeightCenter = 14,
+ /// To be added.
VerticalHeightRight = 15,
+ /// To be added.
TopBackLeft = 16,
+ /// To be added.
TopBackCenter = 17,
+ /// To be added.
TopBackRight = 18,
+ /// To be added.
RearSurroundLeft = 33,
+ /// To be added.
RearSurroundRight = 34,
+ /// To be added.
LeftWide = 35,
+ /// To be added.
RightWide = 36,
+ /// To be added.
LFE2 = 37,
+ /// To be added.
LeftTotal = 38,
+ /// To be added.
RightTotal = 39,
+ /// To be added.
HearingImpaired = 40,
+ /// To be added.
Narration = 41,
+ /// To be added.
Mono = 42,
+ /// To be added.
DialogCentricMix = 43,
+ /// To be added.
CenterSurroundDirect = 44,
+ /// To be added.
Haptic = 45,
LeftTopFront = VerticalHeightLeft,
@@ -454,73 +612,123 @@ public enum AudioChannelLabel : int { // UInt32 AudioChannelLabel
RightTopRear = 54,
// first order ambisonic channels
+ /// To be added.
Ambisonic_W = 200,
+ /// To be added.
Ambisonic_X = 201,
+ /// To be added.
Ambisonic_Y = 202,
+ /// To be added.
Ambisonic_Z = 203,
// Mid/Side Recording
+ /// To be added.
MS_Mid = 204,
+ /// To be added.
MS_Side = 205,
// X-Y Recording
+ /// To be added.
XY_X = 206,
+ /// To be added.
XY_Y = 207,
// Binaural Recording
+ /// To be added.
BinauralLeft = 208,
+ /// To be added.
BinauralRight = 209,
// other
+ /// To be added.
HeadphonesLeft = 301,
+ /// To be added.
HeadphonesRight = 302,
+ /// To be added.
ClickTrack = 304,
+ /// To be added.
ForeignLanguage = 305,
// generic discrete channel
+ /// To be added.
Discrete = 400,
// numbered discrete channel
+ /// To be added.
Discrete_0 = (1 << 16) | 0,
+ /// To be added.
Discrete_1 = (1 << 16) | 1,
+ /// To be added.
Discrete_2 = (1 << 16) | 2,
+ /// To be added.
Discrete_3 = (1 << 16) | 3,
+ /// To be added.
Discrete_4 = (1 << 16) | 4,
+ /// To be added.
Discrete_5 = (1 << 16) | 5,
+ /// To be added.
Discrete_6 = (1 << 16) | 6,
+ /// To be added.
Discrete_7 = (1 << 16) | 7,
+ /// To be added.
Discrete_8 = (1 << 16) | 8,
+ /// To be added.
Discrete_9 = (1 << 16) | 9,
+ /// To be added.
Discrete_10 = (1 << 16) | 10,
+ /// To be added.
Discrete_11 = (1 << 16) | 11,
+ /// To be added.
Discrete_12 = (1 << 16) | 12,
+ /// To be added.
Discrete_13 = (1 << 16) | 13,
+ /// To be added.
Discrete_14 = (1 << 16) | 14,
+ /// To be added.
Discrete_15 = (1 << 16) | 15,
+ /// To be added.
Discrete_65535 = (1 << 16) | 65535,
// HOA ACN channels
// generic
+ /// To be added.
HoaAcn = 500,
// numbered
+ /// To be added.
HoaAcn0 = (2 << 16) | 0,
+ /// To be added.
HoaAcn1 = (2 << 16) | 1,
+ /// To be added.
HoaAcn2 = (2 << 16) | 2,
+ /// To be added.
HoaAcn3 = (2 << 16) | 3,
+ /// To be added.
HoaAcn4 = (2 << 16) | 4,
+ /// To be added.
HoaAcn5 = (2 << 16) | 5,
+ /// To be added.
HoaAcn6 = (2 << 16) | 6,
+ /// To be added.
HoaAcn7 = (2 << 16) | 7,
+ /// To be added.
HoaAcn8 = (2 << 16) | 8,
+ /// To be added.
HoaAcn9 = (2 << 16) | 9,
+ /// To be added.
HoaAcn10 = (2 << 16) | 10,
+ /// To be added.
HoaAcn11 = (2 << 16) | 11,
+ /// To be added.
HoaAcn12 = (2 << 16) | 12,
+ /// To be added.
HoaAcn13 = (2 << 16) | 13,
+ /// To be added.
HoaAcn14 = (2 << 16) | 14,
+ /// To be added.
HoaAcn15 = (2 << 16) | 15,
+ /// To be added.
HoaAcn65024 = (2 << 16) | 65024,
HoaSn3d = HoaAcn0,
HoaN3d = (3 << 16),
@@ -545,23 +753,41 @@ public static bool IsReserved (this AudioChannelLabel value)
[NativeName ("AudioChannelBitmap")]
public enum AudioChannelBit : uint // UInt32 mChannelBitmap in AudioChannelLayout
{
+ /// To be added.
Left = 1 << 0,
+ /// To be added.
Right = 1 << 1,
+ /// To be added.
Center = 1 << 2,
+ /// To be added.
LFEScreen = 1 << 3,
+ /// To be added.
LeftSurround = 1 << 4,
+ /// To be added.
RightSurround = 1 << 5,
+ /// To be added.
LeftCenter = 1 << 6,
+ /// To be added.
RightCenter = 1 << 7,
+ /// To be added.
CenterSurround = 1 << 8,
+ /// To be added.
LeftSurroundDirect = 1 << 9,
+ /// To be added.
RightSurroundDirect = 1 << 10,
+ /// To be added.
TopCenterSurround = 1 << 11,
+ /// To be added.
VerticalHeightLeft = 1 << 12,
+ /// To be added.
VerticalHeightCenter = 1 << 13,
+ /// To be added.
VerticalHeightRight = 1 << 14,
+ /// To be added.
TopBackLeft = 1 << 15,
+ /// To be added.
TopBackCenter = 1 << 16,
+ /// To be added.
TopBackRight = 1 << 17,
LeftTopFront = VerticalHeightLeft,
@@ -584,11 +810,18 @@ public enum AudioChannelBit : uint // UInt32 mChannelBitmap in AudioChannelLayou
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioChannelDescription {
+ /// To be added.
+ /// To be added.
public AudioChannelLabel Label;
+ /// Determines how the coordinates should be interpreted.
+ /// To be added.
public AudioChannelFlags Flags;
float Coord0, Coord1, Coord2;
#if !COREBUILD
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float [] Coords {
get {
return new float [3] { Coord0, Coord1, Coord2 };
@@ -602,6 +835,9 @@ public float [] Coords {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe string? Name {
get {
IntPtr sptr;
@@ -618,6 +854,9 @@ public unsafe string? Name {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe string? ShortName {
get {
IntPtr sptr;
@@ -650,149 +889,274 @@ public override string ToString ()
// CoreAudioTypes.framework/Headers/CoreAudioBaseTypes.h
public enum AudioChannelLayoutTag : uint { // UInt32 AudioChannelLayoutTag
+ /// To be added.
UseChannelDescriptions = (0 << 16) | 0,
+ /// To be added.
UseChannelBitmap = (1 << 16) | 0,
+ /// To be added.
Mono = (100 << 16) | 1,
+ /// To be added.
Stereo = (101 << 16) | 2,
+ /// To be added.
StereoHeadphones = (102 << 16) | 2,
+ /// To be added.
MatrixStereo = (103 << 16) | 2,
+ /// To be added.
MidSide = (104 << 16) | 2,
+ /// To be added.
XY = (105 << 16) | 2,
+ /// To be added.
Binaural = (106 << 16) | 2,
+ /// To be added.
Ambisonic_B_Format = (107 << 16) | 4,
+ /// To be added.
Quadraphonic = (108 << 16) | 4,
+ /// To be added.
Pentagonal = (109 << 16) | 5,
+ /// To be added.
Hexagonal = (110 << 16) | 6,
+ /// To be added.
Octagonal = (111 << 16) | 8,
+ /// To be added.
Cube = (112 << 16) | 8,
+ /// To be added.
MPEG_1_0 = Mono,
+ /// To be added.
MPEG_2_0 = Stereo,
+ /// To be added.
MPEG_3_0_A = (113 << 16) | 3,
+ /// To be added.
MPEG_3_0_B = (114 << 16) | 3,
+ /// To be added.
MPEG_4_0_A = (115 << 16) | 4,
+ /// To be added.
MPEG_4_0_B = (116 << 16) | 4,
+ /// To be added.
MPEG_5_0_A = (117 << 16) | 5,
+ /// To be added.
MPEG_5_0_B = (118 << 16) | 5,
+ /// To be added.
MPEG_5_0_C = (119 << 16) | 5,
+ /// To be added.
MPEG_5_0_D = (120 << 16) | 5,
+ /// To be added.
MPEG_5_1_A = (121 << 16) | 6,
+ /// To be added.
MPEG_5_1_B = (122 << 16) | 6,
+ /// To be added.
MPEG_5_1_C = (123 << 16) | 6,
+ /// To be added.
MPEG_5_1_D = (124 << 16) | 6,
+ /// To be added.
MPEG_6_1_A = (125 << 16) | 7,
+ /// To be added.
MPEG_7_1_A = (126 << 16) | 8,
+ /// To be added.
MPEG_7_1_B = (127 << 16) | 8,
+ /// To be added.
MPEG_7_1_C = (128 << 16) | 8,
+ /// To be added.
Emagic_Default_7_1 = (129 << 16) | 8,
+ /// To be added.
SMPTE_DTV = (130 << 16) | 8,
+ /// To be added.
ITU_1_0 = Mono,
+ /// To be added.
ITU_2_0 = Stereo,
+ /// To be added.
ITU_2_1 = (131 << 16) | 3,
+ /// To be added.
ITU_2_2 = (132 << 16) | 4,
+ /// To be added.
ITU_3_0 = MPEG_3_0_A,
+ /// To be added.
ITU_3_1 = MPEG_4_0_A,
+ /// To be added.
ITU_3_2 = MPEG_5_0_A,
+ /// To be added.
ITU_3_2_1 = MPEG_5_1_A,
+ /// To be added.
ITU_3_4_1 = MPEG_7_1_C,
+ /// To be added.
DVD_0 = Mono,
+ /// To be added.
DVD_1 = Stereo,
+ /// To be added.
DVD_2 = ITU_2_1,
+ /// To be added.
DVD_3 = ITU_2_2,
+ /// To be added.
DVD_4 = (133 << 16) | 3,
+ /// To be added.
DVD_5 = (134 << 16) | 4,
+ /// To be added.
DVD_6 = (135 << 16) | 5,
+ /// To be added.
DVD_7 = MPEG_3_0_A,
+ /// To be added.
DVD_8 = MPEG_4_0_A,
+ /// To be added.
DVD_9 = MPEG_5_0_A,
+ /// To be added.
DVD_10 = (136 << 16) | 4,
+ /// To be added.
DVD_11 = (137 << 16) | 5,
+ /// To be added.
DVD_12 = MPEG_5_1_A,
+ /// To be added.
DVD_13 = DVD_8,
+ /// To be added.
DVD_14 = DVD_9,
+ /// To be added.
DVD_15 = DVD_10,
+ /// To be added.
DVD_16 = DVD_11,
+ /// To be added.
DVD_17 = DVD_12,
+ /// To be added.
DVD_18 = (138 << 16) | 5,
+ /// To be added.
DVD_19 = MPEG_5_0_B,
+ /// To be added.
DVD_20 = MPEG_5_1_B,
+ /// To be added.
AudioUnit_4 = Quadraphonic,
+ /// To be added.
AudioUnit_5 = Pentagonal,
+ /// To be added.
AudioUnit_6 = Hexagonal,
+ /// To be added.
AudioUnit_8 = Octagonal,
+ /// To be added.
AudioUnit_5_0 = MPEG_5_0_B,
+ /// To be added.
AudioUnit_6_0 = (139 << 16) | 6,
+ /// To be added.
AudioUnit_7_0 = (140 << 16) | 7,
+ /// To be added.
AudioUnit_7_0_Front = (148 << 16) | 7,
+ /// To be added.
AudioUnit_5_1 = MPEG_5_1_A,
+ /// To be added.
AudioUnit_6_1 = MPEG_6_1_A,
+ /// To be added.
AudioUnit_7_1 = MPEG_7_1_C,
+ /// To be added.
AudioUnit_7_1_Front = MPEG_7_1_A,
+ /// To be added.
AAC_3_0 = MPEG_3_0_B,
+ /// To be added.
AAC_Quadraphonic = Quadraphonic,
+ /// To be added.
AAC_4_0 = MPEG_4_0_B,
+ /// To be added.
AAC_5_0 = MPEG_5_0_D,
+ /// To be added.
AAC_5_1 = MPEG_5_1_D,
+ /// To be added.
AAC_6_0 = (141 << 16) | 6,
+ /// To be added.
AAC_6_1 = (142 << 16) | 7,
+ /// To be added.
AAC_7_0 = (143 << 16) | 7,
+ /// To be added.
AAC_7_1 = MPEG_7_1_B,
+ /// To be added.
AAC_7_1_B = (183 << 16) | 8,
+ /// To be added.
AAC_7_1_C = (184 << 16) | 8,
+ /// To be added.
AAC_Octagonal = (144 << 16) | 8,
+ /// To be added.
TMH_10_2_std = (145 << 16) | 16,
+ /// To be added.
TMH_10_2_full = (146 << 16) | 21,
+ /// To be added.
AC3_1_0_1 = (149 << 16) | 2,
+ /// To be added.
AC3_3_0 = (150 << 16) | 3,
+ /// To be added.
AC3_3_1 = (151 << 16) | 4,
+ /// To be added.
AC3_3_0_1 = (152 << 16) | 4,
+ /// To be added.
AC3_2_1_1 = (153 << 16) | 4,
+ /// To be added.
AC3_3_1_1 = (154 << 16) | 5,
+ /// To be added.
EAC_6_0_A = (155 << 16) | 6,
+ /// To be added.
EAC_7_0_A = (156 << 16) | 7,
+ /// To be added.
EAC3_6_1_A = (157 << 16) | 7,
+ /// To be added.
EAC3_6_1_B = (158 << 16) | 7,
+ /// To be added.
EAC3_6_1_C = (159 << 16) | 7,
+ /// To be added.
EAC3_7_1_A = (160 << 16) | 8,
+ /// To be added.
EAC3_7_1_B = (161 << 16) | 8,
+ /// To be added.
EAC3_7_1_C = (162 << 16) | 8,
+ /// To be added.
EAC3_7_1_D = (163 << 16) | 8,
+ /// To be added.
EAC3_7_1_E = (164 << 16) | 8,
+ /// To be added.
EAC3_7_1_F = (165 << 16) | 8,
+ /// To be added.
EAC3_7_1_G = (166 << 16) | 8,
+ /// To be added.
EAC3_7_1_H = (167 << 16) | 8,
+ /// To be added.
DTS_3_1 = (168 << 16) | 4,
+ /// To be added.
DTS_4_1 = (169 << 16) | 5,
+ /// To be added.
DTS_6_0_A = (170 << 16) | 6,
+ /// To be added.
DTS_6_0_B = (171 << 16) | 6,
+ /// To be added.
DTS_6_0_C = (172 << 16) | 6,
+ /// To be added.
DTS_6_1_A = (173 << 16) | 7,
+ /// To be added.
DTS_6_1_B = (174 << 16) | 7,
+ /// To be added.
DTS_6_1_C = (175 << 16) | 7,
+ /// To be added.
DTS_7_0 = (176 << 16) | 7,
+ /// To be added.
DTS_7_1 = (177 << 16) | 8,
+ /// To be added.
DTS_8_0_A = (178 << 16) | 8,
+ /// To be added.
DTS_8_0_B = (179 << 16) | 8,
+ /// To be added.
DTS_8_1_A = (180 << 16) | 9,
+ /// To be added.
DTS_8_1_B = (181 << 16) | 9,
+ /// To be added.
DTS_6_1_D = (182 << 16) | 7,
Wave_2_1 = DVD_4,
@@ -806,7 +1170,9 @@ public enum AudioChannelLayoutTag : uint { // UInt32 AudioChannelLayoutTag
Wave_6_1 = (188 << 16) | 7,
Wave_7_1 = (189 << 16) | 8,
+ /// To be added.
HOA_ACN_SN3D = (190U << 16),
+ /// To be added.
HOA_ACN_N3D = (191U << 16),
Atmos_7_1_4 = (192 << 16) | 12,
@@ -849,6 +1215,7 @@ public enum AudioChannelLayoutTag : uint { // UInt32 AudioChannelLayoutTag
Logic_Atmos_7_1_4_B = (202U << 16) | 12,
Logic_Atmos_7_1_6 = (203U << 16) | 14,
+ /// To be added.
DiscreteInOrder = (147 << 16) | 0, // needs to be ORed with the actual number of channels
@@ -965,6 +1332,7 @@ public enum AudioChannelLayoutTag : uint { // UInt32 AudioChannelLayoutTag
#endif
MPEG_7_1_D = (219U << 16) | 8,
+ /// To be added.
Unknown = 0xFFFF0000 // needs to be ORed with the actual number of channels
}
@@ -1028,6 +1396,9 @@ internal unsafe AudioChannelLayout (IntPtr h)
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Advice ("Use the strongly typed 'AudioTag' instead.")]
public int Tag {
get {
@@ -1038,6 +1409,9 @@ public int Tag {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Advice ("Use 'ChannelUsage' instead.")]
public int Bitmap {
get {
@@ -1048,10 +1422,19 @@ public int Bitmap {
}
}
+ /// To be added.
+ /// To be added.
public AudioChannelLayoutTag AudioTag;
+ /// To be added.
+ /// To be added.
public AudioChannelBit ChannelUsage;
+ /// The description of the various channels.
+ /// To be added.
public AudioChannelDescription []? Channels;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe string? Name {
get {
IntPtr sptr;
@@ -1068,6 +1451,9 @@ public unsafe string? Name {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe string? SimpleName {
get {
IntPtr sptr;
@@ -1304,20 +1690,32 @@ public NSData AsData ()
[Flags]
public enum SmpteTimeFlags : uint { // UInt32
+ /// The time state is unknown.
Unknown = 0,
+ /// The full time is valid.
TimeValid = 1 << 0,
+ /// Time is running.
TimeRunning = 1 << 1
}
public enum MPEG4ObjectID { // long
+ /// MPEG-4 MAIN audio profile AAC Main.
AacMain = 1,
+ /// MPEG-4 MAIN audio profile AAC LC.
AacLc = 2,
+ /// MPEG-4 main audio profile AAC SSR.
AacSsr = 3,
+ /// MPEG-4 main audio profile AAC Ltp..
AacLtp = 4,
+ /// MPEG-4 high efficiency profile AAC SBR.
AacSbr = 5,
+ /// MPEG-4 high quality audio profile AAC Scalable.
AacScalable = 6,
+ /// MPEG-4 natural audio profile TwinVQ.
TwinVq = 7,
+ /// MPEG-4 speech audio profile CELP.
Celp = 8,
+ /// MPEG-4 main audio profile HVXC.
Hvxc = 9
}
@@ -1329,16 +1727,37 @@ public enum MPEG4ObjectID { // long
#endif
[StructLayout (LayoutKind.Sequential)]
public struct SmpteTime { // CoreAudio.framework - CoreAudioTypes.h
+ /// A subframe offset to add to the time.
+ /// To be added.
public short Subframes;
+ /// The number of subframes in a video frame.
+ /// To be added.
public short SubframeDivisor;
+ /// The total number, of 8 required, received messages in the SMPTE time code.
+ /// To be added.
public uint Counter;
+ /// The SMPTE time code type.
+ /// To be added.
public uint Type;
+ /// Whether the time code is complete or is running.
+ /// To be added.
public uint Flags;
+ /// The hours part of the code.
+ /// To be added.
public short Hours;
+ /// The minutes part of the code.
+ /// To be added.
public short Minutes;
+ /// The seconds part of the code.
+ /// To be added.
public short Seconds;
+ /// The frames part of the code.
+ /// To be added.
public short Frames;
+ /// Gets a value that tells whether the time code is complete or is running.
+ /// To be added.
+ /// To be added.
public SmpteTimeFlags FlagsStrong {
get {
return (SmpteTimeFlags) Flags;
@@ -1347,6 +1766,9 @@ public SmpteTimeFlags FlagsStrong {
Flags = (uint) value;
}
}
+ /// Gets or sets the SMPTE time code type
+ /// To be added.
+ /// To be added.
public SmpteTimeType TypeStrong {
get {
return (SmpteTimeType) Type;
@@ -1369,17 +1791,29 @@ public enum SmpteTimeType : uint // UInt32 in AudioFileRegionList
[Obsolete ("Value is not to be used with any API.")]
None = uint.MaxValue,
#endif
+ /// To be added.
Type24 = 0,
+ /// To be added.
Type25 = 1,
+ /// To be added.
Type30Drop = 2,
+ /// To be added.
Type30 = 3,
+ /// To be added.
Type2997 = 4,
+ /// To be added.
Type2997Drop = 5,
+ /// To be added.
Type60 = 6,
+ /// To be added.
Type5994 = 7,
+ /// To be added.
Type60Drop = 8,
+ /// To be added.
Type5994Drop = 9,
+ /// To be added.
Type50 = 10,
+ /// To be added.
Type2398 = 11,
}
@@ -1394,21 +1828,42 @@ public struct AudioTimeStamp {
[Flags]
public enum AtsFlags : uint { // UInt32 in AudioTimeStamp
+ /// No time stamp fields are valid.
NothingValid = 0,
+ /// The SampleTime is valid.
SampleTimeValid = (1 << 0),
+ /// The HostTime field is valid.
HostTimeValid = (1 << 1),
+ /// The RateScalar is valid.
RateScalarValid = (1 << 2),
+ /// The WorldClockTime is valid.
WordClockTimeValid = (1 << 3),
+ /// The SmpteTime is valid.
SmpteTimeValid = (1 << 4),
+ /// The SampleHostTime is valid.
SampleHostTimeValid = SampleTimeValid | HostTimeValid
}
+ /// To be added.
+ /// To be added.
public double SampleTime;
+ /// To be added.
+ /// To be added.
public ulong HostTime;
+ /// To be added.
+ /// To be added.
public double RateScalar;
+ /// To be added.
+ /// To be added.
public ulong WordClockTime;
+ /// To be added.
+ /// To be added.
public SmpteTime SMPTETime;
+ /// Flags used to interpret the data in this AudioTimeStamp.
+ /// To be added.
public AtsFlags Flags;
+ /// To be added.
+ /// To be added.
public uint Reserved;
public override string ToString ()
@@ -1455,8 +1910,16 @@ public override string ToString ()
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioBuffer {
+ /// The number of channels in the audio buffer. One for monophonic, non-interleaved data or two for stereo, interleaved data.
+ ///
+ ///
public int NumberChannels;
+ /// The size of the buffer pointed to by .
+ ///
+ ///
public int DataByteSize;
+ /// Pointer to the raw audio data.
+ /// The size of this buffer is described by the property.
public IntPtr Data;
public override string ToString ()
@@ -1539,10 +2002,20 @@ public unsafe readonly ref struct AudioBufferList {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct CABarBeatTime {
+ /// To be added.
+ /// To be added.
public /* SInt32 */ int Bar;
+ /// To be added.
+ /// To be added.
public /* UInt16 */ ushort Beat;
+ /// To be added.
+ /// To be added.
public /* UInt16 */ ushort Subbeat;
+ /// To be added.
+ /// To be added.
public /* UInt16 */ ushort SubbeatDivisor;
+ /// To be added.
+ /// To be added.
public /* UInt16 */ ushort Reserved;
}
}
diff --git a/src/AudioToolbox/MusicPlayer.cs b/src/AudioToolbox/MusicPlayer.cs
index 95895ef3677c..b88987eb3d43 100644
--- a/src/AudioToolbox/MusicPlayer.cs
+++ b/src/AudioToolbox/MusicPlayer.cs
@@ -26,52 +26,81 @@ namespace AudioToolbox {
// untyped enum (used as an OSStatus in the API) -> MusicPlayer.h
public enum MusicPlayerStatus {
+ /// To be added.
Success = 0,
+ /// To be added.
InvalidSequenceType = -10846,
+ /// To be added.
TrackIndexError = -10859,
+ /// To be added.
TrackNotFound = -10858,
+ /// To be added.
EndOfTrack = -10857,
+ /// To be added.
StartOfTrack = -10856,
+ /// To be added.
IllegalTrackDestination = -10855,
+ /// To be added.
NoSequence = -10854,
+ /// To be added.
InvalidEventType = -10853,
+ /// To be added.
InvalidPlayerState = -10852,
+ /// To be added.
CannotDoInCurrentContext = -10863,
+ /// To be added.
NoTrackDestination = -66720
}
// typedef UInt32 -> MusicPlayer.h
public enum MusicEventType : uint {
+ /// To be added.
Null,
+ /// To be added.
ExtendedNote = 1,
+ /// To be added.
ExtendedTempo = 3,
+ /// To be added.
User = 4,
+ /// To be added.
Meta = 5,
+ /// To be added.
MidiNoteMessage = 6,
+ /// To be added.
MidiChannelMessage = 7,
+ /// To be added.
MidiRawData = 8,
+ /// To be added.
Parameter = 9,
+ /// To be added.
AUPreset = 10
}
// typedef UInt32 -> MusicPlayer.h
[Flags]
public enum MusicSequenceLoadFlags {
+ /// Indicates that the input tracks will be preserved in the output.
PreserveTracks = 0,
+ /// Indicates that the output will contain a tempo track, a track for each SMF MIDI channel, and a track for SysEx or MetaEvents.
ChannelsToTracks = 1 << 0
}
// typedef UInt32 -> MusicPlayer.h
public enum MusicSequenceFileTypeID : uint {
+ /// Indicates that the type is not specified.
Any = 0,
+ /// Indicates a MIDI file.
Midi = 0x6d696469, // 'midi'
+ /// Indicates an iMelody file.
iMelody = 0x696d656c, // 'imel'
}
// typedef UInt32 -> MusicPlayer.h
[Flags]
public enum MusicSequenceFileFlags {
+ /// Indicates that the existing file should not be erased.
Default = 0,
+ /// Indicates that the existing file should be erased.
EraseFile = 1
}
@@ -139,6 +168,9 @@ public MusicPlayer ()
[DllImport (Constants.AudioToolboxLibrary)]
extern static /* OSStatus */ MusicPlayerStatus MusicPlayerSetTime (/* MusicPlayer */ IntPtr inPlayer, /* MusicTimeStamp* */ double inTime);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public double Time {
get {
double time;
@@ -192,6 +224,9 @@ public MusicPlayerStatus Stop ()
[DllImport (Constants.AudioToolboxLibrary)]
unsafe extern static /* OSStatus */ MusicPlayerStatus MusicPlayerIsPlaying (/* MusicPlayer */ IntPtr inPlayer, /* Boolean* */ byte* outIsPlaying);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsPlaying {
get {
byte res;
@@ -208,6 +243,9 @@ public bool IsPlaying {
[DllImport (Constants.AudioToolboxLibrary)]
unsafe extern static /* OSStatus */ MusicPlayerStatus MusicPlayerGetPlayRateScalar (/* MusicPlayer */ IntPtr inPlayer, /* Float64* */ double* outScaleRate);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public double PlayRateScalar {
get {
double rate;
@@ -250,6 +288,9 @@ public MusicPlayerStatus GetBeatsForHostTime (long hostTime, out double beats)
[DllImport (Constants.AudioToolboxLibrary)]
extern static /* OSStatus */ MusicPlayerStatus MusicPlayerSetSequence (/* MusicPlayer */ IntPtr inPlayer, IntPtr inSequence);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MusicSequence? MusicSequence {
get {
IntPtr seqHandle;
diff --git a/src/AudioToolbox/MusicSequence.cs b/src/AudioToolbox/MusicSequence.cs
index 515d90e20ea8..6e55cb707f7c 100644
--- a/src/AudioToolbox/MusicSequence.cs
+++ b/src/AudioToolbox/MusicSequence.cs
@@ -136,6 +136,9 @@ internal static MusicSequence Lookup (IntPtr handle, bool owns)
[DllImport (Constants.AudioToolboxLibrary)]
unsafe extern static /* OSStatus */ MusicPlayerStatus MusicSequenceGetAUGraph (/* MusicSequence */ IntPtr inSequence, /* AUGraph* */ IntPtr* outGraph);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AUGraph? AUGraph {
get {
IntPtr h;
@@ -160,6 +163,9 @@ public AUGraph? AUGraph {
[DllImport (Constants.AudioToolboxLibrary)]
unsafe extern static /* OSStatus */ MusicPlayerStatus MusicSequenceGetSequenceType (/* MusicSequence */ IntPtr inSequence, MusicSequenceType* outType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MusicSequenceType SequenceType {
get {
MusicSequenceType type;
@@ -214,6 +220,9 @@ public short SetSmpteResolution (sbyte fps, byte ticks)
unsafe extern static /* OSStatus */ MusicPlayerStatus MusicSequenceGetTrackCount (/* MusicSequence */ IntPtr inSequence, /* UInt32* */ int* outNumberOfTracks);
// an `uint` but we keep `int` for compatibility (should be enough tracks)
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int TrackCount {
get {
int count;
@@ -431,8 +440,11 @@ public MusicPlayerStatus CreateFile (NSUrl url, MusicSequenceFileTypeID fileType
// typedef UInt32 -> MusicPlayer.h
public enum MusicSequenceType : uint {
+ /// A normal MIDI music sequence. The tempo track defines beats-per-second.
Beats = 0x62656174, // 'beat'
+ /// A MIDI sequence saved with SMPTE timecode.
Seconds = 0x73656373, // 'secs'
+ /// Indicates an audio sample. The tempo track defines samples-per-second.
Samples = 0x73616d70 // 'samp'
}
}
diff --git a/src/AudioToolbox/MusicTrack.cs b/src/AudioToolbox/MusicTrack.cs
index 37866a3a50cc..03ebe07115c7 100644
--- a/src/AudioToolbox/MusicTrack.cs
+++ b/src/AudioToolbox/MusicTrack.cs
@@ -36,10 +36,20 @@ namespace AudioToolbox {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MidiNoteMessage {
+ /// To be added.
+ /// To be added.
public byte Channel;
+ /// To be added.
+ /// To be added.
public byte Note;
+ /// To be added.
+ /// To be added.
public byte Velocity;
+ /// To be added.
+ /// To be added.
public byte ReleaseVelocity;
+ /// To be added.
+ /// To be added.
public /* Float32 */ float Duration;
public MidiNoteMessage (byte channel, byte note, byte velocity, byte releaseVelocity, float duration)
@@ -61,9 +71,17 @@ public MidiNoteMessage (byte channel, byte note, byte velocity, byte releaseVelo
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MidiChannelMessage {
+ /// To be added.
+ /// To be added.
public byte Status;
+ /// To be added.
+ /// To be added.
public byte Data1;
+ /// To be added.
+ /// To be added.
public byte Data2;
+ /// To be added.
+ /// To be added.
public byte Reserved;
public MidiChannelMessage (byte status, byte data1, byte data2)
@@ -195,6 +213,8 @@ public class MidiMetaEvent : MidiData {
#else
public class MidiMetaEvent : _MidiData {
#endif
+ /// To be added.
+ /// To be added.
public byte MetaEventType;
internal override IntPtr ToUnmanaged ()
@@ -225,8 +245,14 @@ internal override IntPtr ToUnmanaged ()
#endif
[StructLayout (LayoutKind.Sequential)]
public struct ExtendedNoteOnEvent {
+ /// To be added.
+ /// To be added.
public /* MusicDeviceInstrumentID */ uint InstrumentID;
+ /// To be added.
+ /// To be added.
public /* MusicDeviceGroupID */ uint DeviceGroupID;
+ /// To be added.
+ /// To be added.
public /* Float32 */ float Duration;
// MusicDeviceNoteParams extendedParams
@@ -235,7 +261,11 @@ public struct ExtendedNoteOnEvent {
#pragma warning disable 169
int argCount;
#pragma warning restore 169
+ /// To be added.
+ /// To be added.
public float Pitch;
+ /// To be added.
+ /// To be added.
public float Velocity;
}
#endif
@@ -279,6 +309,9 @@ protected override void Dispose (bool disposing)
[DllImport (Constants.AudioToolboxLibrary)]
unsafe extern static /* OSStatus */ MusicPlayerStatus MusicTrackGetSequence (/* MusicTrack */ IntPtr inTrack, /* MusicSequence* */ IntPtr* outSequence);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MusicSequence? Sequence {
get {
IntPtr seqHandle;
@@ -345,6 +378,9 @@ enum SequenceTrackProperty {
TimeResolution
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool MuteStatus {
get {
byte val;
@@ -362,6 +398,9 @@ public bool MuteStatus {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool SoloStatus {
get {
byte val;
@@ -379,6 +418,9 @@ public bool SoloStatus {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public double TrackLength {
get {
double value = 0;
diff --git a/src/AudioToolbox/SystemSound.cs b/src/AudioToolbox/SystemSound.cs
index 1e3d4be7f3fa..05027dadc5af 100644
--- a/src/AudioToolbox/SystemSound.cs
+++ b/src/AudioToolbox/SystemSound.cs
@@ -54,6 +54,8 @@ public class SystemSound : INativeObject, IDisposable {
#if MONOMAC
// TODO:
#else
+ /// A special system sound that can be used to make the device vibrate.
+ /// This system sound does nothing on iPod touches.
public static readonly SystemSound Vibrate = new SystemSound ((uint) SystemSoundId.Vibrate, false);
#endif
@@ -97,6 +99,9 @@ public IntPtr Handle {
}
#endif
+ /// Gets or sets whether to override user preferences when calling .
+ /// To be added.
+ /// To be added.
public bool IsUISound {
get {
uint out_size = sizeof (uint);
@@ -126,6 +131,9 @@ public bool IsUISound {
}
}
+ /// Controls whether the sound will complete playing, even if the application dies.
+ /// To be added.
+ /// To be added.
public bool CompletePlaybackIfAppDies {
get {
uint out_size = sizeof (uint);
diff --git a/src/AudioUnit/AUEnums.cs b/src/AudioUnit/AUEnums.cs
index 54a921159598..290800191865 100644
--- a/src/AudioUnit/AUEnums.cs
+++ b/src/AudioUnit/AUEnums.cs
@@ -45,30 +45,54 @@
namespace AudioUnit {
/// An enumeration whose values specify the status of an .
public enum AudioUnitStatus { // Implictly cast to OSType
+ /// To be added.
NoError = 0,
+ /// To be added.
OK = NoError,
+ /// To be added.
FileNotFound = -43,
+ /// To be added.
ParameterError = -50,
+ /// To be added.
InvalidProperty = -10879,
+ /// To be added.
InvalidParameter = -10878,
+ /// To be added.
InvalidElement = -10877,
+ /// To be added.
NoConnection = -10876,
+ /// To be added.
FailedInitialization = -10875,
+ /// To be added.
TooManyFramesToProcess = -10874,
+ /// To be added.
InvalidFile = -10871,
+ /// To be added.
FormatNotSupported = -10868,
+ /// To be added.
Uninitialized = -10867,
+ /// To be added.
InvalidScope = -10866,
+ /// To be added.
PropertyNotWritable = -10865,
+ /// To be added.
CannotDoInCurrentContext = -10863,
+ /// To be added.
InvalidPropertyValue = -10851,
+ /// To be added.
PropertyNotInUse = -10850,
+ /// To be added.
Initialized = -10849,
+ /// To be added.
InvalidOfflineRender = -10848,
+ /// To be added.
Unauthorized = -10847,
+ /// To be added.
MidiOutputBufferFull = -66753,
RenderTimeout = -66745,
+ /// To be added.
InvalidParameterValue = -66743,
+ /// To be added.
ExtensionNotFound = -66744,
InvalidFilePath = -66742,
MissingKey = -66741,
@@ -78,15 +102,24 @@ public enum AudioUnitStatus { // Implictly cast to OSType
/// Enumerates status values returned by .
public enum AudioComponentStatus { // Implictly cast to OSType
+ /// To be added.
OK = 0,
+ /// To be added.
DuplicateDescription = -66752,
+ /// To be added.
UnsupportedType = -66751,
+ /// To be added.
TooManyInstances = -66750,
InstanceTimedOut = -66754,
+ /// To be added.
InstanceInvalidated = -66749,
+ /// To be added.
NotPermitted = -66748,
+ /// To be added.
InitializationTimedOut = -66747,
+ /// To be added.
InvalidFormat = -66746,
+ /// To be added.
[MacCatalyst (13, 1)]
RenderTimeout = -66745,
}
@@ -94,49 +127,83 @@ public enum AudioComponentStatus { // Implictly cast to OSType
/// An enumeration whose values specify whether to use a hardware or software encoder.
public enum AudioCodecManufacturer : uint // Implictly cast to OSType in CoreAudio.framework - CoreAudioTypes.h
{
+ /// To be added.
AppleSoftware = 0x6170706c, // 'appl'
+ /// To be added.
AppleHardware = 0x61706877, // 'aphw'
}
/// Enumerates instrument types.
public enum InstrumentType : byte // UInt8 in AUSamplerInstrumentData
{
+ /// To be added.
DLSPreset = 1,
+ /// To be added.
SF2Preset = DLSPreset,
+ /// To be added.
AUPreset = 2,
+ /// To be added.
Audiofile = 3,
+ /// To be added.
EXS24 = 4,
}
/// The unit of measure used by an audio unit parameter.
public enum AudioUnitParameterUnit // UInt32 AudioUnitParameterUnit
{
+ /// To be added.
Generic = 0,
+ /// To be added.
Indexed = 1,
+ /// To be added.
Boolean = 2,
+ /// To be added.
Percent = 3,
+ /// To be added.
Seconds = 4,
+ /// To be added.
SampleFrames = 5,
+ /// To be added.
Phase = 6,
+ /// To be added.
Rate = 7,
+ /// To be added.
Hertz = 8,
+ /// To be added.
Cents = 9,
+ /// To be added.
RelativeSemiTones = 10,
+ /// To be added.
MIDINoteNumber = 11,
+ /// To be added.
MIDIController = 12,
+ /// To be added.
Decibels = 13,
+ /// To be added.
LinearGain = 14,
+ /// To be added.
Degrees = 15,
+ /// To be added.
EqualPowerCrossfade = 16,
+ /// To be added.
MixerFaderCurve1 = 17,
+ /// To be added.
Pan = 18,
+ /// To be added.
Meters = 19,
+ /// To be added.
AbsoluteCents = 20,
+ /// To be added.
Octaves = 21,
+ /// To be added.
BPM = 22,
+ /// To be added.
Beats = 23,
+ /// To be added.
Milliseconds = 24,
+ /// To be added.
Ratio = 25,
+ /// To be added.
CustomUnit = 26,
[iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)]
MIDI2Controller = 27,
@@ -146,40 +213,63 @@ public enum AudioUnitParameterUnit // UInt32 AudioUnitParameterUnit
[Flags]
public enum AudioUnitParameterFlag : uint // UInt32 in AudioUnitParameterInfo
{
+ /// To be added.
CFNameRelease = (1 << 4),
+ /// To be added.
[MacCatalyst (13, 1)]
OmitFromPresets = (1 << 13),
+ /// To be added.
PlotHistory = (1 << 14),
+ /// To be added.
MeterReadOnly = (1 << 15),
// bit positions 18,17,16 are set aside for display scales. bit 19 is reserved.
+ /// To be added.
DisplayMask = (7 << 16) | (1 << 22),
+ /// To be added.
DisplaySquareRoot = (1 << 16),
+ /// To be added.
DisplaySquared = (2 << 16),
+ /// To be added.
DisplayCubed = (3 << 16),
+ /// To be added.
DisplayCubeRoot = (4 << 16),
+ /// To be added.
DisplayExponential = (5 << 16),
+ /// To be added.
HasClump = (1 << 20),
+ /// To be added.
ValuesHaveStrings = (1 << 21),
+ /// To be added.
DisplayLogarithmic = (1 << 22),
+ /// To be added.
IsHighResolution = (1 << 23),
+ /// To be added.
NonRealTime = (1 << 24),
+ /// To be added.
CanRamp = (1 << 25),
+ /// To be added.
ExpertMode = (1 << 26),
+ /// To be added.
HasCFNameString = (1 << 27),
+ /// To be added.
IsGlobalMeta = (1 << 28),
+ /// To be added.
IsElementMeta = (1 << 29),
+ /// To be added.
IsReadable = (1 << 30),
+ /// To be added.
IsWritable = ((uint) 1 << 31),
}
/// Enumerates values used by . Currenty reserved for system use.
public enum AudioUnitClumpID // UInt32 in AudioUnitParameterInfo
{
+ /// To be added.
System = 0,
}
@@ -189,22 +279,36 @@ public enum AudioUnitClumpID // UInt32 in AudioUnitParameterInfo
[NoiOS]
#endif
public enum AudioObjectPropertySelector : uint {
+ /// To be added.
PropertyDevices = 1684370979, // 'dev#'
+ /// To be added.
Devices = 1684370979, // 'dev#'
+ /// To be added.
DefaultInputDevice = 1682533920, // 'dIn '
+ /// To be added.
DefaultOutputDevice = 1682929012, // 'dOut'
+ /// To be added.
DefaultSystemOutputDevice = 1934587252, // 'sOut'
+ /// To be added.
TranslateUIDToDevice = 1969841252, // 'uidd'
+ /// To be added.
MixStereoToMono = 1937010031, // 'stmo'
+ /// To be added.
PlugInList = 1886152483, // 'plg#'
+ /// To be added.
TranslateBundleIDToPlugIn = 1651074160, // 'bidp'
+ /// To be added.
TransportManagerList = 1953326883, // 'tmg#'
+ /// To be added.
TranslateBundleIDToTransportManager = 1953325673, // 'tmbi'
+ /// To be added.
BoxList = 1651472419, // 'box#'
+ /// To be added.
TranslateUIDToBox = 1969841250, // 'uidb'
ClockDeviceList = 1668049699, //'clk#'
TranslateUidToClockDevice = 1969841251, // 'uidc',
#if !XAMCORE_5_0
+ /// To be added.
[MacCatalyst (13, 1)] // This is required for .NET, because otherwise the generator thinks it's not available because it's not available on iOS.
[Deprecated (PlatformName.iOS, 15, 0, message: "Use the 'ProcessIsMain' element instead.")]
[Deprecated (PlatformName.TvOS, 15, 0, message: "Use the 'ProcessIsMain' element instead.")]
@@ -216,14 +320,23 @@ public enum AudioObjectPropertySelector : uint {
[NoiOS]
[MacCatalyst (15, 0), NoTV]
ProcessIsMain = 1835100526, // 'main'
+ /// To be added.
IsInitingOrExiting = 1768845172, // 'inot'
+ /// To be added.
UserIDChanged = 1702193508, // 'euid'
+ /// To be added.
ProcessIsAudible = 1886221684, // 'pmut'
+ /// To be added.
SleepingIsAllowed = 1936483696, // 'slep'
+ /// To be added.
UnloadingIsAllowed = 1970170980, // 'unld'
+ /// To be added.
HogModeIsAllowed = 1752131442, // 'hogr'
+ /// To be added.
UserSessionIsActiveOrHeadless = 1970496882, // 'user'
+ /// To be added.
ServiceRestarted = 1936880500, // 'srst'
+ /// To be added.
PowerHint = 1886353256, // 'powh'
ActualSampleRate = 1634955892,// 'asrt',
ClockDevice = 1634755428, // 'apcd',
@@ -241,9 +354,13 @@ public enum AudioObjectPropertySelector : uint {
[NoiOS]
#endif
public enum AudioObjectPropertyScope : uint {
+ /// To be added.
Global = 1735159650, // 'glob'
+ /// To be added.
Input = 1768845428, // 'inpt'
+ /// To be added.
Output = 1869968496, // 'outp'
+ /// To be added.
PlayThrough = 1886679669, // 'ptru'
}
@@ -264,49 +381,90 @@ public enum AudioObjectPropertyElement : uint {
[Internal]
enum AudioUnitPropertyIDType { // UInt32 AudioUnitPropertyID
// Audio Unit Properties
+ /// To be added.
ClassInfo = 0,
+ /// To be added.
MakeConnection = 1,
+ /// To be added.
SampleRate = 2,
+ /// To be added.
ParameterList = 3,
+ /// To be added.
ParameterInfo = 4,
+ /// To be added.
CPULoad = 6,
+ /// To be added.
StreamFormat = 8,
+ /// To be added.
ElementCount = 11,
+ /// To be added.
Latency = 12,
+ /// To be added.
SupportedNumChannels = 13,
+ /// To be added.
MaximumFramesPerSlice = 14,
+ /// To be added.
ParameterValueStrings = 16,
+ /// To be added.
AudioChannelLayout = 19,
+ /// To be added.
TailTime = 20,
+ /// To be added.
BypassEffect = 21,
+ /// To be added.
LastRenderError = 22,
+ /// To be added.
SetRenderCallback = 23,
+ /// To be added.
FactoryPresets = 24,
+ /// To be added.
RenderQuality = 26,
+ /// To be added.
HostCallbacks = 27,
+ /// To be added.
InPlaceProcessing = 29,
+ /// To be added.
ElementName = 30,
+ /// To be added.
SupportedChannelLayoutTags = 32,
+ /// To be added.
PresentPreset = 36,
+ /// To be added.
DependentParameters = 45,
+ /// To be added.
InputSampleInOutput = 49,
+ /// To be added.
ShouldAllocateBuffer = 51,
+ /// To be added.
FrequencyResponse = 52,
+ /// To be added.
ParameterHistoryInfo = 53,
+ /// To be added.
Nickname = 54,
+ /// To be added.
OfflineRender = 37,
+ /// To be added.
[MacCatalyst (13, 1)]
ParameterIDName = 34,
+ /// To be added.
[MacCatalyst (13, 1)]
ParameterStringFromValue = 33,
+ /// To be added.
ParameterClumpName = 35,
+ /// To be added.
[MacCatalyst (13, 1)]
ParameterValueFromString = 38,
+ /// To be added.
ContextName = 25,
+ /// To be added.
PresentationLatency = 40,
+ /// To be added.
ClassInfoFromDocument = 50,
+ /// To be added.
RequestViewController = 56,
+ /// To be added.
ParametersForOverview = 57,
+ /// To be added.
[MacCatalyst (13, 1)]
SupportsMpe = 58,
[iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)]
@@ -331,12 +489,16 @@ enum AudioUnitPropertyIDType { // UInt32 AudioUnitPropertyID
MIDIOutputCallbackInfo = 47,
MIDIOutputCallback = 48,
#else
+ /// To be added.
RemoteControlEventListener = 100,
+ /// To be added.
IsInterAppConnected = 101,
+ /// To be added.
PeerURL = 102,
#endif // MONOMAC
// Output Unit
+ /// To be added.
IsRunning = 2001,
// OS X Availability
@@ -369,62 +531,92 @@ enum AudioUnitPropertyIDType { // UInt32 AudioUnitPropertyID
// Apple Specific Properties
// AUConverter
+ /// To be added.
SampleRateConverterComplexity = 3014,
// AUHAL and device units
+ /// To be added.
CurrentDevice = 2000,
+ /// To be added.
ChannelMap = 2002, // this will also work with AUConverter
+ /// To be added.
EnableIO = 2003,
+ /// To be added.
StartTime = 2004,
+ /// To be added.
SetInputCallback = 2005,
+ /// To be added.
HasIO = 2006,
+ /// To be added.
StartTimestampsAtZero = 2007, // this will also work with AUConverter
#if !MONOMAC
+ /// To be added.
MIDICallbacks = 2010,
+ /// To be added.
HostReceivesRemoteControlEvents = 2011,
+ /// To be added.
RemoteControlToHost = 2012,
+ /// To be added.
HostTransportState = 2013,
+ /// To be added.
NodeComponentDescription = 2014,
#endif // !MONOMAC
// AUVoiceProcessing unit
+ /// To be added.
BypassVoiceProcessing = 2100,
+ /// To be added.
VoiceProcessingEnableAGC = 2101,
+ /// To be added.
MuteOutput = 2104,
[iOS (15, 0), MacCatalyst (15, 0), NoMac, NoTV]
MutedSpeechActivityEventListener = 2106,
// AUNBandEQ unit
+ /// To be added.
NumberOfBands = 2200,
+ /// To be added.
MaxNumberOfBands = 2201,
+ /// To be added.
BiquadCoefficients = 2203,
// Mixers
// General mixers
+ /// To be added.
MeteringMode = 3007,
// Matrix Mixer
+ /// To be added.
MatrixLevels = 3006,
+ /// To be added.
MatrixDimensions = 3009,
+ /// To be added.
MeterClipping = 3011,
+ /// To be added.
[MacCatalyst (13, 1)]
InputAnchorTimeStamp = 3016,
// SpatialMixer
+ /// To be added.
ReverbRoomType = 10,
+ /// To be added.
UsesInternalReverb = 1005,
+ /// To be added.
SpatializationAlgorithm = 3000,
SpatialMixerRenderingFlags = 3003,
SpatialMixerSourceMode = 3005,
SpatialMixerDistanceParams = 3010,
#if !XAMCORE_5_0
+ /// To be added.
[Obsolete ("Use 'SpatialMixerDistanceParams' instead.")]
[EditorBrowsable (EditorBrowsableState.Never)]
DistanceParams = SpatialMixerDistanceParams,
+ /// Developers should not use this deprecated field.
[Obsolete ("Use 'SpatialMixerAttenuationCurve' instead.")]
[EditorBrowsable (EditorBrowsableState.Never)]
AttenuationCurve = SpatialMixerAttenuationCurve,
+ /// To be added.
[Obsolete ("Use 'SpatialMixerRenderingFlags' instead.")]
[EditorBrowsable (EditorBrowsableState.Never)]
RenderingFlags = SpatialMixerRenderingFlags,
@@ -440,15 +632,23 @@ enum AudioUnitPropertyIDType { // UInt32 AudioUnitPropertyID
SpatialMixerAnyInputIsUsingPersonalizedHrtf = 3116,
// AUScheduledSoundPlayer
+ /// To be added.
ScheduleAudioSlice = 3300,
+ /// To be added.
ScheduleStartTimeStamp = 3301,
+ /// To be added.
CurrentPlayTime = 3302,
// AUAudioFilePlayer
+ /// To be added.
ScheduledFileIDs = 3310,
+ /// To be added.
ScheduledFileRegion = 3311,
+ /// To be added.
ScheduledFilePrime = 3312,
+ /// To be added.
ScheduledFileBufferSizeFrames = 3313,
+ /// To be added.
ScheduledFileNumberBuffers = 3314,
#if MONOMAC
@@ -460,24 +660,35 @@ enum AudioUnitPropertyIDType { // UInt32 AudioUnitPropertyID
#endif // !MONOMAC
// Music Device Properties
+ /// To be added.
InstrumentName = 1001,
+ /// To be added.
InstrumentNumber = 1004,
// Music Device Properties used by DLSMusicDevice and AUMIDISynth
+ /// To be added.
InstrumentCount = 1000,
+ /// To be added.
BankName = 1007,
+ /// To be added.
SoundBankURL = 1100,
// AUMIDISynth
+ /// To be added.
MidiSynthEnablePreload = 4119,
// AUSampler
+ /// To be added.
LoadInstrument = 4102,
+ /// To be added.
LoadAudioFiles = 4101,
// AUDeferredRenderer
+ /// To be added.
DeferredRendererPullSize = 3320,
+ /// To be added.
DeferredRendererExtraLatency = 3321,
+ /// To be added.
DeferredRendererWaitFrames = 3322,
#if MONOMAC
@@ -499,10 +710,15 @@ enum AudioUnitPropertyIDType { // UInt32 AudioUnitPropertyID
public enum AudioUnitParameterType // UInt32 in AudioUnitParameterInfo
{
// AUMixer3D unit
+ /// To be added.
Mixer3DAzimuth = 0,
+ /// To be added.
Mixer3DElevation = 1,
+ /// To be added.
Mixer3DDistance = 2,
+ /// To be added.
Mixer3DGain = 3,
+ /// To be added.
Mixer3DPlaybackRate = 4,
#if MONOMAC
Mixer3DReverbBlend = 5,
@@ -516,51 +732,82 @@ public enum AudioUnitParameterType // UInt32 in AudioUnitParameterInfo
Mixer3DPostAveragePower = 3000,
Mixer3DPostPeakHoldLevel = 4000,
#else
+ /// To be added.
Mixer3DEnable = 5,
+ /// To be added.
Mixer3DMinGain = 6,
+ /// To be added.
Mixer3DMaxGain = 7,
+ /// To be added.
Mixer3DReverbBlend = 8,
+ /// To be added.
Mixer3DGlobalReverbGain = 9,
+ /// To be added.
Mixer3DOcclusionAttenuation = 10,
+ /// To be added.
Mixer3DObstructionAttenuation = 11,
#endif
// AUSpatialMixer unit
+ /// To be added.
SpatialAzimuth = 0,
+ /// To be added.
SpatialElevation = 1,
+ /// To be added.
SpatialDistance = 2,
+ /// To be added.
SpatialGain = 3,
+ /// To be added.
SpatialPlaybackRate = 4,
+ /// To be added.
SpatialEnable = 5,
+ /// To be added.
SpatialMinGain = 6,
+ /// To be added.
SpatialMaxGain = 7,
+ /// To be added.
SpatialReverbBlend = 8,
+ /// To be added.
SpatialGlobalReverbGain = 9,
+ /// To be added.
SpatialOcclusionAttenuation = 10,
+ /// To be added.
SpatialObstructionAttenuation = 11,
// Reverb applicable to the 3DMixer or AUSpatialMixer
+ /// To be added.
ReverbFilterFrequency = 14,
+ /// To be added.
ReverbFilterBandwidth = 15,
+ /// To be added.
ReverbFilterGain = 16,
+ /// To be added.
[MacCatalyst (13, 1)]
ReverbFilterType = 17,
+ /// To be added.
[MacCatalyst (13, 1)]
ReverbFilterEnable = 18,
// AUMultiChannelMixer
+ /// To be added.
MultiChannelMixerVolume = 0,
+ /// To be added.
MultiChannelMixerEnable = 1,
+ /// To be added.
MultiChannelMixerPan = 2,
// AUMatrixMixer unit
+ /// To be added.
MatrixMixerVolume = 0,
+ /// To be added.
MatrixMixerEnable = 1,
// AudioDeviceOutput, DefaultOutputUnit, and SystemOutputUnit units
+ /// To be added.
HALOutputVolume = 14,
// AUTimePitch, AUTimePitch (offline), AUPitch units
+ /// To be added.
TimePitchRate = 0,
#if MONOMAC
TimePitchPitch = 1,
@@ -568,60 +815,92 @@ public enum AudioUnitParameterType // UInt32 in AudioUnitParameterInfo
#endif
// AUNewTimePitch
+ /// To be added.
NewTimePitchRate = 0,
+ /// To be added.
NewTimePitchPitch = 1,
+ /// To be added.
NewTimePitchOverlap = 4,
+ /// To be added.
NewTimePitchEnablePeakLocking = 6,
// AUSampler unit
+ /// To be added.
AUSamplerGain = 900,
+ /// To be added.
AUSamplerCoarseTuning = 901,
+ /// To be added.
AUSamplerFineTuning = 902,
+ /// To be added.
AUSamplerPan = 903,
// AUBandpass
+ /// To be added.
BandpassCenterFrequency = 0,
+ /// To be added.
BandpassBandwidth = 1,
// AUHipass
+ /// To be added.
HipassCutoffFrequency = 0,
+ /// To be added.
HipassResonance = 1,
// AULowpass
+ /// To be added.
LowPassCutoffFrequency = 0,
+ /// To be added.
LowPassResonance = 1,
// AUHighShelfFilter
+ /// To be added.
HighShelfCutOffFrequency = 0,
+ /// To be added.
HighShelfGain = 1,
// AULowShelfFilter
+ /// To be added.
AULowShelfCutoffFrequency = 0,
+ /// To be added.
AULowShelfGain = 1,
#if !XAMCORE_5_0 // I can't find this value in the headers anymore
+ /// To be added.
[Obsoleted (PlatformName.iOS, 7, 0)]
[Obsoleted (PlatformName.MacCatalyst, 13, 1)]
AUDCFilterDecayTime = 0,
#endif
// AUParametricEQ
+ /// To be added.
ParametricEQCenterFreq = 0,
+ /// To be added.
ParametricEQQ = 1,
+ /// To be added.
ParametricEQGain = 2,
// AUPeakLimiter
+ /// To be added.
LimiterAttackTime = 0,
+ /// To be added.
LimiterDecayTime = 1,
+ /// To be added.
LimiterPreGain = 2,
// AUDynamicsProcessor
+ /// To be added.
DynamicsProcessorThreshold = 0,
+ /// To be added.
DynamicsProcessorHeadRoom = 1,
+ /// To be added.
DynamicsProcessorExpansionRatio = 2,
+ /// To be added.
DynamicsProcessorExpansionThreshold = 3,
+ /// To be added.
DynamicsProcessorAttackTime = 4,
+ /// To be added.
DynamicsProcessorReleaseTime = 5,
+ /// To be added.
[Deprecated (PlatformName.iOS, 15, 0, message: "Use 'DynamicsProcessorOverallGain' instead.")]
[Deprecated (PlatformName.TvOS, 15, 0, message: "Use 'DynamicsProcessorOverallGain' instead.")]
[Deprecated (PlatformName.MacOSX, 12, 0, message: "Use 'DynamicsProcessorOverallGain' instead.")]
@@ -629,88 +908,148 @@ public enum AudioUnitParameterType // UInt32 in AudioUnitParameterInfo
DynamicsProcessorMasterGain = 6,
[iOS (15, 0), TV (15, 0), MacCatalyst (15, 0)]
DynamicsProcessorOverallGain = 6,
+ /// To be added.
DynamicsProcessorCompressionAmount = 1000,
+ /// To be added.
DynamicsProcessorInputAmplitude = 2000,
+ /// To be added.
DynamicsProcessorOutputAmplitude = 3000,
// AUVarispeed
+ /// To be added.
VarispeedPlaybackRate = 0,
+ /// To be added.
VarispeedPlaybackCents = 1,
// Distortion unit
+ /// To be added.
DistortionDelay = 0,
+ /// To be added.
DistortionDecay = 1,
+ /// To be added.
DistortionDelayMix = 2,
+ /// To be added.
DistortionDecimation = 3,
+ /// To be added.
DistortionRounding = 4,
+ /// To be added.
DistortionDecimationMix = 5,
+ /// To be added.
DistortionLinearTerm = 6,
+ /// To be added.
DistortionSquaredTerm = 7,
+ /// To be added.
DistortionCubicTerm = 8,
+ /// To be added.
DistortionPolynomialMix = 9,
+ /// To be added.
DistortionRingModFreq1 = 10,
+ /// To be added.
DistortionRingModFreq2 = 11,
+ /// To be added.
DistortionRingModBalance = 12,
+ /// To be added.
DistortionRingModMix = 13,
+ /// To be added.
DistortionSoftClipGain = 14,
+ /// To be added.
DistortionFinalMix = 15,
// AUDelay
+ /// To be added.
DelayWetDryMix = 0,
+ /// To be added.
DelayTime = 1,
+ /// To be added.
DelayFeedback = 2,
+ /// To be added.
DelayLopassCutoff = 3,
// AUNBandEQ
+ /// To be added.
AUNBandEQGlobalGain = 0,
+ /// To be added.
AUNBandEQBypassBand = 1000,
+ /// To be added.
AUNBandEQFilterType = 2000,
+ /// To be added.
AUNBandEQFrequency = 3000,
+ /// To be added.
AUNBandEQGain = 4000,
+ /// To be added.
AUNBandEQBandwidth = 5000,
// AURandomUnit
+ /// To be added.
RandomBoundA = 0,
+ /// To be added.
RandomBoundB = 1,
+ /// To be added.
RandomCurve = 2,
#if !MONOMAC
// iOS reverb
+ /// To be added.
Reverb2DryWetMix = 0,
+ /// To be added.
Reverb2Gain = 1,
+ /// To be added.
Reverb2MinDelayTime = 2,
+ /// To be added.
Reverb2MaxDelayTime = 3,
+ /// To be added.
Reverb2DecayTimeAt0Hz = 4,
+ /// To be added.
Reverb2DecayTimeAtNyquist = 5,
+ /// To be added.
Reverb2RandomizeReflections = 6,
#endif
// RoundTripAAC
+ /// To be added.
RoundTripAacFormat = 0,
+ /// To be added.
RoundTripAacEncodingStrategy = 1,
+ /// To be added.
RoundTripAacRateOrQuality = 2,
// Spacial Mixer
+ /// To be added.
SpacialMixerAzimuth = 0,
+ /// To be added.
Elevation = 1,
+ /// To be added.
Distance = 2,
+ /// To be added.
Gain = 3,
+ /// To be added.
PlaybackRate = 4,
+ /// To be added.
Enable = 5,
+ /// To be added.
MinGain = 6,
+ /// To be added.
MaxGain = 7,
+ /// To be added.
ReverbBlend = 8,
+ /// To be added.
GlobalReverbGain = 9,
+ /// To be added.
OcclussionAttenuation = 10,
+ /// To be added.
ObstructionAttenuation = 11,
}
/// Enumerates attenuation modes.
[MacCatalyst (13, 1)]
public enum SpatialMixerAttenuation {
+ /// To be added.
Power = 0,
+ /// To be added.
Exponential = 1,
+ /// To be added.
Inverse = 2,
+ /// To be added.
Linear = 3,
}
@@ -718,7 +1057,9 @@ public enum SpatialMixerAttenuation {
[Flags]
[MacCatalyst (13, 1)]
public enum SpatialMixerRenderingFlags {
+ /// To be added.
InterAuralDelay = (1 << 0),
+ /// Developers should not use this deprecated field.
[Deprecated (PlatformName.iOS, 9, 0)]
[Deprecated (PlatformName.TvOS, 9, 0)]
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
@@ -729,74 +1070,108 @@ public enum SpatialMixerRenderingFlags {
/// Enumerates timing flags for rendering audio slices.
[Flags]
public enum ScheduledAudioSliceFlag {
+ /// To be added.
Complete = 0x01,
+ /// To be added.
BeganToRender = 0x02,
+ /// To be added.
BeganToRenderLate = 0x04,
+ /// To be added.
[MacCatalyst (13, 1)]
Loop = 0x08,
+ /// To be added.
[MacCatalyst (13, 1)]
Interrupt = 0x10,
+ /// To be added.
[MacCatalyst (13, 1)]
InterruptAtLoop = 0x20,
}
/// An enumeration whose values specify roles and contexts for audio unit properties.
public enum AudioUnitScopeType { // UInt32 AudioUnitScope
+ /// To be added.
Global = 0,
+ /// To be added.
Input = 1,
+ /// To be added.
Output = 2,
+ /// To be added.
Group = 3,
+ /// To be added.
Part = 4,
+ /// To be added.
Note = 5,
+ /// To be added.
Layer = 6,
+ /// To be added.
LayerItem = 7,
}
/// An enumeration whose values specify configuration flags for audio-unit rendering.
[Flags]
public enum AudioUnitRenderActionFlags { // UInt32 AudioUnitRenderActionFlags
+ /// To be added.
PreRender = (1 << 2),
+ /// To be added.
PostRender = (1 << 3),
+ /// To be added.
OutputIsSilence = (1 << 4),
+ /// To be added.
OfflinePreflight = (1 << 5),
+ /// To be added.
OfflineRender = (1 << 6),
+ /// To be added.
OfflineComplete = (1 << 7),
+ /// To be added.
PostRenderError = (1 << 8),
+ /// To be added.
DoNotCheckRenderArgs = (1 << 9),
}
/// Enumerates events relating to remote control commands.
public enum AudioUnitRemoteControlEvent // Unused?
{
+ /// To be added.
TogglePlayPause = 1,
+ /// To be added.
ToggleRecord = 2,
+ /// To be added.
Rewind = 3,
}
[Native]
public enum AudioUnitBusType : long {
+ /// To be added.
Input = 1,
+ /// To be added.
Output = 2,
}
/// Enumerates flag values that describe the state of an audio transport.
[Native]
public enum AUHostTransportStateFlags : ulong {
+ /// Indicates that state change has occured, such as a stop, start, seek, or other change since the host transport state block was last called.
Changed = 1,
+ /// Indicates that the transport is moving.
Moving = 2,
+ /// Indicates that the host is able to record, or is currently recording.
Recording = 4,
+ /// Indicates that the host is cycling.
Cycling = 8,
}
public enum AUEventSampleTime : long {
+ /// To be added.
Immediate = unchecked((long) 0xffffffff00000000),
}
/// Enumerates options that can be used while instantiating a .
[MacCatalyst (13, 1)]
public enum AudioComponentInstantiationOptions : uint {
+ /// To be added.
OutOfProcess = 1,
+ /// To be added.
[NoiOS, NoTV, NoMacCatalyst]
InProcess = 2,
[iOS (14, 5), TV (14, 5), NoMac]
@@ -807,93 +1182,160 @@ public enum AudioComponentInstantiationOptions : uint {
/// Enumerates audio unit bus input-ouput capabilities.
[Native]
public enum AUAudioUnitBusType : long {
+ /// Indicates an input bus.
Input = 1,
+ /// Indicates an output bus.
Output = 2
}
public enum AudioUnitParameterOptions : uint {
+ /// To be added.
CFNameRelease = (1 << 4),
+ /// To be added.
OmitFromPresets = (1 << 13),
+ /// To be added.
PlotHistory = (1 << 14),
+ /// To be added.
MeterReadOnly = (1 << 15),
+ /// To be added.
DisplayMask = (7 << 16) | (1 << 22),
+ /// To be added.
DisplaySquareRoot = (1 << 16),
+ /// To be added.
DisplaySquared = (2 << 16),
+ /// To be added.
DisplayCubed = (3 << 16),
+ /// To be added.
DisplayCubeRoot = (4 << 16),
+ /// To be added.
DisplayExponential = (5 << 16),
+ /// To be added.
HasClump = (1 << 20),
+ /// To be added.
ValuesHaveStrings = (1 << 21),
+ /// To be added.
DisplayLogarithmic = (1 << 22),
+ /// To be added.
IsHighResolution = (1 << 23),
+ /// To be added.
NonRealTime = (1 << 24),
+ /// To be added.
CanRamp = (1 << 25),
+ /// To be added.
ExpertMode = (1 << 26),
+ /// To be added.
HasCFNameString = (1 << 27),
+ /// To be added.
IsGlobalMeta = (1 << 28),
+ /// To be added.
IsElementMeta = (1 << 29),
+ /// To be added.
IsReadable = (1 << 30),
+ /// To be added.
IsWritable = unchecked((uint) 1 << 31),
}
public enum AudioComponentValidationResult : uint {
+ /// To be added.
Unknown = 0,
+ /// To be added.
Passed,
+ /// To be added.
Failed,
+ /// To be added.
TimedOut,
+ /// To be added.
UnauthorizedErrorOpen,
+ /// To be added.
UnauthorizedErrorInit,
}
public enum AUSpatialMixerAttenuationCurve : uint {
+ /// To be added.
Power = 0,
+ /// To be added.
Exponential = 1,
+ /// To be added.
Inverse = 2,
+ /// To be added.
Linear = 3,
}
public enum AU3DMixerRenderingFlags : uint {
+ /// To be added.
InterAuralDelay = (1 << 0),
+ /// To be added.
DopplerShift = (1 << 1),
+ /// To be added.
DistanceAttenuation = (1 << 2),
+ /// To be added.
DistanceFilter = (1 << 3),
+ /// To be added.
DistanceDiffusion = (1 << 4),
+ /// To be added.
LinearDistanceAttenuation = (1 << 5),
+ /// To be added.
ConstantReverbBlend = (1 << 6),
}
public enum AUReverbRoomType : uint {
+ /// To be added.
SmallRoom = 0,
+ /// To be added.
MediumRoom = 1,
+ /// To be added.
LargeRoom = 2,
+ /// To be added.
MediumHall = 3,
+ /// To be added.
LargeHall = 4,
+ /// To be added.
Plate = 5,
+ /// To be added.
MediumChamber = 6,
+ /// To be added.
LargeChamber = 7,
+ /// To be added.
Cathedral = 8,
+ /// To be added.
LargeRoom2 = 9,
+ /// To be added.
MediumHall2 = 10,
+ /// To be added.
MediumHall3 = 11,
+ /// To be added.
LargeHall2 = 12,
}
public enum AUScheduledAudioSliceFlags : uint {
+ /// To be added.
Complete = 1,
+ /// To be added.
BeganToRender = 2,
+ /// To be added.
BeganToRenderLate = 4,
+ /// To be added.
Loop = 8,
+ /// To be added.
Interrupt = 16,
+ /// To be added.
InterruptAtLoop = 32,
}
public enum AUSpatializationAlgorithm : uint {
+ /// To be added.
EqualPowerPanning = 0,
+ /// To be added.
SphericalHead = 1,
+ /// To be added.
Hrtf = 2,
+ /// To be added.
SoundField = 3,
+ /// To be added.
VectorBasedPanning = 4,
+ /// To be added.
StereoPassThrough = 5,
+ /// To be added.
HrtfHQ = 6,
[iOS (14, 0)]
[TV (14, 0)]
@@ -903,21 +1345,30 @@ public enum AUSpatializationAlgorithm : uint {
/// Enumerates attentuation curve types.
public enum AU3DMixerAttenuationCurve : uint {
+ /// Indicates an equal-power attenuation curve.
Power = 0,
+ /// Indicates an exponential attenuation curve.
Exponential = 1,
+ /// Indicates an inverse attenuation curve.
Inverse = 2,
+ /// Indicates a linear attenuation curve.
Linear = 3,
}
public enum AUSpatialMixerRenderingFlags : uint {
+ /// To be added.
InterAuralDelay = (1 << 0),
+ /// To be added.
DistanceAttenuation = (1 << 2),
}
[MacCatalyst (13, 1)]
public enum AUParameterAutomationEventType : uint {
+ /// To be added.
Value = 0,
+ /// To be added.
Touch = 1,
+ /// To be added.
Release = 2,
}
@@ -937,35 +1388,65 @@ public enum AudioUnitEventType : uint {
public enum AudioUnitSubType : uint {
+ /// To be added.
AUConverter = 0x636F6E76, // 'conv'
+ /// To be added.
Varispeed = 0x76617269, // 'vari'
+ /// To be added.
DeferredRenderer = 0x64656672, // 'defr'
+ /// To be added.
Splitter = 0x73706C74, // 'splt'
+ /// To be added.
MultiSplitter = 0x6D73706C, // 'mspl'
+ /// To be added.
Merger = 0x6D657267, // 'merg'
+ /// To be added.
NewTimePitch = 0x6E757470, // 'nutp'
+ /// To be added.
AUiPodTimeOther = 0x6970746F, // 'ipto'
+ /// To be added.
RoundTripAac = 0x72616163, // 'raac'
+ /// To be added.
GenericOutput = 0x67656E72, // 'genr'
+ /// To be added.
VoiceProcessingIO = 0x7670696F, // 'vpio'
+ /// To be added.
Sampler = 0x73616D70, // 'samp'
+ /// To be added.
MidiSynth = 0x6D73796E, // 'msyn'
+ /// To be added.
PeakLimiter = 0x6C6D7472, // 'lmtr'
+ /// To be added.
DynamicsProcessor = 0x64636D70, // 'dcmp'
+ /// To be added.
LowPassFilter = 0x6C706173, // 'lpas'
+ /// To be added.
HighPassFilter = 0x68706173, // 'hpas'
+ /// To be added.
BandPassFilter = 0x62706173, // 'bpas'
+ /// To be added.
HighShelfFilter = 0x68736866, // 'hshf'
+ /// To be added.
LowShelfFilter = 0x6C736866, // 'lshf'
+ /// To be added.
ParametricEQ = 0x706D6571, // 'pmeq'
+ /// To be added.
Distortion = 0x64697374, // 'dist'
+ /// To be added.
Delay = 0x64656C79, // 'dely'
+ /// To be added.
SampleDelay = 0x73646C79, // 'sdly'
+ /// To be added.
NBandEQ = 0x6E626571, // 'nbeq'
+ /// To be added.
MultiChannelMixer = 0x6D636D78, // 'mcmx'
+ /// To be added.
MatrixMixer = 0x6D786D78, // 'mxmx'
+ /// To be added.
SpatialMixer = 0x3364656D, // '3dem'
+ /// To be added.
ScheduledSoundPlayer = 0x7373706C, // 'sspl'
+ /// To be added.
AudioFilePlayer = 0x6166706C, // 'afpl'
#if MONOMAC
diff --git a/src/AudioUnit/AUGraph.cs b/src/AudioUnit/AUGraph.cs
index e0637a5c1a94..43f8c77f9b69 100644
--- a/src/AudioUnit/AUGraph.cs
+++ b/src/AudioUnit/AUGraph.cs
@@ -50,15 +50,23 @@
namespace AudioUnit {
public enum AUGraphError // Implictly cast to OSType
{
+ /// To be added.
OK = 0,
+ /// To be added.
NodeNotFound = -10860,
+ /// To be added.
InvalidConnection = -10861,
+ /// To be added.
OutputNodeError = -10862,
+ /// To be added.
CannotDoInCurrentContext = -10863,
+ /// To be added.
InvalidAudioUnit = -10864,
// Values returned & shared with other error enums
+ /// To be added.
FormatNotSupported = -10868,
+ /// To be added.
InvalidElement = -10877,
}
@@ -116,6 +124,9 @@ public AUGraph ()
return new AUGraph (handle, true);
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsInitialized {
get {
byte b;
@@ -125,6 +136,9 @@ public bool IsInitialized {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsOpen {
get {
byte b;
@@ -134,6 +148,9 @@ public bool IsOpen {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsRunning {
get {
byte b;
diff --git a/src/AudioUnit/AUScheduledAudioFileRegion.cs b/src/AudioUnit/AUScheduledAudioFileRegion.cs
index 78d1ae5c285d..56686932bc70 100644
--- a/src/AudioUnit/AUScheduledAudioFileRegion.cs
+++ b/src/AudioUnit/AUScheduledAudioFileRegion.cs
@@ -48,10 +48,25 @@ internal struct ScheduledAudioFileRegion {
AUScheduledAudioFileRegionCompletionHandler? completionHandler;
bool alreadyUsed = false;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioTimeStamp TimeStamp { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioFile AudioFile { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint LoopCount { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public long StartFrame { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint FramesToPlay { get; set; }
public AUScheduledAudioFileRegion (AudioFile audioFile, AUScheduledAudioFileRegionCompletionHandler? completionHandler = null)
diff --git a/src/AudioUnit/AudioComponent.cs b/src/AudioUnit/AudioComponent.cs
index 8cdc6261ab28..36245a17f497 100644
--- a/src/AudioUnit/AudioComponent.cs
+++ b/src/AudioUnit/AudioComponent.cs
@@ -79,6 +79,9 @@ public ResourceUsageInfo () : base () { }
public ResourceUsageInfo (NSDictionary dic) : base (dic) { }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string []? IOKitUserClient {
get {
return GetStringArrayValue (userClientK);
@@ -91,6 +94,9 @@ public string []? IOKitUserClient {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string []? MachLookUpGlobalName {
get {
return GetStringArrayValue (globalNameK);
@@ -103,6 +109,9 @@ public string []? MachLookUpGlobalName {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool? NetworkClient {
get {
return GetBoolValue (networkClientK);
@@ -112,6 +121,9 @@ public bool? NetworkClient {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool? TemporaryExceptionReadWrite {
get {
return GetBoolValue (exceptionK);
@@ -149,6 +161,9 @@ public AudioComponentInfo () : base () { }
public AudioComponentInfo (NSDictionary dic) : base (dic) { }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Type {
get {
return GetStringValue (typeK);
@@ -158,6 +173,9 @@ public string? Type {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Subtype {
get {
return GetStringValue (subtypeK);
@@ -167,6 +185,9 @@ public string? Subtype {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Manufacturer {
get {
return GetStringValue (manufacturerK);
@@ -176,6 +197,9 @@ public string? Manufacturer {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get {
return GetStringValue (nameK);
@@ -185,6 +209,9 @@ public string? Name {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nuint? Version {
get {
return GetNUIntValue (versionK);
@@ -194,6 +221,9 @@ public nuint? Version {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? FactoryFunction {
get {
return GetStringValue (factoryFunctionK);
@@ -203,6 +233,9 @@ public string? FactoryFunction {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool? SandboxSafe {
get {
return GetBoolValue (sandboxSafeK);
@@ -212,6 +245,9 @@ public bool? SandboxSafe {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public ResourceUsageInfo? ResourceUsage {
get {
return GetStrongDictionary (resourceUsageK, (dict) => new ResourceUsageInfo (dict));
@@ -221,6 +257,9 @@ public ResourceUsageInfo? ResourceUsage {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string []? Tags {
get {
return GetStringArrayValue (tagsK);
@@ -319,6 +358,9 @@ public AudioUnit CreateAudioUnit ()
[DllImport (Constants.AudioUnitLibrary, EntryPoint = "AudioComponentCopyName")]
unsafe static extern int /* OSStatus */ AudioComponentCopyName (IntPtr component, IntPtr* cfstr);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get {
IntPtr r;
@@ -333,6 +375,9 @@ public string? Name {
[DllImport (Constants.AudioUnitLibrary)]
unsafe static extern int /* OSStatus */ AudioComponentGetDescription (IntPtr component, AudioComponentDescription* desc);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioComponentDescription? Description {
get {
AudioComponentDescription desc;
@@ -348,6 +393,9 @@ public AudioComponentDescription? Description {
[DllImport (Constants.AudioUnitLibrary)]
unsafe static extern int /* OSStatus */ AudioComponentGetVersion (IntPtr component, int* /* UInt32* */ version);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Version? Version {
get {
int ret;
@@ -440,6 +488,9 @@ public Version? Version {
static extern double AudioComponentGetLastActiveTime (IntPtr comp);
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
@@ -692,6 +743,9 @@ public void ValidateAsync (NSDictionary? validationParameters,
static extern /* CFArrayRef */ IntPtr AudioUnitExtensionCopyComponentList (IntPtr /* CFString */ extensionIdentifier);
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
@@ -760,6 +814,8 @@ public AudioComponentInfo []? ComponentList {
#endif
public static class AudioComponentValidationParameter {
// #define kAudioComponentValidationParameter_ForceValidation "ForceValidation"
+ /// To be added.
+ /// To be added.
public static NSString ForceValidation = new NSString ("ForceValidation");
// #define kAudioComponentValidationParameter_LoadOutOfProcess "LoadOutOfProcess"
@@ -775,6 +831,8 @@ public static class AudioComponentValidationParameter {
public static NSString LoadOutOfProcess = new NSString ("LoadOutOfProcess");
// #define kAudioComponentValidationParameter_TimeOut "TimeOut"
+ /// To be added.
+ /// To be added.
public static NSString TimeOut = new NSString ("TimeOut");
}
@@ -786,6 +844,8 @@ public static class AudioComponentValidationParameter {
#endif
public static class AudioComponentConfigurationInfo {
// #define kAudioComponentConfigurationInfo_ValidationResult "ValidationResult"
+ /// To be added.
+ /// To be added.
public static NSString ValidationResult = new NSString ("ValidationResult");
}
#endif
diff --git a/src/AudioUnit/AudioComponentDescription.cs b/src/AudioUnit/AudioComponentDescription.cs
index 019ee39f512f..0bf56526e7c5 100644
--- a/src/AudioUnit/AudioComponentDescription.cs
+++ b/src/AudioUnit/AudioComponentDescription.cs
@@ -40,16 +40,26 @@
namespace AudioUnit {
public enum AudioComponentType : uint { // OSType in AudioComponentDescription
+ /// An effect component, when set, you want to set a component subtype in the to one of the values from T:AudioUnit.AUAudioUnitSubType.Output
Output = 0x61756f75, //'auou',
+ /// A music device component, when set, you want to set a component subtype in the to one of the values from
MusicDevice = 0x61756d75, // 'aumu'
+ /// An effect component that can also work on MIDI control messages.
MusicEffect = 0x61756d66, // 'aumf'
+ /// An format converter component, when set, you want to set a component subtype in the to one of the values from T:AudioUnit.AUAudioUnitSubType.FormatConverter
FormatConverter = 0x61756663, // 'aufc'
+ /// An effect component, when set, you want to set a component subtype in the to one of the values from T:AudioUnit.AUAudioUnitSubType.Effect
Effect = 0x61756678, // 'aufx'
+ /// A mixer component, when set, you want to set a component subtype in the to one of the values from T:AudioUnit.AUAudioUnitSubType.Mixer
Mixer = 0x61756d78, // 'aumx'
+ /// A panner component that will pan a single audio input to a single output. When set, you want to set a component subtype in the to one of the values from T:AudioUnit.AUAudioUnitSubType.Panner
Panner = 0x6175706e, // 'aupn'
+ /// An offline effect component, used to process data from files or to perform offline audio processing (not real time)
OfflineEffect = 0x61756f6c, // 'auol'
+ /// A generator component, when set, you want to set a component subtype in the to one of the values from T:AudioUnit.AUAudioUnitSubType.Generator
Generator = 0x6175676e, // 'augn'
#if NET
+ /// A MIDI processor component, they can receive MIDI input and generate MIDI output, but they do not actually produce audio.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -68,24 +78,28 @@ public enum AudioComponentType : uint { // OSType in AudioComponentDescription
#if !MONOMAC
#if NET
+ /// A remote effect component
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
#endif
RemoteEffect = 0x61757278, // 'aurx',
#if NET
+ /// A remote generator.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
#endif
RemoteGenerator = 0x61757267, // 'aurg',
#if NET
+ /// A remote instrument
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
#endif
RemoteInstrument = 0x61757269, // 'auri',
#if NET
+ /// A remote music effect
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
@@ -95,6 +109,7 @@ public enum AudioComponentType : uint { // OSType in AudioComponentDescription
}
public enum AudioTypeOutput { // OSType in AudioComponentDescription
+ /// To be added.
Generic = 0x67656e72, // 'genr'
#if MONOMAC
HAL = 0x6168616c, // 'ahal'
@@ -102,12 +117,14 @@ public enum AudioTypeOutput { // OSType in AudioComponentDescription
System = 0x73797320, // 'sys'
#endif
#if NET
+ /// To be added.
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
#endif
Remote = 0x72696f63, // 'rioc'
+ /// To be added.
VoiceProcessingIO = 0x7670696f // 'vpio'
}
@@ -115,9 +132,11 @@ public enum AudioTypeMusicDevice { // OSType in AudioComponentDescription
#if MONOMAC
DlsSynth = 0x646c7320, // 'dls '
#endif
+ /// To be added.
Sampler = 0x73616d70, // 'samp'
#if NET
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -127,19 +146,29 @@ public enum AudioTypeMusicDevice { // OSType in AudioComponentDescription
}
public enum AudioTypeConverter { // OSType in AudioComponentDescription
+ /// Indicates a converter that does linear PCM conversions.
AU = 0x636f6e76, // 'conv'
+ /// Indicates an audio unit that controls speed.
Varispeed = 0x76617269, // 'vari'
+ /// Indicates a cross-thread audio unit with a delay that is controlled by its buffer size.
DeferredRenderer = 0x64656672, // 'defr'
+ /// Indicates an audio unit that splits its input to two outputs.
Splitter = 0x73706c74, // 'splt'
+ /// Indicates an audio unit that merges two inputs.
Merger = 0x6d657267, // 'merg'
+ /// Indicates an audio unit that provides independent control of pitch and speed. (iOS 6.0 and later.)
NewTimePitch = 0x6e757470, // 'nutp'
+ /// Indicates a basic iPhone audio unit. (iOS 5.0 or later.)
AUiPodTimeOther = 0x6970746f, // 'ipto
+ /// Indicates an audio unit that handles round trip AAC data.
RoundTripAAC = 0x72616163, // 'raac'
+ /// Indicates an audio unit that splits its input to more than two outputs.
MultiSplitter = 0x6d73706c, // 'mspl'
#if MONOMAC
TimePitch = 0x746d7074, // 'tmpt'
#else
#if NET
+ /// Indicates an iPhone audio unit that provides basic control over playback.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
@@ -156,13 +185,20 @@ public enum AudioTypeConverter { // OSType in AudioComponentDescription
}
public enum AudioTypeEffect { // OSType in AudioComponentDescription
+ /// To be added.
PeakLimiter = 0x6c6d7472, // 'lmtr'
+ /// To be added.
DynamicsProcessor = 0x64636d70, // 'dcmp'
+ /// To be added.
LowPassFilter = 0x6c706173, // 'lpas'
+ /// To be added.
HighPassFilter = 0x68706173, // 'hpas'
+ /// To be added.
HighShelfFilter = 0x68736866, // 'hshf'
+ /// To be added.
LowShelfFilter = 0x6c736866, // 'lshf'
#if NET
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -175,17 +211,22 @@ public enum AudioTypeEffect { // OSType in AudioComponentDescription
[Obsoleted (PlatformName.iOS, 7, 0)]
#endif
DCFilter = 0x6463666c, // 'dcfl'
+ /// To be added.
ParametricEQ = 0x706d6571, // 'pmeq'
+ /// To be added.
Delay = 0x64656c79, // 'dely'
#if NET
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
#endif
SampleDelay = 0x73646c79, // 'sdly'
+ /// To be added.
Distortion = 0x64697374, // 'dist'
+ /// To be added.
BandPassFilter = 0x62706173, // 'bpas'
#if MONOMAC
GraphicEQ = 0x67726571, // 'greq'
@@ -197,6 +238,7 @@ public enum AudioTypeEffect { // OSType in AudioComponentDescription
RogerBeep = 0x726f6772, // 'rogr'
#else
#if NET
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("macos")]
@@ -211,6 +253,7 @@ public enum AudioTypeEffect { // OSType in AudioComponentDescription
AUiPodEQ = 0x69706571, // 'ipeq'
#endif
#if NET
+ /// To be added.
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
@@ -219,12 +262,16 @@ public enum AudioTypeEffect { // OSType in AudioComponentDescription
[Unavailable (PlatformName.MacCatalyst)]
#endif
Reverb2 = 0x72766232, // 'rvb2'
+ /// To be added.
NBandEq = 0x6e626571, // 'nbeq'
}
public enum AudioTypeMixer { // OSType in AudioComponentDescription
+ /// To be added.
MultiChannel = 0x6d636d78, // 'mcmx'
+ /// To be added.
Matrix = 0x6d786d78, // 'mxmx'
+ /// To be added.
Spacial = 0x3364656d, // Same as Embedded3D
#if MONOMAC
Stereo = 0x736d7872, // 'smxr'
@@ -240,6 +287,7 @@ public enum AudioTypeMixer { // OSType in AudioComponentDescription
ThreeD = 0x33646d78, // '3dmx'
#else
#if NET
+ /// Developers should not use this deprecated field. Developers should use 'Spacial' instead.
[SupportedOSPlatform ("ios")]
[UnsupportedOSPlatform ("maccatalyst")]
[UnsupportedOSPlatform ("tvos")]
@@ -263,22 +311,30 @@ public enum AudioTypeGenerator { // OSType in AudioComponentDescription
#if MONOMAC
NetReceive = 0x6e726376, // 'nrcv'
#endif
+ /// To be added.
ScheduledSoundPlayer = 0x7373706c, // 'sspl'
+ /// To be added.
AudioFilePlayer = 0x6166706c, // 'afpl'
}
public enum AudioComponentManufacturerType : uint // OSType in AudioComponentDescription
{
+ /// To be added.
Apple = 0x6170706c // little endian 0x6c707061 //'appl'
}
[Flags]
public enum AudioComponentFlag // UInt32 in AudioComponentDescription
{
+ /// To be added.
Unsearchable = 1,
+ /// To be added.
SandboxSafe = 2,
+ /// To be added.
IsV3AudioUnit = 4,
+ /// To be added.
RequiresAsyncInstantiation = 8,
+ /// To be added.
CanLoadInProcess = 0x10
}
@@ -290,17 +346,28 @@ public enum AudioComponentFlag // UInt32 in AudioComponentDescription
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioComponentDescription {
+ /// Describes the component type, some of the component types have subtypes, in those cases, you should also set the property.
+ ///
+ ///
+ ///
public AudioComponentType ComponentType;
#if NET && !COREBUILD
- public AudioUnitSubType ComponentSubType;
+ ///
+ public AudioUnitSubType ComponentSubType;
#else
public int ComponentSubType;
#endif
+ /// To be added.
+ /// To be added.
public AudioComponentManufacturerType ComponentManufacturer;
+ /// To be added.
+ /// To be added.
public AudioComponentFlag ComponentFlags;
+ /// To be added.
+ /// To be added.
public int ComponentFlagsMask;
internal AudioComponentDescription (AudioComponentType type, int subType)
diff --git a/src/AudioUnit/AudioUnit.cs b/src/AudioUnit/AudioUnit.cs
index ede6350113d9..c94208f4eb74 100644
--- a/src/AudioUnit/AudioUnit.cs
+++ b/src/AudioUnit/AudioUnit.cs
@@ -162,8 +162,14 @@ struct AudioUnitConnection {
#endif
public class SamplerInstrumentData {
#if !COREBUILD
+ /// To be added.
+ /// To be added.
public const byte DefaultPercussionBankMSB = 0x78;
+ /// To be added.
+ /// To be added.
public const byte DefaultMelodicBankMSB = 0x79;
+ /// To be added.
+ /// To be added.
public const byte DefaultBankLSB = 0x00;
public SamplerInstrumentData (CFUrl fileUrl, InstrumentType instrumentType)
@@ -175,10 +181,25 @@ public SamplerInstrumentData (CFUrl fileUrl, InstrumentType instrumentType)
this.InstrumentType = instrumentType;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CFUrl FileUrl { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public InstrumentType InstrumentType { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public byte BankMSB { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public byte BankLSB { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public byte PresetID { get; set; }
internal AUSamplerInstrumentData ToStruct ()
@@ -246,14 +267,41 @@ unsafe struct AudioUnitParameterInfoNative // AudioUnitParameterInfo in Obj-C
#endif
public class AudioUnitParameterInfo {
#if !COREBUILD
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? UnitName { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioUnitClumpID ClumpID { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioUnitParameterUnit Unit { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float MinValue { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float MaxValue { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float DefaultValue { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioUnitParameterFlag Flags { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioUnitParameterType Type { get; private set; }
internal static AudioUnitParameterInfo Create (AudioUnitParameterInfoNative native, AudioUnitParameterType type)
@@ -286,7 +334,9 @@ internal static AudioUnitParameterInfo Create (AudioUnitParameterInfoNative nati
}
public enum AUParameterEventType : uint {
+ /// Indicates an instantaneous, or step, change in a value.
Immediate = 1,
+ /// Indicates a linear ramp change in a value over time.
Ramped = 2,
}
@@ -298,9 +348,17 @@ public enum AUParameterEventType : uint {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AudioUnitParameterEvent {
+ /// The changed parameter's audio unit scope.
+ /// To be added.
public uint Scope;
+ /// The audio element whose parameter changed.
+ /// To be added.
public uint Element;
+ /// The identifier for the changed parameter.
+ /// To be added.
public uint Parameter;
+ /// Whether the change was a step change (immediate) or gradual linear change (ramped).
+ /// To be added.
public AUParameterEventType EventType;
#if NET
@@ -313,26 +371,44 @@ public struct AudioUnitParameterEvent {
public struct EventValuesStruct {
[StructLayout (LayoutKind.Sequential)]
public struct RampStruct {
+ /// The offset into the frame buffer at which the change begins.
+ /// To be added.
public int StartBufferOffset;
+ /// The number of frames over which the change occurs.
+ /// To be added.
public uint DurationInFrames;
+ /// The start value of the parameter.
+ /// To be added.
public float StartValue;
+ /// The final value of the parameter.
+ /// To be added.
public float EndValue;
}
+ /// A struct for describing events for linear ramp changes in parameters.
+ /// To be added.
[FieldOffset (0)]
public RampStruct Ramp;
[StructLayout (LayoutKind.Sequential)]
public struct ImmediateStruct {
+ /// The offset into the frame buffer at which the change occurs.
+ /// To be added.
public uint BufferOffset;
+ /// The new value of the parameter.
+ /// To be added.
public float Value;
}
+ /// A struct for describing events for step changes in parameters.
+ /// To be added.
[FieldOffset (0)]
public ImmediateStruct Immediate;
}
+ /// The values that describe the change event for the parameter.
+ /// To be added.
public EventValuesStruct EventValues;
}
@@ -382,12 +458,18 @@ public AudioUnit (AudioComponent component)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioComponent Component {
get {
return new AudioComponent (AudioComponentInstanceGetComponent (Handle), false);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsPlaying { get { return _isPlaying; } }
public unsafe AudioUnitStatus SetFormat (AudioToolbox.AudioStreamBasicDescription audioFormat, AudioUnitScopeType scope, uint audioUnitElement = 0)
@@ -1177,8 +1259,17 @@ public unsafe class AURenderEventEnumerator : INativeObject
, IEnumerator {
AURenderEvent* current;
+ /// Handle (pointer) to the unmanaged object representation.
+ /// A pointer
+ /// This IntPtr is a handle to the underlying unmanaged representation for this object.
public NativeHandle Handle { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsEmpty { get { return Handle == IntPtr.Zero; } }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsAtEnd { get { return current is null; } }
public AURenderEventEnumerator (NativeHandle ptr)
@@ -1199,12 +1290,18 @@ public void Dispose ()
current = null;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AURenderEvent* UnsafeFirst {
get {
return (AURenderEvent*) (IntPtr) Handle;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AURenderEvent First {
get {
if (IsEmpty)
@@ -1213,6 +1310,9 @@ public AURenderEvent First {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AURenderEvent Current {
get {
if (IsAtEnd)
@@ -1221,6 +1321,9 @@ public AURenderEvent Current {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
object IEnumerator.Current {
get { return Current; }
}
@@ -1256,9 +1359,13 @@ public IEnumerable EnumeratorCurrentEvents (nint now)
#endif // !COREBUILD
public enum AURenderEventType : byte {
+ /// To be added.
Parameter = 1,
+ /// To be added.
ParameterRamp = 2,
+ /// To be added.
Midi = 8,
+ /// To be added.
MidiSysEx = 9,
#if NET
[SupportedOSPlatform ("ios15.0")]
@@ -1281,8 +1388,13 @@ public enum AURenderEventType : byte {
#endif
[StructLayout (LayoutKind.Sequential)]
public unsafe struct AURenderEventHeader {
+ /// To be added.
+ /// To be added.
public AURenderEvent* UnsafeNext;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AURenderEvent? Next {
get {
if (UnsafeNext is not null)
@@ -1291,10 +1403,16 @@ public AURenderEvent? Next {
}
}
+ /// To be added.
+ /// To be added.
public long EventSampleTime;
+ /// To be added.
+ /// To be added.
public AURenderEventType EventType;
+ /// To be added.
+ /// To be added.
public byte Reserved;
}
@@ -1306,6 +1424,8 @@ public AURenderEvent? Next {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AUParameterObserverToken {
+ /// The token that represents a parameter or parameter recording observer delegate.
+ /// To be added.
public IntPtr ObserverToken;
public AUParameterObserverToken (IntPtr observerToken)
{
@@ -1321,8 +1441,13 @@ public AUParameterObserverToken (IntPtr observerToken)
#endif
[StructLayout (LayoutKind.Sequential)]
public unsafe struct AUParameterEvent {
+ /// To be added.
+ /// To be added.
public AURenderEvent* UnsafeNext;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AURenderEvent? Next {
get {
if (UnsafeNext is not null)
@@ -1331,16 +1456,26 @@ public AURenderEvent? Next {
}
}
+ /// To be added.
+ /// To be added.
public long EventSampleTime;
+ /// To be added.
+ /// To be added.
public AURenderEventType EventType;
internal byte reserved1, reserved2, reserved3;
+ /// To be added.
+ /// To be added.
public uint RampDurationSampleFrames;
+ /// To be added.
+ /// To be added.
public ulong ParameterAddress;
+ /// To be added.
+ /// To be added.
public float Value;
}
@@ -1381,9 +1516,13 @@ public AURenderEvent? Next {
#endif
[StructLayout (LayoutKind.Explicit)]
public struct AURenderEvent {
+ /// To be added.
+ /// To be added.
[FieldOffset (0)]
public AURenderEventHeader Head;
+ /// To be added.
+ /// To be added.
[FieldOffset (0)]
public AUParameterEvent Parameter;
@@ -1399,10 +1538,16 @@ public struct AURenderEvent {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AURecordedParameterEvent {
+ /// The host time at which the change occured.
+ /// To be added.
public ulong HostTime;
+ /// The numeric identfier of the parameter.
+ /// To be added.
public ulong Address;
+ /// The new value of the parameter.
+ /// To be added.
public float Value;
}
@@ -1414,13 +1559,21 @@ public struct AURecordedParameterEvent {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct AUParameterAutomationEvent {
+ /// To be added.
+ /// To be added.
public ulong HostTime;
+ /// To be added.
+ /// To be added.
public ulong Address;
+ /// To be added.
+ /// To be added.
public float Value;
#if COREBUILD
// keep structure size identical across builds
public uint EventType;
#else
+ /// To be added.
+ /// To be added.
public AUParameterAutomationEventType EventType;
#endif
ulong Reserved;
@@ -1436,21 +1589,33 @@ public struct AUParameterAutomationEvent {
// Configuration Info Keys
public static class AudioUnitConfigurationInfo {
// #define kAudioUnitConfigurationInfo_HasCustomView "HasCustomView"
+ /// To be added.
+ /// To be added.
public static NSString HasCustomView = new NSString ("HasCustomView");
// #define kAudioUnitConfigurationInfo_ChannelConfigurations "ChannelConfigurations"
+ /// To be added.
+ /// To be added.
public static NSString ChannelConfigurations = new NSString ("ChannelConfigurations");
// #define kAudioUnitConfigurationInfo_InitialInputs "InitialInputs"
+ /// To be added.
+ /// To be added.
public static NSString InitialInputs = new NSString ("InitialInputs");
// #define kAudioUnitConfigurationInfo_IconURL "IconURL"
+ /// To be added.
+ /// To be added.
public static NSString IconUrl = new NSString ("IconURL");
// #define kAudioUnitConfigurationInfo_BusCountWritable "BusCountWritable"
+ /// To be added.
+ /// To be added.
public static NSString BusCountWritable = new NSString ("BusCountWritable");
// #define kAudioUnitConfigurationInfo_SupportedChannelLayoutTags "SupportedChannelLayoutTags"
+ /// To be added.
+ /// To be added.
public static NSString SupportedChannelLayoutTags = new NSString ("SupportedChannelLayoutTags");
}
#endif
diff --git a/src/AudioUnit/AudioUnitUtils.cs b/src/AudioUnit/AudioUnitUtils.cs
index 156b07afcda2..e9dd3b5114df 100644
--- a/src/AudioUnit/AudioUnitUtils.cs
+++ b/src/AudioUnit/AudioUnitUtils.cs
@@ -46,6 +46,8 @@ namespace AudioUnit {
[SupportedOSPlatform ("tvos")]
#endif
public static class AudioUnitUtils {
+ /// To be added.
+ /// To be added.
public const int SampleFractionBits = 24;
}
}
diff --git a/src/AudioUnit/ClassInfoDictionary.cs b/src/AudioUnit/ClassInfoDictionary.cs
index 51e2593dc549..4f07df43ec3d 100644
--- a/src/AudioUnit/ClassInfoDictionary.cs
+++ b/src/AudioUnit/ClassInfoDictionary.cs
@@ -64,6 +64,9 @@ public ClassInfoDictionary (NSDictionary? dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioComponentManufacturerType? Manufacturer {
get {
using (var key = new NSString (ManufacturerKey))
@@ -71,12 +74,18 @@ public AudioComponentManufacturerType? Manufacturer {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get {
return GetStringValue (NameKey);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public AudioComponentType? Type {
get {
using (var key = new NSString (TypeKey))
diff --git a/src/AudioUnit/ExtAudioFile.cs b/src/AudioUnit/ExtAudioFile.cs
index 06d154f43695..989960e05dea 100644
--- a/src/AudioUnit/ExtAudioFile.cs
+++ b/src/AudioUnit/ExtAudioFile.cs
@@ -45,27 +45,47 @@
namespace AudioUnit {
public enum ExtAudioFileError // Implictly cast to OSType
{
+ /// To be added.
OK = 0,
+ /// To be added.
CodecUnavailableInputConsumed = -66559,
+ /// To be added.
CodecUnavailableInputNotConsumed = -66560,
+ /// To be added.
InvalidProperty = -66561,
+ /// To be added.
InvalidPropertySize = -66562,
+ /// To be added.
NonPCMClientFormat = -66563,
+ /// To be added.
InvalidChannelMap = -66564,
+ /// To be added.
InvalidOperationOrder = -66565,
+ /// To be added.
InvalidDataFormat = -66566,
+ /// To be added.
MaxPacketSizeUnknown = -66567,
+ /// To be added.
InvalidSeek = -66568,
+ /// To be added.
AsyncWriteTooLarge = -66569,
+ /// To be added.
AsyncWriteBufferOverflow = -66570,
// Shared error codes
+ /// To be added.
NotOpenError = -38,
+ /// To be added.
EndOfFileError = -39,
+ /// To be added.
PositionError = -40,
+ /// To be added.
FileNotFoundError = -43,
+ /// To be added.
BadFilePathError = 0x21707468, // '!pth'
+ /// To be added.
FilePermissionError = -54,
+ /// To be added.
TooManyFilesOpenError = -42,
}
@@ -78,6 +98,11 @@ public enum ExtAudioFileError // Implictly cast to OSType
public class ExtAudioFile : IDisposable {
IntPtr _extAudioFile;
+ /// The client data format's maximum packet size in bytes.
+ ///
+ ///
+ ///
+ ///
public uint? ClientMaxPacketSize {
get {
uint size = sizeof (uint);
@@ -91,6 +116,11 @@ public uint? ClientMaxPacketSize {
}
}
+ /// The file data format's maximum packet size in bytes.
+ ///
+ ///
+ ///
+ ///
public uint? FileMaxPacketSize {
get {
uint size = sizeof (uint);
@@ -106,6 +136,11 @@ public uint? FileMaxPacketSize {
}
+ /// The underlying AudioFile.
+ ///
+ ///
+ ///
+ ///
public IntPtr? AudioFile {
get {
uint size = (uint) IntPtr.Size;
@@ -120,6 +155,10 @@ public IntPtr? AudioFile {
}
}
+ /// Returns underlying instance.
+ ///
+ ///
+ /// AudioConverter changes are not propagated automatically. After changing any property method has to be called to synchronize the converter output format with the file data format.
public AudioConverter? AudioConverter {
get {
uint size = sizeof (uint);
@@ -134,6 +173,11 @@ public AudioConverter? AudioConverter {
}
}
+ /// The file's length in sample frames.
+ ///
+ ///
+ ///
+ ///
public long FileLengthFrames {
get {
long length;
@@ -150,6 +194,11 @@ public long FileLengthFrames {
}
}
+ /// The file's actual data format.
+ ///
+ ///
+ ///
+ ///
public AudioStreamBasicDescription FileDataFormat {
get {
AudioStreamBasicDescription dc = new AudioStreamBasicDescription ();
@@ -165,6 +214,10 @@ public AudioStreamBasicDescription FileDataFormat {
}
}
+ /// Specified the format of linear PCM.
+ ///
+ ///
+ /// The property has to be set when encoding or decoding a non-PCM file data format.
public AudioStreamBasicDescription ClientDataFormat {
get {
uint size = (uint) Marshal.SizeOf ();
diff --git a/src/BusinessChat/Enums.cs b/src/BusinessChat/Enums.cs
index 46a0c5ca0fc4..d078613e7549 100644
--- a/src/BusinessChat/Enums.cs
+++ b/src/BusinessChat/Enums.cs
@@ -8,7 +8,9 @@ namespace BusinessChat {
[MacCatalyst (13, 1)]
[Native]
public enum BCChatButtonStyle : long {
+ /// To be added.
Light = 0,
+ /// To be added.
Dark,
}
@@ -18,12 +20,15 @@ public enum BCChatButtonStyle : long {
[Deprecated (PlatformName.MacCatalyst, 16, 2)]
public enum BCParameterName {
+ /// To be added.
[Field ("BCParameterNameIntent")]
Intent,
+ /// To be added.
[Field ("BCParameterNameGroup")]
Group,
+ /// To be added.
[Field ("BCParameterNameBody")]
Body,
}
diff --git a/src/Compression/Compression.cs b/src/Compression/Compression.cs
index 116ab06d11bb..6431347dee7f 100644
--- a/src/Compression/Compression.cs
+++ b/src/Compression/Compression.cs
@@ -135,8 +135,18 @@ private void EnsureBufferInitialized ()
}
}
+ /// A stream object that represents the underlying stream.
+ /// To be added.
+ /// To be added.
+ ///
+ /// The underlying stream is closed.
+ ///
public Stream? BaseStream => _stream;
+ /// Gets a value indicating whether the stream supports reading while decompressing a file.
+ ///
+ /// if the CompressionMode value is Decompress, and the underlying stream is opened and supports reading; otherwise, .
+ /// To be added.
public override bool CanRead {
get {
if (_stream is null) {
@@ -147,6 +157,10 @@ public override bool CanRead {
}
}
+ /// Gets a value indicating whether the stream supports writing.
+ ///
+ /// if the CompressionMode value is Compress, and the underlying stream supports writing and is not closed; otherwise, .
+ /// To be added.
public override bool CanWrite {
get {
if (_stream is null) {
@@ -157,12 +171,22 @@ public override bool CanWrite {
}
}
+ /// Gets a value indicating whether the stream supports seeking.
+ ///
+ /// in all cases.
+ /// To be added.
public override bool CanSeek => false;
+ /// Gets the length in bytes of the stream.
+ /// A long value representing the length of the stream in bytes.
+ /// To be added.
public override long Length {
get { throw new NotSupportedException ("This operation is not supported."); }
}
+ /// This property is not supported and always throws a NotSupportedException.
+ /// To be added.
+ /// To be added.
public override long Position {
get { throw new NotSupportedException ("This operation is not supported."); }
set { throw new NotSupportedException ("This operation is not supported."); }
diff --git a/src/CoreAnimation/CADefs.cs b/src/CoreAnimation/CADefs.cs
index f066092e1319..e223c8690292 100644
--- a/src/CoreAnimation/CADefs.cs
+++ b/src/CoreAnimation/CADefs.cs
@@ -59,6 +59,9 @@ public CGColor CreateColor (IntPtr p)
return new CGColor (p, false);
}
+ /// An array of colors defining the gradient. These values can be animated.
+ /// To be added.
+ /// To be added.
public CGColor [] Colors {
get {
return NSArray.ArrayFromHandle (_Colors, CreateColor);
diff --git a/src/CoreAnimation/CAEnums.cs b/src/CoreAnimation/CAEnums.cs
index d306243d697b..1ea4c508506b 100644
--- a/src/CoreAnimation/CAEnums.cs
+++ b/src/CoreAnimation/CAEnums.cs
@@ -42,12 +42,19 @@ namespace CoreAnimation {
/// Flags used to determine what side of a layer should be antialiased.
[Flags]
public enum CAEdgeAntialiasingMask : uint {
+ /// Left side of the layer is antialiased.
LeftEdge = 1 << 0,
+ /// Right side of the layer is antialiased.
RightEdge = 1 << 1,
+ /// Bottom side of the layer is antialiased.
BottomEdge = 1 << 2,
+ /// Top side of the layer is antialiased.
TopEdge = 1 << 3,
+ /// All sides of the layer are antialiased.
All = LeftEdge | RightEdge | BottomEdge | TopEdge,
+ /// Left and right sides of the layer are antialiased.
LeftRightEdges = LeftEdge | RightEdge,
+ /// Top and bottom side of the layer are antialiased.
TopBottomEdges = TopEdge | BottomEdge
}
@@ -55,9 +62,13 @@ public enum CAEdgeAntialiasingMask : uint {
[Native]
[Flags]
public enum CACornerMask : ulong {
+ /// To be added.
MinXMinYCorner = 1 << 0,
+ /// To be added.
MaxXMinYCorner = 1 << 1,
+ /// To be added.
MinXMaxYCorner = 1 << 2,
+ /// To be added.
MaxXMaxYCorner = 1 << 3,
}
@@ -68,12 +79,19 @@ public enum CACornerMask : ulong {
[NoTV]
[MacCatalyst (13, 1)]
public enum CAAutoresizingMask : uint {
+ /// To be added.
NotSizable = 0,
+ /// To be added.
MinXMargin = 1 << 0,
+ /// To be added.
WidthSizable = 1 << 1,
+ /// To be added.
MaxXMargin = 1 << 2,
+ /// To be added.
MinYMargin = 1 << 3,
+ /// To be added.
HeightSizable = 1 << 4,
+ /// To be added.
MaxYMargin = 1 << 5
}
@@ -82,13 +100,21 @@ public enum CAAutoresizingMask : uint {
[NoTV]
[MacCatalyst (13, 1)]
public enum CAConstraintAttribute {
+ /// To be added.
MinX,
+ /// To be added.
MidX,
+ /// To be added.
MaxX,
+ /// To be added.
Width,
+ /// To be added.
MinY,
+ /// To be added.
MidY,
+ /// To be added.
MaxY,
+ /// To be added.
Height,
};
}
diff --git a/src/CoreAnimation/CAKeyFrameAnimation.cs b/src/CoreAnimation/CAKeyFrameAnimation.cs
index 71e1ed578f29..594676bee66a 100644
--- a/src/CoreAnimation/CAKeyFrameAnimation.cs
+++ b/src/CoreAnimation/CAKeyFrameAnimation.cs
@@ -22,6 +22,9 @@ public void SetValues (INativeObject [] value)
// or some other trickery. Our NSString -> C# string -> NSString conversions
// were breaking this on the Mac. We look up the equivilant NSString and pass that
// along to "fix" this
+ /// To be added.
+ /// To be added.
+ /// To be added.
public virtual string CalculationMode {
get {
return _CalculationMode;
diff --git a/src/CoreAnimation/CALayer.cs b/src/CoreAnimation/CALayer.cs
index 6dd4279ce8aa..540b350cca9d 100644
--- a/src/CoreAnimation/CALayer.cs
+++ b/src/CoreAnimation/CALayer.cs
@@ -136,6 +136,9 @@ public virtual CAAutoresizingMask AutoresizinMask {
}
#endif
#if NET
+ /// Gets the contents format for the layer.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
diff --git a/src/CoreAnimation/CATextLayer.cs b/src/CoreAnimation/CATextLayer.cs
index 40a377a5ef8f..98ae3568c4c8 100644
--- a/src/CoreAnimation/CATextLayer.cs
+++ b/src/CoreAnimation/CATextLayer.cs
@@ -45,6 +45,28 @@ namespace CoreAnimation {
public partial class CATextLayer {
+ /// Sets the attributed string to display.
+ ///
+ ///
+ ///
+ ///
+ /// This sets the attributed string to display on the layer. The attributed string should contain CoreText attributes.
+ ///
+ ///
+ ///
+ ///
+ ///
public NSAttributedString? AttributedString {
get {
return Runtime.GetNSObject (_AttributedString) as NSAttributedString;
@@ -85,6 +107,9 @@ public void SetFont (NSFont font)
}
#endif
+ /// Gets or sets a weak reference to the font.
+ /// To be added.
+ /// To be added.
public object? WeakFont {
get {
var handle = _Font;
@@ -146,11 +171,17 @@ public virtual string AlignmentMode {
set { WeakAlignmentMode = (NSString) value; }
}
#endif // !NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CATextLayerTruncationMode TextTruncationMode {
get { return CATextLayerTruncationModeExtensions.GetValue (WeakTruncationMode); }
set { WeakTruncationMode = value.GetConstant ()!; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CATextLayerAlignmentMode TextAlignmentMode {
get { return CATextLayerAlignmentModeExtensions.GetValue (WeakAlignmentMode); }
set { WeakAlignmentMode = value.GetConstant ()!; }
diff --git a/src/CoreAnimation/CATransform3D.cs b/src/CoreAnimation/CATransform3D.cs
index a9608e3f0cfe..0162cb872c65 100644
--- a/src/CoreAnimation/CATransform3D.cs
+++ b/src/CoreAnimation/CATransform3D.cs
@@ -96,6 +96,8 @@ public struct CATransform3D {
public nfloat M44 { get => m44; set => m44 = value; }
#endif
+ /// To be added.
+ /// To be added.
static public readonly CATransform3D Identity;
static CATransform3D ()
@@ -111,6 +113,9 @@ static CATransform3D ()
[DllImport (Constants.QuartzLibrary)]
extern static byte CATransform3DIsIdentity (CATransform3D t);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsIdentity {
get {
return CATransform3DIsIdentity (this) != 0;
@@ -254,6 +259,9 @@ public CATransform3D Invert ()
[DllImport (Constants.QuartzLibrary)]
extern static byte CATransform3DIsAffine (CATransform3D t);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsAffine {
get {
return CATransform3DIsAffine (this) != 0;
diff --git a/src/CoreBluetooth/AdvertisementDataOptions.cs b/src/CoreBluetooth/AdvertisementDataOptions.cs
index 3e38909e3b32..5e9d97c04185 100644
--- a/src/CoreBluetooth/AdvertisementDataOptions.cs
+++ b/src/CoreBluetooth/AdvertisementDataOptions.cs
@@ -57,6 +57,10 @@ public StartAdvertisingOptions (NSDictionary dictionary)
{
}
+ /// Represents the local name of a peripheral
+ ///
+ ///
+ /// The property uses constant CBAdvertisementDataLocalNameKey value to access the underlying dictionary.
public string? LocalName {
set {
SetStringValue (CBAdvertisement.DataLocalNameKey, value);
@@ -66,6 +70,10 @@ public string? LocalName {
}
}
+ /// One or more objects.
+ ///
+ ///
+ /// The property uses constant CBAdvertisementDataServiceUUIDsKey value to access the underlying dictionary.
public CBUUID []? ServicesUUID {
get {
return GetArray (CBAdvertisement.DataServiceUUIDsKey);
diff --git a/src/CoreBluetooth/Enums.cs b/src/CoreBluetooth/Enums.cs
index 562023623139..97bbd7c80f08 100644
--- a/src/CoreBluetooth/Enums.cs
+++ b/src/CoreBluetooth/Enums.cs
@@ -61,9 +61,13 @@ public enum CBPeripheralManagerState : long {
[MacCatalyst (13, 1)]
[Native]
public enum CBPeripheralState : long {
+ /// Indicates that the peripheral is not connected.
Disconnected,
+ /// Indicates that the peripheral is connecting.
Connecting,
+ /// Indicates that the peripheral is connected.
Connected,
+ /// Indicates that the peripheral is disconnecting.
[MacCatalyst (13, 1)]
Disconnecting,
}
@@ -131,23 +135,41 @@ public enum CBError : long {
[ErrorDomain ("CBATTErrorDomain")]
[Native] // NSInteger -> CBError.h
public enum CBATTError : long {
+ /// To be added.
Success = 0,
+ /// To be added.
InvalidHandle,
+ /// To be added.
ReadNotPermitted,
+ /// To be added.
WriteNotPermitted,
+ /// To be added.
InvalidPdu,
+ /// To be added.
InsufficientAuthentication,
+ /// To be added.
RequestNotSupported,
+ /// To be added.
InvalidOffset,
+ /// To be added.
InsufficientAuthorization,
+ /// To be added.
PrepareQueueFull,
+ /// To be added.
AttributeNotFound,
+ /// To be added.
AttributeNotLong,
+ /// To be added.
InsufficientEncryptionKeySize,
+ /// To be added.
InvalidAttributeValueLength,
+ /// To be added.
UnlikelyError,
+ /// To be added.
InsufficientEncryption,
+ /// To be added.
UnsupportedGroupType,
+ /// To be added.
InsufficientResources
}
@@ -177,8 +199,11 @@ public enum CBAttributePermissions : ulong {
[MacCatalyst (13, 1)]
[Native]
public enum CBPeripheralManagerConnectionLatency : long {
+ /// To be added.
Low = 0,
+ /// To be added.
Medium,
+ /// To be added.
High
}
diff --git a/src/CoreBluetooth/PeripheralConnectionOptions.cs b/src/CoreBluetooth/PeripheralConnectionOptions.cs
index 4c7237fa0b01..d100091ed491 100644
--- a/src/CoreBluetooth/PeripheralConnectionOptions.cs
+++ b/src/CoreBluetooth/PeripheralConnectionOptions.cs
@@ -54,6 +54,9 @@ public PeripheralConnectionOptions (NSDictionary dictionary)
}
#if !MONOMAC
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool? NotifyOnConnection {
get {
return GetBoolValue (CBConnectPeripheralOptionsKeys.NotifyOnConnectionKey);
@@ -68,6 +71,9 @@ public bool? NotifyOnConnection {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool? NotifyOnNotification {
get {
return GetBoolValue (CBConnectPeripheralOptionsKeys.NotifyOnNotificationKey);
@@ -85,6 +91,9 @@ public bool? NotifyOnNotification {
}
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool? NotifyOnDisconnection {
get {
return GetBoolValue (CBConnectPeripheralOptionsKeys.NotifyOnDisconnectionKey);
diff --git a/src/CoreBluetooth/PeripheralScanningOptions.cs b/src/CoreBluetooth/PeripheralScanningOptions.cs
index 2871621b1dae..bebe62a18ed3 100644
--- a/src/CoreBluetooth/PeripheralScanningOptions.cs
+++ b/src/CoreBluetooth/PeripheralScanningOptions.cs
@@ -37,6 +37,9 @@ namespace CoreBluetooth {
public partial class PeripheralScanningOptions {
#if !COREBUILD
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool AllowDuplicatesKey {
get {
var value = GetBoolValue (CBCentralManager.ScanOptionAllowDuplicatesKey);
diff --git a/src/CoreData/Enums.cs b/src/CoreData/Enums.cs
index 18469c4a6e4d..339f7d132c91 100644
--- a/src/CoreData/Enums.cs
+++ b/src/CoreData/Enums.cs
@@ -32,11 +32,17 @@ namespace CoreData {
/// Enumerates specific types of entity mapping.
[Native]
public enum NSEntityMappingType : ulong {
+ /// To be added.
Undefined = 0x00,
+ /// To be added.
Custom = 0x01,
+ /// To be added.
Add = 0x02,
+ /// To be added.
Remove = 0x03,
+ /// To be added.
Copy = 0x04,
+ /// To be added.
Transform = 0x05,
}
@@ -44,22 +50,37 @@ public enum NSEntityMappingType : ulong {
/// An enumeration whose values define the valid types for objects.
[Native]
public enum NSAttributeType : ulong {
+ /// Indicates an undefined type.
Undefined = 0,
+ /// Indicates a signed 16-bit integer.
Integer16 = 100,
+ /// Indicates a signed 32-bit integer..
Integer32 = 200,
+ /// Indicates a signed 64-bit integer.
Integer64 = 300,
+ /// Indicates an NSDecimalNumber.
Decimal = 400,
+ /// Indicates a double.
Double = 500,
+ /// Indicates a float.
Float = 600,
+ /// Indicates an NSString.
String = 700,
+ /// Indicates a Boolean value
Boolean = 800,
+ /// Indicates an NSDate.
Date = 900,
+ /// Indicates NSData.
Binary = 1000,
+ /// Indicates a UUID.
[MacCatalyst (13, 1)]
Uuid = 1100,
+ /// Indicates a URI.
[MacCatalyst (13, 1)]
Uri = 1200,
+ /// Indicates a type with an available transformer.
Transformable = 1800,
+ /// Indicates an Object ID.
ObjectID = 2000,
[TV (17, 0), Mac (14, 0), iOS (17, 0), MacCatalyst (17, 0)]
CompositeAttributeType = 2100,
@@ -70,9 +91,13 @@ public enum NSAttributeType : ulong {
[Flags]
[Native]
public enum NSFetchRequestResultType : ulong {
+ /// To be added.
ManagedObject = 0x00,
+ /// To be added.
ManagedObjectID = 0x01,
+ /// To be added.
DictionaryResultType = 0x02,
+ /// To be added.
NSCountResultType = 0x04,
}
@@ -113,10 +138,15 @@ public enum NSManagedObjectContextConcurrencyType : ulong {
/// Enumerates policies for merging.
[Native]
public enum NSMergePolicyType : ulong {
+ /// To be added.
Error,
+ /// To be added.
PropertyStoreTrump,
+ /// To be added.
PropertyObjectTrump,
+ /// To be added.
Overwrite,
+ /// To be added.
RollbackMerge,
}
@@ -124,17 +154,24 @@ public enum NSMergePolicyType : ulong {
/// Enumerates kinds of batch requests.
[Native]
public enum NSFetchedResultsChangeType : ulong {
+ /// To be added.
Insert = 1,
+ /// To be added.
Delete = 2,
+ /// To be added.
Move = 3,
+ /// To be added.
Update = 4,
}
/// Enumerates the kind of results that can be returned from a batched update request.
[Native]
public enum NSBatchUpdateRequestResultType : ulong {
+ /// To be added.
StatusOnly = 0,
+ /// To be added.
UpdatedObjectIDs = 1,
+ /// To be added.
UpdatedObjectsCount = 2,
}
@@ -142,8 +179,11 @@ public enum NSBatchUpdateRequestResultType : ulong {
[MacCatalyst (13, 1)]
[Native]
public enum NSBatchDeleteRequestResultType : ulong {
+ /// To be added.
StatusOnly = 0,
+ /// To be added.
ObjectIDs = 1,
+ /// To be added.
Count = 2,
}
@@ -196,15 +236,25 @@ public enum PersistentStoreErrorType : ulong {
/// Enumerates error codes that can be encountered while migrating stores.
[Native]
public enum MigrationErrorType {
+ /// An unspecified error occurred.
Migration = 134110,
+ /// The migration was canceled.
MigrationCancelled = 134120,
+ /// The source data model was missing.
MigrationMissingSourceModel = 134130,
+ /// The mapping model was missing.
MigrationMissingMappingModel = 134140,
+ /// There was a problem with the source store.
MigrationManagerSourceStore = 134150,
+ /// There was a problem with the destination store.
MigrationManagerDestinationStore = 134160,
+ /// An error occurred while processing an entity migration policy.
EntityMigrationPolicy = 134170,
+ /// An error occurred while creating an inferred mapping model.
InferredMappingModel = 134190,
+ /// An error occurred while importing an external record.
ExternalRecordImport = 134200,
+ /// To be added.
[MacCatalyst (13, 1)]
HistoryTokenExpired = 134301,
}
@@ -213,7 +263,9 @@ public enum MigrationErrorType {
[MacCatalyst (13, 1)]
[Native]
public enum NSFetchIndexElementType : ulong {
+ /// Indicates indices into a binary tree.
Binary,
+ /// Indicates indices into an R-tree.
RTree,
}
diff --git a/src/CoreData/NSEntityDescription.cs b/src/CoreData/NSEntityDescription.cs
index f77413f6edc7..759e1ec02d62 100644
--- a/src/CoreData/NSEntityDescription.cs
+++ b/src/CoreData/NSEntityDescription.cs
@@ -14,6 +14,9 @@
namespace CoreData {
public partial class NSEntityDescription {
#if NET
+ /// Gets or sets the uniqueness constraints for this entity.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
diff --git a/src/CoreFoundation/Architecture.cs b/src/CoreFoundation/Architecture.cs
index ccf85ec51a98..15512953cdf5 100644
--- a/src/CoreFoundation/Architecture.cs
+++ b/src/CoreFoundation/Architecture.cs
@@ -18,11 +18,17 @@ public partial class CFBundle {
// #define CPU_TYPE_POWERPC ((cpu_type_t) 18)
// #define CPU_TYPE_POWERPC64 (CPU_TYPE_POWERPC | CPU_ARCH_ABI64)
public enum Architecture {
+ /// To be added.
I386 = 0x00000007,
+ /// To be added.
X86_64 = 0x01000007,
+ /// To be added.
ARM = 0x0000000c,
+ /// To be added.
ARM64 = 0x01000000 | ARM,
+ /// To be added.
PPC = 0x00000012,
+ /// To be added.
PPC64 = 0x01000000 | PPC,
}
}
diff --git a/src/CoreFoundation/CFAllocator.cs b/src/CoreFoundation/CFAllocator.cs
index f27a75a90592..4437f68d82c7 100644
--- a/src/CoreFoundation/CFAllocator.cs
+++ b/src/CoreFoundation/CFAllocator.cs
@@ -34,10 +34,6 @@
using Foundation;
using ObjCRuntime;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
// CFBase.h
@@ -50,49 +46,52 @@ public partial class CFAllocator : NativeObject {
static CFAllocator? Null_cf;
#endif
-#if !NET
- [Obsolete ("Use the overload that takes a 'bool owns' parameter instead.")]
- public CFAllocator (NativeHandle handle)
- : base (handle, true /* backwards compatibility means we have to pass true here as opposed to the general pattern */)
- {
- }
-#endif
-
[Preserve (Conditional = true)]
-#if NET
internal CFAllocator (NativeHandle handle, bool owns)
-#else
- public CFAllocator (NativeHandle handle, bool owns)
-#endif
: base (handle, owns)
{
}
#if !COREBUILD
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static CFAllocator Default {
get {
return Default_cf ?? (Default_cf = new CFAllocator (default_ptr, false));
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static CFAllocator SystemDefault {
get {
return SystemDefault_cf ?? (SystemDefault_cf = new CFAllocator (system_default_ptr, false));
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static CFAllocator Malloc {
get {
return Malloc_cf ?? (Malloc_cf = new CFAllocator (malloc_ptr, false));
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static CFAllocator MallocZone {
get {
return MallocZone_cf ?? (MallocZone_cf = new CFAllocator (malloc_zone_ptr, false));
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static CFAllocator Null {
get {
return Null_cf ?? (Null_cf = new CFAllocator (null_ptr, false));
diff --git a/src/CoreFoundation/CFArray.cs b/src/CoreFoundation/CFArray.cs
index 3f0ec3c5bf08..cb9088575bb2 100644
--- a/src/CoreFoundation/CFArray.cs
+++ b/src/CoreFoundation/CFArray.cs
@@ -34,20 +34,12 @@
using Foundation;
using ObjCRuntime;
-#if NET
using CFIndex = System.IntPtr;
-#else
-using CFIndex = System.nint;
-#endif
using CFArrayRef = System.IntPtr;
using CFAllocatorRef = System.IntPtr;
#nullable enable
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
// interesting bits: https://github.com/opensource-apple/CF/blob/master/CFArray.c
@@ -56,13 +48,6 @@ public partial class CFArray : NativeObject {
// this cache the handle instead of issuing a native call
internal static NativeHandle CFNullHandle = _CFNullHandle;
-#if !NET
- internal CFArray (NativeHandle handle)
- : base (handle, false)
- {
- }
-#endif
-
[Preserve (Conditional = true)]
internal CFArray (NativeHandle handle, bool owns)
: base (handle, owns)
diff --git a/src/CoreFoundation/CFBoolean.cs b/src/CoreFoundation/CFBoolean.cs
index 33c7ba30037c..508be6d3387f 100644
--- a/src/CoreFoundation/CFBoolean.cs
+++ b/src/CoreFoundation/CFBoolean.cs
@@ -35,19 +35,13 @@
using ObjCRuntime;
using Foundation;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
// CFNumber.h
partial class CFBoolean : NativeObject {
[Preserve (Conditional = true)]
diff --git a/src/CoreFoundation/CFBundle.cs b/src/CoreFoundation/CFBundle.cs
index 83cca863efd9..61029f529c88 100644
--- a/src/CoreFoundation/CFBundle.cs
+++ b/src/CoreFoundation/CFBundle.cs
@@ -11,26 +11,23 @@
using CoreFoundation;
using Foundation;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
public partial class CFBundle : NativeObject {
public enum PackageType {
+ /// To be added.
Application,
+ /// To be added.
Framework,
+ /// To be added.
Bundle
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public struct PackageInfo {
public PackageInfo (CFBundle.PackageType type, string creator)
{
@@ -38,7 +35,13 @@ public PackageInfo (CFBundle.PackageType type, string creator)
this.Creator = creator;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public PackageType Type { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string Creator { get; private set; }
}
@@ -138,6 +141,9 @@ public CFBundle (NSUrl bundleUrl)
[DllImport (Constants.CoreFoundationLibrary)]
extern static byte CFBundleIsExecutableLoaded (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool HasLoadedExecutable {
get { return CFBundleIsExecutableLoaded (Handle) != 0; }
}
@@ -200,6 +206,9 @@ public void UnloadExecutable ()
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFUrlRef */ IntPtr CFBundleCopyBuiltInPlugInsURL (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSUrl? BuiltInPlugInsUrl {
get {
return Runtime.GetNSObject (CFBundleCopyBuiltInPlugInsURL (Handle), true);
@@ -209,6 +218,9 @@ public NSUrl? BuiltInPlugInsUrl {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFUrlRef */ IntPtr CFBundleCopyExecutableURL (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSUrl? ExecutableUrl {
get {
return Runtime.GetNSObject (CFBundleCopyExecutableURL (Handle), true);
@@ -218,6 +230,9 @@ public NSUrl? ExecutableUrl {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFUrlRef */ IntPtr CFBundleCopyPrivateFrameworksURL (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSUrl? PrivateFrameworksUrl {
get {
return Runtime.GetNSObject (CFBundleCopyPrivateFrameworksURL (Handle), true);
@@ -227,6 +242,9 @@ public NSUrl? PrivateFrameworksUrl {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFUrlRef */ IntPtr CFBundleCopyResourcesDirectoryURL (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSUrl? ResourcesDirectoryUrl {
get {
return Runtime.GetNSObject (CFBundleCopyResourcesDirectoryURL (Handle), true);
@@ -236,6 +254,9 @@ public NSUrl? ResourcesDirectoryUrl {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFUrlRef */ IntPtr CFBundleCopySharedFrameworksURL (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSUrl? SharedFrameworksUrl {
get {
return Runtime.GetNSObject (CFBundleCopySharedFrameworksURL (Handle), true);
@@ -245,6 +266,9 @@ public NSUrl? SharedFrameworksUrl {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFUrlRef */ IntPtr CFBundleCopySharedSupportURL (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSUrl? SharedSupportUrl {
get {
return Runtime.GetNSObject (CFBundleCopySharedSupportURL (Handle), true);
@@ -254,6 +278,9 @@ public NSUrl? SharedSupportUrl {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFUrlRef */ IntPtr CFBundleCopySupportFilesDirectoryURL (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSUrl? SupportFilesDirectoryUrl {
get {
return Runtime.GetNSObject (CFBundleCopySupportFilesDirectoryURL (Handle), true);
@@ -496,6 +523,9 @@ public NSUrl? SupportFilesDirectoryUrl {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFUrlRef */ IntPtr CFBundleCopyBundleURL (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSUrl? Url {
get {
return Runtime.GetNSObject (CFBundleCopyBundleURL (Handle), true);
@@ -505,6 +535,9 @@ public NSUrl? Url {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFString */ IntPtr CFBundleGetDevelopmentRegion (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DevelopmentRegion {
get { return CFString.FromHandle (CFBundleGetDevelopmentRegion (Handle)); }
}
@@ -512,6 +545,9 @@ public string? DevelopmentRegion {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFString */ IntPtr CFBundleGetIdentifier (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Identifier {
get { return CFString.FromHandle (CFBundleGetIdentifier (Handle)); }
}
@@ -519,6 +555,9 @@ public string? Identifier {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFDictionary */ IntPtr CFBundleGetInfoDictionary (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary? InfoDictionary {
get {
// follows the Get rule, we need to retain
@@ -529,6 +568,9 @@ public NSDictionary? InfoDictionary {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* NSDictionary */ IntPtr CFBundleGetLocalInfoDictionary (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary? LocalInfoDictionary {
get {
// follows the Get rule, we need to retain
@@ -554,6 +596,9 @@ public NSDictionary? LocalInfoDictionary {
[DllImport (Constants.CoreFoundationLibrary)]
unsafe extern static void CFBundleGetPackageInfo (IntPtr bundle, uint* packageType, uint* packageCreator);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public PackageInfo Info {
get {
uint type = 0;
@@ -578,6 +623,9 @@ public PackageInfo Info {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFArray */ IntPtr CFBundleCopyExecutableArchitectures (IntPtr bundle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CFBundle.Architecture []? Architectures {
get {
var rv = CFBundleCopyExecutableArchitectures (Handle);
@@ -596,21 +644,13 @@ public CFBundle.Architecture []? Architectures {
}
#if MONOMAC
-#if NET
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
-#else
- [NoMacCatalyst]
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
extern static byte CFBundleIsExecutableLoadable (IntPtr bundle);
-#if NET
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
-#else
- [NoMacCatalyst]
-#endif
public static bool IsExecutableLoadable (CFBundle bundle)
{
if (bundle is null)
@@ -619,21 +659,13 @@ public static bool IsExecutableLoadable (CFBundle bundle)
return CFBundleIsExecutableLoadable (bundle.GetCheckedHandle ()) != 0;
}
-#if NET
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
-#else
- [NoMacCatalyst]
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
extern static byte CFBundleIsExecutableLoadableForURL (IntPtr bundle);
-#if NET
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
-#else
- [NoMacCatalyst]
-#endif
public static bool IsExecutableLoadable (NSUrl url)
{
if (url is null)
@@ -642,21 +674,13 @@ public static bool IsExecutableLoadable (NSUrl url)
return CFBundleIsExecutableLoadableForURL (url.Handle) != 0;
}
-#if NET
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
-#else
- [NoMacCatalyst]
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
extern static byte CFBundleIsArchitectureLoadable (/*cpu_type_t => integer_t => int*/ Architecture architecture);
-#if NET
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("maccatalyst")]
-#else
- [NoMacCatalyst]
-#endif
public static bool IsArchitectureLoadable (Architecture architecture) => CFBundleIsArchitectureLoadable (architecture) != 0;
#endif
diff --git a/src/CoreFoundation/CFData.cs b/src/CoreFoundation/CFData.cs
index bb704faeced3..9526118b7229 100644
--- a/src/CoreFoundation/CFData.cs
+++ b/src/CoreFoundation/CFData.cs
@@ -33,10 +33,6 @@
using Foundation;
using ObjCRuntime;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
class CFData : NativeObject {
diff --git a/src/CoreFoundation/CFDictionary.cs b/src/CoreFoundation/CFDictionary.cs
index 029aa634b124..5fba903d734e 100644
--- a/src/CoreFoundation/CFDictionary.cs
+++ b/src/CoreFoundation/CFDictionary.cs
@@ -35,10 +35,6 @@
using Foundation;
using ObjCRuntime;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
class CFDictionary : NativeObject {
diff --git a/src/CoreFoundation/CFException.cs b/src/CoreFoundation/CFException.cs
index 241831199a58..4e770a0ac707 100644
--- a/src/CoreFoundation/CFException.cs
+++ b/src/CoreFoundation/CFException.cs
@@ -37,17 +37,23 @@
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public static class CFErrorDomain {
+ /// To be added.
+ /// To be added.
public static readonly NSString? Cocoa;
+ /// To be added.
+ /// To be added.
public static readonly NSString? Mach;
+ /// To be added.
+ /// To be added.
public static readonly NSString? OSStatus;
+ /// To be added.
+ /// To be added.
public static readonly NSString? Posix;
static CFErrorDomain ()
@@ -60,18 +66,26 @@ static CFErrorDomain ()
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public static class CFExceptionDataKey {
+ /// To be added.
+ /// To be added.
public static readonly NSString? Description;
+ /// To be added.
+ /// To be added.
public static readonly NSString? LocalizedDescription;
+ /// To be added.
+ /// To be added.
public static readonly NSString? LocalizedFailureReason;
+ /// To be added.
+ /// To be added.
public static readonly NSString? LocalizedRecoverySuggestion;
+ /// To be added.
+ /// To be added.
public static readonly NSString? UnderlyingError;
static CFExceptionDataKey ()
@@ -85,12 +99,10 @@ static CFExceptionDataKey ()
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFException : Exception {
public CFException (string? description, NSString? domain, nint code, string? failureReason, string? recoverySuggestion)
@@ -133,9 +145,22 @@ public static CFException FromCFError (IntPtr cfErrorHandle, bool release)
return e;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint Code { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ ///
public NSString? Domain { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? FailureReason { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? RecoverySuggestion { get; private set; }
[DllImport (Constants.CoreFoundationLibrary)]
diff --git a/src/CoreFoundation/CFMachPort.cs b/src/CoreFoundation/CFMachPort.cs
index 99e04d7866ff..333126f30113 100644
--- a/src/CoreFoundation/CFMachPort.cs
+++ b/src/CoreFoundation/CFMachPort.cs
@@ -16,10 +16,6 @@
using Foundation;
using ObjCRuntime;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
#if false
@@ -42,18 +38,8 @@ internal public struct CFMachPortContext {
public class CFMachPort : NativeObject {
delegate void CFMachPortCallBack (IntPtr cfmachport, IntPtr msg, nint len, IntPtr context);
-#if !NET
- public CFMachPort (NativeHandle handle) : base (handle, false)
- {
- }
-#endif
-
[Preserve (Conditional = true)]
-#if NET
internal CFMachPort (NativeHandle handle, bool owns)
-#else
- public CFMachPort (NativeHandle handle, bool owns)
-#endif
: base (handle, owns)
{
}
@@ -61,6 +47,9 @@ public CFMachPort (NativeHandle handle, bool owns)
[DllImport (Constants.CoreFoundationLibrary)]
extern static IntPtr CFMachPortGetPort (IntPtr handle);
+ /// Gets the pointer to the wrapped Mach port instance.
+ /// To be added.
+ /// To be added.
public IntPtr MachPort {
get {
return CFMachPortGetPort (Handle);
@@ -77,6 +66,9 @@ public void Invalidate ()
[DllImport (Constants.CoreFoundationLibrary)]
extern static byte CFMachPortIsValid (IntPtr handle);
+ /// Gets a value that tells whether the port can send and receive messages.
+ /// To be added.
+ /// To be added.
public bool IsValid {
get {
return CFMachPortIsValid (Handle) != 0;
diff --git a/src/CoreFoundation/CFMessagePort.cs b/src/CoreFoundation/CFMessagePort.cs
index 741bbbfabf46..b1a57fffae2c 100644
--- a/src/CoreFoundation/CFMessagePort.cs
+++ b/src/CoreFoundation/CFMessagePort.cs
@@ -19,20 +19,22 @@
using dispatch_queue_t = System.IntPtr;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
// untyped enum from CFMessagePort.h
// used as a return value of type SInt32 (always 4 bytes)
public enum CFMessagePortSendRequestStatus {
+ /// The message was sent, and any expected reply was received.
Success = 0,
+ /// The port timed out before the message could be sent.
SendTimeout = -1,
+ /// The port timed out before the response was received.
ReceiveTimeout = -2,
+ /// The port became invalid before the message was sent.
IsInvalid = -3,
+ /// An error occurred.
TransportError = -4,
+ /// The port became invalid after the message was sent, but before a response was received.
BecameInvalidError = -5
}
@@ -45,62 +47,45 @@ internal class CFMessagePortContext {
public Func? CopyDescription { get; set; }
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFMessagePort : NativeObject {
// CFMessagePortContext
[StructLayout (LayoutKind.Sequential)]
-#if NET
- unsafe
-#endif
- struct ContextProxy {
+ unsafe struct ContextProxy {
/* CFIndex */
nint version; // must be 0
public /* void * */ IntPtr info;
-#if NET
public delegate* unmanaged retain;
public delegate* unmanaged release;
public delegate* unmanaged copyDescription;
-#else
- public /* CFAllocatorRetainCallBack*/ IntPtr retain;
- public /* CFAllocatorReleaseCallBack*/ IntPtr release;
- public /* CFAllocatorCopyDescriptionCallBack*/ IntPtr copyDescription;
-#endif
}
public delegate NSData CFMessagePortCallBack (int type, NSData data);
-#if !NET
- delegate /* CFDataRef */ IntPtr CFMessagePortCallBackProxy (/* CFMessagePortRef */ IntPtr messagePort, /* SInt32 */ int type, /* CFDataRef */ IntPtr data, /* void* */ IntPtr info);
-
- delegate void CFMessagePortInvalidationCallBackProxy (/* CFMessagePortRef */ IntPtr messagePort, /* void * */ IntPtr info);
-#endif
-
static Dictionary outputHandles = new Dictionary (Runtime.IntPtrEqualityComparer);
static Dictionary invalidationHandles = new Dictionary (Runtime.IntPtrEqualityComparer);
static Dictionary messagePortContexts = new Dictionary (Runtime.IntPtrEqualityComparer);
-#if !NET
- static CFMessagePortCallBackProxy messageOutputCallback = new CFMessagePortCallBackProxy (MessagePortCallback);
-
- static CFMessagePortInvalidationCallBackProxy messageInvalidationCallback = new CFMessagePortInvalidationCallBackProxy (MessagePortInvalidationCallback);
-#endif
-
IntPtr contextHandle;
+ /// Returns a Boolean value that indicates whether a current instance of CFMessagePort object represents a remote port.
+ /// Boolean value.
+ /// Property returns true if CFMessagePort is remote.
public bool IsRemote {
get {
return CFMessagePortIsRemote (GetCheckedHandle ()) != 0;
}
}
+ /// The registered name of message port.
+ /// String representation of message port's name.
+ /// Property returns null if port have no name.
public string? Name {
get {
return CFString.FromHandle (CFMessagePortGetName (GetCheckedHandle ()));
@@ -115,6 +100,9 @@ public string? Name {
}
}
+ /// Returns a boolean value that indicates whether a CFMessagePort object is valid.
+ /// Boolean value.
+ /// Property indicates whether message port can send or receive messages.
public bool IsValid {
get {
return CFMessagePortIsValid (GetCheckedHandle ()) != 0;
@@ -139,6 +127,9 @@ internal CFMessagePortContext? Context {
}
}
+ /// Gets or sets the invalidation callback method for a CFMessagePort object.
+ /// Delegate
+ /// Set null value to remove callback. Callback will be fired on message on port invalidation.
public Action? InvalidationCallback {
get {
lock (invalidationHandles) {
@@ -154,13 +145,9 @@ public Action? InvalidationCallback {
invalidationHandles.Add (GetCheckedHandle (), value);
}
-#if NET
unsafe {
CFMessagePortSetInvalidationCallBack (Handle, &MessagePortInvalidationCallback);
}
-#else
- CFMessagePortSetInvalidationCallBack (Handle, messageInvalidationCallback);
-#endif
}
}
@@ -193,13 +180,8 @@ protected override void Dispose (bool disposing)
base.Dispose (disposing);
}
-#if NET
[DllImport (Constants.CoreFoundationLibrary)]
static unsafe extern /* CFMessagePortRef */ IntPtr CFMessagePortCreateLocal (/* CFAllocatorRef */ IntPtr allocator, /* CFStringRef */ IntPtr name, delegate* unmanaged callout, /* CFMessagePortContext */ ContextProxy* context, byte* shouldFreeInfo);
-#else
- [DllImport (Constants.CoreFoundationLibrary)]
- static unsafe extern /* CFMessagePortRef */ IntPtr CFMessagePortCreateLocal (/* CFAllocatorRef */ IntPtr allocator, /* CFStringRef */ IntPtr name, CFMessagePortCallBackProxy callout, /* CFMessagePortContext */ ContextProxy* context, byte* shouldFreeInfo);
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
static extern /* CFMessagePortRef */ IntPtr CFMessagePortCreateRemote (/* CFAllocatorRef */ IntPtr allocator, /* CFStringRef */ IntPtr name);
@@ -231,13 +213,8 @@ protected override void Dispose (bool disposing)
[DllImport (Constants.CoreFoundationLibrary)]
static extern void CFMessagePortSetDispatchQueue (/* CFMessagePortRef */ IntPtr ms, dispatch_queue_t queue);
-#if NET
[DllImport (Constants.CoreFoundationLibrary)]
static unsafe extern void CFMessagePortSetInvalidationCallBack (/* CFMessagePortRef */ IntPtr ms, delegate* unmanaged callout);
-#else
- [DllImport (Constants.CoreFoundationLibrary)]
- static extern void CFMessagePortSetInvalidationCallBack (/* CFMessagePortRef */ IntPtr ms, CFMessagePortInvalidationCallBackProxy callout);
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
static extern IntPtr CFMessagePortGetInvalidationCallBack (/* CFMessagePortRef */ IntPtr ms);
@@ -262,7 +239,6 @@ protected override void Dispose (bool disposing)
var shortHandle = GCHandle.Alloc (contextProxy);
if (context is not null) {
-#if NET
unsafe {
if (context.Retain is not null)
contextProxy.retain = &RetainProxy;
@@ -271,14 +247,6 @@ protected override void Dispose (bool disposing)
if (context.CopyDescription is not null)
contextProxy.copyDescription = &CopyDescriptionProxy;
}
-#else
- if (context.Retain is not null)
- contextProxy.retain = Marshal.GetFunctionPointerForDelegate (RetainProxyDelegate);
- if (context.Release is not null)
- contextProxy.release = Marshal.GetFunctionPointerForDelegate (ReleaseProxyDelegate);
- if (context.CopyDescription is not null)
- contextProxy.copyDescription = Marshal.GetFunctionPointerForDelegate (CopyDescriptionProxyDelegate);
-#endif
contextProxy.info = (IntPtr) shortHandle;
lock (messagePortContexts)
messagePortContexts.Add (contextProxy.info, context);
@@ -287,11 +255,7 @@ protected override void Dispose (bool disposing)
try {
IntPtr portHandle;
unsafe {
-#if NET
portHandle = CFMessagePortCreateLocal (allocator.GetHandle (), n, &MessagePortCallback, &contextProxy, &shouldFreeInfo);
-#else
- portHandle = CFMessagePortCreateLocal (allocator.GetHandle (), n, messageOutputCallback, &contextProxy, &shouldFreeInfo);
-#endif
}
// TODO handle should free info
@@ -327,12 +291,7 @@ protected override void Dispose (bool disposing)
//
// Proxy callbacks
//
-#if NET
[UnmanagedCallersOnly]
-#else
- static Func RetainProxyDelegate = RetainProxy;
- [MonoPInvokeCallback (typeof (Func))]
-#endif
static IntPtr RetainProxy (IntPtr info)
{
INativeObject? result = null;
@@ -348,12 +307,7 @@ static IntPtr RetainProxy (IntPtr info)
return result.GetHandle ();
}
-#if NET
[UnmanagedCallersOnly]
-#else
- static Action ReleaseProxyDelegate = ReleaseProxy;
- [MonoPInvokeCallback (typeof (Action))]
-#endif
static void ReleaseProxy (IntPtr info)
{
CFMessagePortContext? context;
@@ -365,12 +319,7 @@ static void ReleaseProxy (IntPtr info)
context.Release ();
}
-#if NET
[UnmanagedCallersOnly]
-#else
- static Func CopyDescriptionProxyDelegate = CopyDescriptionProxy;
- [MonoPInvokeCallback (typeof (Func))]
-#endif
static IntPtr CopyDescriptionProxy (IntPtr info)
{
NSString? result = null;
@@ -385,11 +334,7 @@ static IntPtr CopyDescriptionProxy (IntPtr info)
return result.GetHandle ();
}
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (CFMessagePortCallBackProxy))]
-#endif
static IntPtr MessagePortCallback (IntPtr local, int msgid, IntPtr data, IntPtr info)
{
CFMessagePortCallBack callback;
@@ -408,11 +353,7 @@ static IntPtr MessagePortCallback (IntPtr local, int msgid, IntPtr data, IntPtr
}
}
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (CFMessagePortInvalidationCallBackProxy))]
-#endif
static void MessagePortInvalidationCallback (IntPtr messagePort, IntPtr info)
{
Action? callback;
diff --git a/src/CoreFoundation/CFMutableString.cs b/src/CoreFoundation/CFMutableString.cs
index 6eab6eef46ad..6414bf1d9274 100644
--- a/src/CoreFoundation/CFMutableString.cs
+++ b/src/CoreFoundation/CFMutableString.cs
@@ -12,33 +12,15 @@
using Foundation;
using ObjCRuntime;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFMutableString : CFString {
-
-#if !NET
- protected CFMutableString (NativeHandle handle)
- : this (handle, false)
- {
- }
-#endif
-
[Preserve (Conditional = true)]
-#if NET
internal CFMutableString (NativeHandle handle, bool owns)
-#else
- protected CFMutableString (NativeHandle handle, bool owns)
-#endif
: base (handle, owns)
{
}
diff --git a/src/CoreFoundation/CFNetwork.cs b/src/CoreFoundation/CFNetwork.cs
index 13bc8e8b6ae0..4a06f35fbe47 100644
--- a/src/CoreFoundation/CFNetwork.cs
+++ b/src/CoreFoundation/CFNetwork.cs
@@ -9,106 +9,190 @@ namespace CoreFoundation {
// note: Make sure names are identical/consistent with NSUrlError.*
// they share the same values but there's more entries in CFNetworkErrors
public enum CFNetworkErrors {
+ /// To be added.
HostNotFound = 1,
+ /// To be added.
HostUnknown = 2,
+ /// To be added.
SocksUnknownClientVersion = 100,
+ /// To be added.
SocksUnsupportedServerVersion = 101,
+ /// To be added.
Socks4RequestFailed = 110,
+ /// To be added.
Socks4IdentdFailed = 111,
+ /// To be added.
Socks4IdConflict = 112,
+ /// To be added.
Socks4UnknownStatusCode = 113,
+ /// To be added.
Socks5BadState = 120,
+ /// To be added.
Socks5BadResponseAddr = 121,
+ /// To be added.
Socks5BadCredentials = 122,
+ /// To be added.
Socks5UnsupportedNegotiationMethod = 123,
+ /// To be added.
Socks5NoAcceptableMethod = 124,
+ /// To be added.
FtpUnexpectedStatusCode = 200,
+ /// To be added.
HttpAuthenticationTypeUnsupported = 300,
+ /// To be added.
HttpBadCredentials = 301,
+ /// To be added.
HttpConnectionLost = 302,
+ /// To be added.
HttpParseFailure = 303,
+ /// To be added.
HttpRedirectionLoopDetected = 304,
+ /// To be added.
HttpBadURL = 305,
+ /// To be added.
HttpProxyConnectionFailure = 306,
+ /// To be added.
HttpBadProxyCredentials = 307,
+ /// To be added.
PacFileError = 308,
+ /// To be added.
PacFileAuth = 309,
+ /// To be added.
HttpsProxyConnectionFailure = 310,
+ /// To be added.
HttpsProxyFailureUnexpectedResponseToConnectMethod = 311,
// same names as NSUrlError - begin
+ /// To be added.
BackgroundSessionInUseByAnotherProcess = -996,
+ /// To be added.
BackgroundSessionWasDisconnected = -997,
// same names as NSUrlError - end
+ /// To be added.
Unknown = -998,
// same names as NSUrlError - begin
+ /// To be added.
Cancelled = -999,
+ /// To be added.
BadURL = -1000,
+ /// To be added.
TimedOut = -1001,
+ /// To be added.
UnsupportedURL = -1002,
+ /// To be added.
CannotFindHost = -1003,
+ /// To be added.
CannotConnectToHost = -1004,
+ /// To be added.
NetworkConnectionLost = -1005,
+ /// To be added.
DNSLookupFailed = -1006,
+ /// To be added.
HTTPTooManyRedirects = -1007,
+ /// To be added.
ResourceUnavailable = -1008,
+ /// To be added.
NotConnectedToInternet = -1009,
+ /// To be added.
RedirectToNonExistentLocation = -1010,
+ /// To be added.
BadServerResponse = -1011,
+ /// To be added.
UserCancelledAuthentication = -1012,
+ /// To be added.
UserAuthenticationRequired = -1013,
+ /// To be added.
ZeroByteResource = -1014,
+ /// To be added.
CannotDecodeRawData = -1015,
+ /// To be added.
CannotDecodeContentData = -1016,
+ /// To be added.
CannotParseResponse = -1017,
+ /// To be added.
InternationalRoamingOff = -1018,
+ /// To be added.
CallIsActive = -1019,
+ /// To be added.
DataNotAllowed = -1020,
+ /// To be added.
RequestBodyStreamExhausted = -1021,
+ /// To be added.
AppTransportSecurityRequiresSecureConnection = -1022,
+ /// To be added.
FileDoesNotExist = -1100,
+ /// To be added.
FileIsDirectory = -1101,
+ /// To be added.
NoPermissionsToReadFile = -1102,
+ /// To be added.
DataLengthExceedsMaximum = -1103,
+ /// To be added.
FileOutsideSafeArea = -1104,
+ /// To be added.
SecureConnectionFailed = -1200,
+ /// To be added.
ServerCertificateHasBadDate = -1201,
+ /// To be added.
ServerCertificateUntrusted = -1202,
+ /// To be added.
ServerCertificateHasUnknownRoot = -1203,
+ /// To be added.
ServerCertificateNotYetValid = -1204,
+ /// To be added.
ClientCertificateRejected = -1205,
+ /// To be added.
ClientCertificateRequired = -1206,
+ /// To be added.
CannotLoadFromNetwork = -2000,
+ /// To be added.
CannotCreateFile = -3000,
+ /// To be added.
CannotOpenFile = -3001,
+ /// To be added.
CannotCloseFile = -3002,
+ /// To be added.
CannotWriteToFile = -3003,
+ /// To be added.
CannotRemoveFile = -3004,
+ /// To be added.
CannotMoveFile = -3005,
+ /// To be added.
DownloadDecodingFailedMidStream = -3006,
+ /// To be added.
DownloadDecodingFailedToComplete = -3007,
// same names as NSUrlError - end
+ /// To be added.
CannotParseCookieFile = -4000,
+ /// To be added.
NetServiceUnknown = -72000,
+ /// To be added.
NetServiceCollision = -72001,
+ /// To be added.
NetServiceNotFound = -72002,
+ /// To be added.
NetServiceInProgress = -72003,
+ /// To be added.
NetServiceBadArgument = -72004,
+ /// To be added.
NetServiceCancel = -72005,
+ /// To be added.
NetServiceInvalid = -72006,
+ /// To be added.
NetServiceTimeout = -72007,
NetServiceMissingRequiredConfiguration = -72008,
+ /// To be added.
NetServiceDnsServiceFailure = -73000
}
}
diff --git a/src/CoreFoundation/CFNotificationCenter.cs b/src/CoreFoundation/CFNotificationCenter.cs
index 7d03e884af21..047c5c7c8e42 100644
--- a/src/CoreFoundation/CFNotificationCenter.cs
+++ b/src/CoreFoundation/CFNotificationCenter.cs
@@ -21,17 +21,17 @@
using CoreFoundation;
using System.Collections.Generic;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
[Native] // CFIndex
public enum CFNotificationSuspensionBehavior : long {
+ /// The notifications will be dropped while the application is in the background.
Drop = 1,
+ /// Only the last one of the notifications posted while the application was in the background is posted.
Coalesce = 2,
+ /// Notifications are kept around in a queue, and they are all delivered serially when the application returns to the foreground. Some notifications might be dropped if the queue overflows.
Hold = 3,
+ /// The notifications are delivered immediately. Any pending notifications that might be queued are delivered first.
DeliverImmediately = 4
}
@@ -70,6 +70,24 @@ internal CFNotificationCenter (NativeHandle handle, bool owns)
[DllImport (Constants.CoreFoundationLibrary)]
extern static CFNotificationCenterRef CFNotificationCenterGetDarwinNotifyCenter ();
+ /// Returns the operating system global notification center.
+ ///
+ ///
+ ///
+ ///
+ /// This is an operating system global notification center,
+ /// and can be used to send messages between applications
+ /// running on the same machine. There is no notion of user
+ /// session in the Darwin notification center, so all the
+ /// notifications are global.
+ ///
+ ///
+ ///
+ /// The main thread loop must be running in one of the common
+ /// modes (RunLoopDefault for example) for these notifications
+ /// to be delivered.
+ ///
+ ///
static public CFNotificationCenter Darwin {
get {
return darwinnc ?? (darwinnc = new CFNotificationCenter (CFNotificationCenterGetDarwinNotifyCenter (), false));
@@ -82,6 +100,9 @@ static public CFNotificationCenter Darwin {
[DllImport (Constants.CoreFoundationLibrary)]
extern static CFNotificationCenterRef CFNotificationCenterGetDistributedCenter ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
static public CFNotificationCenter Distributed {
get {
return distributednc ?? (distributednc = new CFNotificationCenter (CFNotificationCenterGetDistributedCenter (), false));
@@ -92,6 +113,12 @@ static public CFNotificationCenter Distributed {
[DllImport (Constants.CoreFoundationLibrary)]
extern static CFNotificationCenterRef CFNotificationCenterGetLocalCenter ();
+ /// Returns the application local notification center.
+ ///
+ ///
+ ///
+ /// This is an application local notification center. Can be used to post notifications inside an application.
+ ///
static public CFNotificationCenter Local {
get {
return localnc ?? (localnc = new CFNotificationCenter (CFNotificationCenterGetLocalCenter (), false));
@@ -126,7 +153,6 @@ public CFNotificationObserverToken AddObserver (string name, INativeObject objec
lock (listeners) {
if (!listeners.TryGetValue (name, out listenersForName)) {
listenersForName = new List (1);
-#if NET
unsafe {
CFNotificationCenterAddObserver (center: Handle,
observer: Handle,
@@ -135,14 +161,6 @@ public CFNotificationObserverToken AddObserver (string name, INativeObject objec
obj: token.observedObject,
suspensionBehavior: (IntPtr) suspensionBehavior);
}
-#else
- CFNotificationCenterAddObserver (center: Handle,
- observer: Handle,
- callback: NotificationCallback,
- name: strHandle,
- obj: token.observedObject,
- suspensionBehavior: (IntPtr) suspensionBehavior);
-#endif
} else
listenersForName = new List (listenersForName);
listenersForName.Add (token);
@@ -174,15 +192,7 @@ void notification (string? name, NSDictionary? userInfo)
}
}
-#if !NET
- delegate void CFNotificationCallback (CFNotificationCenterRef center, IntPtr observer, IntPtr name, IntPtr obj, IntPtr userInfo);
-#endif
-
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (CFNotificationCallback))]
-#endif
static void NotificationCallback (CFNotificationCenterRef centerPtr, IntPtr observer, IntPtr name, IntPtr obj, IntPtr userInfo)
{
CFNotificationCenter center;
@@ -262,17 +272,10 @@ public void RemoveEveryObserver ()
}
-#if NET
[DllImport (Constants.CoreFoundationLibrary)]
static extern unsafe void CFNotificationCenterAddObserver (CFNotificationCenterRef center, IntPtr observer,
delegate* unmanaged callback, IntPtr name, IntPtr obj,
/* CFNotificationSuspensionBehavior */ IntPtr suspensionBehavior);
-#else
- [DllImport (Constants.CoreFoundationLibrary)]
- static extern unsafe void CFNotificationCenterAddObserver (CFNotificationCenterRef center, IntPtr observer,
- CFNotificationCallback callback, IntPtr name, IntPtr obj,
- /* CFNotificationSuspensionBehavior */ IntPtr suspensionBehavior);
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
static extern unsafe void CFNotificationCenterPostNotificationWithOptions (CFNotificationCenterRef center, IntPtr name, IntPtr obj, IntPtr userInfo, int options);
diff --git a/src/CoreFoundation/CFPreferences.cs b/src/CoreFoundation/CFPreferences.cs
index 8dbc8e7039f3..853eed3d030a 100644
--- a/src/CoreFoundation/CFPreferences.cs
+++ b/src/CoreFoundation/CFPreferences.cs
@@ -20,16 +20,16 @@
using System.Runtime.Versioning;
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public static class CFPreferences {
[DllImport (Constants.CoreFoundationLibrary)]
static extern IntPtr CFPreferencesCopyAppValue (IntPtr key, IntPtr applicationId);
+ /// The current application.
+ /// To be added.
public static readonly NSString? CurrentApplication;
/*public static readonly NSString AnyApplication;
diff --git a/src/CoreFoundation/CFPropertyList.cs b/src/CoreFoundation/CFPropertyList.cs
index 9b7c3b55557d..bc8f83bec9ad 100644
--- a/src/CoreFoundation/CFPropertyList.cs
+++ b/src/CoreFoundation/CFPropertyList.cs
@@ -15,17 +15,11 @@
using ObjCRuntime;
using Foundation;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFPropertyList : NativeObject {
static nint CFDataTypeID = CFData.GetTypeID ();
static nint CFStringTypeID = CFString.GetTypeID ();
@@ -44,21 +38,11 @@ public class CFPropertyList : NativeObject {
static nint CFNumberTypeID = CFNumberGetTypeID ();
[Preserve (Conditional = true)]
-#if NET
internal CFPropertyList (NativeHandle handle, bool owns)
-#else
- public CFPropertyList (NativeHandle handle, bool owns)
-#endif
: base (handle, owns)
{
}
-#if !NET
- public CFPropertyList (NativeHandle handle) : this (handle, false)
- {
- }
-#endif
-
[DllImport (Constants.CoreFoundationLibrary)]
unsafe static extern IntPtr CFPropertyListCreateWithData (IntPtr allocator, IntPtr dataRef, nuint options, nint* format, /* CFError * */ IntPtr* error);
@@ -112,6 +96,9 @@ public bool IsValid (CFPropertyListFormat format)
return CFPropertyListIsValid (Handle, (nint) (long) format) != 0;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public object? Value {
get {
if (Handle == IntPtr.Zero) {
@@ -143,16 +130,22 @@ public object? Value {
[Native]
public enum CFPropertyListFormat : long {
+ /// To be added.
OpenStep = 1,
+ /// To be added.
XmlFormat1 = 100,
+ /// To be added.
BinaryFormat1 = 200,
}
[Flags]
[Native]
public enum CFPropertyListMutabilityOptions : ulong {
+ /// To be added.
Immutable = 0,
+ /// To be added.
MutableContainers = 1 << 0,
+ /// To be added.
MutableContainersAndLeaves = 1 << 1,
}
}
diff --git a/src/CoreFoundation/CFProxySupport.cs b/src/CoreFoundation/CFProxySupport.cs
index 49ae75369036..37b6d21edd89 100644
--- a/src/CoreFoundation/CFProxySupport.cs
+++ b/src/CoreFoundation/CFProxySupport.cs
@@ -41,12 +41,19 @@
namespace CoreFoundation {
// Utility enum for string constants in ObjC
public enum CFProxyType {
+ /// No proxy should be used.
None,
+ /// An autoconfiguration url.
AutoConfigurationUrl,
+ /// Proxy types available from the system.
AutoConfigurationJavaScript,
+ /// An FTP proxy.
FTP,
+ /// An HTTP proxy.
HTTP,
+ /// An HTTPS proxy.
HTTPS,
+ /// A SOCKS proxy.
SOCKS
}
@@ -263,6 +270,12 @@ public NSObject AutoConfigurationHTTPResponse {
}
#endif
+ /// JavaScript source code for auto-configuring the proxy.
+ /// A string containing the JavaScript source code.
+ /// This value is meant to be used with
+ ///
+ /// and will only be set if is set to
+ /// AutoConfigurationJavaScript.
public NSString? AutoConfigurationJavaScript {
get {
if (AutoConfigurationJavaScriptKey is null)
@@ -272,6 +285,10 @@ public NSString? AutoConfigurationJavaScript {
}
}
+ /// URL location of a proxy auto-configuration script.
+ /// A URL containing the location of the proxy auto-configuration script file.
+ /// This property will only set when
+ /// is set to AutoConfigurationUrl.
public NSUrl? AutoConfigurationUrl {
get {
if (AutoConfigurationURLKey is null)
@@ -281,6 +298,10 @@ public NSUrl? AutoConfigurationUrl {
}
}
+ /// The hostname of the proxy server.
+ /// A string containing the hostname of the proxy server.
+ /// This property will be null if the is set to
+ /// AutoConfigurationJavaScript or AutoConfigurationUrl.
public string? HostName {
get {
if (HostNameKey is null)
@@ -292,6 +313,10 @@ public string? HostName {
}
}
+ /// The password needed to authenticate with the proxy server.
+ /// A string containing the password or null if not needed.
+ ///
+ ///
public string? Password {
get {
if (PasswordKey is null)
@@ -303,6 +328,9 @@ public string? Password {
}
}
+ /// The port to connect to on the proxy server.
+ /// The numeric port to connect to.
+ /// This property is not useful if the is javascript or a url.
public int Port {
get {
if (PortNumberKey is null)
@@ -314,6 +342,10 @@ public int Port {
}
}
+ /// The type of the proxy.
+ /// Any of the enum values.
+ ///
+ ///
public CFProxyType ProxyType {
get {
if (ProxyTypeKey is null)
@@ -323,6 +355,10 @@ public CFProxyType ProxyType {
}
}
+ /// The user name needed for authentication with the proxy server.
+ /// A string containing the user name or null if not needed.
+ ///
+ ///
public string? Username {
get {
if (UsernameKey is null)
@@ -347,6 +383,11 @@ internal CFProxySettings (NSDictionary settings)
this.settings = settings;
}
+ /// The dictionary holding the settings.
+ ///
+ ///
+ ///
+ ///
public NSDictionary Dictionary {
get { return settings; }
}
@@ -415,6 +456,9 @@ static NSString? CFNetworkProxiesProxyAutoConfigURLString {
}
#endregion Global Proxy Setting Constants
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool HTTPEnable {
get {
if (CFNetworkProxiesHTTPEnable is null)
@@ -426,6 +470,9 @@ public bool HTTPEnable {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int HTTPPort {
get {
if (CFNetworkProxiesHTTPPort is null)
@@ -437,6 +484,9 @@ public int HTTPPort {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? HTTPProxy {
get {
if (CFNetworkProxiesHTTPProxy is null)
@@ -448,6 +498,9 @@ public string? HTTPProxy {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ProxyAutoConfigEnable {
get {
if (CFNetworkProxiesProxyAutoConfigEnable is null)
@@ -472,6 +525,9 @@ public string? ProxyAutoConfigJavaScript {
}
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? ProxyAutoConfigURLString {
get {
if (CFNetworkProxiesProxyAutoConfigURLString is null)
diff --git a/src/CoreFoundation/CFReadStream.cs b/src/CoreFoundation/CFReadStream.cs
index d3da6ad17c73..bbb135f288f0 100644
--- a/src/CoreFoundation/CFReadStream.cs
+++ b/src/CoreFoundation/CFReadStream.cs
@@ -37,34 +37,17 @@
using Foundation;
using ObjCRuntime;
-#if NET
using CFIndex = System.IntPtr;
-#else
-using CFIndex = System.nint;
-#endif
-
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
// CFStream.h
public class CFReadStream : CFStream {
-#if !NET
- public CFReadStream (NativeHandle handle)
- : base (handle, true)
- {
- }
-#endif
-
[Preserve (Conditional = true)]
internal CFReadStream (NativeHandle handle, bool owns)
: base (handle, owns)
@@ -139,37 +122,23 @@ protected override void UnscheduleFromRunLoop (CFRunLoop loop, NSString? mode)
}
[DllImport (Constants.CoreFoundationLibrary)]
-#if NET8_0_OR_GREATER
unsafe static extern byte CFReadStreamSetClient (/* CFReadStreamRef */ IntPtr stream, /* CFOptionFlags */ nint streamEvents,
/* CFReadStreamClientCallBack */ delegate* unmanaged clientCB, /* CFStreamClientContext* */ IntPtr clientContext);
-#else
- [return: MarshalAs (UnmanagedType.I1)]
- static extern bool CFReadStreamSetClient (/* CFReadStreamRef */ IntPtr stream, /* CFOptionFlags */ nint streamEvents,
- /* CFReadStreamClientCallBack */ CFStreamCallback? clientCB, /* CFStreamClientContext* */ IntPtr clientContext);
-#endif
#if !XAMCORE_5_0
-#if NET8_0_OR_GREATER
[Obsolete ("Use the other overload.")]
[EditorBrowsable (EditorBrowsableState.Never)]
-#endif
protected override bool DoSetClient (CFStreamCallback? callback, CFIndex eventTypes,
IntPtr context)
{
-#if NET8_0_OR_GREATER
throw new InvalidOperationException ($"Use the other overload.");
-#else
- return CFReadStreamSetClient (Handle, (nint) eventTypes, callback, context);
-#endif
}
#endif // !XAMCORE_5_0
-#if NET8_0_OR_GREATER
unsafe protected override byte DoSetClient (delegate* unmanaged callback, CFIndex eventTypes, IntPtr context)
{
return CFReadStreamSetClient (Handle, (nint) eventTypes, callback, context);
}
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFIndex */ nint CFReadStreamRead (/* CFReadStreamRef */ IntPtr handle, /* UInt8* */ IntPtr buffer, /* CFIndex */ nint count);
diff --git a/src/CoreFoundation/CFRunLoop.cs b/src/CoreFoundation/CFRunLoop.cs
index 4cbc812babba..54b41fc3b3e9 100644
--- a/src/CoreFoundation/CFRunLoop.cs
+++ b/src/CoreFoundation/CFRunLoop.cs
@@ -37,15 +37,7 @@
using Foundation;
using System.Runtime.Versioning;
-#if NET
using CFIndex = System.IntPtr;
-#else
-using CFIndex = System.nint;
-#endif
-
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
#nullable enable
@@ -53,19 +45,19 @@ namespace CoreFoundation {
// anonymous and typeless native enum - System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h
public enum CFRunLoopExitReason : int {
+ /// The run loop terminated.
Finished = 1,
+ /// The run loop was stopped by a call to the method.
Stopped = 2,
+ /// The number of seconds specified in the call to elapsed.
TimedOut = 3,
+ /// An event from a source was handled, and the developer specified that a single source should be processed on the call to
HandledSource = 4
}
// CFRunLoop.h
[StructLayout (LayoutKind.Sequential)]
-#if NET
internal unsafe struct CFRunLoopSourceContext {
-#else
- internal struct CFRunLoopSourceContext {
-#endif
public CFIndex Version;
public IntPtr Info;
public IntPtr Retain;
@@ -73,37 +65,18 @@ internal struct CFRunLoopSourceContext {
public IntPtr CopyDescription;
public IntPtr Equal;
public IntPtr Hash;
-#if NET
public delegate* unmanaged Schedule;
public delegate* unmanaged Cancel;
public delegate* unmanaged Perform;
-#else
- public IntPtr Schedule;
- public IntPtr Cancel;
- public IntPtr Perform;
-#endif
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFRunLoopSource : NativeObject {
-#if !NET
- public CFRunLoopSource (NativeHandle handle)
- : base (handle, false)
- {
- }
-#endif
-
[Preserve (Conditional = true)]
-#if NET
internal CFRunLoopSource (NativeHandle handle, bool owns)
-#else
- public CFRunLoopSource (NativeHandle handle, bool owns)
-#endif
: base (handle, owns)
{
}
@@ -111,6 +84,9 @@ public CFRunLoopSource (NativeHandle handle, bool owns)
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFIndex */ nint CFRunLoopSourceGetOrder (/* CFRunLoopSourceRef */ IntPtr source);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint Order {
get {
return CFRunLoopSourceGetOrder (Handle);
@@ -128,6 +104,9 @@ public void Invalidate ()
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* Boolean */ byte CFRunLoopSourceIsValid (/* CFRunLoopSourceRef */ IntPtr source);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsValid {
get {
return CFRunLoopSourceIsValid (Handle) != 0;
@@ -144,41 +123,27 @@ public void Signal ()
}
#if !COREBUILD
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public abstract class CFRunLoopSourceCustom : CFRunLoopSource {
GCHandle gch;
[DllImport (Constants.CoreFoundationLibrary)]
unsafe extern static /* CFRunLoopSourceRef */ IntPtr CFRunLoopSourceCreate (/* CFAllocatorRef */ IntPtr allocator, /* CFIndex */ nint order, /* CFRunLoopSourceContext* */ CFRunLoopSourceContext* context);
-#if !NET
- static ScheduleCallback ScheduleDelegate = (ScheduleCallback) Schedule;
- static CancelCallback CancelDelegate = (CancelCallback) Cancel;
- static PerformCallback PerformDelegate = (PerformCallback) Perform;
-#endif
-
protected CFRunLoopSourceCustom ()
: base (IntPtr.Zero, true)
{
gch = GCHandle.Alloc (this);
var ctx = new CFRunLoopSourceContext ();
ctx.Info = GCHandle.ToIntPtr (gch);
-#if NET
unsafe {
ctx.Schedule = &Schedule;
ctx.Cancel = &Cancel;
ctx.Perform = &Perform;
}
-#else
- ctx.Schedule = Marshal.GetFunctionPointerForDelegate (ScheduleDelegate);
- ctx.Cancel = Marshal.GetFunctionPointerForDelegate (CancelDelegate);
- ctx.Perform = Marshal.GetFunctionPointerForDelegate (PerformDelegate);
-#endif
IntPtr handle;
unsafe {
@@ -187,15 +152,7 @@ protected CFRunLoopSourceCustom ()
InitializeHandle (handle);
}
-#if !NET
- delegate void ScheduleCallback (IntPtr info, IntPtr runLoop, IntPtr mode);
-#endif
-
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (ScheduleCallback))]
-#endif
static void Schedule (IntPtr info, IntPtr runLoop, IntPtr mode)
{
var source = GCHandle.FromIntPtr (info).Target as CFRunLoopSourceCustom;
@@ -210,15 +167,7 @@ static void Schedule (IntPtr info, IntPtr runLoop, IntPtr mode)
protected abstract void OnSchedule (CFRunLoop loop, NSString mode);
-#if !NET
- delegate void CancelCallback (IntPtr info, IntPtr runLoop, IntPtr mode);
-#endif
-
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (CancelCallback))]
-#endif
static void Cancel (IntPtr info, IntPtr runLoop, IntPtr mode)
{
var source = GCHandle.FromIntPtr (info).Target as CFRunLoopSourceCustom;
@@ -233,15 +182,7 @@ static void Cancel (IntPtr info, IntPtr runLoop, IntPtr mode)
protected abstract void OnCancel (CFRunLoop loop, NSString mode);
-#if !NET
- delegate void PerformCallback (IntPtr info);
-#endif
-
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (PerformCallback))]
-#endif
static void Perform (IntPtr info)
{
var source = GCHandle.FromIntPtr (info).Target as CFRunLoopSourceCustom;
@@ -269,6 +210,15 @@ public partial class CFRunLoop : NativeObject {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFRunLoopRef */ IntPtr CFRunLoopGetCurrent ();
+ /// Active runloop for the current thread.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
static public CFRunLoop Current {
get {
return new CFRunLoop (CFRunLoopGetCurrent (), false);
@@ -278,6 +228,12 @@ static public CFRunLoop Current {
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* CFRunLoopRef */ IntPtr CFRunLoopGetMain ();
+ /// Main run loop object for the application.
+ /// The main runloop object for the application.
+ ///
+ ///
+ ///
+ ///
static public CFRunLoop Main {
get {
return new CFRunLoop (CFRunLoopGetMain (), false);
@@ -311,6 +267,13 @@ public void WakeUp ()
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* Boolean */ byte CFRunLoopIsWaiting (/* CFRunLoopRef */ IntPtr rl);
+ /// Indicates that the run loop is currently waiting for an event.
+ ///
+ /// if the run loop is waiting for an event, otherwise.
+ ///
+ ///
+ ///
+ ///
public bool IsWaiting {
get {
return CFRunLoopIsWaiting (Handle) != 0;
@@ -397,43 +360,6 @@ public string? CurrentMode {
return CFString.FromHandle (CFRunLoopCopyCurrentMode (GetCheckedHandle ()), releaseHandle: true);
}
}
-
-#if !NET
- public static bool operator == (CFRunLoop? a, CFRunLoop? b)
- {
- if (a is null)
- return b is null;
- else if (b is null)
- return false;
-
- return a.Handle == b.Handle;
- }
-
- public static bool operator != (CFRunLoop? a, CFRunLoop? b)
- {
- if (a is null)
- return b is not null;
- else if (b is null)
- return true;
- return a.Handle != b.Handle;
- }
-
- // For the .net profile `DisposableObject` implements both
- // `Equals` and `GetHashCode` based on the Handle property.
- public override int GetHashCode ()
- {
- return Handle.GetHashCode ();
- }
-
- public override bool Equals (object? other)
- {
- var cfother = other as CFRunLoop;
- if (cfother is null)
- return false;
-
- return cfother.Handle == Handle;
- }
-#endif
#endif // !COREBUILD
}
}
diff --git a/src/CoreFoundation/CFSocket.cs b/src/CoreFoundation/CFSocket.cs
index 0423d0304851..e7df9375c2e1 100644
--- a/src/CoreFoundation/CFSocket.cs
+++ b/src/CoreFoundation/CFSocket.cs
@@ -40,49 +40,58 @@
using Foundation;
using ObjCRuntime;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
[Flags]
[Native]
// defined as CFOptionFlags (unsigned long [long] = nuint) - System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h
public enum CFSocketCallBackType : ulong {
+ /// To be added.
NoCallBack = 0,
+ /// To be added.
ReadCallBack = 1,
+ /// To be added.
AcceptCallBack = 2,
+ /// To be added.
DataCallBack = 3,
+ /// To be added.
ConnectCallBack = 4,
+ /// To be added.
WriteCallBack = 8
}
// defined as CFIndex (long [long] = nint) - System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h
[Native]
public enum CFSocketError : long {
+ /// To be added.
Success = 0,
+ /// To be added.
Error = -1,
+ /// To be added.
Timeout = -2
}
[Flags]
// anonymous and typeless native enum - System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h
public enum CFSocketFlags {
+ /// To be added.
AutomaticallyReenableReadCallBack = 1,
+ /// To be added.
AutomaticallyReenableAcceptCallBack = 2,
+ /// To be added.
AutomaticallyReenableDataCallBack = 3,
+ /// To be added.
AutomaticallyReenableWriteCallBack = 8,
+ /// To be added.
LeaveErrors = 64,
+ /// To be added.
CloseOnInvalidate = 128
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public struct CFSocketNativeHandle {
// typedef int CFSocketNativeHandle
internal readonly int handle;
@@ -98,13 +107,14 @@ public override string ToString ()
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFSocketException : Exception {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CFSocketError Error {
get;
private set;
@@ -238,39 +248,20 @@ static byte [] CreateData (IPEndPoint endpoint)
struct CFSocketContext {
nint Version; // CFIndex
public /* void*/ IntPtr Info;
-#if NET
unsafe delegate* unmanaged Retain;
unsafe delegate* unmanaged Release;
-#else
- IntPtr Retain;
- IntPtr Release;
-#endif
IntPtr CopyDescription;
public CFSocketContext (IntPtr info) : this ()
{
Info = info;
-#if NET
unsafe {
Retain = &OnContextRetain;
Release = &OnContextRelease;
}
-#else
- Retain = Marshal.GetFunctionPointerForDelegate (retainCallback);
- Release = Marshal.GetFunctionPointerForDelegate (releaseCallback);
-#endif
}
-#if !NET
- delegate IntPtr RetainCallback (IntPtr ptr);
- static readonly RetainCallback retainCallback = OnContextRetain;
-#endif
-
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (RetainCallback))]
-#endif
static IntPtr OnContextRetain (IntPtr ptr)
{
var gch = GCHandle.FromIntPtr (ptr);
@@ -279,16 +270,7 @@ static IntPtr OnContextRetain (IntPtr ptr)
return ptr;
}
-#if !NET
- delegate void ReleaseCallback (IntPtr ptr);
- static readonly ReleaseCallback releaseCallback = OnContextRelease;
-#endif
-
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (ReleaseCallback))]
-#endif
static void OnContextRelease (IntPtr ptr)
{
var gch = GCHandle.FromIntPtr (ptr);
@@ -297,12 +279,10 @@ static void OnContextRelease (IntPtr ptr)
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFSocket : CFType {
int contextRetainCount;
@@ -326,15 +306,7 @@ protected override void Dispose (bool disposing)
base.Dispose (disposing);
}
-#if !NET
- delegate void CFSocketCallBack (IntPtr s, nuint type, IntPtr address, IntPtr data, IntPtr info);
-#endif
-
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (CFSocketCallBack))]
-#endif
static void OnCallback (IntPtr s, nuint type, IntPtr address, IntPtr data, IntPtr info)
{
var socket = GCHandle.FromIntPtr (info).Target as CFSocket;
@@ -372,29 +344,15 @@ static void OnCallback (IntPtr s, nuint type, IntPtr address, IntPtr data, IntPt
}
}
-#if NET
[DllImport (Constants.CoreFoundationLibrary)]
unsafe extern static IntPtr CFSocketCreate (IntPtr allocator, int /*SInt32*/ family, int /*SInt32*/ type, int /*SInt32*/ proto,
nuint /*CFOptionFlags*/ callBackTypes,
delegate* unmanaged callout, CFSocketContext* ctx);
-#else
- [DllImport (Constants.CoreFoundationLibrary)]
- unsafe extern static IntPtr CFSocketCreate (IntPtr allocator, int /*SInt32*/ family, int /*SInt32*/ type, int /*SInt32*/ proto,
- nuint /*CFOptionFlags*/ callBackTypes,
- CFSocketCallBack callout, CFSocketContext* ctx);
-#endif
-#if NET
[DllImport (Constants.CoreFoundationLibrary)]
unsafe extern static IntPtr CFSocketCreateWithNative (IntPtr allocator, CFSocketNativeHandle sock,
nuint /*CFOptionFlags*/ callBackTypes,
delegate* unmanaged callout, CFSocketContext* ctx);
-#else
- [DllImport (Constants.CoreFoundationLibrary)]
- unsafe extern static IntPtr CFSocketCreateWithNative (IntPtr allocator, CFSocketNativeHandle sock,
- nuint /*CFOptionFlags*/ callBackTypes,
- CFSocketCallBack callout, CFSocketContext* ctx);
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
extern static IntPtr CFSocketCreateRunLoopSource (IntPtr allocator, IntPtr socket, nint order);
@@ -422,34 +380,20 @@ public CFSocket (AddressFamily family, SocketType type, ProtocolType proto, CFRu
CFSocket (int family, int type, int proto, CFRunLoop loop)
{
unsafe {
-#if NET
Initialize (
loop,
(CFSocketContext* ctx) => CFSocketCreate (IntPtr.Zero, family, type, proto, (nuint) (ulong) defaultCallbackTypes, &OnCallback, ctx)
);
-#else
- Initialize (
- loop,
- (CFSocketContext* ctx) => CFSocketCreate (IntPtr.Zero, family, type, proto, (nuint) (ulong) defaultCallbackTypes, OnCallback, ctx)
- );
-#endif
}
}
CFSocket (CFSocketNativeHandle sock)
{
unsafe {
-#if NET
Initialize (
CFRunLoop.Current,
(CFSocketContext* ctx) => CFSocketCreateWithNative (IntPtr.Zero, sock, (nuint) (ulong) defaultCallbackTypes, &OnCallback, ctx)
);
-#else
- Initialize (
- CFRunLoop.Current,
- (CFSocketContext* ctx) => CFSocketCreateWithNative (IntPtr.Zero, sock, (nuint) (ulong) defaultCallbackTypes, OnCallback, ctx)
- );
-#endif
}
}
@@ -460,11 +404,7 @@ internal CFSocket (CFSocketSignature sig, double timeout)
CFRunLoop.Current,
(CFSocketContext* ctx) => {
CFSocketSignature localSig = sig;
-#if NET
return CFSocketCreateConnectedToSocketSignature (IntPtr.Zero, &localSig, (nuint) (ulong) defaultCallbackTypes, &OnCallback, ctx, timeout);
-#else
- return CFSocketCreateConnectedToSocketSignature (IntPtr.Zero, &localSig, (nuint) (ulong) defaultCallbackTypes, OnCallback, ctx, timeout);
-#endif
}
);
}
@@ -494,19 +434,11 @@ void Initialize (CFRunLoop runLoop, CreateSocket createSocket)
}
}
-#if NET
[DllImport (Constants.CoreFoundationLibrary)]
unsafe extern static IntPtr CFSocketCreateConnectedToSocketSignature (IntPtr allocator, CFSocketSignature* signature,
nuint /*CFOptionFlags*/ callBackTypes,
delegate* unmanaged callout,
CFSocketContext* context, double timeout);
-#else
- [DllImport (Constants.CoreFoundationLibrary)]
- unsafe extern static IntPtr CFSocketCreateConnectedToSocketSignature (IntPtr allocator, CFSocketSignature* signature,
- nuint /*CFOptionFlags*/ callBackTypes,
- CFSocketCallBack callout,
- CFSocketContext* context, double timeout);
-#endif
public static CFSocket CreateConnectedToSocketSignature (AddressFamily family, SocketType type,
ProtocolType proto, IPEndPoint endpoint,
@@ -612,12 +544,10 @@ public void SendData (byte [] data, double timeout)
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFSocketAcceptEventArgs : EventArgs {
internal CFSocketNativeHandle SocketHandle {
get;
@@ -646,12 +576,10 @@ public override string ToString ()
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFSocketConnectEventArgs : EventArgs {
public CFSocketError Result {
get;
@@ -669,12 +597,10 @@ public override string ToString ()
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFSocketDataEventArgs : EventArgs {
public IPEndPoint RemoteEndPoint {
get;
@@ -693,22 +619,18 @@ public CFSocketDataEventArgs (IPEndPoint remote, byte [] data)
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFSocketReadEventArgs : EventArgs {
public CFSocketReadEventArgs () { }
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFSocketWriteEventArgs : EventArgs {
public CFSocketWriteEventArgs () { }
}
diff --git a/src/CoreFoundation/CFStream.cs b/src/CoreFoundation/CFStream.cs
index e957312e4418..27210c54502e 100644
--- a/src/CoreFoundation/CFStream.cs
+++ b/src/CoreFoundation/CFStream.cs
@@ -37,23 +37,11 @@
using System.Net;
using System.Net.Sockets;
using System.Runtime.InteropServices;
-#if NET
using CFNetwork;
-#else
-using CoreServices;
-#endif
using ObjCRuntime;
using Foundation;
-#if NET
using CFIndex = System.IntPtr;
-#else
-using CFIndex = System.nint;
-#endif
-
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
namespace CoreFoundation {
@@ -61,24 +49,32 @@ namespace CoreFoundation {
[Flags]
[Native] // System/Library/Frameworks/Foundation.framework/Headers/NSStream.h
public enum CFStreamEventType : ulong {
+ /// No event occurred.
None = 0,
OpenCompleted = 1,
+ /// The stream can now be read.
HasBytesAvailable = 2,
CanAcceptBytes = 4,
+ /// An error occurred on the steeam.
ErrorOccurred = 8,
+ /// The end of the stream has been reached.
EndEncountered = 16
}
// NSStream.h
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
[StructLayout (LayoutKind.Sequential)]
public struct CFStreamClientContext {
+ /// The version of this structure. Currently the only valid value is 0.
+ ///
+ ///
public nint Version; // CFIndex
+ /// User-defined data.
+ ///
+ ///
public /* void*/ IntPtr Info;
IntPtr retain;
IntPtr release;
@@ -156,22 +152,27 @@ static void CFReadStreamRef_InvokeCallback (IntPtr callback, IntPtr stream, CFSt
// CFIndex
[Native] // System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h
public enum CFStreamStatus : long {
+ /// To be added.
NotOpen = 0,
Opening,
+ /// To be added.
Open,
+ /// To be added.
Reading,
+ /// To be added.
Writing,
+ /// To be added.
AtEnd,
+ /// To be added.
Closed,
+ /// To be added.
Error
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public abstract class CFStream : CFType {
GCHandle gch;
CFRunLoop? loop;
@@ -180,7 +181,6 @@ public abstract class CFStream : CFType {
#region Stream Constructors
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -189,17 +189,10 @@ public abstract class CFStream : CFType {
[ObsoletedOSPlatform ("maccatalyst15.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("macos12.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("ios15.0", Constants.UseNetworkInstead)]
-#else
- [Deprecated (PlatformName.TvOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.iOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacCatalyst, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacOSX, 12, 0, message: Constants.UseNetworkInstead)]
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
internal unsafe extern static void CFStreamCreatePairWithSocket (/* CFAllocatorRef */ IntPtr allocator, CFSocketNativeHandle sock,
/* CFReadStreamRef* */ IntPtr* readStream, /* CFWriteStreamRef* */ IntPtr* writeStream);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -208,12 +201,6 @@ internal unsafe extern static void CFStreamCreatePairWithSocket (/* CFAllocatorR
[ObsoletedOSPlatform ("maccatalyst15.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("macos12.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("ios15.0", Constants.UseNetworkInstead)]
-#else
- [Deprecated (PlatformName.TvOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.iOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacCatalyst, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacOSX, 12, 0, message: Constants.UseNetworkInstead)]
-#endif
public static void CreatePairWithSocket (CFSocket socket, out CFReadStream readStream,
out CFWriteStream writeStream)
{
@@ -228,7 +215,6 @@ public static void CreatePairWithSocket (CFSocket socket, out CFReadStream readS
writeStream = new CFWriteStream (write, true);
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -237,18 +223,11 @@ public static void CreatePairWithSocket (CFSocket socket, out CFReadStream readS
[ObsoletedOSPlatform ("maccatalyst15.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("macos12.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("ios15.0", Constants.UseNetworkInstead)]
-#else
- [Deprecated (PlatformName.TvOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.iOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacCatalyst, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacOSX, 12, 0, message: Constants.UseNetworkInstead)]
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
internal unsafe extern static void CFStreamCreatePairWithPeerSocketSignature (/* CFAllocatorRef */ IntPtr allocator,
/* CFSocketSignature* */ CFSocketSignature* sig,
/* CFReadStreamRef* */ IntPtr* readStream, /* CFWriteStreamRef* */ IntPtr* writeStream);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -257,12 +236,6 @@ internal unsafe extern static void CFStreamCreatePairWithPeerSocketSignature (/*
[ObsoletedOSPlatform ("maccatalyst15.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("macos12.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("ios15.0", Constants.UseNetworkInstead)]
-#else
- [Deprecated (PlatformName.TvOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.iOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacCatalyst, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacOSX, 12, 0, message: Constants.UseNetworkInstead)]
-#endif
public static void CreatePairWithPeerSocketSignature (AddressFamily family, SocketType type,
ProtocolType proto, IPEndPoint endpoint,
out CFReadStream readStream,
@@ -280,7 +253,6 @@ public static void CreatePairWithPeerSocketSignature (AddressFamily family, Sock
}
// CFSocketStream.h in CFNetwork.framework (not CoreFoundation)
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -289,12 +261,6 @@ public static void CreatePairWithPeerSocketSignature (AddressFamily family, Sock
[ObsoletedOSPlatform ("maccatalyst15.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("macos12.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("ios15.0", Constants.UseNetworkInstead)]
-#else
- [Deprecated (PlatformName.TvOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.iOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacCatalyst, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacOSX, 12, 0, message: Constants.UseNetworkInstead)]
-#endif
[DllImport (Constants.CFNetworkLibrary)]
internal unsafe extern static void CFStreamCreatePairWithSocketToCFHost (
/* CFAllocatorRef __nullable */ IntPtr allocator,
@@ -302,7 +268,6 @@ internal unsafe extern static void CFStreamCreatePairWithSocketToCFHost (
/* CFReadStreamRef __nullable * __nullable */ IntPtr* readStream,
/* CFWriteStreamRef __nullable * __nullable */ IntPtr* writeStream);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -311,12 +276,6 @@ internal unsafe extern static void CFStreamCreatePairWithSocketToCFHost (
[ObsoletedOSPlatform ("maccatalyst15.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("macos12.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("ios15.0", Constants.UseNetworkInstead)]
-#else
- [Deprecated (PlatformName.TvOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.iOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacCatalyst, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacOSX, 12, 0, message: Constants.UseNetworkInstead)]
-#endif
public static void CreatePairWithSocketToHost (IPEndPoint endpoint,
out CFReadStream? readStream,
out CFWriteStream? writeStream)
@@ -332,7 +291,6 @@ public static void CreatePairWithSocketToHost (IPEndPoint endpoint,
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -341,18 +299,11 @@ public static void CreatePairWithSocketToHost (IPEndPoint endpoint,
[ObsoletedOSPlatform ("maccatalyst15.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("macos12.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("ios15.0", Constants.UseNetworkInstead)]
-#else
- [Deprecated (PlatformName.TvOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.iOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacCatalyst, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacOSX, 12, 0, message: Constants.UseNetworkInstead)]
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
unsafe extern static void CFStreamCreatePairWithSocketToHost (/* CFAllocatorRef */ IntPtr allocator,
/* CFStringRef */ IntPtr host, /* UInt32 */ int port,
/* CFReadStreamRef* */ IntPtr* readStream, /* CFWriteStreamRef* */ IntPtr* writeStream);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -361,12 +312,6 @@ unsafe extern static void CFStreamCreatePairWithSocketToHost (/* CFAllocatorRef
[ObsoletedOSPlatform ("maccatalyst15.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("macos12.0", Constants.UseNetworkInstead)]
[ObsoletedOSPlatform ("ios15.0", Constants.UseNetworkInstead)]
-#else
- [Deprecated (PlatformName.TvOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.iOS, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacCatalyst, 15, 0, message: Constants.UseNetworkInstead)]
- [Deprecated (PlatformName.MacOSX, 12, 0, message: Constants.UseNetworkInstead)]
-#endif
public static void CreatePairWithSocketToHost (string host, int port,
out CFReadStream? readStream,
out CFWriteStream? writeStream)
@@ -382,7 +327,6 @@ public static void CreatePairWithSocketToHost (string host, int port,
}
}
// CFHTTPStream.h in CFNetwork.framework (not CoreFoundation)
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -391,15 +335,10 @@ public static void CreatePairWithSocketToHost (string host, int port,
[ObsoletedOSPlatform ("ios9.0")]
[ObsoletedOSPlatform ("maccatalyst13.0")]
[ObsoletedOSPlatform ("tvos9.0")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0)]
- [Deprecated (PlatformName.MacOSX, 10, 11)]
-#endif
[DllImport (Constants.CFNetworkLibrary)]
internal extern static /* CFReadStreamRef __nonnull */ IntPtr CFReadStreamCreateForHTTPRequest (
/* CFAllocatorRef __nullable */ IntPtr alloc, /* CFHTTPMessageRef __nonnull */ IntPtr request);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -408,10 +347,6 @@ public static void CreatePairWithSocketToHost (string host, int port,
[ObsoletedOSPlatform ("ios9.0", "Use 'NSUrlSession' instead.")]
[ObsoletedOSPlatform ("maccatalyst13.0", "Use 'NSUrlSession' instead.")]
[ObsoletedOSPlatform ("tvos9.0", "Use 'NSUrlSession' instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use 'NSUrlSession' instead.")]
- [Deprecated (PlatformName.MacOSX, 10, 11, message: "Use 'NSUrlSession' instead.")]
-#endif
public static CFHTTPStream CreateForHTTPRequest (CFHTTPMessage request)
{
if (request is null)
@@ -422,7 +357,6 @@ public static CFHTTPStream CreateForHTTPRequest (CFHTTPMessage request)
}
// CFHTTPStream.h in CFNetwork.framework (not CoreFoundation)
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -431,16 +365,11 @@ public static CFHTTPStream CreateForHTTPRequest (CFHTTPMessage request)
[ObsoletedOSPlatform ("ios9.0")]
[ObsoletedOSPlatform ("maccatalyst13.0")]
[ObsoletedOSPlatform ("tvos9.0")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0)]
- [Deprecated (PlatformName.MacOSX, 10, 11)]
-#endif
[DllImport (Constants.CFNetworkLibrary)]
internal extern static /* CFReadStreamRef __nonnull */ IntPtr CFReadStreamCreateForStreamedHTTPRequest (
/* CFAllocatorRef __nullable */ IntPtr alloc, /* CFHTTPMessageRef __nonnull */ IntPtr requestHeaders,
/* CFReadStreamRef __nonnull */ IntPtr requestBody);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -449,10 +378,6 @@ public static CFHTTPStream CreateForHTTPRequest (CFHTTPMessage request)
[ObsoletedOSPlatform ("ios9.0", "Use 'NSUrlSession' instead.")]
[ObsoletedOSPlatform ("maccatalyst13.0", "Use 'NSUrlSession' instead.")]
[ObsoletedOSPlatform ("tvos9.0", "Use 'NSUrlSession' instead.")]
-#else
- [Deprecated (PlatformName.iOS, 9, 0, message: "Use 'NSUrlSession' instead.")]
- [Deprecated (PlatformName.MacOSX, 10, 11, message: "Use 'NSUrlSession' instead.")]
-#endif
public static CFHTTPStream CreateForStreamedHTTPRequest (CFHTTPMessage request, CFReadStream body)
{
if (request is null)
@@ -523,13 +448,9 @@ public void Close ()
return;
GetCheckedHandle ();
if (loop is not null) {
-#if NET8_0_OR_GREATER
unsafe {
DoSetClient ((delegate* unmanaged) null, (CFIndex) 0, IntPtr.Zero);
}
-#else
- DoSetClient (null, (CFIndex) 0, IntPtr.Zero);
-#endif
UnscheduleFromRunLoop (loop, loopMode);
loop = null;
loopMode = null;
@@ -576,12 +497,10 @@ internal void SetProperty (NSString name, INativeObject? value)
#region Events
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class StreamEventArgs : EventArgs {
public CFStreamEventType EventType {
get;
@@ -648,21 +567,13 @@ protected virtual void OnClosedEvent (StreamEventArgs args)
protected delegate void CFStreamCallback (IntPtr s, nint type, IntPtr info);
-#if NET8_0_OR_GREATER
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (CFStreamCallback))]
-#endif
static void NativeCallback (IntPtr s, nint type, IntPtr info)
{
var stream = GCHandle.FromIntPtr (info).Target as CFStream;
stream?.OnCallback ((CFStreamEventType) (long) type);
}
-#if !NET8_0_OR_GREATER
- static CFStreamCallback OnCallbackDelegate = NativeCallback;
-#endif
-
protected virtual void OnCallback (CFStreamEventType type)
{
var args = new StreamEventArgs (type);
@@ -709,13 +620,9 @@ public void EnableEvents (CFRunLoop runLoop, NSString runLoopMode)
try {
Marshal.StructureToPtr (ctx, ptr, false);
bool clientSet;
-#if NET8_0_OR_GREATER
unsafe {
clientSet = DoSetClient (&NativeCallback, (CFIndex) (long) args, ptr) != 0;
}
-#else
- clientSet = DoSetClient (OnCallbackDelegate, (CFIndex) (long) args, ptr);
-#endif
if (!clientSet)
throw new InvalidOperationException ("Stream does not support async events.");
} finally {
@@ -726,15 +633,12 @@ public void EnableEvents (CFRunLoop runLoop, NSString runLoopMode)
}
#if !XAMCORE_5_0
-#if NET8_0_OR_GREATER
[Obsolete ("Use the other overload.")]
[EditorBrowsable (EditorBrowsableState.Never)]
-#endif
protected abstract bool DoSetClient (CFStreamCallback? callback, CFIndex eventTypes,
IntPtr context);
#endif
-#if NET8_0_OR_GREATER
#if XAMCORE_5_0
unsafe protected abstract byte DoSetClient (delegate* unmanaged callback, CFIndex eventTypes, IntPtr context);
#else
@@ -743,16 +647,6 @@ unsafe protected virtual byte DoSetClient (delegate* unmanaged CFIndex -> CFURL.h
@@ -50,12 +46,10 @@ public enum CFUrlPathStyle : long {
};
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
// CFURL.h
public class CFUrl : NativeObject {
#if !COREBUILD
@@ -134,21 +128,17 @@ public string? FileSystemPath {
return CFString.FromHandle (CFURLCopyFileSystemPath (hcfurl, 0), true);
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
extern static /* Boolean */ byte CFURLIsFileReferenceURL (/* CFURLRef */IntPtr url);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
-#endif
public bool IsFileReference {
get {
return CFURLIsFileReferenceURL (Handle) != 0;
diff --git a/src/CoreFoundation/CFWriteStream.cs b/src/CoreFoundation/CFWriteStream.cs
index 86d5bd155e7d..292550e2fa0d 100644
--- a/src/CoreFoundation/CFWriteStream.cs
+++ b/src/CoreFoundation/CFWriteStream.cs
@@ -37,24 +37,14 @@
using ObjCRuntime;
using System.Runtime.Versioning;
-#if NET
using CFIndex = System.IntPtr;
-#else
-using CFIndex = System.nint;
-#endif
-
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class CFWriteStream : CFStream {
[Preserve (Conditional = true)]
internal CFWriteStream (NativeHandle handle, bool owns)
@@ -131,37 +121,23 @@ public unsafe int Write (byte [] buffer, nint offset, nint count)
}
[DllImport (Constants.CoreFoundationLibrary)]
-#if NET8_0_OR_GREATER
unsafe static extern /* Boolean */ byte CFWriteStreamSetClient (/* CFWriteStreamRef */ IntPtr stream, /* CFOptionFlags */ nint streamEvents,
/* CFWriteStreamClientCallBack */ delegate* unmanaged clientCB, /* CFStreamClientContext* */ IntPtr clientContext);
-#else
- [return: MarshalAs (UnmanagedType.I1)]
- static extern /* Boolean */ bool CFWriteStreamSetClient (/* CFWriteStreamRef */ IntPtr stream, /* CFOptionFlags */ nint streamEvents,
- /* CFWriteStreamClientCallBack */ CFStreamCallback? clientCB, /* CFStreamClientContext* */ IntPtr clientContext);
-#endif
#if !XAMCORE_5_0
-#if NET8_0_OR_GREATER
[Obsolete ("Use the other overload.")]
[EditorBrowsable (EditorBrowsableState.Never)]
-#endif
protected override bool DoSetClient (CFStreamCallback? callback, CFIndex eventTypes,
IntPtr context)
{
-#if NET8_0_OR_GREATER
throw new InvalidOperationException ($"Use the other overload.");
-#else
- return CFWriteStreamSetClient (Handle, (nint) eventTypes, callback, context);
-#endif
}
#endif // !XAMCORE_5_0
-#if NET8_0_OR_GREATER
unsafe protected override byte DoSetClient (delegate* unmanaged callback, CFIndex eventTypes, IntPtr context)
{
return CFWriteStreamSetClient (Handle, (nint) eventTypes, callback, context);
}
-#endif
[DllImport (Constants.CoreFoundationLibrary)]
extern static void CFWriteStreamScheduleWithRunLoop (/* CFWriteStreamRef */ IntPtr stream, /* CFRunLoopRef */ IntPtr runLoop, /* CFStringRef */ IntPtr runLoopMode);
diff --git a/src/CoreFoundation/CGAffineTransformComponents.cs b/src/CoreFoundation/CGAffineTransformComponents.cs
index 46d42b182b83..6a5ff280a23c 100644
--- a/src/CoreFoundation/CGAffineTransformComponents.cs
+++ b/src/CoreFoundation/CGAffineTransformComponents.cs
@@ -9,12 +9,10 @@
using CoreGraphics;
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
[StructLayout (LayoutKind.Sequential)]
// The name prefix suggests CoreGraphics and based on CF_DEFINES_CGAFFINETRANSFORMCOMPONENTS
// it could be defined in CoreGraphics but documented as CoreFoundation type
diff --git a/src/CoreFoundation/Dispatch.cs b/src/CoreFoundation/Dispatch.cs
index 10900d57ba52..9ba4dfbe0ebc 100644
--- a/src/CoreFoundation/Dispatch.cs
+++ b/src/CoreFoundation/Dispatch.cs
@@ -40,10 +40,6 @@
using ObjCRuntime;
using Foundation;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
// The native constants are defined in usr/include/dispatch/queue.h, but since they're
@@ -66,12 +62,10 @@ public enum DispatchQualityOfService : uint {
Unspecified = 0x00,
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public abstract class DispatchObject : NativeObject {
#if !COREBUILD
//
@@ -103,51 +97,6 @@ protected internal override void Release ()
dispatch_release (Handle);
}
-#if !NET
- public static bool operator == (DispatchObject a, DispatchObject b)
- {
- if (a is null)
- return b is null;
- else if (b is null)
- return false;
-
- return a.Handle == b.Handle;
- }
-
- public static bool operator != (DispatchObject a, DispatchObject b)
- {
- if (a is null)
- return b is not null;
- else if (b is null)
- return true;
- return a.Handle != b.Handle;
- }
-
- // For the .net profile `DisposableObject` implements both
- // `Equals` and `GetHashCode` based on the Handle property.
- public override bool Equals (object other)
- {
- var od = other as DispatchQueue;
- if (od is null)
- return false;
- return od.Handle == Handle;
- }
-
- public override int GetHashCode ()
- {
- return ((IntPtr) Handle).ToInt32 ();
- }
-#endif
-
-#if !NET
- [EditorBrowsable (EditorBrowsableState.Never)]
- [Obsolete ("Use 'GetCheckedHandle' instead.")]
- protected void Check ()
- {
- GetCheckedHandle ();
- }
-#endif
-
[DllImport (Constants.libcLibrary)]
extern static void dispatch_set_target_queue (/* dispatch_object_t */ IntPtr queue, /* dispatch_queue_t */ IntPtr target);
@@ -164,34 +113,28 @@ public void SetTargetQueue (DispatchQueue queue)
[DllImport (Constants.libcLibrary)]
internal extern static void dispatch_suspend (IntPtr o);
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
-#endif
public void Activate ()
{
dispatch_activate (GetCheckedHandle ());
}
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
-#endif
[DllImport (Constants.libcLibrary)]
extern static void dispatch_activate (/* dispatch_object_t */ IntPtr @object);
#endif // !COREBUILD
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public sealed class DispatchQueue : DispatchObject {
#if !COREBUILD
[Preserve (Conditional = true)]
@@ -199,12 +142,6 @@ internal DispatchQueue (NativeHandle handle, bool owns) : base (handle, owns)
{
}
-#if !NET
- public DispatchQueue (NativeHandle handle) : base (handle, false)
- {
- }
-#endif
-
public DispatchQueue (string label)
: base (dispatch_queue_create (label, IntPtr.Zero), true)
{
@@ -228,12 +165,10 @@ public DispatchQueue (string label, bool concurrent)
throw new Exception ("Error creating dispatch queue");
}
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
-#endif
public DispatchQueue (string label, Attributes attributes, DispatchQueue? target = null)
: base (dispatch_queue_create_with_target (label, attributes?.Create () ?? IntPtr.Zero, target.GetHandle ()), true)
{
@@ -249,12 +184,10 @@ public string? Label {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public static string? CurrentQueueLabel {
get {
return Marshal.PtrToStringAnsi (dispatch_queue_get_label (IntPtr.Zero));
@@ -277,13 +210,8 @@ public void Resume ()
[DllImport (Constants.libcLibrary)]
extern static void dispatch_set_context (IntPtr o, IntPtr ctx);
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_apply_f (IntPtr iterations, IntPtr queue, IntPtr ctx, delegate* unmanaged dispatch);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_apply_f (IntPtr iterations, IntPtr queue, IntPtr ctx, dispatch_callback_iterations_t dispatch);
-#endif
public IntPtr Context {
get {
@@ -294,17 +222,12 @@ public IntPtr Context {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
[ObsoletedOSPlatform ("macos10.9")]
[ObsoletedOSPlatform ("ios6.0")]
-#else
- [Deprecated (PlatformName.iOS, 6, 0)]
- [Deprecated (PlatformName.MacOSX, 10, 9)]
-#endif
public static DispatchQueue CurrentQueue {
get {
return new DispatchQueue (dispatch_get_current_queue (), false);
@@ -344,21 +267,8 @@ public static DispatchQueue MainQueue {
//
// Dispatching
//
-#if !NET
- internal delegate void dispatch_callback_t (IntPtr context);
- internal static readonly dispatch_callback_t static_dispatch = static_dispatcher_to_managed;
-
- internal delegate void dispatch_callback_iterations_t (IntPtr context, IntPtr count);
- internal static readonly dispatch_callback_iterations_t static_dispatch_iterations = static_dispatcher_iterations_to_managed;
-#endif
-
-#if NET
[UnmanagedCallersOnly]
internal static void static_dispatcher_to_managed (IntPtr context)
-#else
- [MonoPInvokeCallback (typeof (dispatch_callback_t))]
- static void static_dispatcher_to_managed (IntPtr context)
-#endif
{
GCHandle gch = GCHandle.FromIntPtr (context);
var obj = gch.Target as Tuple;
@@ -385,11 +295,7 @@ static void static_dispatcher_to_managed (IntPtr context)
}
-#if NET
[UnmanagedCallersOnly]
-#else
- [MonoPInvokeCallback (typeof (dispatch_callback_iterations_t))]
-#endif
static void static_dispatcher_iterations_to_managed (IntPtr context, IntPtr count)
{
GCHandle gch = GCHandle.FromIntPtr (context);
@@ -416,13 +322,8 @@ static void static_dispatcher_iterations_to_managed (IntPtr context, IntPtr coun
}
}
-#if !NET
- internal static readonly dispatch_callback_t free_gchandle = static_free_gchandle;
- [MonoPInvokeCallback (typeof (dispatch_callback_t))]
-#else
[UnmanagedCallersOnly]
-#endif
static void static_free_gchandle (IntPtr context)
{
GCHandle.FromIntPtr (context).Free ();
@@ -432,13 +333,9 @@ public void DispatchAsync (Action action)
{
if (action is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (action));
-#if NET
unsafe {
dispatch_async_f (Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), &static_dispatcher_to_managed);
}
-#else
- dispatch_async_f (Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), static_dispatch);
-#endif
}
public void DispatchAsync (DispatchBlock block)
@@ -454,13 +351,9 @@ public void DispatchSync (Action action)
if (action is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (action));
-#if NET
unsafe {
dispatch_sync_f (Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), &static_dispatcher_to_managed);
}
-#else
- dispatch_sync_f (Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), static_dispatch);
-#endif
}
public void DispatchSync (DispatchBlock block)
@@ -476,13 +369,9 @@ public void DispatchBarrierAsync (Action action)
if (action is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (action));
-#if NET
unsafe {
dispatch_barrier_async_f (Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), &static_dispatcher_to_managed);
}
-#else
- dispatch_barrier_async_f (Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), static_dispatch);
-#endif
}
public void DispatchBarrierAsync (DispatchBlock block)
@@ -498,13 +387,9 @@ public void DispatchBarrierSync (Action action)
if (action is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (action));
-#if NET
unsafe {
dispatch_barrier_sync_f (Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), &static_dispatcher_to_managed);
}
-#else
- dispatch_barrier_sync_f (Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), static_dispatch);
-#endif
}
public void DispatchBarrierSync (DispatchBlock block)
@@ -519,13 +404,9 @@ public void DispatchAfter (DispatchTime when, Action action)
{
if (action is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (action));
-#if NET
unsafe {
dispatch_after_f (when.Nanoseconds, Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), &static_dispatcher_to_managed);
}
-#else
- dispatch_after_f (when.Nanoseconds, Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), static_dispatch);
-#endif
}
public void DispatchAfter (DispatchTime when, DispatchBlock block)
@@ -540,24 +421,16 @@ public void Submit (Action action, long times)
{
if (action is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (action));
-#if NET
unsafe {
dispatch_apply_f ((IntPtr) times, Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), &static_dispatcher_iterations_to_managed);
}
-#else
- dispatch_apply_f ((IntPtr) times, Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, this)), static_dispatch_iterations);
-#endif
}
public void SetSpecific (IntPtr key, object context)
{
-#if NET
unsafe {
dispatch_queue_set_specific (GetCheckedHandle (), key, (IntPtr) GCHandle.Alloc (context), &static_free_gchandle);
}
-#else
- dispatch_queue_set_specific (GetCheckedHandle (), key, (IntPtr) GCHandle.Alloc (context), free_gchandle);
-#endif
}
public object? GetSpecific (IntPtr key)
@@ -566,12 +439,10 @@ public void SetSpecific (IntPtr key, object context)
return gchandle.Target;
}
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
-#endif
public DispatchQualityOfService GetQualityOfService (out int relative_priority)
{
unsafe {
@@ -580,12 +451,10 @@ public DispatchQualityOfService GetQualityOfService (out int relative_priority)
}
}
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
-#endif
public DispatchQualityOfService QualityOfService {
get {
unsafe {
@@ -605,12 +474,10 @@ static IntPtr dispatch_queue_create (string label, IntPtr attr)
[DllImport (Constants.libcLibrary)]
extern static IntPtr dispatch_queue_create (IntPtr label, IntPtr attr);
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
-#endif
static IntPtr dispatch_queue_create_with_target (string label, IntPtr attr, IntPtr target)
{
using var labelPtr = new TransientString (label);
@@ -620,72 +487,42 @@ static IntPtr dispatch_queue_create_with_target (string label, IntPtr attr, IntP
[DllImport (Constants.libcLibrary, EntryPoint = "dispatch_queue_create_with_target$V2")]
extern static IntPtr dispatch_queue_create_with_target (IntPtr label, IntPtr attr, IntPtr target);
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_async_f (IntPtr queue, IntPtr context, delegate* unmanaged dispatch);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_async_f (IntPtr queue, IntPtr context, dispatch_callback_t dispatch);
-#endif
[DllImport (Constants.libcLibrary)]
extern static void dispatch_async (IntPtr queue, IntPtr block);
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_sync_f (IntPtr queue, IntPtr context, delegate* unmanaged dispatch);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_sync_f (IntPtr queue, IntPtr context, dispatch_callback_t dispatch);
-#endif
[DllImport (Constants.libcLibrary)]
extern static void dispatch_sync (IntPtr queue, IntPtr block);
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_barrier_async_f (IntPtr queue, IntPtr context, delegate* unmanaged dispatch);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_barrier_async_f (IntPtr queue, IntPtr context, dispatch_callback_t dispatch);
-#endif
[DllImport (Constants.libcLibrary)]
extern static void dispatch_barrier_async (IntPtr queue, IntPtr block);
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_barrier_sync_f (IntPtr queue, IntPtr context, delegate* unmanaged dispatch);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_barrier_sync_f (IntPtr queue, IntPtr context, dispatch_callback_t dispatch);
-#endif
[DllImport (Constants.libcLibrary)]
extern static void dispatch_barrier_sync (IntPtr queue, IntPtr block);
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_after_f (/* dispath_time_t */ ulong time, IntPtr queue, IntPtr context, delegate* unmanaged dispatch);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_after_f (/* dispath_time_t */ ulong time, IntPtr queue, IntPtr context, dispatch_callback_t dispatch);
-#endif
[DllImport (Constants.libcLibrary)]
extern static void dispatch_after (/* dispath_time_t */ ulong time, IntPtr queue, IntPtr block);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
[ObsoletedOSPlatform ("macos10.9")]
[ObsoletedOSPlatform ("ios6.0")]
-#else
- [Deprecated (PlatformName.iOS, 6, 0)]
- [Deprecated (PlatformName.MacOSX, 10, 9)]
-#endif
[DllImport (Constants.libcLibrary)]
extern static IntPtr dispatch_get_current_queue ();
@@ -697,58 +534,19 @@ static IntPtr dispatch_queue_create_with_target (string label, IntPtr attr, IntP
// this returns a "const char*" so we cannot make a string out of it since it will be freed (and crash)
extern static IntPtr dispatch_queue_get_label (IntPtr queue);
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_queue_set_specific (IntPtr queue, /* const void* */ IntPtr key, /* void *_Nullable */ IntPtr context, delegate* unmanaged /* _Nullable */ destructor);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_queue_set_specific (IntPtr queue, /* const void* */ IntPtr key, /* void *_Nullable */ IntPtr context, dispatch_callback_t /* _Nullable */ destructor);
-#endif
[DllImport (Constants.libcLibrary)]
extern static IntPtr dispatch_queue_get_specific (IntPtr queue, /* const void* */ IntPtr key);
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
-#endif
[DllImport (Constants.libcLibrary)]
unsafe extern static /* dispatch_qos_class_t */ DispatchQualityOfService dispatch_queue_get_qos_class (/* dispatch_queue_t */ IntPtr queue, /* int *_Nullable */ int* relative_priority);
-#if !NET
- // For the .net profile `DisposableObject` implements both
- // `Equals` and `GetHashCode` based on the Handle property.
- public override bool Equals (object other)
- {
- if (other is DispatchQueue o)
- return (o.Handle == Handle);
- return false;
- }
-#endif
-
-#if !NET
- public static bool operator == (DispatchQueue left, DispatchQueue right)
- {
- if (left is null)
- return right is null;
- return left.Equals (right);
- }
-
- public static bool operator != (DispatchQueue left, DispatchQueue right)
- {
- if (left is null)
- return right is not null;
- return !left.Equals (right);
- }
-
- public override int GetHashCode ()
- {
- return ((IntPtr) Handle).ToInt32 ();
- }
-#endif
-
#if MONOMAC
//
// Not to be used by apps that use UIApplicationMain, NSApplicationMain or CFRunLoopRun,
@@ -766,36 +564,28 @@ public static void MainIteration ()
public class Attributes {
public bool Concurrent { get; set; }
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
-#endif
public bool IsInitiallyInactive { get; set; }
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
-#endif
public AutoreleaseFrequency? AutoreleaseFrequency { get; set; }
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
-#endif
public int RelativePriority { get; set; }
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
-#endif
public DispatchQualityOfService? QualityOfService { get; set; }
internal IntPtr Create ()
@@ -817,36 +607,28 @@ internal IntPtr Create ()
return rv;
}
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
-#endif
[DllImport (Constants.libcLibrary)]
static extern /* dispatch_queue_attr_t */ IntPtr dispatch_queue_attr_make_initially_inactive (/* dispatch_queue_attr_t _Nullable */ IntPtr attr);
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
-#endif
[DllImport (Constants.libcLibrary)]
static extern /* dispatch_queue_attr_t */ IntPtr dispatch_queue_attr_make_with_autorelease_frequency (/* dispatch_queue_attr_t _Nullable */ IntPtr attr, /* dispatch_autorelease_frequency_t */ nuint frequency);
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
-#endif
[DllImport (Constants.libcLibrary)]
static extern /* dispatch_queue_attr_t */ IntPtr dispatch_queue_attr_make_with_qos_class (/* dispatch_queue_attr_t _Nullable */ IntPtr attr, /* dispatch_qos_class_t */ DispatchQualityOfService qos_class, int relative_priority);
}
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
-#endif
[Native]
public enum AutoreleaseFrequency : ulong /* unsigned long */
{
@@ -859,12 +641,10 @@ public enum AutoreleaseFrequency : ulong /* unsigned long */
// Some insights from: https://opensource.apple.com/source/libdispatch/libdispatch-442.1.4/src/time.c
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public struct DispatchTime {
#if !COREBUILD
public static readonly DispatchTime Now = new DispatchTime ();
@@ -906,12 +686,10 @@ public DispatchTime WallTime {
#endif // !COREBUILD
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class DispatchGroup : DispatchObject {
#if !COREBUILD
[Preserve (Conditional = true)]
@@ -941,13 +719,9 @@ public void DispatchAsync (DispatchQueue queue, Action action)
if (action is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (action));
-#if NET
unsafe {
dispatch_group_async_f (GetCheckedHandle (), queue.Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, queue)), &DispatchQueue.static_dispatcher_to_managed);
}
-#else
- dispatch_group_async_f (GetCheckedHandle (), queue.Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, queue)), DispatchQueue.static_dispatch);
-#endif
}
public void Notify (DispatchQueue queue, DispatchBlock block)
@@ -965,13 +739,9 @@ public void Notify (DispatchQueue queue, Action action)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (queue));
if (action is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (action));
-#if NET
unsafe {
dispatch_group_notify_f (GetCheckedHandle (), queue.Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, queue)), &DispatchQueue.static_dispatcher_to_managed);
}
-#else
- dispatch_group_notify_f (GetCheckedHandle (), queue.Handle, (IntPtr) GCHandle.Alloc (Tuple.Create (action, queue)), DispatchQueue.static_dispatch);
-#endif
}
public void Enter ()
@@ -997,21 +767,11 @@ public bool Wait (TimeSpan timeout)
[DllImport (Constants.libcLibrary)]
extern static IntPtr dispatch_group_create ();
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_group_async_f (IntPtr group, IntPtr queue, IntPtr context, delegate* unmanaged block);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_group_async_f (IntPtr group, IntPtr queue, IntPtr context, DispatchQueue.dispatch_callback_t block);
-#endif
-#if NET
[DllImport (Constants.libcLibrary)]
extern unsafe static void dispatch_group_notify_f (IntPtr group, IntPtr queue, IntPtr context, delegate* unmanaged block);
-#else
- [DllImport (Constants.libcLibrary)]
- extern static void dispatch_group_notify_f (IntPtr group, IntPtr queue, IntPtr context, DispatchQueue.dispatch_callback_t block);
-#endif
[DllImport (Constants.libcLibrary)]
extern static void dispatch_group_notify (IntPtr group, IntPtr queue, IntPtr block);
diff --git a/src/CoreFoundation/DispatchBlock.cs b/src/CoreFoundation/DispatchBlock.cs
index 2f7d34995f7a..2929187bf3d0 100644
--- a/src/CoreFoundation/DispatchBlock.cs
+++ b/src/CoreFoundation/DispatchBlock.cs
@@ -16,19 +16,13 @@
using ObjCRuntime;
using Foundation;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
#if !COREBUILD
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("tvos")]
-#endif
public sealed class DispatchBlock : NativeObject {
[Preserve (Conditional = true)]
internal DispatchBlock (NativeHandle handle, bool owns)
diff --git a/src/CoreFoundation/DispatchData.cs b/src/CoreFoundation/DispatchData.cs
index 330e1f7a6b17..098ad35f7c3c 100644
--- a/src/CoreFoundation/DispatchData.cs
+++ b/src/CoreFoundation/DispatchData.cs
@@ -35,29 +35,15 @@
using ObjCRuntime;
using Foundation;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
public partial class DispatchData : DispatchObject {
#if !COREBUILD
[Preserve (Conditional = true)]
-#if NET
internal DispatchData (NativeHandle handle, bool owns) : base (handle, owns)
-#else
- public DispatchData (NativeHandle handle, bool owns) : base (handle, owns)
-#endif
{
}
-#if !NET
- public DispatchData (NativeHandle handle) : base (handle, false)
- {
- }
-#endif
-
[DllImport (Constants.libcLibrary)]
extern static IntPtr dispatch_data_create (IntPtr buffer, nuint size, IntPtr dispatchQueue, IntPtr destructor);
diff --git a/src/CoreFoundation/DispatchIO.cs b/src/CoreFoundation/DispatchIO.cs
index ec3c3b5ebc7e..3d1269d0c91e 100644
--- a/src/CoreFoundation/DispatchIO.cs
+++ b/src/CoreFoundation/DispatchIO.cs
@@ -40,41 +40,21 @@
using ObjCRuntime;
using Foundation;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
public delegate void DispatchIOHandler (DispatchData? data, int error);
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class DispatchIO : DispatchObject {
[Preserve (Conditional = true)]
internal DispatchIO (NativeHandle handle, bool owns) : base (handle, owns)
{
}
-#if !NET
- [Preserve (Conditional = true)]
- internal DispatchIO (NativeHandle handle) : this (handle, false)
- {
- }
-#endif
-
-#if !NET
- delegate void DispatchReadWrite (IntPtr block, IntPtr dispatchData, int error);
- static DispatchReadWrite static_DispatchReadWriteHandler = Trampoline_DispatchReadWriteHandler;
-
- [MonoPInvokeCallback (typeof (DispatchReadWrite))]
-#else
[UnmanagedCallersOnly]
-#endif
static void Trampoline_DispatchReadWriteHandler (IntPtr block, IntPtr dispatchData, int error)
{
var del = BlockLiteral.GetTarget (block);
@@ -99,13 +79,8 @@ public static void Read (int fd, nuint size, DispatchQueue dispatchQueue, Dispat
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (dispatchQueue));
unsafe {
-#if NET
delegate* unmanaged trampoline = &Trampoline_DispatchReadWriteHandler;
using var block = new BlockLiteral (trampoline, handler, typeof (DispatchIO), nameof (Trampoline_DispatchReadWriteHandler));
-#else
- using var block = new BlockLiteral ();
- block.SetupBlockUnsafe (static_DispatchReadWriteHandler, handler);
-#endif
dispatch_read (fd, size, dispatchQueue.Handle, &block);
}
}
@@ -124,13 +99,8 @@ public static void Write (int fd, DispatchData dispatchData, DispatchQueue dispa
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (dispatchQueue));
unsafe {
-#if NET
delegate* unmanaged trampoline = &Trampoline_DispatchReadWriteHandler;
using var block = new BlockLiteral (trampoline, handler, typeof (DispatchIO), nameof (Trampoline_DispatchReadWriteHandler));
-#else
- using var block = new BlockLiteral ();
- block.SetupBlockUnsafe (static_DispatchReadWriteHandler, handler);
-#endif
dispatch_write (fd, dispatchData.Handle, dispatchQueue.Handle, &block);
}
}
diff --git a/src/CoreFoundation/DispatchSource.cs b/src/CoreFoundation/DispatchSource.cs
index 5962bd1813b6..25bc548368a3 100644
--- a/src/CoreFoundation/DispatchSource.cs
+++ b/src/CoreFoundation/DispatchSource.cs
@@ -21,10 +21,6 @@
using dispatch_source_t = System.IntPtr;
using dispatch_queue_t = System.IntPtr;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
[Flags]
@@ -53,12 +49,10 @@ public enum VnodeMonitorKind : uint {
Revoke = 0x40,
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class DispatchSource : DispatchObject {
DispatchQueue? queue;
@@ -68,13 +62,6 @@ internal DispatchSource (NativeHandle handle, bool owns) : base (handle, owns)
{
}
-#if !NET
- // constructors for use in bindings
- internal DispatchSource (NativeHandle handle) : base (handle, false)
- {
- }
-#endif
-
// Invoked by subclasses in this file that fully initialize both
// queue and handle
internal DispatchSource () { }
@@ -225,12 +212,10 @@ public bool IsCanceled {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class Data : DispatchSource {
internal Data () { }
internal Data (IntPtr handle, bool owns) : base (handle, owns) { }
@@ -247,12 +232,10 @@ public IntPtr PendingData {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class DataAdd : Data {
static IntPtr type_data_add;
@@ -274,12 +257,10 @@ public DataAdd (DispatchQueue? queue = null)
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class DataOr : Data {
static IntPtr type_data_or;
@@ -300,12 +281,10 @@ public DataOr (DispatchQueue? queue = null)
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class Mach : DispatchSource {
internal Mach (IntPtr handle, bool owns) : base (handle, owns) { }
internal Mach (IntPtr handle) : base (handle, false) { }
@@ -319,12 +298,10 @@ public int MachPort {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class MachSend : Mach {
static IntPtr type_mach_send;
@@ -350,12 +327,11 @@ public bool SendRightsDestroyed {
}
}
}
-#if NET
+
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class MachReceive : DispatchSource {
static IntPtr type_mach_recv;
@@ -377,12 +353,10 @@ public MachReceive (int machPort, DispatchQueue? queue = null)
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class MemoryPressure : DispatchSource {
static IntPtr type_memorypressure;
public MemoryPressure (IntPtr handle, bool owns) : base (handle, owns) { }
@@ -408,12 +382,10 @@ public MemoryPressureFlags PressureFlags {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class ProcessMonitor : DispatchSource {
static IntPtr type_proc;
@@ -446,12 +418,10 @@ public ProcessMonitorFlags MonitorFlags {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class ReadMonitor : DispatchSource {
static IntPtr type_read;
public ReadMonitor (IntPtr handle, bool owns) : base (handle, owns) { }
@@ -483,12 +453,10 @@ public int BytesAvailable {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class SignalMonitor : DispatchSource {
static IntPtr type_signal;
public SignalMonitor (IntPtr handle, bool owns) : base (handle, owns) { }
@@ -519,12 +487,10 @@ public int SignalsDelivered {
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class Timer : DispatchSource {
static IntPtr type_timer;
public Timer (IntPtr handle, bool owns) : base (handle, owns) { }
@@ -558,12 +524,10 @@ public void SetTimer (DispatchTime time, long nanosecondInterval, long nanosecon
}
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class VnodeMonitor : DispatchSource {
static IntPtr type_vnode;
@@ -638,12 +602,10 @@ public VnodeMonitorKind ObservedEvents {
}
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public class WriteMonitor : DispatchSource {
static IntPtr type_write;
public WriteMonitor (IntPtr handle, bool owns) : base (handle, owns) { }
diff --git a/src/CoreFoundation/NativeObject.cs b/src/CoreFoundation/NativeObject.cs
index 433f47b2a1d0..f0131b5c5d3a 100644
--- a/src/CoreFoundation/NativeObject.cs
+++ b/src/CoreFoundation/NativeObject.cs
@@ -16,10 +16,6 @@
#nullable enable
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
//
// The NativeObject class is intended to be a base class for many CoreFoundation
@@ -33,12 +29,10 @@ namespace CoreFoundation {
// base class to be reused for other patterns that use other retain/release
// systems.
//
-#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
-#endif
public abstract class NativeObject : DisposableObject {
protected NativeObject ()
{
diff --git a/src/CoreFoundation/OSLog.cs b/src/CoreFoundation/OSLog.cs
index 1fb5f2663ac0..1c597c18e07d 100644
--- a/src/CoreFoundation/OSLog.cs
+++ b/src/CoreFoundation/OSLog.cs
@@ -29,18 +29,12 @@
using System.Runtime.InteropServices;
using System.Collections.Generic;
-#if !NET
-using NativeHandle = System.IntPtr;
-#endif
-
namespace CoreFoundation {
-#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
-#endif
public sealed class OSLog : NativeObject {
static OSLog? _default;
@@ -69,13 +63,8 @@ protected internal override void Release ()
os_release (Handle);
}
-#if NET
[DllImport (Constants.libSystemLibrary)]
extern static IntPtr os_log_create (IntPtr subsystem, IntPtr category);
-#else
- [DllImport (Constants.libSystemLibrary)]
- extern static IntPtr os_log_create (string subsystem, string category);
-#endif
[DllImport (Constants.libSystemLibrary)]
extern static IntPtr os_retain (IntPtr handle);
@@ -98,13 +87,9 @@ public OSLog (string subsystem, string category)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (subsystem));
if (category is null)
ObjCRuntime.ThrowHelper.ThrowArgumentNullException (nameof (category));
-#if NET
using var subsystemPtr = new TransientString (subsystem);
using var categoryPtr = new TransientString (category);
Handle = os_log_create (subsystemPtr, categoryPtr);
-#else
- Handle = os_log_create (subsystem, category);
-#endif
}
public void Log (string message)
diff --git a/src/CoreLocation/CLEnums.cs b/src/CoreLocation/CLEnums.cs
index 8286809a7ddd..6b64470c3a42 100644
--- a/src/CoreLocation/CLEnums.cs
+++ b/src/CoreLocation/CLEnums.cs
@@ -40,32 +40,53 @@ namespace CoreLocation {
/// Errors returned by the CLLocationManager.
[Native]
public enum CLError : long {
+ /// The location could not be determined.
LocationUnknown = 0,
+ /// Access to the location service was denied by the user.
Denied,
+ /// The network is unavailable.
Network,
+ /// The heading could not be determined.
HeadingFailure,
+ /// Region monitoring was disallowed by the user.
RegionMonitoringDenied,
+ /// Region monitoring failed.
RegionMonitoringFailure,
+ /// Region monitoring could not be configured immediately.
RegionMonitoringSetupDelayed,
// ios5 osx10.8
+ /// Although region monitoring is available, events may be delayed.
RegionMonitoringResponseDelayed,
// ios5 osx10.7
+ /// The geocoding was unsuccessful.
GeocodeFoundNoResult,
// ios5 osx10.8
+ /// The geocoding was only partially successful.
GeocodeFoundPartialResult,
// ios5 osx10.7
+ /// The geocoding request was canceled.
GeocodeCanceled,
// ios6
+ /// The attempt to switch to deferred mode failed. Application developers may try again on devices that have a GPS device.
DeferredFailed,
+ /// The did not enter deferred mode because location updates were already paused or disabled.
DeferredNotUpdatingLocation,
+ /// Deferred mode is not available for the requested accuracy.
+ ///
+ /// For deferred mode, the accuracy must be or .
+ ///
DeferredAccuracyTooLow,
+ /// Deferred mode does not allow distance filters. The must be set to .
DeferredDistanceFiltered,
+ /// The application's request for deferred location notices has been canceled.
DeferredCanceled,
// ios7
+ /// An error occurred during ranging.
RangingFailure,
+ /// Ranging is not available.
RangingUnavailable,
// ios14
@@ -78,26 +99,39 @@ public enum CLError : long {
// untyped enum -> CLLocationManager.h
/// An enumeration whose values represent the device's physical orientation.
public enum CLDeviceOrientation : uint {
+ /// The device's orientation is unavailable.
Unknown,
+ /// The device is in an upright position, with the home button towards the ground.
Portrait,
+ /// The device is in an upright position, with the home button towards the sky.
PortraitUpsideDown,
+ /// The device is in an upright position, with the home button to the right.
LandscapeLeft,
+ /// The device is in an upright position, with the home button to the left.
LandscapeRight,
+ /// The device is parallel to the ground and the face is pointing towards the sky.
FaceUp,
+ /// The device is parallel to the ground and the face is pointing towards the ground.
FaceDown
}
// untyped enum -> CLLocationManager.h
/// An enumeration whose values specify the current status of authorization to use location services.
public enum CLAuthorizationStatus : uint {
+ /// The user has not yet chosen whether to allow location services.
NotDetermined = 0,
+ /// Location services are not available and the user cannot change the authorization (e.g., constrained by parental controls).
Restricted,
+ /// The app is not allowed to use location services.
Denied,
+ /// Developers should not use this deprecated field. Developers should use 'AuthorizedAlways' instead.
[Deprecated (PlatformName.iOS, 8, 0, message: "Use 'AuthorizedAlways' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'AuthorizedAlways' instead.")]
Authorized,
+ /// To be added.
AuthorizedAlways = Authorized,
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 13, 0)]
AuthorizedWhenInUse,
}
@@ -109,10 +143,18 @@ public enum CLAuthorizationStatus : uint {
///
[Native]
public enum CLActivityType : long {
+ /// Indicates that the activity type is unknown.
Other = 1,
+ /// Indicates that the app is engaged in navigating an automobile. (Use for other vehicle types.)
AutomotiveNavigation,
+ /// Indicates fitness and all walking activities.
Fitness,
+ /// Indicates that the app is involved in navigation, but not in a car.
+ ///
+ /// This value should be used for tracking motion in, e.g., trains, planes, and boats.
+ ///
OtherNavigation,
+ /// To be added.
[MacCatalyst (13, 1)]
Airborne,
}
diff --git a/src/CoreLocation/CoreLocation.cs b/src/CoreLocation/CoreLocation.cs
index 42a22f8899a4..836c75ed368b 100644
--- a/src/CoreLocation/CoreLocation.cs
+++ b/src/CoreLocation/CoreLocation.cs
@@ -54,7 +54,11 @@ namespace CoreLocation {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct CLLocationCoordinate2D {
+ /// Latitude in degrees. Positive values are north of the equator, negative values are south of the equator.
+ /// To be added.
public /* CLLocationDegrees */ double Latitude;
+ /// Longitude in degrees.
+ /// The value is relative to the zero meridian. Positive values point east, negative values point west.
public /* CLLocationDegrees */ double Longitude;
public CLLocationCoordinate2D (double latitude, double longitude)
diff --git a/src/CoreML/MLMultiArray.cs b/src/CoreML/MLMultiArray.cs
index 6bbee41854d2..d90c8e84144a 100644
--- a/src/CoreML/MLMultiArray.cs
+++ b/src/CoreML/MLMultiArray.cs
@@ -66,12 +66,40 @@ public void SetObject (NSNumber obj, params nint [] indices)
SetObjectInternal (obj, arr.GetHandle ());
}
+ /// The dimensions of the array.
+ /// To be added.
+ /// To be added.
public nint [] Shape {
get {
return ConvertArray (_Shape);
}
}
+ /// The number of elements to skip to advance an index value by one in the chosen direction.
+ /// To be added.
+ ///
+ ///
+ /// objects can be treated as one-dimensional arrays. The property retrieves the number of elements in a one-dimensional array that are necessary to "skip over" in order to advance by 1 in the desired dimension.
+ ///
+ ///
+ ///
+ ///
public nint [] Strides {
get {
return ConvertArray (_Strides);
diff --git a/src/CoreML/MLMultiArrayConstraint.cs b/src/CoreML/MLMultiArrayConstraint.cs
index 151fb3c24bfc..6715247a710f 100644
--- a/src/CoreML/MLMultiArrayConstraint.cs
+++ b/src/CoreML/MLMultiArrayConstraint.cs
@@ -15,6 +15,9 @@
namespace CoreML {
public partial class MLMultiArrayConstraint {
+ /// Gets an array of array dimensions for the multidimensional arrays.
+ /// To be added.
+ /// To be added.
public nint [] Shape {
get {
return MLMultiArray.ConvertArray (_Shape);
diff --git a/src/CoreMidi/MidiCIDeviceIdentification.cs b/src/CoreMidi/MidiCIDeviceIdentification.cs
index a1a233c31e70..fcfae401c7c4 100644
--- a/src/CoreMidi/MidiCIDeviceIdentification.cs
+++ b/src/CoreMidi/MidiCIDeviceIdentification.cs
@@ -22,14 +22,24 @@ namespace CoreMidi {
[NativeName ("MIDICIDeviceIdentification")]
[StructLayout (LayoutKind.Sequential)]
public struct MidiCIDeviceIdentification {
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.ByValArray, SizeConst = 3)]
public byte [] Manufacturer;
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.ByValArray, SizeConst = 2)]
public byte [] Family;
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.ByValArray, SizeConst = 2)]
public byte [] ModelNumber;
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.ByValArray, SizeConst = 4)]
public byte [] RevisionLevel;
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.ByValArray, SizeConst = 5)]
public byte [] Reserved;
}
diff --git a/src/CoreMidi/MidiServices.cs b/src/CoreMidi/MidiServices.cs
index 3abb0a018065..0ec82e874cd5 100644
--- a/src/CoreMidi/MidiServices.cs
+++ b/src/CoreMidi/MidiServices.cs
@@ -59,21 +59,37 @@ namespace CoreMidi {
// anonymous enum - MIDIServices.h
public enum MidiError : int {
+ /// To be added.
Ok = 0,
+ /// To be added.
InvalidClient = -10830,
+ /// To be added.
InvalidPort = -10831,
+ /// To be added.
WrongEndpointType = -10832,
+ /// To be added.
NoConnection = -10833,
+ /// To be added.
UnknownEndpoint = -10834,
+ /// To be added.
UnknownProperty = -10835,
+ /// To be added.
WrongPropertyType = -10836,
+ /// To be added.
NoCurrentSetup = -10837,
+ /// To be added.
MessageSendErr = -10838,
+ /// To be added.
ServerStartErr = -10839,
+ /// To be added.
SetupFormatErr = -10840,
+ /// To be added.
WrongThread = -10841,
+ /// To be added.
ObjectNotFound = -10842,
+ /// To be added.
IDNotUnique = -10843,
+ /// To be added.
NotPermitted = -10844,
}
@@ -102,12 +118,21 @@ public static void Restart ()
MIDIRestart ();
}
+ /// The number of MIDI destinations.
+ ///
+ ///
+ ///
+ ///
public static nint DestinationCount {
get {
return MIDIGetNumberOfDestinations ();
}
}
+ /// Returns the number of sources in the system.
+ ///
+ ///
+ /// Use the T:CoreMidi.MidiEndpoint.GetSource(int) to fetch a specific source (represented by a MidiEndpoint).
public static nint SourceCount {
get {
return MIDIGetNumberOfSources ();
@@ -125,12 +150,20 @@ public static nint SourceCount {
[DllImport (Constants.CoreMidiLibrary)]
extern static nint /* ItemCount = unsigned long */ MIDIGetNumberOfDevices ();
+ /// The number of external devices connected to this system.
+ ///
+ ///
+ /// You can retrieve a specific MIDI device by using the T:CoreMidi.Midi.GetExternalDevice(int).
public static nint ExternalDeviceCount {
get {
return MIDIGetNumberOfExternalDevices ();
}
}
+ /// The number of MIDI devices in the system (do not confused with external connected devices).
+ ///
+ ///
+ /// You can retrieve a specific MIDI device by using the T:CoreMidi.Midi.GetDevice(int).
public static nint DeviceCount {
get {
return MIDIGetNumberOfDevices ();
@@ -175,6 +208,9 @@ public class MidiObject
internal MidiObjectRef handle;
internal bool owns;
+ /// Handle (pointer) to the unmanaged object representation.
+ /// A pointer
+ /// This IntPtr is a handle to the underlying unmanaged representation for this object.
public MidiObjectRef Handle {
get { return handle; }
}
@@ -416,6 +452,11 @@ internal MidiException (MidiError code) : base (code == MidiError.NotPermitted ?
ErrorCode = code;
}
+ /// Contains the underlying MIDI error code.
+ ///
+ ///
+ ///
+ ///
public MidiError ErrorCode { get; private set; }
}
@@ -486,6 +527,11 @@ public MidiClient (string name)
Name = name;
}
}
+ /// Name of this MidiClient.
+ ///
+ ///
+ ///
+ ///
public string Name { get; private set; }
public override string ToString ()
@@ -690,10 +736,15 @@ public class MidiPacket
#endif
{
#if !COREBUILD
+ /// Time for the event, use zero to mean now.
+ /// This is the time used by the host, this is measured using the Unix mach_absolute_time() result value.
public long TimeStamp;
IntPtr byteptr;
byte []? bytes;
int start;
+ /// The number of bytes in the Bytes array
+ ///
+ ///
public ushort Length;
public MidiPacket (long timestamp, ushort length, IntPtr bytes)
@@ -759,6 +810,9 @@ public IntPtr BytePointer {
}
#if !XAMCORE_5_0
+ /// To be added.
+ /// To be added.
+ /// To be added.
[EditorBrowsable (EditorBrowsableState.Never)]
[Obsolete ("This property may return a pointer to a managed object, and this pointer is never safe to use. Use ByteArray or BytePointer instead.")]
public IntPtr Bytes {
@@ -935,7 +989,17 @@ internal MidiPort (MidiClient client, string portName, bool input)
}
}
+ /// The MidiClient that created this port.
+ ///
+ ///
+ ///
+ ///
public MidiClient Client { get; private set; }
+ /// The port name specified when the port was created
+ ///
+ ///
+ ///
+ ///
public string PortName { get; private set; }
internal override void DisposeHandle ()
@@ -1089,6 +1153,9 @@ internal MidiEntity (MidiEntityRef handle, bool owns) : base (handle, owns)
[DllImport (Constants.CoreMidiLibrary)]
extern static nint MIDIEntityGetNumberOfDestinations (MidiEntityRef entity);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint Destinations {
get {
return MIDIEntityGetNumberOfDestinations (handle);
@@ -1098,6 +1165,9 @@ public nint Destinations {
[DllImport (Constants.CoreMidiLibrary)]
extern static nint MIDIEntityGetNumberOfSources (MidiEntityRef entity);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint Sources {
get {
return MIDIEntityGetNumberOfSources (handle);
@@ -1107,6 +1177,9 @@ public nint Sources {
[DllImport (Constants.CoreMidiLibrary)]
unsafe extern static int /* OSStatus = SInt32 */ MIDIEntityGetDevice (MidiEntityRef handle, MidiDeviceRef* devRef);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MidiDevice? Device {
get {
MidiEntityRef res;
@@ -1118,6 +1191,9 @@ public MidiDevice? Device {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int AdvanceScheduleTimeMuSec {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyAdvanceScheduleTimeMuSec);
@@ -1127,6 +1203,9 @@ public int AdvanceScheduleTimeMuSec {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool CanRoute {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyCanRoute) != 0;
@@ -1136,6 +1215,9 @@ public bool CanRoute {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int ConnectionUniqueIDInt {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyConnectionUniqueID);
@@ -1145,6 +1227,9 @@ public int ConnectionUniqueIDInt {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSData? ConnectionUniqueIDData {
get {
return GetData (MidiPropertyExtensions.kMIDIPropertyConnectionUniqueID);
@@ -1156,6 +1241,9 @@ public NSData? ConnectionUniqueIDData {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int DeviceID {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyDeviceID);
@@ -1165,6 +1253,9 @@ public int DeviceID {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DisplayName {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyDisplayName);
@@ -1176,6 +1267,9 @@ public string? DisplayName {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DriverOwner {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyDriverOwner);
@@ -1187,6 +1281,9 @@ public string? DriverOwner {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int DriverVersion {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyDriverVersion);
@@ -1196,6 +1293,9 @@ public int DriverVersion {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsBroadcast {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsBroadcast) != 0;
@@ -1205,36 +1305,54 @@ public bool IsBroadcast {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsDrumMachine {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsDrumMachine) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsEffectUnit {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsEffectUnit) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsEmbeddedEntity {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsEmbeddedEntity) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsMixer {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsMixer) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsSampler {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsSampler) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MaxReceiveChannels {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyMaxReceiveChannels);
@@ -1244,6 +1362,9 @@ public int MaxReceiveChannels {
//}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MaxSysExSpeed {
get {
try {
@@ -1259,6 +1380,9 @@ public int MaxSysExSpeed {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MaxTransmitChannels {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyMaxTransmitChannels);
@@ -1268,6 +1392,9 @@ public int MaxTransmitChannels {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Model {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyModel);
@@ -1279,6 +1406,9 @@ public string? Model {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyName);
@@ -1290,6 +1420,9 @@ public string? Name {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary? NameConfiguration {
get {
return GetDictionary (MidiPropertyExtensions.kMIDIPropertyNameConfiguration);
@@ -1301,6 +1434,9 @@ public NSDictionary? NameConfiguration {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Offline {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyOffline) != 0;
@@ -1310,6 +1446,9 @@ public bool Offline {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool PanDisruptsStereo {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyPanDisruptsStereo) != 0;
@@ -1319,6 +1458,9 @@ public bool PanDisruptsStereo {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Private {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyPrivate) != 0;
@@ -1328,6 +1470,9 @@ public bool Private {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesBankSelectLSB {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesBankSelectLSB) != 0;
@@ -1337,6 +1482,9 @@ public bool ReceivesBankSelectLSB {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesBankSelectMSB {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesBankSelectMSB) != 0;
@@ -1346,6 +1494,9 @@ public bool ReceivesBankSelectMSB {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesClock {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesClock) != 0;
@@ -1355,6 +1506,9 @@ public bool ReceivesClock {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesMTC {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesMTC) != 0;
@@ -1364,6 +1518,9 @@ public bool ReceivesMTC {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesNotes {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesNotes) != 0;
@@ -1373,6 +1530,9 @@ public bool ReceivesNotes {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesProgramChanges {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesProgramChanges) != 0;
@@ -1382,6 +1542,9 @@ public bool ReceivesProgramChanges {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool SupportsGeneralMidi {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertySupportsGeneralMIDI) != 0;
@@ -1391,6 +1554,9 @@ public bool SupportsGeneralMidi {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool SupportsMMC {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertySupportsMMC) != 0;
@@ -1400,6 +1566,9 @@ public bool SupportsMMC {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool SupportsShowControl {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertySupportsShowControl) != 0;
@@ -1409,6 +1578,9 @@ public bool SupportsShowControl {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsBankSelectLSB {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsBankSelectLSB) != 0;
@@ -1418,6 +1590,9 @@ public bool TransmitsBankSelectLSB {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsBankSelectMSB {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsBankSelectMSB) != 0;
@@ -1427,6 +1602,9 @@ public bool TransmitsBankSelectMSB {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsClock {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsClock) != 0;
@@ -1436,6 +1614,9 @@ public bool TransmitsClock {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsMTC {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsMTC) != 0;
@@ -1445,6 +1626,9 @@ public bool TransmitsMTC {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsNotes {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsNotes) != 0;
@@ -1454,6 +1638,9 @@ public bool TransmitsNotes {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsProgramChanges {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsProgramChanges) != 0;
@@ -1569,12 +1756,20 @@ public int Add (string name, bool embedded, nuint numSourceEndpoints, nuint numD
}
}
+ /// Returns the number of MIDI entities in this device.
+ ///
+ ///
+ ///
+ ///
public nint EntityCount {
get {
return MIDIDeviceGetNumberOfEntities (handle);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Image {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyImage);
@@ -1586,6 +1781,9 @@ public string? Image {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DriverDeviceEditorApp {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyDriverDeviceEditorApp);
@@ -1597,6 +1795,9 @@ public string? DriverDeviceEditorApp {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int SingleRealtimeEntity {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertySingleRealtimeEntity);
@@ -1606,6 +1807,9 @@ public int SingleRealtimeEntity {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int UniqueID {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyUniqueID);
@@ -1615,6 +1819,9 @@ public int UniqueID {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool UsesSerial {
get {
var kMIDIDriverPropertyUsesSerial = Dlfcn.GetIntPtr (Libraries.CoreMidi.Handle, "kMIDIDriverPropertyUsesSerial");
@@ -1628,6 +1835,9 @@ public bool UsesSerial {
#if !XAMCORE_5_0 || __MACOS__
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("ios")]
[UnsupportedOSPlatform ("maccatalyst")]
@@ -1657,6 +1867,9 @@ public string? FactoryPatchNameFile {
#if !XAMCORE_5_0 || __MACOS__
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[UnsupportedOSPlatform ("tvos")]
[UnsupportedOSPlatform ("ios")]
[UnsupportedOSPlatform ("maccatalyst")]
@@ -1703,6 +1916,9 @@ public string? NameConfigurationDictionary {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int AdvanceScheduleTimeMuSec {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyAdvanceScheduleTimeMuSec);
@@ -1712,6 +1928,9 @@ public int AdvanceScheduleTimeMuSec {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool CanRoute {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyCanRoute) != 0;
@@ -1721,6 +1940,9 @@ public bool CanRoute {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int ConnectionUniqueIDInt {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyConnectionUniqueID);
@@ -1730,6 +1952,9 @@ public int ConnectionUniqueIDInt {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSData? ConnectionUniqueIDData {
get {
return GetData (MidiPropertyExtensions.kMIDIPropertyConnectionUniqueID);
@@ -1741,6 +1966,9 @@ public NSData? ConnectionUniqueIDData {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int DeviceID {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyDeviceID);
@@ -1750,6 +1978,9 @@ public int DeviceID {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DisplayName {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyDisplayName);
@@ -1761,6 +1992,9 @@ public string? DisplayName {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DriverOwner {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyDriverOwner);
@@ -1772,6 +2006,9 @@ public string? DriverOwner {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int DriverVersion {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyDriverVersion);
@@ -1781,36 +2018,54 @@ public int DriverVersion {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsDrumMachine {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsDrumMachine) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsEffectUnit {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsEffectUnit) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsEmbeddedEntity {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsEmbeddedEntity) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsMixer {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsMixer) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsSampler {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsSampler) != 0;
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Manufacturer {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyManufacturer);
@@ -1822,6 +2077,9 @@ public string? Manufacturer {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MaxReceiveChannels {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyMaxReceiveChannels);
@@ -1831,6 +2089,9 @@ public int MaxReceiveChannels {
//}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MaxSysExSpeed {
get {
try {
@@ -1846,6 +2107,9 @@ public int MaxSysExSpeed {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MaxTransmitChannels {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyMaxTransmitChannels);
@@ -1855,6 +2119,9 @@ public int MaxTransmitChannels {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Model {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyModel);
@@ -1866,6 +2133,9 @@ public string? Model {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyName);
@@ -1877,6 +2147,9 @@ public string? Name {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary? NameConfiguration {
get {
return GetDictionary (MidiPropertyExtensions.kMIDIPropertyNameConfiguration);
@@ -1888,6 +2161,9 @@ public NSDictionary? NameConfiguration {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Offline {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyOffline) != 0;
@@ -1897,6 +2173,9 @@ public bool Offline {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool PanDisruptsStereo {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyPanDisruptsStereo) != 0;
@@ -1906,6 +2185,9 @@ public bool PanDisruptsStereo {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Private {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyPrivate) != 0;
@@ -1915,6 +2197,9 @@ public bool Private {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesBankSelectLSB {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesBankSelectLSB) != 0;
@@ -1924,6 +2209,9 @@ public bool ReceivesBankSelectLSB {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesBankSelectMSB {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesBankSelectMSB) != 0;
@@ -1933,6 +2221,9 @@ public bool ReceivesBankSelectMSB {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesClock {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesClock) != 0;
@@ -1942,6 +2233,9 @@ public bool ReceivesClock {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesMTC {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesMTC) != 0;
@@ -1951,6 +2245,9 @@ public bool ReceivesMTC {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesNotes {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesNotes) != 0;
@@ -1960,6 +2257,9 @@ public bool ReceivesNotes {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReceivesProgramChanges {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceivesProgramChanges) != 0;
@@ -1969,6 +2269,9 @@ public bool ReceivesProgramChanges {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool SupportsGeneralMidi {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertySupportsGeneralMIDI) != 0;
@@ -1978,6 +2281,9 @@ public bool SupportsGeneralMidi {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool SupportsMMC {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertySupportsMMC) != 0;
@@ -1987,6 +2293,9 @@ public bool SupportsMMC {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool SupportsShowControl {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertySupportsShowControl) != 0;
@@ -1996,6 +2305,9 @@ public bool SupportsShowControl {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsBankSelectLSB {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsBankSelectLSB) != 0;
@@ -2005,6 +2317,9 @@ public bool TransmitsBankSelectLSB {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsBankSelectMSB {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsBankSelectMSB) != 0;
@@ -2014,6 +2329,9 @@ public bool TransmitsBankSelectMSB {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsClock {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsClock) != 0;
@@ -2023,6 +2341,9 @@ public bool TransmitsClock {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsMTC {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsMTC) != 0;
@@ -2032,6 +2353,9 @@ public bool TransmitsMTC {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsNotes {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsNotes) != 0;
@@ -2041,6 +2365,9 @@ public bool TransmitsNotes {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool TransmitsProgramChanges {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitsProgramChanges) != 0;
@@ -2204,6 +2531,9 @@ internal override void DisposeHandle ()
gch.Free ();
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string EndpointName { get; private set; }
internal MidiEndpoint (MidiEndpointRef handle) : base (handle, false)
@@ -2319,6 +2649,9 @@ public MidiError Received (MidiPacket [] packets)
[DllImport (Constants.CoreMidiLibrary)]
unsafe extern static int /* OSStatus = SInt32 */ MIDIEndpointGetEntity (MidiEndpointRef endpoint, MidiEntityRef* entity);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MidiEntity? Entity {
get {
MidiEntityRef entity;
@@ -2332,6 +2665,10 @@ public MidiEntity? Entity {
}
}
+ /// Determines if the Endpoint represents a network session.
+ ///
+ ///
+ /// This probes for the apple.midirtp.session property in the endpoint properties.
public bool IsNetworkSession {
get {
using (var dict = GetDictionaryProperties (true)) {
@@ -2344,6 +2681,9 @@ public bool IsNetworkSession {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int AdvanceScheduleTimeMuSec {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyAdvanceScheduleTimeMuSec);
@@ -2353,6 +2693,9 @@ public int AdvanceScheduleTimeMuSec {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int ConnectionUniqueIDInt {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyConnectionUniqueID);
@@ -2362,6 +2705,9 @@ public int ConnectionUniqueIDInt {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSData? ConnectionUniqueIDData {
get {
return GetData (MidiPropertyExtensions.kMIDIPropertyConnectionUniqueID);
@@ -2373,6 +2719,9 @@ public NSData? ConnectionUniqueIDData {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DisplayName {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyDisplayName);
@@ -2384,6 +2733,9 @@ public string? DisplayName {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DriverOwner {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyDriverOwner);
@@ -2395,6 +2747,9 @@ public string? DriverOwner {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int DriverVersion {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyDriverVersion);
@@ -2404,6 +2759,9 @@ public int DriverVersion {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsBroadcast {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyIsBroadcast) != 0;
@@ -2413,6 +2771,9 @@ public bool IsBroadcast {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Manufacturer {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyManufacturer);
@@ -2424,6 +2785,9 @@ public string? Manufacturer {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int MaxSysExSpeed {
get {
try {
@@ -2439,6 +2803,9 @@ public int MaxSysExSpeed {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get {
return GetString (MidiPropertyExtensions.kMIDIPropertyName);
@@ -2450,6 +2817,9 @@ public string? Name {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary? NameConfiguration {
get {
return GetDictionary (MidiPropertyExtensions.kMIDIPropertyNameConfiguration);
@@ -2461,6 +2831,9 @@ public NSDictionary? NameConfiguration {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Offline {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyOffline) != 0;
@@ -2470,6 +2843,9 @@ public bool Offline {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Private {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyPrivate) != 0;
@@ -2479,6 +2855,9 @@ public bool Private {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int ReceiveChannels {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyReceiveChannels);
@@ -2488,6 +2867,9 @@ public int ReceiveChannels {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int TransmitChannels {
get {
return GetInt (MidiPropertyExtensions.kMIDIPropertyTransmitChannels);
@@ -2601,7 +2983,17 @@ public ObjectAddedOrRemovedEventArgs (MidiObject? parent, MidiObject? child)
Parent = parent;
Child = child;
}
+ /// The parent object for the added or removed object.
+ ///
+ ///
+ ///
+ ///
public MidiObject? Parent { get; private set; }
+ /// The child that was added or removed.
+ ///
+ ///
+ ///
+ ///
public MidiObject? Child { get; private set; }
}
@@ -2616,7 +3008,17 @@ public ObjectPropertyChangedEventArgs (MidiObject? midiObject, string? propertyN
MidiObject = midiObject;
PropertyName = propertyName;
}
+ /// The MIDI object whose property has changed.
+ ///
+ ///
+ ///
+ ///
public MidiObject? MidiObject { get; private set; }
+ /// The name of the MIDI property that changed.
+ ///
+ ///
+ ///
+ ///
public string? PropertyName { get; private set; }
}
@@ -2631,7 +3033,17 @@ public IOErrorEventArgs (MidiDevice device, int errorCode)
Device = device;
ErrorCode = errorCode;
}
+ /// Device that raised the error.
+ ///
+ ///
+ ///
+ ///
public MidiDevice Device { get; set; }
+ /// OSStatus error code.
+ ///
+ ///
+ ///
+ ///
public int ErrorCode { get; set; }
}
@@ -2659,12 +3071,24 @@ internal MidiPacketsEventArgs (IntPtr packetList)
Dispose (false);
}
+ /// Low-level pointer to the packet list, use Packets instead.
+ ///
+ ///
+ /// This is provided in case you want to decode the value
+ /// using a native library or some other existing MIDI parsing
+ /// code. Otherwise you can consume the strongly typed Packets
+ /// property.
public IntPtr PacketListRaw {
get {
return packetList;
}
}
+ /// Contains the individual MIDI packets
+ ///
+ ///
+ ///
+ ///
public MidiPacket [] Packets {
get {
if (list is null)
diff --git a/src/CoreMidi/MidiThruConnection.cs b/src/CoreMidi/MidiThruConnection.cs
index c340ef047f65..cea169a4ee49 100644
--- a/src/CoreMidi/MidiThruConnection.cs
+++ b/src/CoreMidi/MidiThruConnection.cs
@@ -35,6 +35,9 @@ protected internal MidiThruConnection (MidiThruConnectionRef handle)
this.handle = handle;
}
+ /// Handle (pointer) to the unmanaged object representation.
+ /// A pointer
+ /// This IntPtr is a handle to the underlying unmanaged representation for this object.
public MidiThruConnectionRef Handle {
get { return handle; }
}
diff --git a/src/CoreMidi/MidiThruConnectionParams.cs b/src/CoreMidi/MidiThruConnectionParams.cs
index 8249a5170366..805e3d53664c 100644
--- a/src/CoreMidi/MidiThruConnectionParams.cs
+++ b/src/CoreMidi/MidiThruConnectionParams.cs
@@ -23,22 +23,36 @@
namespace CoreMidi {
public enum MidiTransformType : ushort {
+ /// To be added.
None = 0,
+ /// To be added.
FilterOut = 1,
+ /// To be added.
MapControl = 2,
+ /// To be added.
Add = 8,
+ /// To be added.
Scale = 9,
+ /// To be added.
MinValue = 10,
+ /// To be added.
MaxValue = 11,
+ /// To be added.
MapValue = 12
}
public enum MidiTransformControlType : byte {
+ /// To be added.
SevenBit = 0,
+ /// To be added.
FourteenBit = 1,
+ /// To be added.
SevenBitRpn = 2,
+ /// To be added.
FourteenBitRpn = 3,
+ /// To be added.
SevenBitNRpn = 4,
+ /// To be added.
FourteenBitNRpn = 5
}
@@ -50,7 +64,11 @@ public enum MidiTransformControlType : byte {
[NativeName ("MIDITransform")]
[StructLayout (LayoutKind.Sequential)]
public struct MidiTransform {
+ /// Transformation type to be applied.
+ /// To be added.
public MidiTransformType Transform;
+ /// Extra information needed by the transformation.
+ /// This is ignored when is set to or .
public short Param;
public MidiTransform (MidiTransformType transform, short param)
@@ -69,6 +87,9 @@ public MidiTransform (MidiTransformType transform, short param)
[StructLayout (LayoutKind.Sequential)]
public unsafe struct MidiValueMap {
byte [] map_value;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public byte [] Value {
get {
return map_value ?? (map_value = new byte [128]);
@@ -91,10 +112,20 @@ public byte [] Value {
[NativeName ("MIDIControlTransform")]
[StructLayout (LayoutKind.Sequential)]
public struct MidiControlTransform {
+ /// MIDI conrol type.
+ /// To be added.
public MidiTransformControlType ControlType;
+ /// Resulting control type.
+ /// This is only set when is used.
public MidiTransformControlType RemappedControlType;
+ /// Number of the control to be transformed.
+ /// To be added.
public ushort ControlNumber;
+ /// Transformation type to be applied.
+ /// To be added.
public MidiTransformType Transform;
+ /// Additional information for the transformation.
+ /// This is ignored when is set to or .
public short Param;
public MidiControlTransform (MidiTransformControlType controlType,
@@ -118,7 +149,11 @@ public MidiControlTransform (MidiTransformControlType controlType,
[NativeName ("MIDIThruConnectionEndpoint")]
[StructLayout (LayoutKind.Sequential)]
public struct MidiThruConnectionEndpoint {
+ /// Endpoint handle.
+ /// To be added.
public MidiEndpointRef EndpointRef;
+ /// Endpoint unique ID.
+ /// To be added.
public MidiUniqueID UniqueID;
public MidiThruConnectionEndpoint (MidiEndpointRef endpointRef, MidiUniqueID uniqueID)
@@ -332,16 +367,25 @@ public MidiThruConnectionParams ()
connectionParams = tmpStruct;
}
+ /// Midi input routes.
+ /// To be added.
+ /// To be added.
public MidiThruConnectionEndpoint []? Sources {
get { return connectionParams.Sources; }
set { connectionParams.Sources = value; }
}
+ /// Midi output destination routes.
+ /// To be added.
+ /// To be added.
public MidiThruConnectionEndpoint []? Destinations {
get { return connectionParams.Destinations; }
set { connectionParams.Destinations = value; }
}
+ /// Map of the 16 MIDI channels
+ /// To be added.
+ /// Set a MIDI channel to 0xFF to filter it out. It can have the following channel values range 0 to 15 or 1 to 16.
public byte [] ChannelMap {
get { return connectionParams.ChannelMap; }
set {
@@ -349,81 +393,143 @@ public byte [] ChannelMap {
}
}
+ /// Lowest velocity to filter.
+ /// To be added.
+ /// To be added.
public byte LowVelocity {
get { return connectionParams.LowVelocity; }
set { connectionParams.LowVelocity = value; }
}
+ /// Highest velocity to filter.
+ /// To be added.
+ /// To be added.
public byte HighVelocity {
get { return connectionParams.HighVelocity; }
set { connectionParams.HighVelocity = value; }
}
+ /// Lowest note to filter.
+ /// To be added.
+ ///
+ ///
+ /// is greater than or equal to means that notes outside this range will be filtered out.
+ ///
+ ///
+ ///
+ /// is greater than means that notes inside this range will be filtered out.
+ ///
public byte LowNote {
get { return connectionParams.LowNote; }
set { connectionParams.LowNote = value; }
}
+ /// Highest note to filter.
+ /// To be added.
+ ///
+ ///
+ /// is greater than or equal to means that notes outside this range will be filtered out.
+ ///
+ ///
+ ///
+ /// is greater than means that notes inside this range will be filtered out.
+ ///
public byte HighNote {
get { return connectionParams.HighNote; }
set { connectionParams.HighNote = value; }
}
+ /// Instructs how note numbers are transformed.
+ /// To be added.
+ /// To be added.
public MidiTransform NoteNumber {
get { return connectionParams.NoteNumber; }
set { connectionParams.NoteNumber = value; }
}
+ /// Instructs how velocity notes are transformed.
+ /// To be added.
+ /// To be added.
public MidiTransform Velocity {
get { return connectionParams.Velocity; }
set { connectionParams.Velocity = value; }
}
+ /// Instructs how polyphonic key pressure events are transformed.
+ /// To be added.
+ /// To be added.
public MidiTransform KeyPressure {
get { return connectionParams.KeyPressure; }
set { connectionParams.KeyPressure = value; }
}
+ /// Instructs how monophonic channels pressure are transformed.
+ /// To be added.
+ /// To be added.
public MidiTransform ChannelPressure {
get { return connectionParams.ChannelPressure; }
set { connectionParams.ChannelPressure = value; }
}
+ /// Instructs how program change events are transformed.
+ /// To be added.
+ /// To be added.
public MidiTransform ProgramChange {
get { return connectionParams.ProgramChange; }
set { connectionParams.ProgramChange = value; }
}
+ /// Instructs how pitch bend events are transformed.
+ /// To be added.
+ /// To be added.
public MidiTransform PitchBend {
get { return connectionParams.PitchBend; }
set { connectionParams.PitchBend = value; }
}
+ /// Flag to set all MIDI system exclusive messages to be filtered out.
+ /// To be added.
+ /// To be added.
public bool FilterOutSysEx {
get { return connectionParams.FilterOutSysEx == 1; }
set { connectionParams.FilterOutSysEx = value ? (byte) 1 : (byte) 0; }
}
+ /// Flag to set all MIDI time code messages to be filtered out.
+ /// To be added.
+ /// To be added.
public bool FilterOutMtc {
get { return connectionParams.FilterOutMtc == 1; }
set { connectionParams.FilterOutMtc = value ? (byte) 1 : (byte) 0; }
}
+ /// Flag to set all MIDI play, stop, resume and clock messages to be filtered out.
+ /// To be added.
+ /// To be added.
public bool FilterOutBeatClock {
get { return connectionParams.FilterOutBeatClock == 1; }
set { connectionParams.FilterOutBeatClock = value ? (byte) 1 : (byte) 0; }
}
+ /// Flag to set all MIDI tune request messages to be filtered out.
+ /// To be added.
+ /// To be added.
public bool FilterOutTuneRequest {
get { return connectionParams.FilterOutTuneRequest == 1; }
set { connectionParams.FilterOutTuneRequest = value ? (byte) 1 : (byte) 0; }
}
+ /// Flag to set all MIDI continuous control messages to be filtered out.
+ /// To be added.
+ /// To be added.
public bool FilterOutAllControls {
get { return connectionParams.FilterOutAllControls == 1; }
set { connectionParams.FilterOutAllControls = value ? (byte) 1 : (byte) 0; }
}
+ /// Midi control transformations.
+ /// To be added.
+ /// To be added.
public MidiControlTransform []? Controls {
get => controls;
set {
@@ -433,6 +539,9 @@ public MidiControlTransform []? Controls {
}
}
+ /// MIDI value maps.
+ /// To be added.
+ /// To be added.
public MidiValueMap []? Maps {
get => maps;
set {
diff --git a/src/CoreMotion/CMDeviceMotion.cs b/src/CoreMotion/CMDeviceMotion.cs
index 8815e6d30a07..31298063b06d 100644
--- a/src/CoreMotion/CMDeviceMotion.cs
+++ b/src/CoreMotion/CMDeviceMotion.cs
@@ -18,7 +18,11 @@ namespace CoreMotion {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct CMCalibratedMagneticField {
+ /// The magnetic field.
+ /// To be added.
public CMMagneticField Field;
+ /// The accuracy of the calibration.
+ /// To be added.
public CMMagneticFieldCalibrationAccuracy Accuracy;
public override string ToString ()
diff --git a/src/CoreMotion/CMMagnetometer.cs b/src/CoreMotion/CMMagnetometer.cs
index a9a695f9ed04..f25189f96c78 100644
--- a/src/CoreMotion/CMMagnetometer.cs
+++ b/src/CoreMotion/CMMagnetometer.cs
@@ -21,8 +21,14 @@ namespace CoreMotion {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct CMMagneticField {
+ /// X component of the magnetic field, measured in microteslas.
+ /// To be added.
public double X;
+ /// Y component of the magnetic field, measured in microteslas.
+ /// To be added.
public double Y;
+ /// Z component of the magnetic field, measured in microteslas.
+ /// To be added.
public double Z;
public override string ToString ()
diff --git a/src/CoreSpotlight/CSEnums.cs b/src/CoreSpotlight/CSEnums.cs
index 5f74021b3845..fbc8b52f498e 100644
--- a/src/CoreSpotlight/CSEnums.cs
+++ b/src/CoreSpotlight/CSEnums.cs
@@ -21,12 +21,19 @@ namespace CoreSpotlight {
[Native]
[ErrorDomain ("CSIndexErrorDomain")]
public enum CSIndexErrorCode : long {
+ /// An unknown error occured.
UnknownError = -1,
+ /// The index was not available.
IndexUnavailableError = -1000,
+ /// The search item was invalid.
InvalidItemError = -1001,
+ /// The search client was in an invalid state.
InvalidClientStateError = -1002,
+ /// A remote connection failed.
RemoteConnectionError = -1003,
+ /// The quota was exceeded.
QuotaExceeded = -1004,
+ /// The device does not support indexing.
IndexingUnsupported = -1005,
MismatchedClientState = -1006,
}
@@ -38,9 +45,13 @@ public enum CSIndexErrorCode : long {
[ErrorDomain ("CSSearchQueryErrorDomain")]
[Native]
public enum CSSearchQueryErrorCode : long {
+ /// Indicates that an unknown error ocurred.
Unknown = -2000,
+ /// Indicates that the search index could not be reached.
IndexUnreachable = -2001,
+ /// Indicates that the query was invalid.
InvalidQuery = -2002,
+ /// Indicates that the search was canceled.
Cancelled = -2003
}
@@ -49,9 +60,13 @@ public enum CSSearchQueryErrorCode : long {
[NoMac]
[MacCatalyst (13, 1)]
public enum CSFileProtection {
+ /// The file is not protected.
None,
+ /// The file is encrypted and cannot be read until after booting and unlocking are completed.
Complete,
+ /// The file is encrypted. If it was created when the device was locked, it cannot be accessed after it is closed until after the user unlocks the device.
CompleteUnlessOpen,
+ /// The file is encrypted and cannot be opened until the user unlocks the device.
CompleteUntilFirstUserAuthentication,
}
diff --git a/src/CoreSpotlight/CSSearchableItemAttributeSet.cs b/src/CoreSpotlight/CSSearchableItemAttributeSet.cs
index 5efd455a0e95..ea7bd9e04375 100644
--- a/src/CoreSpotlight/CSSearchableItemAttributeSet.cs
+++ b/src/CoreSpotlight/CSSearchableItemAttributeSet.cs
@@ -23,6 +23,9 @@ public INSSecureCoding? this [CSCustomAttributeKey key] {
// Manually deal with these properties until we get BindAs working
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -38,6 +41,9 @@ public bool? IsUserCreated {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -53,6 +59,9 @@ public bool? IsUserOwned {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
diff --git a/src/CoreTelephony/CTEnums.cs b/src/CoreTelephony/CTEnums.cs
index 180bba6c055d..20743b4c58e3 100644
--- a/src/CoreTelephony/CTEnums.cs
+++ b/src/CoreTelephony/CTEnums.cs
@@ -9,8 +9,11 @@ namespace CoreTelephony {
// in header file this is used inside a CTError structure where the domain is a SInt32
/// An enumeration whose values specify an error domain.
public enum CTErrorDomain {
+ /// To be added.
NoError = 0,
+ /// To be added.
Posix = 1,
+ /// To be added.
Mach = 2,
}
diff --git a/src/CoreTelephony/CoreTelephony.cs b/src/CoreTelephony/CoreTelephony.cs
index cafcd5a9baf8..cd1a8ec626f2 100644
--- a/src/CoreTelephony/CoreTelephony.cs
+++ b/src/CoreTelephony/CoreTelephony.cs
@@ -8,24 +8,36 @@ namespace CoreTelephony {
public partial class CTCall {
#if !COREBUILD
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string StateDialing {
get {
return Dlfcn.SlowGetStringConstant (Constants.CoreTelephonyLibrary, "CTCallStateDialing");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string StateIncoming {
get {
return Dlfcn.SlowGetStringConstant (Constants.CoreTelephonyLibrary, "CTCallStateIncoming");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string StateConnected {
get {
return Dlfcn.SlowGetStringConstant (Constants.CoreTelephonyLibrary, "CTCallStateConnected");
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string StateDisconnected {
get {
return Dlfcn.SlowGetStringConstant (Constants.CoreTelephonyLibrary, "CTCallStateDisconnected");
diff --git a/src/CoreText/CTBaselineClass.cs b/src/CoreText/CTBaselineClass.cs
index 4d96ef77225d..c1497959f7fc 100644
--- a/src/CoreText/CTBaselineClass.cs
+++ b/src/CoreText/CTBaselineClass.cs
@@ -37,11 +37,17 @@ namespace CoreText {
// Convenience enum for string values in ObjC.
public enum CTBaselineClass {
+ /// Used to offset a roman baseline.
Roman,
+ /// Used to offset a centered ideographic baseline.
IdeographicCentered,
+ /// Used to offset an ideographic low baseline.
IdeographicLow,
+ /// Used to offset an ideographic high baseline.
IdeographicHigh,
+ /// Used to offset a hanging baseline.
Hanging,
+ /// Used to offset a math baseline.
Math,
}
@@ -95,7 +101,9 @@ public static CTBaselineClass FromHandle (IntPtr handle)
// Convenience enum for string values in ObjC.
public enum CTBaselineFont {
+ /// To be added.
Reference,
+ /// To be added.
Original
}
diff --git a/src/CoreText/CTEnums.cs b/src/CoreText/CTEnums.cs
index 939c8ecc3ec8..29d4b7739036 100644
--- a/src/CoreText/CTEnums.cs
+++ b/src/CoreText/CTEnums.cs
@@ -35,16 +35,25 @@ namespace CoreText {
[ErrorDomain ("kCTFontManagerErrorDomain")]
// defined as CFIndex (signed long [long] = nint) - /System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerError.h
public enum CTFontManagerError : long {
+ /// To be added.
None = 0,
+ /// To be added.
FileNotFount = 101,
+ /// To be added.
InsufficientPermissions = 102,
+ /// To be added.
UnrecognizedFormat = 103,
+ /// To be added.
InvalidFontData = 104,
+ /// To be added.
AlreadyRegistered = 105,
ExceededResourceLimit = 106,
AssetNotFound = 107,
+ /// To be added.
NotRegistered = 201,
+ /// To be added.
InUse = 202,
+ /// To be added.
SystemRequired = 203,
RegistrationFailed = 301,
MissingEntitlement = 302,
diff --git a/src/CoreText/CTFont.cs b/src/CoreText/CTFont.cs
index ce62f67d5115..26e9685a01a0 100644
--- a/src/CoreText/CTFont.cs
+++ b/src/CoreText/CTFont.cs
@@ -52,7 +52,9 @@ namespace CoreText {
[Native]
// defined as CFOptionFlags (unsigned long [long] = nuint) - /System/Library/Frameworks/CoreText.framework/Headers/CTFont.h
public enum CTFontOptions : ulong {
+ /// Use default options.
Default = 0,
+ /// Prevents font activation.
PreventAutoActivation = 1 << 0,
#if NET
[SupportedOSPlatform ("tvos16.0")]
@@ -63,6 +65,7 @@ public enum CTFontOptions : ulong {
[iOS (16, 0), TV (16, 0), MacCatalyst (16, 0), Mac (13, 0)]
#endif
PreventAutoDownload = 1 << 1,
+ /// Give preferences to Apple/System fonts.
PreferSystemFont = 1 << 2,
#if !NET
[Obsolete ("This API is not available on this platform.")]
@@ -72,118 +75,221 @@ public enum CTFontOptions : ulong {
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFont.h
public enum CTFontUIFontType : uint {
+ /// To be added.
None = unchecked((uint) (-1)),
+ /// To be added.
User = 0,
+ /// To be added.
UserFixedPitch = 1,
+ /// To be added.
System = 2,
+ /// To be added.
EmphasizedSystem = 3,
+ /// To be added.
SmallSystem = 4,
+ /// To be added.
SmallEmphasizedSystem = 5,
+ /// To be added.
MiniSystem = 6,
+ /// To be added.
MiniEmphasizedSystem = 7,
+ /// To be added.
Views = 8,
+ /// To be added.
Application = 9,
+ /// To be added.
Label = 10,
+ /// To be added.
MenuTitle = 11,
+ /// To be added.
MenuItem = 12,
+ /// To be added.
MenuItemMark = 13,
+ /// To be added.
MenuItemCmdKey = 14,
+ /// To be added.
WindowTitle = 15,
+ /// To be added.
PushButton = 16,
+ /// To be added.
UtilityWindowTitle = 17,
+ /// To be added.
AlertHeader = 18,
+ /// To be added.
SystemDetail = 19,
+ /// To be added.
EmphasizedSystemDetail = 20,
+ /// To be added.
Toolbar = 21,
+ /// To be added.
SmallToolbar = 22,
+ /// To be added.
Message = 23,
+ /// To be added.
Palette = 24,
+ /// To be added.
ToolTip = 25,
+ /// To be added.
ControlContent = 26,
}
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFont.h
public enum CTFontTable : uint {
+ /// To be added.
BaselineBASE = 0x42415345, // 'BASE'
+ /// To be added.
ColorBitmapData = 0x43424454, // 'CBDT'
+ /// To be added.
ColorBitmapLocationData = 0x43424c43, // 'CBLC'
+ /// To be added.
PostscriptFontProgram = 0x43464620, // 'CFF '
+ /// To be added.
CompactFontFormat2 = 0x43464632, // 'CFF2'
+ /// To be added.
ColorTable = 0x434f4c52, // 'COLR'
+ /// To be added.
ColorPaletteTable = 0x4350414c, // 'CPAL'
+ /// To be added.
DigitalSignature = 0x44534947, // 'DSIG'
+ /// To be added.
EmbeddedBitmap = 0x45424454, // 'EBDT'
+ /// To be added.
EmbeddedBitmapLocation = 0x45424c43, // 'EBLC'
+ /// To be added.
EmbeddedBitmapScaling = 0x45425343, // 'EBSC'
+ /// To be added.
GlyphDefinition = 0x47444546, // 'GDEF'
+ /// To be added.
GlyphPositioning = 0x47504f53, // 'GPOS'
+ /// To be added.
GlyphSubstitution = 0x47535542, // 'GSUB'
+ /// To be added.
HorizontalMetricsVariations = 0x48564152, // 'HVAR'
+ /// To be added.
JustificationJSTF = 0x4a535446, // 'JSTF'
+ /// To be added.
LinearThreshold = 0x4c545348, // 'LTSH'
+ /// To be added.
MathLayoutData = 0x4d415448, // 'MATH'
+ /// To be added.
Merge = 0x4d455247, // 'MERG'
+ /// To be added.
MetricsVariations = 0x4d564152, // 'MVAR'
+ /// To be added.
WindowsSpecificMetrics = 0x4f532f32, // 'OS2 '
+ /// To be added.
Pcl5Data = 0x50434c54, // 'PCLT'
+ /// To be added.
VerticalDeviceMetrics = 0x56444d58, // 'VDMX'
+ /// To be added.
StyleAttributes = 0x53544154, // 'STAT'
+ /// To be added.
ScalableVectorGraphics = 0x53564720, // 'SVG '
+ /// To be added.
VerticalOrigin = 0x564f5247, // 'VORG'
+ /// To be added.
VerticalMetricsVariations = 0x56564152, // 'VVAR'
+ /// To be added.
GlyphReference = 0x5a617066, // 'Zapf'
+ /// To be added.
AccentAttachment = 0x61636e74, // 'Acnt'
+ /// To be added.
AnchorPoints = 0x616e6b72, // 'ankr'
+ /// To be added.
AxisVariation = 0x61766172, // 'Avar'
+ /// To be added.
BitmapData = 0x62646174, // 'Bdat'
+ /// To be added.
BitmapFontHeader = 0x62686564, // 'Bhed'
+ /// To be added.
BitmapLocation = 0x626c6f63, // 'Bloc'
+ /// To be added.
BaselineBsln = 0x62736c6e, // 'Bsln'
+ /// To be added.
CharacterToGlyphMapping = 0x636d6170, // 'Cmap'
+ /// To be added.
ControlValueTableVariation = 0x63766172, // 'Cvar'
+ /// To be added.
ControlValueTable = 0x63767420, // 'Cvt '
+ /// To be added.
FontDescriptor = 0x66647363, // 'Fdsc'
+ /// To be added.
LayoutFeature = 0x66656174, // 'Feat'
+ /// To be added.
FontMetrics = 0x666d7478, // 'Fmtx'
+ /// To be added.
FondAndNfntData = 0x666f6e64, // 'fond'
+ /// To be added.
FontProgram = 0x6670676d, // 'Fpgm'
+ /// To be added.
FontVariation = 0x66766172, // 'Fvar'
+ /// To be added.
GridFitting = 0x67617370, // 'Gasp'
+ /// To be added.
GlyphData = 0x676c7966, // 'Glyf'
+ /// To be added.
GlyphVariation = 0x67766172, // 'Gvar'
+ /// To be added.
HorizontalDeviceMetrics = 0x68646d78, // 'Hdmx'
+ /// To be added.
FontHeader = 0x68656164, // 'Head'
+ /// To be added.
HorizontalHeader = 0x68686561, // 'Hhea'
+ /// To be added.
HorizontalMetrics = 0x686d7478, // 'Hmtx'
+ /// To be added.
HorizontalStyle = 0x68737479, // 'Hsty'
+ /// To be added.
JustificationJust = 0x6a757374, // 'Just'
+ /// To be added.
Kerning = 0x6b65726e, // 'Kern'
+ /// To be added.
ExtendedKerning = 0x6b657278, // 'Kerx'
+ /// To be added.
LigatureCaret = 0x6c636172, // 'Lcar'
+ /// To be added.
IndexToLocation = 0x6c6f6361, // 'Loca'
+ /// To be added.
LanguageTags = 0x6c746167, // 'ltag'
+ /// To be added.
MaximumProfile = 0x6d617870, // 'Maxp'
+ /// To be added.
Metadata = 0x6d657461, // 'meta'
+ /// To be added.
Morph = 0x6d6f7274, // 'Mort'
+ /// To be added.
ExtendedMorph = 0x6d6f7278, // 'Morx'
+ /// To be added.
Name = 0x6e616d65, // 'Name'
+ /// To be added.
OpticalBounds = 0x6f706264, // 'Opbd'
+ /// To be added.
PostScriptInformation = 0x706f7374, // 'Post'
+ /// To be added.
ControlValueTableProgram = 0x70726570, // 'Prep'
+ /// To be added.
Properties = 0x70726f70, // 'Prop'
+ /// To be added.
SBitmapData = 0x73626974, // 'sbit'
+ /// To be added.
SExtendedBitmapData = 0x73626978, // 'sbix'
+ /// To be added.
Tracking = 0x7472616b, // 'Trak'
+ /// To be added.
VerticalHeader = 0x76686561, // 'Vhea'
+ /// To be added.
VerticalMetrics = 0x766d7478, // 'Vmtx'
+ /// To be added.
CrossReference = 0x78726566, // 'xref'
}
[Flags]
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFont.h
public enum CTFontTableOptions : uint {
+ /// To be added.
None = 0,
#if NET
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -199,10 +305,14 @@ public enum CTFontTableOptions : uint {
// anonymous and typeless native enum - /System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h
public enum FontFeatureGroup {
+ /// To be added.
AllTypographicFeatures = 0,
+ /// To be added.
Ligatures = 1,
+ /// To be added.
CursiveConnection = 2,
#if NET
+ /// Developers should not use this deprecated field.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -214,39 +324,73 @@ public enum FontFeatureGroup {
[Deprecated (PlatformName.MacOSX, 10, 7)]
#endif
LetterCase = 3,
+ /// To be added.
VerticalSubstitution = 4,
+ /// To be added.
LinguisticRearrangement = 5,
+ /// To be added.
NumberSpacing = 6,
+ /// To be added.
SmartSwash = 8,
+ /// To be added.
Diacritics = 9,
+ /// To be added.
VerticalPosition = 10,
+ /// To be added.
Fractions = 11,
+ /// To be added.
OverlappingCharacters = 13,
+ /// To be added.
TypographicExtras = 14,
+ /// To be added.
MathematicalExtras = 15,
+ /// To be added.
OrnamentSets = 16,
+ /// To be added.
CharacterAlternatives = 17,
+ /// To be added.
DesignComplexity = 18,
+ /// To be added.
StyleOptions = 19,
+ /// To be added.
CharacterShape = 20,
+ /// To be added.
NumberCase = 21,
+ /// To be added.
TextSpacing = 22,
+ /// To be added.
Transliteration = 23,
+ /// To be added.
Annotation = 24,
+ /// To be added.
KanaSpacing = 25,
+ /// To be added.
IdeographicSpacing = 26,
+ /// To be added.
UnicodeDecomposition = 27,
+ /// To be added.
RubyKana = 28,
+ /// To be added.
CJKSymbolAlternatives = 29,
+ /// To be added.
IdeographicAlternatives = 30,
+ /// To be added.
CJKVerticalRomanPlacement = 31,
+ /// To be added.
ItalicCJKRoman = 32,
+ /// To be added.
CaseSensitiveLayout = 33,
+ /// To be added.
AlternateKana = 34,
+ /// To be added.
StylisticAlternatives = 35,
+ /// To be added.
ContextualAlternates = 36,
+ /// To be added.
LowerCase = 37,
+ /// To be added.
UpperCase = 38,
+ /// To be added.
CJKRomanSpacing = 103
}
@@ -270,19 +414,33 @@ public CTFontFeatures (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// The NSDictionary that reflects the current values in the strongly typed CTFontFeatures.
+ ///
+ ///
+ ///
+ ///
public NSDictionary Dictionary { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get { return Adapter.GetStringValue (Dictionary, CTFontFeatureKey.Name); }
set { Adapter.SetValue (Dictionary, CTFontFeatureKey.Name, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public FontFeatureGroup FeatureGroup {
get {
return (FontFeatureGroup) (int) (NSNumber) Dictionary [CTFontFeatureKey.Identifier];
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Exclusive {
get {
return CFDictionary.GetBooleanValue (Dictionary.Handle,
@@ -295,6 +453,9 @@ public bool Exclusive {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public IEnumerable? Selectors {
get {
return Adapter.GetNativeArray (Dictionary, CTFontFeatureKey.Selectors,
@@ -418,19 +579,31 @@ internal static CTFontFeatureSelectors Create (FontFeatureGroup featureGroup, NS
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
protected int FeatureWeak {
get {
return (int) (NSNumber) Dictionary [CTFontFeatureSelectorKey.Identifier];
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get { return Adapter.GetStringValue (Dictionary, CTFontFeatureSelectorKey.Name); }
set { Adapter.SetValue (Dictionary, CTFontFeatureSelectorKey.Name, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Default {
get {
return CFDictionary.GetBooleanValue (Dictionary.Handle,
@@ -443,6 +616,9 @@ public bool Default {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Setting {
get {
return CFDictionary.GetBooleanValue (Dictionary.Handle,
@@ -464,7 +640,9 @@ public bool Setting {
#endif
public class CTFontFeatureAllTypographicFeatures : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
AllTypeFeaturesOn = 0,
+ /// To be added.
AllTypeFeaturesOff = 1
}
@@ -473,6 +651,9 @@ public CTFontFeatureAllTypographicFeatures (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -488,27 +669,49 @@ public Selector Feature {
#endif
public class CTFontFeatureLigatures : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
RequiredLigaturesOn = 0,
+ /// To be added.
RequiredLigaturesOff = 1,
+ /// To be added.
CommonLigaturesOn = 2,
+ /// To be added.
CommonLigaturesOff = 3,
+ /// To be added.
RareLigaturesOn = 4,
+ /// To be added.
RareLigaturesOff = 5,
+ /// To be added.
LogosOn = 6,
+ /// To be added.
LogosOff = 7,
+ /// To be added.
RebusPicturesOn = 8,
+ /// To be added.
RebusPicturesOff = 9,
+ /// To be added.
DiphthongLigaturesOn = 10,
+ /// To be added.
DiphthongLigaturesOff = 11,
+ /// To be added.
SquaredLigaturesOn = 12,
+ /// To be added.
SquaredLigaturesOff = 13,
+ /// To be added.
AbbrevSquaredLigaturesOn = 14,
+ /// To be added.
AbbrevSquaredLigaturesOff = 15,
+ /// To be added.
SymbolLigaturesOn = 16,
+ /// To be added.
SymbolLigaturesOff = 17,
+ /// To be added.
ContextualLigaturesOn = 18,
+ /// To be added.
ContextualLigaturesOff = 19,
+ /// To be added.
HistoricalLigaturesOn = 20,
+ /// To be added.
HistoricalLigaturesOff = 21
}
@@ -517,6 +720,9 @@ public CTFontFeatureLigatures (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -537,11 +743,17 @@ public Selector Feature {
#endif
public class CTFontFeatureLetterCase : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
UpperAndLowerCase = 0,
+ /// To be added.
AllCaps = 1,
+ /// To be added.
AllLowerCase = 2,
+ /// To be added.
SmallCaps = 3,
+ /// To be added.
InitialCaps = 4,
+ /// To be added.
InitialCapsAndSmallCaps = 5
}
@@ -550,6 +762,9 @@ public CTFontFeatureLetterCase (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -565,8 +780,11 @@ public Selector Feature {
#endif
public class CTFontFeatureCursiveConnection : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
Unconnected = 0,
+ /// To be added.
PartiallyConnected = 1,
+ /// To be added.
Cursive = 2
}
@@ -575,6 +793,9 @@ public CTFontFeatureCursiveConnection (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -590,7 +811,9 @@ public Selector Feature {
#endif
public class CTFontFeatureVerticalSubstitutionConnection : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
SubstituteVerticalFormsOn = 0,
+ /// To be added.
SubstituteVerticalFormsOff = 1
}
@@ -599,6 +822,9 @@ public CTFontFeatureVerticalSubstitutionConnection (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -614,7 +840,9 @@ public Selector Feature {
#endif
public class CTFontFeatureLinguisticRearrangementConnection : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
LinguisticRearrangementOn = 0,
+ /// To be added.
LinguisticRearrangementOff = 1
}
@@ -623,6 +851,9 @@ public CTFontFeatureLinguisticRearrangementConnection (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -638,9 +869,13 @@ public Selector Feature {
#endif
public class CTFontFeatureNumberSpacing : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
MonospacedNumbers = 0,
+ /// To be added.
ProportionalNumbers = 1,
+ /// To be added.
ThirdWidthNumbers = 2,
+ /// To be added.
QuarterWidthNumbers = 3
}
@@ -649,6 +884,9 @@ public CTFontFeatureNumberSpacing (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -664,15 +902,25 @@ public Selector Feature {
#endif
public class CTFontFeatureSmartSwash : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
WordInitialSwashesOn = 0,
+ /// To be added.
WordInitialSwashesOff = 1,
+ /// To be added.
WordFinalSwashesOn = 2,
+ /// To be added.
WordFinalSwashesOff = 3,
+ /// To be added.
LineInitialSwashesOn = 4,
+ /// To be added.
LineInitialSwashesOff = 5,
+ /// To be added.
LineFinalSwashesOn = 6,
+ /// To be added.
LineFinalSwashesOff = 7,
+ /// To be added.
NonFinalSwashesOn = 8,
+ /// To be added.
NonFinalSwashesOff = 9
}
@@ -681,6 +929,9 @@ public CTFontFeatureSmartSwash (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -696,8 +947,11 @@ public Selector Feature {
#endif
public class CTFontFeatureDiacritics : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
ShowDiacritics = 0,
+ /// To be added.
HideDiacritics = 1,
+ /// To be added.
DecomposeDiacritics = 2
}
@@ -706,6 +960,9 @@ public CTFontFeatureDiacritics (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -721,10 +978,15 @@ public Selector Feature {
#endif
public class CTFontFeatureVerticalPosition : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NormalPosition = 0,
+ /// To be added.
Superiors = 1,
+ /// To be added.
Inferiors = 2,
+ /// To be added.
Ordinals = 3,
+ /// To be added.
ScientificInferiors = 4
}
@@ -733,6 +995,9 @@ public CTFontFeatureVerticalPosition (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -748,8 +1013,11 @@ public Selector Feature {
#endif
public class CTFontFeatureFractions : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoFractions = 0,
+ /// To be added.
VerticalFractions = 1,
+ /// To be added.
DiagonalFractions = 2
}
@@ -758,6 +1026,9 @@ public CTFontFeatureFractions (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -773,7 +1044,9 @@ public Selector Feature {
#endif
public class CTFontFeatureOverlappingCharacters : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
PreventOverlapOn = 0,
+ /// To be added.
PreventOverlapOff = 1
}
@@ -782,6 +1055,9 @@ public CTFontFeatureOverlappingCharacters (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -797,17 +1073,29 @@ public Selector Feature {
#endif
public class CTFontFeatureTypographicExtras : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
HyphensToEmDashOn = 0,
+ /// To be added.
HyphensToEmDashOff = 1,
+ /// To be added.
HyphenToEnDashOn = 2,
+ /// To be added.
HyphenToEnDashOff = 3,
+ /// To be added.
SlashedZeroOn = 4,
+ /// To be added.
SlashedZeroOff = 5,
+ /// To be added.
FormInterrobangOn = 6,
+ /// To be added.
FormInterrobangOff = 7,
+ /// To be added.
SmartQuotesOn = 8,
+ /// To be added.
SmartQuotesOff = 9,
+ /// To be added.
PeriodsToEllipsisOn = 10,
+ /// To be added.
PeriodsToEllipsisOff = 11
}
@@ -816,6 +1104,9 @@ public CTFontFeatureTypographicExtras (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -831,17 +1122,29 @@ public Selector Feature {
#endif
public class CTFontFeatureMathematicalExtras : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
HyphenToMinusOn = 0,
+ /// To be added.
HyphenToMinusOff = 1,
+ /// To be added.
AsteriskToMultiplyOn = 2,
+ /// To be added.
AsteriskToMultiplyOff = 3,
+ /// To be added.
SlashToDivideOn = 4,
+ /// To be added.
SlashToDivideOff = 5,
+ /// To be added.
InequalityLigaturesOn = 6,
+ /// To be added.
InequalityLigaturesOff = 7,
+ /// To be added.
ExponentsOn = 8,
+ /// To be added.
ExponentsOff = 9,
+ /// To be added.
MathematicalGreekOn = 10,
+ /// To be added.
MathematicalGreekOff = 11
}
@@ -850,6 +1153,9 @@ public CTFontFeatureMathematicalExtras (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -865,12 +1171,19 @@ public Selector Feature {
#endif
public class CTFontFeatureOrnamentSets : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoOrnaments = 0,
+ /// To be added.
Dingbats = 1,
+ /// To be added.
PiCharacters = 2,
+ /// To be added.
Fleurons = 3,
+ /// To be added.
DecorativeBorders = 4,
+ /// To be added.
InternationalSymbols = 5,
+ /// To be added.
MathSymbols = 6
}
@@ -879,6 +1192,9 @@ public CTFontFeatureOrnamentSets (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -894,6 +1210,7 @@ public Selector Feature {
#endif
public class CTFontFeatureCharacterAlternatives : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoAlternates = 0,
}
@@ -902,6 +1219,9 @@ public CTFontFeatureCharacterAlternatives (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -917,10 +1237,15 @@ public Selector Feature {
#endif
public class CTFontFeatureDesignComplexity : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
DesignLevel1 = 0,
+ /// To be added.
DesignLevel2 = 1,
+ /// To be added.
DesignLevel3 = 2,
+ /// To be added.
DesignLevel4 = 3,
+ /// To be added.
DesignLevel5 = 4
}
@@ -929,6 +1254,9 @@ public CTFontFeatureDesignComplexity (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -944,11 +1272,17 @@ public Selector Feature {
#endif
public class CTFontFeatureStyleOptions : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoStyleOptions = 0,
+ /// To be added.
DisplayText = 1,
+ /// To be added.
EngravedText = 2,
+ /// To be added.
IlluminatedCaps = 3,
+ /// To be added.
TitlingCaps = 4,
+ /// To be added.
TallCaps = 5
}
@@ -957,6 +1291,9 @@ public CTFontFeatureStyleOptions (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -972,20 +1309,35 @@ public Selector Feature {
#endif
public class CTFontFeatureCharacterShape : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
TraditionalCharacters = 0,
+ /// To be added.
SimplifiedCharacters = 1,
+ /// To be added.
JIS1978Characters = 2,
+ /// To be added.
JIS1983Characters = 3,
+ /// To be added.
JIS1990Characters = 4,
+ /// To be added.
TraditionalAltOne = 5,
+ /// To be added.
TraditionalAltTwo = 6,
+ /// To be added.
TraditionalAltThree = 7,
+ /// To be added.
TraditionalAltFour = 8,
+ /// To be added.
TraditionalAltFive = 9,
+ /// To be added.
ExpertCharacters = 10,
+ /// To be added.
JIS2004Characters = 11,
+ /// To be added.
HojoCharacters = 12,
+ /// To be added.
NLCCharacters = 13,
+ /// To be added.
TraditionalNamesCharacters = 14
}
@@ -994,6 +1346,9 @@ public CTFontFeatureCharacterShape (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1009,7 +1364,9 @@ public Selector Feature {
#endif
public class CTFontFeatureNumberCase : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
LowerCaseNumbers = 0,
+ /// To be added.
UpperCaseNumbers = 1
}
@@ -1018,6 +1375,9 @@ public CTFontFeatureNumberCase (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1033,12 +1393,19 @@ public Selector Feature {
#endif
public class CTFontFeatureTextSpacing : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
ProportionalText = 0,
+ /// To be added.
MonospacedText = 1,
+ /// To be added.
HalfWidthText = 2,
+ /// To be added.
ThirdWidthText = 3,
+ /// To be added.
QuarterWidthText = 4,
+ /// To be added.
AltProportionalText = 5,
+ /// To be added.
AltHalfWidthText = 6
}
@@ -1047,6 +1414,9 @@ public CTFontFeatureTextSpacing (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1062,15 +1432,25 @@ public Selector Feature {
#endif
public class CTFontFeatureTransliteration : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoTransliteration = 0,
+ /// To be added.
HanjaToHangul = 1,
+ /// To be added.
HiraganaToKatakana = 2,
+ /// To be added.
KatakanaToHiragana = 3,
+ /// To be added.
KanaToRomanization = 4,
+ /// To be added.
RomanizationToHiragana = 5,
+ /// To be added.
RomanizationToKatakana = 6,
+ /// To be added.
HanjaToHangulAltOne = 7,
+ /// To be added.
HanjaToHangulAltTwo = 8,
+ /// To be added.
HanjaToHangulAltThree = 9
}
@@ -1079,6 +1459,9 @@ public CTFontFeatureTransliteration (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1094,16 +1477,27 @@ public Selector Feature {
#endif
public class CTFontFeatureAnnotation : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoAnnotation = 0,
+ /// To be added.
BoxAnnotation = 1,
+ /// To be added.
RoundedBoxAnnotation = 2,
+ /// To be added.
CircleAnnotation = 3,
+ /// To be added.
InvertedCircleAnnotation = 4,
+ /// To be added.
ParenthesisAnnotation = 5,
+ /// To be added.
PeriodAnnotation = 6,
+ /// To be added.
RomanNumeralAnnotation = 7,
+ /// To be added.
DiamondAnnotation = 8,
+ /// To be added.
InvertedBoxAnnotation = 9,
+ /// To be added.
InvertedRoundedBoxAnnotation = 10
}
@@ -1112,6 +1506,9 @@ public CTFontFeatureAnnotation (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1127,7 +1524,9 @@ public Selector Feature {
#endif
public class CTFontFeatureKanaSpacing : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
FullWidthKana = 0,
+ /// To be added.
ProportionalKana = 1
}
@@ -1136,6 +1535,9 @@ public CTFontFeatureKanaSpacing (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1151,8 +1553,11 @@ public Selector Feature {
#endif
public class CTFontFeatureIdeographicSpacing : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
FullWidthIdeographs = 0,
+ /// To be added.
ProportionalIdeographs = 1,
+ /// To be added.
HalfWidthIdeographs = 2
}
@@ -1161,6 +1566,9 @@ public CTFontFeatureIdeographicSpacing (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1176,11 +1584,17 @@ public Selector Feature {
#endif
public class CTFontFeatureUnicodeDecomposition : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
CanonicalCompositionOn = 0,
+ /// To be added.
CanonicalCompositionOff = 1,
+ /// To be added.
CompatibilityCompositionOn = 2,
+ /// To be added.
CompatibilityCompositionOff = 3,
+ /// To be added.
TranscodingCompositionOn = 4,
+ /// To be added.
TranscodingCompositionOff = 5
}
@@ -1189,6 +1603,9 @@ public CTFontFeatureUnicodeDecomposition (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1205,6 +1622,7 @@ public Selector Feature {
public class CTFontFeatureRubyKana : CTFontFeatureSelectors {
public enum Selector {
#if NET
+ /// Developers should not use this deprecated field.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("tvos")]
@@ -1217,6 +1635,7 @@ public enum Selector {
#endif
NoRubyKana = 0,
#if NET
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("tvos")]
@@ -1228,7 +1647,9 @@ public enum Selector {
[Deprecated (PlatformName.MacOSX, 10, 8)]
#endif
RubyKana = 1,
+ /// To be added.
RubyKanaOn = 2,
+ /// To be added.
RubyKanaOff = 3
}
@@ -1237,6 +1658,9 @@ public CTFontFeatureRubyKana (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1252,11 +1676,17 @@ public Selector Feature {
#endif
public class CTFontFeatureCJKSymbolAlternatives : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoCJKSymbolAlternatives = 0,
+ /// To be added.
CJKSymbolAltOne = 1,
+ /// To be added.
CJKSymbolAltTwo = 2,
+ /// To be added.
CJKSymbolAltThree = 3,
+ /// To be added.
CJKSymbolAltFour = 4,
+ /// To be added.
CJKSymbolAltFive = 5
}
@@ -1265,6 +1695,9 @@ public CTFontFeatureCJKSymbolAlternatives (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1280,11 +1713,17 @@ public Selector Feature {
#endif
public class CTFontFeatureIdeographicAlternatives : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoIdeographicAlternatives = 0,
+ /// To be added.
IdeographicAltOne = 1,
+ /// To be added.
IdeographicAltTwo = 2,
+ /// To be added.
IdeographicAltThree = 3,
+ /// To be added.
IdeographicAltFour = 4,
+ /// To be added.
IdeographicAltFive = 5
}
@@ -1293,6 +1732,9 @@ public CTFontFeatureIdeographicAlternatives (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1308,7 +1750,9 @@ public Selector Feature {
#endif
public class CTFontFeatureCJKVerticalRomanPlacement : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
CJKVerticalRomanCentered = 0,
+ /// To be added.
CJKVerticalRomanHBaseline = 1
}
@@ -1317,6 +1761,9 @@ public CTFontFeatureCJKVerticalRomanPlacement (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1333,6 +1780,7 @@ public Selector Feature {
public class CTFontFeatureItalicCJKRoman : CTFontFeatureSelectors {
public enum Selector {
#if NET
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("tvos")]
@@ -1345,6 +1793,7 @@ public enum Selector {
#endif
NoCJKItalicRoman = 0,
#if NET
+ /// Developers should not use this deprecated field.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("tvos")]
@@ -1356,7 +1805,9 @@ public enum Selector {
[Deprecated (PlatformName.MacOSX, 10, 8)]
#endif
CJKItalicRoman = 1,
+ /// To be added.
CJKItalicRomanOn = 2,
+ /// To be added.
CJKItalicRomanOff = 3
}
@@ -1365,6 +1816,9 @@ public CTFontFeatureItalicCJKRoman (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1380,9 +1834,13 @@ public Selector Feature {
#endif
public class CTFontFeatureCaseSensitiveLayout : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
CaseSensitiveLayoutOn = 0,
+ /// To be added.
CaseSensitiveLayoutOff = 1,
+ /// To be added.
CaseSensitiveSpacingOn = 2,
+ /// To be added.
CaseSensitiveSpacingOff = 3
}
@@ -1391,6 +1849,9 @@ public CTFontFeatureCaseSensitiveLayout (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1406,9 +1867,13 @@ public Selector Feature {
#endif
public class CTFontFeatureAlternateKana : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
AlternateHorizKanaOn = 0,
+ /// To be added.
AlternateHorizKanaOff = 1,
+ /// To be added.
AlternateVertKanaOn = 2,
+ /// To be added.
AlternateVertKanaOff = 3
}
@@ -1417,6 +1882,9 @@ public CTFontFeatureAlternateKana (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1432,46 +1900,87 @@ public Selector Feature {
#endif
public class CTFontFeatureStylisticAlternatives : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
NoStylisticAlternates = 0,
+ /// To be added.
StylisticAltOneOn = 2,
+ /// To be added.
StylisticAltOneOff = 3,
+ /// To be added.
StylisticAltTwoOn = 4,
+ /// To be added.
StylisticAltTwoOff = 5,
+ /// To be added.
StylisticAltThreeOn = 6,
+ /// To be added.
StylisticAltThreeOff = 7,
+ /// To be added.
StylisticAltFourOn = 8,
+ /// To be added.
StylisticAltFourOff = 9,
+ /// To be added.
StylisticAltFiveOn = 10,
+ /// To be added.
StylisticAltFiveOff = 11,
+ /// To be added.
StylisticAltSixOn = 12,
+ /// To be added.
StylisticAltSixOff = 13,
+ /// To be added.
StylisticAltSevenOn = 14,
+ /// To be added.
StylisticAltSevenOff = 15,
+ /// To be added.
StylisticAltEightOn = 16,
+ /// To be added.
StylisticAltEightOff = 17,
+ /// To be added.
StylisticAltNineOn = 18,
+ /// To be added.
StylisticAltNineOff = 19,
+ /// To be added.
StylisticAltTenOn = 20,
+ /// To be added.
StylisticAltTenOff = 21,
+ /// To be added.
StylisticAltElevenOn = 22,
+ /// To be added.
StylisticAltElevenOff = 23,
+ /// To be added.
StylisticAltTwelveOn = 24,
+ /// To be added.
StylisticAltTwelveOff = 25,
+ /// To be added.
StylisticAltThirteenOn = 26,
+ /// To be added.
StylisticAltThirteenOff = 27,
+ /// To be added.
StylisticAltFourteenOn = 28,
+ /// To be added.
StylisticAltFourteenOff = 29,
+ /// To be added.
StylisticAltFifteenOn = 30,
+ /// To be added.
StylisticAltFifteenOff = 31,
+ /// To be added.
StylisticAltSixteenOn = 32,
+ /// To be added.
StylisticAltSixteenOff = 33,
+ /// To be added.
StylisticAltSeventeenOn = 34,
+ /// To be added.
StylisticAltSeventeenOff = 35,
+ /// To be added.
StylisticAltEighteenOn = 36,
+ /// To be added.
StylisticAltEighteenOff = 37,
+ /// To be added.
StylisticAltNineteenOn = 38,
+ /// To be added.
StylisticAltNineteenOff = 39,
+ /// To be added.
StylisticAltTwentyOn = 40,
+ /// To be added.
StylisticAltTwentyOff = 41
}
@@ -1480,6 +1989,9 @@ public CTFontFeatureStylisticAlternatives (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1495,11 +2007,17 @@ public Selector Feature {
#endif
public class CTFontFeatureContextualAlternates : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
ContextualAlternatesOn = 0,
+ /// To be added.
ContextualAlternatesOff = 1,
+ /// To be added.
SwashAlternatesOn = 2,
+ /// To be added.
SwashAlternatesOff = 3,
+ /// To be added.
ContextualSwashAlternatesOn = 4,
+ /// To be added.
ContextualSwashAlternatesOff = 5
}
@@ -1508,6 +2026,9 @@ public CTFontFeatureContextualAlternates (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1523,8 +2044,11 @@ public Selector Feature {
#endif
public class CTFontFeatureLowerCase : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
DefaultLowerCase = 0,
+ /// To be added.
LowerCaseSmallCaps = 1,
+ /// To be added.
LowerCasePetiteCaps = 2
}
@@ -1533,6 +2057,9 @@ public CTFontFeatureLowerCase (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1548,8 +2075,11 @@ public Selector Feature {
#endif
public class CTFontFeatureUpperCase : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
DefaultUpperCase = 0,
+ /// To be added.
UpperCaseSmallCaps = 1,
+ /// To be added.
UpperCasePetiteCaps = 2
}
@@ -1558,6 +2088,9 @@ public CTFontFeatureUpperCase (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1573,9 +2106,13 @@ public Selector Feature {
#endif
public class CTFontFeatureCJKRomanSpacing : CTFontFeatureSelectors {
public enum Selector {
+ /// To be added.
HalfWidthCJKRoman = 0,
+ /// To be added.
ProportionalCJKRoman = 1,
+ /// To be added.
DefaultCJKRoman = 2,
+ /// To be added.
FullWidthCJKRoman = 3
}
@@ -1584,6 +2121,9 @@ public CTFontFeatureCJKRomanSpacing (NSDictionary dictionary)
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Selector Feature {
get {
return (Selector) FeatureWeak;
@@ -1606,14 +2146,23 @@ internal CTFontFeatureSettings (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public FontFeatureGroup FeatureGroup {
get {
return (FontFeatureGroup) (int) (NSNumber) Dictionary [CTFontFeatureKey.Identifier];
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int FeatureWeak {
get {
return (int) (NSNumber) Dictionary [CTFontFeatureSelectorKey.Identifier];
@@ -1641,34 +2190,55 @@ public CTFontVariationAxes (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSNumber Identifier {
get { return (NSNumber) Dictionary [CTFontVariationAxisKey.Identifier]; }
set { Adapter.SetValue (Dictionary, CTFontVariationAxisKey.Identifier, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSNumber MinimumValue {
get { return (NSNumber) Dictionary [CTFontVariationAxisKey.MinimumValue]; }
set { Adapter.SetValue (Dictionary, CTFontVariationAxisKey.MinimumValue, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSNumber MaximumValue {
get { return (NSNumber) Dictionary [CTFontVariationAxisKey.MaximumValue]; }
set { Adapter.SetValue (Dictionary, CTFontVariationAxisKey.MaximumValue, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSNumber DefaultValue {
get { return (NSNumber) Dictionary [CTFontVariationAxisKey.DefaultValue]; }
set { Adapter.SetValue (Dictionary, CTFontVariationAxisKey.DefaultValue, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? Name {
get { return Adapter.GetStringValue (Dictionary, CTFontVariationAxisKey.Name); }
set { Adapter.SetValue (Dictionary, CTFontVariationAxisKey.Name, value); }
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
@@ -1700,6 +2270,9 @@ public CTFontVariation (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
}
@@ -2160,6 +2733,10 @@ public CTFontDescriptor GetFontDescriptor ()
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetSize (IntPtr font);
+ /// The font size.
+ ///
+ ///
+ /// This is the size that was used when the font was constructed.
public nfloat Size {
get { return CTFontGetSize (Handle); }
}
@@ -2167,12 +2744,20 @@ public nfloat Size {
[DllImport (Constants.CoreTextLibrary)]
static extern CGAffineTransform CTFontGetMatrix (/* CTFontRef __nonnull */ IntPtr font);
+ /// The transformation matrix used when this font was created.
+ ///
+ ///
+ ///
+ ///
public CGAffineTransform Matrix {
get { return CTFontGetMatrix (Handle); }
}
[DllImport (Constants.CoreTextLibrary)]
static extern CTFontSymbolicTraits CTFontGetSymbolicTraits (IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTFontSymbolicTraits SymbolicTraits {
get { return CTFontGetSymbolicTraits (Handle); }
}
@@ -2192,6 +2777,9 @@ public CTFontSymbolicTraits SymbolicTraits {
#region Font Names
[DllImport (Constants.CoreTextLibrary)]
static extern IntPtr CTFontCopyPostScriptName (IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? PostScriptName {
get { return CFString.FromHandle (CTFontCopyPostScriptName (Handle), releaseHandle: true); }
}
@@ -2200,6 +2788,9 @@ public string? PostScriptName {
static extern /* CFStringRef __nonnull */ IntPtr CTFontCopyFamilyName (
/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? FamilyName {
get { return CFString.FromHandle (CTFontCopyFamilyName (Handle), releaseHandle: true); }
}
@@ -2208,6 +2799,9 @@ public string? FamilyName {
static extern /* CFStringRef __nonnull */ IntPtr CTFontCopyFullName (
/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? FullName {
get { return CFString.FromHandle (CTFontCopyFullName (Handle), releaseHandle: true); }
}
@@ -2216,6 +2810,9 @@ public string? FullName {
static extern /* CFStringRef __nonnull */ IntPtr CTFontCopyDisplayName (
/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? DisplayName {
get { return CFString.FromHandle (CTFontCopyDisplayName (Handle), releaseHandle: true); }
}
@@ -2252,6 +2849,9 @@ public string? DisplayName {
static extern /* CFCharacterSetRef __nonnull */ IntPtr CTFontCopyCharacterSet (
/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSCharacterSet? CharacterSet {
get {
return Runtime.GetNSObject (CTFontCopyCharacterSet (Handle), true);
@@ -2260,6 +2860,9 @@ public NSCharacterSet? CharacterSet {
[DllImport (Constants.CoreTextLibrary)]
static extern uint CTFontGetStringEncoding (IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint StringEncoding {
get { return CTFontGetStringEncoding (Handle); }
}
@@ -2349,6 +2952,9 @@ static void AssertLength (string name, T []? array, nint count, bool canBeNul
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetAscent (/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat AscentMetric {
get { return CTFontGetAscent (Handle); }
}
@@ -2356,6 +2962,9 @@ public nfloat AscentMetric {
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetDescent (/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat DescentMetric {
get { return CTFontGetDescent (Handle); }
}
@@ -2363,12 +2972,18 @@ public nfloat DescentMetric {
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetLeading (/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat LeadingMetric {
get { return CTFontGetLeading (Handle); }
}
[DllImport (Constants.CoreTextLibrary)]
static extern uint CTFontGetUnitsPerEm (IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint UnitsPerEmMetric {
get { return CTFontGetUnitsPerEm (Handle); }
}
@@ -2376,6 +2991,9 @@ public uint UnitsPerEmMetric {
[DllImport (Constants.CoreTextLibrary)]
static extern /* CFIndex */ nint CTFontGetGlyphCount (/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint GlyphCount {
get { return CTFontGetGlyphCount (Handle); }
}
@@ -2383,24 +3001,36 @@ public nint GlyphCount {
[DllImport (Constants.CoreTextLibrary)]
static extern CGRect CTFontGetBoundingBox (/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CGRect BoundingBox {
get { return CTFontGetBoundingBox (Handle); }
}
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetUnderlinePosition (IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat UnderlinePosition {
get { return CTFontGetUnderlinePosition (Handle); }
}
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetUnderlineThickness (IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat UnderlineThickness {
get { return CTFontGetUnderlineThickness (Handle); }
}
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetSlantAngle (IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat SlantAngle {
get { return CTFontGetSlantAngle (Handle); }
}
@@ -2408,12 +3038,18 @@ public nfloat SlantAngle {
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetCapHeight (/* CTFontRef __nonnull */ IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat CapHeightMetric {
get { return CTFontGetCapHeight (Handle); }
}
[DllImport (Constants.CoreTextLibrary)]
static extern nfloat CTFontGetXHeight (IntPtr font);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat XHeightMetric {
get { return CTFontGetXHeight (Handle); }
}
diff --git a/src/CoreText/CTFontCollection.cs b/src/CoreText/CTFontCollection.cs
index c3e5dfec1c72..544c6c142ec1 100644
--- a/src/CoreText/CTFontCollection.cs
+++ b/src/CoreText/CTFontCollection.cs
@@ -80,10 +80,20 @@ public CTFontCollectionOptions (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// The NSDictionary that represents the current values set.
+ ///
+ ///
+ ///
+ ///
public NSDictionary Dictionary { get; private set; }
// The docs (and headers) only imply that this is a numeric value ('set to non-zero to ...')
// No mention of the expected type (int? NSNumber?)
+ /// If set, removes duplicate font descriptors.
+ ///
+ ///
+ ///
+ ///
public bool RemoveDuplicates {
get {
if (CTFontCollectionOptionKey.RemoveDuplicates is null)
diff --git a/src/CoreText/CTFontDescriptor.cs b/src/CoreText/CTFontDescriptor.cs
index b61e862f5b0e..061e1c71ca99 100644
--- a/src/CoreText/CTFontDescriptor.cs
+++ b/src/CoreText/CTFontDescriptor.cs
@@ -48,41 +48,65 @@ namespace CoreText {
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h
public enum CTFontOrientation : uint {
+ /// To be added.
Default = 0,
+ /// To be added.
Horizontal = 1,
+ /// To be added.
Vertical = 2,
}
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h
public enum CTFontFormat : uint {
+ /// An unrecognized font format.
Unrecognized = 0,
+ /// OpenType PostScript font.
OpenTypePostScript = 1,
+ /// OpenType TrueType font.
OpenTypeTrueType = 2,
+ /// TrueType font.
TrueType = 3,
+ /// PostScript font.
PostScript = 4,
+ /// Bitmap font.
Bitmap = 5,
}
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h
public enum CTFontPriority : uint {
+ /// To be added.
System = 10000,
+ /// To be added.
Network = 20000,
+ /// To be added.
Computer = 30000,
+ /// To be added.
User = 40000,
+ /// To be added.
Dynamic = 50000,
+ /// To be added.
Process = 60000,
}
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h
public enum CTFontDescriptorMatchingState : uint {
+ /// To be added.
Started,
+ /// To be added.
Finished,
+ /// To be added.
WillBeginQuerying,
+ /// To be added.
Stalled,
+ /// To be added.
WillBeginDownloading,
+ /// To be added.
Downloading,
+ /// To be added.
DownloadingFinished,
+ /// To be added.
Matched,
+ /// To be added.
FailedWithError
}
@@ -160,33 +184,76 @@ public CTFontDescriptorAttributes (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// The NSDictionary that reflects the current values in the strongly typed CTFontDescriptorAttributes.
+ ///
+ ///
+ ///
+ ///
public NSDictionary Dictionary { get; private set; }
+ /// Used to access the URL for the font.
+ ///
+ ///
+ ///
+ ///
public NSUrl? Url {
get { return (NSUrl?) Dictionary [CTFontDescriptorAttributeKey.Url]; }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.Url!, value); }
}
+ /// The PostScript name for the font.
+ ///
+ ///
+ ///
+ ///
public string? Name {
get { return Adapter.GetStringValue (Dictionary, CTFontDescriptorAttributeKey.Name); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.Name!, value); }
}
+ /// The font display name
+ ///
+ ///
+ /// For example the display name for the PostScript name "HelveticaNeue" is "Helvetica Neue".
public string? DisplayName {
get { return Adapter.GetStringValue (Dictionary, CTFontDescriptorAttributeKey.DisplayName); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.DisplayName!, value); }
}
+ /// The font family name.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
public string? FamilyName {
get { return Adapter.GetStringValue (Dictionary, CTFontDescriptorAttributeKey.FamilyName); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.FamilyName!, value); }
}
+ /// The font stylename
+ ///
+ ///
+ ///
+ ///
public string? StyleName {
get { return Adapter.GetStringValue (Dictionary, CTFontDescriptorAttributeKey.StyleName); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.StyleName!, value); }
}
+ /// The font traits.
+ ///
+ ///
+ ///
+ ///
public CTFontTraits? Traits {
get {
if (CTFontDescriptorAttributeKey.Traits is NSString traitsKey && Dictionary [traitsKey] is NSDictionary traits)
@@ -198,6 +265,11 @@ public CTFontTraits? Traits {
}
}
+ /// Font variation.
+ ///
+ ///
+ ///
+ ///
public CTFontVariation? Variation {
get {
if (CTFontDescriptorAttributeKey.Variation is NSString variationKey && Dictionary [variationKey] is NSDictionary variation)
@@ -210,11 +282,21 @@ public CTFontVariation? Variation {
}
// CFNumber
+ /// The font point size, if not specified, the default 12.0 is used.
+ ///
+ ///
+ ///
+ ///
public float? Size {
get { return Adapter.GetSingleValue (Dictionary, CTFontDescriptorAttributeKey.Size); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.Size!, value); }
}
+ /// If set, the transformation matrix used when creating the font.
+ ///
+ ///
+ ///
+ ///
public unsafe CGAffineTransform? Matrix {
get {
if (CTFontDescriptorAttributeKey.Matrix is NSString matrixKey && Dictionary [matrixKey] is NSData d)
@@ -236,6 +318,11 @@ public unsafe CGAffineTransform? Matrix {
}
}
+ /// Cascade list of font descriptors.
+ ///
+ ///
+ ///
+ ///
public IEnumerable? CascadeList {
get {
if (CTFontDescriptorAttributeKey.CascadeList is NSString cascadeList)
@@ -245,27 +332,52 @@ public IEnumerable? CascadeList {
set { Adapter.SetNativeValue (Dictionary, CTFontDescriptorAttributeKey.CascadeList!, value); }
}
+ /// The character set.
+ ///
+ ///
+ ///
+ ///
public NSCharacterSet? CharacterSet {
get { return (NSCharacterSet) Dictionary [CTFontDescriptorAttributeKey.CharacterSet]; }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.CharacterSet!, value); }
}
+ /// List of supported languages by the font, must be encoded in RFC3066bis standard.
+ ///
+ ///
+ ///
+ ///
public IEnumerable? Languages {
get { return Adapter.GetStringArray (Dictionary, CTFontDescriptorAttributeKey.Languages); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.Languages!, value); }
}
// float represented as a CFNumber
+ /// The Baseline Adjustment.
+ ///
+ ///
+ ///
+ ///
public float? BaselineAdjust {
get { return Adapter.GetSingleValue (Dictionary, CTFontDescriptorAttributeKey.BaselineAdjust); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.BaselineAdjust!, value); }
}
+ /// If set, the Macintosh encodings for this font.
+ ///
+ ///
+ ///
+ ///
public float? MacintoshEncodings {
get { return Adapter.GetSingleValue (Dictionary, CTFontDescriptorAttributeKey.MacintoshEncodings); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.MacintoshEncodings!, value); }
}
+ /// The font features for a font reference.
+ ///
+ ///
+ ///
+ ///
public IEnumerable? Features {
get {
if (CTFontDescriptorAttributeKey.Features is NSString features) {
@@ -288,6 +400,11 @@ public IEnumerable? Features {
}
}
+ /// Feature settings for the font.
+ ///
+ ///
+ ///
+ ///
public IEnumerable? FeatureSettings {
get {
if (CTFontDescriptorAttributeKey.Features is NSString features) {
@@ -311,11 +428,21 @@ public IEnumerable? FeatureSettings {
}
// CFNumber
+ /// If set, overrides the font built-in constant advance.
+ ///
+ ///
+ ///
+ ///
public float? FixedAdvance {
get { return Adapter.GetSingleValue (Dictionary, CTFontDescriptorAttributeKey.FixedAdvance); }
set { Adapter.SetValue (Dictionary, CTFontDescriptorAttributeKey.FixedAdvance!, value); }
}
+ /// The font orientation.
+ ///
+ ///
+ ///
+ ///
public CTFontOrientation? FontOrientation {
get {
if (CTFontDescriptorAttributeKey.FontOrientation is NSString fontOrientation) {
@@ -330,6 +457,11 @@ public CTFontOrientation? FontOrientation {
}
}
+ /// Font format.
+ ///
+ ///
+ ///
+ ///
public CTFontFormat? FontFormat {
get {
if (CTFontDescriptorAttributeKey.FontFormat is NSString fontFormat) {
@@ -344,6 +476,11 @@ public CTFontFormat? FontFormat {
}
}
+ /// The font registration scope.
+ ///
+ ///
+ ///
+ ///
public CTFontManagerScope? RegistrationScope {
get {
if (CTFontDescriptorAttributeKey.RegistrationScope is NSString registrationScope) {
@@ -358,6 +495,11 @@ public CTFontManagerScope? RegistrationScope {
}
}
+ /// The font priority used when resolving font duplicates.
+ ///
+ ///
+ ///
+ ///
public CTFontPriority? Priority {
get {
if (CTFontDescriptorAttributeKey.Priority is NSString priority) {
@@ -389,6 +531,11 @@ public bool? WeakEnabled {
}
#if !XAMCORE_5_0
+ /// Enabled state.
+ ///
+ ///
+ ///
+ ///
public bool Enabled {
get {
var value = (NSNumber) Dictionary [CTFontDescriptorAttributeKey.Enabled];
diff --git a/src/CoreText/CTFontManager.cs b/src/CoreText/CTFontManager.cs
index 7fc1b47f49db..31535411a889 100644
--- a/src/CoreText/CTFontManager.cs
+++ b/src/CoreText/CTFontManager.cs
@@ -46,7 +46,9 @@ namespace CoreText {
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h
public enum CTFontManagerScope : uint {
+ /// To be added.
None = 0,
+ /// To be added.
Process = 1,
#if NET
[SupportedOSPlatform ("ios13.0")]
@@ -59,6 +61,7 @@ public enum CTFontManagerScope : uint {
#endif
Persistent = 2,
#if NET
+ /// To be added.
[UnsupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
[UnsupportedOSPlatform ("ios")]
@@ -77,10 +80,14 @@ public enum CTFontManagerScope : uint {
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h
public enum CTFontManagerAutoActivation : uint {
+ /// To be added.
Default = 0,
+ /// To be added.
Disabled = 1,
+ /// To be added.
Enabled = 2,
#if NET
+ /// Developers should not use this deprecated field. It's now treated as 'Default'.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
diff --git a/src/CoreText/CTFontNameKey.cs b/src/CoreText/CTFontNameKey.cs
index 7ce29cc97e3e..b1653150ddaa 100644
--- a/src/CoreText/CTFontNameKey.cs
+++ b/src/CoreText/CTFontNameKey.cs
@@ -39,23 +39,41 @@ namespace CoreText {
// Utility enum for constant strings in ObjC
public enum CTFontNameKey {
+ /// To be added.
Copyright,
+ /// To be added.
Family,
+ /// To be added.
SubFamily,
+ /// To be added.
Style,
+ /// To be added.
Unique,
+ /// To be added.
Full,
+ /// To be added.
Version,
+ /// To be added.
PostScript,
+ /// To be added.
Trademark,
+ /// To be added.
Manufacturer,
+ /// To be added.
Designer,
+ /// To be added.
Description,
+ /// To be added.
VendorUrl,
+ /// To be added.
DesignerUrl,
+ /// To be added.
License,
+ /// To be added.
LicenseUrl,
+ /// To be added.
SampleText,
+ /// To be added.
PostscriptCid,
}
diff --git a/src/CoreText/CTFontTrait.cs b/src/CoreText/CTFontTrait.cs
index b221c0eab031..2091c37d3ebf 100644
--- a/src/CoreText/CTFontTrait.cs
+++ b/src/CoreText/CTFontTrait.cs
@@ -60,33 +60,61 @@ static CTFontTraitKey ()
[Flags]
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h
public enum CTFontSymbolicTraits : uint {
+ /// Used when no values are set.
None = 0,
+ /// This is an italic font. If querying you can get more
+ /// information about the slant from the property.
Italic = (1 << 0),
+ ///
+ /// This is a bold font. If querying you can get more
+ /// information about the weight from the property.
+ ///
Bold = (1 << 1),
+ /// This is an expanded font.
Expanded = (1 << 5),
+ /// This is a condensed font. If querying you can get more
+ /// information about the width from the property.
Condensed = (1 << 6),
+ /// Use fixed fonts if available.
MonoSpace = (1 << 10),
+ /// The font has vertical information for rendering.
Vertical = (1 << 11),
+ /// The font is optimized for UI rendering.
UIOptimized = (1 << 12),
+ /// This font contains glyphs with colors (for example, some Emoji fonts).
ColorGlyphs = (1 << 13),
+ /// The font is a composite font reference, and a cascade list is expected for the font.
Composite = (1 << 14),
+ /// Mask used to extract trait values.
Mask = ((uint) 15 << CTFontTraits.ClassMaskShift)
}
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h
public enum CTFontStylisticClass : uint {
+ /// To be added.
None = 0,
+ /// To be added.
Unknown = ((uint) 0 << CTFontTraits.ClassMaskShift),
+ /// To be added.
OldStyleSerifs = ((uint) 1 << CTFontTraits.ClassMaskShift),
+ /// To be added.
TransitionalSerifs = ((uint) 2 << CTFontTraits.ClassMaskShift),
+ /// To be added.
ModernSerifs = ((uint) 3 << CTFontTraits.ClassMaskShift),
+ /// To be added.
ClarendonSerifs = ((uint) 4 << CTFontTraits.ClassMaskShift),
+ /// To be added.
SlabSerifs = ((uint) 5 << CTFontTraits.ClassMaskShift),
+ /// To be added.
FreeformSerifs = ((uint) 7 << CTFontTraits.ClassMaskShift),
+ /// To be added.
SansSerif = ((uint) 8 << CTFontTraits.ClassMaskShift),
+ /// To be added.
Ornamentals = ((uint) 9 << CTFontTraits.ClassMaskShift),
+ /// To be added.
Scripts = ((uint) 10 << CTFontTraits.ClassMaskShift),
+ /// To be added.
Symbolic = ((uint) 12 << CTFontTraits.ClassMaskShift),
}
@@ -110,14 +138,23 @@ public CTFontTraits (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
// CFNumber
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint? Symbolic {
get { return Adapter.GetUInt32Value (Dictionary, CTFontTraitKey.Symbolic); }
set { Adapter.SetValue (Dictionary, CTFontTraitKey.Symbolic!, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTFontSymbolicTraits? SymbolicTraits {
get {
var v = Symbolic;
@@ -131,6 +168,9 @@ public CTFontSymbolicTraits? SymbolicTraits {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTFontStylisticClass? StylisticClass {
get {
var v = Symbolic;
@@ -145,18 +185,27 @@ public CTFontStylisticClass? StylisticClass {
}
// CFNumber representing a float value
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float? Weight {
get { return Adapter.GetSingleValue (Dictionary, CTFontTraitKey.Weight); }
set { Adapter.SetValue (Dictionary, CTFontTraitKey.Weight!, value); }
}
// CFNumber representing a float value
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float? Width {
get { return Adapter.GetSingleValue (Dictionary, CTFontTraitKey.Width); }
set { Adapter.SetValue (Dictionary, CTFontTraitKey.Width!, value); }
}
// CFNumber representing a float value
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float? Slant {
get { return Adapter.GetSingleValue (Dictionary, CTFontTraitKey.Slant); }
set { Adapter.SetValue (Dictionary, CTFontTraitKey.Slant!, value); }
diff --git a/src/CoreText/CTFrame.cs b/src/CoreText/CTFrame.cs
index 084f76340a13..65e0139a1180 100644
--- a/src/CoreText/CTFrame.cs
+++ b/src/CoreText/CTFrame.cs
@@ -45,13 +45,17 @@ namespace CoreText {
[Flags]
public enum CTFrameProgression : uint {
+ /// To be added.
TopToBottom = 0,
+ /// To be added.
RightToLeft = 1,
LeftToRight = 2,
}
public enum CTFramePathFillRule {
+ /// To be added.
EvenOdd,
+ /// To be added.
WindingNumber
}
@@ -97,8 +101,14 @@ public CTFrameAttributes (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTFrameProgression? Progression {
get {
var value = Adapter.GetUInt32Value (Dictionary, CTFrameAttributeKey.Progression);
diff --git a/src/CoreText/CTGlyphInfo.cs b/src/CoreText/CTGlyphInfo.cs
index f7b3d326afa8..728b77a71937 100644
--- a/src/CoreText/CTGlyphInfo.cs
+++ b/src/CoreText/CTGlyphInfo.cs
@@ -45,11 +45,17 @@ namespace CoreText {
#region Glyph Info Values
public enum CTCharacterCollection : ushort {
+ /// The character identifier is the same as the glyph index.
IdentityMapping = 0,
+ /// The Adobe-CNS1 character collection.
AdobeCNS1 = 1,
+ /// The Adobe-GB1 character collection.
AdobeGB1 = 2,
+ /// The Adobe-Japan1 character collection.
AdobeJapan1 = 3,
+ /// The Adobe-Japan2 character collection.
AdobeJapan2 = 4,
+ /// The Adobe-Korea1 mapping.
AdobeKorea1 = 5,
}
#endregion
@@ -143,6 +149,9 @@ public CTGlyphInfo (CGFontIndex cid, CTCharacterCollection collection, string ba
#region Glyph Info Access
[DllImport (Constants.CoreTextLibrary)]
static extern IntPtr CTGlyphInfoGetGlyphName (IntPtr glyphInfo);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? GlyphName {
get {
var cfStringRef = CTGlyphInfoGetGlyphName (Handle);
@@ -152,12 +161,18 @@ public string? GlyphName {
[DllImport (Constants.CoreTextLibrary)]
static extern CGFontIndex CTGlyphInfoGetCharacterIdentifier (IntPtr glyphInfo);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CGFontIndex CharacterIdentifier {
get { return CTGlyphInfoGetCharacterIdentifier (Handle); }
}
[DllImport (Constants.CoreTextLibrary)]
static extern CTCharacterCollection CTGlyphInfoGetCharacterCollection (IntPtr glyphInfo);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTCharacterCollection CharacterCollection {
get { return CTGlyphInfoGetCharacterCollection (Handle); }
}
diff --git a/src/CoreText/CTLine.cs b/src/CoreText/CTLine.cs
index 5a529dad0408..6a509f526d6e 100644
--- a/src/CoreText/CTLine.cs
+++ b/src/CoreText/CTLine.cs
@@ -45,8 +45,11 @@ namespace CoreText {
// defined as uint32_t - /System/Library/Frameworks/CoreText.framework/Headers/CTLine.h
public enum CTLineTruncation : uint {
+ /// To be added.
Start = 0,
+ /// To be added.
End = 1,
+ /// To be added.
Middle = 2
}
@@ -54,11 +57,31 @@ public enum CTLineTruncation : uint {
[Native]
[Flags]
public enum CTLineBoundsOptions : ulong {
+ /// Use this option to exclude the typographic leading from the bounds computation (the space between baselines of different lines of text).
ExcludeTypographicLeading = 1 << 0,
+ /// Does not take into account kerning or leading information when computing bounds for
ExcludeTypographicShifts = 1 << 1,
+ ///
+ /// Hanging Punctuation is a way of typesetting
+ /// punctuation marks and bullet points, most commonly quotation
+ /// marks and hyphens, so that they do not disrupt the "flow" of
+ /// a body of text or "break" the margin of alignment. It is so
+ /// called because the punctuation appears to ‘hang’ in the
+ /// margin of the text, and is not incorporated into the block
+ /// or column of text. It is commonly used when text is fully justified.
+ ///
UseHangingPunctuation = 1 << 2,
+ /// The bounds of every glyph. These are typographically not very interesting as they do not take into account the finer details of typography, this returns the bounding box for the actual text rendered.
UseGlyphPathBounds = 1 << 3,
+ ///
+ ///
+ /// This uses the optical bounds. Some fonts include
+ /// information about the optical perception of the font, and it
+ /// might not align perfectly with the bounding box of the text.
+ ///
+ ///
UseOpticalBounds = 1 << 4,
+ /// To be added.
IncludeLanguageExtents = 1 << 5, // iOS8 and Mac 10.11
}
@@ -107,6 +130,9 @@ public CTLine (NSAttributedString value)
#region Line Access
[DllImport (Constants.CoreTextLibrary)]
static extern nint CTLineGetGlyphCount (IntPtr line);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint GlyphCount {
get { return CTLineGetGlyphCount (Handle); }
}
@@ -125,6 +151,9 @@ public CTRun [] GetGlyphRuns ()
[DllImport (Constants.CoreTextLibrary)]
static extern NSRange CTLineGetStringRange (IntPtr line);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSRange StringRange {
get { return CTLineGetStringRange (Handle); }
}
@@ -180,6 +209,9 @@ public double GetTypographicBounds ()
[DllImport (Constants.CoreTextLibrary)]
static extern double CTLineGetTrailingWhitespaceWidth (IntPtr line);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public double TrailingWhitespaceWidth {
get { return CTLineGetTrailingWhitespaceWidth (Handle); }
}
diff --git a/src/CoreText/CTParagraphStyle.cs b/src/CoreText/CTParagraphStyle.cs
index 7fb16b326f61..1bdef4a72905 100644
--- a/src/CoreText/CTParagraphStyle.cs
+++ b/src/CoreText/CTParagraphStyle.cs
@@ -47,32 +47,48 @@ namespace CoreText {
// defined as uint8_t - /System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h
public enum CTTextAlignment : byte {
+ /// To be added.
Left = 0,
+ /// To be added.
Right = 1,
+ /// To be added.
Center = 2,
+ /// To be added.
Justified = 3,
+ /// To be added.
Natural = 4,
}
// defined as uint8_t - /System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h
public enum CTLineBreakMode : byte {
+ /// To be added.
WordWrapping = 0,
+ /// To be added.
CharWrapping = 1,
+ /// To be added.
Clipping = 2,
+ /// To be added.
TruncatingHead = 3,
+ /// To be added.
TruncatingTail = 4,
+ /// To be added.
TruncatingMiddle = 5,
}
[Flags]
// defined as int8_t - /System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h
public enum CTWritingDirection : sbyte {
+ /// To be added.
Natural = -1,
+ /// To be added.
LeftToRight = 0,
+ /// To be added.
RightToLeft = 1,
// part of an unnamed enum inside CTStringAttributes.h
+ /// To be added.
Embedding = (0 << 1),
+ /// To be added.
Override = (1 << 1)
}
@@ -240,23 +256,77 @@ public CTParagraphStyleSettings ()
{
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public IEnumerable? TabStops { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTTextAlignment? Alignment { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTLineBreakMode? LineBreakMode { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTWritingDirection? BaseWritingDirection { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTLineBoundsOptions? LineBoundsOptions { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? FirstLineHeadIndent { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? HeadIndent { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? TailIndent { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? DefaultTabInterval { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? LineHeightMultiple { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? MaximumLineHeight { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? MinimumLineHeight { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? LineSpacing { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? ParagraphSpacing { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? ParagraphSpacingBefore { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? MaximumLineSpacing { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? MinimumLineSpacing { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat? LineSpacingAdjustment { get; set; }
internal List GetSpecifiers ()
@@ -410,6 +480,9 @@ public CTParagraphStyle Clone ()
return NSArray.ArrayFromHandle (cfArrayRef, p => new CTTextTab (p, false));
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTTextAlignment Alignment {
get { return (CTTextAlignment) GetByteValue (CTParagraphStyleSpecifier.Alignment); }
}
@@ -422,15 +495,24 @@ unsafe byte GetByteValue (CTParagraphStyleSpecifier spec)
return value;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTLineBreakMode LineBreakMode {
get { return (CTLineBreakMode) GetByteValue (CTParagraphStyleSpecifier.LineBreakMode); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTWritingDirection BaseWritingDirection {
get { return (CTWritingDirection) GetByteValue (CTParagraphStyleSpecifier.BaseWritingDirection); }
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat FirstLineHeadIndent {
#else
public float FirstLineHeadIndent {
@@ -455,6 +537,9 @@ unsafe float GetFloatValue (CTParagraphStyleSpecifier spec)
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat HeadIndent {
#else
public float HeadIndent {
@@ -463,6 +548,9 @@ public float HeadIndent {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat TailIndent {
#else
public float TailIndent {
@@ -471,6 +559,9 @@ public float TailIndent {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat DefaultTabInterval {
#else
public float DefaultTabInterval {
@@ -479,6 +570,9 @@ public float DefaultTabInterval {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat LineHeightMultiple {
#else
public float LineHeightMultiple {
@@ -487,6 +581,9 @@ public float LineHeightMultiple {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat MaximumLineHeight {
#else
public float MaximumLineHeight {
@@ -495,6 +592,9 @@ public float MaximumLineHeight {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat MinimumLineHeight {
#else
public float MinimumLineHeight {
@@ -503,6 +603,9 @@ public float MinimumLineHeight {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat LineSpacing {
#else
public float LineSpacing {
@@ -511,6 +614,9 @@ public float LineSpacing {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat ParagraphSpacing {
#else
public float ParagraphSpacing {
@@ -519,6 +625,9 @@ public float ParagraphSpacing {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nfloat ParagraphSpacingBefore {
#else
public float ParagraphSpacingBefore {
diff --git a/src/CoreText/CTRun.cs b/src/CoreText/CTRun.cs
index 2d655124c842..43156481006d 100644
--- a/src/CoreText/CTRun.cs
+++ b/src/CoreText/CTRun.cs
@@ -45,9 +45,13 @@ namespace CoreText {
// defined as uint32_t - System/Library/Frameworks/CoreText.framework/Headers/CTRun.h
public enum CTRunStatus {
+ /// To be added.
NoStatus = 0,
+ /// To be added.
RightToLeft = (1 << 0),
+ /// To be added.
NonMonotonic = (1 << 1),
+ /// To be added.
HasNonIdentityMatrix = (1 << 2)
}
@@ -116,6 +120,9 @@ public CGSize [] GetAdvances ()
[DllImport (Constants.CoreTextLibrary)]
extern static nint CTRunGetGlyphCount (IntPtr handle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint GlyphCount {
get {
return CTRunGetGlyphCount (Handle);
@@ -173,6 +180,9 @@ public CGPoint [] GetPositions ()
[DllImport (Constants.CoreTextLibrary)]
extern static CTRunStatus CTRunGetStatus (IntPtr handle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTRunStatus Status {
get {
return CTRunGetStatus (Handle);
@@ -202,6 +212,9 @@ public nint [] GetStringIndices ()
[DllImport (Constants.CoreTextLibrary)]
extern static NSRange CTRunGetStringRange (IntPtr handle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSRange StringRange {
get {
return CTRunGetStringRange (Handle);
@@ -210,6 +223,9 @@ public NSRange StringRange {
[DllImport (Constants.CoreTextLibrary)]
extern static CGAffineTransform CTRunGetTextMatrix (IntPtr handle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CGAffineTransform TextMatrix {
get {
return CTRunGetTextMatrix (Handle);
diff --git a/src/CoreText/CTRunDelegate.cs b/src/CoreText/CTRunDelegate.cs
index 8afd29ae4d1b..47d3b111972e 100644
--- a/src/CoreText/CTRunDelegate.cs
+++ b/src/CoreText/CTRunDelegate.cs
@@ -269,6 +269,9 @@ public CTRunDelegate (CTRunDelegateOperations operations)
[DllImport (Constants.CoreTextLibrary)]
static extern IntPtr CTRunDelegateGetRefCon (IntPtr runDelegate);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTRunDelegateOperations? Operations {
get {
return CTRunDelegateOperations.GetOperations (CTRunDelegateGetRefCon (Handle));
diff --git a/src/CoreText/CTStringAttributes.cs b/src/CoreText/CTStringAttributes.cs
index 6893bdf15e39..c451e91235f6 100644
--- a/src/CoreText/CTStringAttributes.cs
+++ b/src/CoreText/CTStringAttributes.cs
@@ -52,30 +52,45 @@ namespace CoreText {
#region CFAttributedStringRef AttributeKey Prototypes
// defined as int32_t - System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h
public enum CTUnderlineStyle : int {
+ /// To be added.
None = 0x00,
+ /// To be added.
Single = 0x01,
+ /// To be added.
Thick = 0x02,
+ /// To be added.
Double = 0x09,
}
// defined as int32_t - System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h
public enum CTUnderlineStyleModifiers : int {
+ /// To be added.
PatternSolid = 0x0000,
+ /// To be added.
PatternDot = 0x0100,
+ /// To be added.
PatternDash = 0x0200,
+ /// To be added.
PatternDashDot = 0x0300,
+ /// To be added.
PatternDashDotDot = 0x0400,
}
public enum CTLigatureFormation {
+ /// To be added.
Essential = 0,
+ /// To be added.
Standard = 1,
+ /// To be added.
All = 2,
}
public enum CTSuperscriptStyle {
+ /// To be added.
None = 0,
+ /// To be added.
Superscript = 1,
+ /// To be added.
Subscript = -1,
}
@@ -155,8 +170,14 @@ public CTStringAttributes (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTFont? Font {
get {
var h = CFDictionary.GetValue (Dictionary.Handle, CTStringAttributeKey.Font.GetHandle ());
@@ -165,6 +186,9 @@ public CTFont? Font {
set { Adapter.SetNativeValue (Dictionary, CTStringAttributeKey.Font!, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ForegroundColorFromContext {
get {
return CFDictionary.GetBooleanValue (Dictionary.Handle,
@@ -178,12 +202,18 @@ public bool ForegroundColorFromContext {
}
// Header says 'Value must be a CFNumberRef float' - System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float? KerningAdjustment {
get { return Adapter.GetSingleValue (Dictionary, CTStringAttributeKey.KerningAdjustment); }
set { Adapter.SetValue (Dictionary, CTStringAttributeKey.KerningAdjustment!, value); }
}
// Documentation says this must be 'CFNumber', doesn't specify exact type (but implies it's an integer value)
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTLigatureFormation? LigatureFormation {
get {
var value = Adapter.GetInt32Value (Dictionary, CTStringAttributeKey.LigatureFormation);
@@ -195,6 +225,9 @@ public CTLigatureFormation? LigatureFormation {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CGColor? ForegroundColor {
get {
var h = CFDictionary.GetValue (Dictionary.Handle, CTStringAttributeKey.ForegroundColor.GetHandle ());
@@ -204,6 +237,9 @@ public CGColor? ForegroundColor {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -224,6 +260,9 @@ public CGColor? BackgroundColor {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTParagraphStyle? ParagraphStyle {
get {
var h = CFDictionary.GetValue (Dictionary.Handle, CTStringAttributeKey.ParagraphStyle.GetHandle ());
@@ -233,11 +272,17 @@ public CTParagraphStyle? ParagraphStyle {
}
// Documentation says this must be 'CFNumber', doesn't specify exact type (but implies it's a floating point value)
+ /// To be added.
+ /// To be added.
+ /// To be added.
public float? StrokeWidth {
get { return Adapter.GetSingleValue (Dictionary, CTStringAttributeKey.StrokeWidth); }
set { Adapter.SetValue (Dictionary, CTStringAttributeKey.StrokeWidth!, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CGColor? StrokeColor {
get {
var h = CFDictionary.GetValue (Dictionary.Handle, CTStringAttributeKey.StrokeColor.GetHandle ());
@@ -261,6 +306,9 @@ public float? TrackingAdjustment {
}
// Documentation says this must be 'CFNumber', doesn't specify exact type
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int? UnderlineStyleValue {
get { return Adapter.GetInt32Value (Dictionary, CTStringAttributeKey.UnderlineStyle); }
set { Adapter.SetValue (Dictionary, CTStringAttributeKey.UnderlineStyle!, value); }
@@ -269,6 +317,9 @@ public int? UnderlineStyleValue {
const int UnderlineStyleMask = 0x000F;
const int UnderlineStyleModifiersMask = 0x0700;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTUnderlineStyle? UnderlineStyle {
get {
var v = UnderlineStyleValue;
@@ -282,6 +333,9 @@ public CTUnderlineStyle? UnderlineStyle {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTUnderlineStyleModifiers? UnderlineStyleModifiers {
get {
var v = UnderlineStyleValue;
@@ -295,6 +349,9 @@ public CTUnderlineStyleModifiers? UnderlineStyleModifiers {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTSuperscriptStyle? Superscript {
get {
var value = Adapter.GetInt32Value (Dictionary, CTStringAttributeKey.Superscript);
@@ -306,6 +363,9 @@ public CTSuperscriptStyle? Superscript {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CGColor? UnderlineColor {
get {
var h = CFDictionary.GetValue (Dictionary.Handle, CTStringAttributeKey.UnderlineColor.GetHandle ());
@@ -314,6 +374,9 @@ public CGColor? UnderlineColor {
set { Adapter.SetNativeValue (Dictionary, CTStringAttributeKey.UnderlineColor!, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool VerticalForms {
get {
return CFDictionary.GetBooleanValue (Dictionary.Handle,
@@ -327,6 +390,9 @@ public bool VerticalForms {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
@@ -345,6 +411,9 @@ public int? HorizontalInVerticalForms {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
@@ -355,6 +424,9 @@ public float? BaselineOffset {
set { Adapter.SetValue (Dictionary, CTStringAttributeKey.BaselineOffset!, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTGlyphInfo? GlyphInfo {
get {
var h = CFDictionary.GetValue (Dictionary.Handle, CTStringAttributeKey.GlyphInfo.GetHandle ());
@@ -363,11 +435,17 @@ public CTGlyphInfo? GlyphInfo {
set { Adapter.SetNativeValue (Dictionary, CTStringAttributeKey.GlyphInfo!, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int? CharacterShape {
get { return Adapter.GetInt32Value (Dictionary, CTStringAttributeKey.CharacterShape); }
set { Adapter.SetValue (Dictionary, CTStringAttributeKey.CharacterShape!, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTRunDelegate? RunDelegate {
get {
var h = CFDictionary.GetValue (Dictionary.Handle, CTStringAttributeKey.RunDelegate.GetHandle ());
@@ -376,6 +454,9 @@ public CTRunDelegate? RunDelegate {
set { Adapter.SetNativeValue (Dictionary, CTStringAttributeKey.RunDelegate!, value); }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTBaselineClass? BaselineClass {
get {
var value = CFDictionary.GetValue (Dictionary.Handle, CTStringAttributeKey.BaselineClass.GetHandle ());
diff --git a/src/CoreText/CTTextTab.cs b/src/CoreText/CTTextTab.cs
index fcb28921dbd2..a98f7d652329 100644
--- a/src/CoreText/CTTextTab.cs
+++ b/src/CoreText/CTTextTab.cs
@@ -74,8 +74,14 @@ public CTTextTabOptions (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSCharacterSet ColumnTerminators {
get { return (NSCharacterSet) Dictionary [CTTextTabOptionKey.ColumnTerminators]; }
set { Adapter.SetValue (Dictionary, CTTextTabOptionKey.ColumnTerminators, value); }
@@ -122,12 +128,18 @@ public CTTextTab (CTTextAlignment alignment, double location, CTTextTabOptions?
#region Text Tab Access
[DllImport (Constants.CoreTextLibrary)]
static extern CTTextAlignment CTTextTabGetAlignment (IntPtr tab);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CTTextAlignment TextAlignment {
get { return CTTextTabGetAlignment (Handle); }
}
[DllImport (Constants.CoreTextLibrary)]
static extern double CTTextTabGetLocation (IntPtr tab);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public double Location {
get { return CTTextTabGetLocation (Handle); }
}
diff --git a/src/CoreText/CTTypesetter.cs b/src/CoreText/CTTypesetter.cs
index 7b522715c197..2e925205db01 100644
--- a/src/CoreText/CTTypesetter.cs
+++ b/src/CoreText/CTTypesetter.cs
@@ -65,9 +65,15 @@ public CTTypesetterOptions (NSDictionary dictionary)
Dictionary = dictionary;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
#if NET
+ /// Developers should not use this deprecated property.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -89,12 +95,18 @@ public bool DisableBidiProcessing {
}
// The documentation says this is an NSNumber (not exactly which type), so 'int' is as good as anything else.
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int? ForceEmbeddingLevel {
get { return Adapter.GetInt32Value (Dictionary, CTTypesetterOptionKey.ForceEmbeddingLevel); }
set { Adapter.SetValue (Dictionary, CTTypesetterOptionKey.ForceEmbeddingLevel, value); }
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
diff --git a/src/CoreVideo/CVMetalTexture.cs b/src/CoreVideo/CVMetalTexture.cs
index 112d089c79be..9ea62a85717d 100644
--- a/src/CoreVideo/CVMetalTexture.cs
+++ b/src/CoreVideo/CVMetalTexture.cs
@@ -43,12 +43,18 @@ extern static void CVMetalTextureGetCleanTexCoords (/* CVMetalTextureRef __nonnu
/* float[2] */ IntPtr lowerLeft, /* float[2] */ IntPtr lowerRight, /* float[2] */ IntPtr upperRight,
/* float[2] */ IntPtr upperLeft);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public IMTLTexture? Texture {
get {
return Runtime.GetINativeObject (CVMetalTextureGetTexture (Handle), owns: false);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsFlipped {
get {
return CVMetalTextureIsFlipped (Handle) != 0;
diff --git a/src/CoreVideo/CVMetalTextureAttributes.cs b/src/CoreVideo/CVMetalTextureAttributes.cs
index eefabe154f77..f9f8cb97182e 100644
--- a/src/CoreVideo/CVMetalTextureAttributes.cs
+++ b/src/CoreVideo/CVMetalTextureAttributes.cs
@@ -15,6 +15,9 @@
namespace CoreVideo {
public partial class CVMetalTextureAttributes : DictionaryContainer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MTLTextureUsage? Usage {
get {
return (MTLTextureUsage?) (uint?) GetNUIntValue (CVMetalTextureAttributesKeys.UsageKey);
diff --git a/src/CoreVideo/CVPixelBuffer.cs b/src/CoreVideo/CVPixelBuffer.cs
index 446e346c953f..79a935833199 100644
--- a/src/CoreVideo/CVPixelBuffer.cs
+++ b/src/CoreVideo/CVPixelBuffer.cs
@@ -343,6 +343,9 @@ public CVReturn FillExtendedPixels ()
extern static /* void* __nullable */ IntPtr CVPixelBufferGetBaseAddress (
/* CVPixelBufferRef __nonnull */ IntPtr pixelBuffer);
+ /// Pointers to the base address storing the pixels. Must call M:CoreVideo.CVPixelBuffer.Lock* to to lock the base address
+ /// Pointer to the base address storing the pixels, or P:System.IntPtr.Zero if the pixel buffer is not locked.
+ /// To be added.
public IntPtr BaseAddress {
get {
return CVPixelBufferGetBaseAddress (Handle);
@@ -353,6 +356,9 @@ public IntPtr BaseAddress {
extern static /* size_t */ nint CVPixelBufferGetBytesPerRow (
/* CVPixelBufferRef __nonnull */ IntPtr pixelBuffer);
+ /// The number of bytes per row in the pixel buffer.
+ /// To be added.
+ /// To be added.
public nint BytesPerRow {
get {
return CVPixelBufferGetBytesPerRow (Handle);
@@ -363,6 +369,9 @@ public nint BytesPerRow {
extern static /* size_t */ nint CVPixelBufferGetDataSize (
/* CVPixelBufferRef __nonnull */ IntPtr pixelBuffer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint DataSize {
get {
return CVPixelBufferGetDataSize (Handle);
@@ -372,6 +381,9 @@ public nint DataSize {
[DllImport (Constants.CoreVideoLibrary)]
extern static /* size_t */ nint CVPixelBufferGetHeight (/* CVPixelBufferRef __nonnull */ IntPtr pixelBuffer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint Height {
get {
return CVPixelBufferGetHeight (Handle);
@@ -381,6 +393,9 @@ public nint Height {
[DllImport (Constants.CoreVideoLibrary)]
extern static /* size_t */ nint CVPixelBufferGetWidth (/* CVPixelBufferRef __nonnull */ IntPtr pixelBuffer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint Width {
get {
return CVPixelBufferGetWidth (Handle);
@@ -391,6 +406,9 @@ public nint Width {
extern static /* size_t */ nint CVPixelBufferGetPlaneCount (
/* CVPixelBufferRef __nonnull */ IntPtr pixelBuffer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public nint PlaneCount {
get {
return CVPixelBufferGetPlaneCount (Handle);
@@ -400,6 +418,9 @@ public nint PlaneCount {
[DllImport (Constants.CoreVideoLibrary)]
extern static /* Boolean */ byte CVPixelBufferIsPlanar (/* CVPixelBufferRef __nonnull */ IntPtr pixelBuffer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsPlanar {
get {
return CVPixelBufferIsPlanar (Handle) != 0;
@@ -410,6 +431,9 @@ public bool IsPlanar {
extern static CVPixelFormatType CVPixelBufferGetPixelFormatType (
/* CVPixelBufferRef __nonnull */ IntPtr pixelBuffer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CVPixelFormatType PixelFormatType {
get {
return CVPixelBufferGetPixelFormatType (Handle);
diff --git a/src/CoreVideo/CVPixelBufferAttributes.cs b/src/CoreVideo/CVPixelBufferAttributes.cs
index fb8cdc78c290..0290c12459f3 100644
--- a/src/CoreVideo/CVPixelBufferAttributes.cs
+++ b/src/CoreVideo/CVPixelBufferAttributes.cs
@@ -58,6 +58,10 @@ public CVPixelBufferAttributes (CVPixelFormatType pixelFormatType, nint width, n
Height = height;
}
+ /// The pixel format of the pixel buffer.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferPixelFormatTypeKey value to access the underlying dictionary.
public CVPixelFormatType? PixelFormatType {
set {
SetNumberValue (CVPixelBuffer.PixelFormatTypeKey, (uint?) value);
@@ -67,6 +71,10 @@ public CVPixelFormatType? PixelFormatType {
}
}
+ /// The allocator used for the pixel buffer.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferMemoryAllocatorKey value to access the underlying dictionary.
public CFAllocator? MemoryAllocator {
get {
return GetNativeValue (CVPixelBuffer.MemoryAllocatorKey);
@@ -76,6 +84,10 @@ public CFAllocator? MemoryAllocator {
}
}
+ /// The width of the pixel buffer.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferWidthKey value to access the underlying dictionary.
public nint? Width {
set {
SetNumberValue (CVPixelBuffer.WidthKey, value);
@@ -85,6 +97,10 @@ public nint? Width {
}
}
+ /// The height of the pixel buffer.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferHeightKey value to access the underlying dictionary.
public nint? Height {
set {
SetNumberValue (CVPixelBuffer.HeightKey, value);
@@ -94,6 +110,10 @@ public nint? Height {
}
}
+ /// The number of pixels padding the left of the image.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferExtendedPixelsLeftKey value to access the underlying dictionary.
public int? ExtendedPixelsLeft {
set {
SetNumberValue (CVPixelBuffer.ExtendedPixelsLeftKey, value);
@@ -103,6 +123,10 @@ public int? ExtendedPixelsLeft {
}
}
+ /// The number of pixels padding the top of the image.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferExtendedPixelsTopKey value to access the underlying dictionary.
public int? ExtendedPixelsTop {
set {
SetNumberValue (CVPixelBuffer.ExtendedPixelsTopKey, value);
@@ -112,6 +136,10 @@ public int? ExtendedPixelsTop {
}
}
+ /// The number of pixels padding the right of the image.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferExtendedPixelsRightKey value to access the underlying dictionary.
public int? ExtendedPixelsRight {
set {
SetNumberValue (CVPixelBuffer.ExtendedPixelsRightKey, value);
@@ -121,6 +149,10 @@ public int? ExtendedPixelsRight {
}
}
+ /// The number of pixels padding the bottom of the image.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferExtendedPixelsBottomKey value to access the underlying dictionary.
public int? ExtendedPixelsBottom {
set {
SetNumberValue (CVPixelBuffer.ExtendedPixelsBottomKey, value);
@@ -130,6 +162,10 @@ public int? ExtendedPixelsBottom {
}
}
+ /// Indicates the number of bytes per row in the pixel buffer.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferBytesPerRowAlignmentKey value to access the underlying dictionary.
public int? BytesPerRowAlignment {
set {
SetNumberValue (CVPixelBuffer.BytesPerRowAlignmentKey, value);
@@ -139,6 +175,10 @@ public int? BytesPerRowAlignment {
}
}
+ /// Indicates whether the pixel buffer is compatible with Core Graphics bitmap contexts.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferCGBitmapContextCompatibilityKey value to access the underlying dictionary.
public bool? CGBitmapContextCompatibility {
set {
SetBooleanValue (CVPixelBuffer.CGBitmapContextCompatibilityKey, value);
@@ -148,6 +188,10 @@ public bool? CGBitmapContextCompatibility {
}
}
+ /// Indicates whether the pixel buffer is compatible with CGImage types
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferCGImageCompatibilityKey value to access the underlying dictionary.
public bool? CGImageCompatibility {
set {
SetBooleanValue (CVPixelBuffer.CGImageCompatibilityKey, value);
@@ -157,6 +201,10 @@ public bool? CGImageCompatibility {
}
}
+ /// Indicates whether the pixel buffer is compatible with OpenGL contexts.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferOpenGLCompatibilityKey value to access the underlying dictionary.
public bool? OpenGLCompatibility {
set {
SetBooleanValue (CVPixelBuffer.OpenGLCompatibilityKey, value);
@@ -166,6 +214,9 @@ public bool? OpenGLCompatibility {
}
}
+ /// Specifies the alignment of the planes within the buffer.
+ /// Planes will start on a byte number which is a multiple of this value.
+ /// The property uses constant kCVPixelBufferPlaneAlignmentKey value to access the underlying dictionary.
public int? PlaneAlignment {
set {
SetNumberValue (CVPixelBuffer.PlaneAlignmentKey, value);
diff --git a/src/CoreVideo/CVPixelBufferPool.cs b/src/CoreVideo/CVPixelBufferPool.cs
index e60c464d292d..3678ebd1aad9 100644
--- a/src/CoreVideo/CVPixelBufferPool.cs
+++ b/src/CoreVideo/CVPixelBufferPool.cs
@@ -52,6 +52,11 @@ protected internal override void Release ()
[DllImport (Constants.CoreVideoLibrary)]
extern static nint CVPixelBufferPoolGetTypeID ();
+ /// CoreFoundation TypeID for the CVPixelBufferPool.
+ ///
+ ///
+ ///
+ ///
public nint TypeID {
get {
return CVPixelBufferPoolGetTypeID ();
@@ -63,6 +68,10 @@ public nint TypeID {
/* CVPixelBufferPoolRef __nonnull */ IntPtr pool);
// TODO: Return type is CVPixelBufferAttributes but need different name when this one is not WeakXXXX
+ /// Loosely typed NSDictionary containing all of the PixelBuffer attributes in the pool, it is easier to use the strogly typed Settings property.
+ /// To be added.
+ ///
+ ///
public NSDictionary? PixelBufferAttributes {
get {
return Runtime.GetNSObject (CVPixelBufferPoolGetPixelBufferAttributes (Handle));
@@ -73,12 +82,22 @@ public NSDictionary? PixelBufferAttributes {
extern static /* CFDictionaryRef __nullable */ IntPtr CVPixelBufferPoolGetAttributes (
/* CVPixelBufferPoolRef __nonnull */ IntPtr pool);
+ /// Returns the attributes of the object, you should use the Settings property instead that returns a strongly-typed version of this instead.
+ ///
+ ///
+ ///
+ ///
public NSDictionary? Attributes {
get {
return Runtime.GetNSObject (CVPixelBufferPoolGetAttributes (Handle));
}
}
+ /// The settings in use for the PixelBufferPool.
+ ///
+ ///
+ ///
+ ///
public CVPixelBufferPoolSettings? Settings {
get {
var attr = Attributes;
diff --git a/src/CoreVideo/CVPixelBufferPoolSettings.cs b/src/CoreVideo/CVPixelBufferPoolSettings.cs
index adf793e21c18..711b3a54940f 100644
--- a/src/CoreVideo/CVPixelBufferPoolSettings.cs
+++ b/src/CoreVideo/CVPixelBufferPoolSettings.cs
@@ -51,6 +51,10 @@ public CVPixelBufferPoolSettings (NSDictionary dictionary)
{
}
+ /// The minimum number of buffers allowed in the pixel buffer pool.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferPoolMinimumBufferCountKey value to access the underlying dictionary.
public int? MinimumBufferCount {
set {
SetNumberValue (CVPixelBufferPool.MinimumBufferCountKey, value);
@@ -60,6 +64,9 @@ public int? MinimumBufferCount {
}
}
+ /// The maximum allowable age in seconds for a buffer in the pixel buffer pool.
+ /// Using zero value will disable the age out procedure completely.
+ /// The property uses constant kCVPixelBufferPoolMaximumBufferAgeKey value to access the underlying dictionary.
public double? MaximumBufferAgeInSeconds {
set {
SetNumberValue (CVPixelBufferPool.MaximumBufferAgeKey, value);
@@ -87,6 +94,10 @@ public CVPixelBufferPoolAllocationSettings (NSDictionary dictionary)
{
}
+ /// The maximum allowed pixel buffer allocations in the pixel buffer pool.
+ ///
+ ///
+ /// The property uses constant kCVPixelBufferPoolAllocationThresholdKey value to access the underlying dictionary.
public int? Threshold {
set {
SetNumberValue (ThresholdKey, value);
diff --git a/src/ExternalAccessory/EAEnums.cs b/src/ExternalAccessory/EAEnums.cs
index fd0167785b10..764b32d6f6ec 100644
--- a/src/ExternalAccessory/EAEnums.cs
+++ b/src/ExternalAccessory/EAEnums.cs
@@ -15,8 +15,11 @@ namespace ExternalAccessory {
[Native]
[Flags]
public enum EAWiFiUnconfiguredAccessoryProperties : ulong {
+ /// To be added.
SupportsAirPlay = (1 << 0),
+ /// To be added.
SupportsAirPrint = (1 << 1),
+ /// To be added.
SupportsHomeKit = (1 << 2), // iOS 8 beta 5
}
@@ -25,9 +28,13 @@ public enum EAWiFiUnconfiguredAccessoryProperties : ulong {
[MacCatalyst (13, 1)]
[Native]
public enum EAWiFiUnconfiguredAccessoryBrowserState : long {
+ /// To be added.
WiFiUnavailable = 0,
+ /// To be added.
Stopped,
+ /// To be added.
Searching,
+ /// To be added.
Configuring,
}
@@ -37,8 +44,11 @@ public enum EAWiFiUnconfiguredAccessoryBrowserState : long {
[MacCatalyst (13, 1)]
[Native]
public enum EAWiFiUnconfiguredAccessoryConfigurationStatus : long {
+ /// To be added.
Success,
+ /// To be added.
UserCancelledConfiguration,
+ /// To be added.
Failed,
}
@@ -47,9 +57,13 @@ public enum EAWiFiUnconfiguredAccessoryConfigurationStatus : long {
[Native ("EABluetoothAccessoryPickerErrorCode")]
[ErrorDomain ("EABluetoothAccessoryPickerErrorDomain")]
public enum EABluetoothAccessoryPickerError : long {
+ /// To be added.
AlreadyConnected,
+ /// To be added.
NotFound,
+ /// To be added.
Cancelled,
+ /// To be added.
Failed
}
}
diff --git a/src/Foundation/Additions.cs b/src/Foundation/Additions.cs
index cff332d52b64..bc9f746a18af 100644
--- a/src/Foundation/Additions.cs
+++ b/src/Foundation/Additions.cs
@@ -14,10 +14,22 @@ public partial class NSIndexPath {
// https://trello.com/c/5SoMWz30/336-nsindexpath-expose-longrow-longsection-longitem-instead-of-changing-the-int-nature-of-them
// their usage makes it very unlikely to ever exceed 2^31
+ /// The index of a row within a of a (read-only).
+ ///
+ ///
+ /// On 64-bit platforms, the value is truncated from a 64-bit integer to a 32-bit integer. To avoid this, use the property.
public int Row {
get { return (int) LongRow; }
}
+ /// The index of a section within a (read-only).
+ ///
+ ///
+ ///
+ /// This section contains the referenced by this object.
+ ///
+ /// On 64-bit platforms, the value is truncated from a 64-bit integer to a 32-bit integer. To avoid this, use the property.
+ ///
public int Section {
get { return (int) LongSection; }
}
diff --git a/src/Foundation/AdviceAttribute.cs b/src/Foundation/AdviceAttribute.cs
index d336afad5ac1..00d742aa8dab 100644
--- a/src/Foundation/AdviceAttribute.cs
+++ b/src/Foundation/AdviceAttribute.cs
@@ -42,6 +42,9 @@ public AdviceAttribute (string message)
Message = message;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string Message { get; private set; }
}
}
diff --git a/src/Foundation/ConnectAttribute.cs b/src/Foundation/ConnectAttribute.cs
index a90a3519e565..65daef99df0c 100644
--- a/src/Foundation/ConnectAttribute.cs
+++ b/src/Foundation/ConnectAttribute.cs
@@ -36,6 +36,9 @@ public ConnectAttribute (string name)
this.name = name;
}
+ /// The name of the outlet.
+ /// The name of the outlet if specified, or null if it should default to the property name to which it is applied.
+ /// To be added.
public string? Name {
get { return this.name; }
set { this.name = value; }
diff --git a/src/Foundation/DictionaryContainer.cs b/src/Foundation/DictionaryContainer.cs
index 257afc5d5ac7..7c89831ffd1e 100644
--- a/src/Foundation/DictionaryContainer.cs
+++ b/src/Foundation/DictionaryContainer.cs
@@ -63,6 +63,9 @@ protected DictionaryContainer (NSDictionary? dictionary)
Dictionary = dictionary ?? new NSMutableDictionary ();
}
+ /// Gets the wrapped .
+ /// To be added.
+ /// To be added.
public NSDictionary Dictionary { get; private set; }
protected T []? GetArray (NSString key) where T : NSObject
diff --git a/src/Foundation/Enum.cs b/src/Foundation/Enum.cs
index 71d41f2d3fea..6c1c93c0e5c8 100644
--- a/src/Foundation/Enum.cs
+++ b/src/Foundation/Enum.cs
@@ -878,6 +878,7 @@ public enum NSAttributedStringEnumeration : ulong {
// to use this one only.
[Native]
public enum NSUnderlineStyle : long {
+ /// To be added.
None = 0x00,
Single = 0x01,
Thick = 0x02,
@@ -956,6 +957,7 @@ public enum NSUrlBookmarkResolutionOptions : ulong {
[Native]
public enum NSLigatureType : long {
None,
+ /// To be added.
Default,
All,
}
diff --git a/src/Foundation/ExportAttribute.cs b/src/Foundation/ExportAttribute.cs
index f054ad1083f2..2791e0368631 100644
--- a/src/Foundation/ExportAttribute.cs
+++ b/src/Foundation/ExportAttribute.cs
@@ -57,16 +57,25 @@ public ExportAttribute (string? selector, ArgumentSemantic semantic)
this.semantic = semantic;
}
+ /// The name of the C# selector if specified, or null if it is derived from the property name or method.
+ ///
+ /// To be added.
public string? Selector {
get { return this.selector; }
set { this.selector = value; }
}
+ /// The semantics for object ownership on setter properties or methods.
+ /// The assignment ownership semantics for setting the value.
+ /// To be added.
public ArgumentSemantic ArgumentSemantic {
get { return this.semantic; }
set { this.semantic = value; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool IsVariadic {
get;
set;
diff --git a/src/Foundation/FieldAttribute.cs b/src/Foundation/FieldAttribute.cs
index 5ada5461ead6..a63d3971159c 100644
--- a/src/Foundation/FieldAttribute.cs
+++ b/src/Foundation/FieldAttribute.cs
@@ -42,7 +42,16 @@ public FieldAttribute (string symbolName, string libraryName)
SymbolName = symbolName;
LibraryName = libraryName;
}
+ /// The global symbol that this field represents.
+ ///
+ ///
+ ///
+ ///
public string SymbolName { get; set; }
+ /// The library name where the global symbol is looked up from.
+ ///
+ ///
+ /// The special name "__Internal" means that the symbol is looked up on the current executable.
public string? LibraryName { get; set; }
}
}
diff --git a/src/Foundation/ModelAttribute.cs b/src/Foundation/ModelAttribute.cs
index a7b0572cad53..8d410c6423cd 100644
--- a/src/Foundation/ModelAttribute.cs
+++ b/src/Foundation/ModelAttribute.cs
@@ -31,6 +31,11 @@ public sealed class ModelAttribute : Attribute {
public ModelAttribute () { }
+ /// Specifies if the Objective-C type name for the model.
+ /// The Objective-C type name for the model.
+ ///
+ /// This value is only taken into account when used in binding code / projects.
+ ///
public string? Name { get; set; }
}
}
diff --git a/src/Foundation/NSAttributedString.cs b/src/Foundation/NSAttributedString.cs
index ab50adf175f8..d26fdff1c461 100644
--- a/src/Foundation/NSAttributedString.cs
+++ b/src/Foundation/NSAttributedString.cs
@@ -226,6 +226,12 @@ public NSAttributedString (string str, NSStringAttributes? attributes)
}
#endif // __MACOS__
+ /// Contents of the object as a string.
+ ///
+ ///
+ ///
+ /// Contains the string representation of the attributed string, without including any attributes in the return value.
+ ///
public string? Value {
get {
return CFString.FromHandle (LowLevelValue);
diff --git a/src/Foundation/NSAttributedStringDocumentAttributes.cs b/src/Foundation/NSAttributedStringDocumentAttributes.cs
index df70ff9d546a..ec5e2d25ed94 100644
--- a/src/Foundation/NSAttributedStringDocumentAttributes.cs
+++ b/src/Foundation/NSAttributedStringDocumentAttributes.cs
@@ -35,6 +35,9 @@
namespace Foundation {
public partial class NSAttributedStringDocumentAttributes : DictionaryContainer {
#if !COREBUILD
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSString? WeakDocumentType {
get {
return GetNSStringValue (NSAttributedStringDocumentAttributeKey.DocumentTypeDocumentAttribute);
@@ -45,6 +48,9 @@ public NSString? WeakDocumentType {
}
#if !XAMCORE_5_0
+ /// To be added.
+ /// To be added.
+ /// To be added.
[EditorBrowsable (EditorBrowsableState.Never)]
[Obsolete ("Use 'CharacterEncoding' instead.")]
public NSStringEncoding? StringEncoding {
@@ -58,6 +64,9 @@ public NSStringEncoding? StringEncoding {
#endif // !XAMCORE_5_0
#if !XAMCORE_5_0
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDocumentType DocumentType {
get {
@@ -69,6 +78,9 @@ public NSDocumentType DocumentType {
}
#endif // !XAMCORE_5_0
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary? WeakDefaultAttributes {
get {
return GetNativeValue (NSAttributedStringDocumentAttributeKey.DefaultAttributesDocumentAttribute);
@@ -91,6 +103,9 @@ public bool? ReadOnly {
}
}
#else
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool ReadOnly {
get {
var value = GetInt32Value (NSAttributedStringDocumentAttributeKey.ReadOnlyDocumentAttribute);
diff --git a/src/Foundation/NSCalendar.cs b/src/Foundation/NSCalendar.cs
index 1480b4163d7e..1ee5892ab211 100644
--- a/src/Foundation/NSCalendar.cs
+++ b/src/Foundation/NSCalendar.cs
@@ -36,26 +36,42 @@
namespace Foundation {
public enum NSCalendarType {
+ /// Gregorian calendar.
Gregorian,
+ /// Buddhist calendar.
Buddhist,
+ /// Chinese calendar.
Chinese,
+ /// Hebrew calendar.
Hebrew,
+ /// Islamic calendar.
Islamic,
+ /// IslamicCivil calendar.
IslamicCivil,
+ /// Japanese calendar.
Japanese,
+ /// Calendar for Taiwan.
Taiwan,
#if !XAMCORE_5_0
+ /// To be added.
[EditorBrowsable (EditorBrowsableState.Never)]
[Obsolete]
RepublicOfChina = Taiwan,
#endif
+ /// Persian calendar.
Persian,
+ /// Indian calendar.
Indian,
+ /// ISO8601 calendar.
ISO8601,
+ /// To be added.
Coptic,
+ /// To be added.
EthiopicAmeteAlem,
+ /// To be added.
EthiopicAmeteMihret,
#if NET
+ /// To be added.
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
@@ -63,6 +79,7 @@ public enum NSCalendarType {
#endif
IslamicTabular,
#if NET
+ /// To be added.
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
diff --git a/src/Foundation/NSDateComponents.cs b/src/Foundation/NSDateComponents.cs
index 01f96a031c86..2dfaf84311f9 100644
--- a/src/Foundation/NSDateComponents.cs
+++ b/src/Foundation/NSDateComponents.cs
@@ -2,6 +2,8 @@
namespace Foundation {
public partial class NSDateComponents {
+ /// Reprsents a date component that is undefined.
+ /// To be added.
public static readonly nint Undefined = nint.MaxValue;
}
}
diff --git a/src/Foundation/NSDecimal.cs b/src/Foundation/NSDecimal.cs
index 90088a71d0c9..2e410d540425 100644
--- a/src/Foundation/NSDecimal.cs
+++ b/src/Foundation/NSDecimal.cs
@@ -51,15 +51,33 @@ public struct NSDecimal
#endif
{
// unsigned int
+ /// To be added.
+ /// To be added.
public int fields;
// unsigned short [8]
+ /// To be added.
+ /// To be added.
public short m1;
+ /// To be added.
+ /// To be added.
public short m2;
+ /// To be added.
+ /// To be added.
public short m3;
+ /// To be added.
+ /// To be added.
public short m4;
+ /// To be added.
+ /// To be added.
public short m5;
+ /// To be added.
+ /// To be added.
public short m6;
+ /// To be added.
+ /// To be added.
public short m7;
+ /// To be added.
+ /// To be added.
public short m8;
#if !COREBUILD
diff --git a/src/Foundation/NSDictionary.cs b/src/Foundation/NSDictionary.cs
index 2f0fbd272363..f15ec5195a93 100644
--- a/src/Foundation/NSDictionary.cs
+++ b/src/Foundation/NSDictionary.cs
@@ -178,14 +178,23 @@ void ICollection.CopyTo (Array array, int arrayIndex)
array.SetValue (e.Entry, i++);
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
int ICollection.Count {
get { return (int) Count; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
bool ICollection.IsSynchronized {
get { return false; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
object ICollection.SyncRoot {
get { return this; }
}
@@ -270,10 +279,16 @@ void IDictionary.Remove (object key)
throw new NotSupportedException ();
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
bool IDictionary.IsFixedSize {
get { return true; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
bool IDictionary.IsReadOnly {
get { return true; }
}
@@ -290,10 +305,16 @@ object IDictionary.this [object key] {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
ICollection IDictionary.Keys {
get { return Keys; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
ICollection IDictionary.Values {
get { return Values; }
}
diff --git a/src/GLKit/Defs.cs b/src/GLKit/Defs.cs
index e95a58c453d5..0e647da42ee4 100644
--- a/src/GLKit/Defs.cs
+++ b/src/GLKit/Defs.cs
@@ -38,101 +38,153 @@ namespace GLKit {
// GLint (32 bits on 64 bit hardware) -> GLKEffects.h
public enum GLKVertexAttrib {
+ /// To be added.
Position,
+ /// To be added.
Normal,
+ /// To be added.
Color,
+ /// To be added.
TexCoord0,
+ /// To be added.
TexCoord1,
}
// GLint (32 bits on 64 bit hardware) -> GLKEffectPropertyLight.h
public enum GLKLightingType {
+ /// To be added.
PerVertex,
+ /// To be added.
PerPixel,
}
// GLint (32 bits on 64 bit hardware) -> GLKEffectPropertyTexture.h
public enum GLKTextureEnvMode {
+ /// To be added.
Replace,
+ /// To be added.
Modulate,
+ /// To be added.
Decal,
}
// GLenum (32 bits on 64 bit hardware) -> GLKEffectPropertyTexture.h
public enum GLKTextureTarget {
+ /// To be added.
Texture2D = 0x0DE1, // GL_TEXTURE_2D
+ /// To be added.
CubeMap = 0x8513, // GL_TEXTURE_CUBE_MAP
+ /// To be added.
TargetCt = 2,
}
// GLint (32 bits on 64 bit hardware) -> GLKEffectPropertyFog.h
public enum GLKFogMode {
+ /// The fog is calculated using Math.Exp(-density * distance).
Exp = 0,
+ /// The fog is calculated using Math.Exp(-(density * distance) ^2).
Exp2,
+ /// The fog is calculated using (end - distance) / (end - start).
Linear,
}
// GLint (32 bits on 64 bit hardware) -> GLKView.h
public enum GLKViewDrawableColorFormat {
+ /// To be added.
RGBA8888 = 0,
+ /// To be added.
RGB565,
+ /// To be added.
SRGBA8888,
}
// GLint (32 bits on 64 bit hardware) -> GLKView.h
public enum GLKViewDrawableDepthFormat {
+ /// To be added.
None,
+ /// To be added.
Format16,
+ /// To be added.
Format24,
}
// GLint (32 bits on 64 bit hardware) -> GLKView.h
public enum GLKViewDrawableStencilFormat {
+ /// To be added.
FormatNone,
+ /// To be added.
Format8,
}
// GLint (32 bits on 64 bit hardware) -> GLKView.h
public enum GLKViewDrawableMultisample {
+ /// To be added.
None,
+ /// To be added.
Sample4x,
}
// GLint (32 bits on 64 bit hardware) -> GLKTextureLoader.h
public enum GLKTextureInfoAlphaState {
+ /// To be added.
None,
+ /// To be added.
NonPremultiplied,
+ /// To be added.
Premultiplied,
}
// GLint (32 bits on 64 bit hardware) -> GLKTextureLoader.h
public enum GLKTextureInfoOrigin {
+ /// To be added.
Unknown = 0,
+ /// To be added.
TopLeft,
+ /// To be added.
BottomLeft,
}
// GLuint (we'll keep `int` for compatibility) -> GLKTextureLoader.h
public enum GLKTextureLoaderError {
+ /// To be added.
FileOrURLNotFound = 0,
+ /// To be added.
InvalidNSData = 1,
+ /// To be added.
InvalidCGImage = 2,
+ /// To be added.
UnknownPathType = 3,
+ /// To be added.
UnknownFileType = 4,
+ /// To be added.
PVRAtlasUnsupported = 5,
+ /// To be added.
CubeMapInvalidNumFiles = 6,
+ /// To be added.
CompressedTextureUpload = 7,
+ /// To be added.
UncompressedTextureUpload = 8,
+ /// To be added.
UnsupportedCubeMapDimensions = 9,
+ /// To be added.
UnsupportedBitDepth = 10,
+ /// To be added.
UnsupportedPVRFormat = 11,
+ /// To be added.
DataPreprocessingFailure = 12,
+ /// To be added.
MipmapUnsupported = 13,
+ /// To be added.
UnsupportedOrientation = 14,
+ /// To be added.
ReorientationFailure = 15,
+ /// To be added.
AlphaPremultiplicationFailure = 16,
+ /// To be added.
InvalidEAGLContext = 17,
+ /// To be added.
IncompatibleFormatSRGB = 18,
+ /// To be added.
UnsupportedTextureTarget = 19,
}
@@ -152,7 +204,11 @@ public enum GLKTextureLoaderError {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct GLKVertexAttributeParameters {
+ /// To be added.
+ /// To be added.
public uint Type;
+ /// To be added.
+ /// To be added.
public uint Size;
#if XAMCORE_5_0
byte normalized;
@@ -161,6 +217,8 @@ public bool Normalized {
set => normalized = value.AsByte ();
}
#else
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.I1)]
public bool Normalized;
#endif
diff --git a/src/GLKit/GLTextureLoader.cs b/src/GLKit/GLTextureLoader.cs
index 842e1a9138b3..c73392b0a571 100644
--- a/src/GLKit/GLTextureLoader.cs
+++ b/src/GLKit/GLTextureLoader.cs
@@ -168,6 +168,17 @@ public GLKTextureOperations () : base (new NSMutableDictionary ()) { }
public GLKTextureOperations (NSDictionary options) : base (options) { }
+ /// Whether the texture should be pre-multiplied with the encoded Alpha channel or not.
+ ///
+ ///
+ ///
+ ///
+ /// This defaults to false.
+ ///
+ ///
+ /// Should not be set to true for textures in compressed formats.
+ ///
+ ///
public bool? ApplyPremultiplication {
get {
return GetBoolValue (GLKTextureLoader.ApplyPremultiplication);
@@ -177,6 +188,14 @@ public bool? ApplyPremultiplication {
}
}
+ /// Whether to flip the image coordinates to match the OpenGL coordinate space.
+ ///
+ ///
+ ///
+ ///
+ /// This defaults to true.
+ ///
+ ///
public bool? OriginBottomLeft {
get {
return GetBoolValue (GLKTextureLoader.OriginBottomLeft);
@@ -186,6 +205,17 @@ public bool? OriginBottomLeft {
}
}
+ /// Whether mipmaps should be generated for the texture.
+ ///
+ ///
+ ///
+ ///
+ /// This defaults to false.
+ ///
+ ///
+ /// If set to true, this will generate mipmaps levels on loading. In addition the texture's GL_TEXTURE_MIN_FILTER is set to GL_LINEAR_MIPMAP_LINEAR.
+ ///
+ ///
public bool? GenerateMipmaps {
get {
return GetBoolValue (GLKTextureLoader.GenerateMipmaps);
@@ -195,6 +225,11 @@ public bool? GenerateMipmaps {
}
}
+ /// On greyscale images, controls whether the image is loaded as GL_ALPHA or GL_LUMINANCE.
+ /// false by default, so it loads the greyscale image as GL_LUMINANCE.
+ ///
+ /// This property controls how greyscale images are loaded. By default they are loaded as GL_LUMINANCE, but if you set this property to true, they will be loaded as GL_ALPHA.
+ ///
public bool? GrayscaleAsAlpha {
get {
return GetBoolValue (GLKTextureLoader.GrayscaleAsAlpha);
@@ -205,6 +240,9 @@ public bool? GrayscaleAsAlpha {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
diff --git a/src/GameController/Enums.cs b/src/GameController/Enums.cs
index 1d5d8bb38c0a..fe254b795447 100644
--- a/src/GameController/Enums.cs
+++ b/src/GameController/Enums.cs
@@ -25,6 +25,7 @@ public enum GCExtendedGamepadSnapshotDataVersion : long {
[Native]
public enum GCMicroGamepadSnapshotDataVersion : long {
+ /// To be added.
Version1 = 0x0100,
}
@@ -60,10 +61,15 @@ public enum GCSystemGestureState : long {
[MacCatalyst (13, 1)]
[Native]
public enum GCControllerPlayerIndex : long {
+ /// The index that represents the condition where the player index is not set. (-1)
Unset = -1,
+ /// The index for the first player. (0)
Index1 = 0,
+ /// The index for the second player. (1)
Index2,
+ /// The index for the third player. (2)
Index3,
+ /// The index for the fourth player. (3)
Index4,
}
diff --git a/src/GameController/GCExtendedGamepadSnapshot.cs b/src/GameController/GCExtendedGamepadSnapshot.cs
index db2d05c77ac1..b14a17c5688a 100644
--- a/src/GameController/GCExtendedGamepadSnapshot.cs
+++ b/src/GameController/GCExtendedGamepadSnapshot.cs
@@ -39,30 +39,62 @@ namespace GameController {
public struct GCExtendedGamepadSnapShotDataV100 {
// Standard information
+ /// To be added.
+ /// To be added.
public ushort /* uint16_t */ Version; // 0x0100
+ /// To be added.
+ /// To be added.
public ushort /* uint16_t */ Size; // sizeof(GCExtendedGamepadSnapShotDataV100) or larger
// Extended gamepad data
// Axes in the range [-1.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ DPadX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ DPadY;
// Buttons in the range [0.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonA;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonB;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonY;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftShoulder;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightShoulder;
// Axes in the range [-1.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftThumbstickX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftThumbstickY;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightThumbstickX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightThumbstickY;
// Buttons in the range [0.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftTrigger;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightTrigger;
// radar: https://trello.com/c/7FoGTORD (GCExtendedGamepadSnapShotDataV100 struct size / alignment not backward compatible)
@@ -117,30 +149,62 @@ public struct GCExtendedGamepadSnapShotDataV100 {
public struct GCExtendedGamepadSnapshotData {
// Standard information
+ /// To be added.
+ /// To be added.
public ushort /* uint16_t */ Version;
+ /// To be added.
+ /// To be added.
public ushort /* uint16_t */ Size;
// Extended gamepad data
// Axes in the range [-1.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ DPadX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ DPadY;
// Buttons in the range [0.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonA;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonB;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonY;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftShoulder;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightShoulder;
// Axes in the range [-1.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftThumbstickX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftThumbstickY;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightThumbstickX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightThumbstickY;
// Buttons in the range [0.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftTrigger;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightTrigger;
#if NET
diff --git a/src/GameController/GCGamepadSnapshot.cs b/src/GameController/GCGamepadSnapshot.cs
index c09ee054a245..7d310ca2871d 100644
--- a/src/GameController/GCGamepadSnapshot.cs
+++ b/src/GameController/GCGamepadSnapshot.cs
@@ -35,20 +35,40 @@ namespace GameController {
public struct GCGamepadSnapShotDataV100 {
// Standard information
+ /// To be added.
+ /// To be added.
public ushort /* uint16_t */ Version; // 0x0100
+ /// To be added.
+ /// To be added.
public ushort /* uint16_t */ Size; // sizeof(GCGamepadSnapShotDataV100) or larger
// Standard gamepad data
// Axes in the range [-1.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ DPadX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ DPadY;
// Buttons in the range [0.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonA;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonB;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonY;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ LeftShoulder;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ RightShoulder;
[DllImport (Constants.GameControllerLibrary)]
diff --git a/src/GameController/GCMicroGamepadSnapshot.cs b/src/GameController/GCMicroGamepadSnapshot.cs
index 8ef6b57a62f6..dcc66425d3c0 100644
--- a/src/GameController/GCMicroGamepadSnapshot.cs
+++ b/src/GameController/GCMicroGamepadSnapshot.cs
@@ -30,16 +30,28 @@ namespace GameController {
public struct GCMicroGamepadSnapShotDataV100 {
// Standard information
+ /// The micro gamepad version.
+ /// To be added.
public ushort /* uint16_t */ Version; // 0x0100
+ /// The size of the snapshot, in bytes.
+ /// To be added.
public ushort /* uint16_t */ Size; // sizeof(GCMicroGamepadSnapShotDataV100) or larger
// Standard gamepad data
// Axes in the range [-1.0, 1.0]
+ /// The Xv alue of the D-pad input when the snapshot was taken.
+ /// To be added.
public float /* float_t = float */ DPadX;
+ /// The Y value of the D-pad input when the snapshot was taken.
+ /// To be added.
public float /* float_t = float */ DPadY;
// Buttons in the range [0.0, 1.0]
+ /// The value of ButtonA when the snapshot was taken.
+ /// To be added.
public float /* float_t = float */ ButtonA;
+ /// The value of ButtonX when the snapshot was taken.
+ /// To be added.
public float /* float_t = float */ ButtonX;
#if NET
@@ -89,16 +101,28 @@ public struct GCMicroGamepadSnapShotDataV100 {
public struct GCMicroGamepadSnapshotData {
// Standard information
+ /// To be added.
+ /// To be added.
public ushort /* uint16_t */ Version;
+ /// To be added.
+ /// To be added.
public ushort /* uint16_t */ Size;
// Standard gamepad data
// Axes in the range [-1.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ DPadX;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ DPadY;
// Buttons in the range [0.0, 1.0]
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonA;
+ /// To be added.
+ /// To be added.
public float /* float_t = float */ ButtonX;
#if NET
diff --git a/src/GameKit/GKCompat.cs b/src/GameKit/GKCompat.cs
index 1a70c5f50231..7667ae15e08c 100644
--- a/src/GameKit/GKCompat.cs
+++ b/src/GameKit/GKCompat.cs
@@ -144,6 +144,9 @@ public virtual void PeerConnected (GKPeerPickerController picker, string peerId,
[Unavailable (PlatformName.TvOS)]
#endif
public class GKPeerPickerController : NSObject {
+ /// The handle for this class.
+ /// The pointer to the Objective-C class.
+ /// Each Xamarin.iOS class mirrors an unmanaged Objective-C class. This value contains the pointer to the Objective-C class, it is similar to calling objc_getClass with the object name.
public override NativeHandle ClassHandle { get { throw new PlatformNotSupportedException (Constants.TypeUnavailable); } }
public GKPeerPickerController () : base (NSObjectFlag.Empty)
@@ -171,6 +174,9 @@ public virtual void Show ()
throw new PlatformNotSupportedException (Constants.TypeUnavailable);
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public virtual GKPeerPickerConnectionType ConnectionTypesMask {
get {
throw new PlatformNotSupportedException (Constants.TypeUnavailable);
@@ -180,6 +186,13 @@ public virtual GKPeerPickerConnectionType ConnectionTypesMask {
}
}
+ /// An instance of the GameKit.IGKPeerPickerControllerDelegate model class which acts as the class delegate.
+ /// The instance of the GameKit.IGKPeerPickerControllerDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
public IGKPeerPickerControllerDelegate Delegate {
get {
throw new PlatformNotSupportedException (Constants.TypeUnavailable);
@@ -189,12 +202,22 @@ public IGKPeerPickerControllerDelegate Delegate {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public virtual bool Visible {
get {
throw new PlatformNotSupportedException (Constants.TypeUnavailable);
}
}
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
public virtual NSObject? WeakDelegate {
get {
throw new PlatformNotSupportedException (Constants.TypeUnavailable);
diff --git a/src/GameKit/GameKit.cs b/src/GameKit/GameKit.cs
index 9b1037faa745..d8808f3248d8 100644
--- a/src/GameKit/GameKit.cs
+++ b/src/GameKit/GameKit.cs
@@ -29,7 +29,9 @@ namespace GameKit {
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
[Native]
public enum GKPeerPickerConnectionType : ulong {
+ /// To be added.
Online = 1 << 0,
+ /// To be added.
Nearby = 1 << 1,
}
@@ -41,22 +43,39 @@ public enum GKPeerPickerConnectionType : ulong {
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
[ErrorDomain ("GKVoiceChatServiceErrorDomain")]
public enum GKVoiceChatServiceError {
+ /// An internal error occurred.
Internal = 32000,
+ /// Remote packets stopped.
NoRemotePackets = 32001,
+ /// The client was unable to connect to the service.
UnableToConnect = 32002,
+ /// The remote participant ended the voice chat.
RemoteParticipantHangup = 32003,
+ /// The call ID was not valid.
InvalidCallID = 32004,
+ /// The service cannot access audio hardware.
AudioUnavailable = 32005,
+ /// The client was not initialized.
UninitializedClient = 32006,
+ /// The client is missing a required method.
ClientMissingRequiredMethods = 32007,
+ /// The remote participant was already in a voice chat.
RemoteParticipantBusy = 32008,
+ /// The remote participant cancelled the call before it started.
RemoteParticipantCancelled = 32009,
+ /// An invalid response was received from the remote participant.
RemoteParticipantResponseInvalid = 32010,
+ /// The remote participant did not accept the invitation.
RemoteParticipantDeclinedInvite = 32011,
+ /// The specified method was not valid when it was called.
MethodCurrentlyInvalid = 32012,
+ /// The network could not be accessed.
NetworkConfiguration = 32013,
+ /// The remote client version was not supported.
UnsupportedRemoteVersion = 32014,
+ /// The client is out of memory.
OutOfMemory = 32015,
+ /// A parameter was not valid.
InvalidParameter = 32016,
}
@@ -66,7 +85,9 @@ public enum GKVoiceChatServiceError {
[Deprecated (PlatformName.MacOSX, 10, 10)]
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
public enum GKSendDataMode {
+ /// Slower, but rebroadcast until received. Reliable data is guaranteed to arrive in order of transmission.
Reliable,
+ /// Fast, but not guaranteed to arrive and may arrive out of order.
Unreliable,
}
@@ -76,8 +97,11 @@ public enum GKSendDataMode {
[Deprecated (PlatformName.MacOSX, 10, 10)]
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
public enum GKSessionMode {
+ /// Acting as a server.
Server,
+ /// Acting as a client.
Client,
+ /// Acting as a peer.
Peer,
}
@@ -87,10 +111,15 @@ public enum GKSessionMode {
[Deprecated (PlatformName.MacOSX, 10, 10)]
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
public enum GKPeerConnectionState {
+ /// To be added.
Available,
+ /// To be added.
Unavailable,
+ /// To be added.
Connected,
+ /// To be added.
Disconnected,
+ /// To be added.
Connecting,
ConnectedRelay = 5,
}
@@ -98,15 +127,20 @@ public enum GKPeerConnectionState {
// NSInteger -> GKLeaderboard.h
[Native]
public enum GKLeaderboardTimeScope : long {
+ /// To be added.
Today,
+ /// To be added.
Week,
+ /// To be added.
AllTime,
}
// NSInteger -> GKLeaderboard.h
[Native]
public enum GKLeaderboardPlayerScope : long {
+ /// To be added.
Global,
+ /// To be added.
FriendsOnly,
}
@@ -114,39 +148,69 @@ public enum GKLeaderboardPlayerScope : long {
[Native ("GKErrorCode")]
[ErrorDomain ("GKErrorDomain")]
public enum GKError : long {
+ /// No error occurred.
None = 0,
+ /// An unknown error occurred.
Unknown = 1,
+ /// The user cancelled the operation.
Cancelled,
+ /// There was an error in communicating with the game server.
CommunicationsFailure,
+ /// The user denied an operation.
UserDenied,
+ /// The user name or password was invalid.
InvalidCredentials,
+ /// The player is not authenticated.
NotAuthenticated,
+ /// The player is authenticating.
AuthenticationInProgress,
+ /// The in-game representation of a player was invalid.
InvalidPlayer,
+ /// The score is not set.
ScoreNotSet,
+ /// The requested item or service is blocked.
ParentalControlsBlocked,
+ /// The player's status message is longer than allowed.
PlayerStatusExceedsMaximumLength,
+ /// The player's status message is not valid.
PlayerStatusInvalid,
+ /// The match request is logically impossible.
MatchRequestInvalid = 13,
+ /// The player is not old enough to access the item or service.
Underage,
+ /// The game center did not recognize the app or game. This can be caused by an invalid bundle identifier.
GameUnrecognized,
+ /// The Game Center is not supported by the device.
NotSupported,
+ /// A parameter was incorrect or miscategorized.
InvalidParameter,
+ /// There was a connection from an unexpected player.
UnexpectedConnection,
+ /// The challenge was invalid.
ChallengeInvalid = 19,
+ /// The match data was too large.
TurnBasedMatchDataTooLarge,
+ /// The maximum number of sessions was reached before the operation was requested.
TurnBasedTooManySessions,
+ /// The in-game representation of a player in a turn-based game was invalid.
TurnBasedInvalidParticipant,
+ /// An attempt was made to play out of turn.
TurnBasedInvalidTurn,
+ /// The session for a turn-based game was in an invalid state.
TurnBasedInvalidState,
#if MONOMAC && !NET
[Obsolete ("This value was re-used on macOS only and removed later.")]
Offline = 25,
#endif
+ /// The receiver is not currently receiving invitations.
InvitationsDisabled = 25, // iOS 7.0
+ /// The player's photo could not be retrieved.
PlayerPhotoFailure = 26, // iOS 8.0
+ /// The iCloud container was unavailable.
UbiquityContainerUnavailable = 27, // iOS 8.0
+ /// The match is not connected.
MatchNotConnected = 28,
+ /// The session request was not valid.
GameSessionRequestInvalid = 29,
RestrictedToAutomatch = 30,
ApiNotAvailable = 31,
@@ -165,14 +229,18 @@ public enum GKError : long {
[MacCatalyst (13, 1)]
[Native]
public enum GKConnectionState : long {
+ /// To be added.
NotConnected,
+ /// To be added.
Connected,
}
[MacCatalyst (13, 1)]
[Native]
public enum GKTransportType : long {
+ /// To be added.
Unreliable,
+ /// To be added.
Reliable,
}
@@ -183,21 +251,37 @@ public enum GKTransportType : long {
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
[ErrorDomain ("GKGameSessionErrorDomain")]
public enum GKGameSessionErrorCode : long {
+ /// To be added.
Unknown = 1,
+ /// To be added.
NotAuthenticated = 2,
+ /// To be added.
SessionConflict = 3,
+ /// To be added.
SessionNotShared = 4,
+ /// To be added.
ConnectionCancelledByUser = 5,
+ /// To be added.
ConnectionFailed = 6,
+ /// To be added.
SessionHasMaxConnectedPlayers = 7,
+ /// To be added.
SendDataNotConnected = 8,
+ /// To be added.
SendDataNoRecipients = 9,
+ /// To be added.
SendDataNotReachable = 10,
+ /// To be added.
SendRateLimitReached = 11,
+ /// To be added.
BadContainer = 12,
+ /// To be added.
CloudQuotaExceeded = 13,
+ /// To be added.
NetworkFailure = 14,
+ /// To be added.
CloudDriveDisabled = 15,
+ /// To be added.
InvalidSession = 16,
}
@@ -215,8 +299,11 @@ public enum GKMatchSendDataMode : long {
// NSInteger -> GKMatch.h
[Native]
public enum GKPlayerConnectionState : long {
+ /// To be added.
Unknown,
+ /// To be added.
Connected,
+ /// To be added.
Disconnected,
}
@@ -227,17 +314,24 @@ public enum GKPlayerConnectionState : long {
[Deprecated (PlatformName.MacOSX, 15, 0, message: "No longer supported.")]
[Native]
public enum GKVoiceChatPlayerState : long {
+ /// To be added.
Connected,
+ /// To be added.
Disconnected,
+ /// To be added.
Speaking,
+ /// To be added.
Silent,
+ /// To be added.
Connecting,
}
// NSInteger -> GKPlayer.h
[Native]
public enum GKPhotoSize : long {
+ /// To be added.
Small,
+ /// To be added.
Normal,
}
@@ -281,9 +375,13 @@ public enum GKTurnBasedMatchOutcome : long {
[MacCatalyst (13, 1)]
[Native]
public enum GKChallengeState : long {
+ /// To be added.
Invalid = 0,
+ /// To be added.
Pending,
+ /// To be added.
Completed,
+ /// To be added.
Declined,
}
@@ -291,9 +389,13 @@ public enum GKChallengeState : long {
[MacCatalyst (13, 1)]
[Native]
public enum GKGameCenterViewControllerState : long {
+ /// To be added.
Default = -1,
+ /// To be added.
Leaderboards,
+ /// To be added.
Achievements,
+ /// To be added.
Challenges,
[iOS (14, 0)]
[TV (14, 0)]
@@ -312,38 +414,58 @@ public enum GKGameCenterViewControllerState : long {
// NSInteger -> GKMatchmaker.h
[Native]
public enum GKInviteeResponse : long {
+ /// To be added.
Accepted = 0,
+ /// To be added.
Declined = 1,
+ /// To be added.
Failed = 2,
+ /// To be added.
Incompatible = 3,
+ /// To be added.
UnableToConnect = 4,
+ /// To be added.
NoAnswer = 5,
}
// NSUInteger -> GKMatchmaker.h
[Native]
public enum GKMatchType : ulong {
+ /// To be added.
PeerToPeer,
+ /// To be added.
Hosted,
+ /// To be added.
TurnBased,
}
// uint8_t -> GKTurnBasedMatch.h
public enum GKTurnBasedExchangeStatus : sbyte {
+ /// To be added.
Unknown,
+ /// To be added.
Active,
+ /// To be added.
Complete,
+ /// To be added.
Resolved,
+ /// To be added.
Canceled,
}
[Native]
public enum GKInviteRecipientResponse : long {
+ /// The recipient accepted.
Accepted = 0,
+ /// The recipient declined.
Declined = 1,
+ /// The request failed.
Failed = 2,
+ /// The versions of the game that are owned by the host and recipient are incompatible.
Incompatible = 3,
+ /// To be added.
UnableToConnect = 4,
+ /// The recipient did not answer.
NoAnswer = 5,
}
diff --git a/src/GameKit/GameKit2.cs b/src/GameKit/GameKit2.cs
index 4279cb11219c..aadb650ba476 100644
--- a/src/GameKit/GameKit2.cs
+++ b/src/GameKit/GameKit2.cs
@@ -24,8 +24,17 @@ public GKDataReceivedEventArgs (NSData data, string peer, GKSession session)
PeerID = peer;
Session = session;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSData Data { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string PeerID { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public GKSession Session { get; private set; }
}
@@ -177,8 +186,17 @@ public GKPeerChangedStateEventArgs (GKSession session, string peerID, GKPeerConn
State = state;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public GKSession Session { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string PeerID { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public GKPeerConnectionState State { get; private set; }
}
@@ -189,8 +207,17 @@ public GKPeerConnectionEventArgs (GKSession session, string? peerID, NSError? er
PeerID = peerID;
Error = error;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public GKSession Session { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? PeerID { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSError? Error { get; private set; }
}
#endif
diff --git a/src/ImageIO/CGImageDestination.cs b/src/ImageIO/CGImageDestination.cs
index 81efd07b309e..bca33cef2e67 100644
--- a/src/ImageIO/CGImageDestination.cs
+++ b/src/ImageIO/CGImageDestination.cs
@@ -43,6 +43,9 @@ namespace ImageIO {
public partial class CGImageDestinationOptions {
CGColor? destinationBackgroundColor;
+ /// The background color used during image compositing for transparent regions of the image.
+ /// The color used for background compositing.
+ /// To be added.
public CGColor? DestinationBackgroundColor {
get { return destinationBackgroundColor; }
set {
@@ -59,6 +62,9 @@ internal NSMutableDictionary ToDictionary ()
public partial class CGCopyImageSourceOptions {
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -67,6 +73,9 @@ public partial class CGCopyImageSourceOptions {
public CGImageMetadata? Metadata { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -75,6 +84,9 @@ public partial class CGCopyImageSourceOptions {
public bool MergeMetadata { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -83,6 +95,9 @@ public partial class CGCopyImageSourceOptions {
public bool ShouldExcludeXMP { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
@@ -91,6 +106,9 @@ public partial class CGCopyImageSourceOptions {
public bool ShouldExcludeGPS { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -99,6 +117,9 @@ public partial class CGCopyImageSourceOptions {
public DateTime? DateTime { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
@@ -139,6 +160,9 @@ internal NSMutableDictionary ToDictionary ()
public partial class CGImageAuxiliaryDataInfo {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CGImageMetadata? Metadata {
get {
return GetNativeValue (CGImageAuxiliaryDataInfoKeys.MetadataKey);
@@ -175,6 +199,9 @@ internal CGImageDestination (NativeHandle handle, bool owns)
[DllImport (Constants.ImageIOLibrary)]
extern static /* CFArrayRef __nonnull */ IntPtr CGImageDestinationCopyTypeIdentifiers ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static string? []? TypeIdentifiers {
get {
var handle = CGImageDestinationCopyTypeIdentifiers ();
diff --git a/src/ImageIO/CGImageMetadata.cs b/src/ImageIO/CGImageMetadata.cs
index d99f26050a30..a4639db3c338 100644
--- a/src/ImageIO/CGImageMetadata.cs
+++ b/src/ImageIO/CGImageMetadata.cs
@@ -30,6 +30,9 @@ namespace ImageIO {
#endif
public partial class CGImageMetadataEnumerateOptions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Recursive { get; set; }
internal NSMutableDictionary ToDictionary ()
diff --git a/src/ImageIO/CGImageMetadataTag.cs b/src/ImageIO/CGImageMetadataTag.cs
index 5a31d3ef080f..222d77eda1d1 100644
--- a/src/ImageIO/CGImageMetadataTag.cs
+++ b/src/ImageIO/CGImageMetadataTag.cs
@@ -89,6 +89,9 @@ public CGImageMetadataTag (NSString xmlns, NSString? prefix, NSString name, CGIm
extern static /* CFStringRef __nullable */ IntPtr CGImageMetadataTagCopyNamespace (
/* CGImageMetadataTagRef __nonnull */ IntPtr tag);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSString? Namespace {
get {
var result = CGImageMetadataTagCopyNamespace (Handle);
@@ -100,6 +103,9 @@ public NSString? Namespace {
extern static /* CFStringRef __nullable */ IntPtr CGImageMetadataTagCopyPrefix (
/* CGImageMetadataTagRef __nonnull */ IntPtr tag);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSString? Prefix {
get {
var result = CGImageMetadataTagCopyPrefix (Handle);
@@ -111,6 +117,9 @@ public NSString? Prefix {
extern static /* CFStringRef __nullable */ IntPtr CGImageMetadataTagCopyName (
/* CGImageMetadataTagRef __nonnull */ IntPtr tag);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSString? Name {
get {
var result = CGImageMetadataTagCopyName (Handle);
@@ -123,6 +132,9 @@ public NSString? Name {
/* CGImageMetadataTagRef __nonnull */ IntPtr tag);
// a boolean is returned as a NSString, i.e. type CGImageMetadataType.String, so NSObject is fine
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSObject? Value {
get { return Runtime.GetNSObject (CGImageMetadataTagCopyValue (Handle), true); }
}
@@ -131,6 +143,9 @@ public NSObject? Value {
[DllImport (Constants.ImageIOLibrary)]
extern static CGImageMetadataType CGImageMetadataTagGetType (/* CGImageMetadataTagRef __nonnull */ IntPtr tag);
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CGImageMetadataType Type {
get { return CGImageMetadataTagGetType (Handle); }
}
diff --git a/src/ImageIO/CGImageSource.cs b/src/ImageIO/CGImageSource.cs
index 9195e6a26a4c..6ec86e262fdd 100644
--- a/src/ImageIO/CGImageSource.cs
+++ b/src/ImageIO/CGImageSource.cs
@@ -46,11 +46,17 @@ namespace ImageIO {
#if !COREBUILD
// untyped enum -> CGImageSource.h
public enum CGImageSourceStatus {
+ /// The image loader has completed, the full set of images is loaded.
Complete = 0,
+ /// The CGImageSource is still expecting data.
Incomplete = -1,
+ /// The CGImageSource is reading the image header information.
ReadingHeader = -2,
+ /// The CGImageSource does not have a decoder for the image.
UnknownType = -3,
+ /// The data fed to the CGImageSource is invalid and does not represent an image that can be decoded.
InvalidData = -4,
+ /// The image loader detected a premature end-of-file condition.
UnexpectedEOF = -5,
}
@@ -61,11 +67,22 @@ public CGImageOptions ()
ShouldCache = true;
}
+ /// Provides the best guess for the file format that is going to be loaded.
+ /// A Uniform Type Identifier (UTI).
+ /// To learn more about UTIs, you can read:
+ ///
+ /// https://developer.apple.com/library/mac/#documentation/FileManagement/Conceptual/understanding_utis/understand_utis_intro/understand_utis_intro.html
public string? BestGuessTypeIdentifier { get; set; }
+ /// Determines whether the loaded image should be cached.
+ ///
+ /// To be added.
public bool ShouldCache { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -73,6 +90,9 @@ public CGImageOptions ()
#endif
public bool ShouldCacheImmediately { get; set; }
+ /// Determines whether the image loaded will use floating point values for its components (if the source image has them).
+ ///
+ /// To be added.
public bool ShouldAllowFloat { get; set; }
internal virtual NSMutableDictionary ToDictionary ()
@@ -94,12 +114,27 @@ internal virtual NSMutableDictionary ToDictionary ()
public partial class CGImageThumbnailOptions : CGImageOptions {
+ /// Determines whether to create a thumbnail if one is not found on the image source.
+ /// To be added.
+ /// To be added.
public bool CreateThumbnailFromImageIfAbsent { get; set; }
+ /// Forces a thumbnail to be created, even if the source image has one.
+ ///
+ /// The thumbnail is created subject to the value set in the MaxPixelSize property.
public bool CreateThumbnailFromImageAlways { get; set; }
+ /// Maximum width and height allowed for a thumbnail (in pixels).
+ /// To be added.
+ /// To be added.
public int? MaxPixelSize { get; set; }
+ /// Determines if the created thumbnail should be rotated and scaled to match the full image.
+ /// To be added.
+ /// To be added.
public bool CreateThumbnailWithTransform { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -136,6 +171,9 @@ public partial class CGImageSource : NativeObject {
[DllImport (Constants.ImageIOLibrary)]
extern static /* CFArrayRef __nonnull */ IntPtr CGImageSourceCopyTypeIdentifiers ();
+ /// The type identifiers for the formats supported by the image loader.
+ /// To be added.
+ /// To be added.
public static string? []? TypeIdentifiers {
get {
var handle = CGImageSourceCopyTypeIdentifiers ();
@@ -214,6 +252,9 @@ internal CGImageSource (NativeHandle handle, bool owns)
extern static /* CFStringRef __nullable */ IntPtr CGImageSourceGetType (
/* CGImageSourceRef __nonnull */ IntPtr handle);
+ /// The image type of the underling image.
+ /// To be added.
+ /// To be added.
public string? TypeIdentifier {
get {
return CFString.FromHandle (CGImageSourceGetType (Handle));
@@ -223,6 +264,9 @@ public string? TypeIdentifier {
[DllImport (Constants.ImageIOLibrary)]
extern static /* size_t */ nint CGImageSourceGetCount (/* CGImageSourceRef __nonnull */ IntPtr handle);
+ /// Number of images loaded (does not include the Thumbnail).
+ /// To be added.
+ /// To be added.
public nint ImageCount {
get {
return CGImageSourceGetCount (Handle);
diff --git a/src/ImageIO/Enums.cs b/src/ImageIO/Enums.cs
index f03e15376ff0..a48324807a05 100644
--- a/src/ImageIO/Enums.cs
+++ b/src/ImageIO/Enums.cs
@@ -18,23 +18,36 @@ namespace ImageIO {
/// Enumeration of errors relating to metadata manipulation.
[ErrorDomain ("kCFErrorDomainCGImageMetadata")]
public enum CGImageMetadataErrors {
+ /// To be added.
Unknown = 0,
+ /// To be added.
UnsupportedFormat = 1,
+ /// To be added.
BadArgument = 2,
+ /// To be added.
ConflictingArguments = 3,
+ /// To be added.
PrefixConflict = 4,
}
// untyped enum -> CGImageMetadata.h
/// Enumerates the type-forms of image metadata.
public enum CGImageMetadataType {
+ /// To be added.
Invalid = -1,
+ /// To be added.
Default = 0,
+ /// To be added.
String = 1,
+ /// To be added.
ArrayUnordered = 2,
+ /// To be added.
ArrayOrdered = 3,
+ /// To be added.
AlternateArray = 4,
+ /// To be added.
AlternateText = 5,
+ /// To be added.
Structure = 6
}
diff --git a/src/Makefile b/src/Makefile
index 6ae855baa6b8..2482b119abb1 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -459,6 +459,8 @@ $($(2)_DOTNET_BUILD_DIR)/GeneratedMSBuildEditorConfig.editorconfig: | $($(2)_DOT
$$(Q) rm -f "$$@.tmp"
$$(Q) printf "is_global = true\n" >> "$$@.tmp"
$$(Q) printf "build_property.TargetFramework = $(DOTNET_TFM)-$(3)\n" >> "$$@.tmp"
+ $$(Q) printf "build_property.TargetFrameworkIdentifier = .NETCoreApp\n" >> "$$@.tmp"
+ $$(Q) printf "build_property.TargetFrameworkVersion = v$(DOTNET_MAJOR_VERSION).0\n" >> "$$@.tmp"
$$(Q) mv "$$@.tmp" "$$@"
$($(2)_DOTNET_BUILD_DIR)/ILLink.LinkAttributes.xml: $(TOP)/src/ILLink.LinkAttributes.xml.in | $($(2)_DOTNET_BUILD_DIR)
diff --git a/src/MapKit/MKEnums.cs b/src/MapKit/MKEnums.cs
index 22db9990ea48..49a286047d82 100644
--- a/src/MapKit/MKEnums.cs
+++ b/src/MapKit/MKEnums.cs
@@ -23,9 +23,13 @@ namespace MapKit {
[Native]
[MacCatalyst (13, 1)]
public enum MKDirectionsTransportType : ulong {
+ /// Routing for automobiles.
Automobile = 1 << 0,
+ /// Routing for walking.
Walking = 1 << 1,
+ /// Routing for public transport.
Transit = 1 << 2,
+ /// The routing type is not specified.
Any = 0x0FFFFFFF,
}
@@ -46,9 +50,13 @@ public enum MKMapType : ulong {
[Native]
[MacCatalyst (13, 1)]
public enum MKDistanceFormatterUnits : ulong {
+ /// To be added.
Default,
+ /// To be added.
Metric,
+ /// To be added.
Imperial,
+ /// To be added.
ImperialWithYards,
}
@@ -56,8 +64,11 @@ public enum MKDistanceFormatterUnits : ulong {
[Native]
[MacCatalyst (13, 1)]
public enum MKDistanceFormatterUnitStyle : ulong {
+ /// To be added.
Default = 0,
+ /// To be added.
Abbreviated,
+ /// To be added.
Full,
}
@@ -74,10 +85,15 @@ public enum MKOverlayLevel : long {
[Native]
[ErrorDomain ("MKErrorDomain")]
public enum MKErrorCode : ulong {
+ /// To be added.
Unknown = 1,
+ /// To be added.
ServerFailure,
+ /// To be added.
LoadingThrottled,
+ /// To be added.
PlacemarkNotFound,
+ /// To be added.
DirectionsNotFound,
DecodingFailed,
}
@@ -88,10 +104,15 @@ public enum MKErrorCode : ulong {
[MacCatalyst (13, 1)]
[Native]
public enum MKAnnotationViewDragState : ulong {
+ /// To be added.
None,
+ /// To be added.
Starting,
+ /// To be added.
Dragging,
+ /// To be added.
Canceling,
+ /// To be added.
Ending,
}
@@ -137,7 +158,9 @@ public enum MKSearchCompletionFilterType : long {
[MacCatalyst (13, 1)]
[Native]
public enum MKAnnotationViewCollisionMode : long {
+ /// Indicates that the entire frame rectangle should be used for collision detection.
Rectangle,
+ /// Indicates that a circle inscribed within the frame rectangle should be used for collision detection.
Circle,
[TV (14, 0)]
[iOS (14, 0)]
@@ -156,8 +179,11 @@ public enum MKScaleViewAlignment : long {
[MacCatalyst (13, 1)]
[Native]
public enum MKFeatureVisibility : long {
+ /// Indicates that the title text is shown or hidden in response to the map state.
Adaptive,
+ /// Indicates that the title text is hidden.
Hidden,
+ /// Indicates that the title text is always visible.
Visible,
}
diff --git a/src/MapKit/MKFeatureDisplayPriority.cs b/src/MapKit/MKFeatureDisplayPriority.cs
index e86271a128c7..8a0155930694 100644
--- a/src/MapKit/MKFeatureDisplayPriority.cs
+++ b/src/MapKit/MKFeatureDisplayPriority.cs
@@ -13,8 +13,14 @@ namespace MapKit {
#endif
// .net does not allow float-based enumerations
public static class MKFeatureDisplayPriority {
+ /// Indicates that the annotation is required to be displayed.
+ /// To be added.
public const float Required = 1000f;
+ /// Indicates that the annotation is a high priority for display.
+ /// To be added.
public const float DefaultHigh = 750f;
+ /// Indicates that the annotation is a low priority for display.
+ /// To be added.
public const float DefaultLow = 250f;
}
}
diff --git a/src/MapKit/MKMapItem.cs b/src/MapKit/MKMapItem.cs
index ea7c67e0b4f9..7af50a7bd7d5 100644
--- a/src/MapKit/MKMapItem.cs
+++ b/src/MapKit/MKMapItem.cs
@@ -19,10 +19,14 @@ namespace MapKit {
// it's similar to MKDirectionsTransportType values but it's something only used on the managed side
// to replace NSString fields
public enum MKDirectionsMode {
+ /// Driving directions.
Driving,
+ /// Walking directions.
Walking,
+ /// Transit directions.
Transit,
#if NET
+ /// The user's preferred direction type.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -39,14 +43,40 @@ public enum MKDirectionsMode {
[SupportedOSPlatform ("macos")]
#endif
public class MKLaunchOptions {
+ /// The kind of directions that you want to show the user (walking, driving)
+ /// If specified, the map items provided represent a starting and ending point.
+ ///
+ ///
public MKDirectionsMode? DirectionsMode { get; set; }
+ /// Specifies the desired type of map to render (standard, satellite, hybrid).
+ ///
+ ///
+ ///
+ ///
public MKMapType? MapType { get; set; }
+ /// The location where the map should be centered
+ ///
+ ///
+ ///
+ ///
public CLLocationCoordinate2D? MapCenter { get; set; }
+ /// Coordinate span for the region to be displayed by the maps app.
+ /// To be added.
+ /// To be added.
public MKCoordinateSpan? MapSpan { get; set; }
+ /// Controls whether to display traffic information on the map.
+ ///
+ ///
+ ///
+ ///
public bool? ShowTraffic { get; set; }
#if NET
+ /// Virtual camera, used to show a 3D perspective of the map.
+ /// If not set, the Maps app will use the current defaults for the camera.
+ ///
+ ///
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("macos")]
diff --git a/src/MapKit/MKMultiPoint.cs b/src/MapKit/MKMultiPoint.cs
index 8de46fcfbb43..670d2d40907b 100644
--- a/src/MapKit/MKMultiPoint.cs
+++ b/src/MapKit/MKMultiPoint.cs
@@ -9,6 +9,9 @@
namespace MapKit {
public partial class MKMultiPoint {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public unsafe MKMapPoint [] Points {
get {
var source = (MKMapPoint*) _Points;
diff --git a/src/MapKit/MapKit.cs b/src/MapKit/MapKit.cs
index a0f966bf0919..7f3a5c9ecbfe 100644
--- a/src/MapKit/MapKit.cs
+++ b/src/MapKit/MapKit.cs
@@ -29,9 +29,40 @@ namespace MapKit {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MKTileOverlayPath {
+ /// The index of the along the X axis.
+ /// To be added.
public /* NSInteger */ nint X;
+ /// The index of the along the Y axis.
+ /// To be added.
public /* NSInteger */ nint Y;
+ /// The Zoom level for the .
+ ///
+ ///
+ ///
+ /// Zoom Level
+ /// Number of tiles to map entire world
+ ///
+ /// -
+ /// 0
+ /// 1
+ ///
+ /// -
+ /// 1
+ /// 4
+ ///
+ /// -
+ /// 2
+ /// 16
+ ///
+ /// -
+ /// n
+ /// (2N)^2
+ ///
+ ///
+ ///
public /* NSInteger */ nint Z;
+ /// The screen scaling factor for which the tile is intended. A value of 1.0 indicates standard resolution, a value of 2.0 indicates Retina displays.
+ /// To be added.
public /* CGFloat */ nfloat ContentScaleFactor;
}
@@ -45,7 +76,11 @@ public struct MKTileOverlayPath {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MKCoordinateSpan {
+ /// To be added.
+ /// To be added.
public /* CLLocationDegrees */ double LatitudeDelta;
+ /// To be added.
+ /// To be added.
public /* CLLocationDegrees */ double LongitudeDelta;
// MKCoordinateSpanMake
@@ -70,7 +105,13 @@ public override string ToString ()
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MKCoordinateRegion {
+ /// The center for the region of the map to display.
+ ///
+ ///
public CLLocationCoordinate2D Center;
+ /// Represents the dimensions and zoom level to display.
+ ///
+ ///
public MKCoordinateSpan Span;
// MKCoordinateRegionMake
@@ -102,7 +143,11 @@ public override string ToString ()
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MKMapPoint {
+ /// To be added.
+ /// To be added.
public double X;
+ /// To be added.
+ /// To be added.
public double Y;
[DllImport (Constants.MapKitLibrary, EntryPoint = "MKMapPointForCoordinate")]
@@ -160,7 +205,11 @@ public override string ToString ()
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MKMapSize {
+ /// To be added.
+ /// To be added.
public double Width;
+ /// To be added.
+ /// To be added.
public double Height;
// MKMapSizeMake
@@ -171,6 +220,9 @@ public MKMapSize (double width, double height)
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
@@ -221,6 +273,8 @@ public override string ToString ()
[StructLayout (LayoutKind.Sequential)]
public struct MKMapRect {
#if NET
+ /// A known-invalid (see ).
+ /// To be added.
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
@@ -228,7 +282,13 @@ public struct MKMapRect {
#endif
public static readonly MKMapRect Null = new MKMapRect (double.PositiveInfinity, double.PositiveInfinity, 0, 0);
+ /// The starting location of the .
+ ///
+ /// Note that a may have negative or , so is not necessarily located at [, ].
+ ///
public MKMapPoint Origin;
+ /// The extent of the .
+ /// To be added.
public MKMapSize Size;
public MKMapRect (MKMapPoint origin, MKMapSize size)
@@ -247,6 +307,9 @@ public MKMapRect (double x, double y, double width, double height)
}
// MKMapRectGetMinX
+ /// The minimum X-axis value of the .
+ /// To be added.
+ /// To be added.
public double MinX {
get {
return Origin.X;
@@ -254,6 +317,9 @@ public double MinX {
}
// MKMapRectGetMinY
+ /// The minimum Y-axis value of the .
+ /// To be added.
+ /// To be added.
public double MinY {
get {
return Origin.Y;
@@ -261,6 +327,9 @@ public double MinY {
}
// MKMapRectGetMaxX
+ /// The maximum X-axis value of the .
+ /// To be added.
+ /// To be added.
public double MaxX {
get {
return Origin.X + Size.Width;
@@ -268,6 +337,9 @@ public double MaxX {
}
// MKMapRectGetMaxY
+ /// The maximum Y-axis value of the .
+ /// To be added.
+ /// To be added.
public double MaxY {
get {
return Origin.Y + Size.Height;
@@ -275,6 +347,9 @@ public double MaxY {
}
// MKMapRectGetMidX
+ /// The X-axis midpoint of the .
+ /// To be added.
+ /// To be added.
public double MidX {
get {
return Origin.X + Size.Width / 2.0;
@@ -282,6 +357,9 @@ public double MidX {
}
// MKMapRectGetMidY
+ /// The Y-axis midpoint of the .
+ /// To be added.
+ /// To be added.
public double MidY {
get {
return Origin.Y + Size.Height / 2.0;
@@ -289,6 +367,9 @@ public double MidY {
}
// MKMapRectGetWidth
+ /// The extent along the X-axis of the .
+ /// To be added.
+ /// To be added.
public double Width {
get {
return Size.Width;
@@ -296,6 +377,9 @@ public double Width {
}
// MKMapRectGetHeight
+ /// The height of this , in degrees.
+ /// To be added.
+ /// To be added.
public double Height {
get {
return Size.Height;
@@ -303,6 +387,9 @@ public double Height {
}
// MKMapRectIsNull
+ /// Whether the is the known-invalid rectangle .
+ /// To be added.
+ /// To be added.
public bool IsNull {
get {
return Double.IsInfinity (Origin.X) || Double.IsInfinity (Origin.Y);
@@ -310,6 +397,9 @@ public bool IsNull {
}
// MKMapRectIsEmpty
+ /// Whether the has a positive area.
+ /// To be added.
+ /// To be added.
public bool IsEmpty {
get {
return IsNull || Size.Width == 0 || Size.Height == 0;
@@ -317,6 +407,9 @@ public bool IsEmpty {
}
#if NET
+ /// The that represents the world in the 2D map projection.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
@@ -433,6 +526,9 @@ public MKMapRect Divide (double amount, CGRectEdge edge, out MKMapRect remainder
[DllImport (Constants.MapKitLibrary, EntryPoint = "MKMapRectSpans180thMeridian")]
static extern byte MKMapRectSpans180thMeridian (MKMapRect rect);
+ /// Whether the crosses the ante-meridian.
+ /// To be added.
+ /// To be added.
public bool Spans180thMeridian {
get { return MKMapRectSpans180thMeridian (this) != 0; }
}
diff --git a/src/MediaAccessibility/MAEnums.cs b/src/MediaAccessibility/MAEnums.cs
index f62271d26557..1dd41b6ce4a3 100644
--- a/src/MediaAccessibility/MAEnums.cs
+++ b/src/MediaAccessibility/MAEnums.cs
@@ -21,7 +21,9 @@ namespace MediaAccessibility {
[Native]
[MacCatalyst (13, 1)]
public enum MACaptionAppearanceDomain : long {
+ /// To be added.
Default = 0,
+ /// To be added.
User = 1,
}
@@ -29,8 +31,11 @@ public enum MACaptionAppearanceDomain : long {
[Native]
[MacCatalyst (13, 1)]
public enum MACaptionAppearanceDisplayType : long {
+ /// To be added.
ForcedOnly = 0,
+ /// To be added.
Automatic = 1,
+ /// To be added.
AlwaysOn = 2,
}
@@ -38,7 +43,9 @@ public enum MACaptionAppearanceDisplayType : long {
[Native]
[MacCatalyst (13, 1)]
public enum MACaptionAppearanceBehavior : long {
+ /// To be added.
UseValue = 0,
+ /// To be added.
UseContentIfAvailable = 1,
}
@@ -46,13 +53,21 @@ public enum MACaptionAppearanceBehavior : long {
[Native]
[MacCatalyst (13, 1)]
public enum MACaptionAppearanceFontStyle : long {
+ /// To be added.
Default = 0,
+ /// To be added.
MonospacedWithSerif = 1,
+ /// To be added.
ProportionalWithSerif = 2,
+ /// To be added.
MonospacedWithoutSerif = 3,
+ /// To be added.
ProportionalWithoutSerif = 4,
+ /// To be added.
Casual = 5,
+ /// To be added.
Cursive = 6,
+ /// To be added.
SmallCapital = 7,
}
@@ -60,11 +75,17 @@ public enum MACaptionAppearanceFontStyle : long {
[Native]
[MacCatalyst (13, 1)]
public enum MACaptionAppearanceTextEdgeStyle : long {
+ /// To be added.
Undefined = 0,
+ /// To be added.
None = 1,
+ /// To be added.
Raised = 2,
+ /// To be added.
Depressed = 3,
+ /// To be added.
Uniform = 4,
+ /// To be added.
DropShadow = 5,
}
}
diff --git a/src/MediaPlayer/MPMediaItem.cs b/src/MediaPlayer/MPMediaItem.cs
index c7e2c8e5038d..75e77702d78f 100644
--- a/src/MediaPlayer/MPMediaItem.cs
+++ b/src/MediaPlayer/MPMediaItem.cs
@@ -61,204 +61,395 @@ bool BoolForProperty (NSString property)
return prop.BoolValue;
}
+ /// The Persistent ID
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
public ulong PersistentID {
get {
return UInt64ForProperty (PersistentIDProperty);
}
}
+ /// The Album's persistent id
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
public ulong AlbumPersistentID {
get {
return UInt64ForProperty (AlbumPersistentIDProperty);
}
}
+ /// The Artist Persistent ID
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
public ulong ArtistPersistentID {
get {
return UInt64ForProperty (ArtistPersistentIDProperty);
}
}
+ /// The Album's Artist Persistent ID
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
public ulong AlbumArtistPersistentID {
get {
return UInt64ForProperty (AlbumArtistPersistentIDProperty);
}
}
+ /// The Genre Persistent ID
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
public ulong GenrePersistentID {
get {
return UInt64ForProperty (GenrePersistentIDProperty);
}
}
+ /// The Composer Persistent ID
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
public ulong ComposerPersistentID {
get {
return UInt64ForProperty (ComposerPersistentIDProperty);
}
}
+ /// The Podcast Persistent ID.
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
public ulong PodcastPersistentID {
get {
return UInt64ForProperty (PodcastPersistentIDProperty);
}
}
+ /// Media type for this media item.
+ ///
+ ///
+ ///
+ ///
public MPMediaType MediaType {
get {
return (MPMediaType) Int32ForProperty (MediaTypeProperty);
}
}
+ /// The title for this media item.
+ ///
+ ///
+ ///
+ ///
public NSString? Title {
get {
return ValueForProperty (TitleProperty) as NSString;
}
}
+ /// The album title
+ ///
+ ///
+ ///
+ ///
public NSString? AlbumTitle {
get {
return ValueForProperty (AlbumTitleProperty) as NSString;
}
}
+ /// The artist
+ ///
+ ///
+ ///
+ ///
public NSString? Artist {
get {
return ValueForProperty (ArtistProperty) as NSString;
}
}
+ /// The Album's artist
+ ///
+ ///
+ ///
+ ///
public NSString? AlbumArtist {
get {
return ValueForProperty (AlbumArtistProperty) as NSString;
}
}
+ /// The genre.
+ ///
+ ///
+ ///
+ ///
public NSString? Genre {
get {
return ValueForProperty (GenreProperty) as NSString;
}
}
+ /// The composer
+ ///
+ ///
+ ///
+ ///
public NSString? Composer {
get {
return ValueForProperty (ComposerProperty) as NSString;
}
}
+ /// Playback duration in seconds.
+ ///
+ ///
+ ///
+ ///
public double PlaybackDuration {
get {
return DoubleForProperty (PlaybackDurationProperty);
}
}
+ /// The album track
+ ///
+ ///
+ ///
+ ///
public int AlbumTrackNumber {
get {
return Int32ForProperty (AlbumTrackNumberProperty);
}
}
+ /// The album track count
+ ///
+ ///
+ ///
+ ///
public int AlbumTrackCount {
get {
return Int32ForProperty (AlbumTrackCountProperty);
}
}
+ /// The disc number
+ ///
+ ///
+ ///
+ ///
public int DiscNumber {
get {
return Int32ForProperty (DiscNumberProperty);
}
}
+ /// The number of discs in the album that contains this media item.
+ ///
+ ///
+ ///
+ ///
public int DiscCount {
get {
return Int32ForProperty (DiscCountProperty);
}
}
+ /// The artwork
+ ///
+ ///
+ ///
+ ///
public MPMediaItemArtwork? Artwork {
get {
return (ValueForProperty (ArtworkProperty) as MPMediaItemArtwork);
}
}
+ /// The lyrics.
+ ///
+ ///
+ ///
+ ///
public NSString? Lyrics {
get {
return ValueForProperty (LyricsProperty) as NSString;
}
}
+ /// Set to true if this is media item belongs to a compilation.
+ ///
+ ///
+ ///
+ ///
public bool IsCompilation {
get {
return Int32ForProperty (IsCompilationProperty) != 0;
}
}
+ /// The release date for this media item.
+ ///
+ ///
+ ///
+ ///
public NSDate? ReleaseDate {
get {
return (ValueForProperty (ReleaseDateProperty) as NSDate);
}
}
+ /// The beats per minute
+ ///
+ ///
+ ///
+ ///
public uint BeatsPerMinute {
get {
return UInt32ForProperty (BeatsPerMinuteProperty);
}
}
+ /// The comments
+ ///
+ ///
+ ///
+ ///
public NSString? Comments {
get {
return ValueForProperty (CommentsProperty) as NSString;
}
}
+ /// The asset URL
+ ///
+ ///
+ ///
+ ///
public NSUrl? AssetURL {
get {
return ValueForProperty (AssetURLProperty) as NSUrl;
}
}
+ /// Number of times this item has been played.
+ ///
+ ///
+ ///
+ ///
public int PlayCount {
get {
return Int32ForProperty (PlayCountProperty);
}
}
+ /// Number of times this item has been skipped from playing back.
+ ///
+ ///
+ ///
+ ///
public int SkipCount {
get {
return Int32ForProperty (SkipCountProperty);
}
}
+ /// The user assigned rating in the range zero to five.
+ ///
+ ///
+ ///
+ ///
public uint Rating {
get {
return UInt32ForProperty (RatingProperty);
}
}
+ /// The last date that this item was played.
+ ///
+ ///
+ ///
+ ///
public NSDate? LastPlayedDate {
get {
return (ValueForProperty (LastPlayedDateProperty) as NSDate);
}
}
+ /// User defined grouping for this media item.
+ ///
+ ///
+ ///
+ ///
public NSString? UserGrouping {
get {
return ValueForProperty (UserGroupingProperty) as NSString;
}
}
+ /// Title for the podcast.
+ ///
+ ///
+ ///
+ ///
public NSString? PodcastTitle {
get {
return ValueForProperty (PodcastTitleProperty) as NSString;
}
}
+ /// The user bookmark time
+ ///
+ ///
+ ///
+ ///
public double BookmarkTime {
get {
return DoubleForProperty (BookmarkTimeProperty);
}
}
+ /// Determines if the item is an iCloud item or not.
+ ///
+ ///
+ ///
+ ///
public bool IsCloudItem {
get {
return Int32ForProperty (IsCloudItemProperty) != 0;
@@ -266,6 +457,9 @@ public bool IsCloudItem {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -278,6 +472,9 @@ public bool HasProtectedAsset {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -290,6 +487,9 @@ public bool IsExplicitItem {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -302,6 +502,9 @@ public NSDate? DateAdded {
}
#if NET
+ /// Gets the non-library ID.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
diff --git a/src/MediaPlayer/MediaPlayer.cs b/src/MediaPlayer/MediaPlayer.cs
index 37513501d164..864b09072166 100644
--- a/src/MediaPlayer/MediaPlayer.cs
+++ b/src/MediaPlayer/MediaPlayer.cs
@@ -24,11 +24,17 @@ namespace MediaPlayer {
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
[Native]
public enum MPMoviePlaybackState : long {
+ /// To be added.
Stopped,
+ /// To be added.
Playing,
+ /// To be added.
Paused,
+ /// To be added.
Interrupted,
+ /// To be added.
SeekingForward,
+ /// To be added.
SeekingBackward,
}
@@ -41,9 +47,13 @@ public enum MPMoviePlaybackState : long {
[Deprecated (PlatformName.MacCatalyst, 13, 1)]
[Native]
public enum MPMovieLoadState : long {
+ /// To be added.
Unknown = 0,
+ /// To be added.
Playable = 1 << 0,
+ /// To be added.
PlaythroughOK = 1 << 1,
+ /// To be added.
Stalled = 1 << 2,
}
@@ -99,8 +109,11 @@ public enum MPMovieFinishReason : long {
[Native ("MPMovieMediaTypeMask")]
[Flags]
public enum MPMovieMediaType : long {
+ /// To be added.
None = 0,
+ /// To be added.
Video = 1 << 0,
+ /// To be added.
Audio = 1 << 1,
}
@@ -231,11 +244,17 @@ public enum MPMovieControlMode {
[MacCatalyst (13, 1)]
[Native]
public enum MPMusicPlaybackState : long {
+ /// To be added.
Stopped,
+ /// To be added.
Playing,
+ /// To be added.
Paused,
+ /// To be added.
Interrupted,
+ /// To be added.
SeekingForward,
+ /// To be added.
SeekingBackward,
}
@@ -284,8 +303,11 @@ public enum MPRepeatType : long {
[MacCatalyst (13, 1)]
[Native]
public enum MPChangeLanguageOptionSetting : long {
+ /// To be added.
None,
+ /// To be added.
NowPlayingItemOnly,
+ /// To be added.
Permanent,
}
diff --git a/src/MediaToolbox/MTAudioProcessingTap.cs b/src/MediaToolbox/MTAudioProcessingTap.cs
index 9bb28c656b6b..88eb3b8ea75f 100644
--- a/src/MediaToolbox/MTAudioProcessingTap.cs
+++ b/src/MediaToolbox/MTAudioProcessingTap.cs
@@ -327,21 +327,27 @@ static void UnprepareProxy (IntPtr tap)
// uint32_t -> MTAudioProcessingTap.h
[Flags]
public enum MTAudioProcessingTapCreationFlags : uint {
+ /// To be added.
PreEffects = (1 << 0),
+ /// To be added.
PostEffects = (1 << 1),
}
// uint32_t -> MTAudioProcessingTap.h
[Flags]
public enum MTAudioProcessingTapFlags : uint {
+ /// To be added.
StartOfStream = (1 << 8),
+ /// To be added.
EndOfStream = (1 << 9),
}
// used as OSStatus (4 bytes)
// Not documented error codes
public enum MTAudioProcessingTapError {
+ /// To be added.
None = 0,
+ /// To be added.
InvalidArgument = -12780
}
@@ -354,10 +360,25 @@ public MTAudioProcessingTapCallbacks (MTAudioProcessingTapProcessDelegate proces
Processing = process;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MTAudioProcessingTapInitCallback? Initialize { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Action? Finalize { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MTAudioProcessingTapPrepareCallback? Prepare { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public Action? Unprepare { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public MTAudioProcessingTapProcessDelegate? Processing { get; private set; }
}
diff --git a/src/Metal/Defs.cs b/src/Metal/Defs.cs
index 4d01f7e01b29..eabd0e28d78c 100644
--- a/src/Metal/Defs.cs
+++ b/src/Metal/Defs.cs
@@ -25,8 +25,14 @@ namespace Metal {
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLOrigin {
+ /// To be added.
+ /// To be added.
public nint X;
+ /// To be added.
+ /// To be added.
public nint Y;
+ /// To be added.
+ /// To be added.
public nint Z;
public MTLOrigin (nint x, nint y, nint z)
@@ -49,8 +55,14 @@ public override string ToString ()
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLSize {
+ /// To be added.
+ /// To be added.
public nint Width;
+ /// To be added.
+ /// To be added.
public nint Height;
+ /// To be added.
+ /// To be added.
public nint Depth;
public MTLSize (nint width, nint height, nint depth)
@@ -100,9 +112,17 @@ public static MDLVertexFormat ToModelVertexFormat (this MTLVertexFormat vertexFo
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLScissorRect {
+ /// To be added.
+ /// To be added.
public nuint X;
+ /// To be added.
+ /// To be added.
public nuint Y;
+ /// To be added.
+ /// To be added.
public nuint Width;
+ /// To be added.
+ /// To be added.
public nuint Height;
public MTLScissorRect (nuint x, nuint y, nuint width, nuint height)
@@ -126,11 +146,23 @@ public override string ToString ()
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLViewport {
+ /// To be added.
+ /// To be added.
public double OriginX;
+ /// To be added.
+ /// To be added.
public double OriginY;
+ /// To be added.
+ /// To be added.
public double Width;
+ /// To be added.
+ /// To be added.
public double Height;
+ /// To be added.
+ /// To be added.
public double ZNear;
+ /// To be added.
+ /// To be added.
public double ZFar;
public MTLViewport (double originX, double originY, double width, double height, double znear, double zfar)
@@ -157,8 +189,12 @@ public override string ToString ()
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MTLSamplePosition {
+ /// The X value, in the range [0.0, 1.0).
+ /// To be added.
public float X;
+ /// The Y value, in the range [0.0, 1.0).
+ /// To be added.
public float Y;
public MTLSamplePosition (float x, float y)
@@ -176,9 +212,17 @@ public MTLSamplePosition (float x, float y)
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLClearColor {
+ /// To be added.
+ /// To be added.
public double Red;
+ /// To be added.
+ /// To be added.
public double Green;
+ /// To be added.
+ /// To be added.
public double Blue;
+ /// To be added.
+ /// To be added.
public double Alpha;
public MTLClearColor (double red, double green, double blue, double alpha)
@@ -197,7 +241,11 @@ public MTLClearColor (double red, double green, double blue, double alpha)
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLRegion {
+ /// To be added.
+ /// To be added.
public MTLOrigin Origin;
+ /// To be added.
+ /// To be added.
public MTLSize Size;
public MTLRegion (MTLOrigin origin, MTLSize size)
@@ -266,10 +314,16 @@ public static MTLRegion Create3D (nint x, nint y, nint z, nint width, nint heigh
#endif
[StructLayout (LayoutKind.Explicit)]
public struct MTLClearValue {
+ /// To be added.
+ /// To be added.
[FieldOffset (0)]
public MTLClearColor Color;
+ /// To be added.
+ /// To be added.
[FieldOffset (0)]
public double Depth;
+ /// To be added.
+ /// To be added.
[FieldOffset (0)]
public ulong Stencil;
@@ -310,8 +364,14 @@ public MTLClearValue (ulong stencil)
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLDispatchThreadgroupsIndirectArguments {
+ /// Gets the threadgrops for the first dimension of the grid.
+ /// To be added.
public uint ThreadGroupsPerGrid1;
+ /// Gets the threadgrops for the second dimension of the grid.
+ /// To be added.
public uint ThreadGroupsPerGrid2;
+ /// Gets the threadgrops for the third dimension of the grid.
+ /// To be added.
public uint ThreadGroupsPerGrid3;
}
@@ -323,12 +383,24 @@ public struct MTLDispatchThreadgroupsIndirectArguments {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MTLStageInRegionIndirectArguments {
+ /// To be added.
+ /// To be added.
public uint StageInOrigin1;
+ /// To be added.
+ /// To be added.
public uint StageInOrigin2;
+ /// To be added.
+ /// To be added.
public uint StageInOrigin3;
+ /// To be added.
+ /// To be added.
public uint StageInSize1;
+ /// To be added.
+ /// To be added.
public uint StageInSize2;
+ /// To be added.
+ /// To be added.
public uint StageInSize3;
}
@@ -339,9 +411,17 @@ public struct MTLStageInRegionIndirectArguments {
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLDrawPrimitivesIndirectArguments {
+ /// The number of vertices.
+ /// To be added.
public uint VertexCount;
+ /// The number instances.
+ /// To be added.
public uint InstanceCount;
+ /// The first vertex.
+ /// To be added.
public uint VertexStart;
+ /// The first primitive.
+ /// To be added.
public uint BaseInstance;
}
@@ -352,10 +432,20 @@ public struct MTLDrawPrimitivesIndirectArguments {
[SupportedOSPlatform ("tvos")]
#endif
public struct MTLDrawIndexedPrimitivesIndirectArguments {
+ /// The number of indices to read from the index buffer for each instance.
+ /// To be added.
public uint IndexCount;
+ /// The number of instances.
+ /// To be added.
public uint InstanceCount;
+ /// The first index.
+ /// To be added.
public uint IndexStart;
+ /// The first vertex.
+ /// To be added.
public uint BaseVertex;
+ /// The first primitive.
+ /// To be added.
public uint BaseInstance;
}
@@ -367,7 +457,11 @@ public struct MTLDrawIndexedPrimitivesIndirectArguments {
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MTLSizeAndAlign {
+ /// To be added.
+ /// To be added.
public nuint Size;
+ /// To be added.
+ /// To be added.
public nuint Align;
public MTLSizeAndAlign (nuint size, nuint align)
@@ -386,9 +480,17 @@ public MTLSizeAndAlign (nuint size, nuint align)
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MTLDrawPatchIndirectArguments {
+ /// To be added.
+ /// To be added.
public uint PatchCount;
+ /// To be added.
+ /// To be added.
public uint InstanceCount;
+ /// To be added.
+ /// To be added.
public uint PatchStart;
+ /// To be added.
+ /// To be added.
public uint BaseInstance;
public MTLDrawPatchIndirectArguments (uint pathCount, uint instanceCount, uint patchStart, uint baseInstance)
@@ -441,8 +543,12 @@ public ushort [] InsideTessellationFactor {
}
}
#else
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.ByValArray, SizeConst = 4)]
public ushort [] EdgeTessellationFactor;
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.ByValArray, SizeConst = 2)]
public ushort [] InsideTessellationFactor;
#endif
@@ -493,9 +599,13 @@ public ushort [] EdgeTessellationFactor {
}
}
#else
+ /// To be added.
+ /// To be added.
[MarshalAs (UnmanagedType.ByValArray, SizeConst = 3)]
public ushort [] EdgeTessellationFactor;
#endif
+ /// To be added.
+ /// To be added.
public ushort InsideTessellationFactor;
public MTLTriangleTessellationFactorsHalf (ushort [] edgeTessellationFactor, ushort insideTessellationFactor)
diff --git a/src/Metal/MTLDevice.cs b/src/Metal/MTLDevice.cs
index 97259720df0a..383f2091bb0e 100644
--- a/src/Metal/MTLDevice.cs
+++ b/src/Metal/MTLDevice.cs
@@ -38,6 +38,9 @@ public static partial class MTLDevice {
static IMTLDevice? system_default;
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static IMTLDevice? SystemDefault {
get {
// Metal could be unavailable on the hardware (and we don't want to return an invalid instance)
diff --git a/src/ModelIO/MDLAnimatedValueTypes.cs b/src/ModelIO/MDLAnimatedValueTypes.cs
index 7fd3b6b9eae6..cad9adfce0f2 100644
--- a/src/ModelIO/MDLAnimatedValueTypes.cs
+++ b/src/ModelIO/MDLAnimatedValueTypes.cs
@@ -45,6 +45,9 @@
namespace ModelIO {
public partial class MDLAnimatedValue {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public double []? KeyTimes {
get {
var wkt = WeakKeyTimes;
diff --git a/src/ModelIO/MDLStructs.cs b/src/ModelIO/MDLStructs.cs
index 39f9c64fcbeb..efb6505969ee 100644
--- a/src/ModelIO/MDLStructs.cs
+++ b/src/ModelIO/MDLStructs.cs
@@ -68,7 +68,11 @@ public static MTLVertexFormat ToMetalVertexFormat (this MDLVertexFormat vertexFo
#endif
[StructLayout (LayoutKind.Sequential)]
public struct MDLAxisAlignedBoundingBox {
+ /// Gets the maximum bounds.
+ /// To be added.
public Vector3 MaxBounds;
+ /// Gets the minimum bounds.
+ /// To be added.
public Vector3 MinBounds;
public MDLAxisAlignedBoundingBox (Vector3 maxBounds, Vector3 minBounds)
diff --git a/src/ModelIO/MIEnums.cs b/src/ModelIO/MIEnums.cs
index 6a1a456a7b62..1932328c96bc 100644
--- a/src/ModelIO/MIEnums.cs
+++ b/src/ModelIO/MIEnums.cs
@@ -113,20 +113,30 @@ public enum MDLMeshBufferType : ulong {
/// Enumerates the geometric primitives to use for rendering.
[Native]
public enum MDLGeometryType : long {
+ /// Indicates that each index describes a point.
Points = 0,
+ /// Indicates that consecutive index pairs describe lines.
Lines,
+ /// Indicates that each 3-index stride in the buffer specifies a triangle.
Triangles,
+ /// Indicates that the first 3-index stride in the buffer specifies a triangle, and that successive points specify another triangle with the preceding two indices
TriangleStrips,
+ /// Indicates that each 4-index stride in the buffer specifies a quadrilateral.
Quads,
+ /// Indicates that the geometry is not uniform, and is described by its property.
VariableTopology,
}
/// Enumerates bit depths for index buffers.
[Native]
public enum MDLIndexBitDepth : ulong {
+ /// The index buffer has not been initialized.
Invalid,
+ /// Each index is an unsigned 8-bit integer.
UInt8 = 8,
+ /// Each index is an unsigned 16-bit integer.
UInt16 = 16,
+ /// Each index is an unsigned 32-bit integer.
UInt32 = 32,
}
@@ -215,9 +225,13 @@ public enum MDLTextureChannelEncoding : long {
/// Enumerates the types of .
[Native]
public enum MDLLightType : ulong {
+ /// An unknown light type, or an uninitialized light.
Unknown = 0,
+ /// A nondirectional, diffuse light that is not dependent on its location.
Ambient,
+ /// A directional light that is not dependent on its location.
Directional,
+ /// A light source that shines in a specific direction from a specific place.
Spot,
Point,
Linear,
@@ -232,7 +246,9 @@ public enum MDLLightType : ulong {
/// Enumerates camera projections.
[Native]
public enum MDLCameraProjection : ulong {
+ /// To be added.
Perspective = 0,
+ /// To be added.
Orthographic = 1,
}
diff --git a/src/MonoPInvokeCallbackAttribute.cs b/src/MonoPInvokeCallbackAttribute.cs
index 6eae3072e0dd..94239ca80bd2 100644
--- a/src/MonoPInvokeCallbackAttribute.cs
+++ b/src/MonoPInvokeCallbackAttribute.cs
@@ -30,6 +30,10 @@ public MonoPInvokeCallbackAttribute (Type t)
DelegateType = t;
}
+ /// The type of the delegate that will be calling us back.
+ /// The type of the delegate that will be calling us back.
+ ///
+ ///
public Type DelegateType { get; set; }
}
}
diff --git a/src/MultipeerConnectivity/Enums.cs b/src/MultipeerConnectivity/Enums.cs
index 9d141d6754cb..29a6d28f7be6 100644
--- a/src/MultipeerConnectivity/Enums.cs
+++ b/src/MultipeerConnectivity/Enums.cs
@@ -16,7 +16,9 @@ namespace MultipeerConnectivity {
[MacCatalyst (13, 1)]
[Native]
public enum MCSessionSendDataMode : long {
+ /// Indicates guaranteed delivery.
Reliable,
+ /// Indicates non-guaranteed delivery.
Unreliable
}
@@ -25,8 +27,11 @@ public enum MCSessionSendDataMode : long {
[MacCatalyst (13, 1)]
[Native]
public enum MCSessionState : long {
+ /// Indicates that the is not connected.
NotConnected,
+ /// Indicates that the is in the process of connecting.
Connecting,
+ /// Indicates that the is connected.
Connected
}
@@ -35,8 +40,11 @@ public enum MCSessionState : long {
[MacCatalyst (13, 1)]
[Native]
public enum MCEncryptionPreference : long {
+ /// No preference.
Optional = 0,
+ /// Connections should be encrypted.
Required = 1,
+ /// A preference for unencrypted connections.
None = 2
}
@@ -46,12 +54,19 @@ public enum MCEncryptionPreference : long {
[Native ("MCErrorCode")]
[ErrorDomain ("MCErrorDomain")]
public enum MCError : long {
+ /// The type of the error could not be determined.
Unknown,
+ /// Data was sent to a peer that is not connected.
NotConnected,
+ /// The relevant operation was called with an invalid parameter.
InvalidParameter,
+ /// The relevant operation is not supported (for instance, an attempt to send a non-local or non-Web-based resource).
Unsupported,
+ /// Indicates a connection or data-transmission time-out.
TimedOut,
+ /// The relevant operation was cancelled.
Cancelled,
+ /// Indicates that Multipeer Connectivity is not available.
Unavailable
}
}
diff --git a/src/NaturalLanguage/Enums.cs b/src/NaturalLanguage/Enums.cs
index c6ae5c3546b0..7863bfb1e0df 100644
--- a/src/NaturalLanguage/Enums.cs
+++ b/src/NaturalLanguage/Enums.cs
@@ -43,7 +43,9 @@ public enum NLTaggerOptions : ulong {
[Native]
[MacCatalyst (13, 1)]
public enum NLModelType : long {
+ /// Indicates a model that tags text at a level of groups of tokens, such as sentences or paragraphs.
Classifier,
+ /// Indicates a model that tags text at the individual token level.
Sequence,
}
@@ -71,121 +73,179 @@ public enum NLTokenizerAttributes : ulong {
/// Enumerates languages for which recognition is supported.
[MacCatalyst (13, 1)]
public enum NLLanguage {
+ /// To be added.
[DefaultEnumValue]
[Field (null)]
Unevaluated,
+ /// Indicates that the language was not recognized.
[Field ("NLLanguageUndetermined")]
Undetermined,
+ /// Indicates the Amharic language.
[Field ("NLLanguageAmharic")]
Amharic,
+ /// Indicates the Arabic language.
[Field ("NLLanguageArabic")]
Arabic,
+ /// Indicates the Armenian language.
[Field ("NLLanguageArmenian")]
Armenian,
+ /// Indicates the Bengali language.
[Field ("NLLanguageBengali")]
Bengali,
+ /// Indicates the Bulgarian language.
[Field ("NLLanguageBulgarian")]
Bulgarian,
+ /// Indicates the Burmese language.
[Field ("NLLanguageBurmese")]
Burmese,
+ /// Indicates the Catalan language.
[Field ("NLLanguageCatalan")]
Catalan,
+ /// Indicates the Cherokee language.
[Field ("NLLanguageCherokee")]
Cherokee,
+ /// Indicates the Croatian language.
[Field ("NLLanguageCroatian")]
Croatian,
+ /// Indicates the Czech language.
[Field ("NLLanguageCzech")]
Czech,
+ /// Indicates the Danish language.
[Field ("NLLanguageDanish")]
Danish,
+ /// Indicates the Dutch language.
[Field ("NLLanguageDutch")]
Dutch,
+ /// Indicates the English language.
[Field ("NLLanguageEnglish")]
English,
+ /// Indicates the Finnish language.
[Field ("NLLanguageFinnish")]
Finnish,
+ /// Indicates the French language.
[Field ("NLLanguageFrench")]
French,
+ /// Indicates the Georgian language.
[Field ("NLLanguageGeorgian")]
Georgian,
+ /// Indicates the German language.
[Field ("NLLanguageGerman")]
German,
+ /// Indicates the Greek language.
[Field ("NLLanguageGreek")]
Greek,
+ /// Indicates the Gujarati language.
[Field ("NLLanguageGujarati")]
Gujarati,
+ /// Indicates the Hebrew language.
[Field ("NLLanguageHebrew")]
Hebrew,
+ /// Indicates the Hindi language.
[Field ("NLLanguageHindi")]
Hindi,
+ /// Indicates the Hungarian language.
[Field ("NLLanguageHungarian")]
Hungarian,
+ /// Indicates the Icelandic language.
[Field ("NLLanguageIcelandic")]
Icelandic,
+ /// Indicates the Indonesian language.
[Field ("NLLanguageIndonesian")]
Indonesian,
+ /// Indicates the Italian language.
[Field ("NLLanguageItalian")]
Italian,
+ /// Indicates the Japanese language.
[Field ("NLLanguageJapanese")]
Japanese,
+ /// Indicates the Kannada language.
[Field ("NLLanguageKannada")]
Kannada,
+ /// Indicates the Khmer language.
[Field ("NLLanguageKhmer")]
Khmer,
+ /// Indicates the Korean language.
[Field ("NLLanguageKorean")]
Korean,
+ /// Indicates the Lao language.
[Field ("NLLanguageLao")]
Lao,
+ /// Indicates the Malay language.
[Field ("NLLanguageMalay")]
Malay,
+ /// Indicates the Malayalam language.
[Field ("NLLanguageMalayalam")]
Malayalam,
+ /// Indicates the Marathi language.
[Field ("NLLanguageMarathi")]
Marathi,
+ /// Indicates the Mongolian language.
[Field ("NLLanguageMongolian")]
Mongolian,
+ /// Indicates the Norwegian language.
[Field ("NLLanguageNorwegian")]
Norwegian,
+ /// Indicates the Oriya language.
[Field ("NLLanguageOriya")]
Oriya,
+ /// Indicates the Persian language.
[Field ("NLLanguagePersian")]
Persian,
+ /// Indicates the Polish language.
[Field ("NLLanguagePolish")]
Polish,
+ /// Indicates the Portuguese language.
[Field ("NLLanguagePortuguese")]
Portuguese,
+ /// Indicates the Punjabi language.
[Field ("NLLanguagePunjabi")]
Punjabi,
+ /// Indicates the Romanian language.
[Field ("NLLanguageRomanian")]
Romanian,
+ /// Indicates the Russian language.
[Field ("NLLanguageRussian")]
Russian,
+ /// Indicates the Simplified Chinese language character set.
[Field ("NLLanguageSimplifiedChinese")]
SimplifiedChinese,
+ /// Indicates the Sinhalese language.
[Field ("NLLanguageSinhalese")]
Sinhalese,
+ /// Indicates the Slovak language.
[Field ("NLLanguageSlovak")]
Slovak,
+ /// Indicates the Spanish language.
[Field ("NLLanguageSpanish")]
Spanish,
+ /// Indicates the Swedish language.
[Field ("NLLanguageSwedish")]
Swedish,
+ /// Indicates the Tamil language.
[Field ("NLLanguageTamil")]
Tamil,
+ /// Indicates the Telugu language.
[Field ("NLLanguageTelugu")]
Telugu,
+ /// Indicates the Thai language.
[Field ("NLLanguageThai")]
Thai,
+ /// Indicates the Tibetan language.
[Field ("NLLanguageTibetan")]
Tibetan,
+ /// Indicates the Traditional Chinese character set.
[Field ("NLLanguageTraditionalChinese")]
TraditionalChinese,
+ /// Indicates the Turkish language.
[Field ("NLLanguageTurkish")]
Turkish,
+ /// Indicates the Ukrainian language.
[Field ("NLLanguageUkrainian")]
Ukrainian,
+ /// Indicates the Urdu language.
[Field ("NLLanguageUrdu")]
Urdu,
+ /// Indicates the Vietnamese language.
[Field ("NLLanguageVietnamese")]
Vietnamese,
diff --git a/src/NaturalLanguage/NLLanguageRecognizer.cs b/src/NaturalLanguage/NLLanguageRecognizer.cs
index acddbfc879e9..129ab1bc4d2a 100644
--- a/src/NaturalLanguage/NLLanguageRecognizer.cs
+++ b/src/NaturalLanguage/NLLanguageRecognizer.cs
@@ -49,6 +49,9 @@ public Dictionary GetLanguageHypotheses (nuint maxHypotheses
}
}
+ /// Gets or sets a list of language hints.
+ /// A list of language hints.
+ /// To be added.
public Dictionary LanguageHints {
get {
return NLLanguageExtensions.Convert (NativeLanguageHints);
diff --git a/src/ObjCRuntime/AdoptsAttribute.cs b/src/ObjCRuntime/AdoptsAttribute.cs
index d4e46ae6f3d6..ae8825ed004a 100644
--- a/src/ObjCRuntime/AdoptsAttribute.cs
+++ b/src/ObjCRuntime/AdoptsAttribute.cs
@@ -42,10 +42,20 @@ public AdoptsAttribute (string protocolType)
ProtocolType = protocolType;
}
+ /// The name of the protocol type adopted.
+ ///
+ ///
+ ///
+ ///
public string ProtocolType {
get; private set;
}
+ /// Returns the underlying handle to the Protocol.
+ ///
+ ///
+ ///
+ ///
public IntPtr ProtocolHandle {
get {
if (handle == IntPtr.Zero && ProtocolType is not null)
diff --git a/src/ObjCRuntime/ArgumentSemantic.cs b/src/ObjCRuntime/ArgumentSemantic.cs
index 7a8f4fc53b40..cbd17aaba749 100644
--- a/src/ObjCRuntime/ArgumentSemantic.cs
+++ b/src/ObjCRuntime/ArgumentSemantic.cs
@@ -1,11 +1,18 @@
namespace ObjCRuntime {
public enum ArgumentSemantic : int {
+ /// No argument semantics is specified.
None = -1,
+ /// Assigning is merely a pointer copy. This is identical to
Assign = 0,
+ /// A copy of the object is made.
Copy = 1,
+ /// The assigned object is retained (its reference count increased). This is identical to .
Retain = 2,
+ /// A weak reference is created to the assigned object, and the property will automatically be nulled out when the assigned object is freed.
Weak = 3,
+ /// The assigned object is retained (its reference count increased). This is identical to .
Strong = Retain,
+ /// Merely performs a pointer copy in unmanaged code. This is identical to .
UnsafeUnretained = Assign,
}
}
diff --git a/src/ObjCRuntime/BindAsAttribute.cs b/src/ObjCRuntime/BindAsAttribute.cs
index ff3bec94cb7a..aad46855453f 100644
--- a/src/ObjCRuntime/BindAsAttribute.cs
+++ b/src/ObjCRuntime/BindAsAttribute.cs
@@ -44,7 +44,11 @@ public BindAsAttribute (Type type)
{
Type = type;
}
+ /// The managed type.
+ ///
public Type Type;
+ /// The Objective-C type.
+ ///
public Type? OriginalType;
#if BGENERATOR
Type? nullable;
diff --git a/src/ObjCRuntime/BindingImplAttribute.cs b/src/ObjCRuntime/BindingImplAttribute.cs
index ceea90e94fb3..25f4f2fba260 100644
--- a/src/ObjCRuntime/BindingImplAttribute.cs
+++ b/src/ObjCRuntime/BindingImplAttribute.cs
@@ -14,12 +14,18 @@ public BindingImplAttribute (BindingImplOptions options)
Options = options;
}
+ /// The binding implementation options.
+ /// The binding implementation options.
+ ///
+ ///
public BindingImplOptions Options { get; set; }
}
[Flags]
public enum BindingImplOptions {
+ /// If the method contains generated code.
GeneratedCode = 1,
+ /// If the method contains code that can be optimized by the Xamarin.iOS build process.
Optimizable = 2,
}
}
diff --git a/src/ObjCRuntime/BlockProxyAttribute.cs b/src/ObjCRuntime/BlockProxyAttribute.cs
index dfe20fd6702c..3d90e0570be4 100644
--- a/src/ObjCRuntime/BlockProxyAttribute.cs
+++ b/src/ObjCRuntime/BlockProxyAttribute.cs
@@ -18,6 +18,11 @@ namespace ObjCRuntime {
[AttributeUsage (AttributeTargets.Parameter, AllowMultiple = false)]
public sealed class BlockProxyAttribute : Attribute {
public BlockProxyAttribute (Type t) { Type = t; }
+ /// The type that is used to proxy an Objective-C block into this managed parameter.
+ ///
+ ///
+ ///
+ ///
public Type Type { get; set; }
}
@@ -27,6 +32,10 @@ public DelegateProxyAttribute (Type delegateType)
{
DelegateType = delegateType;
}
+ /// The delegate type that is used to proxy managed delegates into Objective-C blocks.
+ /// The delegate type that is used to proxy managed delegates into Objective-C blocks.
+ ///
+ ///
public Type DelegateType { get; set; }
}
}
diff --git a/src/ObjCRuntime/Blocks.cs b/src/ObjCRuntime/Blocks.cs
index 2c3389e1c9a9..02e61170aab2 100644
--- a/src/ObjCRuntime/Blocks.cs
+++ b/src/ObjCRuntime/Blocks.cs
@@ -399,6 +399,11 @@ public object Context {
}
}
+ /// Returns the target object for the block.
+ ///
+ ///
+ ///
+ ///
public object Target {
get {
var target = Context;
@@ -694,14 +699,23 @@ public void Add (IntPtr block)
[Flags]
internal enum BlockFlags : int {
+ /// Objective-C Block ABI Flags.
BLOCK_REFCOUNT_MASK = (0xffff),
+ /// Objective-C Block ABI Flags.
BLOCK_NEEDS_FREE = (1 << 24),
+ /// Objective-C Block ABI Flags
BLOCK_HAS_COPY_DISPOSE = (1 << 25),
+ /// Objective-C Block ABI Flags
BLOCK_HAS_CTOR = (1 << 26), /* Helpers have C++ code. */
+ /// Objective-C Block ABI Flags.
BLOCK_IS_GC = (1 << 27),
+ /// Objective-C Block ABI Flags.
BLOCK_IS_GLOBAL = (1 << 28),
+ /// Whether the block_descriptor field is filled in.
BLOCK_HAS_DESCRIPTOR = (1 << 29), // This meaning was deprecated
+ /// Objective-C Block ABI Flags.
BLOCK_HAS_STRET = (1 << 29),
+ /// Objective-C Block ABI Flags
BLOCK_HAS_SIGNATURE = (1 << 30),
}
}
diff --git a/src/ObjCRuntime/CategoryAttribute.cs b/src/ObjCRuntime/CategoryAttribute.cs
index 6a70931fac62..8c9d34f35e07 100644
--- a/src/ObjCRuntime/CategoryAttribute.cs
+++ b/src/ObjCRuntime/CategoryAttribute.cs
@@ -19,7 +19,18 @@ public CategoryAttribute (Type type)
Type = type;
}
+ /// The type that this category extends.
+ ///
+ ///
+ ///
+ ///
public Type Type { get; set; }
+ /// The name of the category.
+ ///
+ ///
+ ///
+ /// This must be a valid Objective-C type name, but is otherwise unused.
+ ///
public string Name { get; set; }
}
}
diff --git a/src/ObjCRuntime/Class.cs b/src/ObjCRuntime/Class.cs
index 1bfa062aebbb..6425b6344dc9 100644
--- a/src/ObjCRuntime/Class.cs
+++ b/src/ObjCRuntime/Class.cs
@@ -38,6 +38,19 @@ public partial class Class : INativeObject
#if !COREBUILD
NativeHandle handle;
+ /// Determines whether Xamarin.iOS will check in the NSObject constructor if the corresponding native object was successfully created (the default value is true).
+ ///
+ ///
+ /// Traditionally Xamarin.iOS has allowed managed objects to be
+ /// created without a native peer. The behavior has however been
+ /// inconsistent between types, and in the case of types from
+ /// third-party libraries it would result in instances that would,
+ /// if used, most likely crash the process with a stack overflow.
+ ///
+ ///
+ /// With this check the behavior will be consistent among all types.
+ ///
+ ///
public static bool ThrowOnInitFailure = true;
// We use the last significant bit of the IntPtr to store if this is a custom class or not.
@@ -100,14 +113,27 @@ public Class (NativeHandle handle, bool owns)
this.handle = handle;
}
+ /// Handle (pointer) to the unmanaged object representation.
+ /// A pointer
+ ///
+ /// This IntPtr is a handle to the underlying unmanaged representation for this object.
+ ///
public NativeHandle Handle {
get { return this.handle; }
}
+ /// The Objective-C handle to the super class for this class.
+ ///
+ ///
+ ///
public NativeHandle SuperClass {
get { return class_getSuperclass (Handle); }
}
+ /// The Objective-C name for this class.
+ ///
+ ///
+ ///
public string? Name {
get {
var ptr = class_getName (Handle);
diff --git a/src/ObjCRuntime/Constants.cs b/src/ObjCRuntime/Constants.cs
index 951d93af7e5f..317a74a13fbe 100644
--- a/src/ObjCRuntime/Constants.cs
+++ b/src/ObjCRuntime/Constants.cs
@@ -4,10 +4,24 @@ namespace Xamarin.Bundler {
namespace ObjCRuntime {
#endif
public static partial class Constants {
+ /// Path to the System library to use with DllImport attributes.
+ ///
+ ///
public const string libSystemLibrary = "/usr/lib/libSystem.dylib";
+ /// Path to the libc library to use with DllImport attributes.
+ ///
+ ///
public const string libcLibrary = "/usr/lib/libc.dylib";
+ /// Path to the libobjc library to use with DllImport attributes.
+ ///
+ ///
public const string ObjectiveCLibrary = "/usr/lib/libobjc.dylib";
+ /// Path to the System library to use with DllImport attributes.
+ ///
+ ///
public const string SystemLibrary = "/usr/lib/libSystem.dylib";
+ /// To be added.
+ /// To be added.
public const string libdispatchLibrary = "/usr/lib/system/libdispatch.dylib";
#if !NET
public const string libcompression = "/usr/lib/libcompression.dylib";
diff --git a/src/ObjCRuntime/DelayedRegistrationAttribute.cs b/src/ObjCRuntime/DelayedRegistrationAttribute.cs
index c1b57b383a01..c37e67f888e3 100644
--- a/src/ObjCRuntime/DelayedRegistrationAttribute.cs
+++ b/src/ObjCRuntime/DelayedRegistrationAttribute.cs
@@ -30,6 +30,9 @@
namespace ObjCRuntime {
[AttributeUsage (AttributeTargets.Assembly)]
public abstract class DelayedRegistrationAttribute : Attribute {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public abstract bool Delay { get; }
}
}
diff --git a/src/ObjCRuntime/Dlfcn.cs b/src/ObjCRuntime/Dlfcn.cs
index 725be061da61..79d1882da40e 100644
--- a/src/ObjCRuntime/Dlfcn.cs
+++ b/src/ObjCRuntime/Dlfcn.cs
@@ -69,9 +69,13 @@ static public class AudioToolbox {
public static class Dlfcn {
#if !COREBUILD
public enum RTLD {
+ /// The dynamic linker searches for the symbol in the dylibs the calling image linked against when built. It is usually used when you intentionally have multiply defined symbol across images and want to find the "next" definition.
Next = -1,
+ /// Searches all Mach-O images in the process (except those loaded with dlopen(xxx, RTLD_LOCAL)) in the order they were loaded. This can be a costly search and should be avoided.
Default = -2,
+ /// Search for the symbol starts with the image that called dlsym. If it is not found, the search continues as if Next was used.
Self = -3,
+ /// Only searches for symbol in the main executable.
MainOnly = -5
}
diff --git a/src/ObjCRuntime/INativeObject.cs b/src/ObjCRuntime/INativeObject.cs
index aa4823b9642f..7e5802f88fcf 100644
--- a/src/ObjCRuntime/INativeObject.cs
+++ b/src/ObjCRuntime/INativeObject.cs
@@ -12,6 +12,11 @@ namespace ObjCRuntime {
public interface INativeObject {
#if !COREBUILD
+ /// Handle (pointer) to the unmanaged object representation.
+ /// A pointer
+ ///
+ /// This IntPtr is a handle to the underlying unmanaged representation for this object.
+ ///
NativeHandle Handle {
get;
}
diff --git a/src/ObjCRuntime/LinkWithAttribute.cs b/src/ObjCRuntime/LinkWithAttribute.cs
index 918b66b56dc3..841207632997 100644
--- a/src/ObjCRuntime/LinkWithAttribute.cs
+++ b/src/ObjCRuntime/LinkWithAttribute.cs
@@ -31,20 +31,32 @@
namespace ObjCRuntime {
[Flags]
public enum LinkTarget : int {
+ /// A flag that signifies that the native library supports the Simulator (i386 architecture).
Simulator = 1,
+ /// A flag that signifies that the native library supports the Simulator (i386 architecture).
i386 = Simulator,
+ /// A flag that signifies that the native library supports the ARMv6 architecture.
ArmV6 = 2,
+ /// A flag that signifies that the native library supports the ARMv7 architecture.
ArmV7 = 4,
+ /// A flag that specifies that the native library targets the Thumb subset of or .
Thumb = 8,
+ /// A flag that signifies that the native library supports the ARMv7s architecture.
ArmV7s = 16,
+ /// A flag that signifies that the native library supports the ARM-64 architecture.
Arm64 = 32,
+ /// A flag that signifies that the native library supports the Simulator (x86-64 architecture).
Simulator64 = 64,
+ /// A flag that signifies that the native library supports the Simulator (x86-64 architecture).
x86_64 = Simulator64
}
public enum DlsymOption {
+ /// Use the default value for the platform (for backwards compatibility reasons the default is to use dlsym on platforms that support it - this may change in the future).
Default,
+ /// This library requires using dlsym to resolve P/Invokes to native functions.
Required,
+ /// This library does not depend on using dlsym to resolve P/Invokes to native functions.
Disabled,
}
@@ -72,34 +84,67 @@ public LinkWithAttribute ()
{
}
+ /// Specifies whether or not the -force_load clang argument is required when linking this native library.
+ /// This value should be set to true if the -force_load argument is required, or false otherwise.
+ ///
+ ///
public bool ForceLoad {
get; set;
}
+ /// Specifies a space-delimited list of platform Frameworks required by the native library.
+ /// This value should be set to a string containing a space-delimited list of platform Frameworks (e.g. "CoreGraphics CoreLocation CoreMedia MediaPlayer QuartzCore").
+ ///
+ ///
public string? Frameworks {
get; set;
}
+ /// Specifies a list of space-delimited platform Frameworks that should be weakly linked.
+ /// This value should be set to a string containing a space-delimited list of platform Frameworks (e.g. "CoreBluetooth NewsstandKit Twitter").
+ ///
+ ///
public string? WeakFrameworks {
get; set;
}
+ /// The name of the native library.
+ /// A string representing the name of the native library.
+ ///
+ ///
public string? LibraryName {
get; private set;
}
+ /// Additional linker flags that are required for linking the native library to an application.
+ /// A string containing the extra linker flags to be passed to clang or null if unneeded.
+ ///
+ ///
public string? LinkerFlags {
get; set;
}
+ /// The target platform (or platforms) that this library is built for.
+ /// A bitwise-or'ing of .
+ ///
+ /// This field is ignored, Xamarin.iOS will instead look in the native library to see which architectures are present in the library.
+ ///
public LinkTarget LinkTarget {
get; set;
}
+ /// Specifies whether or not the native library requires linking with the GCC Exception Handling library (libgcc_eh).
+ /// This value should be set to true if the native library requires linking with -lgcc_eh, or false otherwise.
+ ///
+ ///
public bool NeedsGccExceptionHandling {
get; set;
}
+ /// Specifies whether or not the native library is a C++ library.
+ /// This value should be set to true if a c++ compiler should be used when building the application consuming this native library.
+ ///
+ ///
public bool IsCxx {
get; set;
}
@@ -110,10 +155,20 @@ public bool LinkWithSwiftSystemLibraries {
get; set;
}
+ /// If this is set true, the ForceLoad value will be ignored when it is deemed safe to do so.
+ /// This value should be set to true to let Xamarin.iOS determine whether ForceLoad is required or not.
+ ///
+ /// In the current implementation the ForceLoad flag is usually not required when the static registrar is used at compilation time. The exact logic is however an implementation detail and may change in future versions.
+ ///
public bool SmartLink {
get; set;
}
+ /// Specifies if the managed assembly requires using dlsym to resolve P/Invokes to native functions.
+ /// Developers should set this value to if the library does not require using dlsym, since the AOT compiler can generate faster and smaller code.
+ ///
+ /// The library requires using dlsym to resolve P/Invokes to native functions if it contains P/Invokes to native functions that don't exist on the target platform.
+ ///
public DlsymOption Dlsym {
get; set;
}
diff --git a/src/ObjCRuntime/NativeAttribute.cs b/src/ObjCRuntime/NativeAttribute.cs
index 6cb49fd013ae..4d9e53cec84f 100644
--- a/src/ObjCRuntime/NativeAttribute.cs
+++ b/src/ObjCRuntime/NativeAttribute.cs
@@ -27,6 +27,10 @@ public NativeAttribute (string name)
NativeName = name;
}
+ /// The name of the corresponding native enum (in case it doesn't match the managed enum's name).
+ /// The name of the corresponding native enum (in case it doesn't match the managed enum's name).
+ ///
+ ///
public string? NativeName { get; set; }
// methods to use to convert a managed enum value to native (and vice versa)
diff --git a/src/ObjCRuntime/Protocol.cs b/src/ObjCRuntime/Protocol.cs
index 2f43a8f93e31..c8d8c19e1299 100644
--- a/src/ObjCRuntime/Protocol.cs
+++ b/src/ObjCRuntime/Protocol.cs
@@ -45,10 +45,20 @@ internal Protocol (NativeHandle handle, bool owns)
this.handle = handle;
}
+ /// Handle (pointer) to the unmanaged object representation.
+ /// A pointer
+ ///
+ /// This IntPtr is a handle to the underlying unmanaged representation for this object.
+ ///
public NativeHandle Handle {
get { return this.handle; }
}
+ /// Name of the protocol.
+ ///
+ ///
+ ///
+ ///
public string? Name {
get {
IntPtr ptr = protocol_getName (Handle);
diff --git a/src/ObjCRuntime/Registrar.cs b/src/ObjCRuntime/Registrar.cs
index 18a9163515dd..68a71f0d4ce2 100644
--- a/src/ObjCRuntime/Registrar.cs
+++ b/src/ObjCRuntime/Registrar.cs
@@ -63,7 +63,13 @@ namespace ObjCRuntime {
public delegate void AssemblyRegistrationHandler (object sender, AssemblyRegistrationEventArgs args);
public class AssemblyRegistrationEventArgs : EventArgs {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool Register { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public System.Reflection.AssemblyName AssemblyName { get; internal set; }
}
}
diff --git a/src/ObjCRuntime/RequiredFrameworkAttribute.cs b/src/ObjCRuntime/RequiredFrameworkAttribute.cs
index ac1b8cc56505..75a03942cb2d 100644
--- a/src/ObjCRuntime/RequiredFrameworkAttribute.cs
+++ b/src/ObjCRuntime/RequiredFrameworkAttribute.cs
@@ -31,6 +31,9 @@ namespace ObjCRuntime {
[AttributeUsage (AttributeTargets.Assembly, AllowMultiple = true)]
public class RequiredFrameworkAttribute : Attribute {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string Name { get; private set; }
public RequiredFrameworkAttribute (string name)
diff --git a/src/ObjCRuntime/Runtime.cs b/src/ObjCRuntime/Runtime.cs
index 138e94b76e5a..8cb67a37b50d 100644
--- a/src/ObjCRuntime/Runtime.cs
+++ b/src/ObjCRuntime/Runtime.cs
@@ -280,6 +280,12 @@ internal unsafe static bool IsManagedStaticRegistrar {
}
}
+ /// If dynamic registration is supported.
+ /// If dynamic registration is supported.
+ ///
+ /// At build time the managed linker can in some cases determine whether dynamic registration is required or not, and if not, it can optimize away the code to support dynamic registration (to minimize app size). If support for dynamic registration has been removed by the linker, this property will return false.
+ ///
+ /// Build optimizations (removal of the dynamic registrar)
[BindingImpl (BindingImplOptions.Optimizable)]
public static bool DynamicRegistrationSupported {
get {
@@ -2667,6 +2673,8 @@ public string Description {
[DllImport (Constants.libSystemLibrary)]
static unsafe extern NXArchInfo* NXGetLocalArchInfo ();
+ /// To be added.
+ /// To be added.
public static bool IsARM64CallingConvention;
[BindingImpl (BindingImplOptions.Optimizable)]
@@ -2759,6 +2767,9 @@ public static nuint ConvertManagedEnumValueToNative (ulong value)
}
#if NET || !MONOMAC // legacy Xamarin.Mac has a different implementation in Runtime.mac.cs
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static string? OriginalWorkingDirectory {
get {
return Marshal.PtrToStringUTF8 (xamarin_get_original_working_directory_path ());
diff --git a/src/ObjCRuntime/Runtime.iOS.cs b/src/ObjCRuntime/Runtime.iOS.cs
index 5c0c8ee20c94..80258f98a3e1 100644
--- a/src/ObjCRuntime/Runtime.iOS.cs
+++ b/src/ObjCRuntime/Runtime.iOS.cs
@@ -55,6 +55,10 @@ public static partial class Runtime {
#if !__MACCATALYST__
#if NET
+ /// The architecture where the code is currently running.
+ ///
+ /// Use this to determine the architecture on which the program is currently running (device or simulator).
+ ///
public readonly static Arch Arch = (Arch) GetRuntimeArch ();
#else
public static Arch Arch; // default: = Arch.DEVICE;
@@ -158,7 +162,9 @@ public static void StartWWAN (Uri uri)
#if !__MACCATALYST__
public enum Arch {
+ /// Running on a physical device.
DEVICE,
+ /// Running on the desktop simulator.
SIMULATOR
}
#endif
diff --git a/src/ObjCRuntime/Runtime.mac.cs b/src/ObjCRuntime/Runtime.mac.cs
index 56b55d9e03b8..0c330f83bfed 100644
--- a/src/ObjCRuntime/Runtime.mac.cs
+++ b/src/ObjCRuntime/Runtime.mac.cs
@@ -47,10 +47,16 @@ public static partial class Runtime {
internal const string AssemblyName = "Xamarin.Mac.dll";
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static string? FrameworksPath {
get; set;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public static string? ResourcesPath {
get; set;
}
diff --git a/src/ObjCRuntime/RuntimeException.cs b/src/ObjCRuntime/RuntimeException.cs
index 651f887bdd3e..f7e2a3535ca3 100644
--- a/src/ObjCRuntime/RuntimeException.cs
+++ b/src/ObjCRuntime/RuntimeException.cs
@@ -29,8 +29,16 @@ public RuntimeException (int code, bool error, Exception? innerException, string
Error = error;
}
+ /// The error code for the condition that triggered the exception.
+ /// The error code for the condition that triggered the exception.
+ ///
+ ///
public int Code { get; private set; }
+ /// If this exception represents an error or a warning.
+ /// If this exception represents an error or a warning.
+ ///
+ ///
public bool Error { get; private set; }
// http://blogs.msdn.com/b/msbuild/archive/2006/11/03/msbuild-visual-studio-aware-error-messages-and-message-formats.aspx
diff --git a/src/ObjCRuntime/Selector.cs b/src/ObjCRuntime/Selector.cs
index 7f4326ad8936..b621008d522b 100644
--- a/src/ObjCRuntime/Selector.cs
+++ b/src/ObjCRuntime/Selector.cs
@@ -67,10 +67,19 @@ public Selector (string name)
handle = GetHandle (name);
}
+ /// Handle (pointer) to the unmanaged selector representation.
+ /// A pointer to the unmanaged selector representation.
+ ///
+ /// This IntPtr is the handle to the underlying unmanaged representation for this selector.
+ ///
public NativeHandle Handle {
get { return handle; }
}
+ /// Name of this selector.
+ ///
+ ///
+ ///
public string Name {
get {
if (name is null)
diff --git a/src/ObjCRuntime/ThreadSafeAttribute.cs b/src/ObjCRuntime/ThreadSafeAttribute.cs
index 3109ef948da2..1a239d900ae9 100644
--- a/src/ObjCRuntime/ThreadSafeAttribute.cs
+++ b/src/ObjCRuntime/ThreadSafeAttribute.cs
@@ -40,6 +40,10 @@ public ThreadSafeAttribute (bool safe)
Safe = safe;
}
+ /// If the API is thread-safe or not.
+ /// If the API is thread-safe or not.
+ ///
+ ///
public bool Safe { get; private set; }
}
}
diff --git a/src/ObjCRuntime/UserDelegateTypeAttribute.cs b/src/ObjCRuntime/UserDelegateTypeAttribute.cs
index d752b6a16a18..cb1a6a748932 100644
--- a/src/ObjCRuntime/UserDelegateTypeAttribute.cs
+++ b/src/ObjCRuntime/UserDelegateTypeAttribute.cs
@@ -43,6 +43,11 @@ public UserDelegateTypeAttribute (Type userDelegateType)
UserDelegateType = userDelegateType;
}
+ /// The managed delegate type that corresponds to the delegate this attribute is applied to.
+ ///
+ ///
+ ///
+ ///
public Type UserDelegateType {
get; private set;
}
diff --git a/src/PdfKit/Enums.cs b/src/PdfKit/Enums.cs
index 45cba05bb9cf..8891eaa02046 100644
--- a/src/PdfKit/Enums.cs
+++ b/src/PdfKit/Enums.cs
@@ -39,17 +39,29 @@ namespace PdfKit {
[Native]
[TV (18, 2)]
public enum PdfActionNamedName : long {
+ /// Indicates an action that has no name, or is not yet named.
None = 0,
+ /// Indicates an action that goes to the next page in a document.
NextPage = 1,
+ /// Indicates an action that goes to the previous page in a document.
PreviousPage = 2,
+ /// Indicates an action that goes to the first page of the document.
FirstPage = 3,
+ /// Indicates an action that goes to the last page of a document.
LastPage = 4,
+ /// Indicates an action that goes back one location in a navigation list.
GoBack = 5,
+ /// Indicates an action that goes forward one location in a navigation list.
GoForward = 6,
+ /// Indicates an action that goes to a specific page in a document.
GoToPage = 7,
+ /// Indicates the Find action.
Find = 8,
+ /// Indicates an action that prints a document.
Print = 9,
+ /// Indicates an action that zooms in.
ZoomIn = 10,
+ /// Indicates an action that zooms out.
ZoomOut = 11
}
@@ -65,19 +77,28 @@ public enum PdfWidgetControlType : long {
[Native]
[TV (18, 2)]
public enum PdfLineStyle : long {
+ /// Indicates no line ending glyph.
None = 0,
+ /// Indicates a solid square line ending glyph.
Square = 1,
+ /// Indicates a filled circle line ending glyph.
Circle = 2,
+ /// Indicates a solid diamond line ending glyph.
Diamond = 3,
+ /// Indicates an open arrow line ending glyph.
OpenArrow = 4,
+ /// Indicates a solid triangular line ending glyph.
ClosedArrow = 5
}
[Native]
[TV (18, 2)]
public enum PdfMarkupType : long {
+ /// Indicates a highlight markup.
Highlight = 0,
+ /// Indicates a strikethrough markup.
StrikeOut = 1,
+ /// Indicates an underline markup.
Underline = 2,
Redact = 3,
}
@@ -97,10 +118,15 @@ public enum PdfTextAnnotationIconType : long {
[Native]
[TV (18, 2)]
public enum PdfBorderStyle : long {
+ /// Indicates a solid line.
Solid = 0,
+ /// Indicates a dashed effect.
Dashed = 1,
+ /// Indicates a beveled effect.
Beveled = 2,
+ /// Indicates an inset effect.
Inset = 3,
+ /// Indicates the annotation will be underlined.
Underline = 4
}
@@ -118,27 +144,39 @@ public enum PdfPrintScalingMode : long {
[Native]
[TV (18, 2)]
public enum PdfDocumentPermissions : long {
+ /// To be added.
None = 0,
+ /// To be added.
User = 1,
+ /// To be added.
Owner = 2
}
[Native]
[TV (18, 2)]
public enum PdfDisplayBox : long {
+ /// Indicates a rectangle around a physical medium in user space.
Media = 0,
+ /// Indicates a crop rectangle around the visible portion of the page.
Crop = 1,
+ /// Indicates a bleed box for production.
Bleed = 2,
+ /// Indicates a box around intended finish boundaries.
Trim = 3,
+ /// Indicates a rectangle around the boundaries of a page's content for display.
Art = 4
}
[Native]
[TV (18, 2)]
public enum PdfDisplayMode : long {
+ /// Indicates that a single page at a time is displayed.
SinglePage = 0,
+ /// Indicates that pages are displayed in a single continuously scrolling column.
SinglePageContinuous = 1,
+ /// Indicates that two pages are displayed side by side.
TwoUp = 2,
+ /// Indicates that pages are displayed in a continuously scrolling double column.
TwoUpContinuous = 3
}
@@ -146,15 +184,25 @@ public enum PdfDisplayMode : long {
[Native]
[TV (18, 2)]
public enum PdfAreaOfInterest : long {
+ /// Indicates that the touch position is over an ordinary area.
NoArea = 0,
+ /// Indicates that the touch position is over a page.
PageArea = 1 << 0,
+ /// Indicates that the touch position is over a text area.
TextArea = 1 << 1,
+ /// Indicates that the touch position is over an annotation.
AnnotationArea = 1 << 2,
+ /// Indicates that the touch position is over a link.
LinkArea = 1 << 3,
+ /// Indicates that the touch position is over a control.
ControlArea = 1 << 4,
+ /// Indicates that the touch position is over a text field.
TextFieldArea = 1 << 5,
+ /// Indicates that the touch position is over an icon.
IconArea = 1 << 6,
+ /// Indicates that the touch position is over a popup.
PopupArea = 1 << 7,
+ /// Indicates that the touch position is over an image.
ImageArea = 1 << 8,
[iOS (15, 0), MacCatalyst (15, 0)]
AnyArea = Int64.MaxValue,
@@ -163,15 +211,20 @@ public enum PdfAreaOfInterest : long {
[Native]
[TV (18, 2)]
public enum PdfDisplayDirection : long {
+ /// To be added.
Vertical = 0,
+ /// To be added.
Horizontal = 1,
}
[Native]
[TV (18, 2)]
public enum PdfInterpolationQuality : long {
+ /// To be added.
None = 0,
+ /// To be added.
Low = 1,
+ /// To be added.
High = 2,
}
diff --git a/src/PdfKit/PdfAnnotation.cs b/src/PdfKit/PdfAnnotation.cs
index fd6b269dff23..3293a2dca8eb 100644
--- a/src/PdfKit/PdfAnnotation.cs
+++ b/src/PdfKit/PdfAnnotation.cs
@@ -54,11 +54,17 @@ public T GetValue (PdfAnnotationKey key) where T : class, INativeObject
return Runtime.GetINativeObject (_GetValue (key.GetConstant ()!), true)!;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public PdfAnnotationKey AnnotationType {
get { return PdfAnnotationKeyExtensions.GetValue (Type!); }
set { Type = value.GetConstant ()!; }
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("maccatalyst")]
diff --git a/src/SceneKit/Defs.cs b/src/SceneKit/Defs.cs
index 8ebb75bc6fdc..b6f20be18ce1 100644
--- a/src/SceneKit/Defs.cs
+++ b/src/SceneKit/Defs.cs
@@ -113,9 +113,13 @@ public enum SCNMorpherCalculationMode : long {
[MacCatalyst (13, 1)]
[Native]
public enum SCNActionTimingMode : long {
+ /// To be added.
Linear,
+ /// To be added.
EaseIn,
+ /// To be added.
EaseOut,
+ /// To be added.
EaseInEaseOut,
}
@@ -132,8 +136,11 @@ public enum SCNShadowMode : long {
[MacCatalyst (13, 1)]
[Native]
public enum SCNPhysicsBodyType : long {
+ /// To be added.
Static,
+ /// To be added.
Dynamic,
+ /// To be added.
Kinematic,
}
@@ -272,14 +279,19 @@ public enum SCNPhysicsSearchMode {
[MacCatalyst (13, 1)]
[Native]
public enum SCNAntialiasingMode : ulong {
+ /// Do not antialias.
None,
+ /// Use two samples for each pixel.
Multisampling2X,
+ /// Use four samples for each pixel..
Multisampling4X,
#if MONOMAC || __MACCATALYST__
+ /// To be added.
[NoiOS]
[NoTV]
[NoMacCatalyst]
Multisampling8X,
+ /// To be added.
[NoiOS]
[NoTV]
[NoMacCatalyst]
@@ -301,9 +313,13 @@ public enum SCNPhysicsCollisionCategory : ulong {
[MacCatalyst (13, 1)]
[Native]
public enum SCNBillboardAxis : ulong {
+ /// Allow the billboard to rotate about the X axis.
X = 1 << 0,
+ /// Allow the billboard to rotate about the Y axis.
Y = 1 << 1,
+ /// Allow the billboard to rotate about the Z axis.
Z = 1 << 2,
+ /// Align the billboard with the view.
All = (X | Y | Z),
}
@@ -319,12 +335,19 @@ public enum SCNReferenceLoadingPolicy : long {
[MacCatalyst (13, 1)]
[Native]
public enum SCNBlendMode : long {
+ /// Indicates that colors will be blended by multiplying the source and destination values by their corresponding alpha values
Alpha = 0,
+ /// Indicates that colors will be blended by adding their values.
Add = 1,
+ /// Indicates that colors will be blended by subtracting the source from the destination.
Subtract = 2,
+ /// Indicates that colors will be blended by multiplying their corresponding components.
Multiply = 3,
+ /// Indicates that colors will be blended by multiplying their corresponding inverses.
Screen = 4,
+ /// Indicates that colors will be blended by replacing the destination with the source and ignoring the alpha channel.
Replace = 5,
+ /// To be added.
[MacCatalyst (13, 1)]
Max = 6,
}
diff --git a/src/SpriteKit/Enums.cs b/src/SpriteKit/Enums.cs
index 789c695bda15..e916499ffd04 100644
--- a/src/SpriteKit/Enums.cs
+++ b/src/SpriteKit/Enums.cs
@@ -33,9 +33,13 @@ public enum SKRepeatMode : long {
/// An enumeration whose values specify the time-varying behavior of a . Used with .
[Native]
public enum SKActionTimingMode : long {
+ /// Render the animation with no easing.
Linear = 0,
+ /// Ease the animation in.
EaseIn = 1,
+ /// Ease the animation out.
EaseOut = 2,
+ /// Ease the animation in and out.
EaseInEaseOut = 3
}
@@ -127,14 +131,23 @@ public enum SKParticleRenderOrder : ulong {
[MacCatalyst (13, 1)]
[Native]
public enum SKAttributeType : long {
+ /// To be added.
None = 0,
+ /// To be added.
Float = 1,
+ /// To be added.
VectorFloat2 = 2,
+ /// To be added.
VectorFloat3 = 3,
+ /// To be added.
VectorFloat4 = 4,
+ /// To be added.
HalfFloat = 5,
+ /// To be added.
VectorHalfFloat2 = 6,
+ /// To be added.
VectorHalfFloat3 = 7,
+ /// To be added.
VectorHalfFloat4 = 8,
}
diff --git a/src/System.Net.Http/CFNetworkHandler.cs b/src/System.Net.Http/CFNetworkHandler.cs
index 521c50886157..9ff2507993d7 100644
--- a/src/System.Net.Http/CFNetworkHandler.cs
+++ b/src/System.Net.Http/CFNetworkHandler.cs
@@ -106,6 +106,9 @@ void EnsureModifiability ()
"Properties can only be modified before sending the first request.");
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool AllowAutoRedirect {
get {
return allowAutoRedirect;
@@ -116,6 +119,9 @@ public bool AllowAutoRedirect {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CookieContainer CookieContainer {
get {
return cookies ?? (cookies = new CookieContainer ());
@@ -126,6 +132,9 @@ public CookieContainer CookieContainer {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public bool UseSystemProxy {
get {
return useSystemProxy;
diff --git a/src/SystemConfiguration/NetworkReachability.cs b/src/SystemConfiguration/NetworkReachability.cs
index d231d20c37c4..721fb920e9d9 100644
--- a/src/SystemConfiguration/NetworkReachability.cs
+++ b/src/SystemConfiguration/NetworkReachability.cs
@@ -25,15 +25,24 @@ namespace SystemConfiguration {
// SCNetworkReachabilityFlags -> uint32_t -> SCNetworkReachability.h
[Flags]
public enum NetworkReachabilityFlags {
+ /// The host is reachable using a transient connection (PPP for example).
TransientConnection = 1 << 0,
+ /// The host is reachable.
Reachable = 1 << 1,
+ /// Reachable, but a connection must first be established.
ConnectionRequired = 1 << 2,
+ /// Reachable, but a connection must be initiated. The connection will be initiated on any traffic to the target detected.
ConnectionOnTraffic = 1 << 3,
+ /// The host is reachable, but it will require user interaction.
InterventionRequired = 1 << 4,
+ /// Reachable, but a connection must be initiated. The connection will be initiated if you use any of the CFSocketStream APIs, but will not be initiated automatically.
ConnectionOnDemand = 1 << 5,
+ /// The specified address is the device local name or local device.
IsLocalAddress = 1 << 16,
+ /// Connection to the host is direct, and will not go through a gateway.
IsDirect = 1 << 17,
#if NET
+ /// Reachable over the cellular connection (GPRS, EDGE or 3G).
[UnsupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[SupportedOSPlatform ("ios")]
@@ -42,6 +51,7 @@ public enum NetworkReachabilityFlags {
[Unavailable (PlatformName.MacOSX)]
#endif
IsWWAN = 1 << 18,
+ /// The connection will happen automatically (alias for ConnectionOnTraffic).
ConnectionAutomatic = ConnectionOnTraffic
}
diff --git a/src/SystemConfiguration/StatusCode.cs b/src/SystemConfiguration/StatusCode.cs
index bc90e89f44d3..cc08666a5072 100644
--- a/src/SystemConfiguration/StatusCode.cs
+++ b/src/SystemConfiguration/StatusCode.cs
@@ -18,25 +18,45 @@ namespace SystemConfiguration {
/// An enumeration whose values specify various statuses relating to network reachability.
[ErrorDomain ("kCFErrorDomainSystemConfiguration")]
public enum StatusCode {
+ /// The call succeeded.
OK = 0,
+ /// General error.
Failed = 1001,
+ /// A bad argument was passed.
InvalidArgument = 1002,
+ /// Permission was denied.
AccessError = 1003,
+ /// The key does not exist.
NoKey = 1004,
+ /// The key is already defined.
KeyExists = 1005,
+ /// A lock is already defined.
Locked = 1006,
+ /// The operation requires a lock.
NeedLock = 1007,
+ /// The configuration daemon session is not active.
NoStoreSession = 2001,
+ /// The configuration daemon is not available.
NoStoreServer = 2002,
+ /// Notifier is active.
NotifierActive = 2003,
+ /// The preferences session is not active.
NoPrefsSession = 3001,
+ /// A preferences update is currently active.
PrefsBusy = 3002,
+ /// The config file cannot be found.
NoConfigFile = 3003,
+ /// The link does not exist.
NoLink = 3004,
+ /// A write was attempted on a stale version of the object.
Stale = 3005,
+ /// The max link count has been exceeded.
MaxLink = 3006,
+ /// The reachability of the target cannot be determined.
ReachabilityUnknown = 4001,
+ /// Network service for connection is unavailable.
ConnectionNoService = 5001,
+ /// To be added.
ConnectionIgnore = 5002
}
}
diff --git a/src/SystemConfiguration/SystemConfigurationException.cs b/src/SystemConfiguration/SystemConfigurationException.cs
index 0a28db1d130f..14a6054ddf76 100644
--- a/src/SystemConfiguration/SystemConfigurationException.cs
+++ b/src/SystemConfiguration/SystemConfigurationException.cs
@@ -20,6 +20,9 @@ public SystemConfigurationException (StatusCode statusErrorCode)
StatusErrorCode = statusErrorCode;
}
+ /// The wrapped in this T:SystemConfigurtion.SystemConfigurationException.
+ /// To be added.
+ /// To be added.
public StatusCode StatusErrorCode { get; private set; }
internal static SystemConfigurationException FromMostRecentCall ()
diff --git a/src/VideoToolbox/VTCompressionProperties.cs b/src/VideoToolbox/VTCompressionProperties.cs
index 85911653f43e..fb625704c883 100644
--- a/src/VideoToolbox/VTCompressionProperties.cs
+++ b/src/VideoToolbox/VTCompressionProperties.cs
@@ -20,6 +20,9 @@
namespace VideoToolbox {
public partial class VTCompressionProperties {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTProfileLevel ProfileLevel {
get {
var key = GetNSStringValue (VTCompressionPropertyKey.ProfileLevel);
@@ -288,6 +291,9 @@ public VTProfileLevel ProfileLevel {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
@@ -320,6 +326,9 @@ public VTH264EntropyMode H264EntropyMode {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public List? DataRateLimits {
get {
using (var arr = GetNativeValue (VTCompressionPropertyKey.DataRateLimits)) {
@@ -351,6 +360,9 @@ public List? DataRateLimits {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTFieldDetail FieldDetail {
get {
var key = GetNSStringValue (VTCompressionPropertyKey.FieldDetail);
@@ -388,6 +400,9 @@ public VTFieldDetail FieldDetail {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTColorPrimaries ColorPrimaries {
get {
var key = GetNSStringValue (VTCompressionPropertyKey.ColorPrimaries);
@@ -425,6 +440,9 @@ public VTColorPrimaries ColorPrimaries {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTTransferFunction TransferFunction {
get {
var key = GetNSStringValue (VTCompressionPropertyKey.TransferFunction);
@@ -457,6 +475,9 @@ public VTTransferFunction TransferFunction {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTYCbCrMatrix YCbCrMatrix {
get {
var key = GetNSStringValue (VTCompressionPropertyKey.YCbCrMatrix);
@@ -489,6 +510,9 @@ public VTYCbCrMatrix YCbCrMatrix {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTMultiPassStorage? MultiPassStorage {
get {
return GetNativeValue (VTCompressionPropertyKey.MultiPassStorage);
diff --git a/src/VideoToolbox/VTDataRateLimit.cs b/src/VideoToolbox/VTDataRateLimit.cs
index 477f0c41f5c0..666888d78695 100644
--- a/src/VideoToolbox/VTDataRateLimit.cs
+++ b/src/VideoToolbox/VTDataRateLimit.cs
@@ -24,7 +24,13 @@ namespace VideoToolbox {
[SupportedOSPlatform ("tvos")]
#endif
public struct VTDataRateLimit {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public uint NumberOfBytes { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public double Seconds { get; set; }
public VTDataRateLimit (uint numberOfBytes, double seconds) : this ()
diff --git a/src/VideoToolbox/VTDecompressionProperties.cs b/src/VideoToolbox/VTDecompressionProperties.cs
index d0686f56993c..0ba94680e70b 100644
--- a/src/VideoToolbox/VTDecompressionProperties.cs
+++ b/src/VideoToolbox/VTDecompressionProperties.cs
@@ -20,12 +20,18 @@
namespace VideoToolbox {
public partial class VTDecompressionProperties {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public CVPixelBufferPool? PixelBufferPool {
get {
return GetNativeValue (VTDecompressionPropertyKey.PixelBufferPool);
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTFieldMode FieldMode {
get {
var key = GetNSStringValue (VTDecompressionPropertyKey.FieldMode);
@@ -68,6 +74,9 @@ public VTFieldMode FieldMode {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTDeinterlaceMode DeinterlaceMode {
get {
var key = GetNSStringValue (VTDecompressionPropertyKey.DeinterlaceMode);
@@ -95,6 +104,9 @@ public VTDeinterlaceMode DeinterlaceMode {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTOnlyTheseFrames OnlyTheseFrames {
get {
var key = GetNSStringValue (VTDecompressionPropertyKey.OnlyTheseFrames);
diff --git a/src/VideoToolbox/VTDefs.cs b/src/VideoToolbox/VTDefs.cs
index 2ef94b2c6402..8d102f125c74 100644
--- a/src/VideoToolbox/VTDefs.cs
+++ b/src/VideoToolbox/VTDefs.cs
@@ -18,15 +18,24 @@ namespace VideoToolbox {
/// Possible VideoToolbox API errors.
public enum VTStatus {
Ok,
+ /// To be added.
PropertyNotSupported = -12900,
PropertyReadOnly = -12901,
+ /// To be added.
Parameter = -12902,
+ /// To be added.
InvalidSession = -12903,
+ /// To be added.
AllocationFailed = -12904,
+ /// To be added.
PixelTransferNotSupported = -12905,
+ /// To be added.
CouldNotFindVideoDecoder = -12906,
+ /// To be added.
CouldNotCreateInstance = -12907,
+ /// To be added.
CouldNotFindVideoEncoder = -12908,
+ /// To be added.
VideoDecoderBadData = -12909,
VideoDecoderUnsupportedDataFormat = -12910,
VideoDecoderMalfunction = -12911,
@@ -73,9 +82,13 @@ public enum VTStatus {
/// Flags to control encoder in a decompression session
[Flags]
public enum VTDecodeFrameFlags : uint {
+ /// To be added.
EnableAsynchronousDecompression = 1 << 0,
+ /// To be added.
DoNotOutputFrame = 1 << 1,
+ /// To be added.
OneTimeRealTimePlayback = 1 << 2,
+ /// To be added.
EnableTemporalProcessing = 1 << 3,
}
@@ -83,8 +96,11 @@ public enum VTDecodeFrameFlags : uint {
/// Flags for status reporting in decoding sessions.
[Flags]
public enum VTDecodeInfoFlags : uint {
+ /// To be added.
Asynchronous = 1 << 0,
+ /// To be added.
FrameDropped = 1 << 1,
+ /// To be added.
ImageBufferModifiable = 1 << 2,
SkippedLeadingFrameDropped = 1 << 3,
}
@@ -93,7 +109,9 @@ public enum VTDecodeInfoFlags : uint {
/// Encoding status flags.
[Flags]
public enum VTEncodeInfoFlags : uint {
+ /// To be added.
Asynchronous = 1 << 0,
+ /// To be added.
FrameDropped = 1 << 1
}
@@ -107,57 +125,108 @@ public enum VTCompressionSessionOptionFlags : uint {
// Strongly Typed VTProfileLevelKey
/// Strongly typed set of options used by .
public enum VTProfileLevel {
+ /// The protocol, profile, and level have not been set.
Unset,
+ /// The H.264 compression format, baseline profile, level 1.3.
H264Baseline13,
+ /// The H.264 compression format, baseline profile, level 3.0.
H264Baseline30,
+ /// The H.264 compression format, baseline profile, level 3.1.
H264Baseline31,
+ /// The H.264 compression format, baseline profile, level 3.2.
H264Baseline32,
+ /// The H.264 compression format, baseline profile, level 4.0.
H264Baseline40,
+ /// The H.264 compression format, baseline profile, level 4.1.
H264Baseline41,
+ /// The H.264 compression format, baseline profile, level 4.2.
H264Baseline42,
+ /// The H.264 compression format, baseline profile, level 5.0.
H264Baseline50,
+ /// The H.264 compression format, baseline profile, level 5.1.
H264Baseline51,
+ /// The H.264 compression format, baseline profile, level 5.2.
H264Baseline52,
+ /// The H.264 compression format, baseline profile. Determine the level automatically.
H264BaselineAutoLevel,
+ /// The H.264 compression format, main profile, level 3.0.
H264Main30,
+ /// The H.264 compression format, main profile, level 3.1.
H264Main31,
+ /// The H.264 compression format, main profile, level 3.2.
H264Main32,
+ /// The H.264 compression format, main profile, level 4.0.
H264Main40,
+ /// The H.264 compression format, main profile, level 4.1.
H264Main41,
+ /// The H.264 compression format, main profile, level 4.2.
H264Main42,
+ /// The H.264 compression format, main profile, level 5.0.
H264Main50,
+ /// The H.264 compression format, main profile, level 5.1.
H264Main51,
+ /// The H.264 compression format, main profile, level 5.2.
H264Main52,
+ /// The H.264 compression format, main profile. Determine the level automatically.
H264MainAutoLevel,
+ /// The H.264 compression format, extended profile, level 5.0.
H264Extended50,
+ /// The H.264 compression format, extended profile. Determine the level automatically.
H264ExtendedAutoLevel,
+ /// The H.264 compression format, high profile, level 3.0.
H264High30,
+ /// The H.264 compression format, high profile, level 3.1.
H264High31,
+ /// The H.264 compression format, high profile, level 3.2.
H264High32,
+ /// The H.264 compression format, high profile, level 4.0.
H264High40,
+ /// The H.264 compression format, high profile, level 4.1.
H264High41,
+ /// The H.264 compression format, high profile, level 4.2.
H264High42,
+ /// The H.264 compression format, high profile, level 5.0.
H264High50,
+ /// The H.264 compression format, high profile, level 5.1.
H264High51,
+ /// The H.264 compression format, high profile, level 5.2.
H264High52,
+ /// The H.264 compression format, high profile. Determine the level automatically.
H264HighAutoLevel,
+ /// The MPEG-4 simple profile, level 0.
MP4VSimpleL0,
+ /// The MPEG-4 simple profile, level 1.
MP4VSimpleL1,
+ /// The MPEG-4 simple profile, level 2.
MP4VSimpleL2,
+ /// The MPEG-4 simple profile, level 3.
MP4VSimpleL3,
+ /// The MPEG-4 main profile, level 2.
MP4VMainL2,
+ /// The MPEG-4 main profile, level 3.
MP4VMainL3,
+ /// The MPEG-4 main profile, level 4.
MP4VMainL4,
+ /// The MPEG-4 advanced simple profile, level 0.
MP4VAdvancedSimpleL0,
+ /// The MPEG-4 advanced simple profile, level 1.
MP4VAdvancedSimpleL1,
+ /// The MPEG-4 advanced simple profile, level 2.
MP4VAdvancedSimpleL2,
+ /// The MPEG-4 advanced simple profile, level 3.
MP4VAdvancedSimpleL3,
+ /// The MPEG-4 advanced simple profile, level 4.
MP4VAdvancedSimpleL4,
+ /// The H.263 compression format, profile 0, level 1.0.
H263Profile0Level10,
+ /// The H.263 compression format, profile 0, level 4.5.
H263Profile0Level45,
+ /// The H.263 compression format, profile 3, level 4.5.
H263Profile3Level45,
+ /// To be added.
[MacCatalyst (13, 1)]
HevcMainAutoLevel,
+ /// To be added.
[MacCatalyst (13, 1)]
HevcMain10AutoLevel,
}
@@ -165,35 +234,50 @@ public enum VTProfileLevel {
// Strongly Typed VTH264EntropyModeKeys
/// Strongly typed set of options used by .
public enum VTH264EntropyMode {
+ /// To be added.
Unset,
+ /// To be added.
Cavlc,
+ /// To be added.
Cabac
}
// Strongly Typed kVTCompressionPropertyKey_FieldCount
/// Frame encoding options.
public enum VTFieldCount {
+ /// To be added.
Progressive = 1,
+ /// To be added.
Interlaced = 2
}
// Strongly Typed kVTCompressionPropertyKey_FieldDetail
/// Field ordering options.
public enum VTFieldDetail {
+ /// To be added.
Unset,
+ /// To be added.
TemporalTopFirst,
+ /// To be added.
TemporalBottomFirst,
+ /// To be added.
SpatialFirstLineEarly,
+ /// To be added.
SpatialFirstLineLate
}
// Strongly Typed kVTCompressionPropertyKey_ColorPrimaries
/// Represents color primaries in compressed sample buffers
public enum VTColorPrimaries {
+ /// To be added.
Unset,
+ /// To be added.
ItuR7092,
+ /// To be added.
Ebu3213,
+ /// To be added.
SmpteC,
+ /// To be added.
P22
}
@@ -218,11 +302,17 @@ public enum VTYCbCrMatrix {
// Strongly Typed kVTDecompressionPropertyKey_FieldMode
/// Decoder field mode options.
public enum VTFieldMode {
+ /// To be added.
Unset,
+ /// To be added.
BothFields,
+ /// To be added.
TopFieldOnly,
+ /// To be added.
BottomFieldOnly,
+ /// To be added.
SingleField,
+ /// To be added.
DeinterlaceFields
}
@@ -237,27 +327,39 @@ public enum VTDeinterlaceMode {
// Strongly Typed kVTDecompressionPropertyKey_OnlyTheseFrames
/// Strongly typed set of options used by .
public enum VTOnlyTheseFrames {
+ /// To be added.
Unset,
+ /// To be added.
AllFrames,
+ /// To be added.
NonDroppableFrames,
+ /// To be added.
IFrames,
+ /// To be added.
KeyFrames
}
// Strongly Typed kVTPropertyTypeKey
/// Strongly typed set of options.
public enum VTPropertyType {
+ /// To be added.
Unset,
+ /// To be added.
Enumeration,
+ /// To be added.
Boolean,
+ /// To be added.
Number
}
// Strongly Typed kVTPropertyReadWriteStatusKey
/// Strongly typed set of options used by .
public enum VTReadWriteStatus {
+ /// To be added.
Unset,
+ /// To be added.
ReadOnly,
+ /// To be added.
ReadWrite
}
@@ -275,18 +377,26 @@ public VTDataRateLimit (uint numberOfBytes, double seconds) : this ()
/// Image scaling options.
[MacCatalyst (13, 1)]
public enum VTScalingMode {
+ /// To be added.
Unset,
+ /// To be added.
Normal,
+ /// To be added.
CropSourceToCleanAperture,
+ /// To be added.
Letterbox,
+ /// To be added.
Trim
}
/// Chroma downsampling techniques.
[MacCatalyst (13, 1)]
public enum VTDownsamplingMode {
+ /// To be added.
Unset,
+ /// To be added.
Decimate,
+ /// To be added.
Average
}
diff --git a/src/VideoToolbox/VTPixelTransferProperties.cs b/src/VideoToolbox/VTPixelTransferProperties.cs
index e787d9596810..6dc2ddfb3001 100644
--- a/src/VideoToolbox/VTPixelTransferProperties.cs
+++ b/src/VideoToolbox/VTPixelTransferProperties.cs
@@ -23,6 +23,9 @@
namespace VideoToolbox {
public partial class VTPixelTransferProperties : DictionaryContainer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTScalingMode ScalingMode {
get {
var key = GetNSStringValue (VTPixelTransferPropertyKeys.ScalingMode);
@@ -60,6 +63,9 @@ public VTScalingMode ScalingMode {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTDownsamplingMode DownsamplingMode {
get {
var key = GetNSStringValue (VTPixelTransferPropertyKeys.DownsamplingMode);
@@ -88,6 +94,9 @@ public VTDownsamplingMode DownsamplingMode {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -131,6 +140,9 @@ public VTColorPrimaries DestinationColorPrimaries {
}
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
@@ -168,6 +180,9 @@ public VTTransferFunction DestinationTransferFunction {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTYCbCrMatrix DestinationYCbCrMatrix {
get {
var key = GetNSStringValue (VTPixelTransferPropertyKeys.DestinationYCbCrMatrix);
diff --git a/src/VideoToolbox/VTPropertyOptions.cs b/src/VideoToolbox/VTPropertyOptions.cs
index be723941393b..a272b834ed90 100644
--- a/src/VideoToolbox/VTPropertyOptions.cs
+++ b/src/VideoToolbox/VTPropertyOptions.cs
@@ -21,6 +21,9 @@
namespace VideoToolbox {
public partial class VTPropertyOptions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTPropertyType Type {
get {
var key = GetNSStringValue (VTPropertyKeys.Type);
@@ -53,6 +56,9 @@ public VTPropertyType Type {
}
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public VTReadWriteStatus ReadWriteStatus {
get {
var key = GetNSStringValue (VTPropertyKeys.ReadWriteStatus);
diff --git a/src/VideoToolbox/VTVideoEncoder.cs b/src/VideoToolbox/VTVideoEncoder.cs
index 5ffa6bf2acdb..70cedad4941f 100644
--- a/src/VideoToolbox/VTVideoEncoder.cs
+++ b/src/VideoToolbox/VTVideoEncoder.cs
@@ -47,10 +47,25 @@ public class VTVideoEncoder {
return ret;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
public int CodecType { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string CodecName { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string DisplayName { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string EncoderId { get; private set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string EncoderName { get; private set; }
#if NET
@@ -268,7 +283,13 @@ internal VTVideoEncoder (NSDictionary dict)
[SupportedOSPlatform ("maccatalyst")]
#endif
public class VTSupportedEncoderProperties {
+ /// To be added.
+ /// To be added.
+ /// To be added.
public string? EncoderId { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
public NSDictionary? SupportedProperties { get; set; }
}
}
diff --git a/src/addressbookui.cs b/src/addressbookui.cs
index 9de7fe206f57..592f8de2b0fb 100644
--- a/src/addressbookui.cs
+++ b/src/addressbookui.cs
@@ -26,6 +26,7 @@ namespace AddressBookUI {
///
/// Apple documentation for ABNewPersonViewController
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[BaseType (typeof (UIViewController))]
interface ABNewPersonViewController {
[Export ("initWithNibName:bundle:")]
@@ -52,6 +53,7 @@ interface ABNewPersonViewController {
///
/// Apple documentation for ABNewPersonViewControllerDelegate
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[BaseType (typeof (NSObject))]
[Model]
[Protocol]
@@ -67,6 +69,7 @@ interface IABNewPersonViewControllerDelegate { }
///
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[BaseType (typeof (UINavigationController))]
interface ABPeoplePickerNavigationController : UIAppearance {
[Export ("initWithNibName:bundle:")]
@@ -108,6 +111,7 @@ interface ABPeoplePickerNavigationController : UIAppearance {
///
/// Apple documentation for ABPeoplePickerNavigationControllerDelegate
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[BaseType (typeof (NSObject))]
[Model]
[Protocol]
@@ -142,6 +146,7 @@ interface IABPeoplePickerNavigationControllerDelegate { }
///
/// Apple documentation for ABPersonViewController
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[BaseType (typeof (UIViewController))]
interface ABPersonViewController : UIViewControllerRestoration {
[Export ("initWithNibName:bundle:")]
@@ -185,6 +190,7 @@ interface ABPersonViewController : UIViewControllerRestoration {
///
/// and ).
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[Static]
interface ABPersonPredicateKey {
[Field ("ABPersonBirthdayProperty")]
@@ -261,6 +267,7 @@ interface ABPersonPredicateKey {
///
/// Apple documentation for ABPersonViewControllerDelegate
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[BaseType (typeof (NSObject))]
[Model]
[Protocol]
@@ -279,6 +286,7 @@ interface IABPersonViewControllerDelegate { }
///
/// Apple documentation for ABUnknownPersonViewController
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[BaseType (typeof (UIViewController))]
interface ABUnknownPersonViewController {
[Export ("initWithNibName:bundle:")]
@@ -317,6 +325,7 @@ interface ABUnknownPersonViewController {
///
/// Apple documentation for ABUnknownPersonViewControllerDelegate
[Deprecated (PlatformName.iOS, 9, 0, message: "Use the 'Contacts' API instead.")]
+ [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'Contacts' API instead.")]
[BaseType (typeof (NSObject))]
[Model]
[Protocol]
diff --git a/src/adsupport.cs b/src/adsupport.cs
index 139027cb468d..364a44e4d3b6 100644
--- a/src/adsupport.cs
+++ b/src/adsupport.cs
@@ -29,6 +29,11 @@ interface ASIdentifierManager {
[Static]
ASIdentifierManager SharedManager { get; }
+ /// Whether advertising tracking is allowed by the user.
+ /// The value is determined by the user in the system Privacy settings.
+ ///
+ /// Unlike most other privacy settings, there is not a system-provided dialog that application's can call to ask user's to switch this value. If an application wishes to switch this value, they must provide the user directions on manipulating the system Privacy settings. (Settings application: Privacy / Advertising dialogs)
+ ///
[Deprecated (PlatformName.iOS, 14, 0, message: "Use 'ATTrackingManager.AppTrackingTransparency' instead.")]
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use 'ATTrackingManager.AppTrackingTransparency' instead.")]
[Deprecated (PlatformName.TvOS, 14, 0, message: "Use 'ATTrackingManager.AppTrackingTransparency' instead.")]
diff --git a/src/audiounit.cs b/src/audiounit.cs
index f8a1c0272fc7..f89209e339fa 100644
--- a/src/audiounit.cs
+++ b/src/audiounit.cs
@@ -137,32 +137,71 @@ interface AUAudioUnit {
[Async]
void FromComponentDescription (AudioComponentDescription componentDescription, AudioComponentInstantiationOptions options, Action completionHandler);
+ /// Gets the component from the description with which the audio unit was created.
+ /// To be added.
+ /// To be added.
[Export ("componentDescription")]
AudioComponentDescription ComponentDescription { get; }
+ /// Gets the render block that is used for rendering audio.
+ /// To be added.
+ /// To be added.
[Export ("renderBlock")]
AURenderBlock RenderBlock { get; }
+ /// Gets the developer-provided block that performs audio rendering.
+ /// To be added.
+ /// To be added.
[Export ("internalRenderBlock")]
AUInternalRenderBlock InternalRenderBlock { get; }
// @property (readonly, nonatomic) AudioComponent __nonnull component;
+ /// Gets the component from the description with which the audio unit was created.
+ /// To be added.
+ /// To be added.
[Export ("component")]
unsafe AudioComponent Component { get; }
+ /// Gets the audio units component name.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("componentName")]
string ComponentName { get; }
+ /// Gets the name of the audio unit.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("audioUnitName")]
string AudioUnitName { get; }
+ /// Gets the manufacturer name for the audio unit.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("manufacturerName")]
string ManufacturerName { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("audioUnitShortName")]
string ShortName { get; }
+ /// Gets the version of the audio unit.
+ /// To be added.
+ /// To be added.
[Export ("componentVersion")]
uint ComponentVersion { get; }
@@ -172,18 +211,30 @@ interface AUAudioUnit {
[Export ("deallocateRenderResources")]
void DeallocateRenderResources ();
+ /// Gets a Boolean value that tells whether rendering resources have been allocated.
+ /// To be added.
+ /// To be added.
[Export ("renderResourcesAllocated")]
bool RenderResourcesAllocated { get; }
[Export ("reset")]
void Reset ();
+ /// Gets an array that contains the input connections for the audio unit.
+ /// To be added.
+ /// To be added.
[Export ("inputBusses")]
AUAudioUnitBusArray InputBusses { get; }
+ /// Gets an array that contains the output connections for the audio unit.
+ /// To be added.
+ /// To be added.
[Export ("outputBusses")]
AUAudioUnitBusArray OutputBusses { get; }
+ /// Block that schedules parameters.
+ /// To be added.
+ /// To be added.
[Export ("scheduleParameterBlock")]
AUScheduleParameterBlock ScheduleParameterBlock { get; }
@@ -202,6 +253,9 @@ interface AUAudioUnit {
// [NullAllowed, Export ("musicalContextBlock", ArgumentSemantic.Copy)]
// AUHostMusicalContextBlock MusicalContextBlock { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("MIDIOutputNames", ArgumentSemantic.Copy)]
string [] MidiOutputNames { get; }
@@ -222,23 +276,47 @@ interface AUAudioUnit {
// [Export ("hostMIDIProtocol", ArgumentSemantic.Assign)]
// MIDIProtocolID HostMIDIProtocol { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("providesUserInterface")]
bool ProvidesUserInterface { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("MIDIOutputEventBlock", ArgumentSemantic.Copy)]
AUMidiOutputEventBlock MidiOutputEventBlock { get; set; }
+ /// A delegate block that provides information about its transport state.
+ ///
+ /// Developers may optionally assign an instance of the delegate to thi property so that they can call it at the beginning of render cycles to get the transport state at the cycle start.
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("transportStateBlock", ArgumentSemantic.Copy)]
AUHostTransportStateBlock TransportStateBlock { get; set; }
[Export ("removeRenderObserver:")]
void RemoveRenderObserver (nint token);
+ /// Gets or sets the maximum number of audio frames to render simultaneously.
+ /// To be added.
+ /// To be added.
[Export ("maximumFramesToRender")]
uint MaximumFramesToRender { get; set; }
+ /// Gets or sets the entire tree of output parameters.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("parameterTree")]
AUParameterTree ParameterTree {
@@ -251,57 +329,129 @@ AUParameterTree ParameterTree {
[Export ("parametersForOverviewWithCount:")]
NSNumber [] GetParametersForOverview (nint count);
+ /// Gets a special value that is required for key-value observing notifications
+ /// To be added.
+ /// To be added.
[Export ("allParameterValues")]
bool AllParameterValues { get; }
+ /// Gets a value that is if the audio unit is either a music device or an effect.
+ /// To be added.
+ /// To be added.
[Export ("musicDeviceOrEffect")]
bool MusicDeviceOrEffect { [Bind ("isMusicDeviceOrEffect")] get; }
+ /// Gets the number of virtual MIDI cables that are implemented by the device or effect.
+ /// To be added.
+ /// To be added.
[Export ("virtualMIDICableCount")]
nint VirtualMidiCableCount { get; }
// @property (copy, nonatomic) NSDictionary * __nullable fullState;
+ /// Gets or sets the snapshot of the audio unit's entire state, for saving presets.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("fullState", ArgumentSemantic.Copy)]
NSDictionary FullState { get; set; }
// @property (copy, nonatomic) NSDictionary * __nullable fullStateForDocument;
+ /// Gets or sets the snapshot of the audio unit's entire state, for saving in a document.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("fullStateForDocument", ArgumentSemantic.Copy)]
NSDictionary FullStateForDocument { get; set; }
+ /// Gets the factory presets for the audio unit.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("factoryPresets", ArgumentSemantic.Copy)]
AUAudioUnitPreset [] FactoryPresets { get; }
+ /// Gets the most recently selected preset.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("currentPreset", ArgumentSemantic.Retain)]
AUAudioUnitPreset CurrentPreset { get; set; }
+ /// Gets the latency of the audio unit, in seconds
+ /// To be added.
+ /// To be added.
[Export ("latency")]
double Latency { get; }
+ /// Gets the tail time, in seconds, of the audio unit.
+ /// To be added.
+ /// To be added.
[Export ("tailTime")]
double TailTime { get; }
+ /// Gets or sets the rendering quality, a value in [0,127].
+ /// To be added.
+ /// To be added.
[Export ("renderQuality", ArgumentSemantic.Assign)]
nint RenderQuality { get; set; }
+ /// Gets or sets a Boolean value that contols whether an effect should skip processing and go directly to the output.
+ /// To be added.
+ /// To be added.
[Export ("shouldBypassEffect")]
bool ShouldBypassEffect { get; set; }
+ /// Gets a Boolean value that tells whether the audio unit can transform input to output without allocating a new buffer.
+ /// To be added.
+ /// To be added.
[Export ("canProcessInPlace")]
bool CanProcessInPlace { get; }
+ /// Gets or sets a Boolean value that controls whether the audio unit is currently rendering offline.
+ /// To be added.
+ /// To be added.
[Export ("renderingOffline")]
bool RenderingOffline { [Bind ("isRenderingOffline")] get; set; }
+ /// Gets an array that describes valid combinations of input and output channels.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("channelCapabilities", ArgumentSemantic.Copy)]
NSNumber [] ChannelCapabilities { get; }
+ /// Gets the name of the context to which the audio unit is connected.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("contextName")]
string ContextName { get; set; }
+ /// Gets a Boolean values that tells whether MPE audio is supported.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("supportsMPE")]
bool SupportsMpe { get; }
+ /// Gets or sets the channel map.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("channelMap"), NullAllowed]
NSNumber [] ChannelMap { get; set; }
@@ -319,12 +469,17 @@ AUParameterTree ParameterTree {
[Export ("shouldChangeToFormat:forBus:")]
bool ShouldChangeToFormat (AVAudioFormat format, AUAudioUnitBus bus);
+ ///
[Notification, Field ("kAudioComponentRegistrationsChangedNotification")]
NSString AudioComponentRegistrationsChangedNotification { get; }
+ ///
[Notification, Field ("kAudioComponentInstanceInvalidationNotification")]
NSString AudioComponentInstanceInvalidationNotification { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("MIDIOutputBufferSizeHint")]
nint MidiOutputBufferSizeHint { get; set; }
@@ -557,9 +712,15 @@ interface AUAudioUnitBusArray : INSFastEnumeration {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
interface AUAudioUnitPreset : NSSecureCoding {
+ /// Gets or sets a unique identifier for the preset.
+ /// The unique identifier for the preset.
+ /// To be added.
[Export ("number", ArgumentSemantic.Assign)]
nint Number { get; set; }
+ /// Gets or sets the name of the preset.
+ /// The name of the preset.
+ /// To be added.
[Export ("name")]
string Name { get; set; }
}
@@ -570,30 +731,66 @@ interface AUAudioUnitPreset : NSSecureCoding {
[MacCatalyst (13, 1)]
[BaseType (typeof (AUParameterNode))]
interface AUParameter : NSSecureCoding {
+ /// Gets the parameter's minimum value.
+ /// The parameter's minimum value.
+ /// To be added.
[Export ("minValue")]
float MinValue { get; }
+ /// Gets the parameter's maximum value.
+ /// The parameter's maximum value.
+ /// To be added.
[Export ("maxValue")]
float MaxValue { get; }
+ /// Gets the unit of measurement for the value of the parameter.
+ /// The unit of measurement for the value of the parameter.
+ /// To be added.
[Export ("unit")]
AudioUnitParameterUnit Unit { get; }
+ /// Gets the localized unit of measurement for the value of the parameter.
+ ///
+ /// The localized unit of measurement for the value of the parameter.
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("unitName")]
string UnitName { get; }
+ /// Gets the parameter option flags for this parameter.
+ /// To be added.
+ /// To be added.
[Export ("flags")]
AudioUnitParameterOptions Flags { get; }
+ /// Gets the address (a non-persistent numerical identifier) for the parameter.
+ /// A non-persistent numeric identifier for the parameter.
+ /// To be added.
[Export ("address")]
ulong Address { get; }
+ /// Gets an array that contains allowable localized value names for the parameter.
+ ///
+ /// An array that contains allowable localized value names for the parameter.
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("valueStrings", ArgumentSemantic.Copy)]
string [] ValueStrings { get; }
+ /// Gets an array of addresses for parameters that may be changed when the developer changes this parameter.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("dependentParameters", ArgumentSemantic.Copy)]
NSNumber [] DependentParameters { get; }
+ /// Gets the current value of the parameter.
+ /// The current value of the parameter.
+ /// To be added.
[Export ("value")]
float Value { get; set; }
@@ -640,12 +837,21 @@ interface AUParameter : NSSecureCoding {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
interface AUParameterNode {
+ /// Gets the permanent unique identifier for the node.
+ /// The unique identifier for the node.
+ /// App developers must not change this property, as doing so will invalidate host documents between releases.
[Export ("identifier")]
string Identifier { get; }
+ /// Gets or sets the key path, the concatenation of the parameter's and its parents' identifiers.
+ /// The key path, the concatenation of the parameter's and its parents' identifiers.
+ /// To be added.
[Export ("keyPath")]
string KeyPath { get; }
+ /// Gets the localized display name for the node.
+ /// The localized display name for the node.
+ /// To be added.
[Export ("displayName")]
string DisplayName { get; }
@@ -666,12 +872,21 @@ interface AUParameterNode {
[Wrap ("new AUParameterObserverToken { ObserverToken = TokenByAddingParameterRecordingObserver (observer) }")]
AUParameterObserverToken CreateTokenByAddingParameterRecordingObserver (AUParameterRecordingObserver observer);
+ /// Gets or sets the that notifies the audio unit when a parameter value changes.
+ /// The that notifies the audio unit when a parameter value changes.
+ /// To be added.
[Export ("implementorValueObserver", ArgumentSemantic.Copy)]
AUImplementorValueObserver ImplementorValueObserver { get; set; }
+ /// Gets or sets the that updates stale parameter values.
+ /// The that updates stale parameter values.
+ /// To be added.
[Export ("implementorValueProvider", ArgumentSemantic.Copy)]
AUImplementorValueProvider ImplementorValueProvider { get; set; }
+ /// Gets or sets the callback that provides a parameter value when provided with a string representation of the value of the parameter.
+ /// The callback that provides a parameter value when provided with a string representation of the value of the parameter.
+ /// To be added.
[Export ("implementorValueFromStringCallback", ArgumentSemantic.Copy)]
AUImplementorValueFromStringCallback ImplementorValueFromStringCallback { get; set; }
@@ -681,9 +896,15 @@ interface AUParameterNode {
[Wrap ("RemoveParameterObserver (token.ObserverToken)")]
void RemoveParameterObserver (AUParameterObserverToken token);
+ /// Gets or sets the callback that provides a string representation of the value of the parameter.
+ /// The callback that provides the string representation of the value of the parameter.
+ /// To be added.
[Export ("implementorStringFromValueCallback", ArgumentSemantic.Copy),]
AUImplementorStringFromValueCallback ImplementorStringFromValueCallback { get; set; }
+ /// Callback for retrieving an abbreviated display name.
+ /// The possibly abbreviated name.
+ /// To be added.
[Export ("implementorDisplayNameWithLengthCallback", ArgumentSemantic.Copy)]
AUImplementorDisplayNameWithLengthCallback ImplementorDisplayNameWithLengthCallback { get; set; }
@@ -703,9 +924,15 @@ interface AUParameterNode {
[MacCatalyst (13, 1)]
[BaseType (typeof (AUParameterNode))]
interface AUParameterGroup : NSSecureCoding {
+ /// Gets an array of the child nodes in the parameter group.
+ /// An array of the child nodes in the parameter group.
+ /// To be added.
[Export ("children")]
AUParameterNode [] Children { get; }
+ /// Gets an array that contains all the parameters in the parameter group, including parameters in parameter group children.
+ /// An array that contains all the parameters in the parameter group, including parameters in parameter group children.
+ /// To be added.
[Export ("allParameters")]
AUParameter [] AllParameters { get; }
}
diff --git a/src/avfoundation.cs b/src/avfoundation.cs
index 3479fca03b7e..80a0602c0fc4 100644
--- a/src/avfoundation.cs
+++ b/src/avfoundation.cs
@@ -876,6 +876,9 @@ interface AVAudioChannelLayout : NSSecureCoding {
NativeHandle Constructor (nint /* This is really an IntPtr, but it conflicts with the default (Handle) ctor. */ layout);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("layoutTag")]
uint /* AudioChannelLayoutTag = UInt32 */ LayoutTag { get; }
@@ -1266,18 +1269,30 @@ interface AVAudioFormat : NSSecureCoding {
[Export ("initWithCMAudioFormatDescription:")]
NativeHandle Constructor (CMAudioFormatDescription formatDescription);
+ /// Gets a Boolean value that is true if the audio format is non-interleaved native-endian float values.
+ /// To be added.
+ /// To be added.
[Export ("standard")]
bool Standard { [Bind ("isStandard")] get; }
+ /// Gets the common format description.
+ /// To be added.
+ /// To be added.
[Export ("commonFormat")]
AVAudioCommonFormat CommonFormat { get; }
[Export ("channelCount")]
uint ChannelCount { get; } /* AVAudioChannelCount = uint32_t */
+ /// Gets the sampling rate in Hz.
+ /// To be added.
+ /// To be added.
[Export ("sampleRate")]
double SampleRate { get; }
+ /// Gets a Boolean value that tells whether the audio format is interleaved.
+ /// To be added.
+ /// To be added.
[Export ("interleaved")]
bool Interleaved { [Bind ("isInterleaved")] get; }
@@ -1285,12 +1300,24 @@ interface AVAudioFormat : NSSecureCoding {
[Export ("streamDescription")]
IntPtr _StreamDescription { get; }
+ /// Gets the channel layout.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("channelLayout"), NullAllowed]
AVAudioChannelLayout ChannelLayout { get; }
+ /// Gets a weak reference to a dictionary of audio format settings.
+ /// To be added.
+ /// To be added.
[Export ("settings")]
NSDictionary WeakSettings { get; }
+ /// Gets the audio format as a settings object.
+ /// To be added.
+ /// To be added.
[Wrap ("WeakSettings")]
AudioSettings Settings { get; }
@@ -1301,6 +1328,12 @@ interface AVAudioFormat : NSSecureCoding {
[Export ("isEqual:"), Internal]
bool IsEqual (NSObject obj);
+ /// Gets a specialized descripter, if required, that is needed to decompress the audio data.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("magicCookie", ArgumentSemantic.Retain)]
NSData MagicCookie { get; set; }
diff --git a/src/bgen/Enums.cs b/src/bgen/Enums.cs
index 7a262a0b3293..d2dcc7bded87 100644
--- a/src/bgen/Enums.cs
+++ b/src/bgen/Enums.cs
@@ -307,6 +307,22 @@ void GenerateEnum (Type type)
indent--;
print ("}");
+ // create a helper method that will be only used by the binding when they encounter a bindas attr for a smart enum with a nsstring
+ if (!isBackingFieldValueType) {
+ if (BindingTouch.SupportsXmlDocumentation) {
+ print ($"/// Retrieves the value represented by the backing field value in .");
+ print ($"/// The native handle with the name of the constant to retrieve.");
+ }
+
+ print ("public static {0} GetValueFromHandle ({1} handle)", type.Name, NativeHandleType);
+ print ("{");
+ indent++;
+ print ("using var str = Runtime.GetNSObject<{0}> (handle){1};", backingFieldTypeName, !nullable ? "!" : "");
+ print ("return GetValue (str);");
+ indent--;
+ print ("}");
+ }
+
if (BindingTouch.SupportsXmlDocumentation) {
print ($"/// Converts an array of enum values into an array of their corresponding constants.");
print ($"/// The array of enum values to convert.");
diff --git a/src/bgen/Generator.cs b/src/bgen/Generator.cs
index 2b791d79e6bd..e220f46e0e88 100644
--- a/src/bgen/Generator.cs
+++ b/src/bgen/Generator.cs
@@ -424,14 +424,11 @@ string GetToBindAsWrapper (MethodInfo mi, MemberInformation minfo = null, Parame
temp = string.Format ("{3}new NSNumber ({2}{1}{0});", denullify, parameterName, enumCast, nullCheck);
} else if (originalType == TypeCache.NSValue) {
var typeStr = string.Empty;
- if (!TypeCache.NSValueCreateMap.TryGetValue (retType, out typeStr)) {
- // HACK: These are problematic for X.M due to we do not ship System.Drawing for Full profile
- if (retType.Name == "RectangleF" || retType.Name == "SizeF" || retType.Name == "PointF")
- typeStr = retType.Name;
- else
- throw GetBindAsException ("box", retType.Name, originalType.Name, "container", minfo?.mi, pi);
+ if (TypeCache.NSValueCreateMap.TryGetValue (retType, out typeStr)) {
+ temp = string.Format ("{3}NSValue.From{0} ({2}{1});", typeStr, denullify, parameterName, nullCheck);
+ } else {
+ throw GetBindAsException ("box", retType.Name, originalType.Name, "container", minfo?.mi, pi);
}
- temp = string.Format ("{3}NSValue.From{0} ({2}{1});", typeStr, denullify, parameterName, nullCheck);
} else if (originalType == TypeCache.NSString && IsSmartEnum (retType)) {
temp = isNullable ? $"{parameterName} is null ? null : " : string.Empty;
temp += $"{TypeManager.FormatType (retType.DeclaringType, retType)}Extensions.GetConstant ({parameterName}{denullify});";
@@ -452,13 +449,11 @@ string GetToBindAsWrapper (MethodInfo mi, MemberInformation minfo = null, Parame
valueConverter = $"new NSNumber ({cast}o{denullify}), {parameterName});";
} else if (arrType == TypeCache.NSValue && !isNullable) {
var typeStr = string.Empty;
- if (!TypeCache.NSValueCreateMap.TryGetValue (arrRetType, out typeStr)) {
- if (arrRetType.Name == "RectangleF" || arrRetType.Name == "SizeF" || arrRetType.Name == "PointF")
- typeStr = retType.Name;
- else
- throw GetBindAsException ("box", arrRetType.Name, originalType.Name, "array", minfo?.mi, pi);
+ if (TypeCache.NSValueCreateMap.TryGetValue (arrRetType, out typeStr)) {
+ valueConverter = $"NSValue.From{typeStr} (o{denullify}), {parameterName});";
+ } else {
+ throw GetBindAsException ("box", arrRetType.Name, originalType.Name, "array", minfo?.mi, pi);
}
- valueConverter = $"NSValue.From{typeStr} (o{denullify}), {parameterName});";
} else
throw new BindingException (1048, true, isNullable ? arrRetType.Name + "?[]" : retType.Name);
temp = $"NSArray.FromNSObjects (o => {valueConverter}";
@@ -498,15 +493,12 @@ string GetFromBindAsWrapper (MemberInformation minfo, out string suffix)
if (isNullable)
append = $"?{append}";
} else if (originalReturnType == TypeCache.NSValue) {
- if (!TypeManager.NSValueReturnMap.TryGetValue (retType, out append)) {
- // HACK: These are problematic for X.M due to we do not ship System.Drawing for Full profile
- if (retType.Name == "RectangleF" || retType.Name == "SizeF" || retType.Name == "PointF")
- append = $".{retType.Name}Value";
- else
- throw GetBindAsException ("unbox", retType.Name, originalReturnType.Name, "container", minfo.mi);
+ if (TypeManager.NSValueReturnMap.TryGetValue (retType, out append)) {
+ if (isNullable)
+ append = $"?{append}";
+ } else {
+ throw GetBindAsException ("unbox", retType.Name, originalReturnType.Name, "container", minfo.mi);
}
- if (isNullable)
- append = $"?{append}";
} else if (originalReturnType == TypeCache.NSString && IsSmartEnum (retType)) {
append = $"{TypeManager.FormatType (retType.DeclaringType, retType)}Extensions.GetValue (";
suffix = ")";
@@ -517,7 +509,7 @@ string GetFromBindAsWrapper (MemberInformation minfo, out string suffix)
var arrRetType = arrIsNullable ? nullableElementType : retType.GetElementType ();
var valueFetcher = string.Empty;
if (arrType == TypeCache.NSString && !arrIsNullable)
- append = $"ptr => {{\n\tusing (var str = Runtime.GetNSObject (ptr)!) {{\n\t\treturn {TypeManager.FormatType (arrRetType.DeclaringType, arrRetType)}Extensions.GetValue (str);\n\t}}\n}}";
+ append = $"{TypeManager.FormatType (arrRetType.DeclaringType, arrRetType)}Extensions.GetValueFromHandle";
else if (arrType == TypeCache.NSNumber && !arrIsNullable) {
if (arrRetType.IsEnum) {
// get the underlying type of the enum and use a callback with the appropiate one
@@ -532,12 +524,11 @@ string GetFromBindAsWrapper (MemberInformation minfo, out string suffix)
} else
throw GetBindAsException ("unbox", retType.Name, arrType.Name, "array", minfo.mi);
} else if (arrType == TypeCache.NSValue && !arrIsNullable) {
- if (arrRetType.Name == "RectangleF" || arrRetType.Name == "SizeF" || arrRetType.Name == "PointF")
- valueFetcher = $"{(arrIsNullable ? "?" : string.Empty)}.{arrRetType.Name}Value";
- else if (!TypeManager.NSValueReturnMap.TryGetValue (arrRetType, out valueFetcher))
+ if (TypeManager.NSValueReturnMap.TryGetValue (arrRetType, out valueFetcher)) {
+ append = string.Format ("ptr => {{\n\tusing (var val = Runtime.GetNSObject (ptr)!) {{\n\t\treturn val{0};\n\t}}\n}}", valueFetcher);
+ } else {
throw GetBindAsException ("unbox", retType.Name, arrType.Name, "array", minfo.mi);
-
- append = string.Format ("ptr => {{\n\tusing (var val = Runtime.GetNSObject (ptr)!) {{\n\t\treturn val{0};\n\t}}\n}}", valueFetcher);
+ }
} else
throw new BindingException (1048, true, arrIsNullable ? arrRetType.Name + "?[]" : retType.Name);
} else
@@ -2137,12 +2128,6 @@ void GenerateEventArgsFile ()
print (GenerateNSNumber ("", "DoubleValue"));
else if (propertyType == TypeCache.System_Float)
print (GenerateNSNumber ("", "FloatValue"));
- else if (fullname == "System.Drawing.PointF")
- print (GenerateNSValue ("PointFValue"));
- else if (fullname == "System.Drawing.SizeF")
- print (GenerateNSValue ("SizeFValue"));
- else if (fullname == "System.Drawing.RectangleF")
- print (GenerateNSValue ("RectangleFValue"));
else if (fullname == "CoreGraphics.CGPoint")
print (GenerateNSValue ("CGPointValue"));
else if (fullname == "CoreGraphics.CGSize")
@@ -6341,8 +6326,6 @@ public void Generate (Type type)
print ("return Dlfcn.GetIntPtr (Libraries.{2}.Handle, \"{1}\");", field_pi.Name, fieldAttr.SymbolName, library_name);
} else if (field_pi.PropertyType == TypeCache.System_UIntPtr) {
print ("return Dlfcn.GetUIntPtr (Libraries.{2}.Handle, \"{1}\");", field_pi.Name, fieldAttr.SymbolName, library_name);
- } else if (field_pi.PropertyType.FullName == "System.Drawing.SizeF") {
- print ("return Dlfcn.GetSizeF (Libraries.{2}.Handle, \"{1}\");", field_pi.Name, fieldAttr.SymbolName, library_name);
} else if (field_pi.PropertyType == TypeCache.System_Int64) {
print ("return Dlfcn.GetInt64 (Libraries.{2}.Handle, \"{1}\");", field_pi.Name, fieldAttr.SymbolName, library_name);
} else if (field_pi.PropertyType == TypeCache.System_UInt64) {
@@ -6427,8 +6410,6 @@ public void Generate (Type type)
print ("Dlfcn.SetIntPtr (Libraries.{2}.Handle, \"{1}\", value);", field_pi.Name, fieldAttr.SymbolName, library_name);
} else if (field_pi.PropertyType == TypeCache.System_UIntPtr) {
print ("Dlfcn.SetUIntPtr (Libraries.{2}.Handle, \"{1}\", value);", field_pi.Name, fieldAttr.SymbolName, library_name);
- } else if (field_pi.PropertyType.FullName == "System.Drawing.SizeF") {
- print ("Dlfcn.SetSizeF (Libraries.{2}.Handle, \"{1}\", value);", field_pi.Name, fieldAttr.SymbolName, library_name);
} else if (field_pi.PropertyType == TypeCache.System_Int64) {
print ("Dlfcn.SetInt64 (Libraries.{2}.Handle, \"{1}\", value);", field_pi.Name, fieldAttr.SymbolName, library_name);
} else if (field_pi.PropertyType == TypeCache.System_UInt64) {
@@ -7501,9 +7482,6 @@ object GetDefaultValue (MethodInfo mi)
var type = def as Type;
if (type is not null && (
- type.FullName == "System.Drawing.PointF" ||
- type.FullName == "System.Drawing.SizeF" ||
- type.FullName == "System.Drawing.RectangleF" ||
type.FullName == "CoreGraphics.CGPoint" ||
type.FullName == "CoreGraphics.CGSize" ||
type.FullName == "CoreGraphics.CGRect"))
diff --git a/src/contactsui.cs b/src/contactsui.cs
index e4bafaa3c6aa..19635b0e5799 100644
--- a/src/contactsui.cs
+++ b/src/contactsui.cs
@@ -130,11 +130,17 @@ interface CNContactViewController {
#endif
NativeHandle Constructor ([NullAllowed] string nibName, [NullAllowed] NSBundle bundle);
+ /// Describes all the keys that must be fetched for display in a . For use with .
+ /// To be added.
+ /// To be added.
[Static]
[Export ("descriptorForRequiredKeys")]
ICNKeyDescriptor DescriptorForRequiredKeys { get; }
#if MONOMAC
+ /// The that is displayed.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("contact", ArgumentSemantic.Copy)]
#else
@@ -258,9 +264,15 @@ interface CNContactViewControllerDelegate {
[NoMacCatalyst]
[BaseType (typeof (NSObject))]
interface CNContactPicker {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("displayedKeys", ArgumentSemantic.Copy)]
string [] DisplayedKeys { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("delegate", ArgumentSemantic.Weak)]
ICNContactPickerDelegate Delegate { get; set; }
diff --git a/src/coreanimation.cs b/src/coreanimation.cs
index 701e61be1182..0759c63aef66 100644
--- a/src/coreanimation.cs
+++ b/src/coreanimation.cs
@@ -118,6 +118,9 @@ interface ICAMediaTiming { }
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
interface CAConstraintLayoutManager : NSCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Export ("layoutManager")]
CAConstraintLayoutManager LayoutManager { get; }
@@ -128,15 +131,27 @@ interface CAConstraintLayoutManager : NSCoding {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
interface CAConstraint : NSSecureCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("attribute")]
CAConstraintAttribute Attribute { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sourceName")]
string SourceName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sourceAttribute")]
CAConstraintAttribute SourceAttribute { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scale")]
nfloat Scale { get; }
@@ -180,12 +195,38 @@ interface CADisplayLink {
[Export ("invalidate")]
void Invalidate ();
+ /// Timestamp for the last frame displayed.
+ ///
+ ///
+ ///
+ /// Developers can this value to compute which date should be displayed next.
+ ///
[Export ("timestamp")]
double Timestamp { get; }
+ /// Whether the notifications between the animation loop and your code are suspended.
+ /// To be added.
+ /// To be added.
[Export ("paused")]
bool Paused { [Bind ("isPaused")] get; set; }
+ /// Developers should not use this deprecated property. Developers should use 'PreferredFramesPerSecond' property.
+ /// To be added.
+ ///
+ ///
+ /// The default value is one, which means that your code is
+ /// invoked once each time that a screen refresh will take
+ /// place. If you set this value to two, then your method will
+ /// only be invoked half the time (once every two frames) and so
+ /// on.
+ ///
+ ///
+ /// In general, you should not skip frames. If your software
+ /// can not keep up with the frame rate, it is better to
+ /// increase the frame interval and deliver a consistent set
+ /// of updates.
+ ///
+ ///
[Obsoleted (PlatformName.iOS, 10, 0, message: "Use 'PreferredFramesPerSecond' property.")]
[Obsoleted (PlatformName.TvOS, 10, 0, message: "Use 'PreferredFramesPerSecond' property.")]
[Obsoleted (PlatformName.MacCatalyst, 13, 1, message: "Use 'PreferredFramesPerSecond' property.")]
@@ -193,13 +234,22 @@ interface CADisplayLink {
[Export ("frameInterval")]
nint FrameInterval { get; set; }
+ /// The time between screen refreshes.
+ /// To be added.
+ /// To be added.
[Export ("duration")]
double Duration { get; }
+ /// Gets the time stamp for the desired time to start displaying the target of the display link.
+ /// The time stamp for the desired time to start displaying the target of the display link.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("targetTimestamp")]
double TargetTimestamp { get; }
+ /// Gets or sets the preferred display rate.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 15, 0, message: "Use 'PreferredFrameRateRange' property.")]
[Deprecated (PlatformName.TvOS, 15, 0, message: "Use 'PreferredFrameRateRange' property.")]
[MacCatalyst (13, 1)]
@@ -215,10 +265,13 @@ interface CADisplayLink {
[MacCatalyst (13, 1)]
enum CAContentsFormat {
+ /// To be added.
[Field ("kCAContentsFormatGray8Uint")]
Gray8Uint,
+ /// To be added.
[Field ("kCAContentsFormatRGBA8Uint")]
Rgba8Uint,
+ /// To be added.
[Field ("kCAContentsFormatRGBA16Float")]
Rgba16Float,
}
@@ -932,15 +985,19 @@ CAScroll ScrollMode {
/// Enumerates scrolling directions.
enum CAScroll {
+ /// Neither vertical nor horizontal scrolling.
[Field ("kCAScrollNone")]
None,
+ /// Vertical scrolling.
[Field ("kCAScrollVertically")]
Vertically,
+ /// Horizontal scrolling.
[Field ("kCAScrollHorizontally")]
Horizontally,
+ /// Both vertical and horizontal scrolling.
[Field ("kCAScrollBoth")]
Both,
}
@@ -1069,32 +1126,41 @@ interface CATransformLayer {
}
enum CATextLayerTruncationMode {
+ /// To be added.
[Field ("kCATruncationNone")]
None,
+ /// To be added.
[Field ("kCATruncationStart")]
Start,
+ /// To be added.
[Field ("kCATruncationMiddle")]
Middle,
+ /// To be added.
[Field ("kCATruncationEnd")]
End,
}
enum CATextLayerAlignmentMode {
+ /// To be added.
[Field ("kCAAlignmentLeft")]
Left,
+ /// To be added.
[Field ("kCAAlignmentRight")]
Right,
+ /// To be added.
[Field ("kCAAlignmentCenter")]
Center,
+ /// To be added.
[Field ("kCAAlignmentJustified")]
Justified,
+ /// To be added.
[Field ("kCAAlignmentNatural")]
Natural,
}
@@ -1126,6 +1192,12 @@ interface CATextLayer {
[Export ("layer"), New, Static]
CALayer Create ();
+ /// Gets the text that will be rendered.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("string", ArgumentSemantic.Copy)]
string String { get; set; }
@@ -1136,23 +1208,38 @@ interface CATextLayer {
[Export ("string", ArgumentSemantic.Copy)]
IntPtr _AttributedString { get; set; }
+ /// Gets or sets the font size.
+ /// To be added.
+ /// To be added.
[Export ("fontSize")]
nfloat FontSize { get; set; }
[Export ("font"), Internal]
IntPtr _Font { get; set; }
+ /// Gets or sets the foreground color.
+ /// To be added.
+ /// To be added.
[Export ("foregroundColor")]
[NullAllowed]
CGColor ForegroundColor { get; set; }
+ /// Gets or sets a Boolean value that controls whether to wrap text to the bounds of the layer.
+ /// To be added.
+ /// To be added.
[Export ("wrapped")]
bool Wrapped { [Bind ("isWrapped")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Protected]
[Export ("truncationMode", ArgumentSemantic.Copy)]
NSString WeakTruncationMode { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Protected]
[Export ("alignmentMode", ArgumentSemantic.Copy)]
NSString WeakAlignmentMode { get; set; }
@@ -1204,6 +1291,9 @@ interface CATextLayer {
NSString AlignmentJustified { get; }
#endif // !NET
+ /// Gets or sets a Boolean value that controls whether subpixel quantization is allowed.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("allowsFontSubpixelQuantization")]
bool AllowsFontSubpixelQuantization { get; set; }
@@ -1314,20 +1404,43 @@ interface CAAnimation : CAAction, CAMediaTiming, NSSecureCoding, NSMutableCopyin
[return: NullAllowed]
NSObject DefaultValue (string key);
+ /// The timing function used to compute the animation.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("timingFunction", ArgumentSemantic.Strong)]
CAMediaTimingFunction TimingFunction { get; set; }
#if NET
// before that we need to be wrap this manually to avoid the BI1110 error
+ /// An instance of the CoreAnimation.CAAnimationDelegate model class which acts as the class delegate.
+ /// The instance of the CoreAnimation.CAAnimationDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
ICAAnimationDelegate Delegate { get; set; }
#endif
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
[Export ("delegate", ArgumentSemantic.Strong)]
[NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// Whether the animation is removed from the layer on completion.
+ /// To be added.
+ /// To be added.
[Export ("removedOnCompletion")]
bool RemovedOnCompletion { [Bind ("isRemovedOnCompletion")] get; set; }
@@ -1340,31 +1453,67 @@ interface CAAnimation : CAAction, CAMediaTiming, NSSecureCoding, NSMutableCopyin
[Export ("shouldArchiveValueForKey:")]
bool ShouldArchiveValueForKey (string key);
+ /// Represents the value associated with the constant kCATransitionFade
+ ///
+ ///
+ /// To be added.
[Field ("kCATransitionFade")]
NSString TransitionFade { get; }
+ /// Represents the value associated with the constant kCATransitionMoveIn
+ ///
+ ///
+ /// To be added.
[Field ("kCATransitionMoveIn")]
NSString TransitionMoveIn { get; }
+ /// Represents the value associated with the constant kCATransitionPush
+ ///
+ ///
+ /// To be added.
[Field ("kCATransitionPush")]
NSString TransitionPush { get; }
+ /// Represents the value associated with the constant kCATransitionReveal
+ ///
+ ///
+ /// To be added.
[Field ("kCATransitionReveal")]
NSString TransitionReveal { get; }
+ /// Represents the value associated with the constant kCATransitionFromRight
+ ///
+ ///
+ /// To be added.
[Field ("kCATransitionFromRight")]
NSString TransitionFromRight { get; }
+ /// Represents the value associated with the constant kCATransitionFromLeft
+ ///
+ ///
+ /// To be added.
[Field ("kCATransitionFromLeft")]
NSString TransitionFromLeft { get; }
+ /// Represents the value associated with the constant kCATransitionFromTop
+ ///
+ ///
+ /// To be added.
[Field ("kCATransitionFromTop")]
NSString TransitionFromTop { get; }
+ /// Represents the value associated with the constant kCATransitionFromBottom
+ ///
+ ///
+ /// To be added.
[Field ("kCATransitionFromBottom")]
NSString TransitionFromBottom { get; }
/* 'calculationMode' strings. */
+ /// Represents the value associated with the constant kCAAnimationLinear
+ ///
+ ///
+ /// To be added.
[Field ("kCAAnimationLinear")]
NSString AnimationLinear { get; }
@@ -1373,22 +1522,45 @@ interface CAAnimation : CAAction, CAMediaTiming, NSSecureCoding, NSMutableCopyin
[Obsolete ("The name has been fixed, use 'AnimationDiscrete' instead.")]
NSString AnimationDescrete { get; }
#endif
+ /// Represents the value associated with the constant kCAAnimationDiscrete
+ /// To be added.
+ /// To be added.
[Field ("kCAAnimationDiscrete")]
NSString AnimationDiscrete { get; }
+ /// Represents the value associated with the constant kCAAnimationPaced
+ ///
+ ///
+ /// To be added.
[Field ("kCAAnimationPaced")]
NSString AnimationPaced { get; }
+ /// Represents the value associated with the constant kCAAnimationCubic
+ ///
+ ///
+ /// To be added.
[Field ("kCAAnimationCubic")]
NSString AnimationCubic { get; }
+ /// Represents the value associated with the constant kCAAnimationCubicPaced
+ ///
+ ///
+ /// To be added.
[Field ("kCAAnimationCubicPaced")]
NSString AnimationCubicPaced { get; }
/* 'rotationMode' strings. */
+ /// Represents the value associated with the constant kCAAnimationRotateAuto
+ ///
+ ///
+ /// To be added.
[Field ("kCAAnimationRotateAuto")]
NSString RotateModeAuto { get; }
+ /// Represents the value associated with the constant kCAAnimationRotateAutoReverse
+ ///
+ ///
+ /// To be added.
[Field ("kCAAnimationRotateAutoReverse")]
NSString RotateModeAutoReverse { get; }
@@ -1399,18 +1571,33 @@ interface CAAnimation : CAAction, CAMediaTiming, NSSecureCoding, NSMutableCopyin
[Export ("animationWithSCNAnimation:")]
CAAnimation FromSCNAnimation (SCNAnimation animation);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("usesSceneTimeBase")]
bool UsesSceneTimeBase { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("fadeInDuration")]
nfloat FadeInDuration { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("fadeOutDuration")]
nfloat FadeOutDuration { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed] // by default this property is null
[Export ("animationEvents", ArgumentSemantic.Retain)]
@@ -1479,6 +1666,12 @@ interface CABasicAnimation {
[Sealed]
IntPtr _From { get; set; }
+ /// Initial value for the property to animate.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("fromValue", ArgumentSemantic.Strong)]
[NullAllowed]
NSObject From { get; set; }
@@ -1488,6 +1681,13 @@ interface CABasicAnimation {
[Sealed]
IntPtr _To { get; set; }
+ /// Destination value for the property to animate.
+ ///
+ /// Final value that the property will have.
+ /// This value can be .
+ ///
+ ///
+ ///
[Export ("toValue", ArgumentSemantic.Strong)]
[NullAllowed]
NSObject To { get; set; }
@@ -1497,6 +1697,12 @@ interface CABasicAnimation {
[Sealed]
IntPtr _By { get; set; }
+ /// Value to increment by.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("byValue", ArgumentSemantic.Strong)]
[NullAllowed]
NSObject By { get; set; }
@@ -1552,6 +1758,24 @@ interface CAKeyFrameAnimation {
[Static, Export ("animationWithKeyPath:")]
CAKeyFrameAnimation FromKeyPath ([NullAllowed] string path);
+ /// Sets the key frame animation values.
+ ///
+ /// This value can be .
+ ///
+ ///
+ ///
+ /// To pass number, create instances of with the value,
+ /// to pass other values, use .
+ ///
+ ///
+ ///
+ /// If you need to pass CoreGraphics objects, or retrieve
+ /// elements from the key frame that might contain CoreGraphics
+ /// objects, you should use the M:CoreAnimation.CAKeyFrameAnimation.SetValues and
+ /// methods instead.
+ ///
+ ///
+ ///
[NullAllowed] // by default this property is null
[Export ("values", ArgumentSemantic.Copy)]
NSObject [] Values { get; set; }
@@ -1561,14 +1785,32 @@ interface CAKeyFrameAnimation {
[Sealed]
NSArray _Values { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("path")]
CGPath Path { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("keyTimes", ArgumentSemantic.Copy)]
[NullAllowed]
NSNumber [] KeyTimes { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("timingFunctions", ArgumentSemantic.Copy)]
CAMediaTimingFunction [] TimingFunctions { get; set; }
@@ -1577,18 +1819,42 @@ interface CAKeyFrameAnimation {
[Internal]
NSString _CalculationMode { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("rotationMode", ArgumentSemantic.Copy)]
[NullAllowed]
string RotationMode { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("tensionValues", ArgumentSemantic.Copy)]
NSNumber [] TensionValues { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("continuityValues", ArgumentSemantic.Copy)]
NSNumber [] ContinuityValues { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("biasValues", ArgumentSemantic.Copy)]
NSNumber [] BiasValues { get; set; }
@@ -1704,6 +1970,12 @@ interface CATransaction {
/// Apple documentation for CAAnimationGroup
[BaseType (typeof (CAAnimation))]
interface CAAnimationGroup {
+ /// An array of the animations in this group.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("animations", ArgumentSemantic.Copy)]
CAAnimation [] Animations { get; set; }
@@ -1744,17 +2016,32 @@ interface CAGradientLayer {
[Internal]
IntPtr _Colors { get; set; }
+ /// Optional array of NSNumbers that describe the position of each gradient stop. This property can be animated.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("locations", ArgumentSemantic.Copy)]
NSNumber [] Locations { get; set; }
+ /// Starting point for the gradient.
+ /// To be added.
+ /// To be added.
[Export ("startPoint")]
CGPoint StartPoint { get; set; }
+ /// The end point for the gradient. This property can be animated.
+ /// To be added.
+ /// To be added.
[Export ("endPoint")]
CGPoint EndPoint { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
CAGradientLayerType LayerType {
[Wrap ("CAGradientLayerTypeExtensions.GetValue (WeakLayerType)")]
get;
@@ -1815,18 +2102,38 @@ interface CAMediaTimingFunction : NSSecureCoding {
[Export ("getControlPointAtIndex:values:"), Internal]
void GetControlPointAtIndex (nint idx, IntPtr /* float[2] */ point);
+ /// Represents the value associated with the constant kCAMediaTimingFunctionLinear
+ ///
+ ///
+ /// To be added.
[Field ("kCAMediaTimingFunctionLinear")]
NSString Linear { get; }
+ /// Represents the value associated with the constant kCAMediaTimingFunctionEaseIn
+ ///
+ ///
+ /// To be added.
[Field ("kCAMediaTimingFunctionEaseIn")]
NSString EaseIn { get; }
+ /// Represents the value associated with the constant kCAMediaTimingFunctionEaseOut
+ ///
+ ///
+ /// To be added.
[Field ("kCAMediaTimingFunctionEaseOut")]
NSString EaseOut { get; }
+ /// Represents the value associated with the constant kCAMediaTimingFunctionEaseInEaseOut
+ ///
+ ///
+ /// To be added.
[Field ("kCAMediaTimingFunctionEaseInEaseOut")]
NSString EaseInEaseOut { get; }
+ /// Represents the value associated with the constant kCAMediaTimingFunctionDefault
+ ///
+ ///
+ /// To be added.
[Field ("kCAMediaTimingFunctionDefault")]
NSString Default { get; }
}
@@ -1921,6 +2228,9 @@ interface CAEmitterCell : CAMediaTiming, NSSecureCoding {
[Export ("enabled")]
bool Enabled { [Bind ("isEnabled")] get; set; }
+ /// Gets or sets the frequeny, in Hz, at which particles are emitted.
+ /// To be added.
+ /// To be added.
[Export ("birthRate")]
float BirthRate { get; set; } /* float, not CGFloat */
@@ -1945,12 +2255,21 @@ interface CAEmitterCell : CAMediaTiming, NSSecureCoding {
[Export ("velocityRange")]
nfloat VelocityRange { get; set; }
+ /// Gets or sets the X component of the cell's acceleration.
+ /// To be added.
+ /// To be added.
[Export ("xAcceleration")]
nfloat AccelerationX { get; set; }
+ /// Gets or sets the Y component of the cell's acceleration.
+ /// To be added.
+ /// To be added.
[Export ("yAcceleration")]
nfloat AccelerationY { get; set; }
+ /// Gets or sets the Z component of the cell's acceleration.
+ /// To be added.
+ /// To be added.
[Export ("zAcceleration")]
nfloat AccelerationZ { get; set; }
@@ -1982,6 +2301,9 @@ interface CAEmitterCell : CAMediaTiming, NSSecureCoding {
[Export ("blueSpeed")]
float BlueSpeed { get; set; } /* float, not CGFloat */
+ /// Gets or sets the speed at which the alpha value changes.
+ /// To be added.
+ /// To be added.
[Export ("alphaSpeed")]
float AlphaSpeed { get; set; } /* float, not CGFloat */
@@ -2032,9 +2354,15 @@ interface CAEmitterCell : CAMediaTiming, NSSecureCoding {
[Export ("greenRange")]
float GreenRange { get; set; } /* float, not CGFloat */
+ /// Gets or sets the average deviation of the blue color component.
+ /// To be added.
+ /// To be added.
[Export ("blueRange")]
float BlueRange { get; set; } /* float, not CGFloat */
+ /// Gets or sets the average amount of the alpha variation.
+ /// To be added.
+ /// To be added.
[Export ("alphaRange")]
float AlphaRange { get; set; } /* float, not CGFloat */
diff --git a/src/corebluetooth.cs b/src/corebluetooth.cs
index d85e544c3ddf..d8f2dbbf1056 100644
--- a/src/corebluetooth.cs
+++ b/src/corebluetooth.cs
@@ -48,6 +48,9 @@ interface CBCentralInitOptions {
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface CBManager {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("state", ArgumentSemantic.Assign)]
CBManagerState State { get; }
@@ -262,8 +265,17 @@ interface CBCentralManager {
[MacCatalyst (13, 1)]
[StrongDictionary ("AdvertisementDataKeys")]
interface AdvertisementData {
+ /// To be added.
+ /// To be added.
+ /// To be added.
string LocalName { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
NSData ManufacturerData { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
NSDictionary ServiceData { get; set; }
CBUUID [] ServiceUuids { get; set; }
CBUUID [] OverflowServiceUuids { get; set; }
@@ -1073,6 +1085,9 @@ interface CBPeer : NSCopying {
IntPtr _UUID { get; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("identifier")]
NSUuid Identifier { get; }
}
diff --git a/src/coredata.cs b/src/coredata.cs
index 6fd01dfced52..3d863254dd76 100644
--- a/src/coredata.cs
+++ b/src/coredata.cs
@@ -112,6 +112,9 @@ interface NSAtomicStore {
[Export ("updateCacheNode:fromManagedObject:")]
void UpdateCacheNode (NSAtomicStoreCacheNode node, NSManagedObject managedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("cacheNodes")]
#if XAMCORE_5_0
NSSet CacheNodes { get; }
@@ -154,18 +157,42 @@ interface NSFetchIndexElementDescription : NSCoding, NSCopying {
[Export ("initWithProperty:collationType:")]
NativeHandle Constructor (NSPropertyDescription property, NSFetchIndexElementType collationType);
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("property", ArgumentSemantic.Retain)]
NSPropertyDescription Property { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("propertyName", ArgumentSemantic.Retain)]
string PropertyName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collationType", ArgumentSemantic.Assign)]
NSFetchIndexElementType CollationType { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ascending")]
bool IsAscending { [Bind ("isAscending")] get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("indexDescription", ArgumentSemantic.Assign)]
NSFetchIndexDescription IndexDescription { get; }
}
@@ -176,15 +203,33 @@ interface NSFetchIndexDescription : NSCoding, NSCopying {
[Export ("initWithName:elements:")]
NativeHandle Constructor (string name, [NullAllowed] NSFetchIndexElementDescription [] elements);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("name")]
string Name { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("elements", ArgumentSemantic.Copy)]
NSFetchIndexElementDescription [] Elements { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("entity", ArgumentSemantic.Assign)]
NSEntityDescription Entity { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("partialIndexPredicate", ArgumentSemantic.Copy)]
NSPredicate PartialIndexPredicate { get; set; }
}
@@ -197,9 +242,18 @@ interface NSAtomicStoreCacheNode {
[Export ("initWithObjectID:")]
NativeHandle Constructor (NSManagedObjectID moid);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("objectID", ArgumentSemantic.Strong)]
NSManagedObjectID ObjectID { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("propertyCache", ArgumentSemantic.Retain)]
#if XAMCORE_5_0
NSMutableDictionary PropertyCache { get; set; }
@@ -218,15 +272,27 @@ interface NSAtomicStoreCacheNode {
[BaseType (typeof (NSPropertyDescription))]
interface NSAttributeDescription {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("attributeType")]
NSAttributeType AttributeType { get; set; }
// Default property value is null but it cannot be set to that value
// NSInternalInconsistencyException Reason: Can't set attributeValueClassName to nil for a non-transient attribute.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("attributeValueClassName")]
[NullAllowed]
string AttributeValueClassName { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("defaultValue", ArgumentSemantic.Retain)]
NSObject DefaultValue { get; set; }
@@ -238,6 +304,9 @@ interface NSAttributeDescription {
[Export ("valueTransformerName")]
string ValueTransformerName { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("allowsExternalBinaryDataStorage")]
bool AllowsExternalBinaryDataStorage { get; set; }
@@ -265,23 +334,47 @@ interface NSEntityDescription : NSCoding, NSCopying {
NSManagedObject InsertNewObject (string entityName, NSManagedObjectContext context);
#endif
+ /// Gets the managed object model for the receiver.
+ /// To be added.
+ /// To be added.
[Export ("managedObjectModel")]
NSManagedObjectModel ManagedObjectModel { get; }
+ /// Gets or sets the name of the receiver's class.
+ /// To be added.
+ /// To be added.
[Export ("managedObjectClassName")]
[NullAllowed]
string ManagedObjectClassName { get; set; }
+ /// Gets or sets the a value that is used to resolve name conflicts from one model to another.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("renamingIdentifier")]
string RenamingIdentifier { get; set; }
+ /// Gets the receiver's entity name.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("name")]
string Name { get; set; }
+ /// Gets or sets a Boolean value that controls whether the receiver is an abstract entity.
+ /// To be added.
+ /// To be added.
[Export ("abstract")]
bool Abstract { [Bind ("isAbstract")] get; set; }
+ /// Gets a dictionary of the subentities for this entity.
+ /// To be added.
+ /// To be added.
[Export ("subentitiesByName")]
#if XAMCORE_5_0
NSDictionary SubentitiesByName { get; }
@@ -289,12 +382,24 @@ interface NSEntityDescription : NSCoding, NSCopying {
NSDictionary SubentitiesByName { get; }
#endif
+ /// Gets an array of the subentities for this entity.
+ /// To be added.
+ /// To be added.
[Export ("subentities", ArgumentSemantic.Retain)]
NSEntityDescription [] Subentities { get; set; }
+ /// Gets the superentity of this entity.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("superentity")]
NSEntityDescription Superentity { get; }
+ /// Gets a dictionary of the receiver's properties.
+ /// To be added.
+ /// To be added.
[Export ("propertiesByName")]
#if XAMCORE_5_0
NSDictionary PropertiesByName { get; }
@@ -302,12 +407,24 @@ interface NSEntityDescription : NSCoding, NSCopying {
NSDictionary PropertiesByName { get; }
#endif
+ /// Gets an array that contains the receiver's properties.
+ /// To be added.
+ /// To be added.
[Export ("properties", ArgumentSemantic.Retain)]
NSPropertyDescription [] Properties { get; set; }
+ /// Gets or sets the receiver's user information dictionary.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("userInfo", ArgumentSemantic.Retain)]
NSDictionary UserInfo { get; set; }
+ /// Gets the a dictionary whose keys are the receiver attribute names and whose values are the corresponding attribute values.
+ /// To be added.
+ /// To be added.
[Export ("attributesByName")]
#if XAMCORE_5_0
NSDictionary AttributesByName { get; }
@@ -315,6 +432,9 @@ interface NSEntityDescription : NSCoding, NSCopying {
NSDictionary AttributesByName { get; }
#endif
+ /// Gets a dictionary of the receiver's relationships.
+ /// To be added.
+ /// To be added.
[Export ("relationshipsByName")]
#if XAMCORE_5_0
NSDictionary RelationshipsByName { get; }
@@ -328,13 +448,31 @@ interface NSEntityDescription : NSCoding, NSCopying {
[Export ("isKindOfEntity:")]
bool IsKindOfEntity (NSEntityDescription entity);
+ /// Gets the receiver's version hash.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("versionHash")]
NSData VersionHash { get; }
+ /// Gets the modifier for the receiver's version hash.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("versionHashModifier")]
string VersionHashModifier { get; set; }
+ /// Developers should not use this deprecated property. Developers should use 'NSEntityDescription.Indexes' instead.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("compoundIndexes", ArgumentSemantic.Retain)]
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'NSEntityDescription.Indexes' instead.")]
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSEntityDescription.Indexes' instead.")]
@@ -342,6 +480,12 @@ interface NSEntityDescription : NSCoding, NSCopying {
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'NSEntityDescription.Indexes' instead.")]
NSPropertyDescription [] CompoundIndexes { get; set; }
+ /// Gets or sets the indices for the entity.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("indexes", ArgumentSemantic.Copy)]
NSFetchIndexDescription [] Indexes { get; set; }
@@ -351,6 +495,9 @@ interface NSEntityDescription : NSCoding, NSCopying {
[Internal, Export ("uniquenessConstraints", ArgumentSemantic.Strong)]
NSArray _UniquenessConstraints { get; set; }
+ /// Gets or sets the expression that will be used to calculate the core spotlight display name for the entity.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("coreSpotlightDisplayNameExpression", ArgumentSemantic.Retain)]
NSExpression CoreSpotlightDisplayNameExpression { get; set; }
@@ -359,45 +506,99 @@ interface NSEntityDescription : NSCoding, NSCopying {
[BaseType (typeof (NSObject))]
interface NSEntityMapping {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("name")]
[NullAllowed]
string Name { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("mappingType")]
NSEntityMappingType MappingType { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("sourceEntityName")]
string SourceEntityName { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("sourceEntityVersionHash", ArgumentSemantic.Copy)]
NSData SourceEntityVersionHash { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("destinationEntityName", ArgumentSemantic.Copy)]
string DestinationEntityName { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("destinationEntityVersionHash", ArgumentSemantic.Copy)]
NSData DestinationEntityVersionHash { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("attributeMappings", ArgumentSemantic.Retain)]
[NullAllowed]
NSPropertyMapping [] AttributeMappings { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("relationshipMappings", ArgumentSemantic.Retain)]
[NullAllowed]
NSPropertyMapping [] RelationshipMappings { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("sourceExpression", ArgumentSemantic.Retain)]
NSExpression SourceExpression { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("userInfo", ArgumentSemantic.Retain)]
NSDictionary UserInfo { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("entityMigrationPolicyClassName")]
string EntityMigrationPolicyClassName { get; set; }
@@ -431,9 +632,18 @@ interface NSEntityMigrationPolicy {
[BaseType (typeof (NSPropertyDescription))]
interface NSExpressionDescription {
+ /// Gets or sets the expression that describes the column to return.
+ ///
+ /// The expression that describes the column to return.
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("expression", ArgumentSemantic.Strong)]
NSExpression Expression { get; set; }
+ /// Gets or sets the data type for the column to return.
+ /// The data type for the column to return.
+ /// To be added.
[Export ("expressionResultType")]
NSAttributeType ResultType { get; set; }
}
@@ -441,6 +651,12 @@ interface NSExpressionDescription {
[BaseType (typeof (NSPropertyDescription))]
interface NSFetchedPropertyDescription {
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("fetchRequest", ArgumentSemantic.Retain)]
NSFetchRequest FetchRequest { get; set; }
@@ -458,12 +674,22 @@ interface NSFetchRequestExpression {
[Static, Export ("expressionForFetch:context:countOnly:")]
NSFetchRequestExpression FromFetch (NSExpression fetch, NSExpression context, bool countOnly);
+ /// Gets the expression that represents the request.
+ /// The expression that represents the request.
+ /// To be added.
[Export ("requestExpression")]
NSExpression Request { get; }
+ /// Gets the managed object context for the receiver.
+ /// The managed object context for the receiver.
+ /// To be added.
[Export ("contextExpression")]
NSExpression Context { get; }
+ /// Gets a that tells whether the fetch request expression counts the matching data, rather than returning them.
+ ///
+ /// if the fetch request expression counts the matching data, rather than returning them. Otherwise, .
+ /// To be added.
[Export ("countOnlyRequest")]
bool IsCountOnly { [Bind ("isCountOnlyRequest")] get; }
}
@@ -482,50 +708,110 @@ interface NSFetchRequest : NSCoding {
[Export ("init")]
NativeHandle Constructor ();
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("entity", ArgumentSemantic.Retain)]
[NullAllowed]
NSEntityDescription Entity { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("predicate", ArgumentSemantic.Retain)]
[NullAllowed]
NSPredicate Predicate { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("sortDescriptors", ArgumentSemantic.Retain)]
[NullAllowed]
NSSortDescriptor [] SortDescriptors { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fetchLimit")]
nuint FetchLimit { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fetchOffset")]
nuint FetchOffset { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("affectedStores", ArgumentSemantic.Retain)]
[NullAllowed]
NSPersistentStore [] AffectedStores { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("resultType")]
NSFetchRequestResultType ResultType { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("returnsDistinctResults")]
bool ReturnsDistinctResults { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("includesSubentities")]
bool IncludesSubentities { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("includesPropertyValues")]
bool IncludesPropertyValues { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("includesPendingChanges")]
bool IncludesPendingChanges { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("returnsObjectsAsFaults")]
bool ReturnsObjectsAsFaults { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("relationshipKeyPathsForPrefetching")]
[NullAllowed]
string [] RelationshipKeyPathsForPrefetching { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("propertiesToFetch", ArgumentSemantic.Copy)]
[NullAllowed]
NSPropertyDescription [] PropertiesToFetch { get; set; }
@@ -538,19 +824,43 @@ interface NSFetchRequest : NSCoding {
[Export ("initWithEntityName:")]
NativeHandle Constructor (string entityName);
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("entityName", ArgumentSemantic.Strong)]
string EntityName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fetchBatchSize")]
nint FetchBatchSize { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("shouldRefreshRefetchedObjects")]
bool ShouldRefreshRefetchedObjects { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("havingPredicate", ArgumentSemantic.Retain)]
[NullAllowed]
NSPredicate HavingPredicate { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("propertiesToGroupBy", ArgumentSemantic.Copy)]
[NullAllowed]
NSPropertyDescription [] PropertiesToGroupBy { get; set; }
@@ -753,9 +1063,15 @@ interface NSIncrementalStoreNode {
void Update (NSDictionary values, ulong version);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("objectID")]
NSManagedObjectID ObjectId { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("version")]
long Version { get; }
@@ -1423,9 +1739,15 @@ interface NSMappingModel {
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface NSMergeConflict {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sourceObject", ArgumentSemantic.Retain)]
NSManagedObject SourceObject { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("objectSnapshot", ArgumentSemantic.Retain)]
[NullAllowed]
#if XAMCORE_5_0
@@ -1434,6 +1756,9 @@ interface NSMergeConflict {
NSDictionary ObjectSnapshot { get; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("cachedSnapshot", ArgumentSemantic.Retain)]
[NullAllowed]
#if XAMCORE_5_0
@@ -1442,6 +1767,9 @@ interface NSMergeConflict {
NSDictionary CachedSnapshot { get; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("persistedSnapshot", ArgumentSemantic.Retain)]
[NullAllowed]
#if XAMCORE_5_0
@@ -1450,9 +1778,15 @@ interface NSMergeConflict {
NSDictionary PersistedSnapshot { get; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("newVersionNumber")]
nuint NewVersionNumber { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("oldVersionNumber")]
nuint OldVersionNumber { get; }
@@ -1470,6 +1804,9 @@ interface NSMergeConflict {
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface NSMergePolicy {
+ /// Gets the policy's merge type.
+ /// To be added.
+ /// To be added.
[Export ("mergeType")]
NSMergePolicyType MergeType { get; }
@@ -1492,22 +1829,37 @@ interface NSMergePolicy {
[Export ("resolveConstraintConflicts:error:")]
bool ResolveConstraintConflicts (NSConstraintConflict [] list, out NSError error);
+ /// Gets a value that indicates that saving will fail if an error is encountered.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Static, Export ("errorMergePolicy", ArgumentSemantic.Strong)]
NSMergePolicy ErrorPolicy { get; }
+ /// Gets a value that indicates tha in-memory state changes are discarded for conflicting objects.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Static, Export ("rollbackMergePolicy", ArgumentSemantic.Strong)]
NSMergePolicy RollbackPolicy { get; }
+ /// Gets a value that controls policy for handling overwrites.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Static, Export ("overwriteMergePolicy", ArgumentSemantic.Strong)]
NSMergePolicy OverwritePolicy { get; }
+ /// Gets a value that indicates that the property object is favored during merges.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Static, Export ("mergeByPropertyObjectTrumpMergePolicy", ArgumentSemantic.Strong)]
NSMergePolicy MergeByPropertyObjectTrumpPolicy { get; }
+ /// Gets a value that indicates that the property store is favored during merges.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Static, Export ("mergeByPropertyStoreTrumpMergePolicy", ArgumentSemantic.Strong)]
NSMergePolicy MergeByPropertyStoreTrumpPolicy { get; }
@@ -1525,18 +1877,33 @@ interface NSMigrationManager {
[Export ("reset")]
void Reset ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("mappingModel", ArgumentSemantic.Strong)]
NSMappingModel MappingModel { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sourceModel", ArgumentSemantic.Strong)]
NSManagedObjectModel SourceModel { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("destinationModel", ArgumentSemantic.Strong)]
NSManagedObjectModel DestinationModel { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sourceContext", ArgumentSemantic.Strong)]
NSManagedObjectContext SourceContext { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("destinationContext", ArgumentSemantic.Strong)]
NSManagedObjectContext DestinationContext { get; }
@@ -1557,12 +1924,24 @@ interface NSMigrationManager {
[Export ("sourceInstancesForEntityMappingNamed:destinationInstances:")]
NSManagedObject [] SourceInstancesForEntityMappingNamed (string mappingName, [NullAllowed] NSManagedObject [] destinationInstances);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("currentEntityMapping", ArgumentSemantic.Strong)]
NSEntityMapping CurrentEntityMapping { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("migrationProgress")]
float MigrationProgress { get; } /* float, not CGFloat */
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("userInfo", ArgumentSemantic.Retain)]
NSDictionary UserInfo { get; set; }
@@ -1571,6 +1950,9 @@ interface NSMigrationManager {
void CancelMigrationWithError (NSError error);
// 5.0
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("usesStoreSpecificMigrationManager")]
bool UsesStoreSpecificMigrationManager { get; set; }
}
@@ -1579,21 +1961,48 @@ interface NSMigrationManager {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
interface NSPersistentHistoryChange : NSCopying {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("changeID")]
long ChangeId { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("changedObjectID", ArgumentSemantic.Copy)]
NSManagedObjectID ChangedObjectId { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("changeType")]
NSPersistentHistoryChangeType ChangeType { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("tombstone", ArgumentSemantic.Copy)]
NSDictionary Tombstone { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("transaction", ArgumentSemantic.Strong)]
NSPersistentHistoryTransaction Transaction { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("updatedProperties", ArgumentSemantic.Copy)]
NSSet UpdatedProperties { get; }
@@ -1684,33 +2093,72 @@ interface NSPersistentHistoryResult {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
interface NSPersistentHistoryTransaction : NSCopying {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("timestamp", ArgumentSemantic.Copy)]
NSDate Timestamp { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("changes", ArgumentSemantic.Copy)]
NSPersistentHistoryChange [] Changes { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("transactionNumber")]
long TransactionNumber { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("storeID")]
string StoreId { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("bundleID")]
string BundleId { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("processID")]
string ProcessId { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("contextName")]
string ContextName { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("author")]
string Author { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("token", ArgumentSemantic.Strong)]
NSPersistentHistoryToken Token { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("objectIDNotification")]
NSNotification ObjectIdNotification { get; }
@@ -1750,9 +2198,18 @@ interface NSCoreDataCoreSpotlightDelegate {
[DesignatedInitializer]
NativeHandle Constructor (NSPersistentStoreDescription description, NSPersistentStoreCoordinator psc);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("domainIdentifier")]
string DomainIdentifier { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("indexName")]
string IndexName { get; }
@@ -1964,22 +2421,40 @@ interface NSPersistentContainer {
[Export ("persistentContainerWithName:managedObjectModel:")]
NSPersistentContainer GetPersistentContainer (string name, NSManagedObjectModel model);
+ /// Gets the platform's default directory for persistent stores.
+ /// The platform's default directory for persistent stores..
+ /// To be added.
[Static]
[Export ("defaultDirectoryURL")]
NSUrl DefaultDirectoryUrl { get; }
+ /// Gets the name of the persistent container.
+ /// The name of the persistent container.
+ /// To be added.
[Export ("name")]
string Name { get; }
+ /// Gets the managed object context for the main queue.
+ /// The managed object context for the main queue.
+ /// To be added.
[Export ("viewContext", ArgumentSemantic.Strong)]
NSManagedObjectContext ViewContext { get; }
+ /// Gets the managed object model for the persistent container.
+ /// The managed object model for the persistent container.
+ /// To be added.
[Export ("managedObjectModel", ArgumentSemantic.Strong)]
NSManagedObjectModel ManagedObjectModel { get; }
+ /// Gets the coordinator for this persistent container.
+ /// The coordinator for this persistent container.
+ /// To be added.
[Export ("persistentStoreCoordinator", ArgumentSemantic.Strong)]
NSPersistentStoreCoordinator PersistentStoreCoordinator { get; }
+ /// Gets an array that contains the descriptions of the persistent stores in this persistent container.
+ /// An array that contains the descriptions of the persistent stores in this persistent container.
+ /// To be added.
[Export ("persistentStoreDescriptions", ArgumentSemantic.Copy)]
NSPersistentStoreDescription [] PersistentStoreDescriptions { get; set; }
@@ -1994,6 +2469,9 @@ interface NSPersistentContainer {
[Async]
void LoadPersistentStores (Action block);
+ /// Creates and returns a private managed object context.
+ /// A private managed object context.
+ /// To be added.
[Export ("newBackgroundContext")]
NSManagedObjectContext NewBackgroundContext { get; }
@@ -2009,6 +2487,9 @@ partial interface NSPersistentStoreCoordinator
#endif // !TVOS
{
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static, Export ("registeredStoreTypes", ArgumentSemantic.Strong)]
#if XAMCORE_5_0
NSDictionary RegisteredStoreTypes { get; }
@@ -2063,9 +2544,15 @@ partial interface NSPersistentStoreCoordinator
[Export ("initWithManagedObjectModel:")]
NativeHandle Constructor (NSManagedObjectModel model);
+ /// Gets the managed objec model for the receiver.
+ /// To be added.
+ /// To be added.
[Export ("managedObjectModel", ArgumentSemantic.Strong)]
NSManagedObjectModel ManagedObjectModel { get; }
+ /// Gets an array that contains the receiver's persistent stores.
+ /// To be added.
+ /// To be added.
[Export ("persistentStores", ArgumentSemantic.Strong)]
NSPersistentStore [] PersistentStores { get; }
@@ -2123,6 +2610,9 @@ partial interface NSPersistentStoreCoordinator
new void Unlock ();
#pragma warning restore
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV]
[Deprecated (PlatformName.iOS, 8, 0, message: "Use 'Perform' instead.")]
[Deprecated (PlatformName.MacOSX, 10, 10, message: "Use 'Perform' instead.")]
@@ -2139,87 +2629,177 @@ partial interface NSPersistentStoreCoordinator
[return: NullAllowed]
NSDictionary MetadataForPersistentStoreWithUrl (NSUrl url, out NSError error);
+ /// Represents the value associated with the constant NSSQLiteStoreType
+ ///
+ ///
+ /// To be added.
[Field ("NSSQLiteStoreType")]
NSString SQLiteStoreType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS]
[NoMacCatalyst]
[NoTV]
[Field ("NSXMLStoreType")]
NSString XMLStoreType { get; }
+ /// Represents the value associated with the constant NSBinaryStoreType
+ ///
+ ///
+ /// To be added.
[Field ("NSBinaryStoreType")]
NSString BinaryStoreType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("NSBinaryStoreSecureDecodingClasses")]
NSString BinaryStoreSecureDecodingClasses { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("NSBinaryStoreInsecureDecodingCompatibilityOption")]
NSString BinaryStoreInsecureDecodingCompatibilityOption { get; }
+ /// Represents the value associated with the constant NSInMemoryStoreType
+ ///
+ ///
+ /// To be added.
[Field ("NSInMemoryStoreType")]
NSString InMemoryStoreType { get; }
+ /// Represents the value associated with the constant NSStoreUUIDKey
+ ///
+ ///
+ /// To be added.
[Field ("NSStoreUUIDKey")]
NSString StoreUUIDKey { get; }
+ /// Represents the value associated with the constant NSAddedPersistentStoresKey
+ ///
+ ///
+ /// To be added.
[Field ("NSAddedPersistentStoresKey")]
NSString AddedPersistentStoresKey { get; }
+ /// Represents the value associated with the constant NSRemovedPersistentStoresKey
+ ///
+ ///
+ /// To be added.
[Field ("NSRemovedPersistentStoresKey")]
NSString RemovedPersistentStoresKey { get; }
+ /// Represents the value associated with the constant NSUUIDChangedPersistentStoresKey
+ ///
+ ///
+ /// To be added.
[Field ("NSUUIDChangedPersistentStoresKey")]
NSString UUIDChangedPersistentStoresKey { get; }
+ /// Represents the value associated with the constant NSReadOnlyPersistentStoreOption
+ ///
+ ///
+ /// To be added.
[Field ("NSReadOnlyPersistentStoreOption")]
NSString ReadOnlyPersistentStoreOption { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS]
[NoMacCatalyst]
[NoTV]
[Field ("NSValidateXMLStoreOption")]
NSString ValidateXMLStoreOption { get; }
+ /// Represents the value associated with the constant NSPersistentStoreTimeoutOption
+ ///
+ ///
+ /// To be added.
[Field ("NSPersistentStoreTimeoutOption")]
NSString PersistentStoreTimeoutOption { get; }
+ /// Represents the value associated with the constant NSSQLitePragmasOption
+ ///
+ ///
+ /// To be added.
[Field ("NSSQLitePragmasOption")]
NSString SQLitePragmasOption { get; }
+ /// Represents the value associated with the constant NSSQLiteAnalyzeOption
+ ///
+ ///
+ /// To be added.
[Field ("NSSQLiteAnalyzeOption")]
NSString SQLiteAnalyzeOption { get; }
+ /// Represents the value associated with the constant NSSQLiteManualVacuumOption
+ ///
+ ///
+ /// To be added.
[Field ("NSSQLiteManualVacuumOption")]
NSString SQLiteManualVacuumOption { get; }
+ /// Represents the value associated with the constant NSIgnorePersistentStoreVersioningOption
+ ///
+ ///
+ /// To be added.
[Field ("NSIgnorePersistentStoreVersioningOption")]
NSString IgnorePersistentStoreVersioningOption { get; }
+ /// Represents the value associated with the constant NSMigratePersistentStoresAutomaticallyOption
+ ///
+ ///
+ /// To be added.
[Field ("NSMigratePersistentStoresAutomaticallyOption")]
NSString MigratePersistentStoresAutomaticallyOption { get; }
+ /// Represents the value associated with the constant NSInferMappingModelAutomaticallyOption
+ ///
+ ///
+ /// To be added.
[Field ("NSInferMappingModelAutomaticallyOption")]
NSString InferMappingModelAutomaticallyOption { get; }
+ /// Represents the value associated with the constant NSStoreModelVersionHashesKey
+ ///
+ ///
+ /// To be added.
[Field ("NSStoreModelVersionHashesKey")]
NSString StoreModelVersionHashesKey { get; }
+ /// Represents the value associated with the constant NSStoreModelVersionIdentifiersKey
+ ///
+ ///
+ /// To be added.
[Field ("NSStoreModelVersionIdentifiersKey")]
NSString StoreModelVersionIdentifiersKey { get; }
+ /// Represents the value associated with the constant NSPersistentStoreOSCompatibility
+ ///
+ ///
+ /// To be added.
[Field ("NSPersistentStoreOSCompatibility")]
NSString PersistentStoreOSCompatibility { get; }
+ /// Represents the value associated with the constant NSStoreTypeKey
+ ///
+ ///
+ /// To be added.
[Field ("NSStoreTypeKey")]
NSString StoreTypeKey { get; }
+ ///
[Notification]
[Field ("NSPersistentStoreCoordinatorStoresDidChangeNotification")]
NSString StoresDidChangeNotification { get; }
+ ///
[Notification]
[Field ("NSPersistentStoreCoordinatorWillRemoveStoreNotification")]
NSString WillRemoveStoreNotification { get; }
@@ -2233,6 +2813,7 @@ partial interface NSPersistentStoreCoordinator
NSObject ExecuteRequestwithContexterror (NSPersistentStoreRequest request, NSManagedObjectContext context, out NSError error);
#endif
+ ///
[NoTV]
[Notification]
[Deprecated (PlatformName.iOS, 10, 0, message: "Please see the release notes and Core Data documentation.")]
@@ -2241,6 +2822,10 @@ partial interface NSPersistentStoreCoordinator
[Field ("NSPersistentStoreDidImportUbiquitousContentChangesNotification")]
NSString DidImportUbiquitousContentChangesNotification { get; }
+ /// Represents the value associated with the constant NSPersistentStoreUbiquitousContentNameKey
+ ///
+ ///
+ /// To be added.
[NoTV]
[Deprecated (PlatformName.iOS, 10, 0, message: "Please see the release notes and Core Data documentation.")]
[MacCatalyst (13, 1)]
@@ -2266,6 +2851,10 @@ partial interface NSPersistentStoreCoordinator
// 7.0
+ /// Represents the value associated with the constant NSPersistentStoreUbiquitousPeerTokenOption
+ ///
+ ///
+ /// To be added.
[NoTV]
[MacCatalyst (13, 1)]
[Field ("NSPersistentStoreUbiquitousPeerTokenOption")]
@@ -2280,27 +2869,43 @@ partial interface NSPersistentStoreCoordinator
[Export ("removeUbiquitousContentAndPersistentStoreAtURL:options:error:")]
bool RemoveUbiquitousContentAndPersistentStore (NSUrl storeUrl, [NullAllowed] NSDictionary options, out NSError error);
+ ///
[MacCatalyst (13, 1)]
[Notification (typeof (NSPersistentStoreCoordinatorStoreChangeEventArgs))]
[Field ("NSPersistentStoreCoordinatorStoresWillChangeNotification")]
NSString StoresWillChangeNotification { get; }
+ /// Represents the value associated with the constant NSPersistentStoreRebuildFromUbiquitousContentOption
+ ///
+ ///
+ /// To be added.
[NoTV]
[MacCatalyst (13, 1)]
[Field ("NSPersistentStoreRebuildFromUbiquitousContentOption")]
NSString RebuildFromUbiquitousContentOption { get; }
+ /// Represents the value associated with the constant NSPersistentStoreRemoveUbiquitousMetadataOption
+ ///
+ ///
+ /// To be added.
[NoTV]
[MacCatalyst (13, 1)]
[Field ("NSPersistentStoreRemoveUbiquitousMetadataOption")]
NSString RemoveUbiquitousMetadataOption { get; }
+ /// Represents the value associated with the constant NSPersistentStoreUbiquitousContainerIdentifierKey
+ ///
+ ///
+ /// To be added.
[NoTV]
[MacCatalyst (13, 1)]
[Field ("NSPersistentStoreUbiquitousContainerIdentifierKey")]
[Obsolete ("Use 'UbiquitousContainerIdentifierKey' instead.")]
NSString eUbiquitousContainerIdentifierKey { get; }
+ /// Represents the value that is associated with the NSPersistentStoreUbiquitousContainerIdentifierKey constant.
+ /// To be added.
+ /// To be added.
[NoTV]
[MacCatalyst (13, 1)]
[Field ("NSPersistentStoreUbiquitousContainerIdentifierKey")]
@@ -2308,15 +2913,27 @@ partial interface NSPersistentStoreCoordinator
// 11.0
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV]
[MacCatalyst (13, 1)]
[Field ("NSCoreDataCoreSpotlightExporter")]
NSString CoreSpotlightExporter { get; }
+ /// Represents the value that is associated with the NSPersistentHistoryTrackingKey constant.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("NSPersistentHistoryTrackingKey")]
NSString HistoryTrackingKey { get; }
+ /// Gets the name of the persistent store coordinator.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("name")]
string Name { get; set; }
@@ -2380,9 +2997,15 @@ interface NSPersistentStoreRequest : NSCopying {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSPersistentStoreAsynchronousResult))]
interface NSAsynchronousFetchResult {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fetchRequest", ArgumentSemantic.Retain)]
NSAsynchronousFetchRequest FetchRequest { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("finalResult", ArgumentSemantic.Retain)]
[NullAllowed]
#if NET
@@ -2401,10 +3024,16 @@ interface NSPersistentStoreResult {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSPersistentStoreResult))]
interface NSBatchUpdateResult {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("result", ArgumentSemantic.Retain)]
[NullAllowed]
NSObject Result { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("resultType")]
NSBatchUpdateRequestResultType ResultType { get; }
}
@@ -2433,9 +3062,15 @@ interface NSAsynchronousFetchRequest {
[Export ("initWithFetchRequest:completionBlock:")]
NativeHandle Constructor (NSFetchRequest request, [NullAllowed] Action completion);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fetchRequest", ArgumentSemantic.Retain)]
NSFetchRequest FetchRequest { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("estimatedResultCount")]
nint EstimatedResultCount { get; set; }
}
@@ -2630,9 +3265,15 @@ interface NSBatchDeleteRequest {
[Export ("initWithObjectIDs:")]
NativeHandle Constructor (NSManagedObjectID [] objects);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("resultType", ArgumentSemantic.Assign)]
NSBatchDeleteRequestResultType ResultType { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fetchRequest", ArgumentSemantic.Copy)]
NSFetchRequest FetchRequest { get; }
}
@@ -2640,9 +3281,18 @@ interface NSBatchDeleteRequest {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSPersistentStoreResult))]
interface NSBatchDeleteResult {
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("result", ArgumentSemantic.Strong)]
NSObject Result { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("resultType")]
NSBatchDeleteRequestResultType ResultType { get; }
}
@@ -2655,6 +3305,9 @@ interface NSConstraintConflict {
NativeHandle Constructor (string [] contraint, [NullAllowed] NSManagedObject databaseObject, [NullAllowed] NSDictionary databaseSnapshot, NSManagedObject [] conflictingObjects, NSObject [] conflictingSnapshots);
#if MONOMAC
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("constraint", ArgumentSemantic.Copy)]
#else
[Export ("constraint", ArgumentSemantic.Retain)]
@@ -2662,19 +3315,37 @@ interface NSConstraintConflict {
string [] Constraint { get; }
#if MONOMAC
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("constraintValues", ArgumentSemantic.Copy)]
#else
[Export ("constraintValues", ArgumentSemantic.Retain)]
#endif
NSDictionary ConstraintValues { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("databaseObject", ArgumentSemantic.Retain)]
NSManagedObject DatabaseObject { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("databaseSnapshot", ArgumentSemantic.Retain)]
NSDictionary DatabaseSnapshot { get; }
#if MONOMAC
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("conflictingObjects", ArgumentSemantic.Copy)]
#else
[Export ("conflictingObjects", ArgumentSemantic.Retain)]
@@ -2682,6 +3353,9 @@ interface NSConstraintConflict {
NSManagedObject [] ConflictingObjects { get; }
#if MONOMAC
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("conflictingSnapshots", ArgumentSemantic.Copy)]
#else
[Export ("conflictingSnapshots", ArgumentSemantic.Retain)]
diff --git a/src/corefoundation.cs b/src/corefoundation.cs
index fbe8280ffdfe..1f175869c52a 100644
--- a/src/corefoundation.cs
+++ b/src/corefoundation.cs
@@ -60,9 +60,17 @@ interface CFBoolean {
[Partial]
interface CFRunLoop {
+ /// Represents the value associated with the constant kCFRunLoopDefaultMode
+ ///
+ ///
+ /// To be added.
[Field ("kCFRunLoopDefaultMode")]
NSString ModeDefault { get; }
+ /// Represents the value associated with the constant kCFRunLoopCommonModes
+ ///
+ ///
+ /// To be added.
[Field ("kCFRunLoopCommonModes")]
NSString ModeCommon { get; }
}
diff --git a/src/corelocation.cs b/src/corelocation.cs
index f728e652bfee..348a07d9e027 100644
--- a/src/corelocation.cs
+++ b/src/corelocation.cs
@@ -127,18 +127,35 @@ partial interface CLHeading : NSSecureCoding, NSCopying {
[BaseType (typeof (NSObject))]
partial interface CLLocation : NSSecureCoding, NSCopying, CKRecordValue {
+ /// The location's position on the globe.
+ /// To be added.
+ /// To be added.
[Export ("coordinate")]
CLLocationCoordinate2D Coordinate { get; }
+ /// The altitude, in meters above sea level.
+ /// To be added.
+ /// To be added.
[Export ("altitude")]
double Altitude { get; }
+ /// The radius, in meters, of the uncertainty of the location.
+ /// The radius, in meters.
+ /// To be added.
[Export ("horizontalAccuracy")]
double HorizontalAccuracy { get; }
+ /// The radius, in meters, of the uncertainty of the location.
+ /// To be added.
+ /// To be added.
[Export ("verticalAccuracy")]
double VerticalAccuracy { get; }
+ /// The direction, in positive degrees, in which the device is moving relative to true North.
+ /// Negative values are invalid. Travel due West is 270, not -90.
+ ///
+ /// This property is not be available on all devices.
+ ///
[TV (13, 0)] // API_UNAVAILABLE(tvos) removed in Xcode 11 beta 1
[MacCatalyst (13, 1)]
[Export ("course")]
@@ -149,6 +166,9 @@ partial interface CLLocation : NSSecureCoding, NSCopying, CKRecordValue {
[Export ("courseAccuracy")]
double CourseAccuracy { get; }
+ /// The instantaneous speed of the device, in meters per second.
+ /// Negative values are invalid.
+ /// To be added.
[TV (13, 0)] // API_UNAVAILABLE(tvos) removed in Xcode 11 beta 1
[MacCatalyst (13, 1)]
[Export ("speed")]
@@ -159,6 +179,9 @@ partial interface CLLocation : NSSecureCoding, NSCopying, CKRecordValue {
[Export ("speedAccuracy")]
double SpeedAccuracy { get; }
+ /// The time at which the measurement was taken.
+ /// To be added.
+ /// To be added.
[Export ("timestamp", ArgumentSemantic.Copy)]
NSDate Timestamp { get; }
@@ -191,6 +214,9 @@ partial interface CLLocation : NSSecureCoding, NSCopying, CKRecordValue {
NSString ErrorUserInfoAlternateRegionKey { get; }
#if !XAMCORE_5_0
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Obsolete ("Use 'AccuracyBestForNavigation' instead.")]
[Field ("kCLLocationAccuracyBestForNavigation")]
double AccurracyBestForNavigation { get; }
@@ -199,18 +225,33 @@ partial interface CLLocation : NSSecureCoding, NSCopying, CKRecordValue {
[Field ("kCLLocationAccuracyBestForNavigation")]
double AccuracyBestForNavigation { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCLLocationAccuracyBest")]
double AccuracyBest { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCLLocationAccuracyNearestTenMeters")]
double AccuracyNearestTenMeters { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCLLocationAccuracyHundredMeters")]
double AccuracyHundredMeters { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCLLocationAccuracyKilometer")]
double AccuracyKilometer { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCLLocationAccuracyThreeKilometers")]
double AccuracyThreeKilometers { get; }
@@ -219,6 +260,9 @@ partial interface CLLocation : NSSecureCoding, NSCopying, CKRecordValue {
[Field ("kCLLocationAccuracyReduced")]
double AccuracyReduced { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("floor", ArgumentSemantic.Copy)]
CLFloor Floor { get; }
@@ -235,6 +279,9 @@ partial interface CLLocation : NSSecureCoding, NSCopying, CKRecordValue {
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
partial interface CLFloor : NSSecureCoding, NSCopying {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("level")]
nint Level { get; }
}
@@ -243,19 +290,46 @@ partial interface CLFloor : NSSecureCoding, NSCopying {
[BaseType (typeof (NSObject), Delegates = new string [] { "WeakDelegate" }, Events = new Type [] { typeof (CLLocationManagerDelegate) })]
partial interface CLLocationManager {
+ /// An instance of the CoreLocation.ICLLocationManagerDelegate model class which acts as the class delegate.
+ /// The instance of the CoreLocation.ICLLocationManagerDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
ICLLocationManagerDelegate Delegate { get; set; }
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
[Export ("delegate", ArgumentSemantic.Assign)]
[NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// The minimum horizontal distance, in meters, the device has to move before issuing a location update.
+ /// The default value is P:CoreLocation.CLLocationDistance.None.
+ ///
+ /// If this value is set to P:CoreLocation.CLLocationDistance.None, the app will receive all location updates.
+ ///
[Export ("distanceFilter", ArgumentSemantic.Assign)]
double DistanceFilter { get; set; }
+ /// The accuracy preferred by the app. (Coarser accuracies consume less power.)
+ /// The default value is .
+ ///
+ /// Application developers should set this value to the coarsest resolution suitable to their needs.
+ ///
[Export ("desiredAccuracy", ArgumentSemantic.Assign)]
double DesiredAccuracy { get; set; }
+ /// The most recently-retrieved .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("location", ArgumentSemantic.Copy)]
CLLocation Location { get; }
@@ -267,6 +341,10 @@ partial interface CLLocationManager {
[Export ("stopUpdatingLocation")]
void StopUpdatingLocation ();
+ /// Whether location services are available.
+ ///
+ /// if the necessary hardware exists and the user has allowed the app's request for access.
+ /// To be added.
[Export ("locationServicesEnabled"), Static]
bool LocationServicesEnabled { get; }
@@ -377,6 +455,12 @@ partial interface CLLocationManager {
[Export ("authorizationStatus")]
CLAuthorizationStatus AuthorizationStatus { get; }
+ /// The authorization status of the app (e.g., if the app is denied access to location services).
+ /// The value is determined by the user's interaction with the standard permissions dialog.
+ ///
+ /// See the "Requesting Authorization" discussion in the class-level remarks: .
+ ///
+ ///
[Deprecated (PlatformName.iOS, 14, 0, message: "Use the instance property 'AuthorizationStatus' instead.")]
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use the instance 'AuthorizationStatus' property instead.")]
[Deprecated (PlatformName.TvOS, 14, 0, message: "Use the instance property AuthorizationStatus' instead.")]
@@ -428,6 +512,10 @@ partial interface CLLocationManager {
[Export ("deferredLocationUpdatesAvailable")]
bool DeferredLocationUpdatesAvailable { get; }
+ /// Represents the value associated with the constant CLTimeInternalMax
+ ///
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("CLTimeIntervalMax")]
double MaxTimeInterval { get; }
@@ -679,10 +767,18 @@ partial interface CLLocationManagerDelegate {
[Static]
partial interface CLLocationDistance {
+ /// When used with , indicates that the maximum distance filter be used.
+ ///
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("CLLocationDistanceMax")]
double MaxDistance { get; }
+ /// When used with , indicates that no distance filter be used.
+ ///
+ ///
+ /// To be added.
[Field ("kCLDistanceFilterNone")]
double FilterNone { get; }
}
@@ -706,6 +802,9 @@ partial interface CLRegion : NSSecureCoding, NSCopying {
[Export ("radius")]
double Radius { get; }
+ /// The unique identifier that was used when the region was created.
+ /// To be added.
+ /// To be added.
[Export ("identifier")]
string Identifier { get; }
@@ -725,10 +824,16 @@ partial interface CLRegion : NSSecureCoding, NSCopying {
[Export ("containsCoordinate:")]
bool Contains (CLLocationCoordinate2D coordinate);
+ /// Whether the app should be notified when the device enters the region.
+ /// To be added.
+ /// To be added.
[Export ("notifyOnEntry", ArgumentSemantic.Assign)]
[MacCatalyst (13, 1)]
bool NotifyOnEntry { get; set; }
+ /// Whether the app should be notified when the device leaves the region.
+ /// To be added.
+ /// To be added.
[Export ("notifyOnExit", ArgumentSemantic.Assign)]
[MacCatalyst (13, 1)]
bool NotifyOnExit { get; set; }
@@ -737,6 +842,7 @@ partial interface CLRegion : NSSecureCoding, NSCopying {
[BaseType (typeof (NSObject))]
[DisableDefaultCtor] // will crash, see CoreLocation.cs for compatibility stubs
interface CLPlacemark : NSSecureCoding, NSCopying {
+ ///
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'CLPlacemark' properties to access data.")]
[Deprecated (PlatformName.TvOS, 11, 0, message: "Use 'CLPlacemark' properties to access data.")]
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'CLPlacemark' properties to access data.")]
@@ -744,54 +850,106 @@ interface CLPlacemark : NSSecureCoding, NSCopying {
[NullAllowed, Export ("addressDictionary", ArgumentSemantic.Copy)]
NSDictionary AddressDictionary { get; }
+ /// The state or province. May be spelled out or abbreviated.
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("administrativeArea")]
string AdministrativeArea { get; }
+ /// A region, smaller than the . Often, the county in which the is located.
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("subAdministrativeArea")]
string SubAdministrativeArea { get; }
+ /// A small area, such as a neighborhood or landmark name, associated with the .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("subLocality")]
string SubLocality { get; }
+ /// The city or town associated with the .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("locality")]
string Locality { get; }
+ /// The name of the country associated with the placemark.
+ /// The name is spelled out, not an ISO-3166 code (e.g., "United States" not "US").
+ /// To be added.
+ ///
[NullAllowed, Export ("country")]
string Country { get; }
+ /// The postal code associated with the .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("postalCode")]
string PostalCode { get; }
+ /// The street address associated with the .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("thoroughfare")]
string Thoroughfare { get; }
+ /// The finest-grained street information, such as the street number of an address.
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("subThoroughfare")]
string SubThoroughfare { get; }
+ /// The ISO 3166 Code associated with the .
+ /// To be added.
+ /// To be added.
+ ///
[NullAllowed, Export ("ISOcountryCode")]
string IsoCountryCode { get; }
+ /// An array of relevant areas of interest (large parks, miltary bases, attractions, etc).
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("areasOfInterest")]
string [] AreasOfInterest { get; }
[Export ("initWithPlacemark:")]
NativeHandle Constructor (CLPlacemark placemark);
+ /// The name of the lake, river, or other waterway associated with the .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("inlandWater")]
string InlandWater { get; }
+ /// The location (contains latitude and longitude) of the .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("location", ArgumentSemantic.Copy)]
CLLocation Location { get; }
+ /// The name of the .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("name")]
string Name { get; }
+ /// The name of the ocean associated with the .
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("ocean")]
string Ocean { get; }
+ /// The geographic region associated with the .
+ /// To be added.
+ ///
+ /// The region returned will typically be a centered on the placemark and with a encompassing the region.
+ ///
[NullAllowed, Export ("region", ArgumentSemantic.Copy)]
CLRegion Region { get; }
+ /// Gets or sets the time zone in which the place mark resides.
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("timeZone")]
[MacCatalyst (13, 1)]
NSTimeZone TimeZone { get; }
@@ -816,9 +974,15 @@ partial interface CLCircularRegion {
[Export ("initWithCenter:radius:identifier:")]
NativeHandle Constructor (CLLocationCoordinate2D center, double radius, string identifier);
+ /// The center of the circular region.
+ /// To be added.
+ /// To be added.
[Export ("center")]
CLLocationCoordinate2D Center { get; }
+ /// The radius of the circular region, in meters.
+ /// To be added.
+ /// To be added.
[Export ("radius")]
double Radius { get; }
@@ -963,6 +1127,10 @@ partial interface CLBeacon : NSCopying, NSSecureCoding {
[BaseType (typeof (NSObject))]
interface CLGeocoder {
+ /// Whether a geocoding request is currently being processed.
+ ///
+ /// if the is in the process of geocoding.
+ /// To be added.
[Export ("isGeocoding")]
bool Geocoding { get; }
diff --git a/src/coremidi.cs b/src/coremidi.cs
index 588c903dd1be..34d41cebaf54 100644
--- a/src/coremidi.cs
+++ b/src/coremidi.cs
@@ -58,8 +58,11 @@ namespace CoreMidi {
// NSUInteger -> MIDINetworkSession.h
[Native]
public enum MidiNetworkConnectionPolicy : ulong {
+ /// To be added.
NoOne,
+ /// To be added.
HostsInContactsList,
+ /// To be added.
Anyone,
}
@@ -337,19 +340,34 @@ public enum MidiCIPropertyExchangeRequestID : byte /* UInt8 */ {
[BaseType (typeof (NSObject), Name = "MIDINetworkHost")]
[DisableDefaultCtor]
interface MidiNetworkHost {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("name", ArgumentSemantic.Retain)]
string Name { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("address", ArgumentSemantic.Retain)]
string Address { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("port")]
nint Port { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("netServiceName", ArgumentSemantic.Retain)]
string NetServiceName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("netServiceDomain", ArgumentSemantic.Retain)]
string NetServiceDomain { get; }
@@ -375,14 +393,21 @@ interface MidiNetworkHost {
[MacCatalyst (13, 1)]
[Static]
interface Midi {
+ ///
[Field ("MIDINetworkNotificationContactsDidChange")]
[Notification]
NSString NetworkNotificationContactsDidChange { get; }
+ ///
[Field ("MIDINetworkNotificationSessionDidChange")]
[Notification]
NSString NetworkNotificationSessionDidChange { get; }
+ /// Represents the value associated with the constant MIDINetworkBonjourServiceType
+ ///
+ ///
+ /// You can pass this type to M:Foundation.NSNetServiceBrowser.SearchForServices(System.String type, System.String domain) to find MIDI devices available
+ /// over bonjour.
[Field ("MIDINetworkBonjourServiceType")]
NSString NetworkBonjourServiceType { get; }
}
@@ -395,6 +420,9 @@ interface Midi {
[DisableDefaultCtor]
[BaseType (typeof (NSObject), Name = "MIDINetworkConnection")]
interface MidiNetworkConnection {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("host", ArgumentSemantic.Retain)]
MidiNetworkHost Host { get; }
@@ -411,25 +439,46 @@ interface MidiNetworkConnection {
// default 'init' crash the application
[DisableDefaultCtor]
interface MidiNetworkSession {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("enabled")]
bool Enabled { [Bind ("isEnabled")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("networkPort")]
nint NetworkPort { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("networkName")]
string NetworkName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("localName")]
string LocalName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("connectionPolicy")]
MidiNetworkConnectionPolicy ConnectionPolicy { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Export ("defaultSession")]
MidiNetworkSession DefaultSession { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("contacts")]
NSSet Contacts { get; }
@@ -439,6 +488,9 @@ interface MidiNetworkSession {
[Export ("removeContact:")]
bool RemoveContact (MidiNetworkHost contact);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("connections")]
NSSet Connections { get; }
@@ -479,9 +531,15 @@ interface MidiNetworkSession {
[BaseType (typeof (NSObject), Name = "MIDICIProfile")]
[DisableDefaultCtor]
interface MidiCIProfile : NSSecureCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("name")]
string Name { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("profileID")]
NSData ProfileId { get; }
@@ -510,9 +568,15 @@ interface MidiCIProfile : NSSecureCoding {
[BaseType (typeof (NSObject), Name = "MIDICIProfileState")]
[DisableDefaultCtor]
interface MidiCIProfileState : NSSecureCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("enabledProfiles")]
MidiCIProfile [] EnabledProfiles { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("disabledProfiles")]
MidiCIProfile [] DisabledProfiles { get; }
@@ -545,12 +609,21 @@ interface MidiCIProfileState : NSSecureCoding {
[Deprecated (PlatformName.MacCatalyst, 18, 0, message: "No longer supported.")]
[Deprecated (PlatformName.MacOSX, 15, 0, message: "No longer supported.")]
interface MidiCISession {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("entity")]
uint Entity { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("supportsProfileCapability")]
bool SupportsProfileCapability { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("supportsPropertyCapability")]
bool SupportsPropertyCapability { get; }
@@ -562,6 +635,9 @@ interface MidiCISession {
[Export ("deviceIdentification")]
MidiCIDeviceIdentification_Blittable _DeviceIdentification { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("_DeviceIdentification.ToMidiCIDeviceIdentification ()", IsVirtual = true)]
MidiCIDeviceIdentification DeviceIdentification { get; }
#endif
@@ -575,6 +651,9 @@ interface MidiCISession {
[Export ("disableProfile:onChannel:error:")]
bool DisableProfile (MidiCIProfile profile, byte channel, [NullAllowed] out NSError outError);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("profileChangedCallback", ArgumentSemantic.Assign)]
MidiCIProfileChangedHandler ProfileChangedCallback { get; set; }
diff --git a/src/coreml.cs b/src/coreml.cs
index 4aa02e78fc69..e7a1f4cf8098 100644
--- a/src/coreml.cs
+++ b/src/coreml.cs
@@ -29,13 +29,21 @@ namespace CoreML {
[MacCatalyst (13, 1)]
[Native]
public enum MLFeatureType : long {
+ /// An invalid value for a feature.
Invalid = 0,
+ /// A 64-bit integer feature.
Int64 = 1,
+ /// A double-precision floating-point value feature.
Double = 2,
+ /// A string feature.
String = 3,
+ /// An image feature.
Image = 4,
+ /// A multidimensional array feature.
MultiArray = 5,
+ /// A dictionary / map feature. The dictionary is of type T:System.Object -> .
Dictionary = 6,
+ /// Sequence data, such as a time series or words ordered as text.
[MacCatalyst (13, 1)]
Sequence = 7,
[TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
@@ -79,8 +87,11 @@ public enum MLMultiArrayDataType : long {
[MacCatalyst (13, 1)]
[Native]
public enum MLImageSizeConstraintType : long {
+ /// The form of the constraint is unknown.
Unspecified = 0,
+ /// Only a specific set of sizes is allowed.
Enumerated = 2,
+ /// The allowed sizes are described using ranges.
Range = 3,
}
@@ -96,8 +107,11 @@ public enum MLMultiArrayShapeConstraintType : long {
[MacCatalyst (13, 1)]
[Native]
public enum MLComputeUnits : long {
+ /// To be added.
CpuOnly = 0,
+ /// To be added.
CpuAndGpu = 1,
+ /// To be added.
All = 2,
CPUAndNeuralEngine = 3,
}
@@ -135,6 +149,9 @@ public enum MLReshapeFrequencyHint : long {
[BaseType (typeof (NSObject))]
interface MLDictionaryFeatureProvider : MLFeatureProvider, NSSecureCoding {
+ /// Gets the underlying (String -> ).
+ /// To be added.
+ /// To be added.
[Export ("dictionary")]
NSDictionary Dictionary { get; }
@@ -147,12 +164,21 @@ interface MLDictionaryFeatureProvider : MLFeatureProvider, NSSecureCoding {
[BaseType (typeof (NSObject))]
interface MLFeatureDescription : NSCopying, NSSecureCoding {
+ /// A developer-meaningful name for this feature.
+ /// To be added.
+ /// To be added.
[Export ("name")]
string Name { get; }
+ /// Gets the of this feature.
+ /// To be added.
+ /// To be added.
[Export ("type")]
MLFeatureType Type { get; }
+ /// Gets whether this feature may not be present in a valid model.
+ /// To be added.
+ /// To be added.
[Export ("optional")]
bool Optional { [Bind ("isOptional")] get; }
@@ -161,15 +187,36 @@ interface MLFeatureDescription : NSCopying, NSSecureCoding {
// Category MLFeatureDescription (MLFeatureValueConstraints)
+ /// Gets the constraint for a multidimensional array.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("multiArrayConstraint", ArgumentSemantic.Assign)]
MLMultiArrayConstraint MultiArrayConstraint { get; }
+ /// Gets the constraint for an image.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("imageConstraint", ArgumentSemantic.Assign)]
MLImageConstraint ImageConstraint { get; }
+ /// Gets the key constraint for a dictionary.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("dictionaryConstraint", ArgumentSemantic.Assign)]
MLDictionaryConstraint DictionaryConstraint { get; }
+ /// Gets the , if any, that describes allowable variations in the feature.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("sequenceConstraint")]
MLSequenceConstraint SequenceConstraint { get; }
@@ -201,30 +248,64 @@ interface MLFeatureProvider {
[BaseType (typeof (NSObject))]
interface MLFeatureValue : NSCopying, NSSecureCoding {
+ /// Gets the kind of this .
+ /// To be added.
+ /// To be added.
[Export ("type")]
MLFeatureType Type { get; }
+ /// Gets whether the underlying value is undefined.
+ ///
+ /// if the value is undefined.
+ /// To be added.
[Export ("undefined")]
bool Undefined { [Bind ("isUndefined")] get; }
+ /// Gets the underlying T:System.Int64 feature value.
+ /// To be added.
+ /// To be added.
[Export ("int64Value")]
long Int64Value { get; }
+ /// Gets the underlying T:System.Double feature value.
+ /// To be added.
+ /// To be added.
[Export ("doubleValue")]
double DoubleValue { get; }
+ /// Gets the underlying T:System.String feature value.
+ /// To be added.
+ /// To be added.
[Export ("stringValue")]
string StringValue { get; }
+ /// Gets the underlying feature value.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("multiArrayValue")]
MLMultiArray MultiArrayValue { get; }
+ /// Gets the underlying (Object->NSNumber) feature value.
+ /// To be added.
+ /// To be added.
[Export ("dictionaryValue")]
NSDictionary DictionaryValue { get; }
+ /// Static factory method to create a whose kind is .
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("imageBufferValue")]
CVPixelBuffer ImageBufferValue { get; }
+ /// Gets the underlying value.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("sequenceValue")]
MLSequence SequenceValue { get; }
@@ -410,9 +491,15 @@ interface MLFeatureValueImageOption {
[BaseType (typeof (NSObject))]
interface MLModel {
+ /// A developer-meaningful description of this .
+ /// To be added.
+ /// A properly-specified contains all the detail necessary for a user of the model to properly create inputs and interpret outputs. For instance, image resolution, column- vs. row-major matrix forms, etc.
[Export ("modelDescription")]
MLModelDescription ModelDescription { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("configuration")]
MLModelConfiguration Configuration { get; }
@@ -594,6 +681,9 @@ interface MLModelMetadata {
[BaseType (typeof (NSObject))]
interface MLMultiArray : NSSecureCoding {
+ /// Gets a pointer to the raw array data.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 13, 0, message: "Use 'GetBytes (Action)' or 'GetMutableBytes' async methods instead.")]
[Deprecated (PlatformName.iOS, 16, 0, message: "Use 'GetBytes (Action)' or 'GetMutableBytes' async methods instead.")]
[Deprecated (PlatformName.TvOS, 16, 0, message: "Use 'GetBytes (Action)' or 'GetMutableBytes' async methods instead.")]
@@ -601,6 +691,9 @@ interface MLMultiArray : NSSecureCoding {
[Export ("dataPointer")]
IntPtr DataPointer { get; }
+ /// The type of the data elements stored in the array.
+ /// To be added.
+ /// To be added.
[Export ("dataType")]
MLMultiArrayDataType DataType { get; }
@@ -612,6 +705,9 @@ interface MLMultiArray : NSSecureCoding {
[Export ("strides")]
IntPtr _Strides { get; }
+ /// The total number of elements in the array.
+ /// To be added.
+ /// To be added.
[Export ("count")]
nint Count { get; }
@@ -692,6 +788,9 @@ interface MLMultiArray : NSSecureCoding {
[BaseType (typeof (NSObject))]
interface MLDictionaryConstraint : NSSecureCoding {
+ /// Gets the type for keys in a dictionary.
+ /// To be added.
+ /// To be added.
[Export ("keyType")]
MLFeatureType KeyType { get; }
}
@@ -702,15 +801,27 @@ interface MLDictionaryConstraint : NSSecureCoding {
[BaseType (typeof (NSObject))]
interface MLImageConstraint : NSSecureCoding {
+ /// Gets the height of the image, in pixels.
+ /// To be added.
+ /// To be added.
[Export ("pixelsHigh")]
nint PixelsHigh { get; }
+ /// Gets the width of the image, in pixels.
+ /// To be added.
+ /// To be added.
[Export ("pixelsWide")]
nint PixelsWide { get; }
+ /// Gets the pixel format for the image.
+ /// To be added.
+ /// To be added.
[Export ("pixelFormatType")]
uint PixelFormatType { get; }
+ /// Gets the , if it exists.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("sizeConstraint")]
MLImageSizeConstraint SizeConstraint { get; }
@@ -726,9 +837,15 @@ interface MLMultiArrayConstraint : NSSecureCoding {
[Export ("shape")]
IntPtr _Shape { get; }
+ /// Gets the type of data that is stored in the array.
+ /// To be added.
+ /// To be added.
[Export ("dataType")]
MLMultiArrayDataType DataType { get; }
+ /// Gets the , if any, describing constraints on the shape of the tensor.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("shapeConstraint")]
MLMultiArrayShapeConstraint ShapeConstraint { get; }
@@ -785,6 +902,9 @@ interface MLCustomLayer {
[DisableDefaultCtor]
interface MLArrayBatchProvider : MLBatchProvider {
+ /// Retrieves all the objects in this batch.
+ /// To be added.
+ /// To be added.
[Export ("array")]
IMLFeatureProvider [] Array { get; }
@@ -841,9 +961,15 @@ interface MLCustomModel {
[DisableDefaultCtor]
interface MLImageSize : NSSecureCoding {
+ /// The expected width, in pixels.
+ /// To be added.
+ /// To be added.
[Export ("pixelsWide")]
nint PixelsWide { get; }
+ /// The expected height, in pixels.
+ /// To be added.
+ /// To be added.
[Export ("pixelsHigh")]
nint PixelsHigh { get; }
}
@@ -854,15 +980,27 @@ interface MLImageSize : NSSecureCoding {
[DisableDefaultCtor]
interface MLImageSizeConstraint : NSSecureCoding {
+ /// Gets the type of constraint.
+ /// To be added.
+ /// To be added.
[Export ("type")]
MLImageSizeConstraintType Type { get; }
+ /// Gets an that describes the allowable heights, in pixels, of image inputs.
+ /// To be added.
+ /// To be added.
[Export ("pixelsWideRange")]
NSRange PixelsWideRange { get; }
+ /// Gets an that describes the allowable heights, in pixels, of image inputs.
+ /// To be added.
+ /// To be added.
[Export ("pixelsHighRange")]
NSRange PixelsHighRange { get; }
+ /// Gets the array of specific image sizes allowed by the model.
+ /// To be added.
+ /// To be added.
[Export ("enumeratedImageSizes")]
MLImageSize [] EnumeratedImageSizes { get; }
}
diff --git a/src/corespotlight.cs b/src/corespotlight.cs
index 2151a172872a..595c9d1aa3a2 100644
--- a/src/corespotlight.cs
+++ b/src/corespotlight.cs
@@ -40,16 +40,34 @@ interface CSPerson : NSSecureCoding, NSCopying {
[Export ("initWithDisplayName:handles:handleIdentifier:")]
NativeHandle Constructor ([NullAllowed] string displayName, string [] handles, NSString handleIdentifier);
+ /// Gets the display name for the person.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("displayName")]
string DisplayName { get; }
+ /// Gets a list of contact handles for the person.
+ /// To be added.
+ /// To be added.
[Export ("handles")]
string [] Handles { get; }
+ /// Gets the key that represents the resource type that the handle represents.
+ /// To be added.
+ /// To be added.
[Export ("handleIdentifier")]
NSString HandleIdentifier { get; }
+ /// Gets or sets the contact identifier for the CSPerson.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// Setting this property to the property for the contact enables direct lookup of the contact.
[NullAllowed]
[Export ("contactIdentifier")]
string ContactIdentifier { get; set; }
@@ -65,14 +83,26 @@ interface CSPerson : NSSecureCoding, NSCopying {
[BaseType (typeof (NSObject))]
interface CSSearchableIndex {
+ /// Gets or sets the delegate that responds to requests for index-related tasks.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("indexDelegate", ArgumentSemantic.Weak)]
[NullAllowed]
ICSSearchableIndexDelegate IndexDelegate { get; set; }
+ /// Gets a Boolean value that tells whether indexing is available.
+ /// To be added.
+ /// To be added.
[Static]
[Export ("isIndexingAvailable")]
bool IsIndexingAvailable { get; }
+ /// Gets the default search index for the device.
+ /// To be added.
+ /// To be added.
[Static]
[Export ("defaultSearchableIndex")]
CSSearchableIndex DefaultSearchableIndex { get; }
@@ -201,16 +231,28 @@ interface CSSearchableIndexDelegate {
[BaseType (typeof (NSObject))]
interface CSSearchableItem : NSSecureCoding, NSCopying {
+ /// Gets the action type for the searchable item.
+ /// To be added.
+ /// To be added.
[Field ("CSSearchableItemActionType")]
NSString ActionType { get; }
+ /// Gets the key for the item's unique user info dictionary.
+ /// To be added.
+ /// To be added.
[Field ("CSSearchableItemActivityIdentifier")]
NSString ActivityIdentifier { get; }
+ /// Gets a value that tells whether the continuation action is a search or query.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("CSQueryContinuationActionType")]
NSString ContinuationActionType { get; }
+ /// Gets the user info key for the current query.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("CSSearchQueryString")]
NSString QueryString { get; }
@@ -218,17 +260,35 @@ interface CSSearchableItem : NSSecureCoding, NSCopying {
[Export ("initWithUniqueIdentifier:domainIdentifier:attributeSet:")]
NativeHandle Constructor ([NullAllowed] string uniqueIdentifier, [NullAllowed] string domainIdentifier, CSSearchableItemAttributeSet attributeSet);
+ /// Gets or sets the value that developers can use to uniquely identify the searchable item within their applications.
+ /// To be added.
+ /// To be added.
[Export ("uniqueIdentifier")]
string UniqueIdentifier { get; set; }
+ /// Gets or sets the optional domain identifier or owner identifier.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("domainIdentifier")]
string DomainIdentifier { get; set; }
+ /// Gets or sets the searchable item's expiration date.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // <- null_resettable
[Export ("expirationDate")]
NSDate ExpirationDate { get; set; }
+ /// Gets or sets the dictionary of attributes for the searchable item.
+ /// To be added.
+ /// To be added.
[Export ("attributeSet", ArgumentSemantic.Strong)]
CSSearchableItemAttributeSet AttributeSet { get; set; }
@@ -273,18 +333,33 @@ interface CSCustomAttributeKey : NSCopying, NSSecureCoding {
[Export ("initWithKeyName:searchable:searchableByDefault:unique:multiValued:")]
NativeHandle Constructor (string keyName, bool searchable, bool searchableByDefault, bool unique, bool multiValued);
+ /// Gets the attribute key name.
+ /// To be added.
+ /// To be added.
[Export ("keyName")]
string KeyName { get; }
+ /// Gets a value that tells whether the attribute can be used as a search word. The default is .
+ /// To be added.
+ /// To be added.
[Export ("searchable")]
bool Searchable { [Bind ("isSearchable")] get; }
+ /// Gets a value that tells whether the attribute is searchable by default. The default is .
+ /// To be added.
+ /// To be added.
[Export ("searchableByDefault")]
bool SearchableByDefault { [Bind ("isSearchableByDefault")] get; }
+ /// Gets a value that tells whether the attribute should be treated as unique in order to save storage space. The default is .
+ /// To be added.
+ /// To be added.
[Export ("unique")]
bool Unique { [Bind ("isUnique")] get; }
+ /// Gets a value that tells whether the attribute will likely be associated with arrays, hashes, or other compound values. The default is .
+ /// To be added.
+ /// To be added.
[Export ("multiValued")]
bool MultiValued { [Bind ("isMultiValued")] get; }
}
@@ -294,21 +369,39 @@ interface CSCustomAttributeKey : NSCopying, NSSecureCoding {
[Static]
interface CSMailboxKey {
+ /// The key for the Inbox.
+ /// To be added.
+ /// To be added.
[Field ("CSMailboxInbox")]
NSString Inbox { get; }
+ /// The key for the Drafts mailbox.
+ /// To be added.
+ /// To be added.
[Field ("CSMailboxDrafts")]
NSString Drafts { get; }
+ /// The key for the Sent mailbox.
+ /// To be added.
+ /// To be added.
[Field ("CSMailboxSent")]
NSString Sent { get; }
+ /// The key for the Junk mailbox.
+ /// To be added.
+ /// To be added.
[Field ("CSMailboxJunk")]
NSString Junk { get; }
+ /// The key for the Trash mailbox.
+ /// To be added.
+ /// To be added.
[Field ("CSMailboxTrash")]
NSString Trash { get; }
+ /// The key for the Archive mailbox.
+ /// To be added.
+ /// To be added.
[Field ("CSMailboxArchive")]
NSString Archive { get; }
}
@@ -345,6 +438,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("theme")]
string Theme { get; set; }
+ /// Gets or sets a description for an item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contentDescription")]
string ContentDescription { get; set; }
@@ -353,6 +452,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("identifier")]
string Identifier { get; set; }
+ /// Gets or sets an intended audience descriptor for a media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("audiences")]
string [] Audiences { get; set; }
@@ -377,6 +482,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("securityMethod")]
string SecurityMethod { get; set; }
+ /// The name of the software tool that was used to create an item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("creator")]
string Creator { get; set; }
@@ -396,10 +507,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
// CSSearchableItemAttributeSet_Events.h
// CSSearchableItemAttributeSet (CSEvents) Category
+ /// Gets or sets the date at which an item is due.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("dueDate", ArgumentSemantic.Strong)]
NSDate DueDate { get; set; }
+ /// Gets or sets the date on which an item was finished.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("completionDate", ArgumentSemantic.Strong)]
NSDate CompletionDate { get; set; }
@@ -416,6 +539,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("importantDates")]
NSDate [] ImportantDates { get; set; }
+ /// Gets a value that tells whether an event is an all-day event.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("allDay", ArgumentSemantic.Strong)]
[NullAllowed]
NSNumber AllDay { get; set; }
@@ -423,10 +552,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
// CSSearchableItemAttributeSet_General.h
// CSSearchableItemAttributeSet (CSGeneral) Category
+ /// Gets or sets the display name for an item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("displayName")]
string DisplayName { get; set; }
+ /// Gets or sets an array of localized display names for an item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("alternateNames")]
string [] AlternateNames { get; set; }
@@ -435,6 +576,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("path")]
string Path { get; set; }
+ /// Gets or sets the URL of indexable content.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contentURL", ArgumentSemantic.Strong)]
NSUrl ContentUrl { get; set; }
@@ -455,10 +602,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("metadataModificationDate", ArgumentSemantic.Strong)]
NSDate MetadataModificationDate { get; set; }
+ /// Gets or sets the Uniform Type Identifier (UTI), of an item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contentType")]
string ContentType { get; set; }
+ /// Gets or sets the hierarchy of types for an item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contentTypeTree")]
string [] ContentTypeTree { get; set; }
@@ -479,6 +638,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[NullAllowed, Export ("weakRelatedUniqueIdentifier", ArgumentSemantic.Copy)]
string WeakRelatedUniqueIdentifier { get; set; }
+ /// Gets or sets a tag that can be used to group items for deletion.
+ ///
+ /// Developers can set this value to to remove the item from all groups.
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("domainIdentifier")]
string DomainIdentifier { get; set; }
@@ -498,10 +663,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("pixelCount", ArgumentSemantic.Strong)]
NSNumber PixelCount { get; set; }
+ /// Gets or sets a string representation, such as RGB, of a color space model for an image item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("colorSpace")]
string ColorSpace { get; set; }
+ /// Gets or sets the bit depth of image or audio items.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("bitsPerSample", ArgumentSemantic.Strong)]
NSNumber BitsPerSample { get; set; }
@@ -518,14 +695,32 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("focalLength35mm", ArgumentSemantic.Strong)]
NSNumber FocalLength35mm { [Bind ("isFocalLength35mm")] get; set; }
+ /// Gets or sets the manufacturer of the device that captured an image.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("acquisitionMake")]
string AcquisitionMake { get; set; }
+ /// Gets or sets the model of the device that captured an image.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("acquisitionModel")]
string AcquisitionModel { get; set; }
+ /// Gets or sets the owner of the camera that captured an image.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("cameraOwner")]
string CameraOwner { get; set; }
@@ -550,6 +745,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("whiteBalance", ArgumentSemantic.Strong)]
NSNumber WhiteBalance { get; set; }
+ /// Gets or sets the logarithmic APEX value that describes the aperture of the capturing device at the time that an image was captured.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("aperture", ArgumentSemantic.Strong)]
NSNumber Aperture { get; set; }
@@ -625,18 +826,42 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("projects")]
string [] Projects { get; set; }
+ /// Gets or sets the date on which an item was downloaded.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("downloadedDate", ArgumentSemantic.Strong)]
NSDate DownloadedDate { get; set; }
+ /// Gets or sets an array of URLs, email subject lines, ore etc., that represent the sources from which a media item was obtained.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contentSources")]
string [] ContentSources { get; set; }
+ /// Gets or sets a comment for a media file.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("comment")]
string Comment { get; set; }
+ /// Gets or sets the date that a media item was copyrighted.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("copyright")]
string Copyright { get; set; }
@@ -645,14 +870,32 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("lastUsedDate", ArgumentSemantic.Strong)]
NSDate LastUsedDate { get; set; }
+ /// Gets or sets the creation date of an item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contentCreationDate", ArgumentSemantic.Strong)]
NSDate ContentCreationDate { get; set; }
+ /// Gets or sets the date when a content item was most recently modified.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contentModificationDate", ArgumentSemantic.Strong)]
NSDate ContentModificationDate { get; set; }
+ /// Gets or sets the date that a media item was added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("addedDate", ArgumentSemantic.Strong)]
NSDate AddedDate { get; set; }
@@ -661,10 +904,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("duration", ArgumentSemantic.Strong)]
NSNumber Duration { get; set; }
+ /// Gets or sets the list of the names of contacts who are associated with an item, but who are not the authors of the item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contactKeywords")]
string [] ContactKeywords { get; set; }
+ /// Gets or sets the codecs that were used to encode a media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("codecs")]
string [] Codecs { get; set; }
@@ -685,10 +940,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("videoBitRate", ArgumentSemantic.Strong)]
NSNumber VideoBitRate { get; set; }
+ /// Gets or sets the bitrate of the audio portion of a media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("audioBitRate", ArgumentSemantic.Strong)]
NSNumber AudioBitRate { get; set; }
+ /// Gets or sets a value that is 0 to represent "fast start" and 1 to represent the Real Time Streaming Protocol.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("deliveryType", ArgumentSemantic.Strong)]
NSNumber DeliveryType { get; set; }
@@ -713,10 +980,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("publishers")]
string [] Publishers { get; set; }
+ /// Gets or sets a list of contributors to the production of a media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contributors")]
string [] Contributors { get; set; }
+ /// Gets or sets an arbitrary string that is intended to represent the geographica or temporal scope of a media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("coverage")]
string [] Coverage { get; set; }
@@ -737,6 +1016,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("information")]
string Information { get; set; }
+ /// Gets or sets the director of a media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("director")]
string Director { get; set; }
@@ -765,6 +1050,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("local", ArgumentSemantic.Strong)]
NSNumber Local { [Bind ("isLocal")] get; set; }
+ /// Gets or sets a value that represents whether a media item is explicit.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("contentRating", ArgumentSemantic.Strong)]
NSNumber ContentRating { get; set; }
@@ -776,10 +1067,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
// CSSearchableItemAttributeSet_Media.h
// CSSearchableItemAttributeSet (CSMusic) Category
+ /// Gets or sets the frequency at which audio data was sampled when it was recorded, in Hz.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("audioSampleRate", ArgumentSemantic.Strong)]
NSNumber AudioSampleRate { get; set; }
+ /// Gets or sets the number of channels in an audio data file.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("audioChannelCount", ArgumentSemantic.Strong)]
NSNumber AudioChannelCount { get; set; }
@@ -796,10 +1099,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("timeSignature")]
string TimeSignature { get; set; }
+ /// Gets or sets the name of the application that encoded the audio data in a file.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("audioEncodingApplication")]
string AudioEncodingApplication { get; set; }
+ /// Gets or sets the composer for an audio media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("composer")]
string Composer { get; set; }
@@ -808,14 +1123,32 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("lyricist")]
string Lyricist { get; set; }
+ /// Gets or sets the album for audio items.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("album")]
string Album { get; set; }
+ /// Gets or sets the artist for a media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("artist")]
string Artist { get; set; }
+ /// Gets or sets the track number of an audio media item.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("audioTrackNumber", ArgumentSemantic.Strong)]
NSNumber AudioTrackNumber { get; set; }
@@ -843,10 +1176,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
// CSSearchableItemAttributeSet_Messaging.h
// CSSearchableItemAttributeSet (CSMessaging) Category
+ /// Gets or sets the account identifier for a message.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("accountIdentifier")]
string AccountIdentifier { get; set; }
+ /// Gets or sets an array of account handles that a message is associated with.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("accountHandles")]
string [] AccountHandles { get; set; }
@@ -859,6 +1204,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("textContent")]
string TextContent { get; set; }
+ /// Gets or sets an array of objects that represent the authors of a message.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("authors", ArgumentSemantic.Copy)]
CSPerson [] Authors { get; set; }
@@ -867,6 +1218,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("primaryRecipients", ArgumentSemantic.Copy)]
CSPerson [] PrimaryRecipients { get; set; }
+ /// Gets or sets an array of objects that comprise the recipients on the Cc: field.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("additionalRecipients", ArgumentSemantic.Copy)]
CSPerson [] AdditionalRecipients { get; set; }
@@ -883,6 +1240,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("mailboxIdentifiers")]
string [] MailboxIdentifiers { get; set; }
+ /// Gets or sets the list of names of the people who have authored a message.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("authorNames")]
string [] AuthorNames { get; set; }
@@ -891,6 +1254,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("recipientNames")]
string [] RecipientNames { get; set; }
+ /// Gets or sets an array of author email addresses.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("authorEmailAddresses")]
string [] AuthorEmailAddresses { get; set; }
@@ -899,6 +1268,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("recipientEmailAddresses")]
string [] RecipientEmailAddresses { get; set; }
+ /// Gets or sets an array of author addresses.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("authorAddresses")]
string [] AuthorAddresses { get; set; }
@@ -933,6 +1308,12 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("instructions")]
string Instructions { get; set; }
+ /// Gets or sets the city of an item's origin.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("city")]
string City { get; set; }
@@ -941,10 +1322,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
[Export ("stateOrProvince")]
string StateOrProvince { get; set; }
+ /// Gets or sets the name of the country were a media item was created.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("country")]
string Country { get; set; }
+ /// Gets or sets the altitude, in meters, above the WGS84 datum sea level.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("altitude", ArgumentSemantic.Strong)]
NSNumber Altitude { get; set; }
@@ -1066,15 +1459,39 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {
// CSContainment
+ /// Gets or sets the title of the item's container.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("containerTitle")]
string ContainerTitle { get; set; }
+ /// Gets or sets the localized container display name.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("containerDisplayName")]
string ContainerDisplayName { get; set; }
+ /// Gets or sets the identifer of the item's container.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("containerIdentifier")]
string ContainerIdentifier { get; set; }
+ /// Gets or sets the order of the item within its container.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("containerOrder", ArgumentSemantic.Strong)]
NSNumber ContainerOrder { get; set; }
@@ -1153,18 +1570,39 @@ interface CSSearchQuery {
[DesignatedInitializer]
NativeHandle Constructor (string queryString, [NullAllowed] CSSearchQueryContext queryContext);
+ /// Gets a value that tells whether the query has been canceled.
+ /// A value that tells whether the query has been canceled.
+ /// To be added.
[Export ("cancelled")]
bool Cancelled { [Bind ("isCancelled")] get; }
+ /// Gets the current number of found items.
+ /// The current number of found items.
+ /// This number will grow as more search results become ready.
[Export ("foundItemCount")]
nuint FoundItemCount { get; }
+ /// Gets or sets a handler that, if it is not , is run when a batch of search results is ready.
+ ///
+ /// A a handler that, if it is not , is run when a batch of search results is ready.
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("foundItemsHandler", ArgumentSemantic.Copy)]
Action FoundItemsHandler { get; set; }
+ /// Gets or sets a handler that, if it is not , is run when the search completes.
+ ///
+ /// A handler that, if supplied, is run when the search completes.
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("completionHandler", ArgumentSemantic.Copy)]
Action CompletionHandler { get; set; }
+ /// Gets or sets an array of protection classes for the indexed data.
+ /// To be added.
+ /// To be added.
[Export ("protectionClasses", ArgumentSemantic.Copy)]
string [] ProtectionClasses { get; set; }
diff --git a/src/coretelephony.cs b/src/coretelephony.cs
index 95e9bfb4d804..1646bb3b50e2 100644
--- a/src/coretelephony.cs
+++ b/src/coretelephony.cs
@@ -11,9 +11,15 @@ namespace CoreTelephony {
[Deprecated (PlatformName.iOS, 10, 0, message: Constants.UseCallKitInstead)]
[BaseType (typeof (NSObject))]
interface CTCall {
+ /// Developers should not use this deprecated property. Developers should use 'CallKit' instead.
+ /// To be added.
+ /// To be added.
[Export ("callID")]
string CallID { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("callState")]
string CallState { get; }
@@ -167,10 +173,19 @@ interface CTTelephonyNetworkInfo {
[Deprecated (PlatformName.iOS, 10, 0, message: Constants.UseCallKitInstead)]
[BaseType (typeof (NSObject))]
interface CTCallCenter {
+ /// Developers should not use this deprecated property. Developers should use 'CallKit' instead.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("callEventHandler")]
Action CallEventHandler { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("currentCalls")]
[NullAllowed]
NSSet CurrentCalls { get; }
@@ -185,21 +200,36 @@ interface CTCallCenter {
[MacCatalyst (14, 0)]
[BaseType (typeof (NSObject))]
interface CTCarrier {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("mobileCountryCode")]
string MobileCountryCode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("mobileNetworkCode")]
string MobileNetworkCode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("isoCountryCode")]
string IsoCountryCode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("allowsVOIP")]
bool AllowsVoip { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("carrierName")]
string CarrierName { get; }
diff --git a/src/coretext.cs b/src/coretext.cs
index 40d28ebdfb86..e0009852ed45 100644
--- a/src/coretext.cs
+++ b/src/coretext.cs
@@ -18,15 +18,27 @@ namespace CoreText {
/// A class whose static properties can be used as keys for the used by .
[Static]
interface CTFontFeatureKey {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCTFontFeatureTypeIdentifierKey")]
NSString Identifier { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCTFontFeatureTypeNameKey")]
NSString Name { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCTFontFeatureTypeExclusiveKey")]
NSString Exclusive { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCTFontFeatureTypeSelectorsKey")]
NSString Selectors { get; }
}
@@ -34,15 +46,27 @@ interface CTFontFeatureKey {
/// A class whose static properties can be used as keys for the used by .
[Static]
interface CTFontFeatureSelectorKey {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCTFontFeatureSelectorIdentifierKey")]
NSString Identifier { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCTFontFeatureSelectorNameKey")]
NSString Name { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCTFontFeatureSelectorDefaultKey")]
NSString Default { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCTFontFeatureSelectorSettingKey")]
NSString Setting { get; }
diff --git a/src/corevideo.cs b/src/corevideo.cs
index 2f0e1844d458..515aeef62389 100644
--- a/src/corevideo.cs
+++ b/src/corevideo.cs
@@ -27,18 +27,33 @@ interface CVPixelBufferPoolAllocationSettings {
[Partial]
interface CVBuffer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVBufferMovieTimeKey")]
NSString MovieTimeKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVBufferTimeValueKey")]
NSString TimeValueKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVBufferTimeScaleKey")]
NSString TimeScaleKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVBufferPropagatedAttachmentsKey")]
NSString PropagatedAttachmentsKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVBufferNonPropagatedAttachmentsKey")]
NSString NonPropagatedAttachmentsKey { get; }
}
@@ -407,45 +422,87 @@ enum CVImageBufferYCbCrMatrix {
[Partial]
interface CVPixelBuffer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferPixelFormatTypeKey")]
NSString PixelFormatTypeKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferMemoryAllocatorKey")]
NSString MemoryAllocatorKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferWidthKey")]
NSString WidthKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferHeightKey")]
NSString HeightKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferExtendedPixelsLeftKey")]
NSString ExtendedPixelsLeftKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferExtendedPixelsTopKey")]
NSString ExtendedPixelsTopKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferExtendedPixelsRightKey")]
NSString ExtendedPixelsRightKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferExtendedPixelsBottomKey")]
NSString ExtendedPixelsBottomKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferBytesPerRowAlignmentKey")]
NSString BytesPerRowAlignmentKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferCGBitmapContextCompatibilityKey")]
NSString CGBitmapContextCompatibilityKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferCGImageCompatibilityKey")]
NSString CGImageCompatibilityKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferOpenGLCompatibilityKey")]
NSString OpenGLCompatibilityKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferIOSurfacePropertiesKey")]
NSString IOSurfacePropertiesKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferPlaneAlignmentKey")]
NSString PlaneAlignmentKey { get; }
@@ -459,10 +516,16 @@ interface CVPixelBuffer {
[Field ("kCVPixelBufferOpenGLESTextureCacheCompatibilityKey")]
NSString OpenGLESTextureCacheCompatibilityKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCVPixelBufferMetalCompatibilityKey")]
NSString MetalCompatibilityKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS, NoTV, NoMacCatalyst]
[Field ("kCVPixelBufferOpenGLTextureCacheCompatibilityKey")]
NSString OpenGLTextureCacheCompatibilityKey { get; }
@@ -515,9 +578,15 @@ interface CVPixelBuffer {
/// A reusable set of s.
[Partial]
interface CVPixelBufferPool {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferPoolMinimumBufferCountKey")]
NSString MinimumBufferCountKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCVPixelBufferPoolMaximumBufferAgeKey")]
NSString MaximumBufferAgeKey { get; }
}
diff --git a/src/externalaccessory.cs b/src/externalaccessory.cs
index 82bac4fbb29d..0247ccb6d0be 100644
--- a/src/externalaccessory.cs
+++ b/src/externalaccessory.cs
@@ -23,41 +23,82 @@ namespace ExternalAccessory {
// Objective-C exception thrown. Name: EAAccessoryInitException Reason: -init not supported. EAAccessoryManager is responsible for creating all objects.
[DisableDefaultCtor]
interface EAAccessory {
+ /// Gets a Boolean value that tells whether the accessory is connected to the device.
+ /// To be added.
+ /// To be added.
[Export ("connected")]
bool Connected { [Bind ("isConnected")] get; }
+ /// Gets the unique connection identifier.
+ /// To be added.
+ /// To be added.
[Export ("connectionID")]
nuint ConnectionID { get; }
[Export ("name")]
string Name { get; }
+ /// Gets the accessory manufacturer.
+ /// To be added.
+ /// To be added.
[Export ("manufacturer")]
string Manufacturer { get; }
+ /// Gets the model number for the accessory.
+ /// To be added.
+ /// To be added.
[Export ("modelNumber")]
string ModelNumber { get; }
+ /// Gets the serial number of the accessory.
+ /// To be added.
+ /// To be added.
[Export ("serialNumber")]
string SerialNumber { get; }
+ /// Gets the firmware revision for the accessory.
+ /// To be added.
+ /// To be added.
[Export ("firmwareRevision")]
string FirmwareRevision { get; }
+ /// Gets the hardware revision for the accessory.
+ /// To be added.
+ /// To be added.
[Export ("hardwareRevision")]
string HardwareRevision { get; }
+ /// Gets an array of descriptions of supported protocols for the accessory.
+ /// To be added.
+ /// To be added.
[Export ("protocolStrings")]
string [] ProtocolStrings { get; }
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
[Export ("delegate", ArgumentSemantic.Assign)]
[NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the ExternalAccessory.IEAAccessoryDelegate model class which acts as the class delegate.
+ /// The instance of the ExternalAccessory.IEAAccessoryDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
[NullAllowed]
IEAAccessoryDelegate Delegate { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 13, 0)]
[Deprecated (PlatformName.TvOS, 13, 0)]
[Deprecated (PlatformName.MacOSX, 10, 14)]
@@ -102,6 +143,9 @@ interface EAAccessoryManager {
[Export ("unregisterForLocalNotifications")]
void UnregisterForLocalNotifications ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("connectedAccessories")]
EAAccessory [] ConnectedAccessories { get; }
diff --git a/src/foundation.cs b/src/foundation.cs
index 98ee6f0a8983..30db043e65e5 100644
--- a/src/foundation.cs
+++ b/src/foundation.cs
@@ -641,6 +641,9 @@ partial interface NSAttributedString : NSCoding, NSMutableCopying, NSSecureCodin
[Export ("boundingRectWithSize:options:context:")]
CGRect GetBoundingRect (CGSize size, NSStringDrawingOptions options, [NullAllowed] NSStringDrawingContext context);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("size")]
CGSize Size { get; }
@@ -787,6 +790,9 @@ partial interface NSAttributedString : NSCoding, NSMutableCopying, NSSecureCodin
#if MONOMAC
[Field ("NSTextLayoutSectionOrientation", "AppKit")]
#else
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("NSTextLayoutSectionOrientation", "UIKit")]
#endif
NSString TextLayoutSectionOrientation { get; }
@@ -794,6 +800,9 @@ partial interface NSAttributedString : NSCoding, NSMutableCopying, NSSecureCodin
#if MONOMAC
[Field ("NSTextLayoutSectionRange", "AppKit")]
#else
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("NSTextLayoutSectionRange", "UIKit")]
#endif
NSString TextLayoutSectionRange { get; }
@@ -802,6 +811,9 @@ partial interface NSAttributedString : NSCoding, NSMutableCopying, NSSecureCodin
#if MONOMAC
[Field ("NSTextLayoutSectionsAttribute", "AppKit")]
#else
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("NSTextLayoutSectionsAttribute", "UIKit")]
#endif
NSString TextLayoutSectionsAttribute { get; }
@@ -1335,6 +1347,7 @@ interface NSCalendar : NSSecureCoding, NSCopying {
[MacCatalyst (13, 1)]
NSDate StartOfDayForDate (NSDate date);
+ ///
[MacCatalyst (13, 1)]
[Notification]
[Field ("NSCalendarDayChangedNotification")]
@@ -2064,9 +2077,15 @@ interface NSDateComponents : NSSecureCoding, NSCopying, INSCopying, INSSecureCod
[Export ("dayOfYear")]
nint DayOfYear { get; set; }
+ /// Whether the month is a leap month.
+ /// To be added.
+ /// To be added.
[Export ("leapMonth")]
bool IsLeapMonth { [Bind ("isLeapMonth")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("isValidDate")]
[MacCatalyst (13, 1)]
bool IsValidDate { get; }
@@ -10690,6 +10709,9 @@ partial interface NSBundle {
[Static]
NSArray _InternalAllBundles { get; }
+ /// An array of all the application's non-framework bundles.
+ /// To be added.
+ /// To be added.
[Obsolete ("Use the 'AllBundles' property instead.")]
[Wrap ("_InternalAllBundles")]
[Static]
@@ -10710,6 +10732,9 @@ partial interface NSBundle {
[Export ("load")]
bool Load ();
+ /// Whether this bundle is currently loaded.
+ /// To be added.
+ /// To be added.
[Export ("isLoaded")]
bool IsLoaded { get; }
@@ -10941,10 +10966,14 @@ interface NSBundleResourceRequest : NSProgressReporting {
[Export ("endAccessingResources")]
void EndAccessingResources ();
+ ///
[Field ("NSBundleResourceRequestLowDiskSpaceNotification")]
[Notification]
NSString LowDiskSpaceNotification { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("NSBundleResourceRequestLoadingPriorityUrgent")]
double LoadingPriorityUrgent { get; }
}
@@ -10993,6 +11022,13 @@ interface NSIndexPath : NSCoding, NSSecureCoding, NSCopying {
[Export ("row")]
nint LongRow { get; }
+ /// The index of a section within a (read-only).
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[NoMac]
[MacCatalyst (13, 1)]
[Export ("section")]
@@ -11015,6 +11051,11 @@ interface NSIndexPath : NSCoding, NSSecureCoding, NSCopying {
[Export ("indexPathForItem:inSection:")]
NSIndexPath FromItemSection (nint item, nint section);
+ /// The item component of this NSIndexPath.
+ ///
+ ///
+ ///
+ ///
[Export ("item")]
[MacCatalyst (13, 1)]
nint Item { get; }
@@ -18194,15 +18235,30 @@ interface NSAttributedStringDocumentAttributes {
NSAttributedStringDocumentAttributes DefaultAttributes { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
CGSize PaperSize { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoMac]
UIEdgeInsets PaperMargin { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
CGSize ViewSize { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
float ViewZoom { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
NSDocumentViewMode ViewMode { get; set; }
// The definition for this boolean is very specific in the header file:
@@ -18214,14 +18270,23 @@ interface NSAttributedStringDocumentAttributes {
// bool ReadOnly { get; set; }
// #endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
NSColor BackgroundColor { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
float HyphenationFactor {
get;
[PreSnippet ("if (value < 0 || value > 1.0f) throw new ArgumentOutOfRangeException (nameof (value), value, \"Value must be between 0 and 1\");")]
set;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
float DefaultTabInterval {
get;
[PreSnippet ("if (value < 0 || value > 1.0f) throw new ArgumentOutOfRangeException (nameof (value), value, \"Value must be between 0 and 1\");")]
diff --git a/src/gamecontroller.cs b/src/gamecontroller.cs
index 02468c4ce624..9621a82fb034 100644
--- a/src/gamecontroller.cs
+++ b/src/gamecontroller.cs
@@ -47,10 +47,18 @@ partial interface GCControllerElement {
// NOTE: ArgumentSemantic.Weak if ARC, ArgumentSemantic.Assign otherwise;
// currently MonoTouch is not ARC, neither is Xammac, so go with assign.
+ /// The that this is a part of.
+ /// To be added.
+ ///
+ /// If this is an element of another , this will hold the "parent" . (The D-Pad can be read as either a pair of elements or as four elements.)
+ ///
[NullAllowed]
[Export ("collection", ArgumentSemantic.Assign)]
GCControllerElement Collection { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("analog")]
bool IsAnalog { [Bind ("isAnalog")] get; }
@@ -103,10 +111,16 @@ partial interface GCControllerElement {
[DisableDefaultCtor] // return nil handle -> only exposed as getter
partial interface GCControllerAxisInput {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("valueChangedHandler", ArgumentSemantic.Copy)]
GCControllerAxisValueChangedHandler ValueChangedHandler { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("value")]
float Value { /* float, not CGFloat */
get;
@@ -135,10 +149,19 @@ partial interface GCControllerButtonInput {
void SetValueChangedHandler (GCControllerButtonValueChanged handler);
#endif
+ /// Handler that is called when the button pressure changes.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("valueChangedHandler", ArgumentSemantic.Copy)]
GCControllerButtonValueChanged ValueChangedHandler { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("value")]
float Value { /* float, not CGFloat */
get;
@@ -148,6 +171,9 @@ partial interface GCControllerButtonInput {
set;
}
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pressed")]
bool IsPressed { [Bind ("isPressed")] get; }
@@ -157,6 +183,12 @@ partial interface GCControllerButtonInput {
void SetPressedChangedHandler (GCControllerButtonValueChanged handler);
#endif
+ /// Handler that is called when the button press state changes.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed]
[Export ("pressedChangedHandler", ArgumentSemantic.Copy)]
@@ -184,25 +216,46 @@ partial interface GCControllerButtonInput {
[DisableDefaultCtor] // return nil handle -> only exposed as getter
partial interface GCControllerDirectionPad {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("valueChangedHandler", ArgumentSemantic.Copy)]
GCControllerDirectionPadValueChangedHandler ValueChangedHandler { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("xAxis")]
GCControllerAxisInput XAxis { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("yAxis")]
GCControllerAxisInput YAxis { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("up")]
GCControllerButtonInput Up { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("down")]
GCControllerButtonInput Down { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("left")]
GCControllerButtonInput Left { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("right")]
GCControllerButtonInput Right { get; }
@@ -272,6 +325,9 @@ partial interface GCGamepad {
[DisableDefaultCtor]
partial interface GCGamepadSnapshot {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("snapshotData", ArgumentSemantic.Copy)]
NSData SnapshotData { get; set; }
@@ -295,9 +351,15 @@ partial interface GCGamepadSnapshot {
[DisableDefaultCtor] // return nil handle -> only exposed as getter
partial interface GCExtendedGamepad {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controller", ArgumentSemantic.Assign)]
GCController Controller { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("valueChangedHandler", ArgumentSemantic.Copy)]
GCExtendedGamepadValueChangedHandler ValueChangedHandler { get; set; }
@@ -309,43 +371,82 @@ partial interface GCExtendedGamepad {
[Export ("saveSnapshot")]
GCExtendedGamepadSnapshot SaveSnapshot ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("dpad")]
GCControllerDirectionPad DPad { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("buttonA")]
GCControllerButtonInput ButtonA { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("buttonB")]
GCControllerButtonInput ButtonB { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("buttonX")]
GCControllerButtonInput ButtonX { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("buttonY")]
GCControllerButtonInput ButtonY { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("leftThumbstick")]
GCControllerDirectionPad LeftThumbstick { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("rightThumbstick")]
GCControllerDirectionPad RightThumbstick { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("leftShoulder")]
GCControllerButtonInput LeftShoulder { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("rightShoulder")]
GCControllerButtonInput RightShoulder { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("leftTrigger")]
GCControllerButtonInput LeftTrigger { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("rightTrigger")]
GCControllerButtonInput RightTrigger { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("leftThumbstickButton")]
GCControllerButtonInput LeftThumbstickButton { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("rightThumbstickButton")]
GCControllerButtonInput RightThumbstickButton { get; }
@@ -384,6 +485,9 @@ partial interface GCExtendedGamepad {
[DisableDefaultCtor]
partial interface GCExtendedGamepadSnapshot {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("snapshotData", ArgumentSemantic.Copy)]
NSData SnapshotData { get; set; }
@@ -393,6 +497,9 @@ partial interface GCExtendedGamepadSnapshot {
[Export ("initWithController:snapshotData:")]
NativeHandle Constructor (GCController controller, NSData data);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 15, message: "Use 'GCController.GetExtendedGamepadController()' instead.")]
[Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GCController.GetExtendedGamepadController()' instead.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GCController.GetExtendedGamepadController()' instead.")]
@@ -409,6 +516,9 @@ partial interface GCExtendedGamepadSnapshot {
[BaseType (typeof (NSObject))]
partial interface GCController : GCDevice {
+ /// Gets or sets a handler to run when the pause button is pressed.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 15, message: "Use the Menu button found on the controller's profile, if it exists.")]
[Deprecated (PlatformName.iOS, 13, 0, message: "Use the Menu button found on the controller's profile, if it exists.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Use the Menu button found on the controller's profile, if it exists.")]
@@ -417,13 +527,22 @@ partial interface GCController : GCDevice {
[Export ("controllerPausedHandler", ArgumentSemantic.Copy)]
Action ControllerPausedHandler { get; set; }
+ /// Gets the manufacturer name for the controller.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("vendorName", ArgumentSemantic.Copy)]
new string VendorName { get; }
+ /// Gets a Boolean value that tells whether the controller is attached via a cabled or wireless connection.
+ /// To be added.
+ /// To be added.
[Export ("attachedToDevice")]
bool AttachedToDevice { [Bind ("isAttachedToDevice")] get; }
+ /// Gets or sets the player index for the player who is assigned to the controller.
+ /// To be added.
+ /// To be added.
[Export ("playerIndex")]
#if NET
// enum only added in iOS9 / OSX 10.11 - but with compatible values
@@ -432,6 +551,10 @@ partial interface GCController : GCDevice {
nint PlayerIndex { get; set; }
#endif
+ /// If not null, the is a standard controller.
+ /// To be added.
+ /// To be added.
+ ///
[Deprecated (PlatformName.MacOSX, 10, 12)]
[Deprecated (PlatformName.iOS, 10, 0)]
[Deprecated (PlatformName.TvOS, 10, 0)]
@@ -440,14 +563,27 @@ partial interface GCController : GCDevice {
[Export ("gamepad", ArgumentSemantic.Retain)]
GCGamepad Gamepad { get; }
+ /// If not null, the is an extended controller.
+ /// To be added.
+ /// To be added.
+ ///
[NullAllowed]
[Export ("extendedGamepad", ArgumentSemantic.Retain)]
GCExtendedGamepad ExtendedGamepad { get; }
+ /// Gets the micro gamepad for the controller.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("microGamepad", ArgumentSemantic.Retain)]
GCMicroGamepad MicroGamepad { get; }
+ /// Gets an array that contains all of the connected controllers.
+ /// To be added.
+ /// To be added.
[Static, Export ("controllers")]
GCController [] Controllers { get; }
@@ -458,17 +594,25 @@ partial interface GCController : GCDevice {
[Static, Export ("stopWirelessControllerDiscovery")]
void StopWirelessControllerDiscovery ();
+ ///
[Notification, Field ("GCControllerDidConnectNotification")]
NSString DidConnectNotification { get; }
+ ///
[Notification, Field ("GCControllerDidDisconnectNotification")]
NSString DidDisconnectNotification { get; }
+ /// Gets the object that contains motion data, if the controller supports motion.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed]
[Export ("motion", ArgumentSemantic.Retain)]
GCMotion Motion { get; }
+ /// Gets or sets the dispatch queue for game controller input changes.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("handlerQueue", ArgumentSemantic.Retain)]
new DispatchQueue HandlerQueue { get; set; }
@@ -547,6 +691,9 @@ partial interface GCController : GCDevice {
[DisableDefaultCtor] // access thru GCController.Motion - returns a nil Handle
partial interface GCMotion {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Export ("controller", ArgumentSemantic.Assign)]
GCController Controller { get; }
@@ -557,10 +704,19 @@ partial interface GCMotion {
void SetValueChangedHandler (Action handler);
#endif
+ /// Handler that is called when a value changes.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed]
[Export ("valueChangedHandler", ArgumentSemantic.Copy)]
Action ValueChangedHandler { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("gravity", ArgumentSemantic.Assign)]
#if NET
GCAcceleration Gravity { get; }
@@ -568,6 +724,9 @@ partial interface GCMotion {
Vector3d Gravity { get; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("userAcceleration", ArgumentSemantic.Assign)]
#if NET
GCAcceleration UserAcceleration { get; }
@@ -575,6 +734,9 @@ partial interface GCMotion {
Vector3d UserAcceleration { get; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("attitude", ArgumentSemantic.Assign)]
#if NET
@@ -583,6 +745,9 @@ partial interface GCMotion {
Quaterniond Attitude { get; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("rotationRate", ArgumentSemantic.Assign)]
#if NET
@@ -591,6 +756,9 @@ partial interface GCMotion {
Vector3d RotationRate { get; }
#endif
+ /// Gets a Boolean value that tells whether the controller can return attitude and rotation data.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use 'HasAttitude' and 'HasRotationRate' instead.")]
[Deprecated (PlatformName.iOS, 14, 0, message: "Use 'HasAttitude' and 'HasRotationRate' instead.")]
[Deprecated (PlatformName.TvOS, 14, 0, message: "Use 'HasAttitude' and 'HasRotationRate' instead.")]
@@ -673,12 +841,26 @@ partial interface GCMotion {
[BaseType (typeof (GCPhysicalInputProfile))]
[DisableDefaultCtor]
interface GCMicroGamepad {
+ /// Gets the controller for this profile.
+ /// The controller for this profile.
+ /// To be added.
[Export ("controller", ArgumentSemantic.Assign)]
GCController Controller { get; }
+ /// Gets or sets a handler that is called whenever the state of any controller element changes
+ ///
+ /// A handler that is called whenever any immediate child element changes.
+ /// This value can be .
+ ///
+ ///
+ /// This handler is called once for each element change. It is only called for directly attached elements.
+ ///
[NullAllowed, Export ("valueChangedHandler", ArgumentSemantic.Copy)]
GCMicroGamepadValueChangedHandler ValueChangedHandler { get; set; }
+ /// Gest the current state of the controller.
+ /// The current state of the controller.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 15, message: "Use 'GCController.Capture()' instead.")]
[Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GCController.Capture()' instead.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GCController.Capture()' instead.")]
@@ -686,18 +868,34 @@ interface GCMicroGamepad {
[Export ("saveSnapshot")]
GCMicroGamepadSnapshot SaveSnapshot { get; }
+ /// Gets the D-pad.
+ /// The D-pad.
+ /// To be added.
[Export ("dpad", ArgumentSemantic.Retain)]
GCControllerDirectionPad Dpad { get; }
+ /// Gets the A button.
+ /// The A button.
+ /// To be added.
[Export ("buttonA", ArgumentSemantic.Retain)]
GCControllerButtonInput ButtonA { get; }
+ /// Gets the X button.
+ /// The X button.
+ /// To be added.
[Export ("buttonX", ArgumentSemantic.Retain)]
GCControllerButtonInput ButtonX { get; }
+ /// Gets or sets a value that controls whether D-pad values are measured from the physical center of the touchpad or from the point that the user first touches.
+ /// A value that controls whether D-pad values are measured from the physical center of the touchpad or from the point that the user first touches. The default is , to indicate that inputs are measured from the place that the user first touches.
+ /// To be added.
[Export ("reportsAbsoluteDpadValues")]
bool ReportsAbsoluteDpadValues { get; set; }
+ /// Gets or sets a value that controls whether the D-pad changes between portrait and landscape mode on the controller as its orientation changes.
+ ///
+ /// if the D-pad matches the device's orientation. Otherwise, . The default is .
+ /// To be added.
[Export ("allowsRotation")]
bool AllowsRotation { get; set; }
@@ -722,6 +920,9 @@ interface GCMicroGamepad {
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GCController.Capture()' instead.")]
[BaseType (typeof (GCMicroGamepad))]
interface GCMicroGamepadSnapshot {
+ /// Gets or sets the current snapshot data.
+ /// To be added.
+ /// To be added.
[Export ("snapshotData", ArgumentSemantic.Copy)]
NSData SnapshotData { get; set; }
@@ -731,6 +932,9 @@ interface GCMicroGamepadSnapshot {
[Export ("initWithController:snapshotData:")]
NativeHandle Constructor (GCController controller, NSData data);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 15, message: "Use 'GCController.GetMicroGamepadController()' instead.")]
[Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GCController.GetMicroGamepadController()' instead.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GCControler.GetMicroGamepadController()' instead.")]
@@ -752,6 +956,9 @@ interface GCEventViewController {
[PostGet ("NibBundle")]
NativeHandle Constructor ([NullAllowed] string nibName, [NullAllowed] NSBundle bundle);
+ /// Gets or sets a value that controls whether events are delivered through the responder chain.
+ /// A value that controls whether events are delivered through the responder chain.
+ /// To be added.
[Export ("controllerUserInteractionEnabled")]
bool ControllerUserInteractionEnabled { get; set; }
}
diff --git a/src/gamekit.cs b/src/gamekit.cs
index 407a381b191f..d0da837bed1d 100644
--- a/src/gamekit.cs
+++ b/src/gamekit.cs
@@ -150,15 +150,24 @@ interface GKVoiceChatService {
[Export ("receivedData:fromParticipantID:")]
void ReceivedData (NSData arbitraryData, string participantID);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("microphoneMuted")]
bool MicrophoneMuted { [Bind ("isMicrophoneMuted")] get; set; }
[Export ("remoteParticipantVolume")]
float RemoteParticipantVolume { get; set; } /* float, not CGFloat */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outputMeteringEnabled")]
bool OutputMeteringEnabled { [Bind ("isOutputMeteringEnabled")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("inputMeteringEnabled")]
bool InputMeteringEnabled { [Bind ("isInputMeteringEnabled")] get; set; }
@@ -193,6 +202,13 @@ interface GKSession {
[NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the GameKit.IGKSessionDelegate model class which acts as the class delegate.
+ /// The instance of the GameKit.IGKSessionDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
IGKSessionDelegate Delegate { get; set; }
@@ -211,6 +227,9 @@ interface GKSession {
[Export ("peerID")]
string PeerID { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("available")]
bool Available { [Bind ("isAvailable")] get; set; }
@@ -401,6 +420,9 @@ interface GKLeaderboard {
[Export ("initWithPlayers:")]
NativeHandle Constructor (GKPlayer [] players);
+ /// Gets a Boolean value that tells whether the leaderboard is currently retrieving scores.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 14, 0, message: "Use 'LoadEntries' instead.")]
[Deprecated (PlatformName.TvOS, 14, 0, message: "Use 'LoadEntries' instead.")]
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use 'LoadEntries' instead.")]
@@ -565,6 +587,7 @@ interface GKPlayer : NSSecureCoding {
[Async]
void LoadPlayersForIdentifiers (string [] identifiers, [NullAllowed] GKPlayersHandler completionHandler);
+ ///
[Field ("GKPlayerDidChangeNotificationName")]
[Notification]
// This name looks wrong, see the "Notification" at the end.
@@ -1341,6 +1364,9 @@ interface GKInvite {
[Export ("inviter", ArgumentSemantic.Retain)]
string Inviter { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("hosted", ArgumentSemantic.Assign)]
bool Hosted { [Bind ("isHosted")] get; }
@@ -1486,6 +1512,9 @@ interface GKMatchmakerViewController
[Export ("matchmakerDelegate", ArgumentSemantic.Assign)]
NSObject WeakMatchmakerDelegate { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NullAllowed]
[Wrap ("WeakMatchmakerDelegate")]
IGKMatchmakerViewControllerDelegate MatchmakerDelegate { get; set; }
@@ -1493,6 +1522,9 @@ interface GKMatchmakerViewController
[Export ("matchRequest", ArgumentSemantic.Strong)]
GKMatchRequest MatchRequest { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("hosted", ArgumentSemantic.Assign)]
bool Hosted { [Bind ("isHosted")] get; set; }
@@ -1760,6 +1792,9 @@ interface GKAchievementDescription : NSSecureCoding {
[Export ("maximumPoints", ArgumentSemantic.Assign)]
nint MaximumPoints { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("hidden", ArgumentSemantic.Assign)]
bool Hidden { [Bind ("isHidden")] get; }
@@ -1777,6 +1812,9 @@ interface GKAchievementDescription : NSSecureCoding {
[NullAllowed]
string GroupIdentifier { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("replayable", ArgumentSemantic.Assign)]
bool Replayable { [Bind ("isReplayable")] get; }
@@ -2059,6 +2097,13 @@ interface GKTurnBasedEventHandler {
[Export ("delegate", ArgumentSemantic.Assign), NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the GameKit.IGKTurnBasedEventHandlerDelegate model class which acts as the class delegate.
+ /// The instance of the GameKit.IGKTurnBasedEventHandlerDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
IGKTurnBasedEventHandlerDelegate Delegate { get; set; }
@@ -2181,10 +2226,18 @@ interface GKTurnBasedMatch {
[Async]
void SaveCurrentTurn (NSData matchData, [NullAllowed] Action completionHandler);
+ /// Represents the value associated with the constant GKTurnTimeoutDefault
+ ///
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("GKTurnTimeoutDefault"), Static]
double DefaultTimeout { get; }
+ /// Represents the value associated with the constant GKTurnTimeoutNone
+ ///
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("GKTurnTimeoutNone"), Static]
double NoTimeout { get; }
@@ -2458,6 +2511,13 @@ interface GKGameCenterViewController
[Export ("gameCenterDelegate", ArgumentSemantic.Weak), NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the GameKit.IGKGameCenterControllerDelegate model class which acts as the class delegate.
+ /// The instance of the GameKit.IGKGameCenterControllerDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
IGKGameCenterControllerDelegate Delegate { get; set; }
diff --git a/src/gameplaykit.cs b/src/gameplaykit.cs
index bd02a16bc913..32d900c6e0d8 100644
--- a/src/gameplaykit.cs
+++ b/src/gameplaykit.cs
@@ -55,9 +55,13 @@ public enum GKMeshGraphTriangulationMode : ulong {
[Native]
[MacCatalyst (13, 1)]
public enum GKRTreeSplitStrategy : long {
+ /// To be added.
Halve = 0,
+ /// To be added.
Linear = 1,
+ /// To be added.
Quadratic = 2,
+ /// To be added.
ReduceOverlap = 3
}
diff --git a/src/glkit.cs b/src/glkit.cs
index 3b1872076dec..1671887c7513 100644
--- a/src/glkit.cs
+++ b/src/glkit.cs
@@ -77,9 +77,15 @@ namespace GLKit {
[Static]
interface GLKModelError {
+ /// A value corresponding to the constant kGLKModelErrorDomain.
+ /// To be added.
+ /// To be added.
[Field ("kGLKModelErrorDomain")]
NSString Domain { get; }
+ /// A value corresponding to the constant kGLKModelErrorKey.
+ /// To be added.
+ /// To be added.
[Field ("kGLKModelErrorKey")]
NSString Key { get; }
}
@@ -92,54 +98,105 @@ interface GLKModelError {
[Deprecated (PlatformName.MacOSX, 10, 14, message: "Use 'Metal' instead.")]
[BaseType (typeof (NSObject))]
interface GLKBaseEffect : GLKNamedEffect {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("colorMaterialEnabled", ArgumentSemantic.Assign)]
bool ColorMaterialEnabled { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("useConstantColor", ArgumentSemantic.Assign)]
bool UseConstantColor { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("transform")]
GLKEffectPropertyTransform Transform { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("light0")]
GLKEffectPropertyLight Light0 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("light1")]
GLKEffectPropertyLight Light1 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("light2")]
GLKEffectPropertyLight Light2 { get; }
[Export ("lightingType", ArgumentSemantic.Assign)]
GLKLightingType LightingType { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("lightModelAmbientColor", ArgumentSemantic.Assign)]
Vector4 LightModelAmbientColor { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("material")]
GLKEffectPropertyMaterial Material { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("texture2d0")]
GLKEffectPropertyTexture Texture2d0 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("texture2d1")]
GLKEffectPropertyTexture Texture2d1 { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("textureOrder", ArgumentSemantic.Copy)]
GLKEffectPropertyTexture [] TextureOrder { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("constantColor", ArgumentSemantic.Assign)]
Vector4 ConstantColor { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fog")]
GLKEffectPropertyFog Fog { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("label", ArgumentSemantic.Copy)]
[DisableZeroCopy]
[NullAllowed] // default is null on iOS 5.1.1
string Label { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("lightModelTwoSided", ArgumentSemantic.Assign)]
bool LightModelTwoSided { get; set; }
}
@@ -162,21 +219,39 @@ interface GLKEffectProperty {
[Deprecated (PlatformName.MacOSX, 10, 14, message: "Use 'Metal' instead.")]
[BaseType (typeof (GLKEffectProperty))]
interface GLKEffectPropertyFog {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("mode", ArgumentSemantic.Assign)]
GLKFogMode Mode { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("color", ArgumentSemantic.Assign)]
Vector4 Color { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("density", ArgumentSemantic.Assign)]
float Density { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("start", ArgumentSemantic.Assign)]
float Start { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("end", ArgumentSemantic.Assign)]
float End { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("enabled", ArgumentSemantic.Assign)]
bool Enabled { get; set; }
}
@@ -189,40 +264,79 @@ interface GLKEffectPropertyFog {
[Deprecated (PlatformName.MacOSX, 10, 14, message: "Use 'Metal' instead.")]
[BaseType (typeof (GLKEffectProperty))]
interface GLKEffectPropertyLight {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("position", ArgumentSemantic.Assign)]
Vector4 Position { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ambientColor", ArgumentSemantic.Assign)]
Vector4 AmbientColor { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("diffuseColor", ArgumentSemantic.Assign)]
Vector4 DiffuseColor { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("specularColor", ArgumentSemantic.Assign)]
Vector4 SpecularColor { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("spotDirection", ArgumentSemantic.Assign)]
Vector3 SpotDirection { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("spotExponent", ArgumentSemantic.Assign)]
float SpotExponent { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("spotCutoff", ArgumentSemantic.Assign)]
float SpotCutoff { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("constantAttenuation", ArgumentSemantic.Assign)]
float ConstantAttenuation { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("linearAttenuation", ArgumentSemantic.Assign)]
float LinearAttenuation { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("quadraticAttenuation", ArgumentSemantic.Assign)]
float QuadraticAttenuation { get; set; } /* GLfloat = float */
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("transform", ArgumentSemantic.Retain)]
GLKEffectPropertyTransform Transform { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("enabled", ArgumentSemantic.Assign)]
bool Enabled { get; set; }
@@ -236,18 +350,33 @@ interface GLKEffectPropertyLight {
[Deprecated (PlatformName.MacOSX, 10, 14, message: "Use 'Metal' instead.")]
[BaseType (typeof (GLKEffectProperty))]
interface GLKEffectPropertyMaterial {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("diffuseColor", ArgumentSemantic.Assign)]
Vector4 DiffuseColor { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("specularColor", ArgumentSemantic.Assign)]
Vector4 SpecularColor { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("emissiveColor", ArgumentSemantic.Assign)]
Vector4 EmissiveColor { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("shininess", ArgumentSemantic.Assign)]
float Shininess { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ambientColor", ArgumentSemantic.Assign)]
Vector4 AmbientColor { [Align (16)] get; set; }
}
@@ -266,6 +395,9 @@ interface GLKEffectPropertyTexture {
[Export ("envMode", ArgumentSemantic.Assign)]
GLKTextureEnvMode EnvMode { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("enabled", ArgumentSemantic.Assign)]
bool Enabled { get; set; }
@@ -282,12 +414,21 @@ interface GLKEffectPropertyTexture {
[Deprecated (PlatformName.MacOSX, 10, 14, message: "Use 'Metal' instead.")]
[BaseType (typeof (GLKEffectProperty))]
interface GLKEffectPropertyTransform {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("normalMatrix")]
Matrix3 NormalMatrix { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("modelviewMatrix", ArgumentSemantic.Assign)]
Matrix4 ModelViewMatrix { [Align (16)] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("projectionMatrix", ArgumentSemantic.Assign)]
Matrix4 ProjectionMatrix { [Align (16)] get; set; }
}
@@ -309,15 +450,27 @@ interface GLKMesh {
[return: NullAllowed]
GLKMesh [] FromAsset (MDLAsset asset, out NSArray sourceMeshes, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("vertexCount")]
nuint VertexCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("vertexBuffers")]
GLKMeshBuffer [] VertexBuffers { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("vertexDescriptor")]
MDLVertexDescriptor VertexDescriptor { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("submeshes")]
GLKSubmesh [] Submeshes { get; }
@@ -332,9 +485,15 @@ interface GLKMesh {
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface GLKMeshBuffer : MDLMeshBuffer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("glBufferName")]
uint GlBufferName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("offset")]
nuint Offset { get; }
}
@@ -371,9 +530,15 @@ interface GLKNamedEffect {
[Deprecated (PlatformName.MacOSX, 10, 14, message: "Use 'Metal' instead.")]
[BaseType (typeof (GLKBaseEffect))]
interface GLKReflectionMapEffect : GLKNamedEffect {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textureCubeMap")]
GLKEffectPropertyTexture TextureCubeMap { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("matrix", ArgumentSemantic.Assign)]
Matrix3 Matrix { get; set; }
}
@@ -386,24 +551,48 @@ interface GLKReflectionMapEffect : GLKNamedEffect {
[Deprecated (PlatformName.MacOSX, 10, 14, message: "Use 'Metal' instead.")]
[BaseType (typeof (NSObject))]
interface GLKSkyboxEffect : GLKNamedEffect {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("center", ArgumentSemantic.Assign)]
Vector3 Center { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("xSize", ArgumentSemantic.Assign)]
float XSize { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ySize", ArgumentSemantic.Assign)]
float YSize { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("zSize", ArgumentSemantic.Assign)]
float ZSize { get; set; } /* GLfloat = float */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textureCubeMap")]
GLKEffectPropertyTexture TextureCubeMap { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("transform")]
GLKEffectPropertyTransform Transform { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("label", ArgumentSemantic.Copy)]
[DisableZeroCopy]
@@ -424,6 +613,9 @@ interface GLKSubmesh {
// OpenTK.Graphics.ES11.DataType
// OpenTK.Graphics.ES20.DataType
// OpenTK.Graphics.ES30.DataType
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("type")]
uint Type { get; }
@@ -431,15 +623,30 @@ interface GLKSubmesh {
// OpenTK.Graphics.ES11.BeginMode
// OpenTK.Graphics.ES20.BeginMode
// OpenTK.Graphics.ES30.BeginMode
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("mode")]
uint Mode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("elementCount")]
int ElementCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("elementBuffer")]
GLKMeshBuffer ElementBuffer { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("mesh", ArgumentSemantic.Weak)]
GLKMesh Mesh { get; }
@@ -579,27 +786,62 @@ interface GLKTextureLoader {
[Async]
void BeginTextureLoad (string name, nfloat scaleFactor, [NullAllowed] NSBundle bundle, [NullAllowed] NSDictionary options, [NullAllowed] DispatchQueue queue, GLKTextureLoaderCallback block);
+ /// Represents the value associated with the constant GLKTextureLoaderApplyPremultiplication
+ ///
+ ///
+ /// Used as a key for textureOperations if you are using the NSDictionary overloads instead of the strongly typed GLKTextureOperations class.
[Field ("GLKTextureLoaderApplyPremultiplication")]
NSString ApplyPremultiplication { get; }
+ /// Represents the value associated with the constant GLKTextureLoaderGenerateMipmaps
+ ///
+ ///
+ /// Used as a key for textureOperations if you are using the NSDictionary overloads instead of the strongly typed GLKTextureOperations class.
[Field ("GLKTextureLoaderGenerateMipmaps")]
NSString GenerateMipmaps { get; }
+ /// Represents the value associated with the constant GLKTextureLoaderOriginBottomLeft
+ ///
+ ///
+ /// Used as a key for textureOperations if you are using the NSDictionary overloads instead of the strongly typed GLKTextureOperations class.
[Field ("GLKTextureLoaderOriginBottomLeft")]
NSString OriginBottomLeft { get; }
+ /// Represents the value associated with the constant GLKTextureLoaderGrayscaleAsAlpha
+ ///
+ ///
+ /// Used as a key for textureOperations if you are using the NSDictionary overloads instead of the strongly typed GLKTextureOperations class.
[Field ("GLKTextureLoaderGrayscaleAsAlpha")]
NSString GrayscaleAsAlpha { get; }
+ /// Represents the value associated with the constant GLKTextureLoaderSRGB
+ ///
+ ///
+ /// To be added.
[Field ("GLKTextureLoaderSRGB")]
NSString SRGB { get; }
+ /// Represents the value associated with the constant GLKTextureLoaderErrorDomain
+ ///
+ ///
+ ///
+ ///
[Field ("GLKTextureLoaderErrorDomain")]
NSString ErrorDomain { get; }
+ /// Represents the value associated with the constant GLKTextureLoaderErrorKey
+ ///
+ ///
+ ///
+ ///
[Field ("GLKTextureLoaderErrorKey")]
NSString ErrorKey { get; }
+ /// Represents the value associated with the constant GLKTextureLoaderGLErrorKey
+ ///
+ ///
+ ///
+ ///
[Field ("GLKTextureLoaderGLErrorKey")]
NSString GLErrorKey { get; }
}
@@ -616,34 +858,75 @@ interface GLKView {
[Export ("initWithFrame:")]
NativeHandle Constructor (CGRect frame);
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
[Export ("delegate", ArgumentSemantic.Assign), NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the GLKit.IGLKViewDelegate model class which acts as the class delegate.
+ /// The instance of the GLKit.IGLKViewDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
IGLKViewDelegate Delegate { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed] // by default this property is null
[Export ("context", ArgumentSemantic.Retain)]
EAGLContext Context { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawableWidth")]
nint DrawableWidth { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawableHeight")]
nint DrawableHeight { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawableColorFormat")]
GLKViewDrawableColorFormat DrawableColorFormat { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawableDepthFormat")]
GLKViewDrawableDepthFormat DrawableDepthFormat { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawableStencilFormat")]
GLKViewDrawableStencilFormat DrawableStencilFormat { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawableMultisample")]
GLKViewDrawableMultisample DrawableMultisample { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("enableSetNeedsDisplay")]
bool EnableSetNeedsDisplay { get; set; }
diff --git a/src/imageio.cs b/src/imageio.cs
index 116802c1bfd5..9a3bd430cb65 100644
--- a/src/imageio.cs
+++ b/src/imageio.cs
@@ -41,26 +41,47 @@ interface CGImageProperties {
// Format-Specific Dictionaries
[Field ("kCGImagePropertyTIFFDictionary")]
NSString TIFFDictionary { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGIFDictionary
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGIFDictionary")]
NSString GIFDictionary { get; }
[Field ("kCGImagePropertyJFIFDictionary")]
NSString JFIFDictionary { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifDictionary
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifDictionary")]
NSString ExifDictionary { get; }
[Field ("kCGImagePropertyPNGDictionary")]
NSString PNGDictionary { get; }
[Field ("kCGImagePropertyIPTCDictionary")]
NSString IPTCDictionary { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDictionary
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDictionary")]
NSString GPSDictionary { get; }
[Field ("kCGImagePropertyRawDictionary")]
NSString RawDictionary { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFDictionary
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFDictionary")]
NSString CIFFDictionary { get; }
+ /// Represents the value associated with the constant kCGImageProperty8BIMDictionary
+ /// To be added.
+ /// To be added.
[Field ("kCGImageProperty8BIMDictionary")]
NSString EightBIMDictionary { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGDictionary
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDNGDictionary")]
NSString DNGDictionary { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxDictionary
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxDictionary")]
NSString ExifAuxDictionary { get; }
@@ -107,18 +128,30 @@ interface CGImageProperties {
NSString MakerPentaxDictionary { get; }
// Image Source Container Properties
+ /// Represents the value associated with the constant kCGImagePropertyFileSize
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyFileSize")]
NSString FileSize { get; }
// Individual Image Properties
+ /// Represents the value associated with the constant kCGImagePropertyDPIHeight
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDPIHeight")]
NSString DPIHeight { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDPIWidth
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDPIWidth")]
NSString DPIWidth { get; }
[Field ("kCGImagePropertyPixelWidth")]
NSString PixelWidth { get; }
[Field ("kCGImagePropertyPixelHeight")]
NSString PixelHeight { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDepth
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDepth")]
NSString Depth { get; }
[Field ("kCGImagePropertyOrientation")]
@@ -129,6 +162,9 @@ interface CGImageProperties {
NSString IsIndexed { get; }
[Field ("kCGImagePropertyHasAlpha")]
NSString HasAlpha { get; }
+ /// Represents the value associated with the constant kCGImagePropertyColorModel
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyColorModel")]
NSString ColorModel { get; }
[Field ("kCGImagePropertyProfileName")]
@@ -136,132 +172,318 @@ interface CGImageProperties {
// Color Model Values
+ /// Represents the value associated with the constant kCGImagePropertyColorModelRGB
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyColorModelRGB")]
NSString ColorModelRGB { get; }
+ /// Represents the value associated with the constant kCGImagePropertyColorModelGray
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyColorModelGray")]
NSString ColorModelGray { get; }
+ /// Represents the value associated with the constant kCGImagePropertyColorModelCMYK
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyColorModelCMYK")]
NSString ColorModelCMYK { get; }
+ /// Represents the value associated with the constant kCGImagePropertyColorModelLab
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyColorModelLab")]
NSString ColorModelLab { get; }
// EXIF Dictionary Keys
+ /// Represents the value associated with the constant kCGImagePropertyExifExposureTime
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifExposureTime")]
NSString ExifExposureTime { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFNumber")]
NSString ExifFNumber { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifExposureProgram
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifExposureProgram")]
NSString ExifExposureProgram { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSpectralSensitivity
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSpectralSensitivity")]
NSString ExifSpectralSensitivity { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifISOSpeedRatings
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifISOSpeedRatings")]
NSString ExifISOSpeedRatings { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifOECF
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifOECF")]
NSString ExifOECF { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifVersion
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifVersion")]
NSString ExifVersion { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifDateTimeOriginal
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifDateTimeOriginal")]
NSString ExifDateTimeOriginal { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifDateTimeDigitized
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifDateTimeDigitized")]
NSString ExifDateTimeDigitized { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifComponentsConfiguration
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifComponentsConfiguration")]
NSString ExifComponentsConfiguration { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifCompressedBitsPerPixel
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifCompressedBitsPerPixel")]
NSString ExifCompressedBitsPerPixel { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifShutterSpeedValue
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifShutterSpeedValue")]
NSString ExifShutterSpeedValue { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifApertureValue
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifApertureValue")]
NSString ExifApertureValue { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifBrightnessValue
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifBrightnessValue")]
NSString ExifBrightnessValue { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifExposureBiasValue
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifExposureBiasValue")]
NSString ExifExposureBiasValue { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifMaxApertureValue
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifMaxApertureValue")]
NSString ExifMaxApertureValue { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSubjectDistance
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSubjectDistance")]
NSString ExifSubjectDistance { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifMeteringMode
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifMeteringMode")]
NSString ExifMeteringMode { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifLightSource
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifLightSource")]
NSString ExifLightSource { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFlash
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFlash")]
NSString ExifFlash { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFocalLength
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFocalLength")]
NSString ExifFocalLength { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSubjectArea
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSubjectArea")]
NSString ExifSubjectArea { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifMakerNote
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifMakerNote")]
NSString ExifMakerNote { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifUserComment
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifUserComment")]
NSString ExifUserComment { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSubsecTime
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSubsecTime")]
NSString ExifSubsecTime { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSubsecTimeOrginal
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSubsecTimeOrginal")]
NSString ExifSubsecTimeOrginal { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSubsecTimeOriginal.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyExifSubsecTimeOriginal")]
NSString ExifSubsecTimeOriginal { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSubsecTimeDigitized
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSubsecTimeDigitized")]
NSString ExifSubsecTimeDigitized { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFlashPixVersion
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFlashPixVersion")]
NSString ExifFlashPixVersion { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifColorSpace
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifColorSpace")]
NSString ExifColorSpace { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifPixelXDimension
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifPixelXDimension")]
NSString ExifPixelXDimension { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifPixelYDimension
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifPixelYDimension")]
NSString ExifPixelYDimension { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifRelatedSoundFile
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifRelatedSoundFile")]
NSString ExifRelatedSoundFile { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFlashEnergy
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFlashEnergy")]
NSString ExifFlashEnergy { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSpatialFrequencyResponse
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSpatialFrequencyResponse")]
NSString ExifSpatialFrequencyResponse { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFocalPlaneXResolution
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFocalPlaneXResolution")]
NSString ExifFocalPlaneXResolution { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFocalPlaneYResolution
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFocalPlaneYResolution")]
NSString ExifFocalPlaneYResolution { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFocalPlaneResolutionUnit
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFocalPlaneResolutionUnit")]
NSString ExifFocalPlaneResolutionUnit { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSubjectLocation
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSubjectLocation")]
NSString ExifSubjectLocation { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifExposureIndex
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifExposureIndex")]
NSString ExifExposureIndex { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSensingMethod
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSensingMethod")]
NSString ExifSensingMethod { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFileSource
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFileSource")]
NSString ExifFileSource { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSceneType
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSceneType")]
NSString ExifSceneType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifCFAPattern")]
NSString ExifCFAPattern { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifCustomRendered
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifCustomRendered")]
NSString ExifCustomRendered { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifExposureMode
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifExposureMode")]
NSString ExifExposureMode { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifWhiteBalance
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifWhiteBalance")]
NSString ExifWhiteBalance { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifDigitalZoomRatio
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifDigitalZoomRatio")]
NSString ExifDigitalZoomRatio { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifFocalLenIn35mmFilm
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifFocalLenIn35mmFilm")]
NSString ExifFocalLenIn35mmFilm { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSceneCaptureType
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSceneCaptureType")]
NSString ExifSceneCaptureType { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifGainControl
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifGainControl")]
NSString ExifGainControl { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifContrast
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifContrast")]
NSString ExifContrast { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSaturation
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSaturation")]
NSString ExifSaturation { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSharpness
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSharpness")]
NSString ExifSharpness { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifDeviceSettingDescription
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifDeviceSettingDescription")]
NSString ExifDeviceSettingDescription { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSubjectDistRange
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifSubjectDistRange")]
NSString ExifSubjectDistRange { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifImageUniqueID
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifImageUniqueID")]
NSString ExifImageUniqueID { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifGamma
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifGamma")]
NSString ExifGamma { get; }
@@ -282,61 +504,121 @@ interface CGImageProperties {
// misdocumented (first 4.3, then 5.0) but the constants were not present until 6.x
+ /// Represents the value associated with the constant kCGImagePropertyExifCameraOwnerName
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifCameraOwnerName")]
[MacCatalyst (13, 1)]
NSString ExifCameraOwnerName { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifBodySerialNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifBodySerialNumber")]
[MacCatalyst (13, 1)]
NSString ExifBodySerialNumber { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifLensSpecification
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifLensSpecification")]
[MacCatalyst (13, 1)]
NSString ExifLensSpecification { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifLensMake
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifLensMake")]
[MacCatalyst (13, 1)]
NSString ExifLensMake { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifLensModel
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifLensModel")]
[MacCatalyst (13, 1)]
NSString ExifLensModel { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifLensSerialNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifLensSerialNumber")]
[MacCatalyst (13, 1)]
NSString ExifLensSerialNumber { get; }
// EXIF Auxiliary Dictionary Keys
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxLensInfo
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxLensInfo")]
NSString ExifAuxLensInfo { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxLensModel
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxLensModel")]
NSString ExifAuxLensModel { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxSerialNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxSerialNumber")]
NSString ExifAuxSerialNumber { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxLensID
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxLensID")]
NSString ExifAuxLensID { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxLensSerialNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxLensSerialNumber")]
NSString ExifAuxLensSerialNumber { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxImageNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxImageNumber")]
NSString ExifAuxImageNumber { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxFlashCompensation
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxFlashCompensation")]
NSString ExifAuxFlashCompensation { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxOwnerName
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxOwnerName")]
NSString ExifAuxOwnerName { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifAuxFirmware
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyExifAuxFirmware")]
NSString ExifAuxFirmware { get; }
// GIF Dictionary Keys
+ /// Represents the value associated with the constant kCGImagePropertyGIFLoopCount
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGIFLoopCount")]
NSString GIFLoopCount { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGIFDelayTime
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGIFDelayTime")]
NSString GIFDelayTime { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGIFImageColorMap
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGIFImageColorMap")]
NSString GIFImageColorMap { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGIFHasGlobalColorMap
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGIFHasGlobalColorMap")]
NSString GIFHasGlobalColorMap { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGIFUnclampedDelayTime
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGIFUnclampedDelayTime")]
NSString GIFUnclampedDelayTime { get; }
@@ -360,67 +642,160 @@ interface CGImageProperties {
// GPS Dictionary Keys
+ /// Represents the value associated with the constant kCGImagePropertyGPSVersion
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSVersion")]
NSString GPSVersion { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSLatitudeRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSLatitudeRef")]
NSString GPSLatitudeRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSLatitude
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSLatitude")]
NSString GPSLatitude { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSLongitudeRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSLongitudeRef")]
NSString GPSLongitudeRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSLongitude
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSLongitude")]
NSString GPSLongitude { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSAltitudeRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSAltitudeRef")]
NSString GPSAltitudeRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSAltitude
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSAltitude")]
NSString GPSAltitude { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSTimeStamp
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSTimeStamp")]
NSString GPSTimeStamp { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSSatellites
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSSatellites")]
NSString GPSSatellites { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSStatus
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSStatus")]
NSString GPSStatus { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSMeasureMode
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSMeasureMode")]
NSString GPSMeasureMode { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDOP
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDOP")]
NSString GPSDOP { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSSpeedRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSSpeedRef")]
NSString GPSSpeedRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSSpeed
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSSpeed")]
NSString GPSSpeed { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSTrackRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSTrackRef")]
NSString GPSTrackRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSTrack
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSTrack")]
NSString GPSTrack { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSImgDirectionRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSImgDirectionRef")]
NSString GPSImgDirectionRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSImgDirection
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSImgDirection")]
NSString GPSImgDirection { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSMapDatum
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSMapDatum")]
NSString GPSMapDatum { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDestLatitudeRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDestLatitudeRef")]
NSString GPSDestLatitudeRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDestLatitude
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDestLatitude")]
NSString GPSDestLatitude { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDestLongitudeRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDestLongitudeRef")]
NSString GPSDestLongitudeRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDestLongitude
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDestLongitude")]
NSString GPSDestLongitude { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDestBearingRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDestBearingRef")]
NSString GPSDestBearingRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDestBearing
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDestBearing")]
NSString GPSDestBearing { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDestDistanceRef
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDestDistanceRef")]
NSString GPSDestDistanceRef { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDestDistance
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDestDistance")]
NSString GPSDestDistance { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSAreaInformation
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSAreaInformation")]
NSString GPSAreaInformation { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDateStamp
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDateStamp")]
NSString GPSDateStamp { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSDifferental
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyGPSDifferental")]
NSString GPSDifferental { get; }
+ /// Represents the value associated with the constant kCGImagePropertyGPSHPositioningError
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyGPSHPositioningError")]
NSString GPSHPositioningError { get; }
@@ -701,410 +1076,752 @@ interface CGImageProperties {
// DNG Dictionary Keys
+ /// Represents the value associated with the constant kCGImagePropertyDNGVersion
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDNGVersion")]
NSString DNGVersion { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGBackwardVersion
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDNGBackwardVersion")]
NSString DNGBackwardVersion { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGUniqueCameraModel
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDNGUniqueCameraModel")]
NSString DNGUniqueCameraModel { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGLocalizedCameraModel
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDNGLocalizedCameraModel")]
NSString DNGLocalizedCameraModel { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGCameraSerialNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDNGCameraSerialNumber")]
NSString DNGCameraSerialNumber { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGLensInfo
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyDNGLensInfo")]
NSString DNGLensInfo { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGBlackLevel.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBlackLevel")]
NSString DNGBlackLevel { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGWhiteLevel.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGWhiteLevel")]
NSString DNGWhiteLevel { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGCalibrationIlluminant1.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCalibrationIlluminant1")]
NSString DNGCalibrationIlluminant1 { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGCalibrationIlluminant2.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCalibrationIlluminant2")]
NSString DNGCalibrationIlluminant2 { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGColorMatrix1.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGColorMatrix1")]
NSString DNGColorMatrix1 { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGColorMatrix2.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGColorMatrix2")]
NSString DNGColorMatrix2 { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGCameraCalibration1.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCameraCalibration1")]
NSString DNGCameraCalibration1 { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGCameraCalibration2.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCameraCalibration2")]
NSString DNGCameraCalibration2 { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGAsShotNeutral.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGAsShotNeutral")]
NSString DNGAsShotNeutral { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGAsShotWhiteXY.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGAsShotWhiteXY")]
NSString DNGAsShotWhiteXY { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGBaselineExposure.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBaselineExposure")]
NSString DNGBaselineExposure { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGBaselineNoise.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBaselineNoise")]
NSString DNGBaselineNoise { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGBaselineSharpness.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBaselineSharpness")]
NSString DNGBaselineSharpness { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGPrivateData.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGPrivateData")]
NSString DNGPrivateData { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGCameraCalibrationSignature.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCameraCalibrationSignature")]
NSString DNGCameraCalibrationSignature { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGProfileCalibrationSignature.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileCalibrationSignature")]
NSString DNGProfileCalibrationSignature { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGNoiseProfile.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGNoiseProfile")]
NSString DNGNoiseProfile { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGWarpRectilinear.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGWarpRectilinear")]
NSString DNGWarpRectilinear { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGWarpFisheye.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGWarpFisheye")]
NSString DNGWarpFisheye { get; }
+ /// Represents the value associated with the constant kCGImagePropertyDNGFixVignetteRadial.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGFixVignetteRadial")]
NSString DNGFixVignetteRadial { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGActiveArea")]
NSString DNGActiveArea { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGAnalogBalance")]
NSString DNGAnalogBalance { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGAntiAliasStrength")]
NSString DNGAntiAliasStrength { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGAsShotICCProfile")]
NSString DNGAsShotICCProfile { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGAsShotPreProfileMatrix")]
NSString DNGAsShotPreProfileMatrix { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGAsShotProfileName")]
NSString DNGAsShotProfileName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBaselineExposureOffset")]
NSString DNGBaselineExposureOffset { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBayerGreenSplit")]
NSString DNGBayerGreenSplit { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBestQualityScale")]
NSString DNGBestQualityScale { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBlackLevelDeltaH")]
NSString DNGBlackLevelDeltaHorizontal { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBlackLevelDeltaV")]
NSString DNGBlackLevelDeltaVertical { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGBlackLevelRepeatDim")]
NSString DNGBlackLevelRepeatDim { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCFALayout")]
NSString DNGCfaLayout { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCFAPlaneColor")]
NSString DNGCfaPlaneColor { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGChromaBlurRadius")]
NSString DNGChromaBlurRadius { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGColorimetricReference")]
NSString DNGColorimetricReference { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCurrentICCProfile")]
NSString DNGCurrentICCProfile { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGCurrentPreProfileMatrix")]
NSString DNGCurrentPreProfileMatrix { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGDefaultBlackRender")]
NSString DNGDefaultBlackRender { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGDefaultCropOrigin")]
NSString DNGDefaultCropOrigin { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGDefaultCropSize")]
NSString DNGDefaultCropSize { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGDefaultScale")]
NSString DNGDefaultScale { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGDefaultUserCrop")]
NSString DNGDefaultUserCrop { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGExtraCameraProfiles")]
NSString DNGExtraCameraProfiles { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGForwardMatrix1")]
NSString DNGForwardMatrix1 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGForwardMatrix2")]
NSString DNGForwardMatrix2 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGLinearizationTable")]
NSString DNGLinearizationTable { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGLinearResponseLimit")]
NSString DNGLinearResponseLimit { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGMakerNoteSafety")]
NSString DNGMakerNoteSafety { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGMaskedAreas")]
NSString DNGMaskedAreas { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGNewRawImageDigest")]
NSString DNGNewRawImageDigest { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGNoiseReductionApplied")]
NSString DNGNoiseReductionApplied { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOpcodeList1")]
NSString DNGOpcodeList1 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOpcodeList2")]
NSString DNGOpcodeList2 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOpcodeList3")]
NSString DNGOpcodeList3 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOriginalBestQualityFinalSize")]
NSString DNGOriginalBestQualityFinalSize { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOriginalDefaultCropSize")]
NSString DNGOriginalDefaultCropSize { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOriginalDefaultFinalSize")]
NSString DNGOriginalDefaultFinalSize { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOriginalRawFileData")]
NSString DNGOriginalRawFileData { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOriginalRawFileDigest")]
NSString DNGOriginalRawFileDigest { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGOriginalRawFileName")]
NSString DNGOriginalRawFileName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGPreviewApplicationName")]
NSString DNGPreviewApplicationName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGPreviewApplicationVersion")]
NSString DNGPreviewApplicationVersion { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGPreviewColorSpace")]
NSString DNGPreviewColorSpace { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGPreviewDateTime")]
NSString DNGPreviewDateTime { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGPreviewSettingsDigest")]
NSString DNGPreviewSettingsDigest { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGPreviewSettingsName")]
NSString DNGPreviewSettingsName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileCopyright")]
NSString DNGProfileCopyright { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileEmbedPolicy")]
NSString DNGProfileEmbedPolicy { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileHueSatMapData1")]
NSString DNGProfileHueSatMapData1 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileHueSatMapData2")]
NSString DNGProfileHueSatMapData2 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileHueSatMapDims")]
NSString DNGProfileHueSatMapDims { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileHueSatMapEncoding")]
NSString DNGProfileHueSatMapEncoding { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileLookTableData")]
NSString DNGProfileLookTableData { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileLookTableDims")]
NSString DNGProfileLookTableDims { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileLookTableEncoding")]
NSString DNGProfileLookTableEncoding { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileName")]
NSString DNGProfileName { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGProfileToneCurve")]
NSString DNGProfileToneCurve { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGRawDataUniqueID")]
NSString DNGRawDataUniqueId { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGRawImageDigest")]
NSString DNGRawImageDigest { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGRawToPreviewGain")]
NSString DNGRawToPreviewGain { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGReductionMatrix1")]
NSString DNGReductionMatrix1 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGReductionMatrix2")]
NSString DNGReductionMatrix2 { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGRowInterleaveFactor")]
NSString DNGRowInterleaveFactor { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGShadowScale")]
NSString DNGShadowScale { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyDNGSubTileBlockSize")]
NSString DNGSubTileBlockSize { get; }
// 8BIM Dictionary Keys
+ /// Represents the value associated with the constant kCGImageProperty8BIMLayerNames
+ /// To be added.
+ /// To be added.
[Field ("kCGImageProperty8BIMLayerNames")]
NSString EightBIMLayerNames { get; }
// CIFF Dictionary Keys
+ /// Represents the value associated with the constant kCGImagePropertyCIFFDescription
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFDescription")]
NSString CIFFDescription { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFFirmware
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFFirmware")]
NSString CIFFFirmware { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFOwnerName
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFOwnerName")]
NSString CIFFOwnerName { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFImageName
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFImageName")]
NSString CIFFImageName { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFImageFileName
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFImageFileName")]
NSString CIFFImageFileName { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFReleaseMethod
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFReleaseMethod")]
NSString CIFFReleaseMethod { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFReleaseTiming
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFReleaseTiming")]
NSString CIFFReleaseTiming { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFRecordID
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFRecordID")]
NSString CIFFRecordID { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFSelfTimingTime
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFSelfTimingTime")]
NSString CIFFSelfTimingTime { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFCameraSerialNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFCameraSerialNumber")]
NSString CIFFCameraSerialNumber { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFImageSerialNumber
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFImageSerialNumber")]
NSString CIFFImageSerialNumber { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFContinuousDrive
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFContinuousDrive")]
NSString CIFFContinuousDrive { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFFocusMode
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFFocusMode")]
NSString CIFFFocusMode { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFMeteringMode
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFMeteringMode")]
NSString CIFFMeteringMode { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFShootingMode
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFShootingMode")]
NSString CIFFShootingMode { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFLensMaxMM
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFLensMaxMM")]
NSString CIFFLensMaxMM { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFLensMinMM
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFLensMinMM")]
NSString CIFFLensMinMM { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFLensModel
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFLensModel")]
NSString CIFFLensModel { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFWhiteBalanceIndex
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFWhiteBalanceIndex")]
NSString CIFFWhiteBalanceIndex { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFFlashExposureComp
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFFlashExposureComp")]
NSString CIFFFlashExposureComp { get; }
+ /// Represents the value associated with the constant kCGImagePropertyCIFFMeasuredEV
+ /// To be added.
+ /// To be added.
[Field ("kCGImagePropertyCIFFMeasuredEV")]
NSString CIFFMeasuredEV { get; }
@@ -1204,21 +1921,39 @@ interface CGImageProperties {
[Field ("kCGImagePropertyMakerCanonAspectRatioInfo")]
NSString MakerCanonAspectRatioInfo { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifISOSpeed
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyExifISOSpeed")]
NSString ExifISOSpeed { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifISOSpeedLatitudeyyy
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyExifISOSpeedLatitudeyyy")]
NSString ExifISOSpeedLatitudeYyy { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifISOSpeedLatitudezzz
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyExifISOSpeedLatitudezzz")]
NSString ExifISOSpeedLatitudeZzz { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifRecommendedExposureIndex
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyExifRecommendedExposureIndex")]
NSString ExifRecommendedExposureIndex { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifSensitivityType
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyExifSensitivityType")]
NSString ExifSensitivityType { get; }
+ /// Represents the value associated with the constant kCGImagePropertyExifStandardOutputSensitivity
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyExifStandardOutputSensitivity")]
NSString ExifStandardOutputSensitivity { get; }
@@ -1262,6 +1997,9 @@ interface CGImageProperties {
[Field ("kCGImagePropertyHeight")]
NSString Height { get; }
+ /// Represents the value associated with the constant kCGImagePropertyBytesPerRow
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyBytesPerRow")]
NSString BytesPerRow { get; }
@@ -1282,14 +2020,23 @@ interface CGImageProperties {
[Field ("kCGImagePropertyThumbnailImages")]
NSString ThumbnailImages { get; }
+ /// Represents the value associated with the constant kCGImagePropertyAuxiliaryData
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyAuxiliaryData")]
NSString AuxiliaryData { get; }
+ /// Represents the value associated with the constant kCGImagePropertyAuxiliaryDataType
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyAuxiliaryDataType")]
NSString AuxiliaryDataType { get; }
+ /// Represents the value associated with the constant kCGImagePropertyFileContentsDictionary
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImagePropertyFileContentsDictionary")]
NSString FileContentsDictionary { get; }
@@ -2149,25 +2896,64 @@ interface CGImageProperties {
/// Holds constants specifying standard metadata namespaces. Primarily used with .
[Static]
interface CGImageMetadataTagNamespaces {
+ /// Represents the value associated with the constant kCGImageMetadataNamespaceExif
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespaceExif")]
NSString Exif { get; }
+ /// Represents the value associated with the constant kCGImageMetadataNamespaceExifAux
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespaceExifAux")]
NSString ExifAux { get; }
+ /// Represents the value associated with the constant kCGImageMetadataNamespaceExifEX
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespaceExifEX")]
[MacCatalyst (13, 1)]
NSString ExifEx { get; }
+ /// Represents the value associated with the constant kCGImageMetadataNamespaceDublinCore
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespaceDublinCore")]
NSString DublinCore { get; }
+ /// Represents the value associated with the constant kCGImageMetadataNamespaceIPTCCore
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespaceIPTCCore")]
NSString IPTCCore { get; }
+ /// Represents the value associated with the constant kCGImageMetadataNamespacePhotoshop
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespacePhotoshop")]
NSString Photoshop { get; }
+ /// Represents the value associated with the constant kCGImageMetadataNamespaceTIFF
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespaceTIFF")]
NSString TIFF { get; }
+ /// Represents the value associated with the constant kCGImageMetadataNamespaceXMPBasic
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespaceXMPBasic")]
NSString XMPBasic { get; }
+ /// Represents the value associated with the constant kCGImageMetadataNamespaceXMPRights
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataNamespaceXMPRights")]
NSString XMPRights { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImageMetadataNamespaceIPTCExtension")]
NSString IPTCExtension { get; }
@@ -2176,25 +2962,64 @@ interface CGImageMetadataTagNamespaces {
/// Constants defining standard prefixes. Primarily used with .
[Static]
interface CGImageMetadataTagPrefixes {
+ /// Represents the value associated with the constant kCGImageMetadataPrefixExif
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixExif")]
NSString Exif { get; }
+ /// Represents the value associated with the constant kCGImageMetadataPrefixExifAux
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixExifAux")]
NSString ExifAux { get; }
+ /// Represents the value associated with the constant kCGImageMetadataPrefixExifEX
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixExifEX")]
[MacCatalyst (13, 1)]
NSString ExifEx { get; }
+ /// Represents the value associated with the constant kCGImageMetadataPrefixDublinCore
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixDublinCore")]
NSString DublinCore { get; }
+ /// Represents the value associated with the constant kCGImageMetadataPrefixIPTCCore
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixIPTCCore")]
NSString IPTCCore { get; }
+ /// Represents the value associated with the constant kCGImageMetadataPrefixPhotoshop
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixPhotoshop")]
NSString Photoshop { get; }
+ /// Represents the value associated with the constant kCGImageMetadataPrefixTIFF
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixTIFF")]
NSString TIFF { get; }
+ /// Represents the value associated with the constant kCGImageMetadataPrefixXMPBasic
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixXMPBasic")]
NSString XMPBasic { get; }
+ /// Represents the value associated with the constant kCGImageMetadataPrefixXMPRights
+ ///
+ ///
+ /// To be added.
[Field ("kCGImageMetadataPrefixXMPRights")]
NSString XMPRights { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImageMetadataPrefixIPTCExtension")]
NSString IPTCExtension { get; }
@@ -2299,60 +3124,108 @@ interface CGImagePropertiesIptc { }
[StrongDictionary ("CGImageDestinationOptionsKeys")]
interface CGImageDestinationOptions {
+ /// The quality used to encode the image.
+ /// Values between 0.0 (maximum compression) and 1.0 (no compression, use lossless).
+ /// To be added.
[Export ("LossyCompressionQuality")]
float LossyCompressionQuality { get; set; }
+ ///
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("ImageMaxPixelSize")]
int ImageMaxPixelSize { get; set; }
+ /// Controls whether to embed a JPEG image thumbnail in the destination file.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("EmbedThumbnail")]
bool EmbedThumbnail { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("OptimizeColorForSharing")]
bool OptimizeColorForSharing { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("TIFFDictionary")]
CGImagePropertiesTiff TiffDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("GIFDictionary")]
NSDictionary GifDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("JFIFDictionary")]
CGImagePropertiesJfif JfifDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("ExifDictionary")]
CGImagePropertiesExif ExifDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("PNGDictionary")]
CGImagePropertiesPng PngDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("IPTCDictionary")]
CGImagePropertiesIptc IptcDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("GPSDictionary")]
CGImagePropertiesGps GpsDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("RawDictionary")]
NSDictionary RawDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("CIFFDictionary")]
NSDictionary CiffDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("EightBIMDictionary")]
NSDictionary EightBimDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("DNGDictionary")]
NSDictionary DngDictionary { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ExifAuxDictionary")]
NSDictionary ExifAuxDictionary { get; set; }
@@ -2380,80 +3253,131 @@ interface CGImageDestinationOptions {
[Static]
interface CGImageDestinationOptionsKeys {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCGImageDestinationLossyCompressionQuality")]
NSString LossyCompressionQuality { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kCGImageDestinationBackgroundColor")]
NSString BackgroundColor { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImageDestinationImageMaxPixelSize")]
NSString ImageMaxPixelSize { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImageDestinationEmbedThumbnail")]
NSString EmbedThumbnail { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImageDestinationOptimizeColorForSharing")]
NSString OptimizeColorForSharing { get; }
// [Field ("kCGImagePropertyTIFFDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.TIFFDictionary")]
NSString TIFFDictionary { get; }
// [Field ("kCGImagePropertyGIFDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.GIFDictionary")]
NSString GIFDictionary { get; }
// [Field ("kCGImagePropertyJFIFDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.JFIFDictionary")]
NSString JFIFDictionary { get; }
// [Field ("kCGImagePropertyExifDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.ExifDictionary")]
NSString ExifDictionary { get; }
// [Field ("kCGImagePropertyPNGDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.PNGDictionary")]
NSString PNGDictionary { get; }
// [Field ("kCGImagePropertyIPTCDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.IPTCDictionary")]
NSString IPTCDictionary { get; }
// [Field ("kCGImagePropertyGPSDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.GPSDictionary")]
NSString GPSDictionary { get; }
// [Field ("kCGImagePropertyRawDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.RawDictionary")]
NSString RawDictionary { get; }
// [Field ("kCGImagePropertyCIFFDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.CIFFDictionary")]
NSString CIFFDictionary { get; }
// [Field ("kCGImageProperty8BIMDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.EightBIMDictionary")]
NSString EightBIMDictionary { get; }
// [Field ("kCGImagePropertyDNGDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.DNGDictionary")]
NSString DNGDictionary { get; }
// [Field ("kCGImagePropertyExifAuxDictionary")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Static]
[Wrap ("CGImageProperties.ExifAuxDictionary")]
NSString ExifAuxDictionary { get; }
@@ -2543,12 +3467,15 @@ interface CGCopyImageSourceOptions {
[MacCatalyst (13, 1)]
enum CGImageAuxiliaryDataType {
+ /// To be added.
[Field ("kCGImageAuxiliaryDataTypeDepth")]
Depth,
+ /// To be added.
[Field ("kCGImageAuxiliaryDataTypeDisparity")]
Disparity,
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kCGImageAuxiliaryDataTypePortraitEffectsMatte")]
PortraitEffectsMatte,
@@ -2616,7 +3543,13 @@ interface CGImageAuxiliaryDataInfoKeys {
[StrongDictionary ("CGImageAuxiliaryDataInfoKeys")]
interface CGImageAuxiliaryDataInfo {
+ /// To be added.
+ /// To be added.
+ /// To be added.
NSData Data { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
NSDictionary DataDescription { get; set; }
// Bound manually:
// CGImageMetadata Metadata { get; set; }))
diff --git a/src/intentsui.cs b/src/intentsui.cs
index 25890a4b7e47..49228d73d004 100644
--- a/src/intentsui.cs
+++ b/src/intentsui.cs
@@ -28,16 +28,22 @@ namespace IntentsUI {
[MacCatalyst (13, 1)]
[Native]
public enum INUIHostedViewContext : ulong {
+ /// To be added.
SiriSnippet,
+ /// To be added.
MapsCard
}
[NoMac]
[Native]
public enum INUIInteractiveBehavior : ulong {
+ /// To be added.
None,
+ /// To be added.
NextView,
+ /// To be added.
Launch,
+ /// To be added.
GenericAction,
}
@@ -45,9 +51,13 @@ public enum INUIInteractiveBehavior : ulong {
[MacCatalyst (13, 1)]
[Native]
public enum INUIAddVoiceShortcutButtonStyle : ulong {
+ /// To be added.
White = 0,
+ /// To be added.
WhiteOutline,
+ /// To be added.
Black,
+ /// To be added.
BlackOutline,
[iOS (13, 0)]
[MacCatalyst (13, 1)]
@@ -119,6 +129,13 @@ interface INUIHostedViewSiriProviding {
[DisableDefaultCtor]
interface INUIAddVoiceShortcutViewController {
+ /// An instance of the IntentsUI.IINUIAddVoiceShortcutViewControllerDelegate model class which acts as the class delegate.
+ /// The instance of the IntentsUI.IINUIAddVoiceShortcutViewControllerDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
[NullAllowed]
IINUIAddVoiceShortcutViewControllerDelegate Delegate { get; set; }
@@ -160,6 +177,13 @@ interface INUIAddVoiceShortcutViewControllerDelegate {
[DisableDefaultCtor]
interface INUIEditVoiceShortcutViewController {
+ /// An instance of the IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate model class which acts as the class delegate.
+ /// The instance of the IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
[NullAllowed]
IINUIEditVoiceShortcutViewControllerDelegate Delegate { get; set; }
@@ -215,6 +239,9 @@ interface INUIAddVoiceShortcutButton {
[Export ("style")]
INUIAddVoiceShortcutButtonStyle Style { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("WeakDelegate")]
[NullAllowed]
IINUIAddVoiceShortcutButtonDelegate Delegate { get; set; }
diff --git a/src/mapkit.cs b/src/mapkit.cs
index 3a4245405bf5..fa1b823c8371 100644
--- a/src/mapkit.cs
+++ b/src/mapkit.cs
@@ -135,12 +135,21 @@ interface MKAnnotationView {
[Export ("calloutOffset")]
CGPoint CalloutOffset { get; set; }
+ /// Gets or sets a Boolean value that controls whether the annotation is enabled.
+ /// To be added.
+ /// To be added.
[Export ("enabled")]
bool Enabled { [Bind ("isEnabled")] get; set; }
+ /// Gets or sets a Boolean value that controls whether the annotation view is highlighetd.
+ /// To be added.
+ /// To be added.
[Export ("highlighted")]
bool Highlighted { [Bind ("isHighlighted")] get; set; }
+ /// Gets or sets a Boolean value that controls whether the annotation view is selected.
+ /// To be added.
+ /// To be added.
[Export ("selected")]
bool Selected { [Bind ("isSelected")] get; set; }
@@ -168,6 +177,9 @@ interface MKAnnotationView {
[MacCatalyst (13, 1)]
MKAnnotationViewDragState DragState { get; set; }
+ /// Gets or sets a Boolean value that controls whether the user can drag the annotation view.
+ /// To be added.
+ /// To be added.
[NoTV]
[MacCatalyst (13, 1)]
[Export ("draggable")]
@@ -433,6 +445,9 @@ interface MKMapItem : NSSecureCoding
[NullAllowed]
NSTimeZone TimeZone { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("MKMapItemTypeIdentifier")]
NSString TypeIdentifier { get; }
@@ -1321,6 +1336,9 @@ interface MKUserLocation : MKAnnotation {
#else
interface MKUserLocation : IMKAnnotation { // This is wrong. It should be MKAnnotation but we can't due to API compat. When you fix this remove hack in generator.cs to enable warning again. In the meantime, we're stating that MKUserLocation implements the IMKAnnotation protocol by using a manual binding.
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("updating")]
bool Updating { [Bind ("isUpdating")] get; }
@@ -1390,6 +1408,12 @@ interface MKLocalSearch {
[Export ("cancel")]
void Cancel ();
+ /// To be added.
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This can be used from a background thread.
+ ///
[Export ("searching")]
bool IsSearching { [Bind ("isSearching")] get; }
}
@@ -2042,6 +2066,13 @@ interface MKLocalSearchCompleter {
[Export ("filterType", ArgumentSemantic.Assign)]
MKSearchCompletionFilterType FilterType { get; set; }
+ /// An instance of the MapKit.IMKLocalSearchCompleterDelegate model class which acts as the class delegate.
+ /// The instance of the MapKit.IMKLocalSearchCompleterDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
[NullAllowed]
IMKLocalSearchCompleterDelegate Delegate { get; set; }
@@ -2052,6 +2083,9 @@ interface MKLocalSearchCompleter {
[Export ("results", ArgumentSemantic.Strong)]
MKLocalSearchCompletion [] Results { get; }
+ /// Gets a that tells whether a search is in progress.
+ /// To be added.
+ /// To be added.
[Export ("searching")]
bool Searching { [Bind ("isSearching")] get; }
diff --git a/src/mediaaccessibility.cs b/src/mediaaccessibility.cs
index 244e1bb7b67e..055f7d7d0270 100644
--- a/src/mediaaccessibility.cs
+++ b/src/mediaaccessibility.cs
@@ -20,6 +20,9 @@ interface MACaptionAppearance {
/// Defines the constant associated with kMAudibleMediaSettingsChangedNotification and accessibility preferred characteristics.
[Static]
interface MAAudibleMedia {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Notification]
[Field ("kMAAudibleMediaSettingsChangedNotification")]
@@ -28,14 +31,23 @@ interface MAAudibleMedia {
[Static]
interface MAMediaCharacteristic {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("MAMediaCharacteristicDescribesMusicAndSoundForAccessibility")]
NSString DescribesMusicAndSoundForAccessibility { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("MAMediaCharacteristicDescribesVideoForAccessibility")]
NSString DescribesVideoForAccessibility { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("MAMediaCharacteristicTranscribesSpokenDialogForAccessibility")]
NSString TranscribesSpokenDialogForAccessibility { get; }
diff --git a/src/mediaplayer.cs b/src/mediaplayer.cs
index 602bc96109ae..c4d9e86cd850 100644
--- a/src/mediaplayer.cs
+++ b/src/mediaplayer.cs
@@ -103,22 +103,53 @@ interface MPMediaItem {
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString PersistentIDProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyAlbumPersistentID
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
[Field ("MPMediaItemPropertyAlbumPersistentID")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString AlbumPersistentIDProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyArtistPersistentID
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyArtistPersistentID")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString ArtistPersistentIDProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyAlbumArtistPersistentID
+ ///
+ ///
+ ///
+ /// Persistent IDs can be used as unique identifiers across
+ /// application launches and as long as the media item has not
+ /// been changed or synchronized again with the host computer.
+ ///
[Field ("MPMediaItemPropertyAlbumArtistPersistentID")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString AlbumArtistPersistentIDProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyGenrePersistentID
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyGenrePersistentID")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString GenrePersistentIDProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyComposerPersistentID
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyComposerPersistentID")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString ComposerPersistentIDProperty { get; }
@@ -135,22 +166,47 @@ interface MPMediaItem {
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString TitleProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyAlbumTitle
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyAlbumTitle")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString AlbumTitleProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyArtist
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyArtist")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString ArtistProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyAlbumArtist
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyAlbumArtist")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString AlbumArtistProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyGenre
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyGenre")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString GenreProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyComposer
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyComposer")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString ComposerProperty { get; }
@@ -159,22 +215,47 @@ interface MPMediaItem {
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString PlaybackDurationProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyAlbumTrackNumber
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyAlbumTrackNumber")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString AlbumTrackNumberProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyAlbumTrackCount
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyAlbumTrackCount")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString AlbumTrackCountProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyDiscNumber
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyDiscNumber")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString DiscNumberProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyDiscCount
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyDiscCount")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString DiscCountProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyArtwork
+ ///
+ ///
+ ///
+ ///
[MacCatalyst (13, 1)]
[Field ("MPMediaItemPropertyArtwork")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
@@ -188,6 +269,11 @@ interface MPMediaItem {
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString LyricsProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyIsCompilation
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyIsCompilation")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString IsCompilationProperty { get; }
@@ -196,14 +282,29 @@ interface MPMediaItem {
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString ReleaseDateProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyBeatsPerMinute
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyBeatsPerMinute")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString BeatsPerMinuteProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyComments
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyComments")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString CommentsProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyAssetURL
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyAssetURL")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString AssetURLProperty { get; }
@@ -232,19 +333,35 @@ interface MPMediaItem {
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString PodcastTitleProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyBookmarkTime
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyBookmarkTime")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString BookmarkTimeProperty { get; }
+ /// Represents the value associated with the constant MPMediaItemPropertyIsCloudItem
+ ///
+ ///
+ ///
+ ///
[Field ("MPMediaItemPropertyIsCloudItem")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString IsCloudItemProperty { get; }
+ /// The value that is associated with the MPMediaItemPropertyHasProtectedAsset constant.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("MPMediaItemPropertyHasProtectedAsset")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
NSString HasProtectedAssetProperty { get; }
+ /// The value that is associated with the MPMediaItemPropertyDateAdded constant.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("MPMediaItemPropertyDateAdded")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
@@ -2063,9 +2180,15 @@ interface MPFeedbackCommandEvent {
[BaseType (typeof (MPRemoteCommandEvent))]
[DisableDefaultCtor] // NSGenericException Reason: MPChangeLanguageOptionCommandEvents cannot be initialized externally.
interface MPChangeLanguageOptionCommandEvent {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("languageOption")]
MPNowPlayingInfoLanguageOption LanguageOption { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("setting")]
MPChangeLanguageOptionSetting Setting { get; }
@@ -2189,6 +2312,9 @@ interface MPChangePlaybackPositionCommand {
[BaseType (typeof (MPRemoteCommandEvent))]
[DisableDefaultCtor] // Objective-C exception thrown. Name: NSGenericException Reason: MPChangePlaybackPositionCommandEvents cannot be initialized externally.
interface MPChangePlaybackPositionCommandEvent {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("positionTime")]
double PositionTime { get; }
}
diff --git a/src/mobilecoreservices.cs b/src/mobilecoreservices.cs
index 84a0ab5835cd..e734b6214af5 100644
--- a/src/mobilecoreservices.cs
+++ b/src/mobilecoreservices.cs
@@ -14,507 +14,1079 @@ namespace MobileCoreServices {
[Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use the 'UniformTypeIdentifiers.UTType' API instead.")]
[Partial]
interface UTType {
+ /// Represents the value associated with the constant kUTTypeItem
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeItem", "+CoreServices")]
NSString Item { get; }
+ /// Represents the value associated with the constant kUTTypeContent
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeContent", "+CoreServices")]
NSString Content { get; }
+ /// Represents the value associated with the constant kUTTypeCompositeContent
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeCompositeContent", "+CoreServices")]
NSString CompositeContent { get; }
+ /// Represents the value associated with the constant kUTTypeMessage
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMessage", "+CoreServices")]
NSString Message { get; }
+ /// Represents the value associated with the constant kUTTypeContact
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeContact", "+CoreServices")]
NSString Contact { get; }
+ /// Represents the value associated with the constant kUTTypeArchive
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeArchive", "+CoreServices")]
NSString Archive { get; }
+ /// Represents the value associated with the constant kUTTypeDiskImage
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeDiskImage", "+CoreServices")]
NSString DiskImage { get; }
+ /// Represents the value associated with the constant kUTTypeData
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeData", "+CoreServices")]
NSString Data { get; }
+ /// Represents the value associated with the constant kUTTypeDirectory
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeDirectory", "+CoreServices")]
NSString Directory { get; }
+ /// Represents the value associated with the constant kUTTypeResolvable
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeResolvable", "+CoreServices")]
NSString Resolvable { get; }
+ /// Represents the value associated with the constant kUTTypeSymLink
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeSymLink", "+CoreServices")]
NSString SymLink { get; }
+ /// Represents the value associated with the constant kUTTypeExecutable
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeExecutable", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Executable { get; }
+ /// Represents the value associated with the constant kUTTypeMountPoint
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMountPoint", "+CoreServices")]
NSString MountPoint { get; }
+ /// Represents the value associated with the constant kUTTypeAliasFile
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAliasFile", "+CoreServices")]
NSString AliasFile { get; }
+ /// Represents the value associated with the constant kUTTypeAliasRecord
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAliasRecord", "+CoreServices")]
NSString AliasRecord { get; }
+ /// Represents the value associated with the constant kUTTypeURLBookmarkData
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeURLBookmarkData", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString URLBookmarkData { get; }
+ /// Represents the value associated with the constant kUTTypeURL
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeURL", "+CoreServices")]
NSString URL { get; }
+ /// Represents the value associated with the constant kUTTypeFileURL
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeFileURL", "+CoreServices")]
NSString FileURL { get; }
+ /// Represents the value associated with the constant kUTTypeText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeText", "+CoreServices")]
NSString Text { get; }
+ /// Represents the value associated with the constant kUTTypePlainText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePlainText", "+CoreServices")]
NSString PlainText { get; }
+ /// Represents the value associated with the constant kUTTypeUTF8PlainText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeUTF8PlainText", "+CoreServices")]
NSString UTF8PlainText { get; }
+ /// Represents the value associated with the constant kUTTypeUTF16ExternalPlainText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeUTF16ExternalPlainText", "+CoreServices")]
NSString UTF16ExternalPlainText { get; }
+ /// Represents the value associated with the constant kUTTypeUTF16PlainText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeUTF16PlainText", "+CoreServices")]
NSString UTF16PlainText { get; }
+ /// Represents the value associated with the constant kUTTypeDelimitedText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeDelimitedText", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString DelimitedText { get; }
+ /// Represents the value associated with the constant kUTTypeCommaSeparatedText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeCommaSeparatedText", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString CommaSeparatedText { get; }
+ /// Represents the value associated with the constant kUTTypeTabSeparatedText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeTabSeparatedText", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString TabSeparatedText { get; }
+ /// Represents the value associated with the constant kUTTypeUTF8TabSeparatedText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeUTF8TabSeparatedText", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString UTF8TabSeparatedText { get; }
+ /// Represents the value associated with the constant kUTTypeRTF
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeRTF", "+CoreServices")]
NSString RTF { get; }
+ /// Represents the value associated with the constant kUTTypeHTML
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeHTML", "+CoreServices")]
NSString HTML { get; }
+ /// Represents the value associated with the constant kUTTypeXML
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeXML", "+CoreServices")]
NSString XML { get; }
+ /// Represents the value associated with the constant kUTTypeSourceCode
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeSourceCode", "+CoreServices")]
NSString SourceCode { get; }
+ /// Represents the value associated with the constant kUTTypeAssemblyLanguageSource
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAssemblyLanguageSource", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString AssemblyLanguageSource { get; }
+ /// Represents the value associated with the constant kUTTypeCSource
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeCSource", "+CoreServices")]
NSString CSource { get; }
+ /// Represents the value associated with the constant kUTTypeObjectiveCSource
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeObjectiveCSource", "+CoreServices")]
NSString ObjectiveCSource { get; }
+ /// Represents the value associated with the constant kUTTypeCPlusPlusSource
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeCPlusPlusSource", "+CoreServices")]
NSString CPlusPlusSource { get; }
+ /// Represents the value associated with the constant kUTTypeObjectiveCPlusPlusSource
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeObjectiveCPlusPlusSource", "+CoreServices")]
NSString ObjectiveCPlusPlusSource { get; }
+ /// Represents the value associated with the constant kUTTypeCHeader
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeCHeader", "+CoreServices")]
NSString CHeader { get; }
+ /// Represents the value associated with the constant kUTTypeCPlusPlusHeader
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeCPlusPlusHeader", "+CoreServices")]
NSString CPlusPlusHeader { get; }
+ /// Represents the value associated with the constant kUTTypeJavaSource
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeJavaSource", "+CoreServices")]
NSString JavaSource { get; }
+ /// Represents the value associated with the constant kUTTypeScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Script { get; }
+ /// Represents the value associated with the constant kUTTypeAppleScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAppleScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString AppleScript { get; }
+ /// Represents the value associated with the constant kUTTypeOSAScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeOSAScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString OSAScript { get; }
+ /// Represents the value associated with the constant kUTTypeOSAScriptBundle
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeOSAScriptBundle", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString OSAScriptBundle { get; }
+ /// Represents the value associated with the constant kUTTypeJavaScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeJavaScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString JavaScript { get; }
+ /// Represents the value associated with the constant kUTTypeShellScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeShellScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString ShellScript { get; }
+ /// Represents the value associated with the constant kUTTypePerlScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePerlScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString PerlScript { get; }
+ /// Represents the value associated with the constant kUTTypePythonScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePythonScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString PythonScript { get; }
+ /// Represents the value associated with the constant kUTTypeRubyScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeRubyScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString RubyScript { get; }
+ /// Represents the value associated with the constant kUTTypePHPScript
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePHPScript", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString PHPScript { get; }
+ /// Represents the value associated with the constant kUTTypeJSON
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeJSON", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString JSON { get; }
+ /// Represents the value associated with the constant kUTTypePropertyList
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePropertyList", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString PropertyList { get; }
+ /// Represents the value associated with the constant kUTTypeXMLPropertyList
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeXMLPropertyList", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString XMLPropertyList { get; }
+ /// Represents the value associated with the constant kUTTypeBinaryPropertyList
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeBinaryPropertyList", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString BinaryPropertyList { get; }
+ /// Represents the value associated with the constant kUTTypePDF
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePDF", "+CoreServices")]
NSString PDF { get; }
+ /// Represents the value associated with the constant kUTTypeRTFD
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeRTFD", "+CoreServices")]
NSString RTFD { get; }
+ /// Represents the value associated with the constant kUTTypeFlatRTFD
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeFlatRTFD", "+CoreServices")]
NSString FlatRTFD { get; }
+ /// Represents the value associated with the constant kUTTypeTXNTextAndMultimediaData
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeTXNTextAndMultimediaData", "+CoreServices")]
NSString TXNTextAndMultimediaData { get; }
+ /// Represents the value associated with the constant kUTTypeWebArchive
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeWebArchive", "+CoreServices")]
NSString WebArchive { get; }
+ /// Represents the value associated with the constant kUTTypeImage
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeImage", "+CoreServices")]
NSString Image { get; }
+ /// Represents the value associated with the constant kUTTypeJPEG
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeJPEG", "+CoreServices")]
NSString JPEG { get; }
+ /// Represents the value associated with the constant kUTTypeJPEG2000
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeJPEG2000", "+CoreServices")]
NSString JPEG2000 { get; }
+ /// Represents the value associated with the constant kUTTypeTIFF
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeTIFF", "+CoreServices")]
NSString TIFF { get; }
+ /// Represents the value associated with the constant kUTTypePICT
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePICT", "+CoreServices")]
NSString PICT { get; }
+ /// Represents the value associated with the constant kUTTypeGIF
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeGIF", "+CoreServices")]
NSString GIF { get; }
+ /// Represents the value associated with the constant kUTTypePNG
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePNG", "+CoreServices")]
NSString PNG { get; }
+ /// Represents the value associated with the constant kUTTypeQuickTimeImage
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeQuickTimeImage", "+CoreServices")]
NSString QuickTimeImage { get; }
+ /// Represents the value associated with the constant kUTTypeAppleICNS
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAppleICNS", "+CoreServices")]
NSString AppleICNS { get; }
+ /// Represents the value associated with the constant kUTTypeBMP
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeBMP", "+CoreServices")]
NSString BMP { get; }
+ /// Represents the value associated with the constant kUTTypeICO
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeICO", "+CoreServices")]
NSString ICO { get; }
+ /// Represents the value associated with the constant kUTTypeRawImage
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeRawImage", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString RawImage { get; }
+ /// Represents the value associated with the constant kUTTypeScalableVectorGraphics
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeScalableVectorGraphics", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString ScalableVectorGraphics { get; }
+ /// Represents the value associated with the constant kUTTypeAudiovisualContent
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAudiovisualContent", "+CoreServices")]
NSString AudiovisualContent { get; }
+ /// Represents the value associated with the constant kUTTypeMovie
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMovie", "+CoreServices")]
NSString Movie { get; }
+ /// Represents the value associated with the constant kUTTypeVideo
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeVideo", "+CoreServices")]
NSString Video { get; }
+ /// Represents the value associated with the constant kUTTypeAudio
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAudio", "+CoreServices")]
NSString Audio { get; }
+ /// Represents the value associated with the constant kUTTypeQuickTimeMovie
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeQuickTimeMovie", "+CoreServices")]
NSString QuickTimeMovie { get; }
+ /// Represents the value associated with the constant kUTTypeMPEG
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMPEG", "+CoreServices")]
NSString MPEG { get; }
+ /// Represents the value associated with the constant kUTTypeMPEG2Video
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMPEG2Video", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString MPEG2Video { get; }
+ /// Represents the value associated with the constant kUTTypeMPEG2TransportStream
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMPEG2TransportStream", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString MPEG2TransportStream { get; }
+ /// Represents the value associated with the constant kUTTypeMP3
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMP3", "+CoreServices")]
NSString MP3 { get; }
+ /// Represents the value associated with the constant kUTTypeMPEG4
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMPEG4", "+CoreServices")]
NSString MPEG4 { get; }
+ /// Represents the value associated with the constant kUTTypeMPEG4Audio
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMPEG4Audio", "+CoreServices")]
NSString MPEG4Audio { get; }
+ /// Represents the value associated with the constant kUTTypeAppleProtectedMPEG4Audio
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAppleProtectedMPEG4Audio", "+CoreServices")]
NSString AppleProtectedMPEG4Audio { get; }
+ /// Represents the value associated with the constant kUTTypeAppleProtectedMPEG4Video
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAppleProtectedMPEG4Video", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString AppleProtectedMPEG4Video { get; }
+ /// Represents the value associated with the constant kUTTypeAVIMovie
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAVIMovie", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString AVIMovie { get; }
+ /// Represents the value associated with the constant kUTTypeAudioInterchangeFileFormat
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeAudioInterchangeFileFormat", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString AudioInterchangeFileFormat { get; }
+ /// Represents the value associated with the constant kUTTypeWaveformAudio
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeWaveformAudio", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString WaveformAudio { get; }
+ /// Represents the value associated with the constant kUTTypeMIDIAudio
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeMIDIAudio", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString MIDIAudio { get; }
+ /// Represents the value associated with the constant kUTTypePlaylist
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePlaylist", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Playlist { get; }
+ /// Represents the value associated with the constant kUTTypeM3UPlaylist
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeM3UPlaylist", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString M3UPlaylist { get; }
+ /// Represents the value associated with the constant kUTTypeFolder
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeFolder", "+CoreServices")]
NSString Folder { get; }
+ /// Represents the value associated with the constant kUTTypeVolume
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeVolume", "+CoreServices")]
NSString Volume { get; }
+ /// Represents the value associated with the constant kUTTypePackage
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePackage", "+CoreServices")]
NSString Package { get; }
+ /// Represents the value associated with the constant kUTTypeBundle
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeBundle", "+CoreServices")]
NSString Bundle { get; }
+ /// Represents the value associated with the constant kUTTypePluginBundle
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePluginBundle", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString PluginBundle { get; }
+ /// Represents the value associated with the constant kUTTypeSpotlightImporter
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeSpotlightImporter", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString SpotlightImporter { get; }
+ /// Represents the value associated with the constant kUTTypeQuickLookGenerator
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeQuickLookGenerator", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString QuickLookGenerator { get; }
+ /// Represents the value associated with the constant kUTTypeXPCService
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeXPCService", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString XPCService { get; }
+ /// Represents the value associated with the constant kUTTypeFramework
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeFramework", "+CoreServices")]
NSString Framework { get; }
+ /// Represents the value associated with the constant kUTTypeApplication
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeApplication", "+CoreServices")]
NSString Application { get; }
+ /// Represents the value associated with the constant kUTTypeApplicationBundle
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeApplicationBundle", "+CoreServices")]
NSString ApplicationBundle { get; }
+ /// Represents the value associated with the constant kUTTypeApplicationFile
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeApplicationFile", "+CoreServices")]
NSString ApplicationFile { get; }
+ /// Represents the value associated with the constant kUTTypeUnixExecutable
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeUnixExecutable", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString UnixExecutable { get; }
+ /// Represents the value associated with the constant kUTTypeWindowsExecutable
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeWindowsExecutable", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString WindowsExecutable { get; }
+ /// Represents the value associated with the constant kUTTypeJavaClass
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeJavaClass", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString JavaClass { get; }
+ /// Represents the value associated with the constant kUTTypeJavaArchive
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeJavaArchive", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString JavaArchive { get; }
+ /// Represents the value associated with the constant kUTTypeSystemPreferencesPane
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeSystemPreferencesPane", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString SystemPreferencesPane { get; }
+ /// Represents the value associated with the constant kUTTypeGNUZipArchive
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeGNUZipArchive", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString GNUZipArchive { get; }
+ /// Represents the value associated with the constant kUTTypeBzip2Archive
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeBzip2Archive", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Bzip2Archive { get; }
+ /// Represents the value associated with the constant kUTTypeZipArchive
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeZipArchive", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString ZipArchive { get; }
+ /// Represents the value associated with the constant kUTTypeSpreadsheet
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeSpreadsheet", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Spreadsheet { get; }
+ /// Represents the value associated with the constant kUTTypePresentation
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePresentation", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Presentation { get; }
+ /// Represents the value associated with the constant kUTTypeDatabase
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeDatabase", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Database { get; }
+ /// Represents the value associated with the constant kUTTypeVCard
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeVCard", "+CoreServices")]
NSString VCard { get; }
+ /// Represents the value associated with the constant kUTTypeToDoItem
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeToDoItem", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString ToDoItem { get; }
+ /// Represents the value associated with the constant kUTTypeCalendarEvent
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeCalendarEvent", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString CalendarEvent { get; }
+ /// Represents the value associated with the constant kUTTypeEmailMessage
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeEmailMessage", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString EmailMessage { get; }
+ /// Represents the value associated with the constant kUTTypeInternetLocation
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeInternetLocation", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString InternetLocation { get; }
+ /// Represents the value associated with the constant kUTTypeInkText
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeInkText", "+CoreServices")]
NSString InkText { get; }
+ /// Represents the value associated with the constant kUTTypeFont
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeFont", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Font { get; }
+ /// Represents the value associated with the constant kUTTypeBookmark
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeBookmark", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Bookmark { get; }
+ /// Represents the value associated with the constant kUTType3DContent
+ ///
+ ///
+ /// To be added.
[Field ("kUTType3DContent", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString ThreeDContent { get; }
+ /// Represents the value associated with the constant kUTTypePKCS12
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypePKCS12", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString PKCS12 { get; }
+ /// Represents the value associated with the constant kUTTypeX509Certificate
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeX509Certificate", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString X509Certificate { get; }
+ /// Represents the value associated with the constant kUTTypeElectronicPublication
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeElectronicPublication", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString ElectronicPublication { get; }
+ /// Represents the value associated with the constant kUTTypeLog
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeLog", "+CoreServices")]
[MacCatalyst (13, 1)]
NSString Log { get; }
+ /// Represents the value associated with the constant kUTExportedTypeDeclarationsKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTExportedTypeDeclarationsKey", "+CoreServices")]
NSString ExportedTypeDeclarationsKey { get; }
+ /// Represents the value associated with the constant kUTImportedTypeDeclarationsKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTImportedTypeDeclarationsKey", "+CoreServices")]
NSString ImportedTypeDeclarationsKey { get; }
+ /// Represents the value associated with the constant kUTTypeIdentifierKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeIdentifierKey", "+CoreServices")]
NSString IdentifierKey { get; }
+ /// Represents the value associated with the constant kUTTypeTagSpecificationKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeTagSpecificationKey", "+CoreServices")]
NSString TagSpecificationKey { get; }
+ /// Represents the value associated with the constant kUTTypeConformsToKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeConformsToKey", "+CoreServices")]
NSString ConformsToKey { get; }
+ /// Represents the value associated with the constant kUTTypeDescriptionKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeDescriptionKey", "+CoreServices")]
NSString DescriptionKey { get; }
+ /// Represents the value associated with the constant kUTTypeIconFileKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeIconFileKey", "+CoreServices")]
NSString IconFileKey { get; }
+ /// Represents the value associated with the constant kUTTypeReferenceURLKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeReferenceURLKey", "+CoreServices")]
NSString ReferenceURLKey { get; }
+ /// Represents the value associated with the constant kUTTypeVersionKey
+ ///
+ ///
+ /// To be added.
[Field ("kUTTypeVersionKey", "+CoreServices")]
NSString VersionKey { get; }
+ /// Represents the value associated with the constant kUTTagClassFilenameExtension
+ ///
+ ///
+ /// To be added.
[Field ("kUTTagClassFilenameExtension", "+CoreServices")]
NSString TagClassFilenameExtension { get; }
+ /// Represents the value associated with the constant kUTTagClassMIMEType
+ ///
+ ///
+ /// To be added.
[Field ("kUTTagClassMIMEType", "+CoreServices")]
NSString TagClassMIMEType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS]
[NoMacCatalyst]
[NoTV]
[Field ("kUTTagClassNSPboardType", "+CoreServices")]
NSString TagClassNSPboardType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS]
[NoMacCatalyst]
[NoTV]
[Field ("kUTTagClassOSType", "+CoreServices")]
NSString TagClassOSType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kUTTypeSwiftSource", "+CoreServices")]
NSString SwiftSource { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kUTTypeAlembic", "ModelIO")]
NSString Alembic { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kUTType3dObject", "ModelIO")]
NSString k3dObject { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kUTTypePolygon", "ModelIO")]
NSString Polygon { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kUTTypeStereolithography", "ModelIO")]
NSString Stereolithography { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kUTTypeUniversalSceneDescription", "ModelIO")]
NSString UniversalSceneDescription { get; }
diff --git a/src/modelio.cs b/src/modelio.cs
index e4e31f6e0bd5..496cdd05bb51 100644
--- a/src/modelio.cs
+++ b/src/modelio.cs
@@ -75,7 +75,9 @@ namespace ModelIO {
[MacCatalyst (13, 1)]
[Native]
enum MDLAnimatedValueInterpolation : ulong {
+ /// To be added.
Constant,
+ /// To be added.
Linear,
}
@@ -93,8 +95,11 @@ enum MDLTransformOpRotationOrder : ulong {
[MacCatalyst (13, 1)]
[Native]
enum MDLDataPrecision : ulong {
+ /// To be added.
Undefined,
+ /// To be added.
Float,
+ /// To be added.
Double,
}
@@ -157,6 +162,9 @@ interface MDLAsset : NSCopying {
[Export ("canExportFileExtension:")]
bool CanExportFileExtension (string extension);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("components", ArgumentSemantic.Copy)]
IMDLComponent [] Components { get; }
@@ -193,21 +201,36 @@ interface MDLAsset : NSCopying {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
MDLAxisAlignedBoundingBox GetBoundingBox (double atTime);
+ /// Gets the smallest box that contains all of the objects in the asset.
+ /// To be added.
+ /// If any of the asset's contents contain timed information, application developers should use M:ModelIO.MDLObject.BoundingBoxAtTime*, instead.
[Export ("boundingBox")]
MDLAxisAlignedBoundingBox BoundingBox {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
get;
}
+ /// Gets or sets the frame interval for timed data in the asset.
+ /// To be added.
+ /// To be added.
[Export ("frameInterval")]
double FrameInterval { get; set; }
+ /// Gets the timestamp of the first timed data item in the asset, which is the lowest value to which all requested timed sample data are clamped.
+ /// To be added.
+ /// To be added.
[Export ("startTime")]
double StartTime { get; set; }
+ /// Gets the timestamp of the last timed data item in the asset, which is the highest value to which all requested timed sample data are clamped.
+ /// To be added.
+ /// To be added.
[Export ("endTime")]
double EndTime { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("upAxis", ArgumentSemantic.Assign)]
NVector3 UpAxis {
@@ -217,16 +240,37 @@ NVector3 UpAxis {
set;
}
+ /// Gets the URL from which the asset was loaded, or if the asset was not loaded from a URL.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("URL", ArgumentSemantic.Retain)]
NSUrl Url { get; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("resolver", ArgumentSemantic.Retain)]
IMDLAssetResolver Resolver { get; set; }
+ /// Gets the allocator that the application developer specified when constructing the asset, or an internal allocator if none was specified.
+ /// To be added.
+ /// To be added.
[Export ("bufferAllocator", ArgumentSemantic.Retain)]
IMDLMeshBufferAllocator BufferAllocator { get; }
+ /// Gets or sets the description of in-memory vertex data.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("vertexDescriptor", ArgumentSemantic.Retain)]
MDLVertexDescriptor VertexDescriptor { get; }
@@ -236,6 +280,9 @@ NVector3 UpAxis {
[Export ("removeObject:")]
void RemoveObject (MDLObject @object);
+ /// Gets the number of top-level nodes that are indexed by the asset, each of which contains zero or more child nodes.
+ /// To be added.
+ /// To be added.
[Export ("count")]
nuint Count { get; }
@@ -246,6 +293,9 @@ NVector3 UpAxis {
[Export ("objectAtIndex:")]
MDLObject GetObject (nuint index);
+ /// Gets or sets the underlying object that contains the asset's object hierarchy.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 15, 0, message: "Use the 'Originals' property instead.")]
[Deprecated (PlatformName.TvOS, 15, 0, message: "Use the 'Originals' property instead.")]
[Deprecated (PlatformName.MacOSX, 12, 0, message: "Use the 'Originals' property instead.")]
@@ -258,6 +308,9 @@ NVector3 UpAxis {
[Export ("originals", ArgumentSemantic.Retain)]
IMDLObjectContainerComponent Originals { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("animations", ArgumentSemantic.Retain)]
IMDLObjectContainerComponent Animations { get; set; }
@@ -311,6 +364,9 @@ interface MDLLightProbeIrradianceDataSource {
[MacCatalyst (13, 1)]
[BaseType (typeof (MDLObject))]
interface MDLCamera {
+ /// Gets or sets the transformation that determines what portion of a scene that the camera can view.
+ /// To be added.
+ /// To be added.
[Export ("projectionMatrix")]
#if !NET
[Obsolete ("Use 'ProjectionMatrix4x4' instead.")]
@@ -329,6 +385,9 @@ MatrixFloat4x4 ProjectionMatrix4x4 {
}
#endif
+ /// Gets or sets a value that controls whether the projection is perspective or orthographic.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("projection", ArgumentSemantic.Assign)]
MDLCameraProjection Projection { get; set; }
@@ -349,42 +408,81 @@ MatrixFloat4x4 ProjectionMatrix4x4 {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
Vector3 RayTo (Vector2i pixel, Vector2i size);
+ /// Gets or sets the near clipping plane.
+ /// To be added.
+ /// To be added.
[Export ("nearVisibilityDistance")]
float NearVisibilityDistance { get; set; }
+ /// Gets or sets the back clipping plane.
+ /// To be added.
+ /// To be added.
[Export ("farVisibilityDistance")]
float FarVisibilityDistance { get; set; }
+ /// Gets or sets the coefficient of the quadratic term in the formula that is used to calculate radial distortion.
+ /// To be added.
+ /// To be added.
[Export ("barrelDistortion")]
float BarrelDistortion { get; set; }
+ /// Gets or sets the scale factor that transforms world coordinates into meters.
+ /// To be added.
+ /// To be added.
[Export ("worldToMetersConversionScale")]
float WorldToMetersConversionScale { get; set; }
+ /// Gets or sets the coefficient of the fourth-power term in the formula that is used to calculate radial distortion.
+ /// To be added.
+ /// To be added.
[Export ("fisheyeDistortion")]
float FisheyeDistortion { get; set; }
+ /// Gets or sets a value that controls the degree to which image brightness is reduced as the edge of the simulated physical aperture is approached.
+ /// To be added.
+ /// To be added.
[Export ("opticalVignetting")]
float OpticalVignetting { get; set; }
+ /// Gets or sets the degree to which different colors are focussed differently by the camera. 0.0 is no chromatic aberration. 1.0 is the maximum amount.
+ /// To be added.
+ /// To be added.
[Export ("chromaticAberration")]
float ChromaticAberration { get; set; }
+ /// Gets or sets the focal length and updates the field of view accordingly.
+ /// To be added.
+ /// To be added.
[Export ("focalLength")]
float FocalLength { get; set; }
+ /// Gets or sets the focal distance, in meters.
+ /// To be added.
+ /// To be added.
[Export ("focusDistance")]
float FocusDistance { get; set; }
+ /// Gets or sets the field of view, and updates the focal length of the camera accordingly.
+ /// To be added.
+ /// To be added.
[Export ("fieldOfView")]
float FieldOfView { get; set; }
+ /// Gets or sets the focal ratio of the camera.
+ /// To be added.
+ /// To be added.
[Export ("fStop")]
float FStop { get; set; }
+ /// Gets or sets the number of blades to use when simulating bokeh in out-of-focus elements in the scene.
+ /// To be added.
+ /// To be added.
[Export ("apertureBladeCount", ArgumentSemantic.Assign)]
nuint ApertureBladeCount { get; set; }
+ /// Gets or sets the largest size of bokeh from point sources of light.
+ /// To be added.
+ /// To be added.
[Export ("maximumCircleOfConfusion")]
float MaximumCircleOfConfusion { get; set; }
@@ -392,15 +490,27 @@ MatrixFloat4x4 ProjectionMatrix4x4 {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
MDLTexture BokehKernelWithSize (Vector2i size);
+ /// Gets or sets the time, in seconds, for which the simulated shutter is open per frame.
+ /// To be added.
+ /// To be added.
[Export ("shutterOpenInterval")]
double ShutterOpenInterval { get; set; }
+ /// Gets or sets the height, in mm, of the sensor.
+ /// To be added.
+ /// To be added.
[Export ("sensorVerticalAperture")]
float SensorVerticalAperture { get; set; }
+ /// Gets or sets the aspect ratio of a simulated camera sensor.
+ /// To be added.
+ /// To be added.
[Export ("sensorAspect")]
float SensorAspect { get; set; }
+ /// Gets or sets the scale factor by which to expand the central region of the region. The image is cropped to the original extent of the sensor.
+ /// To be added.
+ /// To be added.
[Export ("sensorEnlargement", ArgumentSemantic.Assign)]
Vector2 SensorEnlargement {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -409,6 +519,9 @@ Vector2 SensorEnlargement {
set;
}
+ /// Gets or sets the directed distance, in mm, by which to offset the sensor from the center line of the simulated optical system.
+ /// To be added.
+ /// To be added.
[Export ("sensorShift", ArgumentSemantic.Assign)]
Vector2 SensorShift {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -417,6 +530,9 @@ Vector2 SensorShift {
set;
}
+ /// Gets or sets a vector whose signed components are added to the rendered image in order to simulate the effect of a flash.
+ /// To be added.
+ /// To be added.
[Export ("flash", ArgumentSemantic.Assign)]
Vector3 Flash {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -425,6 +541,9 @@ Vector3 Flash {
set;
}
+ /// Gets or sets a vector whose X and Y components clamp the low and high values of color components when calculating exposure levels for a simulated physical camera.
+ /// To be added.
+ /// To be added.
[Export ("exposureCompression", ArgumentSemantic.Assign)]
Vector2 ExposureCompression {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -433,6 +552,9 @@ Vector2 ExposureCompression {
set;
}
+ /// Gets or sets a vector whose components are multiplied by the color components of the rendered image prior to simulation of the physical lens.
+ /// To be added.
+ /// To be added.
[Export ("exposure", ArgumentSemantic.Assign)]
Vector3 Exposure {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -2021,6 +2143,9 @@ interface MDLTransform : MDLTransformComponent, NSCopying {
void SetMatrix4x4 (MatrixFloat4x4 matrix, double time);
#endif
+ /// Gets or sets the shear of the transform.
+ /// To be added.
+ /// To be added.
[Export ("shear", ArgumentSemantic.Assign)]
Vector3 Shear {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -2029,6 +2154,9 @@ Vector3 Shear {
set;
}
+ /// Gets or sets the componentwise scale factors of the transform.
+ /// To be added.
+ /// To be added.
[Export ("scale", ArgumentSemantic.Assign)]
Vector3 Scale {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -2037,6 +2165,9 @@ Vector3 Scale {
set;
}
+ /// Gets or sets the translation of the transform.
+ /// To be added.
+ /// To be added.
[Export ("translation", ArgumentSemantic.Assign)]
Vector3 Translation {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -2045,6 +2176,9 @@ Vector3 Translation {
set;
}
+ /// Gets or sets the rotation aspect of the transformation.
+ /// To be added.
+ /// To be added.
[Export ("rotation", ArgumentSemantic.Assign)]
Vector3 Rotation {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -2227,9 +2361,15 @@ interface MDLVertexDescriptor : NSCopying {
[Export ("removeAttributeNamed:")]
void RemoveAttribute (string name);
+ /// Gets or sets the list of attributes that are described by this descriptor.
+ /// To be added.
+ /// To be added.
[Export ("attributes", ArgumentSemantic.Retain)]
NSMutableArray Attributes { get; set; }
+ /// Gets or sets the vertex buffer layouts that describe the corresponding attributes that are contained in the property.
+ /// To be added.
+ /// To be added.
[Export ("layouts", ArgumentSemantic.Retain)]
NSMutableArray Layouts { get; set; }
@@ -2542,24 +2682,45 @@ interface MDLSubmeshTopology {
[BaseType (typeof (NSObject))]
interface MDLAnimatedValue : NSCopying {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("isAnimated")]
bool IsAnimated { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("precision")]
MDLDataPrecision Precision { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("timeSampleCount")]
nuint TimeSampleCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("minimumTime")]
double MinimumTime { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("maximumTime")]
double MaximumTime { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("interpolation", ArgumentSemantic.Assign)]
MDLAnimatedValueInterpolation Interpolation { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Protected]
[Export ("keyTimes")]
NSNumber [] WeakKeyTimes { get; }
@@ -2576,6 +2737,9 @@ interface MDLAnimatedValue : NSCopying {
[BaseType (typeof (MDLAnimatedValue))]
interface MDLAnimatedScalarArray {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("elementCount")]
nuint ElementCount { get; }
@@ -2619,6 +2783,9 @@ interface MDLAnimatedScalarArray {
[BaseType (typeof (MDLAnimatedValue))]
interface MDLAnimatedVector3Array {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("elementCount")]
nuint ElementCount { get; }
@@ -2662,6 +2829,9 @@ interface MDLAnimatedVector3Array {
[BaseType (typeof (MDLAnimatedValue))]
interface MDLAnimatedQuaternionArray {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("elementCount")]
nuint ElementCount { get; }
@@ -2933,15 +3103,36 @@ interface MDLPackedJointAnimation : NSCopying, MDLJointAnimation {
[BaseType (typeof (NSObject))]
interface MDLAnimationBindComponent : NSCopying, MDLComponent {
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("skeleton", ArgumentSemantic.Retain)]
MDLSkeleton Skeleton { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("jointAnimation", ArgumentSemantic.Retain)]
IMDLJointAnimation JointAnimation { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("jointPaths", ArgumentSemantic.Retain)]
string [] JointPaths { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("geometryBindTransform", ArgumentSemantic.Assign)]
NMatrix4d GeometryBindTransform {
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
@@ -3181,9 +3372,15 @@ interface MDLTransformStack : NSCopying, MDLTransformComponent {
[DisableDefaultCtor]
interface MDLMatrix4x4Array : NSCopying {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("elementCount")]
nuint ElementCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("precision")]
MDLDataPrecision Precision { get; }
diff --git a/src/multipeerconnectivity.cs b/src/multipeerconnectivity.cs
index d15b4de81202..5520b3733d46 100644
--- a/src/multipeerconnectivity.cs
+++ b/src/multipeerconnectivity.cs
@@ -39,6 +39,9 @@ partial interface MCPeerID : NSCopying, NSSecureCoding {
[Export ("initWithDisplayName:")]
NativeHandle Constructor (string myDisplayName);
+ /// The displayable name for the peer.
+ /// To be added.
+ /// To be added.
[Export ("displayName")]
string DisplayName { get; }
}
@@ -67,6 +70,9 @@ partial interface MCSession {
[Export ("disconnect")]
void Disconnect ();
+ /// An array of the currently connected devices.
+ /// The array will be non-null, but of length 0, if no peers are connected.
+ /// To be added.
[Export ("connectedPeers")]
MCPeerID [] ConnectedPeers { get; }
@@ -79,26 +85,58 @@ partial interface MCSession {
[Export ("startStreamWithName:toPeer:error:")]
NSOutputStream StartStream (string streamName, MCPeerID peerID, out NSError error);
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
[Export ("delegate", ArgumentSemantic.Weak), NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the MultipeerConnectivity.IMCSessionDelegate model class which acts as the class delegate.
+ /// The instance of the MultipeerConnectivity.IMCSessionDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
IMCSessionDelegate Delegate { get; set; }
+ /// The peer ID associated with this device.
+ /// To be added.
+ /// To be added.
[Export ("myPeerID")]
MCPeerID MyPeerID { get; }
// we use NSArray because, when non-null, it contains a SecIdentity followed by 0..n SecCertificate - none are NSObject
+ /// The security identity of this peer.
+ /// Location [0] holds a SecIdentityRef for the local peer. Additional values (if they exist) will be for connected peers.
+ /// To be added.
[NullAllowed]
[Export ("securityIdentity")]
NSArray SecurityIdentity { get; }
+ /// What type, if any, encryption s preferred.
+ /// The default value is .
+ /// To be added.
[Export ("encryptionPreference")]
MCEncryptionPreference EncryptionPreference { get; }
+ /// Represents the value associated with the constant kMCSessionMaximumNumberOfPeers
+ /// The value is 8.
+ /// To be added.
+ ///
[Field ("kMCSessionMaximumNumberOfPeers")]
nint MaximumNumberOfPeers { get; }
+ /// Represents the value associated with the constant kMCSessionMinimumNumberOfPeers
+ /// The value is 2.
+ ///
+ /// To be added.
+ ///
[Field ("kMCSessionMinimumNumberOfPeers")]
nint MinimumNumberOfPeers { get; }
@@ -181,19 +219,40 @@ partial interface MCNearbyServiceAdvertiser {
[Export ("stopAdvertisingPeer")]
void StopAdvertisingPeer ();
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
[Export ("delegate", ArgumentSemantic.Weak), NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the MultipeerConnectivity.IMCNearbyServiceAdvertiserDelegate model class which acts as the class delegate.
+ /// The instance of the MultipeerConnectivity.IMCNearbyServiceAdvertiserDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
IMCNearbyServiceAdvertiserDelegate Delegate { get; set; }
+ /// The identity by which this device will be known on the peer network.
+ /// This will contain the data passed in to the C:MultipeerConnectivity.MCNearbyServiceAdvertiser(MultipeerConnectivity.MCPeerID,Foundation.NSDictionary,string) constructor.
+ /// To be added.
[Export ("myPeerID")]
MCPeerID MyPeerID { get; }
+ ///
[NullAllowed]
[Export ("discoveryInfo")]
NSDictionary DiscoveryInfo { get; }
+ /// The network protocol this peer supports.
+ /// This will contain the data passed in to the C:MultipeerConnectivity.MCNearbyServiceAdvertiser(MultipeerConnectivity.MCPeerID,Foundation.NSDictionary,string) constructor.
+ /// To be added.
[Export ("serviceType")]
string ServiceType { get; }
}
@@ -256,15 +315,35 @@ partial interface MCNearbyServiceBrowser {
[Export ("invitePeer:toSession:withContext:timeout:")]
void InvitePeer (MCPeerID peerID, MCSession session, [NullAllowed] NSData context, double timeout);
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
[Export ("delegate", ArgumentSemantic.Weak), NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the MultipeerConnectivity.IMCNearbyServiceBrowserDelegate model class which acts as the class delegate.
+ /// The instance of the MultipeerConnectivity.IMCNearbyServiceBrowserDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
IMCNearbyServiceBrowserDelegate Delegate { get; set; }
+ /// The identity of the local peer.
+ /// To be added.
+ /// To be added.
[Export ("myPeerID")]
MCPeerID MyPeerID { get; }
+ /// The network protocol being browsed for.
+ /// To be added.
+ /// To be added.
[Export ("serviceType")]
string ServiceType { get; }
}
@@ -386,19 +465,40 @@ interface MCAdvertiserAssistant {
[Export ("initWithServiceType:discoveryInfo:session:")]
NativeHandle Constructor (string serviceType, [NullAllowed] NSDictionary info, MCSession session);
+ ///
[NullAllowed]
[Export ("discoveryInfo")]
NSDictionary DiscoveryInfo { get; }
+ /// The into which peers will be placed.
+ /// Passed in to the C:MultipeerConnectivity.MCAdvertiserAssistant(string,Foundation.NSDictionary, MultipeerConnectivity.MCSession) constructor.
+ /// To be added.
[Export ("session")]
MCSession Session { get; }
+ /// A string, between 1 and 15 characters long, identifying the network protocol being advertised.
+ /// Passed in to the C:MultipeerConnectivity.MCAdvertiserAssistant(string,Foundation.NSDictionary, MultipeerConnectivity.MCSession) constructor.
+ /// To be added.
[Export ("serviceType")]
string ServiceType { get; }
+ /// An object that can respond to the delegate protocol for this type
+ /// The instance that will respond to events and data requests.
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// Methods must be decorated with the [Export ("selectorName")] attribute to respond to each method from the protocol. Alternatively use the Delegate method which is strongly typed and does not require the [Export] attributes on methods.
+ ///
[Export ("delegate", ArgumentSemantic.Weak), NullAllowed]
NSObject WeakDelegate { get; set; }
+ /// An instance of the MultipeerConnectivity.IMCAdvertiserAssistantDelegate model class which acts as the class delegate.
+ /// The instance of the MultipeerConnectivity.IMCAdvertiserAssistantDelegate model class
+ ///
+ /// The delegate instance assigned to this object will be used to handle events or provide data on demand to this class.
+ /// When setting the Delegate or WeakDelegate values events will be delivered to the specified instance instead of being delivered to the C#-style events
+ /// This is the strongly typed version of the object, developers should use the WeakDelegate property instead if they want to merely assign a class derived from NSObject that has been decorated with [Export] attributes.
+ ///
[Wrap ("WeakDelegate")]
IMCAdvertiserAssistantDelegate Delegate { get; set; }
diff --git a/src/naturallanguage.cs b/src/naturallanguage.cs
index dff9761023fa..b73b10da9d5b 100644
--- a/src/naturallanguage.cs
+++ b/src/naturallanguage.cs
@@ -58,6 +58,9 @@ interface NLLanguageRecognizer {
[NullAllowed, Export ("dominantLanguage")]
NSString _DominantLanguage { get; }
+ /// Gets the language in which the text that was analyzed with was most likely written.
+ /// The the language in which the text was most likely written.
+ /// To be added.
[Wrap ("NLLanguageExtensions.GetValue (_DominantLanguage)")]
NLLanguage DominantLanguage { get; }
@@ -67,6 +70,9 @@ interface NLLanguageRecognizer {
NSDictionary GetNativeLanguageHypotheses (nuint maxHypotheses);
// left in case the user does not want to get a c# dict
+ /// Gets or sets a list of language hints that use native types.
+ /// A list of language hints that use native types.
+ /// To be added.
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("languageHints", ArgumentSemantic.Copy)]
NSDictionary NativeLanguageHints { get; set; }
@@ -75,6 +81,9 @@ interface NLLanguageRecognizer {
[Export ("languageConstraints", ArgumentSemantic.Copy)]
NSString [] _LanguageConstraints { get; set; }
+ /// Gets or sets the array of languages from which the recognizer must choose.
+ /// The array of languages from which the recognizer must choose..
+ /// To be added.
NLLanguage [] LanguageConstraints {
[Wrap ("Array.ConvertAll (_LanguageConstraints, e => NLLanguageExtensions.GetValue (e))")]
get;
@@ -123,6 +132,9 @@ interface NLModel {
[return: NullAllowed]
NLModel Create (MLModel mlModel, [NullAllowed] out NSError error);
+ /// Gets the configuration information, such as which language the model supports, or the current version of the model.
+ /// The configuration information, such as which language the model supports, or the current version of the model.
+ /// To be added.
[Export ("configuration", ArgumentSemantic.Copy)]
NLModelConfiguration Configuration { get; }
@@ -216,9 +228,15 @@ interface NLTagger {
[Export ("tagSchemes", ArgumentSemantic.Copy)]
NSString [] _TagSchemes { get; }
+ /// Gets the tagging schemes that are supported by this tagger.
+ /// The tagging schemes that are supported by this tagger.
+ /// To be added.
[Wrap ("Array.ConvertAll (_TagSchemes, e => NLTagSchemeExtensions.GetValue (e))")]
NLTagScheme [] TagSchemes { get; }
+ /// Gets or sets the string to tag.
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("string", ArgumentSemantic.Retain)]
string String { get; set; }
@@ -238,6 +256,9 @@ interface NLTagger {
[NullAllowed, Export ("dominantLanguage")]
NSString _DominantLanguage { get; }
+ /// Gets the dominant language for the tagged text.
+ /// The dominant language for the tagged text.
+ /// To be added.
[Wrap ("NLLanguageExtensions.GetValue (_DominantLanguage)")]
NLLanguage DominantLanguage { get; }
diff --git a/src/pdfkit.cs b/src/pdfkit.cs
index 4221f98b45a6..50bbba525cb5 100644
--- a/src/pdfkit.cs
+++ b/src/pdfkit.cs
@@ -70,129 +70,171 @@ namespace PdfKit {
[TV (18, 2)]
enum PdfAnnotationKey {
+ /// To be added.
[Field ("PDFAnnotationKeyAppearanceDictionary", "+PDFKit")]
AppearanceDictionary,
+ /// To be added.
[Field ("PDFAnnotationKeyAppearanceState", "+PDFKit")]
AppearanceState,
+ /// To be added.
[Field ("PDFAnnotationKeyBorder", "+PDFKit")]
Border,
+ /// To be added.
[Field ("PDFAnnotationKeyColor", "+PDFKit")]
Color,
+ /// To be added.
[Field ("PDFAnnotationKeyContents", "+PDFKit")]
Contents,
+ /// To be added.
[Field ("PDFAnnotationKeyFlags", "+PDFKit")]
Flags,
+ /// To be added.
[Field ("PDFAnnotationKeyDate", "+PDFKit")]
Date,
+ /// To be added.
[Field ("PDFAnnotationKeyName", "+PDFKit")]
Name,
+ /// To be added.
[Field ("PDFAnnotationKeyPage", "+PDFKit")]
Page,
+ /// To be added.
[Field ("PDFAnnotationKeyRect", "+PDFKit")]
Rect,
+ /// To be added.
[Field ("PDFAnnotationKeySubtype", "+PDFKit")]
Subtype,
+ /// To be added.
[Field ("PDFAnnotationKeyAction", "+PDFKit")]
Action,
+ /// To be added.
[Field ("PDFAnnotationKeyAdditionalActions", "+PDFKit")]
AdditionalActions,
+ /// To be added.
[Field ("PDFAnnotationKeyBorderStyle", "+PDFKit")]
BorderStyle,
+ /// To be added.
[Field ("PDFAnnotationKeyDefaultAppearance", "+PDFKit")]
DefaultAppearance,
+ /// To be added.
[Field ("PDFAnnotationKeyDestination", "+PDFKit")]
Destination,
+ /// To be added.
[Field ("PDFAnnotationKeyHighlightingMode", "+PDFKit")]
HighlightingMode,
+ /// To be added.
[Field ("PDFAnnotationKeyInklist", "+PDFKit")]
Inklist,
+ /// To be added.
[Field ("PDFAnnotationKeyInteriorColor", "+PDFKit")]
InteriorColor,
+ /// To be added.
[Field ("PDFAnnotationKeyLinePoints", "+PDFKit")]
LinePoints,
+ /// To be added.
[Field ("PDFAnnotationKeyLineEndingStyles", "+PDFKit")]
LineEndingStyles,
+ /// To be added.
[Field ("PDFAnnotationKeyIconName", "+PDFKit")]
IconName,
+ /// To be added.
[Field ("PDFAnnotationKeyOpen", "+PDFKit")]
Open,
+ /// To be added.
[Field ("PDFAnnotationKeyParent", "+PDFKit")]
Parent,
+ /// To be added.
[Field ("PDFAnnotationKeyPopup")]
Popup,
+ /// To be added.
[Field ("PDFAnnotationKeyQuadding", "+PDFKit")]
Quadding,
+ /// To be added.
[Field ("PDFAnnotationKeyQuadPoints", "+PDFKit")]
QuadPoints,
+ /// To be added.
[Field ("PDFAnnotationKeyTextLabel", "+PDFKit")]
TextLabel,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetDownCaption", "+PDFKit")]
WidgetDownCaption,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetBorderColor", "+PDFKit")]
WidgetBorderColor,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetBackgroundColor", "+PDFKit")]
WidgetBackgroundColor,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetCaption", "+PDFKit")]
WidgetCaption,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetDefaultValue", "+PDFKit")]
WidgetDefaultValue,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetFieldFlags", "+PDFKit")]
WidgetFieldFlags,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetFieldType", "+PDFKit")]
WidgetFieldType,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetAppearanceDictionary", "+PDFKit")]
WidgetAppearanceDictionary,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetMaxLen", "+PDFKit")]
WidgetMaxLen,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetOptions", "+PDFKit")]
WidgetOptions,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetRotation", "+PDFKit")]
WidgetRotation,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetRolloverCaption", "+PDFKit")]
WidgetRolloverCaption,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetTextLabelUI", "+PDFKit")]
WidgetTextLabelUI,
+ /// To be added.
[Field ("PDFAnnotationKeyWidgetValue", "+PDFKit")]
WidgetValue,
}
@@ -311,15 +353,19 @@ enum PdfAnnotationTextIconType {
[TV (18, 2)]
enum PdfAnnotationHighlightingMode {
+ /// To be added.
[Field ("PDFAnnotationHighlightingModeNone", "+PDFKit")]
None,
+ /// To be added.
[Field ("PDFAnnotationHighlightingModeInvert", "+PDFKit")]
Invert,
+ /// To be added.
[Field ("PDFAnnotationHighlightingModeOutline", "+PDFKit")]
Outline,
+ /// To be added.
[Field ("PDFAnnotationHighlightingModePush", "+PDFKit")]
Push,
}
@@ -556,6 +602,9 @@ interface PdfAction : NSCopying {
//As it is, I can create instances, that segfault when you access the type method.
//marking the method as [Abstract] doesn't work because the subclasses do not explictly
//define this method (although they implement it)
+ /// Gets the action type.
+ /// To be added.
+ /// To be added.
[Export ("type")]
string Type { get; }
}
@@ -570,6 +619,9 @@ interface PdfActionGoTo {
[Export ("initWithDestination:")]
NativeHandle Constructor (PdfDestination destination);
+ /// Gets or sets the destination of the go-to PDF action.
+ /// To be added.
+ /// To be added.
[Export ("destination")]
PdfDestination Destination { get; set; }
}
@@ -584,6 +636,9 @@ interface PdfActionNamed {
[Export ("initWithName:")]
NativeHandle Constructor (PdfActionNamedName name);
+ /// Gets or sets the name of the named PDF action.
+ /// To be added.
+ /// To be added.
[Export ("name")]
PdfActionNamedName Name { get; set; }
}
@@ -598,12 +653,21 @@ interface PdfActionRemoteGoTo {
[Export ("initWithPageIndex:atPoint:fileURL:")]
NativeHandle Constructor (nint pageIndex, CGPoint point, NSUrl fileUrl);
+ /// Gets or sets the zero-based index of the page in the destination document.
+ /// To be added.
+ /// To be added.
[Export ("pageIndex")]
nint PageIndex { get; set; }
+ /// Gets or sets the page-space point on the page in the destination document.
+ /// To be added.
+ /// To be added.
[Export ("point")]
CGPoint Point { get; set; }
+ /// Gets or sets the URL for the remote document.
+ /// To be added.
+ /// To be added.
[Export ("URL")]
NSUrl Url { get; set; }
}
@@ -620,9 +684,18 @@ interface PdfActionResetForm {
NativeHandle Constructor ();
//NSArray of NSString
+ /// Gets or sets the fields that will be affected by the action.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("fields"), NullAllowed]
string [] Fields { get; set; }
+ /// Gets or sets a Boolean value that controls whether the fields that are in will be cleared.
+ /// To be added.
+ /// To be added.
[Export ("fieldsIncludedAreCleared")]
bool FieldsIncludedAreCleared { get; set; }
}
@@ -637,6 +710,9 @@ interface PdfActionUrl {
[Export ("initWithURL:")]
NativeHandle Constructor (NSUrl url);
+ /// Gets or sets the URL for the PDF action.
+ /// To be added.
+ /// To be added.
[Export ("URL"), NullAllowed]
NSUrl Url { get; set; }
}
@@ -664,11 +740,17 @@ interface PdfAnnotation : NSCoding, NSCopying {
[Export ("initWithBounds:")]
NativeHandle Constructor (CGRect bounds);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("page")]
[NullAllowed]
PdfPage Page { get; set; }
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Protected]
[Export ("type")]
[NullAllowed]
@@ -679,17 +761,29 @@ interface PdfAnnotation : NSCoding, NSCopying {
string Type { get; set; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("bounds")]
CGRect Bounds { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("modificationDate")]
[NullAllowed]
NSDate ModificationDate { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("userName")]
[NullAllowed]
string UserName { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("popup")]
[NullAllowed]
#if MONOMAC
@@ -698,19 +792,34 @@ interface PdfAnnotation : NSCoding, NSCopying {
PdfAnnotation Popup { get; set; }
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("shouldDisplay")]
bool ShouldDisplay { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("shouldPrint")]
bool ShouldPrint { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("border")]
[NullAllowed]
PdfBorder Border { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("color")]
NSColor Color { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS]
[NullAllowed]
[Deprecated (PlatformName.MacOSX, 10, 13)]
@@ -719,10 +828,16 @@ interface PdfAnnotation : NSCoding, NSCopying {
[Export ("mouseUpAction")]
PdfAction MouseUpAction { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("contents")]
[NullAllowed]
string Contents { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS]
[Deprecated (PlatformName.MacOSX, 10, 12)]
[NoMacCatalyst]
@@ -731,6 +846,9 @@ interface PdfAnnotation : NSCoding, NSCopying {
[NullAllowed]
string ToolTip { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("hasAppearanceStream")]
bool HasAppearanceStream { get; }
@@ -748,10 +866,19 @@ interface PdfAnnotation : NSCoding, NSCopying {
[Export ("drawWithBox:")]
void Draw (PdfDisplayBox box);
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("action", ArgumentSemantic.Strong), NullAllowed]
PdfAction Action { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("highlighted")]
bool Highlighted { [Bind ("isHighlighted")] get; set; }
@@ -789,6 +916,9 @@ interface PdfAnnotation : NSCoding, NSCopying {
[Wrap ("SetValue (rect, key.GetConstant ()!)")]
bool SetValue (CGRect rect, PdfAnnotationKey key);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("annotationKeyValues", ArgumentSemantic.Copy)]
NSDictionary AnnotationKeyValues { get; }
@@ -804,34 +934,67 @@ interface PdfAnnotation : NSCoding, NSCopying {
// PDFAnnotation (PDFAnnotationUtilities) Category
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("font", ArgumentSemantic.Copy)]
NSFont Font { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("fontColor", ArgumentSemantic.Copy)]
NSColor FontColor { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("interiorColor", ArgumentSemantic.Copy)]
NSColor InteriorColor { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("alignment", ArgumentSemantic.Assign)]
NSTextAlignment Alignment { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("startPoint", ArgumentSemantic.Assign)]
CGPoint StartPoint { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("endPoint", ArgumentSemantic.Assign)]
CGPoint EndPoint { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("startLineStyle", ArgumentSemantic.Assign)]
PdfLineStyle StartLineStyle { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("endLineStyle", ArgumentSemantic.Assign)]
PdfLineStyle EndLineStyle { get; set; }
@@ -846,6 +1009,9 @@ interface PdfAnnotation : NSCoding, NSCopying {
[Export ("nameForLineStyle:")]
string GetName (PdfLineStyle style);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("iconType", ArgumentSemantic.Assign)]
PdfTextAnnotationIconType IconType { get; set; }
@@ -855,78 +1021,150 @@ interface PdfAnnotation : NSCoding, NSCopying {
[NullAllowed, Export ("quadrilateralPoints", ArgumentSemantic.Copy)]
IntPtr _QuadrilateralPoints { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("markupType", ArgumentSemantic.Assign)]
PdfMarkupType MarkupType { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("widgetFieldType")]
string WidgetFieldType { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("widgetControlType", ArgumentSemantic.Assign)]
PdfWidgetControlType WidgetControlType { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("multiline")]
bool Multiline { [Bind ("isMultiline")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("isPasswordField")]
bool IsPasswordField { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("comb")]
bool Comb { [Bind ("hasComb")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("maximumLength")]
nint MaximumLength { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("widgetStringValue")]
string WidgetStringValue { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("widgetDefaultStringValue")]
string WidgetDefaultStringValue { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("allowsToggleToOff")]
bool AllowsToggleToOff { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("radiosInUnison")]
bool RadiosInUnison { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("readOnly")]
bool ReadOnly { [Bind ("isReadOnly")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("listChoice")]
bool ListChoice { [Bind ("isListChoice")] get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("choices", ArgumentSemantic.Copy)]
string [] Choices { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("values", ArgumentSemantic.Copy)]
string [] Values { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("buttonWidgetState", ArgumentSemantic.Assign)]
PdfWidgetCellState ButtonWidgetState { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("buttonWidgetStateString")]
string ButtonWidgetStateString { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("open")]
bool Open { [Bind ("isOpen")] get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("paths")]
NSBezierPath [] Paths { get; }
@@ -939,26 +1177,62 @@ interface PdfAnnotation : NSCoding, NSCopying {
[Export ("removeBezierPath:")]
void RemoveBezierPath (NSBezierPath path);
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("destination", ArgumentSemantic.Strong)]
PdfDestination Destination { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("URL", ArgumentSemantic.Copy)]
NSUrl Url { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("fieldName")]
string FieldName { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("caption")]
string Caption { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("backgroundColor", ArgumentSemantic.Copy)]
NSColor BackgroundColor { get; set; }
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[MacCatalyst (13, 1)]
[NullAllowed, Export ("stampName")]
string StampName { get; set; }
@@ -974,33 +1248,63 @@ interface PdfAnnotation : NSCoding, NSCopying {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationButtonWidget")]
interface PdfAnnotationButtonWidget {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlType")]
PdfWidgetControlType ControlType { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("state")]
nint State { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("highlighted")]
bool Highlighted { [Bind ("isHighlighted")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("backgroundColor")]
NSColor BackgroundColor { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("allowsToggleToOff")]
bool AllowsToggleToOff { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("font")]
NSFont Font { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fontColor")]
NSColor FontColor { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("caption")]
string Caption { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fieldName")]
string FieldName { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("onStateValue")]
string OnStateValue { get; set; }
}
@@ -1011,25 +1315,46 @@ interface PdfAnnotationButtonWidget {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationChoiceWidget")]
interface PdfAnnotationChoiceWidget {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("stringValue")]
string Text { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("backgroundColor")]
NSColor BackgroundColor { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("font")]
NSFont Font { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fontColor")]
NSColor FontColor { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fieldName")]
string FieldName { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("isListChoice")]
bool IsListChoice { get; set; }
// NSArray of NSString
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("choices")]
string [] Choices { get; set; }
}
@@ -1040,6 +1365,9 @@ interface PdfAnnotationChoiceWidget {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationCircle")]
interface PdfAnnotationCircle {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("interiorColor")]
NSColor InteriorColor { get; set; }
}
@@ -1050,12 +1378,21 @@ interface PdfAnnotationCircle {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationFreeText")]
interface PdfAnnotationFreeText {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("font")]
NSFont Font { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fontColor")]
NSColor FontColor { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("alignment")]
NSTextAlignment Alignment { get; set; }
}
@@ -1066,6 +1403,9 @@ interface PdfAnnotationFreeText {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationInk")]
interface PdfAnnotationInk {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("paths")]
NSBezierPath [] Paths { get; }
@@ -1090,18 +1430,33 @@ interface PdfAnnotationInk {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationLine")]
interface PdfAnnotationLine {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("startPoint")]
CGPoint StartPoint { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("endPoint")]
CGPoint EndPoint { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("startLineStyle")]
PdfLineStyle StartLineStyle { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("endLineStyle")]
PdfLineStyle EndLineStyle { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("interiorColor")]
NSColor InteriorColor { get; set; }
}
@@ -1112,9 +1467,15 @@ interface PdfAnnotationLine {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationLink")]
interface PdfAnnotationLink {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("destination")]
PdfDestination Destination { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("URL")]
NSUrl Url { get; set; }
@@ -1128,9 +1489,15 @@ interface PdfAnnotationLink {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationMarkup")]
interface PdfAnnotationMarkup {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("quadrilateralPoints", ArgumentSemantic.Assign), NullAllowed]
NSArray WeakQuadrilateralPoints { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("markupType")]
PdfMarkupType MarkupType { get; set; }
}
@@ -1141,6 +1508,9 @@ interface PdfAnnotationMarkup {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationPopup")]
interface PdfAnnotationPopup {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("isOpen")]
bool IsOpen { get; set; }
}
@@ -1151,6 +1521,9 @@ interface PdfAnnotationPopup {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationSquare")]
interface PdfAnnotationSquare {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("interiorColor")]
NSColor InteriorColor { get; set; }
}
@@ -1161,6 +1534,9 @@ interface PdfAnnotationSquare {
[NoMacCatalyst]
[BaseType (typeof (PdfAnnotation), Name = "PDFAnnotationStamp")]
interface PdfAnnotationStamp {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("name")]
string Name { get; set; }
}
@@ -1217,15 +1593,30 @@ interface PdfAnnotationTextWidget {
[TV (18, 2)]
[BaseType (typeof (NSObject), Name = "PDFBorder")]
interface PdfBorder : NSCoding, NSCopying {
+ /// Gets or sets the border style.
+ /// To be added.
+ /// To be added.
[Export ("style")]
PdfBorderStyle Style { get; set; }
+ /// Gets or sets the line width, in points.
+ /// To be added.
+ /// To be added.
[Export ("lineWidth")]
nfloat LineWidth { get; set; }
+ /// Gets or sets a weak reference to the dash pattern for the border.
+ ///
+ /// (More documentation for this node is coming)
+ /// This value can be .
+ ///
+ /// To be added.
[Export ("dashPattern", ArgumentSemantic.Assign), NullAllowed]
NSArray WeakDashPattern { get; set; }
+ /// Gets or sets a weak reference to the border properties dictionary.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("borderKeyValues", ArgumentSemantic.Copy)]
NSDictionary WeakBorderKeyValues { get; }
@@ -2304,6 +2695,9 @@ interface PdfView :
[NoTV]
[NoMacCatalyst]
interface PdfViewAnnotationHitEventArgs {
+ /// Gets the annotation that was hit.
+ /// To be added.
+ /// To be added.
[Export ("PDFAnnotationHit")]
PdfAnnotation AnnotationHit { get; }
}
diff --git a/src/scenekit.cs b/src/scenekit.cs
index ed14e0b6e0a4..bc9b53cb9a0b 100644
--- a/src/scenekit.cs
+++ b/src/scenekit.cs
@@ -301,6 +301,9 @@ interface SCNAudioSource : NSCopying, NSSecureCoding {
[return: NullAllowed]
SCNAudioSource FromFile (string fileName);
+ /// Whether the audio uses positional mixing.
+ /// To be added.
+ /// To be added.
[Export ("positional")]
bool Positional { [Bind ("isPositional")] get; set; }
@@ -2726,6 +2729,10 @@ interface SCNRenderer : SCNSceneRenderer, SCNTechniqueSupport {
[MacCatalyst (13, 1)]
[Static]
interface SCNRenderingArguments {
+ /// Represents the value associated with the constant SCNModelTransform
+ ///
+ ///
+ /// To be added.
[Field ("SCNModelTransform")]
NSString ModelTransform { get; }
@@ -3484,6 +3491,9 @@ interface SCNText {
[NullAllowed]
NSFont Font { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("wrapped")]
bool Wrapped { [Bind ("isWrapped")] get; set; }
diff --git a/src/speech.cs b/src/speech.cs
index 79866197ef69..6742979203a7 100644
--- a/src/speech.cs
+++ b/src/speech.cs
@@ -27,19 +27,28 @@ namespace Speech {
[Native]
[MacCatalyst (13, 1), TV (18, 0)]
public enum SFSpeechRecognitionTaskState : long {
+ /// The recognition task is beginning.
Starting = 0,
+ /// The task is attempting to recognize speech.
Running = 1,
+ /// The task is ending.
Finishing = 2,
+ /// Speech recognition is in the process of being canceled.
Canceling = 3,
+ /// Speech recognition has completed.
Completed = 4,
}
[Native]
[MacCatalyst (13, 1), TV (18, 0)]
public enum SFSpeechRecognitionTaskHint : long {
+ /// No hint exists.
Unspecified = 0,
+ /// Free-form dictation.
Dictation = 1,
+ /// A request that may involve keywords associated with search.
Search = 2,
+ /// Confirming or denying a request.
Confirmation = 3,
}
@@ -47,9 +56,13 @@ public enum SFSpeechRecognitionTaskHint : long {
[Native]
[MacCatalyst (13, 1), TV (18, 0)]
public enum SFSpeechRecognizerAuthorizationStatus : long {
+ /// Permission has not been presented.
NotDetermined,
+ /// The user has denied permission for speech recognition.
Denied,
+ /// To be added.
Restricted,
+ /// The user has allowed speech recognition.
Authorized,
}
@@ -154,6 +167,9 @@ interface SFSpeechRecognitionResult : NSCopying, NSSecureCoding {
[Export ("transcriptions", ArgumentSemantic.Copy)]
SFTranscription [] Transcriptions { get; }
+ /// Gets whether this is the final attempt at recognition.
+ /// To be added.
+ /// To be added.
[Export ("final")]
bool Final { [Bind ("isFinal")] get; }
@@ -173,12 +189,18 @@ interface SFSpeechRecognitionTask {
[Export ("state")]
SFSpeechRecognitionTaskState State { get; }
+ /// Gets whether the speech recognition activity is in its final stage.
+ /// To be added.
+ /// To be added.
[Export ("finishing")]
bool Finishing { [Bind ("isFinishing")] get; }
[Export ("finish")]
void Finish ();
+ /// Gets whether the speech recognition attempt was cancelled.
+ /// To be added.
+ /// To be added.
[Export ("cancelled")]
bool Cancelled { [Bind ("isCancelled")] get; }
@@ -269,6 +291,11 @@ interface SFSpeechRecognizer {
[DesignatedInitializer]
NativeHandle Constructor (NSLocale locale);
+ /// Gets whether speech recognition is currently available.
+ /// To be added.
+ ///
+ /// Speech recognition is not supported on all devices and is always relient on Internet access.
+ ///
[Export ("available")]
bool Available { [Bind ("isAvailable")] get; }
diff --git a/src/spritekit.cs b/src/spritekit.cs
index 13fb0d316acb..33b261501b75 100644
--- a/src/spritekit.cs
+++ b/src/spritekit.cs
@@ -69,6 +69,9 @@ interface SK3DNode {
[Export ("sceneTime")]
double SceneTime { get; set; }
+ /// Gets or sets a value that controls whether the scene plays.
+ /// To be added.
+ /// To be added.
[Export ("playing")]
bool Playing { [Bind ("isPlaying")] get; set; }
diff --git a/src/usernotifications.cs b/src/usernotifications.cs
index 44e9279ac6d6..2aedc766c24e 100644
--- a/src/usernotifications.cs
+++ b/src/usernotifications.cs
@@ -28,14 +28,23 @@ namespace UserNotifications {
[ErrorDomain ("UNErrorDomain")]
[Native]
public enum UNErrorCode : long {
+ /// The app is not allowed to submit notification requests.
NotificationsNotAllowed = 1,
+ /// The URL for the file is not valid.
AttachmentInvalidUrl = 100,
+ /// The type of the attached file was not recognized.
AttachmentUnrecognizedType,
+ /// The attached file is too big.
AttachmentInvalidFileSize,
+ /// The local attached file was not present.
AttachmentNotInDataStore,
+ /// The attachment could not be moved onto the system data store.
AttachmentMoveIntoDataStoreFailed,
+ /// The attached file is corrupt.
AttachmentCorrupt,
+ /// To be added.
NotificationInvalidNoDate = 1400,
+ /// To be added.
NotificationInvalidNoContent,
ContentProvidingObjectNotAllowed = 1500,
ContentProvidingInvalid = 1501,
@@ -76,9 +85,13 @@ public enum UNNotificationCategoryOptions : ulong {
[MacCatalyst (13, 1)]
[Native]
public enum UNAuthorizationStatus : long {
+ /// The user has not yet allowed or denied the app permission to post notifications.
NotDetermined = 0,
+ /// The user has denied the app permission to post notifications.
Denied,
+ /// The user has allowed the app to post notifications.
Authorized,
+ /// The user has allowed provisional noncritical notifications.
[MacCatalyst (13, 1)]
Provisional,
[iOS (14, 0)]
@@ -100,8 +113,11 @@ public enum UNNotificationSetting : long {
[MacCatalyst (13, 1)]
[Native]
public enum UNAlertStyle : long {
+ /// The app may not display alerts.
None = 0,
+ /// The notification may display a temporary slide-down banner alert.
Banner,
+ /// The notification may display a modal alert.
Alert
}
@@ -109,15 +125,23 @@ public enum UNAlertStyle : long {
[Native]
[Flags]
public enum UNAuthorizationOptions : ulong {
+ /// Indicates that no request type is specified.
None = 0,
+ /// Indicates authorization to update the app's badge.
Badge = (1 << 0),
+ /// Indicates authorization to play sound.
Sound = (1 << 1),
+ /// Indicates authorization to display alerts.
Alert = (1 << 2),
+ /// Indicates authorization to display notifications in CarPlay.
CarPlay = (1 << 3),
+ /// Indicates authorization to display critical alerts.
[MacCatalyst (13, 1)]
CriticalAlert = (1 << 4),
+ /// Indicates that the app should provide a button for notification settings.
[MacCatalyst (13, 1)]
ProvidesAppNotificationSettings = (1 << 5),
+ /// Indicates authorization to make provisional noncritical notifications.
[MacCatalyst (13, 1)]
Provisional = (1 << 6),
[iOS (13, 0)]
@@ -199,9 +223,15 @@ public enum UNNotificationInterruptionLevel : long {
[DisableDefaultCtor] // as per docs (not user created)
interface UNNotification : NSCopying, NSSecureCoding {
+ /// Gets the date on which the notification was delivered.
+ /// The date on which the notification was delivered.
+ /// To be added.
[Export ("date", ArgumentSemantic.Copy)]
NSDate Date { get; }
+ /// Gets the original notification request for the notification.
+ /// The original notification request for the notification.
+ /// To be added.
[Export ("request", ArgumentSemantic.Copy)]
UNNotificationRequest Request { get; }
}
@@ -215,12 +245,21 @@ interface UNNotification : NSCopying, NSSecureCoding {
[DisableDefaultCtor] // as per docs (use FromIdentifier)
interface UNNotificationAction : NSCopying, NSSecureCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("identifier")]
string Identifier { get; }
+ /// Gets the localized action title.
+ /// The localized action title.
+ /// To be added.
[Export ("title")]
string Title { get; }
+ /// Gets the unique identifier that the application will use to find the action.
+ /// The unique identifier that the application will use to find the action.
+ /// To be added.
[Export ("options")]
UNNotificationActionOptions Options { get; }
@@ -272,12 +311,21 @@ interface UNTextInputNotificationAction {
[DisableDefaultCtor] // as per docs (use FromIdentifier)
interface UNNotificationAttachment : NSCopying, NSSecureCoding {
+ /// Gets the identifier for the attachment.
+ /// The identifier for the attachment.
+ /// To be added.
[Export ("identifier")]
string Identifier { get; }
+ /// Gets the URL for the attachment.
+ /// The URL for the attachment.
+ /// To be added.
[Export ("URL", ArgumentSemantic.Copy)]
NSUrl Url { get; }
+ /// Gets the type of the attachment.
+ /// The type of the attachment.
+ /// To be added.
[Export ("type")]
string Type { get; }
@@ -464,45 +512,84 @@ interface UNNotificationContent : NSCopying, NSMutableCopying, NSSecureCoding {
[BaseType (typeof (UNNotificationContent))]
interface UNMutableNotificationContent {
+ /// Gets or sets an array of objects that contains the attachments for the notification.
+ /// An array of objects that contains the attachments for the notification.
+ /// To be added.
[Unavailable (PlatformName.TvOS)]
[Export ("attachments", ArgumentSemantic.Copy)]
UNNotificationAttachment [] Attachments { get; set; }
+ /// Gets or sets the number to display in the app's icon badge.
+ ///
+ /// The number to display in the app's icon badge.
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("badge", ArgumentSemantic.Copy)]
NSNumber Badge { get; set; }
+ /// Gets or sets the message that is displayed in the notification alert.
+ /// The message that is displayed in the notification alert.
+ /// To be added.
[Unavailable (PlatformName.TvOS)]
[Export ("body")]
string Body { get; set; }
+ /// Gets or sets an application-defined category object identifier.
+ /// An application-defined category object identifier.
+ /// To be added.
[Unavailable (PlatformName.TvOS)]
[Export ("categoryIdentifier")]
string CategoryIdentifier { get; set; }
+ /// Gets or sets the name of an image that is stored in the application's bundle to display when the user launches the application from the notification.
+ /// The name of an image that is stored in the application's bundle to display when the user launches the application from the notification.
+ /// To be added.
[NoTV, NoMac]
[MacCatalyst (13, 1)]
[Export ("launchImageName")]
string LaunchImageName { get; set; }
+ /// Gets or sets the sound that is played when the notification is triggered.
+ ///
+ /// The sound that is played when the notification is triggered.
+ /// This value can be .
+ ///
+ /// To be added.
[Unavailable (PlatformName.TvOS)]
[NullAllowed, Export ("sound", ArgumentSemantic.Copy)]
UNNotificationSound Sound { get; set; }
+ /// Gets or sets the notification subtitle.
+ /// The notification subtitle.
+ /// To be added.
[Unavailable (PlatformName.TvOS)]
[Export ("subtitle")]
string Subtitle { get; set; }
+ /// Gets or sets an application-specific identifier that is used to group notifications.
+ /// An application-specific identifier that is used to group notifications.
+ /// To be added.
[Unavailable (PlatformName.TvOS)]
[Export ("threadIdentifier")]
string ThreadIdentifier { get; set; }
+ /// Gets or sets the notification descritpion.
+ /// The notification descritpion.
+ /// To be added.
[Unavailable (PlatformName.TvOS)]
[Export ("title")]
string Title { get; set; }
+ /// Gets or sets the dictionary of notification custom data.
+ /// The dictionary of notification custom data.
+ /// To be added.
[Export ("userInfo", ArgumentSemantic.Copy)]
NSDictionary UserInfo { get; set; }
+ /// Gets or sets the notification-specific addition to the category summary string.
+ /// The notification-specific addition to the category summary string.
+ /// To be added.
[NoTV]
[Deprecated (PlatformName.iOS, 15, 0, message: "This property is ignored.")]
[MacCatalyst (13, 1)]
@@ -510,6 +597,9 @@ interface UNMutableNotificationContent {
[Export ("summaryArgument")]
string SummaryArgument { get; set; }
+ /// Gets or sets the number of arguments that the notification adds to the category summary string.
+ /// The number of arguments added to the category notification string.
+ /// To be added.
[NoTV]
[Deprecated (PlatformName.iOS, 15, 0, message: "This property is ignored.")]
[MacCatalyst (13, 1)]
@@ -783,6 +873,9 @@ interface UNTimeIntervalNotificationTrigger {
[BaseType (typeof (UNNotificationTrigger))]
interface UNCalendarNotificationTrigger {
+ /// Gets the date components that describe when the notification will be triggered.
+ /// The date components that describe when the notification will be triggered.
+ /// To be added.
[Export ("dateComponents", ArgumentSemantic.Copy)]
NSDateComponents DateComponents { get; }
@@ -790,6 +883,12 @@ interface UNCalendarNotificationTrigger {
[Export ("triggerWithDateMatchingComponents:repeats:")]
UNCalendarNotificationTrigger CreateTrigger (NSDateComponents dateComponents, bool repeats);
+ /// Gets the date at which the notification will next be triggered.
+ ///
+ /// The date at which the notification will next be triggered.
+ /// This value can be .
+ ///
+ /// To be added.
[NullAllowed, Export ("nextTriggerDate")]
NSDate NextTriggerDate { get; }
}
@@ -804,6 +903,9 @@ interface UNCalendarNotificationTrigger {
[DisableDefaultCtor] // as per doc, use supplied method (CreateTrigger)
interface UNLocationNotificationTrigger {
+ /// Gets the region whose boundary activates the trigger.
+ /// Application developers can set and to control when the trigger is activated.
+ /// To be added.
[Export ("region", ArgumentSemantic.Copy)]
CLRegion Region { get; }
diff --git a/src/videotoolbox.cs b/src/videotoolbox.cs
index 951c82320274..2590165a1aa8 100644
--- a/src/videotoolbox.cs
+++ b/src/videotoolbox.cs
@@ -37,21 +37,36 @@ interface VTCompressionPropertyKey {
[Field ("kVTCompressionPropertyKey_MaxKeyFrameIntervalDuration")]
NSString MaxKeyFrameIntervalDuration { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_AllowTemporalCompression")]
NSString AllowTemporalCompression { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_AllowFrameReordering")]
NSString AllowFrameReordering { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kVTCompressionPropertyKey_AllowOpenGOP")]
NSString AllowOpenGop { get; }
// Rate control
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_AverageBitRate")]
NSString AverageBitRate { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_DataRateLimits")]
NSString DataRateLimits { get; } // NSArray of an even number of CFNumbers alternating [int, double](bytes, seconds] Read/write
@@ -74,10 +89,16 @@ interface VTCompressionPropertyKey {
[Field ("kVTCompressionPropertyKey_ProfileLevel")]
NSString ProfileLevel { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_H264EntropyMode")]
[MacCatalyst (13, 1)]
NSString H264EntropyMode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_Depth")]
NSString Depth { get; }
@@ -106,6 +127,9 @@ interface VTCompressionPropertyKey {
[Field ("kVTCompressionPropertyKey_SourceFrameCount")]
NSString SourceFrameCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_ExpectedFrameRate")]
NSString ExpectedFrameRate { get; }
@@ -119,9 +143,15 @@ interface VTCompressionPropertyKey {
[Field ("kVTCompressionPropertyKey_BaseLayerFrameRateFraction")]
NSString BaseLayerFrameRateFraction { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_ExpectedDuration")]
NSString ExpectedDuration { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kVTCompressionPropertyKey_BaseLayerFrameRate")]
NSString BaseLayerFrameRate { get; }
@@ -142,18 +172,30 @@ interface VTCompressionPropertyKey {
// Clean aperture and pixel aspect ratio
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_CleanAperture")]
NSString CleanAperture { get; }
[Field ("kVTCompressionPropertyKey_PixelAspectRatio")]
NSString PixelAspectRatio { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_FieldCount")]
NSString FieldCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_FieldDetail")]
NSString FieldDetail { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_AspectRatio16x9")]
NSString AspectRatio16x9 { get; }
@@ -162,6 +204,9 @@ interface VTCompressionPropertyKey {
// Color
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_ColorPrimaries")]
NSString ColorPrimaries { get; }
@@ -171,6 +216,9 @@ interface VTCompressionPropertyKey {
[Field ("kVTCompressionPropertyKey_YCbCrMatrix")]
NSString YCbCrMatrix { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_ICCProfile")]
NSString ICCProfile { get; }
@@ -190,6 +238,9 @@ interface VTCompressionPropertyKey {
[Field ("kVTCompressionPropertyKey_MasteringDisplayColorVolume")]
NSString MasteringDisplayColorVolume { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kVTCompressionPropertyKey_ContentLightLevelInfo")]
NSString ContentLightLevelInfo { get; }
@@ -207,6 +258,9 @@ interface VTCompressionPropertyKey {
// Encoder information
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTCompressionPropertyKey_EncoderID")]
[MacCatalyst (13, 1)]
NSString EncoderId { get; }
@@ -351,43 +405,82 @@ enum VTAlphaChannelMode {
[StrongDictionary ("VTCompressionPropertyKey")]
interface VTCompressionProperties {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("NumberOfPendingFrames")]
int NumberOfPendingFrames { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("PixelBufferPoolIsShared")]
bool PixelBufferPoolIsShared { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("VideoEncoderPixelBufferAttributes")]
NSDictionary VideoEncoderPixelBufferAttributes { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("MaxKeyFrameInterval")]
int MaxKeyFrameInterval { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("MaxKeyFrameIntervalDuration")]
double MaxKeyFrameIntervalDuration { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("AllowTemporalCompression")]
bool AllowTemporalCompression { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("AllowFrameReordering")]
bool AllowFrameReordering { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("AllowOpenGop")]
bool AllowOpenGop { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("AverageBitRate")]
int AverageBitRate { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("Quality")]
float Quality { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("MoreFramesBeforeStart")]
bool MoreFramesBeforeStart { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("MoreFramesAfterEnd")]
bool MoreFramesAfterEnd { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("Depth")]
CMPixelFormat Depth { get; set; }
@@ -395,23 +488,41 @@ interface VTCompressionProperties {
[Export ("PreserveAlphaChannel")]
bool PreserveAlphaChannel { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("MaxFrameDelayCount")]
int MaxFrameDelayCount { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("MaxH264SliceBytes")]
int MaxH264SliceBytes { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("RealTime")]
bool RealTime { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("MaximizePowerEfficiency")]
bool MaximizePowerEfficiency { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("SourceFrameCount")]
uint SourceFrameCount { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ExpectedFrameRate")]
double ExpectedFrameRate { get; set; }
@@ -419,9 +530,15 @@ interface VTCompressionProperties {
[Export ("MaximumRealTimeFrameRate")]
double MaximumRealTimeFrameRate { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ExpectedDuration")]
double ExpectedDuration { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("BaseLayerFrameRate")]
double BaseLayerFrameRate { get; set; }
@@ -434,38 +551,71 @@ interface VTCompressionProperties {
[Export ("CalculateMeanSquaredError")]
bool CalculateMeanSquaredError { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("UsingHardwareAcceleratedVideoEncoder")]
bool UsingHardwareAcceleratedVideoEncoder { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("CleanAperture")]
NSDictionary CleanAperture { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("PixelAspectRatio")]
NSDictionary PixelAspectRatio { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("FieldCount")]
VTFieldCount FieldCount { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("AspectRatio16x9")]
bool AspectRatio16x9 { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ProgressiveScan")]
bool ProgressiveScan { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ICCProfile")]
NSData ICCProfile { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("MasteringDisplayColorVolume")]
NSData MasteringDisplayColorVolume { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("ContentLightLevelInfo")]
NSData ContentLightLevelInfo { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("PixelTransferProperties")]
NSDictionary PixelTransferProperties { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("EncoderId")]
string EncoderId { get; set; }
@@ -808,9 +958,15 @@ interface VTProfileLevelKeys {
[Static]
[MacCatalyst (13, 1)]
interface VTH264EntropyModeKeys {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTH264EntropyMode_CAVLC")]
NSString CAVLC { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTH264EntropyMode_CABAC")]
NSString CABAC { get; }
}
@@ -874,6 +1030,9 @@ interface VTVideoEncoderSpecificationKeys {
[StrongDictionary ("VTEncodeFrameOptionKey")]
interface VTEncodeFrameOptions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ForceKeyFrame")]
bool ForceKeyFrame { get; set; }
}
@@ -884,6 +1043,9 @@ interface VTEncodeFrameOptions {
interface VTEncodeFrameOptionKey {
// Per-frame configuration
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTEncodeFrameOptionKey_ForceKeyFrame")]
NSString ForceKeyFrame { get; }
@@ -934,116 +1096,215 @@ interface VTSampleAttachmentQualityMetricsKey {
interface VTDecompressionPropertyKey {
// Pixel buffer pools
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_PixelBufferPool")]
NSString PixelBufferPool { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_PixelBufferPoolIsShared")]
NSString PixelBufferPoolIsShared { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_OutputPoolRequestedMinimumBufferCount")]
[MacCatalyst (13, 1)]
NSString OutputPoolRequestedMinimumBufferCount { get; }
// Asynchronous state
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_NumberOfFramesBeingDecoded")]
NSString NumberOfFramesBeingDecoded { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_MinOutputPresentationTimeStampOfFramesBeingDecoded")]
NSString MinOutputPresentationTimeStampOfFramesBeingDecoded { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_MaxOutputPresentationTimeStampOfFramesBeingDecoded")]
NSString MaxOutputPresentationTimeStampOfFramesBeingDecoded { get; }
// Content
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_ContentHasInterframeDependencies")]
NSString ContentHasInterframeDependencies { get; }
// Hardware acceleration
// hardware acceleration is default behavior on iOS. no opt-in required.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_UsingHardwareAcceleratedVideoDecoder")]
[MacCatalyst (13, 1)]
NSString UsingHardwareAcceleratedVideoDecoder { get; }
// Decoder behavior
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_RealTime")]
[MacCatalyst (13, 1)]
NSString RealTime { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_MaximizePowerEfficiency")]
[MacCatalyst (13, 1)]
NSString MaximizePowerEfficiency { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_ThreadCount")]
NSString ThreadCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_FieldMode")]
NSString FieldMode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_FieldMode_BothFields")]
NSString FieldMode_BothFields { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_FieldMode_TopFieldOnly")]
NSString FieldMode_TopFieldOnly { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_FieldMode_BottomFieldOnly")]
NSString FieldMode_BottomFieldOnly { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_FieldMode_SingleField")]
NSString FieldMode_SingleField { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_FieldMode_DeinterlaceFields")]
NSString FieldMode_DeinterlaceFields { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_DeinterlaceMode")]
NSString DeinterlaceMode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_DeinterlaceMode_VerticalFilter")]
NSString DeinterlaceMode_VerticalFilter { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_DeinterlaceMode_Temporal")]
NSString DeinterlaceMode_Temporal { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_ReducedResolutionDecode")]
NSString ReducedResolutionDecode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_ReducedCoefficientDecode")]
NSString ReducedCoefficientDecode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_ReducedFrameDelivery")]
NSString ReducedFrameDelivery { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_OnlyTheseFrames")]
NSString OnlyTheseFrames { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_OnlyTheseFrames_AllFrames")]
NSString OnlyTheseFrames_AllFrames { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_OnlyTheseFrames_NonDroppableFrames")]
NSString OnlyTheseFrames_NonDroppableFrames { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_OnlyTheseFrames_IFrames")]
NSString OnlyTheseFrames_IFrames { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionProperty_OnlyTheseFrames_KeyFrames")]
NSString OnlyTheseFrames_KeyFrames { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kVTDecompressionProperty_TemporalLevelLimit")]
NSString TemporalLevelLimit { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_SuggestedQualityOfServiceTiers")]
NSString SuggestedQualityOfServiceTiers { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_SupportedPixelFormatsOrderedByQuality")]
NSString SupportedPixelFormatsOrderedByQuality { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_SupportedPixelFormatsOrderedByPerformance")]
NSString SupportedPixelFormatsOrderedByPerformance { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_PixelFormatsWithReducedResolutionSupport")]
NSString PixelFormatsWithReducedResolutionSupport { get; }
@@ -1054,6 +1315,9 @@ interface VTDecompressionPropertyKey {
//Post-decompression processing
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDecompressionPropertyKey_PixelTransferProperties")]
NSString PixelTransferProperties { get; }
@@ -1089,73 +1353,133 @@ interface VTDecompressionPropertyKey {
[StrongDictionary ("VTDecompressionPropertyKey")]
interface VTDecompressionProperties {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("PixelBufferPoolIsShared")]
bool PixelBufferPoolIsShared { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("OutputPoolRequestedMinimumBufferCount")]
uint OutputPoolRequestedMinimumBufferCount { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("NumberOfFramesBeingDecoded")]
uint NumberOfFramesBeingDecoded { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("MinOutputPresentationTimeStampOfFramesBeingDecoded")]
NSDictionary MinOutputPresentationTimeStampOfFramesBeingDecoded { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("MaxOutputPresentationTimeStampOfFramesBeingDecoded")]
NSDictionary MaxOutputPresentationTimeStampOfFramesBeingDecoded { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ContentHasInterframeDependencies")]
bool ContentHasInterframeDependencies { get; }
// Hardware acceleration
// hardware acceleration is default behavior on iOS. no opt-in required.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("UsingHardwareAcceleratedVideoDecoder")]
[MacCatalyst (13, 1)]
bool UsingHardwareAcceleratedVideoDecoder { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("RealTime")]
bool RealTime { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("MaximizePowerEfficiency")]
bool MaximizePowerEfficiency { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ThreadCount")]
uint ThreadCount { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("ReducedResolutionDecode")]
VTDecompressionResolutionOptions ReducedResolutionDecode { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ReducedCoefficientDecode")]
uint ReducedCoefficientDecode { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ReducedFrameDelivery")]
float ReducedFrameDelivery { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("TemporalLevelLimit")]
int TemporalLevelLimit { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("SuggestedQualityOfServiceTiers")]
NSDictionary [] SuggestedQualityOfServiceTiers { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("SupportedPixelFormatsOrderedByQuality")]
CMPixelFormat [] SupportedPixelFormatsOrderedByQuality { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("SupportedPixelFormatsOrderedByPerformance")]
CMPixelFormat [] SupportedPixelFormatsOrderedByPerformance { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("PixelFormatsWithReducedResolutionSupport")]
CMPixelFormat [] PixelFormatsWithReducedResolutionSupport { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Advice ("Use Strongly typed version PixelTransferSettings")]
[Export ("PixelTransferProperties")]
NSDictionary PixelTransferProperties { get; set; }
// VTPixelTransferProperties are available in iOS 9 radar://22614931 https://trello.com/c/bTl6hRu9
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[MacCatalyst (13, 1)]
[Export ("PixelTransferProperties")]
@@ -1266,18 +1590,33 @@ interface VTDecompressionResolutionKeys {
[MacCatalyst (13, 1)]
[StrongDictionary ("VTPropertyKeys")]
interface VTPropertyOptions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ShouldBeSerialized")]
bool ShouldBeSerialized { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("SupportedValueMinimumKey")]
NSNumber SupportedValueMinimum { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("SupportedValueMaximumKey")]
NSNumber SupportedValueMaximum { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("SupportedValueListKey")]
NSNumber [] SupportedValueList { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("DocumentationKey")]
NSString Documentation { get; set; }
}
@@ -1286,24 +1625,45 @@ interface VTPropertyOptions {
[MacCatalyst (13, 1)]
[Static]
interface VTPropertyKeys {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyTypeKey")]
NSString Type { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyReadWriteStatusKey")]
NSString ReadWriteStatus { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyShouldBeSerializedKey")]
NSString ShouldBeSerialized { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertySupportedValueMinimumKey")]
NSString SupportedValueMinimumKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertySupportedValueMaximumKey")]
NSString SupportedValueMaximumKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertySupportedValueListKey")]
NSString SupportedValueListKey { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyDocumentationKey")]
NSString DocumentationKey { get; }
}
@@ -1312,12 +1672,21 @@ interface VTPropertyKeys {
[MacCatalyst (13, 1)]
[Static]
interface VTPropertyTypeKeys {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyType_Boolean")]
NSString Boolean { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyType_Enumeration")]
NSString Enumeration { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyType_Number")]
NSString Number { get; }
}
@@ -1326,9 +1695,15 @@ interface VTPropertyTypeKeys {
[MacCatalyst (13, 1)]
[Static]
interface VTPropertyReadWriteStatusKeys {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyReadWriteStatus_ReadOnly")]
NSString ReadOnly { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPropertyReadWriteStatus_ReadWrite")]
NSString ReadWrite { get; }
}
@@ -1402,6 +1777,9 @@ interface VTVideoEncoderList {
[MacCatalyst (13, 1)]
[Static]
interface VTMultiPassStorageCreationOptionKeys {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTMultiPassStorageCreationOption_DoNotDelete")]
NSString DoNotDelete { get; }
}
@@ -1410,6 +1788,9 @@ interface VTMultiPassStorageCreationOptionKeys {
[MacCatalyst (13, 1)]
[StrongDictionary ("VTMultiPassStorageCreationOptionKeys")]
interface VTMultiPassStorageCreationOptions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("DoNotDelete")]
bool DoNotDelete { get; set; }
}
@@ -1419,14 +1800,23 @@ interface VTMultiPassStorageCreationOptions {
[MacCatalyst (13, 1)]
[StrongDictionary ("VTPixelTransferPropertyKeys")]
interface VTPixelTransferProperties {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("DestinationCleanAperture")]
AVVideoCleanApertureSettings DestinationCleanAperture { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[StrongDictionary]
[Export ("DestinationPixelAspectRatio")]
AVVideoPixelAspectRatioSettings DestinationPixelAspectRatio { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("DestinationICCProfile")]
NSData DestinationICCProfile { get; set; }
@@ -1446,62 +1836,104 @@ interface VTPixelTransferPropertyKeys {
// ScalingMode
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPixelTransferPropertyKey_ScalingMode")]
NSString ScalingMode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTScalingMode_Normal")]
NSString ScalingMode_Normal { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTScalingMode_CropSourceToCleanAperture")]
NSString ScalingMode_CropSourceToCleanAperture { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTScalingMode_Letterbox")]
NSString ScalingMode_Letterbox { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTScalingMode_Trim")]
NSString ScalingMode_Trim { get; }
// DestinationCleanAperture
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPixelTransferPropertyKey_DestinationCleanAperture")]
NSString DestinationCleanAperture { get; }
// DestinationCleanAperture
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPixelTransferPropertyKey_DestinationPixelAspectRatio")]
NSString DestinationPixelAspectRatio { get; }
// DownsamplingMode
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPixelTransferPropertyKey_DownsamplingMode")]
NSString DownsamplingMode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDownsamplingMode_Decimate")]
NSString DownsamplingMode_Decimate { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTDownsamplingMode_Average")]
NSString DownsamplingMode_Average { get; }
// DestinationColorPrimaries
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kVTPixelTransferPropertyKey_DestinationColorPrimaries")]
NSString DestinationColorPrimaries { get; }
// DestinationColorPrimaries
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kVTPixelTransferPropertyKey_DestinationTransferFunction")]
NSString DestinationTransferFunction { get; }
// DestinationICCProfile
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Field ("kVTPixelTransferPropertyKey_DestinationICCProfile")]
NSString DestinationICCProfile { get; }
// DestinationYCbCrMatrix
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Field ("kVTPixelTransferPropertyKey_DestinationYCbCrMatrix")]
NSString DestinationYCbCrMatrix { get; }
diff --git a/src/webkit.cs b/src/webkit.cs
index 3eb3bd941851..57a3d19c7fa8 100644
--- a/src/webkit.cs
+++ b/src/webkit.cs
@@ -4994,6 +4994,10 @@ interface WKOpenPanelParameters {
bool AllowsDirectories { get; }
}
+#if XAMCORE_5_0
+ delegate void WKUIDelegateRunJavaScriptTextInputPanelCallback ([NullAllowed] string result);
+#endif
+
/// A delegate object that allows presenting native UI elements on behalf of a Web page.
///
/// Apple documentation for WKUIDelegate
@@ -5013,9 +5017,17 @@ WKWebView CreateWebView (WKWebView webView, WKWebViewConfiguration configuration
[Export ("webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:")]
void RunJavaScriptConfirmPanel (WKWebView webView, string message, WKFrameInfo frame, Action completionHandler);
+#if !XAMCORE_5_0
+ [Obsolete ("It's not possible to call the completion handler with a null value using this method. Please see https://github.com/xamarin/xamarin-macios/issues/15728 for a workaround.")]
[Export ("webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:")]
void RunJavaScriptTextInputPanel (WKWebView webView, string prompt, [NullAllowed] string defaultText,
WKFrameInfo frame, Action completionHandler);
+#endif
+
+#if XAMCORE_5_0
+ [Export ("webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:")]
+ void RunJavaScriptTextInputPanel (WKWebView webView, string prompt, [NullAllowed] string defaultText, WKFrameInfo frame, WKUIDelegateRunJavaScriptTextInputPanelCallback completionHandler);
+#endif
[NoiOS, NoTV]
[NoMacCatalyst]
diff --git a/tests/cecil-tests/ApiAvailabilityTest.KnownFailures.cs b/tests/cecil-tests/ApiAvailabilityTest.KnownFailures.cs
index 52b24cc9bea0..5e7ba54a8e29 100644
--- a/tests/cecil-tests/ApiAvailabilityTest.KnownFailures.cs
+++ b/tests/cecil-tests/ApiAvailabilityTest.KnownFailures.cs
@@ -17,387 +17,352 @@
namespace Cecil.Tests {
public partial class ApiAvailabilityTest {
static HashSet knownFailuresAvailabilityWarnings = new HashSet {
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABAddressBook.ABAddressBookCreate()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABLabel.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonAddressKey.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonDateLabel.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonInstantMessageKey.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonInstantMessageService.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonKindId.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonPhoneLabel.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonPropertyId.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonRelatedNamesLabel.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonUrlLabel.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBook/ABAddressBook.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABSourcePropertyId.Init()' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABNewPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABNewPersonCompleteEventArgs' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABNewPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABNewPersonViewController.OnNewPersonComplete(ABNewPersonCompleteEventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerNavigationController.OnCancelled(EventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerNavigationController.OnPerformAction(ABPeoplePickerPerformActionEventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerNavigationController.OnPerformAction2(ABPeoplePickerPerformAction2EventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerNavigationController.OnSelectPerson(ABPeoplePickerSelectPersonEventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerNavigationController.OnSelectPerson2(ABPeoplePickerSelectPerson2EventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerPerformAction2EventArgs' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerPerformActionEventArgs' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerSelectPerson2EventArgs' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerSelectPersonEventArgs' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPeoplePickerSelectPersonEventArgs.Continue' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPeoplePickerNavigationController.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonPropertyId.ToPersonProperty(int)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonPropertyId.ToPersonProperty(int)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonViewController.OnPerformDefaultAction(ABPersonViewPerformDefaultActionEventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonViewPerformDefaultActionEventArgs.ShouldPerformDefaultAction' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonViewPerformDefaultActionEventArgs' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABUnknownPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonPropertyId.ToPersonProperty(int)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABUnknownPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonViewPerformDefaultActionEventArgs.ShouldPerformDefaultAction' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABUnknownPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABPersonViewPerformDefaultActionEventArgs' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABUnknownPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABUnknownPersonCreatedEventArgs' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABUnknownPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABUnknownPersonViewController.OnPerformDefaultAction(ABPersonViewPerformDefaultActionEventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AddressBookUI/ABUnknownPersonViewController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ABUnknownPersonViewController.OnPersonCreated(ABUnknownPersonCreatedEventArgs)' is obsoleted on: 'ios' 9.0 and later (Use the 'Contacts' API instead.), 'maccatalyst' 9.0 and later (Use the 'Contacts' API instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AppKit/NSStringAttributes.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString.UnderlineByWordMaskAttributeName.get' is obsoleted on: 'macOS/OSX' 10.11 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AppKit/NSStringAttributes.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString.UnderlineByWordMaskAttributeName.get' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AppKit/NSStringAttributes.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString.UnderlineByWordMaskAttributeName' is obsoleted on: 'macOS/OSX' 10.11 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/arkit.cs has 6 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AudioToolbox/Enums.cs has 24 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AudioToolbox/MusicSequence.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AUGraph' is obsoleted on: 'ios' 14.0 and later (Use 'AVAudioEngine' instead.), 'maccatalyst' 14.0 and later (Use 'AVAudioEngine' instead.), 'macOS/OSX' 11.0 and later (Use 'AVAudioEngine' instead.), 'tvos' 14.0 and later (Use 'AVAudioEngine' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AudioUnit/AUEnums.cs has 104 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AudioUnit/AUEnums.cs has 32 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/authenticationservices.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/authenticationservices.cs has 88 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/avfoundation.cs has 112 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/avfoundation.cs has 192 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/avfoundation.cs has 728 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVContentKeyResponse.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVContentKeyResponse._InitWithAuthorizationToken(NSData)' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVContentKeyResponse.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVContentKeyResponseDataType.AuthorizationTokenData' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithBookmarkName(string, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithParagraphRange(NSRange, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithPhonemeString(string, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithSentenceRange(NSRange, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithWordRange(NSRange, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerRangeOption.Paragraph' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerRangeOption.Sentence' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerRangeOption.Word' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerStringOption.Bookmark' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 8 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerStringOption.Phoneme' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechUtterance.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSpeechUtterance._InitWithSsmlRepresentation(string)' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVSpeechUtterance.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSpeechUtteranceInitializationOption.SsmlRepresentation' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorChunkInfo.HasUniformFormatDescriptions' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorChunkInfo.HasUniformSampleDurations' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorChunkInfo.HasUniformSampleSizes' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorChunkInfo' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.DependsOnOthers' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.HasDependentSamples' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.HasRedundantCoding' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.IndicatesWhetherItDependsOnOthers' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.IndicatesWhetherItHasDependentSamples' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.IndicatesWhetherItHasRedundantCoding' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorSyncInfo.IsDroppable' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorSyncInfo.IsFullSync' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorSyncInfo.IsPartialSync' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorSyncInfo' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorAudioDependencyInfo.IsIndependentlyDecodable' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorAudioDependencyInfo.PacketRefreshCount' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorAudioDependencyInfo' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/AVVideoSettings.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVVideo.CodecH264.get' is obsoleted on: 'ios' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'maccatalyst' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'macOS/OSX' 10.13 and later (Use 'AVVideoCodecType' enum instead.), 'tvos' 11.0 and later (Use 'AVVideoCodecType' enum instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AVFoundation/AVVideoSettings.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVVideo.CodecH264' is obsoleted on: 'ios' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'maccatalyst' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'macOS/OSX' 10.13 and later (Use 'AVVideoCodecType' enum instead.), 'tvos' 11.0 and later (Use 'AVVideoCodecType' enum instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AVFoundation/AVVideoSettings.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVVideo.CodecJPEG.get' is obsoleted on: 'ios' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'maccatalyst' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'macOS/OSX' 10.13 and later (Use 'AVVideoCodecType' enum instead.), 'tvos' 11.0 and later (Use 'AVVideoCodecType' enum instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AVFoundation/AVVideoSettings.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVVideo.CodecJPEG' is obsoleted on: 'ios' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'maccatalyst' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'macOS/OSX' 10.13 and later (Use 'AVVideoCodecType' enum instead.), 'tvos' 11.0 and later (Use 'AVVideoCodecType' enum instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/AVFoundation/Enums.cs has 160 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/Enums.cs has 368 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/Enums.cs has 48 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/AVFoundation/Events.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVAudioSession.WeakDelegate' is obsoleted on: 'ios' 6.0 and later (Use 'AVAudioSession.Notification.Observe*' methods instead.), 'maccatalyst' 6.0 and later (Use 'AVAudioSession.Notification.Observe*' methods instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CFNetwork/CFHTTPMessage.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPMessage._HTTPVersion3_0.get' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CFNetwork/CFHTTPMessage.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPMessage._HTTPVersion3_0' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CFNetwork/CFHTTPMessage.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPMessage.AuthenticationScheme.OAuth1' is obsoleted on: 'ios' 12.0 and later (Not available anymore.), 'macOS/OSX' 10.14 and later (Not available anymore.), 'tvos' 12.0 and later (Not available anymore.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/classkit.cs has 6 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CloudKit/Enums.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Compression/Enums.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Compression/Enums.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreBluetooth/CBManager.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CBManager._IAuthorization' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreBluetooth/CBManager.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CBManager._SAuthorization' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreData/Enums.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreData/Enums.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreFoundation/CFStream.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPStream' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession'.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession'.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession'.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreFoundation/CFStream.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CFReadStreamCreateForStreamedHTTPRequest(nint, nint, nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.11 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreGraphics/CGContextPDF.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.CreateLinearizedPdf' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreGraphics/CGContextPDF.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.CreatePdfA2u' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreGraphics/CGContextPDF.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.kCGPDFContextCreateLinearizedPDF.get' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreGraphics/CGContextPDF.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.kCGPDFContextCreateLinearizedPDF' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreGraphics/CGContextPDF.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.kCGPDFContextCreatePDFA.get' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreGraphics/CGContextPDF.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.kCGPDFContextCreatePDFA' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreGraphics/CGEnums.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreGraphics/CGEnums.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreHaptics/Enums.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIContext.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIContext.FromContext(EAGLContext, NSDictionary?)' is obsoleted on: 'ios' 12.0 and later, 'maccatalyst' 12.0 and later, 'tvos' 12.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreImage/CIContext.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIContext.FromContext(EAGLContext)' is obsoleted on: 'ios' 12.0 and later, 'maccatalyst' 12.0 and later, 'tvos' 12.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIAreaBoundsRed' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB3X3' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB5X5' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB7X7' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB9Horizontal' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB9Vertical' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CILinearLightBlendMode' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIMaximumScaleTransform' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIPersonSegmentation' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIToneMapHeadroom' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreImage/CIFilter.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIVividLightBlendMode' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreMedia/CMEnums.cs has 24 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreMedia/CMEnums.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreMedia/CMSampleBuffer.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMSampleAttachmentKey.DroppedFrameReason.get' is supported on: 'ios', 'maccatalyst', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCopyMaster(nint)' is obsoleted on: 'ios' 9.0 and later (Use 'CMTimebaseGetMaster' instead.), 'macOS/OSX' 10.11 and later (Use 'CMTimebaseGetMaster' instead.), 'tvos' 9.0 and later (Use 'CMTimebaseGetMaster' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCopyMasterClock(nint)' is obsoleted on: 'ios' 9.0 and later (Use 'CMTimebaseGetMasterClock' instead.), 'maccatalyst' 9.0 and later (Use 'CMTimebaseGetMasterClock' instead.), 'macOS/OSX' 10.11 and later (Use 'CMTimebaseGetMasterClock' instead.), 'tvos' 9.0 and later (Use 'CMTimebaseGetMasterClock' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCopyMasterTimebase(nint)' is obsoleted on: 'ios' 9.0 and later (Use 'CMTimebaseGetMasterTimebase' instead.), 'macOS/OSX' 10.11 and later (Use 'CMTimebaseGetMasterTimebase' instead.), 'tvos' 9.0 and later (Use 'CMTimebaseGetMasterTimebase' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCopyUltimateMasterClock(nint)' is obsoleted on: 'ios' 9.0 and later (Use 'CMTimebaseGetUltimateMasterClock' instead.), 'macOS/OSX' 10.11 and later (Use 'CMTimebaseGetUltimateMasterClock' instead.), 'tvos' 9.0 and later (Use 'CMTimebaseGetUltimateMasterClock' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCreateWithMasterClock(nint, nint, nint*)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.10 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCreateWithMasterTimebase(nint, nint, nint*)' is obsoleted on: 'ios' 8.0 and later, 'maccatalyst' 8.0 and later, 'macOS/OSX' 10.10 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCreateWithSourceClock(nint, nint, nint*)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCreateWithSourceTimebase(nint, nint, nint*)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMaster(nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.11 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMasterClock(nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.10 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMasterClock(nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMasterTimebase(nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.10 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMasterTimebase(nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMSync.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetUltimateMasterClock(nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.11 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreMedia/CMTag.cs has 8 occurrences of This call site is reachable on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. 'CMTagConstants.ProjectionTypeHalfEquirectangular.get' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreMedia/CMTag.cs has 8 occurrences of This call site is reachable on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. 'CMTagConstants.ProjectionTypeHalfEquirectangular' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/coremidi.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/coremidi.cs has 16 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/coreml.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/coreml.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/corenfc.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreText/CTFont.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CTFontFeatureLetterCase' is obsoleted on: 'ios' 6.0 and later, 'maccatalyst' 6.0 and later, 'macOS/OSX' 10.7 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreText/CTFont.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'FontFeatureGroup.LetterCase' is obsoleted on: 'ios' 6.0 and later, 'maccatalyst' 6.0 and later, 'macOS/OSX' 10.7 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreText/CTParagraphStyle.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CTParagraphStyleSpecifier.LineSpacing' is obsoleted on: 'ios' 6.0 and later (Use 'MaximumLineSpacing' instead.), 'maccatalyst' 6.0 and later (Use 'MaximumLineSpacing' instead.), 'macOS/OSX' 10.8 and later (Use 'MaximumLineSpacing' instead.), 'tvos' 16.0 and later (Use 'MaximumLineSpacing' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/corevideo.cs has 24 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreVideo/CVBuffer.cs has 14 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVBuffer.CVBufferGetAttachments(nint, CVAttachmentMode)' is obsoleted on: 'ios' 15.0 and later, 'maccatalyst' 15.0 and later, 'macOS/OSX' 12.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreVideo/CVBuffer.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVBuffer.CVBufferCopyAttachment(nint, nint, CVAttachmentMode*)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreVideo/CVBuffer.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVBuffer.CVBufferCopyAttachments(nint, CVAttachmentMode)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreVideo/CVBuffer.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVBuffer.CVBufferGetAttachment(nint, nint, CVAttachmentMode*)' is obsoleted on: 'ios' 15.0 and later, 'maccatalyst' 15.0 and later, 'macOS/OSX' 12.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/CoreVideo/CVPixelBufferAttributes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVPixelBuffer.OpenGLESCompatibilityKey.get' is supported on: 'ios', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreVideo/CVPixelFormatDescription.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVPixelFormatDescription.ContainsSenselArray' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreVideo/CVPixelFormatDescription.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVPixelFormatKeys.ContainsSenselArray.get' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreVideo/CVPixelFormatDescription.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVPixelFormatKeys.ContainsSenselArray' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/CoreWlan/Enums.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/DeviceDiscoveryExtension/Enums.cs has 6 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/Enum.cs has 88 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/Enums.cs has 24 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSAttributedString.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString._InitWithContentsOfMarkdownFile(NSUrl, NSAttributedStringMarkdownParsingOptions?, NSUrl?, out NSError?)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSAttributedString.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString._InitWithMarkdown(NSData, NSAttributedStringMarkdownParsingOptions?, NSUrl?, out NSError?)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSAttributedString.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString._InitWithMarkdownString(string, NSAttributedStringMarkdownParsingOptions?, NSUrl?, out NSError?)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSAttributedStringDocumentAttributes.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later. 'NSAttributedStringDocumentReadingOptionKey.ReadAccessUrlDocumentOption.get' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSAttributedStringDocumentAttributes.cs has 8 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later. 'NSAttributedStringDocumentReadingOptionKey.ReadAccessUrlDocumentOption.get' is supported on: 'ios' 13.0 and later, 'maccatalyst'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSAttributedStringDocumentAttributes.cs has 8 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later. 'NSAttributedStringDocumentReadingOptionKey.ReadAccessUrlDocumentOption' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSDictionary_2.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSDictionary' is obsoleted on: 'ios' 13.0 and later (Use 'NSMutableDictionary(NSUrl)' constructor instead.), 'maccatalyst' 13.0 and later (Use 'NSMutableDictionary(NSUrl)' constructor instead.), 'macOS/OSX' 10.15 and later (Use 'NSMutableDictionary(NSUrl)' constructor instead.), 'tvos' 13.0 and later (Use 'NSMutableDictionary(NSUrl)' constructor instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSDictionary_2.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSDictionary' is obsoleted on: 'ios' 13.0 and later (Use 'NSMutableDictionary(string)' constructor instead.), 'maccatalyst' 13.0 and later (Use 'NSMutableDictionary(string)' constructor instead.), 'macOS/OSX' 10.15 and later (Use 'NSMutableDictionary(string)' constructor instead.), 'tvos' 13.0 and later (Use 'NSMutableDictionary(string)' constructor instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSStream.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHost.Create(IPEndPoint)' is obsoleted on: 'ios' 15.0 and later (Use 'Network.framework' instead.), 'maccatalyst' 15.0 and later (Use 'Network.framework' instead.), 'macOS/OSX' 12.0 and later (Use 'Network.framework' instead.), 'tvos' 15.0 and later (Use 'Network.framework' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSStream.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CFStreamCreatePairWithPeerSocketSignature(nint, CFSocketSignature*, nint*, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'Network.framework' instead.), 'maccatalyst' 15.0 and later (Use 'Network.framework' instead.), 'macOS/OSX' 12.0 and later (Use 'Network.framework' instead.), 'tvos' 15.0 and later (Use 'Network.framework' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSStream.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CFStreamCreatePairWithSocket(nint, CFSocketNativeHandle, nint*, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'Network.framework' instead.), 'maccatalyst' 15.0 and later (Use 'Network.framework' instead.), 'macOS/OSX' 12.0 and later (Use 'Network.framework' instead.), 'tvos' 15.0 and later (Use 'Network.framework' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSStream.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CFStreamCreatePairWithSocketToCFHost(nint, nint, int, nint*, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'Network.framework' instead.), 'maccatalyst' 15.0 and later (Use 'Network.framework' instead.), 'macOS/OSX' 12.0 and later (Use 'Network.framework' instead.), 'tvos' 15.0 and later (Use 'Network.framework' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSUrlSessionHandler.cs has 24 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSUrlSessionHandler.ClientCertificateOptions' is unsupported on: 'ios' all versions, 'maccatalyst' all versions, 'macOS/OSX' all versions, 'tvos' all versions. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSUrlSessionHandler.cs has 40 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSUrlSessionConfiguration.TLSMinimumSupportedProtocol' is obsoleted on: 'ios' 13.0 and later (Use 'TlsMinimumSupportedProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsMinimumSupportedProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsMinimumSupportedProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsMinimumSupportedProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSUrlSessionHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecTrust.GetCertificateChain()' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Foundation/NSUrlSessionHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecTrust.this[nint]' is obsoleted on: 'ios' 15.0 and later (Use the 'GetCertificateChain' method instead.), 'maccatalyst' 15.0 and later (Use the 'GetCertificateChain' method instead.), 'macOS/OSX' 12.0 and later (Use the 'GetCertificateChain' method instead.), 'tvos' 15.0 and later (Use the 'GetCertificateChain' method instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSUrlSessionHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Ssl_3_0' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSUrlSessionHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Tls_1_0' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSUrlSessionHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Tls_1_1' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSUrlSessionHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Tls_1_2' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSUrlSessionHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Tls_1_3' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Foundation/NSValue.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSValue.StoreValueAtAddress(nint)' is obsoleted on: 'ios' 11.0 and later (Potential for buffer overruns. Use 'StoreValueAtAddress (IntPtr, nuint)' instead.), 'maccatalyst' 11.0 and later (Potential for buffer overruns. Use 'StoreValueAtAddress (IntPtr, nuint)' instead.), 'macOS/OSX' 10.13 and later (Potential for buffer overruns. Use 'StoreValueAtAddress (IntPtr, nuint)' instead.), 'tvos' 11.0 and later (Potential for buffer overruns. Use 'StoreValueAtAddress (IntPtr, nuint)' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/gamecontroller.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/gamecontroller.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/GameController/GCExtendedGamepadSnapshot.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'GCExtendedGamepadSnapShotDataV100' is obsoleted on: 'ios' 12.2 and later (Use 'GCExtendedGamepadSnapshotData' instead.), 'maccatalyst' 12.2 and later (Use 'GCExtendedGamepadSnapshotData' instead.), 'macOS/OSX' 10.14.4 and later (Use 'GCExtendedGamepadSnapshotData' instead.), 'tvos' 12.2 and later (Use 'GCExtendedGamepadSnapshotData' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/GameKit/GameKit.cs has 32 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/GameKit/GKGameCenterViewController.cs has 8 occurrences of This call site is reachable on: 'ios' 14.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 14.0 and later. 'GKGameCenterViewController' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/GameKit/GKScore.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'GKScore.InitWithCategory(string?)' is obsoleted on: 'ios' 7.0 and later (Use 'InitWithLeaderboardIdentifier' instead.), 'maccatalyst' 7.0 and later (Use 'InitWithLeaderboardIdentifier' instead.), 'macOS/OSX' 10.10 and later (Use 'InitWithLeaderboardIdentifier' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/HealthKit/Enums.cs has 36 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/HealthKit/Enums.cs has 84 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/HomeKit/HMEnums.cs has 6 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/identitylookup.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/intents.cs has 16 occurrences of This call site is reachable on all platforms. 'AdviceAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/intents.cs has 32 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/intents.cs has 8 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/localauthentication.cs has 6 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/localauthentication.cs has 6 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/LocalAuthentication/LAEnums.cs has 12 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/LocalAuthentication/LAEnums.cs has 18 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MapKit/MKEnums.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MapKit/MKEnums.cs has 16 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MediaPlayer/MPMediaItem.cs has 126 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'MPMediaEntity.ValueForProperty(NSString)' is supported on: 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Metal/MTLCommandBuffer.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLCommandBuffer.UseResidencySets(nint, nuint)' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Metal/MTLCommandBuffer.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLResidencySet' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Metal/MTLCommandQueue.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLResidencySet' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Metal/MTLCommandQueue.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLCommandQueue.AddResidencySets(nint, nuint)' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Metal/MTLCommandQueue.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLCommandQueue.RemoveResidencySets(nint, nuint)' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Metal/MTLEnums.cs has 192 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Metal/MTLEnums.cs has 600 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShaders/MPSEnums.cs has 16 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShaders/MPSEnums.cs has 48 occurrences of This call site is reachable on all platforms. 'MPSConstants.FunctionConstantIndex' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShaders/MPSEnums.cs has 80 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/metalperformanceshadersgraph.cs has 24 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/metalperformanceshadersgraph.cs has 24 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShadersGraph/MPSGraphEnums.cs has 40 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShadersGraph/MPSGraphEnums.cs has 40 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShadersGraph/MPSGraphExecutable.cs has 8 occurrences of This call site is reachable on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. 'MPSGraphExecutable._InitWithCoreMLPackage(NSUrl, MPSGraphCompilationDescriptor?)' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShadersGraph/MPSGraphExecutable.cs has 8 occurrences of This call site is reachable on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. 'MPSGraphExecutableInitializationOption.CoreMLPackage' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShadersGraph/MPSGraphExtensions.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'MPSGraph_MemoryOps.Constant(MPSGraph, double, int[], MPSDataType)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShadersGraph/MPSGraphExtensions.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'MPSGraph_MemoryOps.Constant(MPSGraph, NSData, int[], MPSDataType)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetalPerformanceShadersGraph/MPSGraphExtensions.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'MPSGraph_MemoryOps.Variable(MPSGraph, NSData, int[], MPSDataType, string?)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetricKit/MXMetaData.cs has 4 occurrences of This call site is reachable on: 'ios' 14.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later. 'MXMetaData._DictionaryRepresentation13' is obsoleted on: 'ios' 14.0 and later, 'maccatalyst' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/MetricKit/MXMetric.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later. 'MXMetric._DictionaryRepresentation13' is obsoleted on: 'ios' 14.0 and later, 'maccatalyst' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/MetricKit/MXMetric.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later. 'MXMetric._DictionaryRepresentation14' is supported on: 'ios' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/MetricKit/MXMetricPayload.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later. 'MXMetricPayload._DictionaryRepresentation13' is obsoleted on: 'ios' 14.0 and later, 'maccatalyst' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/MetricKit/MXMetricPayload.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later. 'MXMetricPayload._DictionaryRepresentation14' is supported on: 'ios' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/mlcompute.cs has 112 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ModelIO/MIEnums.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/NaturalLanguage/NLTagger.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NLTagger.GetNativeTagHypotheses(nuint, NLTokenUnit, NSString, nuint, out NSRange)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/NaturalLanguage/NLTagger.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NLTagger.GetNativeTagHypotheses(nuint, NLTokenUnit, NSString, nuint)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/network.cs has 24 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWAdvertiseDescriptor.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWAdvertiseDescriptor.nw_advertise_descriptor_create_application_service(nint)' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWConnection.cs has 24 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWEstablishmentReport' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWEnums.cs has 16 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWEnums.cs has 24 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWEstablishmentReport.cs has 24 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 13.0 and later. 'NWResolutionReport' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWListener.cs has 24 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWConnectionGroup' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWParameters.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolDefinition.CreateWebSocketDefinition()' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWParameters.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolIPOptions' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWParameters.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWWebSocketOptions' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWProtocolDefinition.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWFramerStartResult' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWProtocolDefinition.cs has 24 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWFramer' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWProtocolDefinition.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWFramerStartResult.Unknown' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWProtocolOptions.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolOptions.nw_ip_options_set_local_address_preference(nint, NWIPLocalAddressPreference)' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWProtocolOptions.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolOptions.nw_protocol_options_is_quic(nint)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWProtocolStack.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolIPOptions' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWProtocolStack.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolDefinition.CreateWebSocketDefinition()' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Network/NWProtocolStack.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWWebSocketOptions' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/NetworkExtension/NEEnums.cs has 24 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/NetworkExtension/NEEnums.cs has 64 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/BindAs.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSValue.CMVideoDimensionsValue' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/BindAs.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSValue.FromCMVideoDimensions(CMVideoDimensions)' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/Runtime.CoreCLR.cs has 32 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.SetMessageSendCallback(ObjectiveCMarshal.MessageSendFunction, nint)' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/Runtime.CoreCLR.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.CreateReferenceTrackingHandle(object, out Span)' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/Runtime.CoreCLR.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.Initialize(delegate* unmanaged, delegate* unmanaged, delegate* unmanaged, ObjectiveCMarshal.UnhandledExceptionPropagationHandler)' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/Runtime.CoreCLR.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.MessageSendFunction.MsgSend' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/Runtime.CoreCLR.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.MessageSendFunction.MsgSendStret' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/Runtime.CoreCLR.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.MessageSendFunction.MsgSendSuper' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/Runtime.CoreCLR.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.MessageSendFunction.MsgSendSuperStret' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/Runtime.CoreCLR.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.SetMessageSendPendingException(Exception?)' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/ObjCRuntime/RuntimeOptions.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSDictionary.FromFile(string)' is obsoleted on: 'ios' 13.0 and later (Use 'NSMutableDictionary.FromFile' instead.), 'maccatalyst' 13.0 and later (Use 'NSMutableDictionary.FromFile' instead.), 'macOS/OSX' 10.15 and later (Use 'NSMutableDictionary.FromFile' instead.), 'tvos' 13.0 and later (Use 'NSMutableDictionary.FromFile' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/passkit.cs has 30 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/PassKit/PKEnums.cs has 6 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/PassKit/PKEnums.cs has 66 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/PdfKit/Enums.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/pencilkit.cs has 6 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/pencilkit.cs has 6 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/phase.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/phase.cs has 16 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Photos/Enums.cs has 24 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Photos/Enums.cs has 72 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/photosui.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/photosui.cs has 16 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/SceneKit/SCNNode.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.GetAnimation(NSString)' is obsoleted on: 'ios' 11.0 and later (Use 'GetAnimationPlayer' instead.), 'maccatalyst' 11.0 and later (Use 'GetAnimationPlayer' instead.), 'macOS/OSX' 10.13 and later (Use 'GetAnimationPlayer' instead.), 'tvos' 11.0 and later (Use 'GetAnimationPlayer' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SceneKit/SCNNode.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.IsAnimationPaused(NSString)' is obsoleted on: 'ios' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'maccatalyst' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'macOS/OSX' 10.13 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'tvos' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SceneKit/SCNNode.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.PauseAnimation(NSString)' is obsoleted on: 'ios' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'maccatalyst' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'macOS/OSX' 10.13 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'tvos' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SceneKit/SCNNode.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.RemoveAnimation(NSString, NFloat)' is obsoleted on: 'ios' 11.0 and later (Use 'RemoveAnimationUsingBlendOutDuration' instead.), 'maccatalyst' 11.0 and later (Use 'RemoveAnimationUsingBlendOutDuration' instead.), 'macOS/OSX' 10.13 and later (Use 'RemoveAnimationUsingBlendOutDuration' instead.), 'tvos' 11.0 and later (Use 'RemoveAnimationUsingBlendOutDuration' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SceneKit/SCNNode.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.ResumeAnimation(NSString)' is obsoleted on: 'ios' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'maccatalyst' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'macOS/OSX' 10.13 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'tvos' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SceneKit/SCNRenderingOptions.cs has 18 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SCNRenderingOptionsKeys.RenderingApiKey.get' is supported on: 'ios', 'macOS/OSX', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/security.cs has 48 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/Security/Certificate.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.GenerateKeyPair(NSDictionary, out SecKey?, out SecKey?)' is obsoleted on: 'ios' 15.0 and later (Use 'CreateRandomKey' instead.), 'maccatalyst' 15.0 and later (Use 'CreateRandomKey' instead.), 'macOS/OSX' 12.0 and later (Use 'CreateRandomKey' instead.), 'tvos' 15.0 and later (Use 'CreateRandomKey' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Certificate.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.SecKeyDecrypt(nint, SecPadding, nint, nint, nint, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'SecKeyCreateDecryptedData' instead.), 'maccatalyst' 15.0 and later (Use 'SecKeyCreateDecryptedData' instead.), 'tvos' 15.0 and later (Use 'SecKeyCreateDecryptedData' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Certificate.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.SecKeyEncrypt(nint, SecPadding, nint, nint, nint, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'SecKeyCreateEncryptedData' instead.), 'maccatalyst' 15.0 and later (Use 'SecKeyCreateEncryptedData' instead.), 'tvos' 15.0 and later (Use 'SecKeyCreateEncryptedData' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Certificate.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.SecKeyRawSign(nint, SecPadding, nint, nint, nint, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'SecKeyCreateSignature' instead.), 'maccatalyst' 15.0 and later (Use 'SecKeyCreateSignature' instead.), 'tvos' 15.0 and later (Use 'SecKeyCreateSignature' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Certificate.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.SecKeyRawVerify(nint, SecPadding, nint, nint, nint, nint)' is obsoleted on: 'ios' 15.0 and later (Use 'SecKeyVerifySignature' instead.), 'maccatalyst' 15.0 and later (Use 'SecKeyVerifySignature' instead.), 'tvos' 15.0 and later (Use 'SecKeyVerifySignature' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecItem.UseOperationPrompt.get' is obsoleted on: 'ios' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'maccatalyst' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'macOS/OSX' 11.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'tvos' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecItem.UseOperationPrompt' is obsoleted on: 'ios' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'maccatalyst' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'macOS/OSX' 11.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'tvos' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecAccessible.Always' is obsoleted on: 'ios' 12.0 and later (Use 'AfterFirstUnlock' or a better suited option instead.), 'maccatalyst' 12.0 and later (Use 'AfterFirstUnlock' or a better suited option instead.), 'macOS/OSX' 10.14 and later (Use 'AfterFirstUnlock' or a better suited option instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecAccessible.AlwaysThisDeviceOnly' is obsoleted on: 'ios' 12.0 and later (Use 'AfterFirstUnlockThisDeviceOnly' or a better suited option instead.), 'maccatalyst' 12.0 and later (Use 'AfterFirstUnlockThisDeviceOnly' or a better suited option instead.), 'macOS/OSX' 10.14 and later (Use 'AfterFirstUnlockThisDeviceOnly' or a better suited option instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainAddGenericPassword(nint, int, byte[]?, int, byte[]?, int, byte[], nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainAddInternetPassword(nint, int, byte[]?, int, byte[]?, int, byte[]?, int, byte[]?, short, nint, nint, int, byte[], nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainFindGenericPassword(nint, int, byte*, int, byte*, int*, nint*, nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainFindInternetPassword(nint, int, byte*, int, byte*, int, byte*, int, byte*, short, nint, nint, int*, nint*, nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/Items.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainItemFreeContent(nint, nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/Security/SecProtocolOptions.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecProtocolOptions.sec_protocol_options_set_tls_diffie_hellman_parameters(nint, nint)' is obsoleted on: 'ios' 13.0 and later (Use non-DHE cipher suites instead.), 'maccatalyst' 13.0 and later (Use non-DHE cipher suites instead.), 'macOS/OSX' 10.15 and later (Use non-DHE cipher suites instead.), 'tvos' 13.0 and later (Use non-DHE cipher suites instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/sensorkit.cs has 4 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/SpriteKit/SKUniform.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform._FloatVector2Value' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SpriteKit/SKUniform.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform._FloatVector3Value' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SpriteKit/SKUniform.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform._FloatVector4Value' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SpriteKit/SKUniform.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform.InitWithNameFloatVector2(string, Vector2)' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SpriteKit/SKUniform.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform.InitWithNameFloatVector3(string, Vector3)' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SpriteKit/SKUniform.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform.InitWithNameFloatVector4(string, Vector4)' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/StoreKit/SKReceiptProperty.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. '_SKReceiptProperty.IsExpired' is obsoleted on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/StoreKit/SKReceiptProperty.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. '_SKReceiptProperty.IsRevoked' is obsoleted on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/StoreKit/SKReceiptProperty.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. '_SKReceiptProperty.IsVolumePurchase' is obsoleted on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/System.Net.Http/CFNetworkHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPStream.GetResponseHeader()' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession'.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession'.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession'.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/System.Net.Http/CFNetworkHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPStream.SetProxy(CFProxySettings)' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession'.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession'.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession'.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/System.Net.Http/CFNetworkHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPStream.ShouldAutoredirect' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession'.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession'.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession'.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/System.Net.Http/CFNetworkHandler.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CreateForHTTPRequest(CFHTTPMessage)' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession' instead.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession' instead.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession' instead.), 'tvos' 9.0 and later (Use 'NSUrlSession' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SystemConfiguration/NetworkReachability.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.GetFlags(out NetworkReachabilityFlags)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SystemConfiguration/NetworkReachability.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.Schedule(CFRunLoop, string)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SystemConfiguration/NetworkReachability.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithAddress(nint, NetworkReachability.sockaddr_in*)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SystemConfiguration/NetworkReachability.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithAddressPair(nint, NetworkReachability.sockaddr_in*, NetworkReachability.sockaddr_in*)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SystemConfiguration/NetworkReachability.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithAddressPair(nint, NetworkReachability.sockaddr_in*, nint)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SystemConfiguration/NetworkReachability.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithAddressPair(nint, nint, NetworkReachability.sockaddr_in*)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SystemConfiguration/NetworkReachability.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithName(nint, nint)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/SystemConfiguration/NetworkReachability.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.Unschedule(CFRunLoop, string)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/uikit.cs has 18 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/uikit.cs has 90 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UICellAccessory.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UICellAccessory' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIDevice.cs has 4 occurrences of This call site is reachable on all platforms. 'UIDevice.SystemVersion' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIEnums.cs has 114 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIEnums.cs has 12 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIFontFeature.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'FontFeatureGroup.LetterCase' is obsoleted on: 'ios' 6.0 and later, 'maccatalyst' 6.0 and later, 'macOS/OSX' 10.7 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/UIKit/UIImage.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIGraphics.EndImageContext()' is unsupported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIImage.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIGraphics.GetImageFromCurrentImageContext()' is unsupported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIImage.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIGraphics.BeginImageContext(CGSize)' is unsupported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIImage.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIGraphics.BeginImageContextWithOptions(CGSize, bool, NFloat)' is unsupported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIImagePickerController.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIImagePickerController.ReferenceUrl.get' is obsoleted on: 'ios' 11.0 and later (Use 'UIImagePickerController.PHAsset' instead.), 'maccatalyst' 11.0 and later (Use 'UIImagePickerController.PHAsset' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/UIKit/UIImagePickerController.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIImagePickerController.ReferenceUrl.get' is supported on: 'ios', 'maccatalyst'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIImagePickerController.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIImagePickerController.ReferenceUrl' is obsoleted on: 'ios' 11.0 and later (Use 'UIImagePickerController.PHAsset' instead.), 'maccatalyst' 11.0 and later (Use 'UIImagePickerController.PHAsset' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/UIKit/UIViewControllerTransitionCoordinatorContext.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UITransitionContext.FromViewKey.get' is supported on: 'ios', 'maccatalyst', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIViewControllerTransitionCoordinatorContext.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UITransitionContext.ToViewKey.get' is supported on: 'ios', 'maccatalyst', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIWindowScene.cs has 6 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action, params Type[])' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIWindowScene.cs has 6 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Type[], Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIWindowScene.cs has 6 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Type[], NSObject, Selector)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIWindowScene.cs has 6 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Type[], Selector)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIWindowScene.cs has 6 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIWindowScene.cs has 6 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIWindowScene.cs has 6 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/UIKit/UIWindowScene.cs has 6 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/usernotifications.cs has 40 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTDefs.cs has 24 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTDefs.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.GpuRegistryId' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.IncludeStandardDefinitionDVEncoders' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.InstanceLimit' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.IsHardwareAccelerated' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.PerformanceRating' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.QualityRating' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.SupportedSelectionProperties' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.SupportsFrameReordering' is supported on: 'ios' 14.2 and later, 'tvos' 14.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.GpuRegistryId.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.GpuRegistryId' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.IncludeStandardDefinitionDVEncoders.get' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.IncludeStandardDefinitionDVEncoders' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.InstanceLimit.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.InstanceLimit' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.IsHardwareAccelerated.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.IsHardwareAccelerated' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.PerformanceRating.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.PerformanceRating' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.QualityRating.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.QualityRating' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.SupportedSelectionProperties.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.SupportedSelectionProperties' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.SupportsFrameReordering.get' is supported on: 'ios' 14.2 and later, 'tvos' 14.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/VideoToolbox/VTVideoEncoder.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.SupportsFrameReordering' is supported on: 'ios' 14.2 and later, 'tvos' 14.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/vision.cs has 144 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/vision.cs has 8 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/vision.cs has 80 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/WebKit/WebNavigationPolicyEventArgs.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionButtonKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/WebKit/WebNavigationPolicyEventArgs.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionElementKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/WebKit/WebNavigationPolicyEventArgs.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionModifierFlagsKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/WebKit/WebNavigationPolicyEventArgs.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionNavigationTypeKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/WebKit/WebNavigationPolicyEventArgs.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionOriginalUrlKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
- "/src/xkit.cs has 24 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
- "/src/xkit.cs has 96 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AppKit/NSStringAttributes.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString.UnderlineByWordMaskAttributeName.get' is obsoleted on: 'macOS/OSX' 10.11 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/AppKit/NSStringAttributes.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString.UnderlineByWordMaskAttributeName.get' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AppKit/NSStringAttributes.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString.UnderlineByWordMaskAttributeName' is obsoleted on: 'macOS/OSX' 10.11 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/arkit.cs has 3 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AudioToolbox/Enums.cs has 12 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AudioToolbox/MusicSequence.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AUGraph' is obsoleted on: 'ios' 14.0 and later (Use 'AVAudioEngine' instead.), 'maccatalyst' 14.0 and later (Use 'AVAudioEngine' instead.), 'macOS/OSX' 11.0 and later (Use 'AVAudioEngine' instead.), 'tvos' 14.0 and later (Use 'AVAudioEngine' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/AudioUnit/AUEnums.cs has 16 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AudioUnit/AUEnums.cs has 52 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/authenticationservices.cs has 4 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/authenticationservices.cs has 44 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/avfoundation.cs has 364 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/avfoundation.cs has 56 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/avfoundation.cs has 96 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVContentKeyResponse.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVContentKeyResponse._InitWithAuthorizationToken(NSData)' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVContentKeyResponse.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVContentKeyResponseDataType.AuthorizationTokenData' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithBookmarkName(string, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithParagraphRange(NSRange, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithPhonemeString(string, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithSentenceRange(NSRange, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarker._InitWithWordRange(NSRange, nint)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerRangeOption.Paragraph' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerRangeOption.Sentence' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerRangeOption.Word' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerStringOption.Bookmark' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechSynthesisMarker.cs has 4 occurrences of This call site is reachable on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. 'AVSpeechSynthesisMarkerStringOption.Phoneme' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechUtterance.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSpeechUtterance._InitWithSsmlRepresentation(string)' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVSpeechUtterance.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSpeechUtteranceInitializationOption.SsmlRepresentation' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorAudioDependencyInfo.IsIndependentlyDecodable' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorAudioDependencyInfo.PacketRefreshCount' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorAudioDependencyInfo' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorChunkInfo.HasUniformFormatDescriptions' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorChunkInfo.HasUniformSampleDurations' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorChunkInfo.HasUniformSampleSizes' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorChunkInfo' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.DependsOnOthers' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.HasDependentSamples' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.HasRedundantCoding' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.IndicatesWhetherItDependsOnOthers' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.IndicatesWhetherItHasDependentSamples' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo.IndicatesWhetherItHasRedundantCoding' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorDependencyInfo' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorSyncInfo.IsDroppable' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorSyncInfo.IsFullSync' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorSyncInfo.IsPartialSync' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVTypes.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVSampleCursorSyncInfo' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/AVVideoSettings.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVVideo.CodecH264.get' is obsoleted on: 'ios' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'maccatalyst' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'macOS/OSX' 10.13 and later (Use 'AVVideoCodecType' enum instead.), 'tvos' 11.0 and later (Use 'AVVideoCodecType' enum instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/AVFoundation/AVVideoSettings.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVVideo.CodecH264' is obsoleted on: 'ios' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'maccatalyst' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'macOS/OSX' 10.13 and later (Use 'AVVideoCodecType' enum instead.), 'tvos' 11.0 and later (Use 'AVVideoCodecType' enum instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/AVFoundation/AVVideoSettings.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVVideo.CodecJPEG.get' is obsoleted on: 'ios' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'maccatalyst' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'macOS/OSX' 10.13 and later (Use 'AVVideoCodecType' enum instead.), 'tvos' 11.0 and later (Use 'AVVideoCodecType' enum instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/AVFoundation/AVVideoSettings.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVVideo.CodecJPEG' is obsoleted on: 'ios' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'maccatalyst' 11.0 and later (Use 'AVVideoCodecType' enum instead.), 'macOS/OSX' 10.13 and later (Use 'AVVideoCodecType' enum instead.), 'tvos' 11.0 and later (Use 'AVVideoCodecType' enum instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/AVFoundation/Enums.cs has 184 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/Enums.cs has 24 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/Enums.cs has 80 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/AVFoundation/Events.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'AVAudioSession.WeakDelegate' is obsoleted on: 'ios' 6.0 and later (Use 'AVAudioSession.Notification.Observe*' methods instead.), 'maccatalyst' 6.0 and later (Use 'AVAudioSession.Notification.Observe*' methods instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CFNetwork/CFHTTPMessage.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPMessage.AuthenticationScheme.OAuth1' is obsoleted on: 'ios' 12.0 and later (Not available anymore.), 'macOS/OSX' 10.14 and later (Not available anymore.), 'tvos' 12.0 and later (Not available anymore.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CFNetwork/CFHTTPMessage.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPMessage._HTTPVersion3_0.get' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CFNetwork/CFHTTPMessage.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPMessage._HTTPVersion3_0' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/classkit.cs has 3 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CloudKit/Enums.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Compression/Enums.cs has 4 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Compression/Enums.cs has 4 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreBluetooth/CBManager.cs has 2 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CBManager._IAuthorization' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreBluetooth/CBManager.cs has 2 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CBManager._SAuthorization' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreData/Enums.cs has 4 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreData/Enums.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreFoundation/CFStream.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPStream' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession'.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession'.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession'.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreFoundation/CFStream.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CFReadStreamCreateForStreamedHTTPRequest(nint, nint, nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.11 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreGraphics/CGContextPDF.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.CreateLinearizedPdf' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreGraphics/CGContextPDF.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.CreatePdfA2u' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreGraphics/CGContextPDF.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.kCGPDFContextCreateLinearizedPDF.get' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreGraphics/CGContextPDF.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.kCGPDFContextCreateLinearizedPDF' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreGraphics/CGContextPDF.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.kCGPDFContextCreatePDFA.get' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreGraphics/CGContextPDF.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CGPDFInfo.kCGPDFContextCreatePDFA' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreGraphics/CGEnums.cs has 4 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreGraphics/CGEnums.cs has 4 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreHaptics/Enums.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIContext.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIContext.FromContext(EAGLContext, NSDictionary?)' is obsoleted on: 'ios' 12.0 and later, 'maccatalyst' 12.0 and later, 'tvos' 12.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreImage/CIContext.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIContext.FromContext(EAGLContext)' is obsoleted on: 'ios' 12.0 and later, 'maccatalyst' 12.0 and later, 'tvos' 12.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIAreaBoundsRed' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB3X3' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB5X5' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB7X7' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB9Horizontal' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIConvolutionRGB9Vertical' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CILinearLightBlendMode' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIMaximumScaleTransform' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIPersonSegmentation' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIToneMapHeadroom' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreImage/CIFilter.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CIVividLightBlendMode' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreMedia/CMEnums.cs has 12 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreMedia/CMEnums.cs has 4 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreMedia/CMSampleBuffer.cs has 3 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMSampleAttachmentKey.DroppedFrameReason.get' is supported on: 'ios', 'maccatalyst', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCopyMaster(nint)' is obsoleted on: 'ios' 9.0 and later (Use 'CMTimebaseGetMaster' instead.), 'macOS/OSX' 10.11 and later (Use 'CMTimebaseGetMaster' instead.), 'tvos' 9.0 and later (Use 'CMTimebaseGetMaster' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCopyMasterClock(nint)' is obsoleted on: 'ios' 9.0 and later (Use 'CMTimebaseGetMasterClock' instead.), 'maccatalyst' 9.0 and later (Use 'CMTimebaseGetMasterClock' instead.), 'macOS/OSX' 10.11 and later (Use 'CMTimebaseGetMasterClock' instead.), 'tvos' 9.0 and later (Use 'CMTimebaseGetMasterClock' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCopyMasterTimebase(nint)' is obsoleted on: 'ios' 9.0 and later (Use 'CMTimebaseGetMasterTimebase' instead.), 'macOS/OSX' 10.11 and later (Use 'CMTimebaseGetMasterTimebase' instead.), 'tvos' 9.0 and later (Use 'CMTimebaseGetMasterTimebase' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCopyUltimateMasterClock(nint)' is obsoleted on: 'ios' 9.0 and later (Use 'CMTimebaseGetUltimateMasterClock' instead.), 'macOS/OSX' 10.11 and later (Use 'CMTimebaseGetUltimateMasterClock' instead.), 'tvos' 9.0 and later (Use 'CMTimebaseGetUltimateMasterClock' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCreateWithMasterClock(nint, nint, nint*)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.10 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCreateWithMasterTimebase(nint, nint, nint*)' is obsoleted on: 'ios' 8.0 and later, 'maccatalyst' 8.0 and later, 'macOS/OSX' 10.10 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCreateWithSourceClock(nint, nint, nint*)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseCreateWithSourceTimebase(nint, nint, nint*)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMaster(nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.11 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMasterClock(nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.10 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMasterClock(nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMasterTimebase(nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.10 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetMasterTimebase(nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMSync.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CMTimebase.CMTimebaseGetUltimateMasterClock(nint)' is obsoleted on: 'ios' 9.0 and later, 'maccatalyst' 9.0 and later, 'macOS/OSX' 10.11 and later, 'tvos' 9.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreMedia/CMTag.cs has 4 occurrences of This call site is reachable on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. 'CMTagConstants.ProjectionTypeHalfEquirectangular.get' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreMedia/CMTag.cs has 4 occurrences of This call site is reachable on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. 'CMTagConstants.ProjectionTypeHalfEquirectangular' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/coremidi.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/coremidi.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/coreml.cs has 4 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/coreml.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/corenfc.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreText/CTFont.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CTFontFeatureLetterCase' is obsoleted on: 'ios' 6.0 and later, 'maccatalyst' 6.0 and later, 'macOS/OSX' 10.7 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreText/CTFont.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'FontFeatureGroup.LetterCase' is obsoleted on: 'ios' 6.0 and later, 'maccatalyst' 6.0 and later, 'macOS/OSX' 10.7 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreText/CTParagraphStyle.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CTParagraphStyleSpecifier.LineSpacing' is obsoleted on: 'ios' 6.0 and later (Use 'MaximumLineSpacing' instead.), 'maccatalyst' 6.0 and later (Use 'MaximumLineSpacing' instead.), 'macOS/OSX' 10.8 and later (Use 'MaximumLineSpacing' instead.), 'tvos' 16.0 and later (Use 'MaximumLineSpacing' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/corevideo.cs has 12 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreVideo/CVBuffer.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVBuffer.CVBufferCopyAttachment(nint, nint, CVAttachmentMode*)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreVideo/CVBuffer.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVBuffer.CVBufferCopyAttachments(nint, CVAttachmentMode)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreVideo/CVBuffer.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVBuffer.CVBufferGetAttachment(nint, nint, CVAttachmentMode*)' is obsoleted on: 'ios' 15.0 and later, 'maccatalyst' 15.0 and later, 'macOS/OSX' 12.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreVideo/CVBuffer.cs has 7 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVBuffer.CVBufferGetAttachments(nint, CVAttachmentMode)' is obsoleted on: 'ios' 15.0 and later, 'maccatalyst' 15.0 and later, 'macOS/OSX' 12.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/CoreVideo/CVPixelBufferAttributes.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVPixelBuffer.OpenGLESCompatibilityKey.get' is supported on: 'ios', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreVideo/CVPixelFormatDescription.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVPixelFormatDescription.ContainsSenselArray' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreVideo/CVPixelFormatDescription.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVPixelFormatKeys.ContainsSenselArray.get' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreVideo/CVPixelFormatDescription.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CVPixelFormatKeys.ContainsSenselArray' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/CoreWlan/Enums.cs has 4 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/DeviceDiscoveryExtension/Enums.cs has 3 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/Enum.cs has 44 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/Enums.cs has 12 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSAttributedString.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString._InitWithContentsOfMarkdownFile(NSUrl, NSAttributedStringMarkdownParsingOptions?, NSUrl?, out NSError?)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSAttributedString.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString._InitWithMarkdown(NSData, NSAttributedStringMarkdownParsingOptions?, NSUrl?, out NSError?)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSAttributedString.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSAttributedString._InitWithMarkdownString(string, NSAttributedStringMarkdownParsingOptions?, NSUrl?, out NSError?)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSAttributedStringDocumentAttributes.cs has 2 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later. 'NSAttributedStringDocumentReadingOptionKey.ReadAccessUrlDocumentOption.get' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSAttributedStringDocumentAttributes.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later. 'NSAttributedStringDocumentReadingOptionKey.ReadAccessUrlDocumentOption.get' is supported on: 'ios' 13.0 and later, 'maccatalyst'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSAttributedStringDocumentAttributes.cs has 4 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later. 'NSAttributedStringDocumentReadingOptionKey.ReadAccessUrlDocumentOption' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSDictionary_2.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSDictionary' is obsoleted on: 'ios' 13.0 and later (Use 'NSMutableDictionary(NSUrl)' constructor instead.), 'maccatalyst' 13.0 and later (Use 'NSMutableDictionary(NSUrl)' constructor instead.), 'macOS/OSX' 10.15 and later (Use 'NSMutableDictionary(NSUrl)' constructor instead.), 'tvos' 13.0 and later (Use 'NSMutableDictionary(NSUrl)' constructor instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSDictionary_2.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSDictionary' is obsoleted on: 'ios' 13.0 and later (Use 'NSMutableDictionary(string)' constructor instead.), 'maccatalyst' 13.0 and later (Use 'NSMutableDictionary(string)' constructor instead.), 'macOS/OSX' 10.15 and later (Use 'NSMutableDictionary(string)' constructor instead.), 'tvos' 13.0 and later (Use 'NSMutableDictionary(string)' constructor instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSStream.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHost.Create(IPEndPoint)' is obsoleted on: 'ios' 15.0 and later (Use 'Network.framework' instead.), 'maccatalyst' 15.0 and later (Use 'Network.framework' instead.), 'macOS/OSX' 12.0 and later (Use 'Network.framework' instead.), 'tvos' 15.0 and later (Use 'Network.framework' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSStream.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CFStreamCreatePairWithPeerSocketSignature(nint, CFSocketSignature*, nint*, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'Network.framework' instead.), 'maccatalyst' 15.0 and later (Use 'Network.framework' instead.), 'macOS/OSX' 12.0 and later (Use 'Network.framework' instead.), 'tvos' 15.0 and later (Use 'Network.framework' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSStream.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CFStreamCreatePairWithSocket(nint, CFSocketNativeHandle, nint*, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'Network.framework' instead.), 'maccatalyst' 15.0 and later (Use 'Network.framework' instead.), 'macOS/OSX' 12.0 and later (Use 'Network.framework' instead.), 'tvos' 15.0 and later (Use 'Network.framework' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSStream.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CFStreamCreatePairWithSocketToCFHost(nint, nint, int, nint*, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'Network.framework' instead.), 'maccatalyst' 15.0 and later (Use 'Network.framework' instead.), 'macOS/OSX' 12.0 and later (Use 'Network.framework' instead.), 'tvos' 15.0 and later (Use 'Network.framework' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSUrlSessionHandler.ClientCertificateOptions' is unsupported on: 'ios' all versions, 'maccatalyst' all versions, 'macOS/OSX' all versions, 'tvos' all versions. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 20 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSUrlSessionConfiguration.TLSMinimumSupportedProtocol' is obsoleted on: 'ios' 13.0 and later (Use 'TlsMinimumSupportedProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsMinimumSupportedProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsMinimumSupportedProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsMinimumSupportedProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecTrust.GetCertificateChain()' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecTrust.this[nint]' is obsoleted on: 'ios' 15.0 and later (Use the 'GetCertificateChain' method instead.), 'maccatalyst' 15.0 and later (Use the 'GetCertificateChain' method instead.), 'macOS/OSX' 12.0 and later (Use the 'GetCertificateChain' method instead.), 'tvos' 15.0 and later (Use the 'GetCertificateChain' method instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Ssl_3_0' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Tls_1_0' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Tls_1_1' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Tls_1_2' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSUrlSessionHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SslProtocol.Tls_1_3' is obsoleted on: 'ios' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'maccatalyst' 13.0 and later (Use 'TlsProtocolVersion' instead.), 'macOS/OSX' 10.15 and later (Use 'TlsProtocolVersion' instead.), 'tvos' 13.0 and later (Use 'TlsProtocolVersion' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Foundation/NSValue.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSValue.StoreValueAtAddress(nint)' is obsoleted on: 'ios' 11.0 and later (Potential for buffer overruns. Use 'StoreValueAtAddress (IntPtr, nuint)' instead.), 'maccatalyst' 11.0 and later (Potential for buffer overruns. Use 'StoreValueAtAddress (IntPtr, nuint)' instead.), 'macOS/OSX' 10.13 and later (Potential for buffer overruns. Use 'StoreValueAtAddress (IntPtr, nuint)' instead.), 'tvos' 11.0 and later (Potential for buffer overruns. Use 'StoreValueAtAddress (IntPtr, nuint)' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/gamecontroller.cs has 4 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/gamecontroller.cs has 4 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/GameController/GCExtendedGamepadSnapshot.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'GCExtendedGamepadSnapShotDataV100' is obsoleted on: 'ios' 12.2 and later (Use 'GCExtendedGamepadSnapshotData' instead.), 'maccatalyst' 12.2 and later (Use 'GCExtendedGamepadSnapshotData' instead.), 'macOS/OSX' 10.14.4 and later (Use 'GCExtendedGamepadSnapshotData' instead.), 'tvos' 12.2 and later (Use 'GCExtendedGamepadSnapshotData' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/GameKit/GameKit.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/GameKit/GKGameCenterViewController.cs has 4 occurrences of This call site is reachable on: 'ios' 14.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 14.0 and later. 'GKGameCenterViewController' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/GameKit/GKScore.cs has 3 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'GKScore.InitWithCategory(string?)' is obsoleted on: 'ios' 7.0 and later (Use 'InitWithLeaderboardIdentifier' instead.), 'maccatalyst' 7.0 and later (Use 'InitWithLeaderboardIdentifier' instead.), 'macOS/OSX' 10.10 and later (Use 'InitWithLeaderboardIdentifier' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/HealthKit/Enums.cs has 18 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/HealthKit/Enums.cs has 42 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/HomeKit/HMEnums.cs has 3 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/identitylookup.cs has 4 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/intents.cs has 16 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/intents.cs has 4 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/intents.cs has 8 occurrences of This call site is reachable on all platforms. 'AdviceAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/localauthentication.cs has 3 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/localauthentication.cs has 3 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/LocalAuthentication/LAEnums.cs has 6 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/LocalAuthentication/LAEnums.cs has 9 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MapKit/MKEnums.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MapKit/MKEnums.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MediaPlayer/MPMediaItem.cs has 63 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'MPMediaEntity.ValueForProperty(NSString)' is supported on: 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Metal/MTLCommandBuffer.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLCommandBuffer.UseResidencySets(nint, nuint)' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Metal/MTLCommandBuffer.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLResidencySet' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Metal/MTLCommandQueue.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLCommandQueue.AddResidencySets(nint, nuint)' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Metal/MTLCommandQueue.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLCommandQueue.RemoveResidencySets(nint, nuint)' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Metal/MTLCommandQueue.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'IMTLResidencySet' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Metal/MTLEnums.cs has 300 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Metal/MTLEnums.cs has 96 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShaders/MPSEnums.cs has 24 occurrences of This call site is reachable on all platforms. 'MPSConstants.FunctionConstantIndex' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShaders/MPSEnums.cs has 40 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShaders/MPSEnums.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/metalperformanceshadersgraph.cs has 12 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/metalperformanceshadersgraph.cs has 12 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShadersGraph/MPSGraphEnums.cs has 20 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShadersGraph/MPSGraphEnums.cs has 20 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShadersGraph/MPSGraphExecutable.cs has 4 occurrences of This call site is reachable on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. 'MPSGraphExecutable._InitWithCoreMLPackage(NSUrl, MPSGraphCompilationDescriptor?)' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShadersGraph/MPSGraphExecutable.cs has 4 occurrences of This call site is reachable on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'macOS/OSX' 14.0 and later, 'tvos' 17.0 and later. 'MPSGraphExecutableInitializationOption.CoreMLPackage' is supported on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShadersGraph/MPSGraphExtensions.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'MPSGraph_MemoryOps.Constant(MPSGraph, double, int[], MPSDataType)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShadersGraph/MPSGraphExtensions.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'MPSGraph_MemoryOps.Constant(MPSGraph, NSData, int[], MPSDataType)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetalPerformanceShadersGraph/MPSGraphExtensions.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'MPSGraph_MemoryOps.Variable(MPSGraph, NSData, int[], MPSDataType, string?)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetricKit/MXMetaData.cs has 2 occurrences of This call site is reachable on: 'ios' 14.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later. 'MXMetaData._DictionaryRepresentation13' is obsoleted on: 'ios' 14.0 and later, 'maccatalyst' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/MetricKit/MXMetric.cs has 2 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later. 'MXMetric._DictionaryRepresentation13' is obsoleted on: 'ios' 14.0 and later, 'maccatalyst' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/MetricKit/MXMetric.cs has 2 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later. 'MXMetric._DictionaryRepresentation14' is supported on: 'ios' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/MetricKit/MXMetricPayload.cs has 2 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later. 'MXMetricPayload._DictionaryRepresentation13' is obsoleted on: 'ios' 14.0 and later, 'maccatalyst' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/MetricKit/MXMetricPayload.cs has 2 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later. 'MXMetricPayload._DictionaryRepresentation14' is supported on: 'ios' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/mlcompute.cs has 56 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ModelIO/MIEnums.cs has 4 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/NaturalLanguage/NLTagger.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NLTagger.GetNativeTagHypotheses(nuint, NLTokenUnit, NSString, nuint, out NSRange)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/NaturalLanguage/NLTagger.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NLTagger.GetNativeTagHypotheses(nuint, NLTokenUnit, NSString, nuint)' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/network.cs has 12 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWAdvertiseDescriptor.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWAdvertiseDescriptor.nw_advertise_descriptor_create_application_service(nint)' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWConnection.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWEstablishmentReport' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWEnums.cs has 12 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWEnums.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWEstablishmentReport.cs has 12 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 13.0 and later. 'NWResolutionReport' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWListener.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWConnectionGroup' is supported on: 'ios' 14.0 and later, 'tvos' 14.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWParameters.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolDefinition.CreateWebSocketDefinition()' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWParameters.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolIPOptions' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWParameters.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWWebSocketOptions' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWProtocolDefinition.cs has 12 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWFramer' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWProtocolDefinition.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWFramerStartResult.Unknown' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWProtocolDefinition.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWFramerStartResult' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWProtocolOptions.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolOptions.nw_ip_options_set_local_address_preference(nint, NWIPLocalAddressPreference)' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWProtocolOptions.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolOptions.nw_protocol_options_is_quic(nint)' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWProtocolStack.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolDefinition.CreateWebSocketDefinition()' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWProtocolStack.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWWebSocketOptions' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Network/NWProtocolStack.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NWProtocolIPOptions' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/NetworkExtension/NEEnums.cs has 12 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/NetworkExtension/NEEnums.cs has 32 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/BindAs.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSValue.CMVideoDimensionsValue' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/BindAs.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSValue.FromCMVideoDimensions(CMVideoDimensions)' is supported on: 'ios' 16.0 and later, 'maccatalyst' 16.0 and later, 'macOS/OSX' 13.0 and later, 'tvos' 16.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/Runtime.CoreCLR.cs has 16 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.SetMessageSendCallback(ObjectiveCMarshal.MessageSendFunction, nint)' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/Runtime.CoreCLR.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.CreateReferenceTrackingHandle(object, out Span)' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/Runtime.CoreCLR.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.Initialize(delegate* unmanaged, delegate* unmanaged, delegate* unmanaged, ObjectiveCMarshal.UnhandledExceptionPropagationHandler)' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/Runtime.CoreCLR.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.MessageSendFunction.MsgSend' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/Runtime.CoreCLR.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.MessageSendFunction.MsgSendStret' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/Runtime.CoreCLR.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.MessageSendFunction.MsgSendSuper' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/Runtime.CoreCLR.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.MessageSendFunction.MsgSendSuperStret' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/Runtime.CoreCLR.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ObjectiveCMarshal.SetMessageSendPendingException(Exception?)' is supported on: 'macOS/OSX'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/ObjCRuntime/RuntimeOptions.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NSDictionary.FromFile(string)' is obsoleted on: 'ios' 13.0 and later (Use 'NSMutableDictionary.FromFile' instead.), 'maccatalyst' 13.0 and later (Use 'NSMutableDictionary.FromFile' instead.), 'macOS/OSX' 10.15 and later (Use 'NSMutableDictionary.FromFile' instead.), 'tvos' 13.0 and later (Use 'NSMutableDictionary.FromFile' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/passkit.cs has 15 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/PassKit/PKEnums.cs has 3 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/PassKit/PKEnums.cs has 33 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/PdfKit/Enums.cs has 4 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/pencilkit.cs has 3 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/pencilkit.cs has 3 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/phase.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/phase.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Photos/Enums.cs has 12 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Photos/Enums.cs has 36 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/photosui.cs has 8 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/photosui.cs has 8 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/SceneKit/SCNNode.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.GetAnimation(NSString)' is obsoleted on: 'ios' 11.0 and later (Use 'GetAnimationPlayer' instead.), 'maccatalyst' 11.0 and later (Use 'GetAnimationPlayer' instead.), 'macOS/OSX' 10.13 and later (Use 'GetAnimationPlayer' instead.), 'tvos' 11.0 and later (Use 'GetAnimationPlayer' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SceneKit/SCNNode.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.IsAnimationPaused(NSString)' is obsoleted on: 'ios' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'maccatalyst' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'macOS/OSX' 10.13 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'tvos' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SceneKit/SCNNode.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.PauseAnimation(NSString)' is obsoleted on: 'ios' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'maccatalyst' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'macOS/OSX' 10.13 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'tvos' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SceneKit/SCNNode.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.RemoveAnimation(NSString, NFloat)' is obsoleted on: 'ios' 11.0 and later (Use 'RemoveAnimationUsingBlendOutDuration' instead.), 'maccatalyst' 11.0 and later (Use 'RemoveAnimationUsingBlendOutDuration' instead.), 'macOS/OSX' 10.13 and later (Use 'RemoveAnimationUsingBlendOutDuration' instead.), 'tvos' 11.0 and later (Use 'RemoveAnimationUsingBlendOutDuration' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SceneKit/SCNNode.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'ISCNAnimatable.ResumeAnimation(NSString)' is obsoleted on: 'ios' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'maccatalyst' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'macOS/OSX' 10.13 and later (Use 'SCNAnimationPlayer.Paused' instead.), 'tvos' 11.0 and later (Use 'SCNAnimationPlayer.Paused' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SceneKit/SCNRenderingOptions.cs has 9 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SCNRenderingOptionsKeys.RenderingApiKey.get' is supported on: 'ios', 'macOS/OSX', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/security.cs has 24 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/Security/Certificate.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.GenerateKeyPair(NSDictionary, out SecKey?, out SecKey?)' is obsoleted on: 'ios' 15.0 and later (Use 'CreateRandomKey' instead.), 'maccatalyst' 15.0 and later (Use 'CreateRandomKey' instead.), 'macOS/OSX' 12.0 and later (Use 'CreateRandomKey' instead.), 'tvos' 15.0 and later (Use 'CreateRandomKey' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Certificate.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.SecKeyDecrypt(nint, SecPadding, nint, nint, nint, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'SecKeyCreateDecryptedData' instead.), 'maccatalyst' 15.0 and later (Use 'SecKeyCreateDecryptedData' instead.), 'tvos' 15.0 and later (Use 'SecKeyCreateDecryptedData' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Certificate.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.SecKeyEncrypt(nint, SecPadding, nint, nint, nint, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'SecKeyCreateEncryptedData' instead.), 'maccatalyst' 15.0 and later (Use 'SecKeyCreateEncryptedData' instead.), 'tvos' 15.0 and later (Use 'SecKeyCreateEncryptedData' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Certificate.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.SecKeyRawSign(nint, SecPadding, nint, nint, nint, nint*)' is obsoleted on: 'ios' 15.0 and later (Use 'SecKeyCreateSignature' instead.), 'maccatalyst' 15.0 and later (Use 'SecKeyCreateSignature' instead.), 'tvos' 15.0 and later (Use 'SecKeyCreateSignature' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Certificate.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKey.SecKeyRawVerify(nint, SecPadding, nint, nint, nint, nint)' is obsoleted on: 'ios' 15.0 and later (Use 'SecKeyVerifySignature' instead.), 'maccatalyst' 15.0 and later (Use 'SecKeyVerifySignature' instead.), 'tvos' 15.0 and later (Use 'SecKeyVerifySignature' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainAddGenericPassword(nint, int, byte[]?, int, byte[]?, int, byte[], nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainAddInternetPassword(nint, int, byte[]?, int, byte[]?, int, byte[]?, int, byte[]?, short, nint, nint, int, byte[], nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainFindGenericPassword(nint, int, byte*, int, byte*, int*, nint*, nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainFindInternetPassword(nint, int, byte*, int, byte*, int, byte*, int, byte*, short, nint, nint, int*, nint*, nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecKeyChain.SecKeychainItemFreeContent(nint, nint)' is obsoleted on: 'macOS/OSX' 10.10 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecItem.UseOperationPrompt.get' is obsoleted on: 'ios' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'maccatalyst' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'macOS/OSX' 11.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'tvos' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecItem.UseOperationPrompt' is obsoleted on: 'ios' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'maccatalyst' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'macOS/OSX' 11.0 and later (Use 'LAContext.InteractionNotAllowed' instead.), 'tvos' 14.0 and later (Use 'LAContext.InteractionNotAllowed' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecAccessible.Always' is obsoleted on: 'ios' 12.0 and later (Use 'AfterFirstUnlock' or a better suited option instead.), 'maccatalyst' 12.0 and later (Use 'AfterFirstUnlock' or a better suited option instead.), 'macOS/OSX' 10.14 and later (Use 'AfterFirstUnlock' or a better suited option instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/Items.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecAccessible.AlwaysThisDeviceOnly' is obsoleted on: 'ios' 12.0 and later (Use 'AfterFirstUnlockThisDeviceOnly' or a better suited option instead.), 'maccatalyst' 12.0 and later (Use 'AfterFirstUnlockThisDeviceOnly' or a better suited option instead.), 'macOS/OSX' 10.14 and later (Use 'AfterFirstUnlockThisDeviceOnly' or a better suited option instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/Security/SecProtocolOptions.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SecProtocolOptions.sec_protocol_options_set_tls_diffie_hellman_parameters(nint, nint)' is obsoleted on: 'ios' 13.0 and later (Use non-DHE cipher suites instead.), 'maccatalyst' 13.0 and later (Use non-DHE cipher suites instead.), 'macOS/OSX' 10.15 and later (Use non-DHE cipher suites instead.), 'tvos' 13.0 and later (Use non-DHE cipher suites instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/sensorkit.cs has 2 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/SpriteKit/SKUniform.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform.InitWithNameFloatVector2(string, Vector2)' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SpriteKit/SKUniform.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform.InitWithNameFloatVector3(string, Vector3)' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SpriteKit/SKUniform.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform.InitWithNameFloatVector4(string, Vector4)' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SpriteKit/SKUniform.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform._FloatVector2Value' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SpriteKit/SKUniform.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform._FloatVector3Value' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SpriteKit/SKUniform.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'SKUniform._FloatVector4Value' is obsoleted on: 'ios' 10.0 and later, 'maccatalyst' 10.0 and later, 'macOS/OSX' 10.12 and later, 'tvos' 10.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/StoreKit/SKReceiptProperty.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. '_SKReceiptProperty.IsExpired' is obsoleted on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/StoreKit/SKReceiptProperty.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. '_SKReceiptProperty.IsRevoked' is obsoleted on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/StoreKit/SKReceiptProperty.cs has 8 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. '_SKReceiptProperty.IsVolumePurchase' is obsoleted on: 'ios' 18.0 and later, 'maccatalyst' 18.0 and later, 'macOS/OSX' 15.0 and later, 'tvos' 18.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/System.Net.Http/CFNetworkHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPStream.GetResponseHeader()' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession'.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession'.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession'.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/System.Net.Http/CFNetworkHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPStream.SetProxy(CFProxySettings)' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession'.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession'.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession'.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/System.Net.Http/CFNetworkHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFHTTPStream.ShouldAutoredirect' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession'.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession'.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession'.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/System.Net.Http/CFNetworkHandler.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'CFStream.CreateForHTTPRequest(CFHTTPMessage)' is obsoleted on: 'ios' 9.0 and later (Use 'NSUrlSession' instead.), 'maccatalyst' 9.0 and later (Use 'NSUrlSession' instead.), 'macOS/OSX' 10.11 and later (Use 'NSUrlSession' instead.), 'tvos' 9.0 and later (Use 'NSUrlSession' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SystemConfiguration/NetworkReachability.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.GetFlags(out NetworkReachabilityFlags)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SystemConfiguration/NetworkReachability.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.Schedule(CFRunLoop, string)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SystemConfiguration/NetworkReachability.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithAddress(nint, NetworkReachability.sockaddr_in*)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SystemConfiguration/NetworkReachability.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithAddressPair(nint, NetworkReachability.sockaddr_in*, NetworkReachability.sockaddr_in*)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SystemConfiguration/NetworkReachability.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithAddressPair(nint, NetworkReachability.sockaddr_in*, nint)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SystemConfiguration/NetworkReachability.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithAddressPair(nint, nint, NetworkReachability.sockaddr_in*)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SystemConfiguration/NetworkReachability.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.SCNetworkReachabilityCreateWithName(nint, nint)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/SystemConfiguration/NetworkReachability.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'NetworkReachability.Unschedule(CFRunLoop, string)' is obsoleted on: 'ios' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'maccatalyst' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'macOS/OSX' 14.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.), 'tvos' 17.4 and later (Use 'NSUrlSession' or 'NWConnection' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/uikit.cs has 45 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/uikit.cs has 9 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UICellAccessory.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UICellAccessory' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIDevice.cs has 2 occurrences of This call site is reachable on all platforms. 'UIDevice.SystemVersion' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIEnums.cs has 57 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIEnums.cs has 6 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIFontFeature.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'FontFeatureGroup.LetterCase' is obsoleted on: 'ios' 6.0 and later, 'maccatalyst' 6.0 and later, 'macOS/OSX' 10.7 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/UIKit/UIImage.cs has 3 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIGraphics.BeginImageContext(CGSize)' is unsupported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIImage.cs has 3 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIGraphics.BeginImageContextWithOptions(CGSize, bool, NFloat)' is unsupported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIImage.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIGraphics.EndImageContext()' is unsupported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIImage.cs has 6 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIGraphics.GetImageFromCurrentImageContext()' is unsupported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIImagePickerController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIImagePickerController.ReferenceUrl.get' is obsoleted on: 'ios' 11.0 and later (Use 'UIImagePickerController.PHAsset' instead.), 'maccatalyst' 11.0 and later (Use 'UIImagePickerController.PHAsset' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/UIKit/UIImagePickerController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIImagePickerController.ReferenceUrl.get' is supported on: 'ios', 'maccatalyst'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIImagePickerController.cs has 2 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UIImagePickerController.ReferenceUrl' is obsoleted on: 'ios' 11.0 and later (Use 'UIImagePickerController.PHAsset' instead.), 'maccatalyst' 11.0 and later (Use 'UIImagePickerController.PHAsset' instead.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/UIKit/UIViewControllerTransitionCoordinatorContext.cs has 3 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UITransitionContext.FromViewKey.get' is supported on: 'ios', 'maccatalyst', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIViewControllerTransitionCoordinatorContext.cs has 3 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'UITransitionContext.ToViewKey.get' is supported on: 'ios', 'maccatalyst', 'tvos'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIWindowScene.cs has 3 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action, params Type[])' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIWindowScene.cs has 3 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Type[], Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIWindowScene.cs has 3 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Type[], NSObject, Selector)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIWindowScene.cs has 3 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Type[], Selector)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIWindowScene.cs has 3 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIWindowScene.cs has 3 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIWindowScene.cs has 3 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/UIKit/UIWindowScene.cs has 3 occurrences of This call site is reachable on: 'ios' 13.0 and later, 'maccatalyst' 12.2 and later, 'tvos' 13.0 and later. 'IUITraitChangeObservable._RegisterForTraitChanges(IUITraitChangeObservable, Action)' is supported on: 'ios' 17.0 and later, 'maccatalyst' 17.0 and later, 'tvos' 17.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/usernotifications.cs has 20 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTDefs.cs has 12 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTDefs.cs has 4 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.GpuRegistryId' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.IncludeStandardDefinitionDVEncoders' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.InstanceLimit' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.IsHardwareAccelerated' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.PerformanceRating' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.QualityRating' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.SupportedSelectionProperties' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoder.SupportsFrameReordering' is supported on: 'ios' 14.2 and later, 'tvos' 14.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.GpuRegistryId.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.GpuRegistryId' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.IncludeStandardDefinitionDVEncoders.get' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.IncludeStandardDefinitionDVEncoders' is supported on: 'ios' 15.0 and later, 'tvos' 15.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.InstanceLimit.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.InstanceLimit' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.IsHardwareAccelerated.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.IsHardwareAccelerated' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.PerformanceRating.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.PerformanceRating' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.QualityRating.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.QualityRating' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.SupportedSelectionProperties.get' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.SupportedSelectionProperties' is supported on: 'ios' 13.0 and later, 'tvos' 13.0 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.SupportsFrameReordering.get' is supported on: 'ios' 14.2 and later, 'tvos' 14.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/VideoToolbox/VTVideoEncoder.cs has 4 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'VTVideoEncoderList.SupportsFrameReordering' is supported on: 'ios' 14.2 and later, 'tvos' 14.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/vision.cs has 4 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/vision.cs has 40 occurrences of This call site is reachable on all platforms. 'MacAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/vision.cs has 72 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/WebKit/WebNavigationPolicyEventArgs.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionButtonKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/WebKit/WebNavigationPolicyEventArgs.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionElementKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/WebKit/WebNavigationPolicyEventArgs.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionModifierFlagsKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/WebKit/WebNavigationPolicyEventArgs.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionNavigationTypeKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/WebKit/WebNavigationPolicyEventArgs.cs has 1 occurrences of This call site is reachable on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. 'WebPolicyDelegate.WebActionOriginalUrlKey' is obsoleted on: 'macOS/OSX' 10.14 and later (No longer supported.). (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1422)",
+ "/src/xkit.cs has 12 occurrences of This call site is reachable on all platforms. 'iOSAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
+ "/src/xkit.cs has 48 occurrences of This call site is reachable on all platforms. 'FieldAttribute' is supported on: 'ios' 12.2 and later, 'maccatalyst' 12.2 and later, 'macOS/OSX' 12.0 and later, 'tvos' 12.2 and later. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)",
};
}
}
diff --git a/tests/cecil-tests/ApiAvailabilityTest.cs b/tests/cecil-tests/ApiAvailabilityTest.cs
index c10ef6942833..f5db11606f08 100644
--- a/tests/cecil-tests/ApiAvailabilityTest.cs
+++ b/tests/cecil-tests/ApiAvailabilityTest.cs
@@ -64,10 +64,12 @@ public void Warnings ()
foreach (var kvp in groupedWarnings)
failures.Add ($"{kvp.Value.File} has {kvp.Value.Count} occurrences of {kvp.Value.Message}");
- Helper.AssertFailures (failures, knownFailuresAvailabilityWarnings, nameof (knownFailuresAvailabilityWarnings), "Availability warnings.");
-
- Console.WriteLine ($"There's a total of {totalWarnings} warnings.");
- Assert.AreEqual (7436, totalWarnings, "Total warnings"); // this is just to see how the warning count changes as issues are fixed.
+ try {
+ Helper.AssertFailures (failures, knownFailuresAvailabilityWarnings, nameof (knownFailuresAvailabilityWarnings), "Availability warnings.");
+ } finally {
+ Console.WriteLine ($"There's a total of {totalWarnings} warnings.");
+ }
+ Assert.AreEqual (3669, totalWarnings, "Total warnings"); // this is just to see how the warning count changes as issues are fixed.
}
public record ObsoletedFailure : IComparable {
diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt
index 1f06c03a8214..a6cd35e03b74 100644
--- a/tests/cecil-tests/Documentation.KnownFailures.txt
+++ b/tests/cecil-tests/Documentation.KnownFailures.txt
@@ -3299,243 +3299,31 @@ F:AssetsLibrary.ALAuthorizationStatus.Authorized
F:AssetsLibrary.ALAuthorizationStatus.Denied
F:AssetsLibrary.ALAuthorizationStatus.NotDetermined
F:AssetsLibrary.ALAuthorizationStatus.Restricted
-F:AudioToolbox.AudioBalanceFadeType.EqualPower
-F:AudioToolbox.AudioBalanceFadeType.MaxUnityGain
-F:AudioToolbox.AudioBuffer.Data
-F:AudioToolbox.AudioBuffer.DataByteSize
-F:AudioToolbox.AudioBuffer.NumberChannels
-F:AudioToolbox.AudioChannelBit.Center
-F:AudioToolbox.AudioChannelBit.CenterSurround
F:AudioToolbox.AudioChannelBit.CenterTopFront
F:AudioToolbox.AudioChannelBit.CenterTopMiddle
F:AudioToolbox.AudioChannelBit.CenterTopRear
-F:AudioToolbox.AudioChannelBit.Left
-F:AudioToolbox.AudioChannelBit.LeftCenter
-F:AudioToolbox.AudioChannelBit.LeftSurround
-F:AudioToolbox.AudioChannelBit.LeftSurroundDirect
F:AudioToolbox.AudioChannelBit.LeftTopFront
F:AudioToolbox.AudioChannelBit.LeftTopMiddle
F:AudioToolbox.AudioChannelBit.LeftTopRear
-F:AudioToolbox.AudioChannelBit.LFEScreen
-F:AudioToolbox.AudioChannelBit.Right
-F:AudioToolbox.AudioChannelBit.RightCenter
-F:AudioToolbox.AudioChannelBit.RightSurround
-F:AudioToolbox.AudioChannelBit.RightSurroundDirect
F:AudioToolbox.AudioChannelBit.RightTopFront
F:AudioToolbox.AudioChannelBit.RightTopMiddle
F:AudioToolbox.AudioChannelBit.RightTopRear
-F:AudioToolbox.AudioChannelBit.TopBackCenter
-F:AudioToolbox.AudioChannelBit.TopBackLeft
-F:AudioToolbox.AudioChannelBit.TopBackRight
-F:AudioToolbox.AudioChannelBit.TopCenterSurround
-F:AudioToolbox.AudioChannelBit.VerticalHeightCenter
-F:AudioToolbox.AudioChannelBit.VerticalHeightLeft
-F:AudioToolbox.AudioChannelBit.VerticalHeightRight
-F:AudioToolbox.AudioChannelDescription.Flags
-F:AudioToolbox.AudioChannelDescription.Label
-F:AudioToolbox.AudioChannelFlags.AllOff
-F:AudioToolbox.AudioChannelFlags.Meters
-F:AudioToolbox.AudioChannelFlags.RectangularCoordinates
-F:AudioToolbox.AudioChannelFlags.SphericalCoordinates
-F:AudioToolbox.AudioChannelLabel.Ambisonic_W
-F:AudioToolbox.AudioChannelLabel.Ambisonic_X
-F:AudioToolbox.AudioChannelLabel.Ambisonic_Y
-F:AudioToolbox.AudioChannelLabel.Ambisonic_Z
-F:AudioToolbox.AudioChannelLabel.BinauralLeft
-F:AudioToolbox.AudioChannelLabel.BinauralRight
-F:AudioToolbox.AudioChannelLabel.Center
-F:AudioToolbox.AudioChannelLabel.CenterSurround
-F:AudioToolbox.AudioChannelLabel.CenterSurroundDirect
F:AudioToolbox.AudioChannelLabel.CenterTopFront
F:AudioToolbox.AudioChannelLabel.CenterTopMiddle
F:AudioToolbox.AudioChannelLabel.CenterTopRear
-F:AudioToolbox.AudioChannelLabel.ClickTrack
-F:AudioToolbox.AudioChannelLabel.DialogCentricMix
-F:AudioToolbox.AudioChannelLabel.Discrete
-F:AudioToolbox.AudioChannelLabel.Discrete_0
-F:AudioToolbox.AudioChannelLabel.Discrete_1
-F:AudioToolbox.AudioChannelLabel.Discrete_10
-F:AudioToolbox.AudioChannelLabel.Discrete_11
-F:AudioToolbox.AudioChannelLabel.Discrete_12
-F:AudioToolbox.AudioChannelLabel.Discrete_13
-F:AudioToolbox.AudioChannelLabel.Discrete_14
-F:AudioToolbox.AudioChannelLabel.Discrete_15
-F:AudioToolbox.AudioChannelLabel.Discrete_2
-F:AudioToolbox.AudioChannelLabel.Discrete_3
-F:AudioToolbox.AudioChannelLabel.Discrete_4
-F:AudioToolbox.AudioChannelLabel.Discrete_5
-F:AudioToolbox.AudioChannelLabel.Discrete_6
-F:AudioToolbox.AudioChannelLabel.Discrete_65535
-F:AudioToolbox.AudioChannelLabel.Discrete_7
-F:AudioToolbox.AudioChannelLabel.Discrete_8
-F:AudioToolbox.AudioChannelLabel.Discrete_9
-F:AudioToolbox.AudioChannelLabel.ForeignLanguage
-F:AudioToolbox.AudioChannelLabel.Haptic
-F:AudioToolbox.AudioChannelLabel.HeadphonesLeft
-F:AudioToolbox.AudioChannelLabel.HeadphonesRight
-F:AudioToolbox.AudioChannelLabel.HearingImpaired
-F:AudioToolbox.AudioChannelLabel.HoaAcn
-F:AudioToolbox.AudioChannelLabel.HoaAcn0
-F:AudioToolbox.AudioChannelLabel.HoaAcn1
-F:AudioToolbox.AudioChannelLabel.HoaAcn10
-F:AudioToolbox.AudioChannelLabel.HoaAcn11
-F:AudioToolbox.AudioChannelLabel.HoaAcn12
-F:AudioToolbox.AudioChannelLabel.HoaAcn13
-F:AudioToolbox.AudioChannelLabel.HoaAcn14
-F:AudioToolbox.AudioChannelLabel.HoaAcn15
-F:AudioToolbox.AudioChannelLabel.HoaAcn2
-F:AudioToolbox.AudioChannelLabel.HoaAcn3
-F:AudioToolbox.AudioChannelLabel.HoaAcn4
-F:AudioToolbox.AudioChannelLabel.HoaAcn5
-F:AudioToolbox.AudioChannelLabel.HoaAcn6
-F:AudioToolbox.AudioChannelLabel.HoaAcn65024
-F:AudioToolbox.AudioChannelLabel.HoaAcn7
-F:AudioToolbox.AudioChannelLabel.HoaAcn8
-F:AudioToolbox.AudioChannelLabel.HoaAcn9
F:AudioToolbox.AudioChannelLabel.HoaN3d
F:AudioToolbox.AudioChannelLabel.HoaSn3d
-F:AudioToolbox.AudioChannelLabel.Left
-F:AudioToolbox.AudioChannelLabel.LeftCenter
-F:AudioToolbox.AudioChannelLabel.LeftSurround
-F:AudioToolbox.AudioChannelLabel.LeftSurroundDirect
F:AudioToolbox.AudioChannelLabel.LeftTopFront
F:AudioToolbox.AudioChannelLabel.LeftTopMiddle
F:AudioToolbox.AudioChannelLabel.LeftTopRear
-F:AudioToolbox.AudioChannelLabel.LeftTotal
-F:AudioToolbox.AudioChannelLabel.LeftWide
-F:AudioToolbox.AudioChannelLabel.LFE2
-F:AudioToolbox.AudioChannelLabel.LFEScreen
-F:AudioToolbox.AudioChannelLabel.Mono
-F:AudioToolbox.AudioChannelLabel.MS_Mid
-F:AudioToolbox.AudioChannelLabel.MS_Side
-F:AudioToolbox.AudioChannelLabel.Narration
-F:AudioToolbox.AudioChannelLabel.RearSurroundLeft
-F:AudioToolbox.AudioChannelLabel.RearSurroundRight
-F:AudioToolbox.AudioChannelLabel.Right
-F:AudioToolbox.AudioChannelLabel.RightCenter
-F:AudioToolbox.AudioChannelLabel.RightSurround
-F:AudioToolbox.AudioChannelLabel.RightSurroundDirect
F:AudioToolbox.AudioChannelLabel.RightTopFront
F:AudioToolbox.AudioChannelLabel.RightTopMiddle
F:AudioToolbox.AudioChannelLabel.RightTopRear
-F:AudioToolbox.AudioChannelLabel.RightTotal
-F:AudioToolbox.AudioChannelLabel.RightWide
-F:AudioToolbox.AudioChannelLabel.TopBackCenter
-F:AudioToolbox.AudioChannelLabel.TopBackLeft
-F:AudioToolbox.AudioChannelLabel.TopBackRight
-F:AudioToolbox.AudioChannelLabel.TopCenterSurround
-F:AudioToolbox.AudioChannelLabel.Unknown
-F:AudioToolbox.AudioChannelLabel.Unused
-F:AudioToolbox.AudioChannelLabel.UseCoordinates
-F:AudioToolbox.AudioChannelLabel.VerticalHeightCenter
-F:AudioToolbox.AudioChannelLabel.VerticalHeightLeft
-F:AudioToolbox.AudioChannelLabel.VerticalHeightRight
-F:AudioToolbox.AudioChannelLabel.XY_X
-F:AudioToolbox.AudioChannelLabel.XY_Y
-F:AudioToolbox.AudioChannelLayout.AudioTag
-F:AudioToolbox.AudioChannelLayout.Channels
-F:AudioToolbox.AudioChannelLayout.ChannelUsage
-F:AudioToolbox.AudioChannelLayoutTag.AAC_3_0
-F:AudioToolbox.AudioChannelLayoutTag.AAC_4_0
-F:AudioToolbox.AudioChannelLayoutTag.AAC_5_0
-F:AudioToolbox.AudioChannelLayoutTag.AAC_5_1
-F:AudioToolbox.AudioChannelLayoutTag.AAC_6_0
-F:AudioToolbox.AudioChannelLayoutTag.AAC_6_1
-F:AudioToolbox.AudioChannelLayoutTag.AAC_7_0
-F:AudioToolbox.AudioChannelLayoutTag.AAC_7_1
-F:AudioToolbox.AudioChannelLayoutTag.AAC_7_1_B
-F:AudioToolbox.AudioChannelLayoutTag.AAC_7_1_C
-F:AudioToolbox.AudioChannelLayoutTag.AAC_Octagonal
-F:AudioToolbox.AudioChannelLayoutTag.AAC_Quadraphonic
-F:AudioToolbox.AudioChannelLayoutTag.AC3_1_0_1
-F:AudioToolbox.AudioChannelLayoutTag.AC3_2_1_1
-F:AudioToolbox.AudioChannelLayoutTag.AC3_3_0
-F:AudioToolbox.AudioChannelLayoutTag.AC3_3_0_1
-F:AudioToolbox.AudioChannelLayoutTag.AC3_3_1
-F:AudioToolbox.AudioChannelLayoutTag.AC3_3_1_1
-F:AudioToolbox.AudioChannelLayoutTag.Ambisonic_B_Format
F:AudioToolbox.AudioChannelLayoutTag.Atmos_5_1_2
F:AudioToolbox.AudioChannelLayoutTag.Atmos_5_1_4
F:AudioToolbox.AudioChannelLayoutTag.Atmos_7_1_2
F:AudioToolbox.AudioChannelLayoutTag.Atmos_7_1_4
F:AudioToolbox.AudioChannelLayoutTag.Atmos_9_1_6
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_4
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_5
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_5_0
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_5_1
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_6
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_6_0
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_6_1
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_7_0
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_7_0_Front
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_7_1
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_7_1_Front
-F:AudioToolbox.AudioChannelLayoutTag.AudioUnit_8
-F:AudioToolbox.AudioChannelLayoutTag.Binaural
-F:AudioToolbox.AudioChannelLayoutTag.Cube
-F:AudioToolbox.AudioChannelLayoutTag.DiscreteInOrder
-F:AudioToolbox.AudioChannelLayoutTag.DTS_3_1
-F:AudioToolbox.AudioChannelLayoutTag.DTS_4_1
-F:AudioToolbox.AudioChannelLayoutTag.DTS_6_0_A
-F:AudioToolbox.AudioChannelLayoutTag.DTS_6_0_B
-F:AudioToolbox.AudioChannelLayoutTag.DTS_6_0_C
-F:AudioToolbox.AudioChannelLayoutTag.DTS_6_1_A
-F:AudioToolbox.AudioChannelLayoutTag.DTS_6_1_B
-F:AudioToolbox.AudioChannelLayoutTag.DTS_6_1_C
-F:AudioToolbox.AudioChannelLayoutTag.DTS_6_1_D
-F:AudioToolbox.AudioChannelLayoutTag.DTS_7_0
-F:AudioToolbox.AudioChannelLayoutTag.DTS_7_1
-F:AudioToolbox.AudioChannelLayoutTag.DTS_8_0_A
-F:AudioToolbox.AudioChannelLayoutTag.DTS_8_0_B
-F:AudioToolbox.AudioChannelLayoutTag.DTS_8_1_A
-F:AudioToolbox.AudioChannelLayoutTag.DTS_8_1_B
-F:AudioToolbox.AudioChannelLayoutTag.DVD_0
-F:AudioToolbox.AudioChannelLayoutTag.DVD_1
-F:AudioToolbox.AudioChannelLayoutTag.DVD_10
-F:AudioToolbox.AudioChannelLayoutTag.DVD_11
-F:AudioToolbox.AudioChannelLayoutTag.DVD_12
-F:AudioToolbox.AudioChannelLayoutTag.DVD_13
-F:AudioToolbox.AudioChannelLayoutTag.DVD_14
-F:AudioToolbox.AudioChannelLayoutTag.DVD_15
-F:AudioToolbox.AudioChannelLayoutTag.DVD_16
-F:AudioToolbox.AudioChannelLayoutTag.DVD_17
-F:AudioToolbox.AudioChannelLayoutTag.DVD_18
-F:AudioToolbox.AudioChannelLayoutTag.DVD_19
-F:AudioToolbox.AudioChannelLayoutTag.DVD_2
-F:AudioToolbox.AudioChannelLayoutTag.DVD_20
-F:AudioToolbox.AudioChannelLayoutTag.DVD_3
-F:AudioToolbox.AudioChannelLayoutTag.DVD_4
-F:AudioToolbox.AudioChannelLayoutTag.DVD_5
-F:AudioToolbox.AudioChannelLayoutTag.DVD_6
-F:AudioToolbox.AudioChannelLayoutTag.DVD_7
-F:AudioToolbox.AudioChannelLayoutTag.DVD_8
-F:AudioToolbox.AudioChannelLayoutTag.DVD_9
-F:AudioToolbox.AudioChannelLayoutTag.EAC_6_0_A
-F:AudioToolbox.AudioChannelLayoutTag.EAC_7_0_A
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_6_1_A
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_6_1_B
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_6_1_C
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_7_1_A
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_7_1_B
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_7_1_C
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_7_1_D
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_7_1_E
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_7_1_F
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_7_1_G
-F:AudioToolbox.AudioChannelLayoutTag.EAC3_7_1_H
-F:AudioToolbox.AudioChannelLayoutTag.Emagic_Default_7_1
-F:AudioToolbox.AudioChannelLayoutTag.Hexagonal
-F:AudioToolbox.AudioChannelLayoutTag.HOA_ACN_N3D
-F:AudioToolbox.AudioChannelLayoutTag.HOA_ACN_SN3D
-F:AudioToolbox.AudioChannelLayoutTag.ITU_1_0
-F:AudioToolbox.AudioChannelLayoutTag.ITU_2_0
-F:AudioToolbox.AudioChannelLayoutTag.ITU_2_1
-F:AudioToolbox.AudioChannelLayoutTag.ITU_2_2
-F:AudioToolbox.AudioChannelLayoutTag.ITU_3_0
-F:AudioToolbox.AudioChannelLayoutTag.ITU_3_1
-F:AudioToolbox.AudioChannelLayoutTag.ITU_3_2
-F:AudioToolbox.AudioChannelLayoutTag.ITU_3_2_1
-F:AudioToolbox.AudioChannelLayoutTag.ITU_3_4_1
F:AudioToolbox.AudioChannelLayoutTag.Logic_4_0_A
F:AudioToolbox.AudioChannelLayoutTag.Logic_4_0_B
F:AudioToolbox.AudioChannelLayoutTag.Logic_4_0_C
@@ -3569,48 +3357,16 @@ F:AudioToolbox.AudioChannelLayoutTag.Logic_Atmos_7_1_6
F:AudioToolbox.AudioChannelLayoutTag.Logic_Mono
F:AudioToolbox.AudioChannelLayoutTag.Logic_Quadraphonic
F:AudioToolbox.AudioChannelLayoutTag.Logic_Stereo
-F:AudioToolbox.AudioChannelLayoutTag.MatrixStereo
-F:AudioToolbox.AudioChannelLayoutTag.MidSide
-F:AudioToolbox.AudioChannelLayoutTag.Mono
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_1_0
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_2_0
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_3_0_A
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_3_0_B
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_4_0_A
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_4_0_B
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_0_A
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_0_B
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_0_C
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_0_D
F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_0_E
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_1_A
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_1_B
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_1_C
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_1_D
F:AudioToolbox.AudioChannelLayoutTag.MPEG_5_1_E
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_6_1_A
F:AudioToolbox.AudioChannelLayoutTag.MPEG_6_1_B
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_7_1_A
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_7_1_B
-F:AudioToolbox.AudioChannelLayoutTag.MPEG_7_1_C
F:AudioToolbox.AudioChannelLayoutTag.MPEG_7_1_D
-F:AudioToolbox.AudioChannelLayoutTag.Octagonal
F:AudioToolbox.AudioChannelLayoutTag.Ogg_3_0
F:AudioToolbox.AudioChannelLayoutTag.Ogg_4_0
F:AudioToolbox.AudioChannelLayoutTag.Ogg_5_0
F:AudioToolbox.AudioChannelLayoutTag.Ogg_5_1
F:AudioToolbox.AudioChannelLayoutTag.Ogg_6_1
F:AudioToolbox.AudioChannelLayoutTag.Ogg_7_1
-F:AudioToolbox.AudioChannelLayoutTag.Pentagonal
-F:AudioToolbox.AudioChannelLayoutTag.Quadraphonic
-F:AudioToolbox.AudioChannelLayoutTag.SMPTE_DTV
-F:AudioToolbox.AudioChannelLayoutTag.Stereo
-F:AudioToolbox.AudioChannelLayoutTag.StereoHeadphones
-F:AudioToolbox.AudioChannelLayoutTag.TMH_10_2_full
-F:AudioToolbox.AudioChannelLayoutTag.TMH_10_2_std
-F:AudioToolbox.AudioChannelLayoutTag.Unknown
-F:AudioToolbox.AudioChannelLayoutTag.UseChannelBitmap
-F:AudioToolbox.AudioChannelLayoutTag.UseChannelDescriptions
F:AudioToolbox.AudioChannelLayoutTag.Wave_2_1
F:AudioToolbox.AudioChannelLayoutTag.Wave_3_0
F:AudioToolbox.AudioChannelLayoutTag.Wave_4_0_A
@@ -3621,287 +3377,11 @@ F:AudioToolbox.AudioChannelLayoutTag.Wave_5_1_A
F:AudioToolbox.AudioChannelLayoutTag.Wave_5_1_B
F:AudioToolbox.AudioChannelLayoutTag.Wave_6_1
F:AudioToolbox.AudioChannelLayoutTag.Wave_7_1
-F:AudioToolbox.AudioChannelLayoutTag.XY
-F:AudioToolbox.AudioClassDescription.Manufacturer
-F:AudioToolbox.AudioClassDescription.SubType
-F:AudioToolbox.AudioClassDescription.Type
-F:AudioToolbox.AudioCodecComponentType.Decoder
-F:AudioToolbox.AudioCodecComponentType.Encoder
-F:AudioToolbox.AudioConverterError.AudioFormatUnsupported
-F:AudioToolbox.AudioConverterError.BadPropertySizeError
-F:AudioToolbox.AudioConverterError.FormatNotSupported
-F:AudioToolbox.AudioConverterError.HardwareInUse
-F:AudioToolbox.AudioConverterError.InputSampleRateOutOfRange
-F:AudioToolbox.AudioConverterError.InvalidInputSize
-F:AudioToolbox.AudioConverterError.InvalidOutputSize
-F:AudioToolbox.AudioConverterError.NoHardwarePermission
-F:AudioToolbox.AudioConverterError.None
-F:AudioToolbox.AudioConverterError.OperationNotSupported
-F:AudioToolbox.AudioConverterError.OutputSampleRateOutOfRange
-F:AudioToolbox.AudioConverterError.PropertyNotSupported
-F:AudioToolbox.AudioConverterError.RequiresPacketDescriptionsError
-F:AudioToolbox.AudioConverterError.UnspecifiedError
F:AudioToolbox.AudioConverterOptions.None
F:AudioToolbox.AudioConverterOptions.Unbuffered
-F:AudioToolbox.AudioConverterPrimeInfo.LeadingFrames
-F:AudioToolbox.AudioConverterPrimeInfo.TrailingFrames
-F:AudioToolbox.AudioConverterPrimeMethod.None
-F:AudioToolbox.AudioConverterPrimeMethod.Normal
-F:AudioToolbox.AudioConverterPrimeMethod.Pre
-F:AudioToolbox.AudioConverterQuality.High
-F:AudioToolbox.AudioConverterQuality.Low
-F:AudioToolbox.AudioConverterQuality.Max
-F:AudioToolbox.AudioConverterQuality.Medium
-F:AudioToolbox.AudioConverterQuality.Min
-F:AudioToolbox.AudioConverterSampleRateConverterComplexity.Linear
-F:AudioToolbox.AudioConverterSampleRateConverterComplexity.Mastering
-F:AudioToolbox.AudioConverterSampleRateConverterComplexity.Normal
-F:AudioToolbox.AudioFileChunkType.CAFAudioData
-F:AudioToolbox.AudioFileChunkType.CAFChannelLayout
-F:AudioToolbox.AudioFileChunkType.CAFEditComments
-F:AudioToolbox.AudioFileChunkType.CAFFiller
-F:AudioToolbox.AudioFileChunkType.CAFFormatListID
-F:AudioToolbox.AudioFileChunkType.CAFInfoStrings
-F:AudioToolbox.AudioFileChunkType.CAFInstrument
-F:AudioToolbox.AudioFileChunkType.CAFiXML
-F:AudioToolbox.AudioFileChunkType.CAFMagicCookieID
-F:AudioToolbox.AudioFileChunkType.CAFMarker
-F:AudioToolbox.AudioFileChunkType.CAFMIDI
-F:AudioToolbox.AudioFileChunkType.CAFOverview
-F:AudioToolbox.AudioFileChunkType.CAFPacketTable
-F:AudioToolbox.AudioFileChunkType.CAFPeak
-F:AudioToolbox.AudioFileChunkType.CAFRegion
-F:AudioToolbox.AudioFileChunkType.CAFStreamDescription
-F:AudioToolbox.AudioFileChunkType.CAFStrings
-F:AudioToolbox.AudioFileChunkType.CAFUMID
-F:AudioToolbox.AudioFileChunkType.CAFUUID
-F:AudioToolbox.AudioFileError.BadPropertySize
-F:AudioToolbox.AudioFileError.DoesNotAllow64BitDataSize
-F:AudioToolbox.AudioFileError.EndOfFile
-F:AudioToolbox.AudioFileError.FileNotFound
-F:AudioToolbox.AudioFileError.FileNotOpen
-F:AudioToolbox.AudioFileError.FilePosition
-F:AudioToolbox.AudioFileError.InvalidChunk
-F:AudioToolbox.AudioFileError.InvalidFile
-F:AudioToolbox.AudioFileError.InvalidPacketOffset
-F:AudioToolbox.AudioFileError.NotOptimized
-F:AudioToolbox.AudioFileError.OperationNotSupported
-F:AudioToolbox.AudioFileError.Permissions
-F:AudioToolbox.AudioFileError.Success
-F:AudioToolbox.AudioFileError.Unspecified
-F:AudioToolbox.AudioFileError.UnsupportedDataFormat
-F:AudioToolbox.AudioFileError.UnsupportedFileType
-F:AudioToolbox.AudioFileError.UnsupportedProperty
-F:AudioToolbox.AudioFileFlags.DontPageAlignAudioData
-F:AudioToolbox.AudioFileFlags.EraseFlags
-F:AudioToolbox.AudioFileLoopDirection.Backward
-F:AudioToolbox.AudioFileLoopDirection.Forward
-F:AudioToolbox.AudioFileLoopDirection.ForwardAndBackward
-F:AudioToolbox.AudioFileLoopDirection.NoLooping
-F:AudioToolbox.AudioFileMarker.Channel
-F:AudioToolbox.AudioFileMarker.FramePosition
-F:AudioToolbox.AudioFileMarker.MarkerID
-F:AudioToolbox.AudioFileMarker.Reserved
-F:AudioToolbox.AudioFileMarker.SmpteTime
-F:AudioToolbox.AudioFileMarker.Type
-F:AudioToolbox.AudioFileMarkerType.CAFEditDestinationBegin
-F:AudioToolbox.AudioFileMarkerType.CAFEditDestinationEnd
-F:AudioToolbox.AudioFileMarkerType.CAFEditSourceBegin
-F:AudioToolbox.AudioFileMarkerType.CAFEditSourceEnd
-F:AudioToolbox.AudioFileMarkerType.CAFIndex
-F:AudioToolbox.AudioFileMarkerType.CAFKeySignature
-F:AudioToolbox.AudioFileMarkerType.CAFProgramEnd
-F:AudioToolbox.AudioFileMarkerType.CAFProgramStart
-F:AudioToolbox.AudioFileMarkerType.CAFRegionEnd
-F:AudioToolbox.AudioFileMarkerType.CAFRegionStart
-F:AudioToolbox.AudioFileMarkerType.CAFRegionSyncPoint
-F:AudioToolbox.AudioFileMarkerType.CAFReleaseLoopEnd
-F:AudioToolbox.AudioFileMarkerType.CAFReleaseLoopStart
-F:AudioToolbox.AudioFileMarkerType.CAFSavedPlayPosition
-F:AudioToolbox.AudioFileMarkerType.CAFSelectionEnd
-F:AudioToolbox.AudioFileMarkerType.CAFSelectionStart
-F:AudioToolbox.AudioFileMarkerType.CAFSustainLoopEnd
-F:AudioToolbox.AudioFileMarkerType.CAFSustainLoopStart
-F:AudioToolbox.AudioFileMarkerType.CAFTempo
-F:AudioToolbox.AudioFileMarkerType.CAFTimeSignature
-F:AudioToolbox.AudioFileMarkerType.CAFTrackEnd
-F:AudioToolbox.AudioFileMarkerType.CAFTrackStart
-F:AudioToolbox.AudioFileMarkerType.Generic
-F:AudioToolbox.AudioFilePacketTableInfo.PrimingFrames
-F:AudioToolbox.AudioFilePacketTableInfo.RemainderFrames
-F:AudioToolbox.AudioFilePacketTableInfo.ValidFrames
-F:AudioToolbox.AudioFilePermission.Read
-F:AudioToolbox.AudioFilePermission.ReadWrite
-F:AudioToolbox.AudioFilePermission.Write
-F:AudioToolbox.AudioFileProperty.AlbumArtwork
-F:AudioToolbox.AudioFileProperty.AudioDataByteCount
-F:AudioToolbox.AudioFileProperty.AudioDataPacketCount
-F:AudioToolbox.AudioFileProperty.AudioTrackCount
-F:AudioToolbox.AudioFileProperty.AverageBytesPerPacket
-F:AudioToolbox.AudioFileProperty.BitRate
-F:AudioToolbox.AudioFileProperty.ByteToPacket
-F:AudioToolbox.AudioFileProperty.ChannelLayout
-F:AudioToolbox.AudioFileProperty.ChunkIDs
-F:AudioToolbox.AudioFileProperty.DataFormat
-F:AudioToolbox.AudioFileProperty.DataFormatName
-F:AudioToolbox.AudioFileProperty.DataOffset
-F:AudioToolbox.AudioFileProperty.DeferSizeUpdates
-F:AudioToolbox.AudioFileProperty.EstimatedDuration
-F:AudioToolbox.AudioFileProperty.FileFormat
-F:AudioToolbox.AudioFileProperty.FormatList
-F:AudioToolbox.AudioFileProperty.FrameToPacket
-F:AudioToolbox.AudioFileProperty.ID3Tag
-F:AudioToolbox.AudioFileProperty.InfoDictionary
-F:AudioToolbox.AudioFileProperty.IsOptimized
-F:AudioToolbox.AudioFileProperty.MagicCookieData
-F:AudioToolbox.AudioFileProperty.MarkerList
-F:AudioToolbox.AudioFileProperty.MaximumPacketSize
-F:AudioToolbox.AudioFileProperty.PacketSizeUpperBound
-F:AudioToolbox.AudioFileProperty.PacketTableInfo
-F:AudioToolbox.AudioFileProperty.PacketToByte
-F:AudioToolbox.AudioFileProperty.PacketToFrame
-F:AudioToolbox.AudioFileProperty.ReadyToProducePackets
-F:AudioToolbox.AudioFileProperty.RegionList
-F:AudioToolbox.AudioFileProperty.ReserveDuration
-F:AudioToolbox.AudioFileProperty.SourceBitDepth
-F:AudioToolbox.AudioFileProperty.UseAudioTrack
-F:AudioToolbox.AudioFileRegionFlags.LoopEnable
-F:AudioToolbox.AudioFileRegionFlags.PlayBackward
-F:AudioToolbox.AudioFileRegionFlags.PlayForward
-F:AudioToolbox.AudioFileSmpteTime.Frames
-F:AudioToolbox.AudioFileSmpteTime.Hours
-F:AudioToolbox.AudioFileSmpteTime.Minutes
-F:AudioToolbox.AudioFileSmpteTime.Seconds
-F:AudioToolbox.AudioFileSmpteTime.SubFrameSampleOffset
-F:AudioToolbox.AudioFileStream.PacketDecoded
-F:AudioToolbox.AudioFileStream.PropertyFound
-F:AudioToolbox.AudioFileStreamProperty.AudioDataByteCount
-F:AudioToolbox.AudioFileStreamProperty.AudioDataPacketCount
-F:AudioToolbox.AudioFileStreamProperty.AverageBytesPerPacket
-F:AudioToolbox.AudioFileStreamProperty.BitRate
-F:AudioToolbox.AudioFileStreamProperty.ByteToPacket
-F:AudioToolbox.AudioFileStreamProperty.ChannelLayout
-F:AudioToolbox.AudioFileStreamProperty.DataFormat
-F:AudioToolbox.AudioFileStreamProperty.DataOffset
-F:AudioToolbox.AudioFileStreamProperty.FileFormat
-F:AudioToolbox.AudioFileStreamProperty.FormatList
-F:AudioToolbox.AudioFileStreamProperty.FrameToPacket
-F:AudioToolbox.AudioFileStreamProperty.InfoDictionary
-F:AudioToolbox.AudioFileStreamProperty.MagicCookieData
-F:AudioToolbox.AudioFileStreamProperty.MaximumPacketSize
-F:AudioToolbox.AudioFileStreamProperty.PacketSizeUpperBound
-F:AudioToolbox.AudioFileStreamProperty.PacketTableInfo
-F:AudioToolbox.AudioFileStreamProperty.PacketToByte
-F:AudioToolbox.AudioFileStreamProperty.PacketToFrame
-F:AudioToolbox.AudioFileStreamProperty.ReadyToProducePackets
-F:AudioToolbox.AudioFileStreamPropertyFlag.CacheProperty
-F:AudioToolbox.AudioFileStreamPropertyFlag.PropertyIsCached
-F:AudioToolbox.AudioFileStreamStatus.BadPropertySize
-F:AudioToolbox.AudioFileStreamStatus.DataUnavailable
-F:AudioToolbox.AudioFileStreamStatus.DiscontinuityCantRecover
-F:AudioToolbox.AudioFileStreamStatus.IllegalOperation
-F:AudioToolbox.AudioFileStreamStatus.InvalidFile
-F:AudioToolbox.AudioFileStreamStatus.InvalidPacketOffset
-F:AudioToolbox.AudioFileStreamStatus.NotOptimized
-F:AudioToolbox.AudioFileStreamStatus.Ok
-F:AudioToolbox.AudioFileStreamStatus.UnspecifiedError
-F:AudioToolbox.AudioFileStreamStatus.UnsupportedDataFormat
-F:AudioToolbox.AudioFileStreamStatus.UnsupportedFileType
-F:AudioToolbox.AudioFileStreamStatus.UnsupportedProperty
-F:AudioToolbox.AudioFileStreamStatus.ValueUnknown
-F:AudioToolbox.AudioFileType.AAC_ADTS
-F:AudioToolbox.AudioFileType.AC3
-F:AudioToolbox.AudioFileType.AIFC
-F:AudioToolbox.AudioFileType.AIFF
-F:AudioToolbox.AudioFileType.AMR
-F:AudioToolbox.AudioFileType.CAF
-F:AudioToolbox.AudioFileType.FLAC
F:AudioToolbox.AudioFileType.LatmInLoas
-F:AudioToolbox.AudioFileType.M4A
-F:AudioToolbox.AudioFileType.M4B
-F:AudioToolbox.AudioFileType.MP1
-F:AudioToolbox.AudioFileType.MP2
-F:AudioToolbox.AudioFileType.MP3
-F:AudioToolbox.AudioFileType.MPEG4
-F:AudioToolbox.AudioFileType.Next
-F:AudioToolbox.AudioFileType.RF64
-F:AudioToolbox.AudioFileType.SoundDesigner2
-F:AudioToolbox.AudioFileType.ThreeGP
-F:AudioToolbox.AudioFileType.ThreeGP2
-F:AudioToolbox.AudioFileType.WAVE
-F:AudioToolbox.AudioFormat.AudioChannelLayoutTag
-F:AudioToolbox.AudioFormat.AudioStreamBasicDescription
-F:AudioToolbox.AudioFormatError.BadPropertySize
-F:AudioToolbox.AudioFormatError.BadSpecifierSize
-F:AudioToolbox.AudioFormatError.None
-F:AudioToolbox.AudioFormatError.UnknownFormat
-F:AudioToolbox.AudioFormatError.Unspecified
-F:AudioToolbox.AudioFormatError.UnsupportedDataFormat
-F:AudioToolbox.AudioFormatError.UnsupportedProperty
-F:AudioToolbox.AudioFormatFlags.AppleLossless16BitSourceData
-F:AudioToolbox.AudioFormatFlags.AppleLossless20BitSourceData
-F:AudioToolbox.AudioFormatFlags.AppleLossless24BitSourceData
-F:AudioToolbox.AudioFormatFlags.AppleLossless32BitSourceData
-F:AudioToolbox.AudioFormatFlags.CafIsFloat
-F:AudioToolbox.AudioFormatFlags.CafIsLittleEndian
-F:AudioToolbox.AudioFormatFlags.FlagsAreAllClear
-F:AudioToolbox.AudioFormatFlags.IsAlignedHigh
-F:AudioToolbox.AudioFormatFlags.IsBigEndian
-F:AudioToolbox.AudioFormatFlags.IsFloat
-F:AudioToolbox.AudioFormatFlags.IsNonInterleaved
-F:AudioToolbox.AudioFormatFlags.IsNonMixable
-F:AudioToolbox.AudioFormatFlags.IsPacked
-F:AudioToolbox.AudioFormatFlags.IsSignedInteger
-F:AudioToolbox.AudioFormatFlags.LinearPCMFlagsAreAllClear
-F:AudioToolbox.AudioFormatFlags.LinearPCMIsAlignedHigh
-F:AudioToolbox.AudioFormatFlags.LinearPCMIsBigEndian
-F:AudioToolbox.AudioFormatFlags.LinearPCMIsFloat
-F:AudioToolbox.AudioFormatFlags.LinearPCMIsNonInterleaved
-F:AudioToolbox.AudioFormatFlags.LinearPCMIsNonMixable
-F:AudioToolbox.AudioFormatFlags.LinearPCMIsPacked
-F:AudioToolbox.AudioFormatFlags.LinearPCMIsSignedInteger
-F:AudioToolbox.AudioFormatFlags.LinearPCMSampleFractionMask
-F:AudioToolbox.AudioFormatFlags.LinearPCMSampleFractionShift
-F:AudioToolbox.AudioFormatType.AC3
-F:AudioToolbox.AudioFormatType.AES3
-F:AudioToolbox.AudioFormatType.ALaw
-F:AudioToolbox.AudioFormatType.AMR
-F:AudioToolbox.AudioFormatType.AMRWideBand
-F:AudioToolbox.AudioFormatType.AppleIMA4
-F:AudioToolbox.AudioFormatType.AppleLossless
-F:AudioToolbox.AudioFormatType.Audible
-F:AudioToolbox.AudioFormatType.CAC3
-F:AudioToolbox.AudioFormatType.DVIIntelIMA
-F:AudioToolbox.AudioFormatType.Flac
-F:AudioToolbox.AudioFormatType.iLBC
F:AudioToolbox.AudioFormatType.LatmInLoas
-F:AudioToolbox.AudioFormatType.LinearPCM
-F:AudioToolbox.AudioFormatType.MACE3
-F:AudioToolbox.AudioFormatType.MACE6
-F:AudioToolbox.AudioFormatType.MicrosoftGSM
-F:AudioToolbox.AudioFormatType.MIDIStream
-F:AudioToolbox.AudioFormatType.MPEG4AAC
-F:AudioToolbox.AudioFormatType.MPEG4AAC_ELD
-F:AudioToolbox.AudioFormatType.MPEG4AAC_ELD_SBR
-F:AudioToolbox.AudioFormatType.MPEG4AAC_ELD_V2
-F:AudioToolbox.AudioFormatType.MPEG4AAC_HE
-F:AudioToolbox.AudioFormatType.MPEG4AAC_HE_V2
-F:AudioToolbox.AudioFormatType.MPEG4AAC_LD
-F:AudioToolbox.AudioFormatType.MPEG4AAC_Spatial
-F:AudioToolbox.AudioFormatType.MPEG4CELP
-F:AudioToolbox.AudioFormatType.MPEG4HVXC
-F:AudioToolbox.AudioFormatType.MPEG4TwinVQ
F:AudioToolbox.AudioFormatType.MpegD_Usac
-F:AudioToolbox.AudioFormatType.MPEGLayer1
-F:AudioToolbox.AudioFormatType.MPEGLayer2
-F:AudioToolbox.AudioFormatType.MPEGLayer3
-F:AudioToolbox.AudioFormatType.Opus
-F:AudioToolbox.AudioFormatType.ParameterValueStream
-F:AudioToolbox.AudioFormatType.QDesign
-F:AudioToolbox.AudioFormatType.QDesign2
-F:AudioToolbox.AudioFormatType.QUALCOMM
-F:AudioToolbox.AudioFormatType.TimeCode
-F:AudioToolbox.AudioFormatType.ULaw
F:AudioToolbox.AudioIndependentPacketTranslation.IndependentlyDecodablePacket
F:AudioToolbox.AudioIndependentPacketTranslation.Packet
F:AudioToolbox.AudioPacketDependencyInfoTranslation.NumberPrerollPackets
@@ -3911,216 +3391,10 @@ F:AudioToolbox.AudioPacketRangeByteCountTranslation.Packet
F:AudioToolbox.AudioPacketRangeByteCountTranslation.PacketCount
F:AudioToolbox.AudioPacketRollDistanceTranslation.Packet
F:AudioToolbox.AudioPacketRollDistanceTranslation.RollDistance
-F:AudioToolbox.AudioQueue.gch
-F:AudioToolbox.AudioQueue.handle
-F:AudioToolbox.AudioQueueBuffer.AudioData
-F:AudioToolbox.AudioQueueBuffer.AudioDataBytesCapacity
-F:AudioToolbox.AudioQueueBuffer.AudioDataByteSize
-F:AudioToolbox.AudioQueueBuffer.IntPtrPacketDescriptions
-F:AudioToolbox.AudioQueueBuffer.PacketDescriptionCapacity
-F:AudioToolbox.AudioQueueBuffer.PacketDescriptionCount
-F:AudioToolbox.AudioQueueBuffer.UserData
-F:AudioToolbox.AudioQueueDeviceProperty.NumberChannels
-F:AudioToolbox.AudioQueueDeviceProperty.SampleRate
-F:AudioToolbox.AudioQueueHardwareCodecPolicy.Default
-F:AudioToolbox.AudioQueueHardwareCodecPolicy.PreferHardware
-F:AudioToolbox.AudioQueueHardwareCodecPolicy.PreferSoftware
-F:AudioToolbox.AudioQueueHardwareCodecPolicy.UseHardwareOnly
-F:AudioToolbox.AudioQueueHardwareCodecPolicy.UseSoftwareOnly
-F:AudioToolbox.AudioQueueLevelMeterState.AveragePower
-F:AudioToolbox.AudioQueueLevelMeterState.PeakPower
-F:AudioToolbox.AudioQueueParameter.Pan
-F:AudioToolbox.AudioQueueParameter.Pitch
-F:AudioToolbox.AudioQueueParameter.PlayRate
-F:AudioToolbox.AudioQueueParameter.Volume
-F:AudioToolbox.AudioQueueParameter.VolumeRampTime
-F:AudioToolbox.AudioQueueParameterEvent.ID
-F:AudioToolbox.AudioQueueParameterEvent.Parameter
-F:AudioToolbox.AudioQueueParameterEvent.Value
-F:AudioToolbox.AudioQueueProcessingTapFlags.EndOfStream
-F:AudioToolbox.AudioQueueProcessingTapFlags.PostEffects
-F:AudioToolbox.AudioQueueProcessingTapFlags.PreEffects
-F:AudioToolbox.AudioQueueProcessingTapFlags.Siphon
-F:AudioToolbox.AudioQueueProcessingTapFlags.StartOfStream
-F:AudioToolbox.AudioQueueProperty.ChannelAssignments
-F:AudioToolbox.AudioQueueProperty.ChannelLayout
-F:AudioToolbox.AudioQueueProperty.ConverterError
-F:AudioToolbox.AudioQueueProperty.CurrentDevice
-F:AudioToolbox.AudioQueueProperty.CurrentLevelMeter
-F:AudioToolbox.AudioQueueProperty.CurrentLevelMeterDB
-F:AudioToolbox.AudioQueueProperty.DecodeBufferSizeFrames
-F:AudioToolbox.AudioQueueProperty.DeviceNumberChannels
-F:AudioToolbox.AudioQueueProperty.DeviceSampleRate
-F:AudioToolbox.AudioQueueProperty.EnableLevelMetering
-F:AudioToolbox.AudioQueueProperty.EnableTimePitch
-F:AudioToolbox.AudioQueueProperty.HardwareCodecPolicy
-F:AudioToolbox.AudioQueueProperty.IsRunning
-F:AudioToolbox.AudioQueueProperty.MagicCookie
-F:AudioToolbox.AudioQueueProperty.MaximumOutputPacketSize
-F:AudioToolbox.AudioQueueProperty.StreamDescription
-F:AudioToolbox.AudioQueueProperty.TimePitchAlgorithm
-F:AudioToolbox.AudioQueueProperty.TimePitchBypass
-F:AudioToolbox.AudioQueueStatus.BufferEmpty
-F:AudioToolbox.AudioQueueStatus.BufferEnqueuedTwice
-F:AudioToolbox.AudioQueueStatus.BufferInQueue
-F:AudioToolbox.AudioQueueStatus.CannotStart
-F:AudioToolbox.AudioQueueStatus.CannotStartYet
-F:AudioToolbox.AudioQueueStatus.CodecNotFound
-F:AudioToolbox.AudioQueueStatus.DataFormatError
-F:AudioToolbox.AudioQueueStatus.DisposalPending
-F:AudioToolbox.AudioQueueStatus.EnqueueDuringReset
-F:AudioToolbox.AudioQueueStatus.GeneralParamError
-F:AudioToolbox.AudioQueueStatus.InvalidBuffer
-F:AudioToolbox.AudioQueueStatus.InvalidCodecAccess
-F:AudioToolbox.AudioQueueStatus.InvalidDevice
-F:AudioToolbox.AudioQueueStatus.InvalidOfflineMode
-F:AudioToolbox.AudioQueueStatus.InvalidParameter
-F:AudioToolbox.AudioQueueStatus.InvalidProperty
-F:AudioToolbox.AudioQueueStatus.InvalidPropertySize
-F:AudioToolbox.AudioQueueStatus.InvalidPropertyValue
-F:AudioToolbox.AudioQueueStatus.InvalidQueueType
-F:AudioToolbox.AudioQueueStatus.InvalidRunState
-F:AudioToolbox.AudioQueueStatus.InvalidTapContext
-F:AudioToolbox.AudioQueueStatus.InvalidTapType
-F:AudioToolbox.AudioQueueStatus.Ok
-F:AudioToolbox.AudioQueueStatus.Permissions
-F:AudioToolbox.AudioQueueStatus.PrimeTimedOut
-F:AudioToolbox.AudioQueueStatus.QueueInvalidated
-F:AudioToolbox.AudioQueueStatus.QueueStopped
-F:AudioToolbox.AudioQueueStatus.RecordUnderrun
-F:AudioToolbox.AudioQueueStatus.TooManyTaps
-F:AudioToolbox.AudioQueueStatus.UnsupportedProperty
-F:AudioToolbox.AudioQueueTimeline.queueHandle
-F:AudioToolbox.AudioQueueTimeline.timelineHandle
-F:AudioToolbox.AudioQueueTimePitchAlgorithm.LowQualityZeroLatency
-F:AudioToolbox.AudioQueueTimePitchAlgorithm.Spectral
-F:AudioToolbox.AudioQueueTimePitchAlgorithm.TimeDomain
-F:AudioToolbox.AudioQueueTimePitchAlgorithm.Varispeed
-F:AudioToolbox.AudioServicesError.BadPropertySize
-F:AudioToolbox.AudioServicesError.BadSpecifierSizeError
-F:AudioToolbox.AudioServicesError.None
-F:AudioToolbox.AudioServicesError.SystemSoundClientTimedOutError
-F:AudioToolbox.AudioServicesError.SystemSoundExceededMaximumDurationError
-F:AudioToolbox.AudioServicesError.SystemSoundUnspecifiedError
-F:AudioToolbox.AudioServicesError.UnsupportedProperty
-F:AudioToolbox.AudioSessionActiveFlags.NotifyOthersOnDeactivation
-F:AudioToolbox.AudioSessionCategory.AmbientSound
-F:AudioToolbox.AudioSessionCategory.AudioProcessing
-F:AudioToolbox.AudioSessionCategory.MediaPlayback
-F:AudioToolbox.AudioSessionCategory.PlayAndRecord
-F:AudioToolbox.AudioSessionCategory.RecordAudio
-F:AudioToolbox.AudioSessionCategory.SoloAmbientSound
-F:AudioToolbox.AudioSessionErrors.AlreadyInitialized
-F:AudioToolbox.AudioSessionErrors.BadPropertySizeError
-F:AudioToolbox.AudioSessionErrors.IncompatibleCategory
-F:AudioToolbox.AudioSessionErrors.InitializationError
-F:AudioToolbox.AudioSessionErrors.NoCategorySet
-F:AudioToolbox.AudioSessionErrors.NoHardwareError
-F:AudioToolbox.AudioSessionErrors.None
-F:AudioToolbox.AudioSessionErrors.NotActiveError
-F:AudioToolbox.AudioSessionErrors.NotInitialized
-F:AudioToolbox.AudioSessionErrors.UnspecifiedError
-F:AudioToolbox.AudioSessionErrors.UnsupportedPropertyError
-F:AudioToolbox.AudioSessionInputRouteKind.BluetoothHFP
-F:AudioToolbox.AudioSessionInputRouteKind.BuiltInMic
-F:AudioToolbox.AudioSessionInputRouteKind.HeadsetMic
-F:AudioToolbox.AudioSessionInputRouteKind.LineIn
-F:AudioToolbox.AudioSessionInputRouteKind.None
-F:AudioToolbox.AudioSessionInputRouteKind.USBAudio
-F:AudioToolbox.AudioSessionInterruptionState.Begin
-F:AudioToolbox.AudioSessionInterruptionState.End
-F:AudioToolbox.AudioSessionInterruptionType.ShouldNotResume
-F:AudioToolbox.AudioSessionInterruptionType.ShouldResume
-F:AudioToolbox.AudioSessionMode.Default
-F:AudioToolbox.AudioSessionMode.GameChat
-F:AudioToolbox.AudioSessionMode.Measurement
-F:AudioToolbox.AudioSessionMode.VideoRecording
-F:AudioToolbox.AudioSessionMode.VoiceChat
-F:AudioToolbox.AudioSessionOutputRouteKind.AirPlay
-F:AudioToolbox.AudioSessionOutputRouteKind.BluetoothA2DP
-F:AudioToolbox.AudioSessionOutputRouteKind.BluetoothHFP
-F:AudioToolbox.AudioSessionOutputRouteKind.BuiltInReceiver
-F:AudioToolbox.AudioSessionOutputRouteKind.BuiltInSpeaker
-F:AudioToolbox.AudioSessionOutputRouteKind.HDMI
-F:AudioToolbox.AudioSessionOutputRouteKind.Headphones
-F:AudioToolbox.AudioSessionOutputRouteKind.LineOut
-F:AudioToolbox.AudioSessionOutputRouteKind.None
-F:AudioToolbox.AudioSessionOutputRouteKind.USBAudio
-F:AudioToolbox.AudioSessionProperty.AudioCategory
-F:AudioToolbox.AudioSessionProperty.AudioInputAvailable
-F:AudioToolbox.AudioSessionProperty.AudioRoute
-F:AudioToolbox.AudioSessionProperty.AudioRouteChange
-F:AudioToolbox.AudioSessionProperty.AudioRouteDescription
-F:AudioToolbox.AudioSessionProperty.CurrentHardwareInputLatency
-F:AudioToolbox.AudioSessionProperty.CurrentHardwareInputNumberChannels
-F:AudioToolbox.AudioSessionProperty.CurrentHardwareIOBufferDuration
-F:AudioToolbox.AudioSessionProperty.CurrentHardwareOutputLatency
-F:AudioToolbox.AudioSessionProperty.CurrentHardwareOutputNumberChannels
-F:AudioToolbox.AudioSessionProperty.CurrentHardwareOutputVolume
-F:AudioToolbox.AudioSessionProperty.CurrentHardwareSampleRate
-F:AudioToolbox.AudioSessionProperty.InputGainAvailable
-F:AudioToolbox.AudioSessionProperty.InputGainScalar
-F:AudioToolbox.AudioSessionProperty.InputSource
-F:AudioToolbox.AudioSessionProperty.InputSources
-F:AudioToolbox.AudioSessionProperty.InterruptionType
-F:AudioToolbox.AudioSessionProperty.Mode
-F:AudioToolbox.AudioSessionProperty.OtherAudioIsPlaying
-F:AudioToolbox.AudioSessionProperty.OtherMixableAudioShouldDuck
-F:AudioToolbox.AudioSessionProperty.OutputDestination
-F:AudioToolbox.AudioSessionProperty.OutputDestinations
-F:AudioToolbox.AudioSessionProperty.OverrideAudioRoute
-F:AudioToolbox.AudioSessionProperty.OverrideCategoryDefaultToSpeaker
-F:AudioToolbox.AudioSessionProperty.OverrideCategoryEnableBluetoothInput
-F:AudioToolbox.AudioSessionProperty.OverrideCategoryMixWithOthers
-F:AudioToolbox.AudioSessionProperty.PreferredHardwareIOBufferDuration
-F:AudioToolbox.AudioSessionProperty.PreferredHardwareSampleRate
-F:AudioToolbox.AudioSessionProperty.ServerDied
-F:AudioToolbox.AudioSessionRouteChangeReason.CategoryChange
-F:AudioToolbox.AudioSessionRouteChangeReason.NewDeviceAvailable
-F:AudioToolbox.AudioSessionRouteChangeReason.NoSuitableRouteForCategory
-F:AudioToolbox.AudioSessionRouteChangeReason.OldDeviceUnavailable
-F:AudioToolbox.AudioSessionRouteChangeReason.Override
-F:AudioToolbox.AudioSessionRouteChangeReason.RouteConfigurationChange
-F:AudioToolbox.AudioSessionRouteChangeReason.Unknown
-F:AudioToolbox.AudioSessionRouteChangeReason.WakeFromSleep
-F:AudioToolbox.AudioSessionRoutingOverride.None
-F:AudioToolbox.AudioSessionRoutingOverride.Speaker
F:AudioToolbox.AudioSettingsFlags.ExpertParameter
F:AudioToolbox.AudioSettingsFlags.InvisibleParameter
F:AudioToolbox.AudioSettingsFlags.MetaParameter
F:AudioToolbox.AudioSettingsFlags.UserInterfaceParameter
-F:AudioToolbox.AudioStreamBasicDescription.AudioFormatFlagsAudioUnitCanonical
-F:AudioToolbox.AudioStreamBasicDescription.AudioFormatFlagsAudioUnitNativeFloat
-F:AudioToolbox.AudioStreamBasicDescription.AudioFormatFlagsNativeFloat
-F:AudioToolbox.AudioStreamBasicDescription.AudioStreamAnyRate
-F:AudioToolbox.AudioStreamBasicDescription.BitsPerChannel
-F:AudioToolbox.AudioStreamBasicDescription.BytesPerFrame
-F:AudioToolbox.AudioStreamBasicDescription.BytesPerPacket
-F:AudioToolbox.AudioStreamBasicDescription.ChannelsPerFrame
-F:AudioToolbox.AudioStreamBasicDescription.Format
-F:AudioToolbox.AudioStreamBasicDescription.FormatFlags
-F:AudioToolbox.AudioStreamBasicDescription.FramesPerPacket
-F:AudioToolbox.AudioStreamBasicDescription.Reserved
-F:AudioToolbox.AudioStreamBasicDescription.SampleRate
-F:AudioToolbox.AudioStreamPacketDescription.DataByteSize
-F:AudioToolbox.AudioStreamPacketDescription.StartOffset
-F:AudioToolbox.AudioStreamPacketDescription.VariableFramesInPacket
-F:AudioToolbox.AudioTimeStamp.AtsFlags.HostTimeValid
-F:AudioToolbox.AudioTimeStamp.AtsFlags.NothingValid
-F:AudioToolbox.AudioTimeStamp.AtsFlags.RateScalarValid
-F:AudioToolbox.AudioTimeStamp.AtsFlags.SampleHostTimeValid
-F:AudioToolbox.AudioTimeStamp.AtsFlags.SampleTimeValid
-F:AudioToolbox.AudioTimeStamp.AtsFlags.SmpteTimeValid
-F:AudioToolbox.AudioTimeStamp.AtsFlags.WordClockTimeValid
-F:AudioToolbox.AudioTimeStamp.Flags
-F:AudioToolbox.AudioTimeStamp.HostTime
-F:AudioToolbox.AudioTimeStamp.RateScalar
-F:AudioToolbox.AudioTimeStamp.Reserved
-F:AudioToolbox.AudioTimeStamp.SampleTime
-F:AudioToolbox.AudioTimeStamp.SMPTETime
-F:AudioToolbox.AudioTimeStamp.WordClockTime
-F:AudioToolbox.AudioValueRange.Maximum
-F:AudioToolbox.AudioValueRange.Minimum
F:AudioToolbox.AUSpatialMixerOutputType.BuiltInSpeakers
F:AudioToolbox.AUSpatialMixerOutputType.ExternalSpeakers
F:AudioToolbox.AUSpatialMixerOutputType.Headphones
@@ -4137,705 +3411,86 @@ F:AudioToolbox.AUVoiceIOOtherAudioDuckingLevel.Default
F:AudioToolbox.AUVoiceIOOtherAudioDuckingLevel.Max
F:AudioToolbox.AUVoiceIOOtherAudioDuckingLevel.Mid
F:AudioToolbox.AUVoiceIOOtherAudioDuckingLevel.Min
-F:AudioToolbox.CABarBeatTime.Bar
-F:AudioToolbox.CABarBeatTime.Beat
-F:AudioToolbox.CABarBeatTime.Reserved
-F:AudioToolbox.CABarBeatTime.Subbeat
-F:AudioToolbox.CABarBeatTime.SubbeatDivisor
-F:AudioToolbox.ExtendedNoteOnEvent.DeviceGroupID
-F:AudioToolbox.ExtendedNoteOnEvent.Duration
-F:AudioToolbox.ExtendedNoteOnEvent.InstrumentID
-F:AudioToolbox.ExtendedNoteOnEvent.Pitch
-F:AudioToolbox.ExtendedNoteOnEvent.Velocity
-F:AudioToolbox.InstrumentInfo.LSBKey
-F:AudioToolbox.InstrumentInfo.MSBKey
-F:AudioToolbox.InstrumentInfo.NameKey
-F:AudioToolbox.InstrumentInfo.ProgramKey
-F:AudioToolbox.MidiChannelMessage.Data1
-F:AudioToolbox.MidiChannelMessage.Data2
-F:AudioToolbox.MidiChannelMessage.Reserved
-F:AudioToolbox.MidiChannelMessage.Status
F:AudioToolbox.MidiData.buffer
F:AudioToolbox.MidiData.data
F:AudioToolbox.MidiData.len
F:AudioToolbox.MidiData.start
-F:AudioToolbox.MidiMetaEvent.MetaEventType
-F:AudioToolbox.MidiNoteMessage.Channel
-F:AudioToolbox.MidiNoteMessage.Duration
-F:AudioToolbox.MidiNoteMessage.Note
-F:AudioToolbox.MidiNoteMessage.ReleaseVelocity
-F:AudioToolbox.MidiNoteMessage.Velocity
-F:AudioToolbox.MPEG4ObjectID.AacLc
-F:AudioToolbox.MPEG4ObjectID.AacLtp
-F:AudioToolbox.MPEG4ObjectID.AacMain
-F:AudioToolbox.MPEG4ObjectID.AacSbr
-F:AudioToolbox.MPEG4ObjectID.AacScalable
-F:AudioToolbox.MPEG4ObjectID.AacSsr
-F:AudioToolbox.MPEG4ObjectID.Celp
-F:AudioToolbox.MPEG4ObjectID.Hvxc
-F:AudioToolbox.MPEG4ObjectID.TwinVq
-F:AudioToolbox.MusicEventType.AUPreset
-F:AudioToolbox.MusicEventType.ExtendedNote
-F:AudioToolbox.MusicEventType.ExtendedTempo
-F:AudioToolbox.MusicEventType.Meta
-F:AudioToolbox.MusicEventType.MidiChannelMessage
-F:AudioToolbox.MusicEventType.MidiNoteMessage
-F:AudioToolbox.MusicEventType.MidiRawData
-F:AudioToolbox.MusicEventType.Null
-F:AudioToolbox.MusicEventType.Parameter
-F:AudioToolbox.MusicEventType.User
-F:AudioToolbox.MusicPlayerStatus.CannotDoInCurrentContext
-F:AudioToolbox.MusicPlayerStatus.EndOfTrack
-F:AudioToolbox.MusicPlayerStatus.IllegalTrackDestination
-F:AudioToolbox.MusicPlayerStatus.InvalidEventType
-F:AudioToolbox.MusicPlayerStatus.InvalidPlayerState
-F:AudioToolbox.MusicPlayerStatus.InvalidSequenceType
-F:AudioToolbox.MusicPlayerStatus.NoSequence
-F:AudioToolbox.MusicPlayerStatus.NoTrackDestination
-F:AudioToolbox.MusicPlayerStatus.StartOfTrack
-F:AudioToolbox.MusicPlayerStatus.Success
-F:AudioToolbox.MusicPlayerStatus.TrackIndexError
-F:AudioToolbox.MusicPlayerStatus.TrackNotFound
-F:AudioToolbox.MusicSequenceFileFlags.Default
-F:AudioToolbox.MusicSequenceFileFlags.EraseFile
-F:AudioToolbox.MusicSequenceFileTypeID.Any
-F:AudioToolbox.MusicSequenceFileTypeID.iMelody
-F:AudioToolbox.MusicSequenceFileTypeID.Midi
-F:AudioToolbox.MusicSequenceLoadFlags.ChannelsToTracks
-F:AudioToolbox.MusicSequenceLoadFlags.PreserveTracks
-F:AudioToolbox.MusicSequenceType.Beats
-F:AudioToolbox.MusicSequenceType.Samples
-F:AudioToolbox.MusicSequenceType.Seconds
-F:AudioToolbox.PanningMode.SoundField
-F:AudioToolbox.PanningMode.VectorBasedPanning
-F:AudioToolbox.SmpteTime.Counter
-F:AudioToolbox.SmpteTime.Flags
-F:AudioToolbox.SmpteTime.Frames
-F:AudioToolbox.SmpteTime.Hours
-F:AudioToolbox.SmpteTime.Minutes
-F:AudioToolbox.SmpteTime.Seconds
-F:AudioToolbox.SmpteTime.SubframeDivisor
-F:AudioToolbox.SmpteTime.Subframes
-F:AudioToolbox.SmpteTime.Type
-F:AudioToolbox.SmpteTimeFlags.TimeRunning
-F:AudioToolbox.SmpteTimeFlags.TimeValid
-F:AudioToolbox.SmpteTimeFlags.Unknown
-F:AudioToolbox.SmpteTimeType.Type2398
-F:AudioToolbox.SmpteTimeType.Type24
-F:AudioToolbox.SmpteTimeType.Type25
-F:AudioToolbox.SmpteTimeType.Type2997
-F:AudioToolbox.SmpteTimeType.Type2997Drop
-F:AudioToolbox.SmpteTimeType.Type30
-F:AudioToolbox.SmpteTimeType.Type30Drop
-F:AudioToolbox.SmpteTimeType.Type50
-F:AudioToolbox.SmpteTimeType.Type5994
-F:AudioToolbox.SmpteTimeType.Type5994Drop
-F:AudioToolbox.SmpteTimeType.Type60
-F:AudioToolbox.SmpteTimeType.Type60Drop
-F:AudioToolbox.SystemSound.Vibrate
-F:AudioUnit.AU3DMixerAttenuationCurve.Exponential
-F:AudioUnit.AU3DMixerAttenuationCurve.Inverse
-F:AudioUnit.AU3DMixerAttenuationCurve.Linear
-F:AudioUnit.AU3DMixerAttenuationCurve.Power
-F:AudioUnit.AU3DMixerRenderingFlags.ConstantReverbBlend
-F:AudioUnit.AU3DMixerRenderingFlags.DistanceAttenuation
-F:AudioUnit.AU3DMixerRenderingFlags.DistanceDiffusion
-F:AudioUnit.AU3DMixerRenderingFlags.DistanceFilter
-F:AudioUnit.AU3DMixerRenderingFlags.DopplerShift
-F:AudioUnit.AU3DMixerRenderingFlags.InterAuralDelay
-F:AudioUnit.AU3DMixerRenderingFlags.LinearDistanceAttenuation
-F:AudioUnit.AUAudioUnitBusType.Input
-F:AudioUnit.AUAudioUnitBusType.Output
F:AudioUnit.AudioAggregateDriftCompensation.HighQuality
F:AudioUnit.AudioAggregateDriftCompensation.LowQuality
F:AudioUnit.AudioAggregateDriftCompensation.MaxQuality
F:AudioUnit.AudioAggregateDriftCompensation.MediumQuality
F:AudioUnit.AudioAggregateDriftCompensation.MinQuality
-F:AudioUnit.AudioCodecManufacturer.AppleHardware
-F:AudioUnit.AudioCodecManufacturer.AppleSoftware
-F:AudioUnit.AudioComponentConfigurationInfo.ValidationResult
-F:AudioUnit.AudioComponentDescription.ComponentFlags
-F:AudioUnit.AudioComponentDescription.ComponentFlagsMask
-F:AudioUnit.AudioComponentDescription.ComponentManufacturer
-F:AudioUnit.AudioComponentDescription.ComponentSubType
-F:AudioUnit.AudioComponentDescription.ComponentType
-F:AudioUnit.AudioComponentFlag.CanLoadInProcess
-F:AudioUnit.AudioComponentFlag.IsV3AudioUnit
-F:AudioUnit.AudioComponentFlag.RequiresAsyncInstantiation
-F:AudioUnit.AudioComponentFlag.SandboxSafe
-F:AudioUnit.AudioComponentFlag.Unsearchable
-F:AudioUnit.AudioComponentInstantiationOptions.InProcess
F:AudioUnit.AudioComponentInstantiationOptions.LoadedRemotely
-F:AudioUnit.AudioComponentInstantiationOptions.OutOfProcess
-F:AudioUnit.AudioComponentManufacturerType.Apple
-F:AudioUnit.AudioComponentStatus.DuplicateDescription
-F:AudioUnit.AudioComponentStatus.InitializationTimedOut
-F:AudioUnit.AudioComponentStatus.InstanceInvalidated
F:AudioUnit.AudioComponentStatus.InstanceTimedOut
-F:AudioUnit.AudioComponentStatus.InvalidFormat
-F:AudioUnit.AudioComponentStatus.NotPermitted
-F:AudioUnit.AudioComponentStatus.OK
-F:AudioUnit.AudioComponentStatus.RenderTimeout
-F:AudioUnit.AudioComponentStatus.TooManyInstances
-F:AudioUnit.AudioComponentStatus.UnsupportedType
-F:AudioUnit.AudioComponentType.Effect
-F:AudioUnit.AudioComponentType.FormatConverter
-F:AudioUnit.AudioComponentType.Generator
-F:AudioUnit.AudioComponentType.MIDIProcessor
-F:AudioUnit.AudioComponentType.Mixer
-F:AudioUnit.AudioComponentType.MusicDevice
-F:AudioUnit.AudioComponentType.MusicEffect
-F:AudioUnit.AudioComponentType.OfflineEffect
-F:AudioUnit.AudioComponentType.Output
-F:AudioUnit.AudioComponentType.Panner
-F:AudioUnit.AudioComponentType.RemoteEffect
-F:AudioUnit.AudioComponentType.RemoteGenerator
-F:AudioUnit.AudioComponentType.RemoteInstrument
-F:AudioUnit.AudioComponentType.RemoteMusicEffect
F:AudioUnit.AudioComponentType.SpeechSynthesize
-F:AudioUnit.AudioComponentValidationParameter.ForceValidation
F:AudioUnit.AudioComponentValidationParameter.LoadOutOfProcess
-F:AudioUnit.AudioComponentValidationParameter.TimeOut
-F:AudioUnit.AudioComponentValidationResult.Failed
-F:AudioUnit.AudioComponentValidationResult.Passed
-F:AudioUnit.AudioComponentValidationResult.TimedOut
-F:AudioUnit.AudioComponentValidationResult.UnauthorizedErrorInit
-F:AudioUnit.AudioComponentValidationResult.UnauthorizedErrorOpen
-F:AudioUnit.AudioComponentValidationResult.Unknown
F:AudioUnit.AudioObjectPropertyElement.Main
-F:AudioUnit.AudioObjectPropertyScope.Global
-F:AudioUnit.AudioObjectPropertyScope.Input
-F:AudioUnit.AudioObjectPropertyScope.Output
-F:AudioUnit.AudioObjectPropertyScope.PlayThrough
F:AudioUnit.AudioObjectPropertySelector.ActualSampleRate
-F:AudioUnit.AudioObjectPropertySelector.BoxList
F:AudioUnit.AudioObjectPropertySelector.ClockDevice
F:AudioUnit.AudioObjectPropertySelector.ClockDeviceList
-F:AudioUnit.AudioObjectPropertySelector.DefaultInputDevice
-F:AudioUnit.AudioObjectPropertySelector.DefaultOutputDevice
-F:AudioUnit.AudioObjectPropertySelector.DefaultSystemOutputDevice
-F:AudioUnit.AudioObjectPropertySelector.Devices
-F:AudioUnit.AudioObjectPropertySelector.HogModeIsAllowed
F:AudioUnit.AudioObjectPropertySelector.InputMute
F:AudioUnit.AudioObjectPropertySelector.IOThreadOSWorkgroup
-F:AudioUnit.AudioObjectPropertySelector.IsInitingOrExiting
-F:AudioUnit.AudioObjectPropertySelector.MixStereoToMono
-F:AudioUnit.AudioObjectPropertySelector.PlugInList
-F:AudioUnit.AudioObjectPropertySelector.PowerHint
-F:AudioUnit.AudioObjectPropertySelector.ProcessIsAudible
F:AudioUnit.AudioObjectPropertySelector.ProcessIsMain
F:AudioUnit.AudioObjectPropertySelector.ProcessMute
-F:AudioUnit.AudioObjectPropertySelector.PropertyDevices
-F:AudioUnit.AudioObjectPropertySelector.ServiceRestarted
-F:AudioUnit.AudioObjectPropertySelector.SleepingIsAllowed
-F:AudioUnit.AudioObjectPropertySelector.TranslateBundleIDToPlugIn
-F:AudioUnit.AudioObjectPropertySelector.TranslateBundleIDToTransportManager
-F:AudioUnit.AudioObjectPropertySelector.TranslateUIDToBox
F:AudioUnit.AudioObjectPropertySelector.TranslateUidToClockDevice
-F:AudioUnit.AudioObjectPropertySelector.TranslateUIDToDevice
-F:AudioUnit.AudioObjectPropertySelector.TransportManagerList
-F:AudioUnit.AudioObjectPropertySelector.UnloadingIsAllowed
-F:AudioUnit.AudioObjectPropertySelector.UserIDChanged
-F:AudioUnit.AudioObjectPropertySelector.UserSessionIsActiveOrHeadless
-F:AudioUnit.AudioTypeConverter.AU
-F:AudioUnit.AudioTypeConverter.AUiPodTime
-F:AudioUnit.AudioTypeConverter.AUiPodTimeOther
-F:AudioUnit.AudioTypeConverter.DeferredRenderer
-F:AudioUnit.AudioTypeConverter.Merger
-F:AudioUnit.AudioTypeConverter.MultiSplitter
-F:AudioUnit.AudioTypeConverter.NewTimePitch
-F:AudioUnit.AudioTypeConverter.RoundTripAAC
-F:AudioUnit.AudioTypeConverter.Splitter
F:AudioUnit.AudioTypeConverter.TimePitch
-F:AudioUnit.AudioTypeConverter.Varispeed
F:AudioUnit.AudioTypeEffect.AUFilter
-F:AudioUnit.AudioTypeEffect.AUiPodEQ
-F:AudioUnit.AudioTypeEffect.BandPassFilter
-F:AudioUnit.AudioTypeEffect.DCFilter
-F:AudioUnit.AudioTypeEffect.Delay
-F:AudioUnit.AudioTypeEffect.Distortion
-F:AudioUnit.AudioTypeEffect.DynamicsProcessor
F:AudioUnit.AudioTypeEffect.GraphicEQ
-F:AudioUnit.AudioTypeEffect.HighPassFilter
-F:AudioUnit.AudioTypeEffect.HighShelfFilter
-F:AudioUnit.AudioTypeEffect.LowPassFilter
-F:AudioUnit.AudioTypeEffect.LowShelfFilter
F:AudioUnit.AudioTypeEffect.MatrixReverb
F:AudioUnit.AudioTypeEffect.MultiBandCompressor
-F:AudioUnit.AudioTypeEffect.NBandEq
F:AudioUnit.AudioTypeEffect.NetSend
-F:AudioUnit.AudioTypeEffect.ParametricEQ
-F:AudioUnit.AudioTypeEffect.PeakLimiter
F:AudioUnit.AudioTypeEffect.Pitch
-F:AudioUnit.AudioTypeEffect.Reverb2
F:AudioUnit.AudioTypeEffect.RogerBeep
-F:AudioUnit.AudioTypeEffect.SampleDelay
-F:AudioUnit.AudioTypeGenerator.AudioFilePlayer
F:AudioUnit.AudioTypeGenerator.NetReceive
-F:AudioUnit.AudioTypeGenerator.ScheduledSoundPlayer
-F:AudioUnit.AudioTypeMixer.Embedded3D
-F:AudioUnit.AudioTypeMixer.Matrix
-F:AudioUnit.AudioTypeMixer.MultiChannel
-F:AudioUnit.AudioTypeMixer.Spacial
F:AudioUnit.AudioTypeMixer.Stereo
F:AudioUnit.AudioTypeMixer.ThreeD
F:AudioUnit.AudioTypeMusicDevice.DlsSynth
-F:AudioUnit.AudioTypeMusicDevice.MidiSynth
-F:AudioUnit.AudioTypeMusicDevice.Sampler
F:AudioUnit.AudioTypeOutput.Default
-F:AudioUnit.AudioTypeOutput.Generic
F:AudioUnit.AudioTypeOutput.HAL
-F:AudioUnit.AudioTypeOutput.Remote
F:AudioUnit.AudioTypeOutput.System
-F:AudioUnit.AudioTypeOutput.VoiceProcessingIO
F:AudioUnit.AudioTypePanner.rHRTF
F:AudioUnit.AudioTypePanner.SoundField
F:AudioUnit.AudioTypePanner.SphericalHead
F:AudioUnit.AudioTypePanner.Vector
-F:AudioUnit.AudioUnitBusType.Input
-F:AudioUnit.AudioUnitBusType.Output
-F:AudioUnit.AudioUnitClumpID.System
-F:AudioUnit.AudioUnitConfigurationInfo.BusCountWritable
-F:AudioUnit.AudioUnitConfigurationInfo.ChannelConfigurations
-F:AudioUnit.AudioUnitConfigurationInfo.HasCustomView
-F:AudioUnit.AudioUnitConfigurationInfo.IconUrl
-F:AudioUnit.AudioUnitConfigurationInfo.InitialInputs
-F:AudioUnit.AudioUnitConfigurationInfo.SupportedChannelLayoutTags
F:AudioUnit.AudioUnitEventType.BeginParameterChangeGesture
F:AudioUnit.AudioUnitEventType.EndParameterChangeGesture
F:AudioUnit.AudioUnitEventType.ParameterValueChange
F:AudioUnit.AudioUnitEventType.PropertyChange
-F:AudioUnit.AudioUnitParameterEvent.Element
-F:AudioUnit.AudioUnitParameterEvent.EventType
-F:AudioUnit.AudioUnitParameterEvent.EventValues
-F:AudioUnit.AudioUnitParameterEvent.EventValuesStruct.Immediate
-F:AudioUnit.AudioUnitParameterEvent.EventValuesStruct.ImmediateStruct.BufferOffset
-F:AudioUnit.AudioUnitParameterEvent.EventValuesStruct.ImmediateStruct.Value
-F:AudioUnit.AudioUnitParameterEvent.EventValuesStruct.Ramp
-F:AudioUnit.AudioUnitParameterEvent.EventValuesStruct.RampStruct.DurationInFrames
-F:AudioUnit.AudioUnitParameterEvent.EventValuesStruct.RampStruct.EndValue
-F:AudioUnit.AudioUnitParameterEvent.EventValuesStruct.RampStruct.StartBufferOffset
-F:AudioUnit.AudioUnitParameterEvent.EventValuesStruct.RampStruct.StartValue
-F:AudioUnit.AudioUnitParameterEvent.Parameter
-F:AudioUnit.AudioUnitParameterEvent.Scope
-F:AudioUnit.AudioUnitParameterFlag.CanRamp
-F:AudioUnit.AudioUnitParameterFlag.CFNameRelease
-F:AudioUnit.AudioUnitParameterFlag.DisplayCubed
-F:AudioUnit.AudioUnitParameterFlag.DisplayCubeRoot
-F:AudioUnit.AudioUnitParameterFlag.DisplayExponential
-F:AudioUnit.AudioUnitParameterFlag.DisplayLogarithmic
-F:AudioUnit.AudioUnitParameterFlag.DisplayMask
-F:AudioUnit.AudioUnitParameterFlag.DisplaySquared
-F:AudioUnit.AudioUnitParameterFlag.DisplaySquareRoot
-F:AudioUnit.AudioUnitParameterFlag.ExpertMode
-F:AudioUnit.AudioUnitParameterFlag.HasCFNameString
-F:AudioUnit.AudioUnitParameterFlag.HasClump
-F:AudioUnit.AudioUnitParameterFlag.IsElementMeta
-F:AudioUnit.AudioUnitParameterFlag.IsGlobalMeta
-F:AudioUnit.AudioUnitParameterFlag.IsHighResolution
-F:AudioUnit.AudioUnitParameterFlag.IsReadable
-F:AudioUnit.AudioUnitParameterFlag.IsWritable
-F:AudioUnit.AudioUnitParameterFlag.MeterReadOnly
-F:AudioUnit.AudioUnitParameterFlag.NonRealTime
-F:AudioUnit.AudioUnitParameterFlag.OmitFromPresets
-F:AudioUnit.AudioUnitParameterFlag.PlotHistory
-F:AudioUnit.AudioUnitParameterFlag.ValuesHaveStrings
-F:AudioUnit.AudioUnitParameterOptions.CanRamp
-F:AudioUnit.AudioUnitParameterOptions.CFNameRelease
-F:AudioUnit.AudioUnitParameterOptions.DisplayCubed
-F:AudioUnit.AudioUnitParameterOptions.DisplayCubeRoot
-F:AudioUnit.AudioUnitParameterOptions.DisplayExponential
-F:AudioUnit.AudioUnitParameterOptions.DisplayLogarithmic
-F:AudioUnit.AudioUnitParameterOptions.DisplayMask
-F:AudioUnit.AudioUnitParameterOptions.DisplaySquared
-F:AudioUnit.AudioUnitParameterOptions.DisplaySquareRoot
-F:AudioUnit.AudioUnitParameterOptions.ExpertMode
-F:AudioUnit.AudioUnitParameterOptions.HasCFNameString
-F:AudioUnit.AudioUnitParameterOptions.HasClump
-F:AudioUnit.AudioUnitParameterOptions.IsElementMeta
-F:AudioUnit.AudioUnitParameterOptions.IsGlobalMeta
-F:AudioUnit.AudioUnitParameterOptions.IsHighResolution
-F:AudioUnit.AudioUnitParameterOptions.IsReadable
-F:AudioUnit.AudioUnitParameterOptions.IsWritable
-F:AudioUnit.AudioUnitParameterOptions.MeterReadOnly
-F:AudioUnit.AudioUnitParameterOptions.NonRealTime
-F:AudioUnit.AudioUnitParameterOptions.OmitFromPresets
-F:AudioUnit.AudioUnitParameterOptions.PlotHistory
-F:AudioUnit.AudioUnitParameterOptions.ValuesHaveStrings
-F:AudioUnit.AudioUnitParameterType.AUDCFilterDecayTime
-F:AudioUnit.AudioUnitParameterType.AULowShelfCutoffFrequency
-F:AudioUnit.AudioUnitParameterType.AULowShelfGain
-F:AudioUnit.AudioUnitParameterType.AUNBandEQBandwidth
-F:AudioUnit.AudioUnitParameterType.AUNBandEQBypassBand
-F:AudioUnit.AudioUnitParameterType.AUNBandEQFilterType
-F:AudioUnit.AudioUnitParameterType.AUNBandEQFrequency
-F:AudioUnit.AudioUnitParameterType.AUNBandEQGain
-F:AudioUnit.AudioUnitParameterType.AUNBandEQGlobalGain
-F:AudioUnit.AudioUnitParameterType.AUSamplerCoarseTuning
-F:AudioUnit.AudioUnitParameterType.AUSamplerFineTuning
-F:AudioUnit.AudioUnitParameterType.AUSamplerGain
-F:AudioUnit.AudioUnitParameterType.AUSamplerPan
-F:AudioUnit.AudioUnitParameterType.BandpassBandwidth
-F:AudioUnit.AudioUnitParameterType.BandpassCenterFrequency
-F:AudioUnit.AudioUnitParameterType.DelayFeedback
-F:AudioUnit.AudioUnitParameterType.DelayLopassCutoff
-F:AudioUnit.AudioUnitParameterType.DelayTime
-F:AudioUnit.AudioUnitParameterType.DelayWetDryMix
-F:AudioUnit.AudioUnitParameterType.Distance
-F:AudioUnit.AudioUnitParameterType.DistortionCubicTerm
-F:AudioUnit.AudioUnitParameterType.DistortionDecay
-F:AudioUnit.AudioUnitParameterType.DistortionDecimation
-F:AudioUnit.AudioUnitParameterType.DistortionDecimationMix
-F:AudioUnit.AudioUnitParameterType.DistortionDelay
-F:AudioUnit.AudioUnitParameterType.DistortionDelayMix
-F:AudioUnit.AudioUnitParameterType.DistortionFinalMix
-F:AudioUnit.AudioUnitParameterType.DistortionLinearTerm
-F:AudioUnit.AudioUnitParameterType.DistortionPolynomialMix
-F:AudioUnit.AudioUnitParameterType.DistortionRingModBalance
-F:AudioUnit.AudioUnitParameterType.DistortionRingModFreq1
-F:AudioUnit.AudioUnitParameterType.DistortionRingModFreq2
-F:AudioUnit.AudioUnitParameterType.DistortionRingModMix
-F:AudioUnit.AudioUnitParameterType.DistortionRounding
-F:AudioUnit.AudioUnitParameterType.DistortionSoftClipGain
-F:AudioUnit.AudioUnitParameterType.DistortionSquaredTerm
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorAttackTime
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorCompressionAmount
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorExpansionRatio
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorExpansionThreshold
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorHeadRoom
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorInputAmplitude
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorMasterGain
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorOutputAmplitude
F:AudioUnit.AudioUnitParameterType.DynamicsProcessorOverallGain
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorReleaseTime
-F:AudioUnit.AudioUnitParameterType.DynamicsProcessorThreshold
-F:AudioUnit.AudioUnitParameterType.Elevation
-F:AudioUnit.AudioUnitParameterType.Enable
-F:AudioUnit.AudioUnitParameterType.Gain
-F:AudioUnit.AudioUnitParameterType.GlobalReverbGain
-F:AudioUnit.AudioUnitParameterType.HALOutputVolume
-F:AudioUnit.AudioUnitParameterType.HighShelfCutOffFrequency
-F:AudioUnit.AudioUnitParameterType.HighShelfGain
-F:AudioUnit.AudioUnitParameterType.HipassCutoffFrequency
-F:AudioUnit.AudioUnitParameterType.HipassResonance
-F:AudioUnit.AudioUnitParameterType.LimiterAttackTime
-F:AudioUnit.AudioUnitParameterType.LimiterDecayTime
-F:AudioUnit.AudioUnitParameterType.LimiterPreGain
-F:AudioUnit.AudioUnitParameterType.LowPassCutoffFrequency
-F:AudioUnit.AudioUnitParameterType.LowPassResonance
-F:AudioUnit.AudioUnitParameterType.MatrixMixerEnable
-F:AudioUnit.AudioUnitParameterType.MatrixMixerVolume
-F:AudioUnit.AudioUnitParameterType.MaxGain
-F:AudioUnit.AudioUnitParameterType.MinGain
-F:AudioUnit.AudioUnitParameterType.Mixer3DAzimuth
-F:AudioUnit.AudioUnitParameterType.Mixer3DDistance
-F:AudioUnit.AudioUnitParameterType.Mixer3DElevation
-F:AudioUnit.AudioUnitParameterType.Mixer3DEnable
-F:AudioUnit.AudioUnitParameterType.Mixer3DGain
-F:AudioUnit.AudioUnitParameterType.Mixer3DGlobalReverbGain
-F:AudioUnit.AudioUnitParameterType.Mixer3DMaxGain
-F:AudioUnit.AudioUnitParameterType.Mixer3DMinGain
-F:AudioUnit.AudioUnitParameterType.Mixer3DObstructionAttenuation
-F:AudioUnit.AudioUnitParameterType.Mixer3DOcclusionAttenuation
-F:AudioUnit.AudioUnitParameterType.Mixer3DPlaybackRate
F:AudioUnit.AudioUnitParameterType.Mixer3DPostAveragePower
F:AudioUnit.AudioUnitParameterType.Mixer3DPostPeakHoldLevel
F:AudioUnit.AudioUnitParameterType.Mixer3DPreAveragePower
F:AudioUnit.AudioUnitParameterType.Mixer3DPrePeakHoldLevel
-F:AudioUnit.AudioUnitParameterType.Mixer3DReverbBlend
-F:AudioUnit.AudioUnitParameterType.MultiChannelMixerEnable
-F:AudioUnit.AudioUnitParameterType.MultiChannelMixerPan
-F:AudioUnit.AudioUnitParameterType.MultiChannelMixerVolume
-F:AudioUnit.AudioUnitParameterType.NewTimePitchEnablePeakLocking
-F:AudioUnit.AudioUnitParameterType.NewTimePitchOverlap
-F:AudioUnit.AudioUnitParameterType.NewTimePitchPitch
-F:AudioUnit.AudioUnitParameterType.NewTimePitchRate
-F:AudioUnit.AudioUnitParameterType.ObstructionAttenuation
-F:AudioUnit.AudioUnitParameterType.OcclussionAttenuation
-F:AudioUnit.AudioUnitParameterType.ParametricEQCenterFreq
-F:AudioUnit.AudioUnitParameterType.ParametricEQGain
-F:AudioUnit.AudioUnitParameterType.ParametricEQQ
-F:AudioUnit.AudioUnitParameterType.PlaybackRate
-F:AudioUnit.AudioUnitParameterType.RandomBoundA
-F:AudioUnit.AudioUnitParameterType.RandomBoundB
-F:AudioUnit.AudioUnitParameterType.RandomCurve
-F:AudioUnit.AudioUnitParameterType.Reverb2DecayTimeAt0Hz
-F:AudioUnit.AudioUnitParameterType.Reverb2DecayTimeAtNyquist
-F:AudioUnit.AudioUnitParameterType.Reverb2DryWetMix
-F:AudioUnit.AudioUnitParameterType.Reverb2Gain
-F:AudioUnit.AudioUnitParameterType.Reverb2MaxDelayTime
-F:AudioUnit.AudioUnitParameterType.Reverb2MinDelayTime
-F:AudioUnit.AudioUnitParameterType.Reverb2RandomizeReflections
-F:AudioUnit.AudioUnitParameterType.ReverbBlend
-F:AudioUnit.AudioUnitParameterType.ReverbFilterBandwidth
-F:AudioUnit.AudioUnitParameterType.ReverbFilterEnable
-F:AudioUnit.AudioUnitParameterType.ReverbFilterFrequency
-F:AudioUnit.AudioUnitParameterType.ReverbFilterGain
-F:AudioUnit.AudioUnitParameterType.ReverbFilterType
-F:AudioUnit.AudioUnitParameterType.RoundTripAacEncodingStrategy
-F:AudioUnit.AudioUnitParameterType.RoundTripAacFormat
-F:AudioUnit.AudioUnitParameterType.RoundTripAacRateOrQuality
-F:AudioUnit.AudioUnitParameterType.SpacialMixerAzimuth
-F:AudioUnit.AudioUnitParameterType.SpatialAzimuth
-F:AudioUnit.AudioUnitParameterType.SpatialDistance
-F:AudioUnit.AudioUnitParameterType.SpatialElevation
-F:AudioUnit.AudioUnitParameterType.SpatialEnable
-F:AudioUnit.AudioUnitParameterType.SpatialGain
-F:AudioUnit.AudioUnitParameterType.SpatialGlobalReverbGain
-F:AudioUnit.AudioUnitParameterType.SpatialMaxGain
-F:AudioUnit.AudioUnitParameterType.SpatialMinGain
-F:AudioUnit.AudioUnitParameterType.SpatialObstructionAttenuation
-F:AudioUnit.AudioUnitParameterType.SpatialOcclusionAttenuation
-F:AudioUnit.AudioUnitParameterType.SpatialPlaybackRate
-F:AudioUnit.AudioUnitParameterType.SpatialReverbBlend
F:AudioUnit.AudioUnitParameterType.TimePitchEffectBlend
F:AudioUnit.AudioUnitParameterType.TimePitchPitch
-F:AudioUnit.AudioUnitParameterType.TimePitchRate
-F:AudioUnit.AudioUnitParameterType.VarispeedPlaybackCents
-F:AudioUnit.AudioUnitParameterType.VarispeedPlaybackRate
-F:AudioUnit.AudioUnitParameterUnit.AbsoluteCents
-F:AudioUnit.AudioUnitParameterUnit.Beats
-F:AudioUnit.AudioUnitParameterUnit.Boolean
-F:AudioUnit.AudioUnitParameterUnit.BPM
-F:AudioUnit.AudioUnitParameterUnit.Cents
-F:AudioUnit.AudioUnitParameterUnit.CustomUnit
-F:AudioUnit.AudioUnitParameterUnit.Decibels
-F:AudioUnit.AudioUnitParameterUnit.Degrees
-F:AudioUnit.AudioUnitParameterUnit.EqualPowerCrossfade
-F:AudioUnit.AudioUnitParameterUnit.Generic
-F:AudioUnit.AudioUnitParameterUnit.Hertz
-F:AudioUnit.AudioUnitParameterUnit.Indexed
-F:AudioUnit.AudioUnitParameterUnit.LinearGain
-F:AudioUnit.AudioUnitParameterUnit.Meters
F:AudioUnit.AudioUnitParameterUnit.MIDI2Controller
-F:AudioUnit.AudioUnitParameterUnit.MIDIController
-F:AudioUnit.AudioUnitParameterUnit.MIDINoteNumber
-F:AudioUnit.AudioUnitParameterUnit.Milliseconds
-F:AudioUnit.AudioUnitParameterUnit.MixerFaderCurve1
-F:AudioUnit.AudioUnitParameterUnit.Octaves
-F:AudioUnit.AudioUnitParameterUnit.Pan
-F:AudioUnit.AudioUnitParameterUnit.Percent
-F:AudioUnit.AudioUnitParameterUnit.Phase
-F:AudioUnit.AudioUnitParameterUnit.Rate
-F:AudioUnit.AudioUnitParameterUnit.Ratio
-F:AudioUnit.AudioUnitParameterUnit.RelativeSemiTones
-F:AudioUnit.AudioUnitParameterUnit.SampleFrames
-F:AudioUnit.AudioUnitParameterUnit.Seconds
-F:AudioUnit.AudioUnitRemoteControlEvent.Rewind
-F:AudioUnit.AudioUnitRemoteControlEvent.TogglePlayPause
-F:AudioUnit.AudioUnitRemoteControlEvent.ToggleRecord
-F:AudioUnit.AudioUnitRenderActionFlags.DoNotCheckRenderArgs
-F:AudioUnit.AudioUnitRenderActionFlags.OfflineComplete
-F:AudioUnit.AudioUnitRenderActionFlags.OfflinePreflight
-F:AudioUnit.AudioUnitRenderActionFlags.OfflineRender
-F:AudioUnit.AudioUnitRenderActionFlags.OutputIsSilence
-F:AudioUnit.AudioUnitRenderActionFlags.PostRender
-F:AudioUnit.AudioUnitRenderActionFlags.PostRenderError
-F:AudioUnit.AudioUnitRenderActionFlags.PreRender
-F:AudioUnit.AudioUnitScopeType.Global
-F:AudioUnit.AudioUnitScopeType.Group
-F:AudioUnit.AudioUnitScopeType.Input
-F:AudioUnit.AudioUnitScopeType.Layer
-F:AudioUnit.AudioUnitScopeType.LayerItem
-F:AudioUnit.AudioUnitScopeType.Note
-F:AudioUnit.AudioUnitScopeType.Output
-F:AudioUnit.AudioUnitScopeType.Part
-F:AudioUnit.AudioUnitStatus.CannotDoInCurrentContext
F:AudioUnit.AudioUnitStatus.ComponentManagerNotSupported
-F:AudioUnit.AudioUnitStatus.ExtensionNotFound
-F:AudioUnit.AudioUnitStatus.FailedInitialization
-F:AudioUnit.AudioUnitStatus.FileNotFound
-F:AudioUnit.AudioUnitStatus.FormatNotSupported
-F:AudioUnit.AudioUnitStatus.Initialized
-F:AudioUnit.AudioUnitStatus.InvalidElement
-F:AudioUnit.AudioUnitStatus.InvalidFile
F:AudioUnit.AudioUnitStatus.InvalidFilePath
-F:AudioUnit.AudioUnitStatus.InvalidOfflineRender
-F:AudioUnit.AudioUnitStatus.InvalidParameter
-F:AudioUnit.AudioUnitStatus.InvalidParameterValue
-F:AudioUnit.AudioUnitStatus.InvalidProperty
-F:AudioUnit.AudioUnitStatus.InvalidPropertyValue
-F:AudioUnit.AudioUnitStatus.InvalidScope
-F:AudioUnit.AudioUnitStatus.MidiOutputBufferFull
F:AudioUnit.AudioUnitStatus.MissingKey
F:AudioUnit.AudioUnitStatus.MultipleVoiceProcessors
-F:AudioUnit.AudioUnitStatus.NoConnection
-F:AudioUnit.AudioUnitStatus.NoError
-F:AudioUnit.AudioUnitStatus.OK
-F:AudioUnit.AudioUnitStatus.ParameterError
-F:AudioUnit.AudioUnitStatus.PropertyNotInUse
-F:AudioUnit.AudioUnitStatus.PropertyNotWritable
F:AudioUnit.AudioUnitStatus.RenderTimeout
-F:AudioUnit.AudioUnitStatus.TooManyFramesToProcess
-F:AudioUnit.AudioUnitStatus.Unauthorized
-F:AudioUnit.AudioUnitStatus.Uninitialized
-F:AudioUnit.AudioUnitSubType.AUConverter
-F:AudioUnit.AudioUnitSubType.AudioFilePlayer
F:AudioUnit.AudioUnitSubType.AUFilter
-F:AudioUnit.AudioUnitSubType.AUiPodTimeOther
-F:AudioUnit.AudioUnitSubType.BandPassFilter
F:AudioUnit.AudioUnitSubType.DefaultOutput
-F:AudioUnit.AudioUnitSubType.DeferredRenderer
-F:AudioUnit.AudioUnitSubType.Delay
-F:AudioUnit.AudioUnitSubType.Distortion
F:AudioUnit.AudioUnitSubType.DLSSynth
-F:AudioUnit.AudioUnitSubType.DynamicsProcessor
-F:AudioUnit.AudioUnitSubType.GenericOutput
F:AudioUnit.AudioUnitSubType.GraphicEQ
F:AudioUnit.AudioUnitSubType.HALOutput
-F:AudioUnit.AudioUnitSubType.HighPassFilter
-F:AudioUnit.AudioUnitSubType.HighShelfFilter
F:AudioUnit.AudioUnitSubType.HRTFPanner
-F:AudioUnit.AudioUnitSubType.LowPassFilter
-F:AudioUnit.AudioUnitSubType.LowShelfFilter
-F:AudioUnit.AudioUnitSubType.MatrixMixer
F:AudioUnit.AudioUnitSubType.MatrixReverb
-F:AudioUnit.AudioUnitSubType.Merger
-F:AudioUnit.AudioUnitSubType.MidiSynth
F:AudioUnit.AudioUnitSubType.MultiBandCompressor
-F:AudioUnit.AudioUnitSubType.MultiChannelMixer
-F:AudioUnit.AudioUnitSubType.MultiSplitter
-F:AudioUnit.AudioUnitSubType.NBandEQ
F:AudioUnit.AudioUnitSubType.NetReceive
F:AudioUnit.AudioUnitSubType.NetSend
-F:AudioUnit.AudioUnitSubType.NewTimePitch
-F:AudioUnit.AudioUnitSubType.ParametricEQ
-F:AudioUnit.AudioUnitSubType.PeakLimiter
F:AudioUnit.AudioUnitSubType.Pitch
F:AudioUnit.AudioUnitSubType.RogerBeep
-F:AudioUnit.AudioUnitSubType.RoundTripAac
-F:AudioUnit.AudioUnitSubType.SampleDelay
-F:AudioUnit.AudioUnitSubType.Sampler
-F:AudioUnit.AudioUnitSubType.ScheduledSoundPlayer
F:AudioUnit.AudioUnitSubType.SoundFieldPanner
-F:AudioUnit.AudioUnitSubType.SpatialMixer
F:AudioUnit.AudioUnitSubType.SphericalHeadPanner
-F:AudioUnit.AudioUnitSubType.Splitter
F:AudioUnit.AudioUnitSubType.StereoMixer
F:AudioUnit.AudioUnitSubType.SystemOutput
F:AudioUnit.AudioUnitSubType.TimePitch
-F:AudioUnit.AudioUnitSubType.Varispeed
F:AudioUnit.AudioUnitSubType.VectorPanner
-F:AudioUnit.AudioUnitSubType.VoiceProcessingIO
-F:AudioUnit.AudioUnitUtils.SampleFractionBits
-F:AudioUnit.AUEventSampleTime.Immediate
-F:AudioUnit.AUGraphError.CannotDoInCurrentContext
-F:AudioUnit.AUGraphError.FormatNotSupported
-F:AudioUnit.AUGraphError.InvalidAudioUnit
-F:AudioUnit.AUGraphError.InvalidConnection
-F:AudioUnit.AUGraphError.InvalidElement
-F:AudioUnit.AUGraphError.NodeNotFound
-F:AudioUnit.AUGraphError.OK
-F:AudioUnit.AUGraphError.OutputNodeError
-F:AudioUnit.AUHostTransportStateFlags.Changed
-F:AudioUnit.AUHostTransportStateFlags.Cycling
-F:AudioUnit.AUHostTransportStateFlags.Moving
-F:AudioUnit.AUHostTransportStateFlags.Recording
-F:AudioUnit.AUParameterAutomationEvent.Address
-F:AudioUnit.AUParameterAutomationEvent.EventType
-F:AudioUnit.AUParameterAutomationEvent.HostTime
-F:AudioUnit.AUParameterAutomationEvent.Value
-F:AudioUnit.AUParameterAutomationEventType.Release
-F:AudioUnit.AUParameterAutomationEventType.Touch
-F:AudioUnit.AUParameterAutomationEventType.Value
-F:AudioUnit.AUParameterEvent.EventSampleTime
-F:AudioUnit.AUParameterEvent.EventType
-F:AudioUnit.AUParameterEvent.ParameterAddress
-F:AudioUnit.AUParameterEvent.RampDurationSampleFrames
-F:AudioUnit.AUParameterEvent.UnsafeNext
-F:AudioUnit.AUParameterEvent.Value
-F:AudioUnit.AUParameterEventType.Immediate
-F:AudioUnit.AUParameterEventType.Ramped
-F:AudioUnit.AUParameterObserverToken.ObserverToken
-F:AudioUnit.AURecordedParameterEvent.Address
-F:AudioUnit.AURecordedParameterEvent.HostTime
-F:AudioUnit.AURecordedParameterEvent.Value
-F:AudioUnit.AURenderEvent.Head
-F:AudioUnit.AURenderEvent.Parameter
-F:AudioUnit.AURenderEventHeader.EventSampleTime
-F:AudioUnit.AURenderEventHeader.EventType
-F:AudioUnit.AURenderEventHeader.Reserved
-F:AudioUnit.AURenderEventHeader.UnsafeNext
-F:AudioUnit.AURenderEventType.Midi
F:AudioUnit.AURenderEventType.MidiEventList
-F:AudioUnit.AURenderEventType.MidiSysEx
-F:AudioUnit.AURenderEventType.Parameter
-F:AudioUnit.AURenderEventType.ParameterRamp
-F:AudioUnit.AUReverbRoomType.Cathedral
-F:AudioUnit.AUReverbRoomType.LargeChamber
-F:AudioUnit.AUReverbRoomType.LargeHall
-F:AudioUnit.AUReverbRoomType.LargeHall2
-F:AudioUnit.AUReverbRoomType.LargeRoom
-F:AudioUnit.AUReverbRoomType.LargeRoom2
-F:AudioUnit.AUReverbRoomType.MediumChamber
-F:AudioUnit.AUReverbRoomType.MediumHall
-F:AudioUnit.AUReverbRoomType.MediumHall2
-F:AudioUnit.AUReverbRoomType.MediumHall3
-F:AudioUnit.AUReverbRoomType.MediumRoom
-F:AudioUnit.AUReverbRoomType.Plate
-F:AudioUnit.AUReverbRoomType.SmallRoom
-F:AudioUnit.AUScheduledAudioSliceFlags.BeganToRender
-F:AudioUnit.AUScheduledAudioSliceFlags.BeganToRenderLate
-F:AudioUnit.AUScheduledAudioSliceFlags.Complete
-F:AudioUnit.AUScheduledAudioSliceFlags.Interrupt
-F:AudioUnit.AUScheduledAudioSliceFlags.InterruptAtLoop
-F:AudioUnit.AUScheduledAudioSliceFlags.Loop
-F:AudioUnit.AUSpatializationAlgorithm.EqualPowerPanning
-F:AudioUnit.AUSpatializationAlgorithm.Hrtf
-F:AudioUnit.AUSpatializationAlgorithm.HrtfHQ
-F:AudioUnit.AUSpatializationAlgorithm.SoundField
-F:AudioUnit.AUSpatializationAlgorithm.SphericalHead
-F:AudioUnit.AUSpatializationAlgorithm.StereoPassThrough
F:AudioUnit.AUSpatializationAlgorithm.UseOutputType
-F:AudioUnit.AUSpatializationAlgorithm.VectorBasedPanning
-F:AudioUnit.AUSpatialMixerAttenuationCurve.Exponential
-F:AudioUnit.AUSpatialMixerAttenuationCurve.Inverse
-F:AudioUnit.AUSpatialMixerAttenuationCurve.Linear
-F:AudioUnit.AUSpatialMixerAttenuationCurve.Power
-F:AudioUnit.AUSpatialMixerRenderingFlags.DistanceAttenuation
-F:AudioUnit.AUSpatialMixerRenderingFlags.InterAuralDelay
F:AudioUnit.AUVoiceIOSpeechActivityEvent.Ended
F:AudioUnit.AUVoiceIOSpeechActivityEvent.Started
-F:AudioUnit.ExtAudioFileError.AsyncWriteBufferOverflow
-F:AudioUnit.ExtAudioFileError.AsyncWriteTooLarge
-F:AudioUnit.ExtAudioFileError.BadFilePathError
-F:AudioUnit.ExtAudioFileError.CodecUnavailableInputConsumed
-F:AudioUnit.ExtAudioFileError.CodecUnavailableInputNotConsumed
-F:AudioUnit.ExtAudioFileError.EndOfFileError
-F:AudioUnit.ExtAudioFileError.FileNotFoundError
-F:AudioUnit.ExtAudioFileError.FilePermissionError
-F:AudioUnit.ExtAudioFileError.InvalidChannelMap
-F:AudioUnit.ExtAudioFileError.InvalidDataFormat
-F:AudioUnit.ExtAudioFileError.InvalidOperationOrder
-F:AudioUnit.ExtAudioFileError.InvalidProperty
-F:AudioUnit.ExtAudioFileError.InvalidPropertySize
-F:AudioUnit.ExtAudioFileError.InvalidSeek
-F:AudioUnit.ExtAudioFileError.MaxPacketSizeUnknown
-F:AudioUnit.ExtAudioFileError.NonPCMClientFormat
-F:AudioUnit.ExtAudioFileError.NotOpenError
-F:AudioUnit.ExtAudioFileError.OK
-F:AudioUnit.ExtAudioFileError.PositionError
-F:AudioUnit.ExtAudioFileError.TooManyFilesOpenError
-F:AudioUnit.InstrumentType.Audiofile
-F:AudioUnit.InstrumentType.AUPreset
-F:AudioUnit.InstrumentType.DLSPreset
-F:AudioUnit.InstrumentType.EXS24
-F:AudioUnit.InstrumentType.SF2Preset
-F:AudioUnit.SamplerInstrumentData.DefaultBankLSB
-F:AudioUnit.SamplerInstrumentData.DefaultMelodicBankMSB
-F:AudioUnit.SamplerInstrumentData.DefaultPercussionBankMSB
-F:AudioUnit.ScheduledAudioSliceFlag.BeganToRender
-F:AudioUnit.ScheduledAudioSliceFlag.BeganToRenderLate
-F:AudioUnit.ScheduledAudioSliceFlag.Complete
-F:AudioUnit.ScheduledAudioSliceFlag.Interrupt
-F:AudioUnit.ScheduledAudioSliceFlag.InterruptAtLoop
-F:AudioUnit.ScheduledAudioSliceFlag.Loop
-F:AudioUnit.SpatialMixerAttenuation.Exponential
-F:AudioUnit.SpatialMixerAttenuation.Inverse
-F:AudioUnit.SpatialMixerAttenuation.Linear
-F:AudioUnit.SpatialMixerAttenuation.Power
-F:AudioUnit.SpatialMixerRenderingFlags.DistanceAttenuation
-F:AudioUnit.SpatialMixerRenderingFlags.InterAuralDelay
F:AuthenticationServices.ASAuthorizationAppleIdButtonStyle.Black
F:AuthenticationServices.ASAuthorizationAppleIdButtonStyle.White
F:AuthenticationServices.ASAuthorizationAppleIdButtonStyle.WhiteOutline
@@ -4999,12 +3654,6 @@ F:AVFoundation.AVAssetReaderStatus.Completed
F:AVFoundation.AVAssetReaderStatus.Failed
F:AVFoundation.AVAssetReaderStatus.Reading
F:AVFoundation.AVAssetReaderStatus.Unknown
-F:AVFoundation.AVAssetReferenceRestrictions.ForbidAll
-F:AVFoundation.AVAssetReferenceRestrictions.ForbidCrossSiteReference
-F:AVFoundation.AVAssetReferenceRestrictions.ForbidLocalReferenceToLocal
-F:AVFoundation.AVAssetReferenceRestrictions.ForbidLocalReferenceToRemote
-F:AVFoundation.AVAssetReferenceRestrictions.ForbidNone
-F:AVFoundation.AVAssetReferenceRestrictions.ForbidRemoteReferenceToLocal
F:AVFoundation.AVAssetSegmentType.Initialization
F:AVFoundation.AVAssetSegmentType.Separable
F:AVFoundation.AVAssetTrackGroupOutputHandling.DefaultPolicy
@@ -5058,8 +3707,6 @@ F:AVFoundation.AVAudioConverterOutputStatus.EndOfStream
F:AVFoundation.AVAudioConverterOutputStatus.Error
F:AVFoundation.AVAudioConverterOutputStatus.HaveData
F:AVFoundation.AVAudioConverterOutputStatus.InputRanDry
-F:AVFoundation.AVAudioConverterPrimeInfo.LeadingFrames
-F:AVFoundation.AVAudioConverterPrimeInfo.TrailingFrames
F:AVFoundation.AVAudioConverterPrimeMethod.None
F:AVFoundation.AVAudioConverterPrimeMethod.Normal
F:AVFoundation.AVAudioConverterPrimeMethod.Pre
@@ -5845,8 +4492,6 @@ F:AVFoundation.AVVariantPreferences.ScalabilityToLosslessAudio
F:AVFoundation.AVVideoApertureMode.CleanAperture
F:AVFoundation.AVVideoApertureMode.EncodedPixels
F:AVFoundation.AVVideoApertureMode.ProductionAperture
-F:AVFoundation.AVVideoCodec.H264
-F:AVFoundation.AVVideoCodec.JPEG
F:AVFoundation.AVVideoCodecType.AppleProRes422
F:AVFoundation.AVVideoCodecType.AppleProRes422HQ
F:AVFoundation.AVVideoCodecType.AppleProRes422LT
@@ -5864,27 +4509,9 @@ F:AVFoundation.AVVideoFieldMode.Both
F:AVFoundation.AVVideoFieldMode.BottomOnly
F:AVFoundation.AVVideoFieldMode.Deinterlace
F:AVFoundation.AVVideoFieldMode.TopOnly
-F:AVFoundation.AVVideoH264EntropyMode.AdaptiveBinaryArithmetic
-F:AVFoundation.AVVideoH264EntropyMode.AdaptiveVariableLength
-F:AVFoundation.AVVideoProfileLevelH264.Baseline30
-F:AVFoundation.AVVideoProfileLevelH264.Baseline31
-F:AVFoundation.AVVideoProfileLevelH264.Baseline41
-F:AVFoundation.AVVideoProfileLevelH264.BaselineAutoLevel
-F:AVFoundation.AVVideoProfileLevelH264.High40
-F:AVFoundation.AVVideoProfileLevelH264.High41
-F:AVFoundation.AVVideoProfileLevelH264.HighAutoLevel
-F:AVFoundation.AVVideoProfileLevelH264.Main30
-F:AVFoundation.AVVideoProfileLevelH264.Main31
-F:AVFoundation.AVVideoProfileLevelH264.Main32
-F:AVFoundation.AVVideoProfileLevelH264.Main41
-F:AVFoundation.AVVideoProfileLevelH264.MainAutoLevel
F:AVFoundation.AVVideoRange.Hlg
F:AVFoundation.AVVideoRange.PQ
F:AVFoundation.AVVideoRange.Sdr
-F:AVFoundation.AVVideoScalingMode.Fit
-F:AVFoundation.AVVideoScalingMode.Resize
-F:AVFoundation.AVVideoScalingMode.ResizeAspect
-F:AVFoundation.AVVideoScalingMode.ResizeAspectFill
F:AVFoundation.CMTagCollectionVideoOutputPreset.Monoscopic
F:AVFoundation.CMTagCollectionVideoOutputPreset.Stereoscopic
F:AVKit.AVAudioSessionRouteSelection.External
@@ -6017,11 +4644,6 @@ F:BrowserEngineKit.BETextDocumentRequestOptions.Text
F:BrowserEngineKit.BETextDocumentRequestOptions.TextRects
F:BrowserEngineKit.BETextReplacementOptions.AddUnderline
F:BrowserEngineKit.BETextReplacementOptions.None
-F:BusinessChat.BCChatButtonStyle.Dark
-F:BusinessChat.BCChatButtonStyle.Light
-F:BusinessChat.BCParameterName.Body
-F:BusinessChat.BCParameterName.Group
-F:BusinessChat.BCParameterName.Intent
F:CallKit.CXCallDirectoryEnabledStatus.Disabled
F:CallKit.CXCallDirectoryEnabledStatus.Enabled
F:CallKit.CXCallDirectoryEnabledStatus.Unknown
@@ -6508,60 +5130,17 @@ F:Contacts.CNSocialProfileServiceOption.SinaWeibo
F:Contacts.CNSocialProfileServiceOption.TencentWeibo
F:Contacts.CNSocialProfileServiceOption.Twitter
F:Contacts.CNSocialProfileServiceOption.Yelp
-F:CoreAnimation.CAAutoresizingMask.HeightSizable
-F:CoreAnimation.CAAutoresizingMask.MaxXMargin
-F:CoreAnimation.CAAutoresizingMask.MaxYMargin
-F:CoreAnimation.CAAutoresizingMask.MinXMargin
-F:CoreAnimation.CAAutoresizingMask.MinYMargin
-F:CoreAnimation.CAAutoresizingMask.NotSizable
-F:CoreAnimation.CAAutoresizingMask.WidthSizable
-F:CoreAnimation.CAConstraintAttribute.Height
-F:CoreAnimation.CAConstraintAttribute.MaxX
-F:CoreAnimation.CAConstraintAttribute.MaxY
-F:CoreAnimation.CAConstraintAttribute.MidX
-F:CoreAnimation.CAConstraintAttribute.MidY
-F:CoreAnimation.CAConstraintAttribute.MinX
-F:CoreAnimation.CAConstraintAttribute.MinY
-F:CoreAnimation.CAConstraintAttribute.Width
-F:CoreAnimation.CAContentsFormat.Gray8Uint
-F:CoreAnimation.CAContentsFormat.Rgba16Float
-F:CoreAnimation.CAContentsFormat.Rgba8Uint
F:CoreAnimation.CACornerCurve.Circular
F:CoreAnimation.CACornerCurve.Continuous
-F:CoreAnimation.CACornerMask.MaxXMaxYCorner
-F:CoreAnimation.CACornerMask.MaxXMinYCorner
-F:CoreAnimation.CACornerMask.MinXMaxYCorner
-F:CoreAnimation.CACornerMask.MinXMinYCorner
-F:CoreAnimation.CAEdgeAntialiasingMask.All
-F:CoreAnimation.CAEdgeAntialiasingMask.BottomEdge
-F:CoreAnimation.CAEdgeAntialiasingMask.LeftEdge
-F:CoreAnimation.CAEdgeAntialiasingMask.LeftRightEdges
-F:CoreAnimation.CAEdgeAntialiasingMask.RightEdge
-F:CoreAnimation.CAEdgeAntialiasingMask.TopBottomEdges
-F:CoreAnimation.CAEdgeAntialiasingMask.TopEdge
F:CoreAnimation.CAFrameRateRange.Maximum
F:CoreAnimation.CAFrameRateRange.Minimum
F:CoreAnimation.CAFrameRateRange.Preferred
F:CoreAnimation.CAGradientLayerType.Axial
F:CoreAnimation.CAGradientLayerType.Conic
F:CoreAnimation.CAGradientLayerType.Radial
-F:CoreAnimation.CAScroll.Both
-F:CoreAnimation.CAScroll.Horizontally
-F:CoreAnimation.CAScroll.None
-F:CoreAnimation.CAScroll.Vertically
-F:CoreAnimation.CATextLayerAlignmentMode.Center
-F:CoreAnimation.CATextLayerAlignmentMode.Justified
-F:CoreAnimation.CATextLayerAlignmentMode.Left
-F:CoreAnimation.CATextLayerAlignmentMode.Natural
-F:CoreAnimation.CATextLayerAlignmentMode.Right
-F:CoreAnimation.CATextLayerTruncationMode.End
-F:CoreAnimation.CATextLayerTruncationMode.Middle
-F:CoreAnimation.CATextLayerTruncationMode.None
-F:CoreAnimation.CATextLayerTruncationMode.Start
F:CoreAnimation.CAToneMapMode.Automatic
F:CoreAnimation.CAToneMapMode.IfSupported
F:CoreAnimation.CAToneMapMode.Never
-F:CoreAnimation.CATransform3D.Identity
F:CoreAnimation.CATransform3D.M11
F:CoreAnimation.CATransform3D.M12
F:CoreAnimation.CATransform3D.M13
@@ -6581,24 +5160,6 @@ F:CoreAnimation.CATransform3D.M44
F:CoreAudioKit.AUGenericViewDisplayFlags.ParametersDisplay
F:CoreAudioKit.AUGenericViewDisplayFlags.PropertiesDisplay
F:CoreAudioKit.AUGenericViewDisplayFlags.TitleDisplay
-F:CoreBluetooth.CBATTError.AttributeNotFound
-F:CoreBluetooth.CBATTError.AttributeNotLong
-F:CoreBluetooth.CBATTError.InsufficientAuthentication
-F:CoreBluetooth.CBATTError.InsufficientAuthorization
-F:CoreBluetooth.CBATTError.InsufficientEncryption
-F:CoreBluetooth.CBATTError.InsufficientEncryptionKeySize
-F:CoreBluetooth.CBATTError.InsufficientResources
-F:CoreBluetooth.CBATTError.InvalidAttributeValueLength
-F:CoreBluetooth.CBATTError.InvalidHandle
-F:CoreBluetooth.CBATTError.InvalidOffset
-F:CoreBluetooth.CBATTError.InvalidPdu
-F:CoreBluetooth.CBATTError.PrepareQueueFull
-F:CoreBluetooth.CBATTError.ReadNotPermitted
-F:CoreBluetooth.CBATTError.RequestNotSupported
-F:CoreBluetooth.CBATTError.Success
-F:CoreBluetooth.CBATTError.UnlikelyError
-F:CoreBluetooth.CBATTError.UnsupportedGroupType
-F:CoreBluetooth.CBATTError.WriteNotPermitted
F:CoreBluetooth.CBAttributePermissions.Readable
F:CoreBluetooth.CBAttributePermissions.ReadEncryptionRequired
F:CoreBluetooth.CBAttributePermissions.Writeable
@@ -6654,82 +5215,23 @@ F:CoreBluetooth.CBManagerState.Resetting
F:CoreBluetooth.CBManagerState.Unauthorized
F:CoreBluetooth.CBManagerState.Unknown
F:CoreBluetooth.CBManagerState.Unsupported
-F:CoreBluetooth.CBPeripheralManagerConnectionLatency.High
-F:CoreBluetooth.CBPeripheralManagerConnectionLatency.Low
-F:CoreBluetooth.CBPeripheralManagerConnectionLatency.Medium
F:CoreBluetooth.CBPeripheralManagerState.PoweredOff
F:CoreBluetooth.CBPeripheralManagerState.PoweredOn
F:CoreBluetooth.CBPeripheralManagerState.Resetting
F:CoreBluetooth.CBPeripheralManagerState.Unauthorized
F:CoreBluetooth.CBPeripheralManagerState.Unknown
F:CoreBluetooth.CBPeripheralManagerState.Unsupported
-F:CoreBluetooth.CBPeripheralState.Connected
-F:CoreBluetooth.CBPeripheralState.Connecting
-F:CoreBluetooth.CBPeripheralState.Disconnected
-F:CoreBluetooth.CBPeripheralState.Disconnecting
-F:CoreData.MigrationErrorType.EntityMigrationPolicy
-F:CoreData.MigrationErrorType.ExternalRecordImport
-F:CoreData.MigrationErrorType.HistoryTokenExpired
-F:CoreData.MigrationErrorType.InferredMappingModel
-F:CoreData.MigrationErrorType.Migration
-F:CoreData.MigrationErrorType.MigrationCancelled
-F:CoreData.MigrationErrorType.MigrationManagerDestinationStore
-F:CoreData.MigrationErrorType.MigrationManagerSourceStore
-F:CoreData.MigrationErrorType.MigrationMissingMappingModel
-F:CoreData.MigrationErrorType.MigrationMissingSourceModel
-F:CoreData.NSAttributeType.Binary
-F:CoreData.NSAttributeType.Boolean
F:CoreData.NSAttributeType.CompositeAttributeType
-F:CoreData.NSAttributeType.Date
-F:CoreData.NSAttributeType.Decimal
-F:CoreData.NSAttributeType.Double
-F:CoreData.NSAttributeType.Float
-F:CoreData.NSAttributeType.Integer16
-F:CoreData.NSAttributeType.Integer32
-F:CoreData.NSAttributeType.Integer64
-F:CoreData.NSAttributeType.ObjectID
-F:CoreData.NSAttributeType.String
-F:CoreData.NSAttributeType.Transformable
-F:CoreData.NSAttributeType.Undefined
-F:CoreData.NSAttributeType.Uri
-F:CoreData.NSAttributeType.Uuid
-F:CoreData.NSBatchDeleteRequestResultType.Count
-F:CoreData.NSBatchDeleteRequestResultType.ObjectIDs
-F:CoreData.NSBatchDeleteRequestResultType.StatusOnly
F:CoreData.NSBatchInsertRequestResultType.Count
F:CoreData.NSBatchInsertRequestResultType.ObjectIds
F:CoreData.NSBatchInsertRequestResultType.StatusOnly
-F:CoreData.NSBatchUpdateRequestResultType.StatusOnly
-F:CoreData.NSBatchUpdateRequestResultType.UpdatedObjectIDs
-F:CoreData.NSBatchUpdateRequestResultType.UpdatedObjectsCount
F:CoreData.NSDeleteRule.Cascade
F:CoreData.NSDeleteRule.Deny
F:CoreData.NSDeleteRule.NoAction
F:CoreData.NSDeleteRule.Nullify
-F:CoreData.NSEntityMappingType.Add
-F:CoreData.NSEntityMappingType.Copy
-F:CoreData.NSEntityMappingType.Custom
-F:CoreData.NSEntityMappingType.Remove
-F:CoreData.NSEntityMappingType.Transform
-F:CoreData.NSEntityMappingType.Undefined
-F:CoreData.NSFetchedResultsChangeType.Delete
-F:CoreData.NSFetchedResultsChangeType.Insert
-F:CoreData.NSFetchedResultsChangeType.Move
-F:CoreData.NSFetchedResultsChangeType.Update
-F:CoreData.NSFetchIndexElementType.Binary
-F:CoreData.NSFetchIndexElementType.RTree
-F:CoreData.NSFetchRequestResultType.DictionaryResultType
-F:CoreData.NSFetchRequestResultType.ManagedObject
-F:CoreData.NSFetchRequestResultType.ManagedObjectID
-F:CoreData.NSFetchRequestResultType.NSCountResultType
F:CoreData.NSManagedObjectContextConcurrencyType.Confinement
F:CoreData.NSManagedObjectContextConcurrencyType.MainQueue
F:CoreData.NSManagedObjectContextConcurrencyType.PrivateQueue
-F:CoreData.NSMergePolicyType.Error
-F:CoreData.NSMergePolicyType.Overwrite
-F:CoreData.NSMergePolicyType.PropertyObjectTrump
-F:CoreData.NSMergePolicyType.PropertyStoreTrump
-F:CoreData.NSMergePolicyType.RollbackMerge
F:CoreData.NSPersistentCloudKitContainerEventResultType.CountEvents
F:CoreData.NSPersistentCloudKitContainerEventResultType.Events
F:CoreData.NSPersistentCloudKitContainerEventType.Export
@@ -6792,171 +5294,13 @@ F:CoreData.ValidationErrorType.RelationshipLacksMinimumCount
F:CoreData.ValidationErrorType.StringPatternMatching
F:CoreData.ValidationErrorType.StringTooLong
F:CoreData.ValidationErrorType.StringTooShort
-F:CoreFoundation.CFBundle.Architecture.ARM
-F:CoreFoundation.CFBundle.Architecture.ARM64
-F:CoreFoundation.CFBundle.Architecture.I386
-F:CoreFoundation.CFBundle.Architecture.PPC
-F:CoreFoundation.CFBundle.Architecture.PPC64
-F:CoreFoundation.CFBundle.Architecture.X86_64
-F:CoreFoundation.CFBundle.PackageType.Application
-F:CoreFoundation.CFBundle.PackageType.Bundle
-F:CoreFoundation.CFBundle.PackageType.Framework
F:CoreFoundation.CFComparisonResult.EqualTo
F:CoreFoundation.CFComparisonResult.GreaterThan
F:CoreFoundation.CFComparisonResult.LessThan
-F:CoreFoundation.CFErrorDomain.Cocoa
-F:CoreFoundation.CFErrorDomain.Mach
-F:CoreFoundation.CFErrorDomain.OSStatus
-F:CoreFoundation.CFErrorDomain.Posix
-F:CoreFoundation.CFExceptionDataKey.Description
-F:CoreFoundation.CFExceptionDataKey.LocalizedDescription
-F:CoreFoundation.CFExceptionDataKey.LocalizedFailureReason
-F:CoreFoundation.CFExceptionDataKey.LocalizedRecoverySuggestion
-F:CoreFoundation.CFExceptionDataKey.UnderlyingError
-F:CoreFoundation.CFMessagePortSendRequestStatus.BecameInvalidError
-F:CoreFoundation.CFMessagePortSendRequestStatus.IsInvalid
-F:CoreFoundation.CFMessagePortSendRequestStatus.ReceiveTimeout
-F:CoreFoundation.CFMessagePortSendRequestStatus.SendTimeout
-F:CoreFoundation.CFMessagePortSendRequestStatus.Success
-F:CoreFoundation.CFMessagePortSendRequestStatus.TransportError
-F:CoreFoundation.CFNetworkErrors.AppTransportSecurityRequiresSecureConnection
-F:CoreFoundation.CFNetworkErrors.BackgroundSessionInUseByAnotherProcess
-F:CoreFoundation.CFNetworkErrors.BackgroundSessionWasDisconnected
-F:CoreFoundation.CFNetworkErrors.BadServerResponse
-F:CoreFoundation.CFNetworkErrors.BadURL
-F:CoreFoundation.CFNetworkErrors.CallIsActive
-F:CoreFoundation.CFNetworkErrors.Cancelled
-F:CoreFoundation.CFNetworkErrors.CannotCloseFile
-F:CoreFoundation.CFNetworkErrors.CannotConnectToHost
-F:CoreFoundation.CFNetworkErrors.CannotCreateFile
-F:CoreFoundation.CFNetworkErrors.CannotDecodeContentData
-F:CoreFoundation.CFNetworkErrors.CannotDecodeRawData
-F:CoreFoundation.CFNetworkErrors.CannotFindHost
-F:CoreFoundation.CFNetworkErrors.CannotLoadFromNetwork
-F:CoreFoundation.CFNetworkErrors.CannotMoveFile
-F:CoreFoundation.CFNetworkErrors.CannotOpenFile
-F:CoreFoundation.CFNetworkErrors.CannotParseCookieFile
-F:CoreFoundation.CFNetworkErrors.CannotParseResponse
-F:CoreFoundation.CFNetworkErrors.CannotRemoveFile
-F:CoreFoundation.CFNetworkErrors.CannotWriteToFile
-F:CoreFoundation.CFNetworkErrors.ClientCertificateRejected
-F:CoreFoundation.CFNetworkErrors.ClientCertificateRequired
-F:CoreFoundation.CFNetworkErrors.DataLengthExceedsMaximum
-F:CoreFoundation.CFNetworkErrors.DataNotAllowed
-F:CoreFoundation.CFNetworkErrors.DNSLookupFailed
-F:CoreFoundation.CFNetworkErrors.DownloadDecodingFailedMidStream
-F:CoreFoundation.CFNetworkErrors.DownloadDecodingFailedToComplete
-F:CoreFoundation.CFNetworkErrors.FileDoesNotExist
-F:CoreFoundation.CFNetworkErrors.FileIsDirectory
-F:CoreFoundation.CFNetworkErrors.FileOutsideSafeArea
-F:CoreFoundation.CFNetworkErrors.FtpUnexpectedStatusCode
-F:CoreFoundation.CFNetworkErrors.HostNotFound
-F:CoreFoundation.CFNetworkErrors.HostUnknown
-F:CoreFoundation.CFNetworkErrors.HttpAuthenticationTypeUnsupported
-F:CoreFoundation.CFNetworkErrors.HttpBadCredentials
-F:CoreFoundation.CFNetworkErrors.HttpBadProxyCredentials
-F:CoreFoundation.CFNetworkErrors.HttpBadURL
-F:CoreFoundation.CFNetworkErrors.HttpConnectionLost
-F:CoreFoundation.CFNetworkErrors.HttpParseFailure
-F:CoreFoundation.CFNetworkErrors.HttpProxyConnectionFailure
-F:CoreFoundation.CFNetworkErrors.HttpRedirectionLoopDetected
-F:CoreFoundation.CFNetworkErrors.HttpsProxyConnectionFailure
-F:CoreFoundation.CFNetworkErrors.HttpsProxyFailureUnexpectedResponseToConnectMethod
-F:CoreFoundation.CFNetworkErrors.HTTPTooManyRedirects
-F:CoreFoundation.CFNetworkErrors.InternationalRoamingOff
-F:CoreFoundation.CFNetworkErrors.NetServiceBadArgument
-F:CoreFoundation.CFNetworkErrors.NetServiceCancel
-F:CoreFoundation.CFNetworkErrors.NetServiceCollision
-F:CoreFoundation.CFNetworkErrors.NetServiceDnsServiceFailure
-F:CoreFoundation.CFNetworkErrors.NetServiceInProgress
-F:CoreFoundation.CFNetworkErrors.NetServiceInvalid
F:CoreFoundation.CFNetworkErrors.NetServiceMissingRequiredConfiguration
-F:CoreFoundation.CFNetworkErrors.NetServiceNotFound
-F:CoreFoundation.CFNetworkErrors.NetServiceTimeout
-F:CoreFoundation.CFNetworkErrors.NetServiceUnknown
-F:CoreFoundation.CFNetworkErrors.NetworkConnectionLost
-F:CoreFoundation.CFNetworkErrors.NoPermissionsToReadFile
-F:CoreFoundation.CFNetworkErrors.NotConnectedToInternet
-F:CoreFoundation.CFNetworkErrors.PacFileAuth
-F:CoreFoundation.CFNetworkErrors.PacFileError
-F:CoreFoundation.CFNetworkErrors.RedirectToNonExistentLocation
-F:CoreFoundation.CFNetworkErrors.RequestBodyStreamExhausted
-F:CoreFoundation.CFNetworkErrors.ResourceUnavailable
-F:CoreFoundation.CFNetworkErrors.SecureConnectionFailed
-F:CoreFoundation.CFNetworkErrors.ServerCertificateHasBadDate
-F:CoreFoundation.CFNetworkErrors.ServerCertificateHasUnknownRoot
-F:CoreFoundation.CFNetworkErrors.ServerCertificateNotYetValid
-F:CoreFoundation.CFNetworkErrors.ServerCertificateUntrusted
-F:CoreFoundation.CFNetworkErrors.Socks4IdConflict
-F:CoreFoundation.CFNetworkErrors.Socks4IdentdFailed
-F:CoreFoundation.CFNetworkErrors.Socks4RequestFailed
-F:CoreFoundation.CFNetworkErrors.Socks4UnknownStatusCode
-F:CoreFoundation.CFNetworkErrors.Socks5BadCredentials
-F:CoreFoundation.CFNetworkErrors.Socks5BadResponseAddr
-F:CoreFoundation.CFNetworkErrors.Socks5BadState
-F:CoreFoundation.CFNetworkErrors.Socks5NoAcceptableMethod
-F:CoreFoundation.CFNetworkErrors.Socks5UnsupportedNegotiationMethod
-F:CoreFoundation.CFNetworkErrors.SocksUnknownClientVersion
-F:CoreFoundation.CFNetworkErrors.SocksUnsupportedServerVersion
-F:CoreFoundation.CFNetworkErrors.TimedOut
-F:CoreFoundation.CFNetworkErrors.Unknown
-F:CoreFoundation.CFNetworkErrors.UnsupportedURL
-F:CoreFoundation.CFNetworkErrors.UserAuthenticationRequired
-F:CoreFoundation.CFNetworkErrors.UserCancelledAuthentication
-F:CoreFoundation.CFNetworkErrors.ZeroByteResource
-F:CoreFoundation.CFNotificationSuspensionBehavior.Coalesce
-F:CoreFoundation.CFNotificationSuspensionBehavior.DeliverImmediately
-F:CoreFoundation.CFNotificationSuspensionBehavior.Drop
-F:CoreFoundation.CFNotificationSuspensionBehavior.Hold
-F:CoreFoundation.CFPreferences.CurrentApplication
-F:CoreFoundation.CFPropertyListFormat.BinaryFormat1
-F:CoreFoundation.CFPropertyListFormat.OpenStep
-F:CoreFoundation.CFPropertyListFormat.XmlFormat1
-F:CoreFoundation.CFPropertyListMutabilityOptions.Immutable
-F:CoreFoundation.CFPropertyListMutabilityOptions.MutableContainers
-F:CoreFoundation.CFPropertyListMutabilityOptions.MutableContainersAndLeaves
-F:CoreFoundation.CFProxyType.AutoConfigurationJavaScript
-F:CoreFoundation.CFProxyType.AutoConfigurationUrl
-F:CoreFoundation.CFProxyType.FTP
-F:CoreFoundation.CFProxyType.HTTP
-F:CoreFoundation.CFProxyType.HTTPS
-F:CoreFoundation.CFProxyType.None
-F:CoreFoundation.CFProxyType.SOCKS
-F:CoreFoundation.CFRunLoopExitReason.Finished
-F:CoreFoundation.CFRunLoopExitReason.HandledSource
-F:CoreFoundation.CFRunLoopExitReason.Stopped
-F:CoreFoundation.CFRunLoopExitReason.TimedOut
-F:CoreFoundation.CFSocketCallBackType.AcceptCallBack
-F:CoreFoundation.CFSocketCallBackType.ConnectCallBack
-F:CoreFoundation.CFSocketCallBackType.DataCallBack
-F:CoreFoundation.CFSocketCallBackType.NoCallBack
-F:CoreFoundation.CFSocketCallBackType.ReadCallBack
-F:CoreFoundation.CFSocketCallBackType.WriteCallBack
-F:CoreFoundation.CFSocketError.Error
-F:CoreFoundation.CFSocketError.Success
-F:CoreFoundation.CFSocketError.Timeout
-F:CoreFoundation.CFSocketFlags.AutomaticallyReenableAcceptCallBack
-F:CoreFoundation.CFSocketFlags.AutomaticallyReenableDataCallBack
-F:CoreFoundation.CFSocketFlags.AutomaticallyReenableReadCallBack
-F:CoreFoundation.CFSocketFlags.AutomaticallyReenableWriteCallBack
-F:CoreFoundation.CFSocketFlags.CloseOnInvalidate
-F:CoreFoundation.CFSocketFlags.LeaveErrors
-F:CoreFoundation.CFStreamClientContext.Info
-F:CoreFoundation.CFStreamClientContext.Version
F:CoreFoundation.CFStreamEventType.CanAcceptBytes
-F:CoreFoundation.CFStreamEventType.EndEncountered
-F:CoreFoundation.CFStreamEventType.ErrorOccurred
-F:CoreFoundation.CFStreamEventType.HasBytesAvailable
-F:CoreFoundation.CFStreamEventType.None
F:CoreFoundation.CFStreamEventType.OpenCompleted
-F:CoreFoundation.CFStreamStatus.AtEnd
-F:CoreFoundation.CFStreamStatus.Closed
-F:CoreFoundation.CFStreamStatus.Error
-F:CoreFoundation.CFStreamStatus.NotOpen
-F:CoreFoundation.CFStreamStatus.Open
F:CoreFoundation.CFStreamStatus.Opening
-F:CoreFoundation.CFStreamStatus.Reading
-F:CoreFoundation.CFStreamStatus.Writing
F:CoreFoundation.CFStringTransform.FullwidthHalfwidth
F:CoreFoundation.CFStringTransform.HiraganaKatakana
F:CoreFoundation.CFStringTransform.LatinArabic
@@ -7558,51 +5902,13 @@ F:CoreImage.FaceDetectorAccuracy.High
F:CoreImage.FaceDetectorAccuracy.Low
F:CoreLocation.CLAccuracyAuthorization.FullAccuracy
F:CoreLocation.CLAccuracyAuthorization.ReducedAccuracy
-F:CoreLocation.CLActivityType.Airborne
-F:CoreLocation.CLActivityType.AutomotiveNavigation
-F:CoreLocation.CLActivityType.Fitness
-F:CoreLocation.CLActivityType.Other
-F:CoreLocation.CLActivityType.OtherNavigation
-F:CoreLocation.CLAuthorizationStatus.Authorized
-F:CoreLocation.CLAuthorizationStatus.AuthorizedAlways
-F:CoreLocation.CLAuthorizationStatus.AuthorizedWhenInUse
-F:CoreLocation.CLAuthorizationStatus.Denied
-F:CoreLocation.CLAuthorizationStatus.NotDetermined
-F:CoreLocation.CLAuthorizationStatus.Restricted
-F:CoreLocation.CLDeviceOrientation.FaceDown
-F:CoreLocation.CLDeviceOrientation.FaceUp
-F:CoreLocation.CLDeviceOrientation.LandscapeLeft
-F:CoreLocation.CLDeviceOrientation.LandscapeRight
-F:CoreLocation.CLDeviceOrientation.Portrait
-F:CoreLocation.CLDeviceOrientation.PortraitUpsideDown
-F:CoreLocation.CLDeviceOrientation.Unknown
-F:CoreLocation.CLError.DeferredAccuracyTooLow
-F:CoreLocation.CLError.DeferredCanceled
-F:CoreLocation.CLError.DeferredDistanceFiltered
-F:CoreLocation.CLError.DeferredFailed
-F:CoreLocation.CLError.DeferredNotUpdatingLocation
-F:CoreLocation.CLError.Denied
-F:CoreLocation.CLError.GeocodeCanceled
-F:CoreLocation.CLError.GeocodeFoundNoResult
-F:CoreLocation.CLError.GeocodeFoundPartialResult
-F:CoreLocation.CLError.HeadingFailure
F:CoreLocation.CLError.HistoricalLocationError
-F:CoreLocation.CLError.LocationUnknown
-F:CoreLocation.CLError.Network
F:CoreLocation.CLError.PromptDeclined
-F:CoreLocation.CLError.RangingFailure
-F:CoreLocation.CLError.RangingUnavailable
-F:CoreLocation.CLError.RegionMonitoringDenied
-F:CoreLocation.CLError.RegionMonitoringFailure
-F:CoreLocation.CLError.RegionMonitoringResponseDelayed
-F:CoreLocation.CLError.RegionMonitoringSetupDelayed
F:CoreLocation.CLLiveUpdateConfiguration.Airborne
F:CoreLocation.CLLiveUpdateConfiguration.AutomotiveNavigation
F:CoreLocation.CLLiveUpdateConfiguration.Default
F:CoreLocation.CLLiveUpdateConfiguration.Fitness
F:CoreLocation.CLLiveUpdateConfiguration.OtherNavigation
-F:CoreLocation.CLLocationCoordinate2D.Latitude
-F:CoreLocation.CLLocationCoordinate2D.Longitude
F:CoreLocation.CLLocationPushServiceError.MissingEntitlement
F:CoreLocation.CLLocationPushServiceError.MissingPushExtension
F:CoreLocation.CLLocationPushServiceError.MissingPushServerEnvironment
@@ -7908,11 +6214,6 @@ F:CoreMidi.MidiCICategoryOptions.ProcessInquirySupported
F:CoreMidi.MidiCICategoryOptions.ProfileConfigurationSupported
F:CoreMidi.MidiCICategoryOptions.PropertyExchangeSupported
F:CoreMidi.MidiCICategoryOptions.ProtocolNegotiation
-F:CoreMidi.MidiCIDeviceIdentification.Family
-F:CoreMidi.MidiCIDeviceIdentification.Manufacturer
-F:CoreMidi.MidiCIDeviceIdentification.ModelNumber
-F:CoreMidi.MidiCIDeviceIdentification.Reserved
-F:CoreMidi.MidiCIDeviceIdentification.RevisionLevel
F:CoreMidi.MidiCIDeviceType.LegacyMidi1
F:CoreMidi.MidiCIDeviceType.Unknown
F:CoreMidi.MidiCIDeviceType.UsbMidi
@@ -7966,11 +6267,6 @@ F:CoreMidi.MidiCIPropertyExchangeMessageType.ReplyToSetPropertyData
F:CoreMidi.MidiCIPropertyExchangeMessageType.ReplyToSubscription
F:CoreMidi.MidiCIPropertyExchangeMessageType.Subscription
F:CoreMidi.MidiCIPropertyExchangeRequestID.BadRequest
-F:CoreMidi.MidiControlTransform.ControlNumber
-F:CoreMidi.MidiControlTransform.ControlType
-F:CoreMidi.MidiControlTransform.Param
-F:CoreMidi.MidiControlTransform.RemappedControlType
-F:CoreMidi.MidiControlTransform.Transform
F:CoreMidi.MidiCVStatus.AssignableControl
F:CoreMidi.MidiCVStatus.AssignablePnc
F:CoreMidi.MidiCVStatus.ChannelPressure
@@ -7986,22 +6282,6 @@ F:CoreMidi.MidiCVStatus.RegisteredControl
F:CoreMidi.MidiCVStatus.RegisteredPnc
F:CoreMidi.MidiCVStatus.RelAssignableControl
F:CoreMidi.MidiCVStatus.RelRegisteredControl
-F:CoreMidi.MidiError.IDNotUnique
-F:CoreMidi.MidiError.InvalidClient
-F:CoreMidi.MidiError.InvalidPort
-F:CoreMidi.MidiError.MessageSendErr
-F:CoreMidi.MidiError.NoConnection
-F:CoreMidi.MidiError.NoCurrentSetup
-F:CoreMidi.MidiError.NotPermitted
-F:CoreMidi.MidiError.ObjectNotFound
-F:CoreMidi.MidiError.Ok
-F:CoreMidi.MidiError.ServerStartErr
-F:CoreMidi.MidiError.SetupFormatErr
-F:CoreMidi.MidiError.UnknownEndpoint
-F:CoreMidi.MidiError.UnknownProperty
-F:CoreMidi.MidiError.WrongEndpointType
-F:CoreMidi.MidiError.WrongPropertyType
-F:CoreMidi.MidiError.WrongThread
F:CoreMidi.MidiMessageType.ChannelVoice1
F:CoreMidi.MidiMessageType.ChannelVoice2
F:CoreMidi.MidiMessageType.Data128
@@ -8012,15 +6292,10 @@ F:CoreMidi.MidiMessageType.SysEx
F:CoreMidi.MidiMessageType.System
F:CoreMidi.MidiMessageType.UnknownF
F:CoreMidi.MidiMessageType.Utility
-F:CoreMidi.MidiNetworkConnectionPolicy.Anyone
-F:CoreMidi.MidiNetworkConnectionPolicy.HostsInContactsList
-F:CoreMidi.MidiNetworkConnectionPolicy.NoOne
F:CoreMidi.MidiNoteAttribute.ManufacturerSpecific
F:CoreMidi.MidiNoteAttribute.None
F:CoreMidi.MidiNoteAttribute.Pitch
F:CoreMidi.MidiNoteAttribute.ProfileSpecific
-F:CoreMidi.MidiPacket.Length
-F:CoreMidi.MidiPacket.TimeStamp
F:CoreMidi.MidiPerNoteManagementOptions.Detach
F:CoreMidi.MidiPerNoteManagementOptions.Reset
F:CoreMidi.MidiProgramChangeOptions.BankValid
@@ -8044,24 +6319,6 @@ F:CoreMidi.MidiSystemStatus.Stop
F:CoreMidi.MidiSystemStatus.SystemReset
F:CoreMidi.MidiSystemStatus.TimingClock
F:CoreMidi.MidiSystemStatus.TuneRequest
-F:CoreMidi.MidiThruConnectionEndpoint.EndpointRef
-F:CoreMidi.MidiThruConnectionEndpoint.UniqueID
-F:CoreMidi.MidiTransform.Param
-F:CoreMidi.MidiTransform.Transform
-F:CoreMidi.MidiTransformControlType.FourteenBit
-F:CoreMidi.MidiTransformControlType.FourteenBitNRpn
-F:CoreMidi.MidiTransformControlType.FourteenBitRpn
-F:CoreMidi.MidiTransformControlType.SevenBit
-F:CoreMidi.MidiTransformControlType.SevenBitNRpn
-F:CoreMidi.MidiTransformControlType.SevenBitRpn
-F:CoreMidi.MidiTransformType.Add
-F:CoreMidi.MidiTransformType.FilterOut
-F:CoreMidi.MidiTransformType.MapControl
-F:CoreMidi.MidiTransformType.MapValue
-F:CoreMidi.MidiTransformType.MaxValue
-F:CoreMidi.MidiTransformType.MinValue
-F:CoreMidi.MidiTransformType.None
-F:CoreMidi.MidiTransformType.Scale
F:CoreMidi.MidiUmpCIObjectBackingType.DriverDevice
F:CoreMidi.MidiUmpCIObjectBackingType.Unknown
F:CoreMidi.MidiUmpCIObjectBackingType.UsbMidi
@@ -8100,22 +6357,8 @@ F:CoreMidi.UmpStreamMessageStatus.ProductInstanceIDNotification
F:CoreMidi.UmpStreamMessageStatus.StartOfClip
F:CoreMidi.UmpStreamMessageStatus.StreamConfigurationNotification
F:CoreMidi.UmpStreamMessageStatus.StreamConfigurationRequest
-F:CoreML.MLComputeUnits.All
-F:CoreML.MLComputeUnits.CpuAndGpu
F:CoreML.MLComputeUnits.CPUAndNeuralEngine
-F:CoreML.MLComputeUnits.CpuOnly
-F:CoreML.MLFeatureType.Dictionary
-F:CoreML.MLFeatureType.Double
-F:CoreML.MLFeatureType.Image
-F:CoreML.MLFeatureType.Int64
-F:CoreML.MLFeatureType.Invalid
-F:CoreML.MLFeatureType.MultiArray
-F:CoreML.MLFeatureType.Sequence
F:CoreML.MLFeatureType.State
-F:CoreML.MLFeatureType.String
-F:CoreML.MLImageSizeConstraintType.Enumerated
-F:CoreML.MLImageSizeConstraintType.Range
-F:CoreML.MLImageSizeConstraintType.Unspecified
F:CoreML.MLModelError.CustomLayer
F:CoreML.MLModelError.CustomModel
F:CoreML.MLModelError.FeatureType
@@ -8159,8 +6402,6 @@ F:CoreMotion.CMAuthorizationStatus.Authorized
F:CoreMotion.CMAuthorizationStatus.Denied
F:CoreMotion.CMAuthorizationStatus.NotDetermined
F:CoreMotion.CMAuthorizationStatus.Restricted
-F:CoreMotion.CMCalibratedMagneticField.Accuracy
-F:CoreMotion.CMCalibratedMagneticField.Field
F:CoreMotion.CMDeviceMotionSensorLocation.Default
F:CoreMotion.CMDeviceMotionSensorLocation.HeadphoneLeft
F:CoreMotion.CMDeviceMotionSensorLocation.HeadphoneRight
@@ -8184,9 +6425,6 @@ F:CoreMotion.CMHighFrequencyHeartRateDataConfidence.High
F:CoreMotion.CMHighFrequencyHeartRateDataConfidence.Highest
F:CoreMotion.CMHighFrequencyHeartRateDataConfidence.Low
F:CoreMotion.CMHighFrequencyHeartRateDataConfidence.Medium
-F:CoreMotion.CMMagneticField.X
-F:CoreMotion.CMMagneticField.Y
-F:CoreMotion.CMMagneticField.Z
F:CoreMotion.CMMagneticFieldCalibrationAccuracy.High
F:CoreMotion.CMMagneticFieldCalibrationAccuracy.Low
F:CoreMotion.CMMagneticFieldCalibrationAccuracy.Medium
@@ -8371,22 +6609,7 @@ F:CoreServices.LSRoles.Editor
F:CoreServices.LSRoles.None
F:CoreServices.LSRoles.Shell
F:CoreServices.LSRoles.Viewer
-F:CoreSpotlight.CSFileProtection.Complete
-F:CoreSpotlight.CSFileProtection.CompleteUnlessOpen
-F:CoreSpotlight.CSFileProtection.CompleteUntilFirstUserAuthentication
-F:CoreSpotlight.CSFileProtection.None
-F:CoreSpotlight.CSIndexErrorCode.IndexingUnsupported
-F:CoreSpotlight.CSIndexErrorCode.IndexUnavailableError
-F:CoreSpotlight.CSIndexErrorCode.InvalidClientStateError
-F:CoreSpotlight.CSIndexErrorCode.InvalidItemError
F:CoreSpotlight.CSIndexErrorCode.MismatchedClientState
-F:CoreSpotlight.CSIndexErrorCode.QuotaExceeded
-F:CoreSpotlight.CSIndexErrorCode.RemoteConnectionError
-F:CoreSpotlight.CSIndexErrorCode.UnknownError
-F:CoreSpotlight.CSSearchQueryErrorCode.Cancelled
-F:CoreSpotlight.CSSearchQueryErrorCode.IndexUnreachable
-F:CoreSpotlight.CSSearchQueryErrorCode.InvalidQuery
-F:CoreSpotlight.CSSearchQueryErrorCode.Unknown
F:CoreSpotlight.CSSearchQuerySourceOptions.AllowMail
F:CoreSpotlight.CSSearchQuerySourceOptions.Default
F:CoreSpotlight.CSSuggestionKind.Custom
@@ -8402,558 +6625,18 @@ F:CoreTelephony.CTCellularPlanProvisioningAddPlanResult.Cancel
F:CoreTelephony.CTCellularPlanProvisioningAddPlanResult.Fail
F:CoreTelephony.CTCellularPlanProvisioningAddPlanResult.Success
F:CoreTelephony.CTCellularPlanProvisioningAddPlanResult.Unknown
-F:CoreTelephony.CTErrorDomain.Mach
-F:CoreTelephony.CTErrorDomain.NoError
-F:CoreTelephony.CTErrorDomain.Posix
-F:CoreText.CTBaselineClass.Hanging
-F:CoreText.CTBaselineClass.IdeographicCentered
-F:CoreText.CTBaselineClass.IdeographicHigh
-F:CoreText.CTBaselineClass.IdeographicLow
-F:CoreText.CTBaselineClass.Math
-F:CoreText.CTBaselineClass.Roman
-F:CoreText.CTBaselineFont.Original
-F:CoreText.CTBaselineFont.Reference
-F:CoreText.CTCharacterCollection.AdobeCNS1
-F:CoreText.CTCharacterCollection.AdobeGB1
-F:CoreText.CTCharacterCollection.AdobeJapan1
-F:CoreText.CTCharacterCollection.AdobeJapan2
-F:CoreText.CTCharacterCollection.AdobeKorea1
-F:CoreText.CTCharacterCollection.IdentityMapping
-F:CoreText.CTFontDescriptorMatchingState.Downloading
-F:CoreText.CTFontDescriptorMatchingState.DownloadingFinished
-F:CoreText.CTFontDescriptorMatchingState.FailedWithError
-F:CoreText.CTFontDescriptorMatchingState.Finished
-F:CoreText.CTFontDescriptorMatchingState.Matched
-F:CoreText.CTFontDescriptorMatchingState.Stalled
-F:CoreText.CTFontDescriptorMatchingState.Started
-F:CoreText.CTFontDescriptorMatchingState.WillBeginDownloading
-F:CoreText.CTFontDescriptorMatchingState.WillBeginQuerying
-F:CoreText.CTFontFeatureAllTypographicFeatures.Selector.AllTypeFeaturesOff
-F:CoreText.CTFontFeatureAllTypographicFeatures.Selector.AllTypeFeaturesOn
-F:CoreText.CTFontFeatureAlternateKana.Selector.AlternateHorizKanaOff
-F:CoreText.CTFontFeatureAlternateKana.Selector.AlternateHorizKanaOn
-F:CoreText.CTFontFeatureAlternateKana.Selector.AlternateVertKanaOff
-F:CoreText.CTFontFeatureAlternateKana.Selector.AlternateVertKanaOn
-F:CoreText.CTFontFeatureAnnotation.Selector.BoxAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.CircleAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.DiamondAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.InvertedBoxAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.InvertedCircleAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.InvertedRoundedBoxAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.NoAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.ParenthesisAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.PeriodAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.RomanNumeralAnnotation
-F:CoreText.CTFontFeatureAnnotation.Selector.RoundedBoxAnnotation
-F:CoreText.CTFontFeatureCaseSensitiveLayout.Selector.CaseSensitiveLayoutOff
-F:CoreText.CTFontFeatureCaseSensitiveLayout.Selector.CaseSensitiveLayoutOn
-F:CoreText.CTFontFeatureCaseSensitiveLayout.Selector.CaseSensitiveSpacingOff
-F:CoreText.CTFontFeatureCaseSensitiveLayout.Selector.CaseSensitiveSpacingOn
-F:CoreText.CTFontFeatureCharacterAlternatives.Selector.NoAlternates
-F:CoreText.CTFontFeatureCharacterShape.Selector.ExpertCharacters
-F:CoreText.CTFontFeatureCharacterShape.Selector.HojoCharacters
-F:CoreText.CTFontFeatureCharacterShape.Selector.JIS1978Characters
-F:CoreText.CTFontFeatureCharacterShape.Selector.JIS1983Characters
-F:CoreText.CTFontFeatureCharacterShape.Selector.JIS1990Characters
-F:CoreText.CTFontFeatureCharacterShape.Selector.JIS2004Characters
-F:CoreText.CTFontFeatureCharacterShape.Selector.NLCCharacters
-F:CoreText.CTFontFeatureCharacterShape.Selector.SimplifiedCharacters
-F:CoreText.CTFontFeatureCharacterShape.Selector.TraditionalAltFive
-F:CoreText.CTFontFeatureCharacterShape.Selector.TraditionalAltFour
-F:CoreText.CTFontFeatureCharacterShape.Selector.TraditionalAltOne
-F:CoreText.CTFontFeatureCharacterShape.Selector.TraditionalAltThree
-F:CoreText.CTFontFeatureCharacterShape.Selector.TraditionalAltTwo
-F:CoreText.CTFontFeatureCharacterShape.Selector.TraditionalCharacters
-F:CoreText.CTFontFeatureCharacterShape.Selector.TraditionalNamesCharacters
-F:CoreText.CTFontFeatureCJKRomanSpacing.Selector.DefaultCJKRoman
-F:CoreText.CTFontFeatureCJKRomanSpacing.Selector.FullWidthCJKRoman
-F:CoreText.CTFontFeatureCJKRomanSpacing.Selector.HalfWidthCJKRoman
-F:CoreText.CTFontFeatureCJKRomanSpacing.Selector.ProportionalCJKRoman
-F:CoreText.CTFontFeatureCJKSymbolAlternatives.Selector.CJKSymbolAltFive
-F:CoreText.CTFontFeatureCJKSymbolAlternatives.Selector.CJKSymbolAltFour
-F:CoreText.CTFontFeatureCJKSymbolAlternatives.Selector.CJKSymbolAltOne
-F:CoreText.CTFontFeatureCJKSymbolAlternatives.Selector.CJKSymbolAltThree
-F:CoreText.CTFontFeatureCJKSymbolAlternatives.Selector.CJKSymbolAltTwo
-F:CoreText.CTFontFeatureCJKSymbolAlternatives.Selector.NoCJKSymbolAlternatives
-F:CoreText.CTFontFeatureCJKVerticalRomanPlacement.Selector.CJKVerticalRomanCentered
-F:CoreText.CTFontFeatureCJKVerticalRomanPlacement.Selector.CJKVerticalRomanHBaseline
-F:CoreText.CTFontFeatureContextualAlternates.Selector.ContextualAlternatesOff
-F:CoreText.CTFontFeatureContextualAlternates.Selector.ContextualAlternatesOn
-F:CoreText.CTFontFeatureContextualAlternates.Selector.ContextualSwashAlternatesOff
-F:CoreText.CTFontFeatureContextualAlternates.Selector.ContextualSwashAlternatesOn
-F:CoreText.CTFontFeatureContextualAlternates.Selector.SwashAlternatesOff
-F:CoreText.CTFontFeatureContextualAlternates.Selector.SwashAlternatesOn
-F:CoreText.CTFontFeatureCursiveConnection.Selector.Cursive
-F:CoreText.CTFontFeatureCursiveConnection.Selector.PartiallyConnected
-F:CoreText.CTFontFeatureCursiveConnection.Selector.Unconnected
-F:CoreText.CTFontFeatureDesignComplexity.Selector.DesignLevel1
-F:CoreText.CTFontFeatureDesignComplexity.Selector.DesignLevel2
-F:CoreText.CTFontFeatureDesignComplexity.Selector.DesignLevel3
-F:CoreText.CTFontFeatureDesignComplexity.Selector.DesignLevel4
-F:CoreText.CTFontFeatureDesignComplexity.Selector.DesignLevel5
-F:CoreText.CTFontFeatureDiacritics.Selector.DecomposeDiacritics
-F:CoreText.CTFontFeatureDiacritics.Selector.HideDiacritics
-F:CoreText.CTFontFeatureDiacritics.Selector.ShowDiacritics
-F:CoreText.CTFontFeatureFractions.Selector.DiagonalFractions
-F:CoreText.CTFontFeatureFractions.Selector.NoFractions
-F:CoreText.CTFontFeatureFractions.Selector.VerticalFractions
-F:CoreText.CTFontFeatureIdeographicAlternatives.Selector.IdeographicAltFive
-F:CoreText.CTFontFeatureIdeographicAlternatives.Selector.IdeographicAltFour
-F:CoreText.CTFontFeatureIdeographicAlternatives.Selector.IdeographicAltOne
-F:CoreText.CTFontFeatureIdeographicAlternatives.Selector.IdeographicAltThree
-F:CoreText.CTFontFeatureIdeographicAlternatives.Selector.IdeographicAltTwo
-F:CoreText.CTFontFeatureIdeographicAlternatives.Selector.NoIdeographicAlternatives
-F:CoreText.CTFontFeatureIdeographicSpacing.Selector.FullWidthIdeographs
-F:CoreText.CTFontFeatureIdeographicSpacing.Selector.HalfWidthIdeographs
-F:CoreText.CTFontFeatureIdeographicSpacing.Selector.ProportionalIdeographs
-F:CoreText.CTFontFeatureItalicCJKRoman.Selector.CJKItalicRoman
-F:CoreText.CTFontFeatureItalicCJKRoman.Selector.CJKItalicRomanOff
-F:CoreText.CTFontFeatureItalicCJKRoman.Selector.CJKItalicRomanOn
-F:CoreText.CTFontFeatureItalicCJKRoman.Selector.NoCJKItalicRoman
-F:CoreText.CTFontFeatureKanaSpacing.Selector.FullWidthKana
-F:CoreText.CTFontFeatureKanaSpacing.Selector.ProportionalKana
-F:CoreText.CTFontFeatureLetterCase.Selector.AllCaps
-F:CoreText.CTFontFeatureLetterCase.Selector.AllLowerCase
-F:CoreText.CTFontFeatureLetterCase.Selector.InitialCaps
-F:CoreText.CTFontFeatureLetterCase.Selector.InitialCapsAndSmallCaps
-F:CoreText.CTFontFeatureLetterCase.Selector.SmallCaps
-F:CoreText.CTFontFeatureLetterCase.Selector.UpperAndLowerCase
-F:CoreText.CTFontFeatureLigatures.Selector.AbbrevSquaredLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.AbbrevSquaredLigaturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.CommonLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.CommonLigaturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.ContextualLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.ContextualLigaturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.DiphthongLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.DiphthongLigaturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.HistoricalLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.HistoricalLigaturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.LogosOff
-F:CoreText.CTFontFeatureLigatures.Selector.LogosOn
-F:CoreText.CTFontFeatureLigatures.Selector.RareLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.RareLigaturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.RebusPicturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.RebusPicturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.RequiredLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.RequiredLigaturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.SquaredLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.SquaredLigaturesOn
-F:CoreText.CTFontFeatureLigatures.Selector.SymbolLigaturesOff
-F:CoreText.CTFontFeatureLigatures.Selector.SymbolLigaturesOn
-F:CoreText.CTFontFeatureLinguisticRearrangementConnection.Selector.LinguisticRearrangementOff
-F:CoreText.CTFontFeatureLinguisticRearrangementConnection.Selector.LinguisticRearrangementOn
-F:CoreText.CTFontFeatureLowerCase.Selector.DefaultLowerCase
-F:CoreText.CTFontFeatureLowerCase.Selector.LowerCasePetiteCaps
-F:CoreText.CTFontFeatureLowerCase.Selector.LowerCaseSmallCaps
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.AsteriskToMultiplyOff
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.AsteriskToMultiplyOn
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.ExponentsOff
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.ExponentsOn
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.HyphenToMinusOff
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.HyphenToMinusOn
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.InequalityLigaturesOff
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.InequalityLigaturesOn
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.MathematicalGreekOff
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.MathematicalGreekOn
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.SlashToDivideOff
-F:CoreText.CTFontFeatureMathematicalExtras.Selector.SlashToDivideOn
-F:CoreText.CTFontFeatureNumberCase.Selector.LowerCaseNumbers
-F:CoreText.CTFontFeatureNumberCase.Selector.UpperCaseNumbers
-F:CoreText.CTFontFeatureNumberSpacing.Selector.MonospacedNumbers
-F:CoreText.CTFontFeatureNumberSpacing.Selector.ProportionalNumbers
-F:CoreText.CTFontFeatureNumberSpacing.Selector.QuarterWidthNumbers
-F:CoreText.CTFontFeatureNumberSpacing.Selector.ThirdWidthNumbers
-F:CoreText.CTFontFeatureOrnamentSets.Selector.DecorativeBorders
-F:CoreText.CTFontFeatureOrnamentSets.Selector.Dingbats
-F:CoreText.CTFontFeatureOrnamentSets.Selector.Fleurons
-F:CoreText.CTFontFeatureOrnamentSets.Selector.InternationalSymbols
-F:CoreText.CTFontFeatureOrnamentSets.Selector.MathSymbols
-F:CoreText.CTFontFeatureOrnamentSets.Selector.NoOrnaments
-F:CoreText.CTFontFeatureOrnamentSets.Selector.PiCharacters
-F:CoreText.CTFontFeatureOverlappingCharacters.Selector.PreventOverlapOff
-F:CoreText.CTFontFeatureOverlappingCharacters.Selector.PreventOverlapOn
-F:CoreText.CTFontFeatureRubyKana.Selector.NoRubyKana
-F:CoreText.CTFontFeatureRubyKana.Selector.RubyKana
-F:CoreText.CTFontFeatureRubyKana.Selector.RubyKanaOff
-F:CoreText.CTFontFeatureRubyKana.Selector.RubyKanaOn
-F:CoreText.CTFontFeatureSmartSwash.Selector.LineFinalSwashesOff
-F:CoreText.CTFontFeatureSmartSwash.Selector.LineFinalSwashesOn
-F:CoreText.CTFontFeatureSmartSwash.Selector.LineInitialSwashesOff
-F:CoreText.CTFontFeatureSmartSwash.Selector.LineInitialSwashesOn
-F:CoreText.CTFontFeatureSmartSwash.Selector.NonFinalSwashesOff
-F:CoreText.CTFontFeatureSmartSwash.Selector.NonFinalSwashesOn
-F:CoreText.CTFontFeatureSmartSwash.Selector.WordFinalSwashesOff
-F:CoreText.CTFontFeatureSmartSwash.Selector.WordFinalSwashesOn
-F:CoreText.CTFontFeatureSmartSwash.Selector.WordInitialSwashesOff
-F:CoreText.CTFontFeatureSmartSwash.Selector.WordInitialSwashesOn
-F:CoreText.CTFontFeatureStyleOptions.Selector.DisplayText
-F:CoreText.CTFontFeatureStyleOptions.Selector.EngravedText
-F:CoreText.CTFontFeatureStyleOptions.Selector.IlluminatedCaps
-F:CoreText.CTFontFeatureStyleOptions.Selector.NoStyleOptions
-F:CoreText.CTFontFeatureStyleOptions.Selector.TallCaps
-F:CoreText.CTFontFeatureStyleOptions.Selector.TitlingCaps
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.NoStylisticAlternates
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltEighteenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltEighteenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltEightOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltEightOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltElevenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltElevenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltFifteenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltFifteenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltFiveOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltFiveOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltFourOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltFourOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltFourteenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltFourteenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltNineOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltNineOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltNineteenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltNineteenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltOneOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltOneOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltSevenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltSevenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltSeventeenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltSeventeenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltSixOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltSixOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltSixteenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltSixteenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltTenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltTenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltThirteenOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltThirteenOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltThreeOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltThreeOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltTwelveOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltTwelveOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltTwentyOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltTwentyOn
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltTwoOff
-F:CoreText.CTFontFeatureStylisticAlternatives.Selector.StylisticAltTwoOn
-F:CoreText.CTFontFeatureTextSpacing.Selector.AltHalfWidthText
-F:CoreText.CTFontFeatureTextSpacing.Selector.AltProportionalText
-F:CoreText.CTFontFeatureTextSpacing.Selector.HalfWidthText
-F:CoreText.CTFontFeatureTextSpacing.Selector.MonospacedText
-F:CoreText.CTFontFeatureTextSpacing.Selector.ProportionalText
-F:CoreText.CTFontFeatureTextSpacing.Selector.QuarterWidthText
-F:CoreText.CTFontFeatureTextSpacing.Selector.ThirdWidthText
-F:CoreText.CTFontFeatureTransliteration.Selector.HanjaToHangul
-F:CoreText.CTFontFeatureTransliteration.Selector.HanjaToHangulAltOne
-F:CoreText.CTFontFeatureTransliteration.Selector.HanjaToHangulAltThree
-F:CoreText.CTFontFeatureTransliteration.Selector.HanjaToHangulAltTwo
-F:CoreText.CTFontFeatureTransliteration.Selector.HiraganaToKatakana
-F:CoreText.CTFontFeatureTransliteration.Selector.KanaToRomanization
-F:CoreText.CTFontFeatureTransliteration.Selector.KatakanaToHiragana
-F:CoreText.CTFontFeatureTransliteration.Selector.NoTransliteration
-F:CoreText.CTFontFeatureTransliteration.Selector.RomanizationToHiragana
-F:CoreText.CTFontFeatureTransliteration.Selector.RomanizationToKatakana
-F:CoreText.CTFontFeatureTypographicExtras.Selector.FormInterrobangOff
-F:CoreText.CTFontFeatureTypographicExtras.Selector.FormInterrobangOn
-F:CoreText.CTFontFeatureTypographicExtras.Selector.HyphensToEmDashOff
-F:CoreText.CTFontFeatureTypographicExtras.Selector.HyphensToEmDashOn
-F:CoreText.CTFontFeatureTypographicExtras.Selector.HyphenToEnDashOff
-F:CoreText.CTFontFeatureTypographicExtras.Selector.HyphenToEnDashOn
-F:CoreText.CTFontFeatureTypographicExtras.Selector.PeriodsToEllipsisOff
-F:CoreText.CTFontFeatureTypographicExtras.Selector.PeriodsToEllipsisOn
-F:CoreText.CTFontFeatureTypographicExtras.Selector.SlashedZeroOff
-F:CoreText.CTFontFeatureTypographicExtras.Selector.SlashedZeroOn
-F:CoreText.CTFontFeatureTypographicExtras.Selector.SmartQuotesOff
-F:CoreText.CTFontFeatureTypographicExtras.Selector.SmartQuotesOn
-F:CoreText.CTFontFeatureUnicodeDecomposition.Selector.CanonicalCompositionOff
-F:CoreText.CTFontFeatureUnicodeDecomposition.Selector.CanonicalCompositionOn
-F:CoreText.CTFontFeatureUnicodeDecomposition.Selector.CompatibilityCompositionOff
-F:CoreText.CTFontFeatureUnicodeDecomposition.Selector.CompatibilityCompositionOn
-F:CoreText.CTFontFeatureUnicodeDecomposition.Selector.TranscodingCompositionOff
-F:CoreText.CTFontFeatureUnicodeDecomposition.Selector.TranscodingCompositionOn
-F:CoreText.CTFontFeatureUpperCase.Selector.DefaultUpperCase
-F:CoreText.CTFontFeatureUpperCase.Selector.UpperCasePetiteCaps
-F:CoreText.CTFontFeatureUpperCase.Selector.UpperCaseSmallCaps
-F:CoreText.CTFontFeatureVerticalPosition.Selector.Inferiors
-F:CoreText.CTFontFeatureVerticalPosition.Selector.NormalPosition
-F:CoreText.CTFontFeatureVerticalPosition.Selector.Ordinals
-F:CoreText.CTFontFeatureVerticalPosition.Selector.ScientificInferiors
-F:CoreText.CTFontFeatureVerticalPosition.Selector.Superiors
-F:CoreText.CTFontFeatureVerticalSubstitutionConnection.Selector.SubstituteVerticalFormsOff
-F:CoreText.CTFontFeatureVerticalSubstitutionConnection.Selector.SubstituteVerticalFormsOn
-F:CoreText.CTFontFormat.Bitmap
-F:CoreText.CTFontFormat.OpenTypePostScript
-F:CoreText.CTFontFormat.OpenTypeTrueType
-F:CoreText.CTFontFormat.PostScript
-F:CoreText.CTFontFormat.TrueType
-F:CoreText.CTFontFormat.Unrecognized
-F:CoreText.CTFontManagerAutoActivation.Default
-F:CoreText.CTFontManagerAutoActivation.Disabled
-F:CoreText.CTFontManagerAutoActivation.Enabled
-F:CoreText.CTFontManagerAutoActivation.PromptUser
-F:CoreText.CTFontManagerError.AlreadyRegistered
F:CoreText.CTFontManagerError.AssetNotFound
F:CoreText.CTFontManagerError.CancelledByUser
F:CoreText.CTFontManagerError.DuplicatedName
F:CoreText.CTFontManagerError.ExceededResourceLimit
-F:CoreText.CTFontManagerError.FileNotFount
F:CoreText.CTFontManagerError.InsufficientInfo
-F:CoreText.CTFontManagerError.InsufficientPermissions
-F:CoreText.CTFontManagerError.InUse
F:CoreText.CTFontManagerError.InvalidFilePath
-F:CoreText.CTFontManagerError.InvalidFontData
F:CoreText.CTFontManagerError.MissingEntitlement
-F:CoreText.CTFontManagerError.None
-F:CoreText.CTFontManagerError.NotRegistered
F:CoreText.CTFontManagerError.RegistrationFailed
-F:CoreText.CTFontManagerError.SystemRequired
-F:CoreText.CTFontManagerError.UnrecognizedFormat
F:CoreText.CTFontManagerError.UnsupportedScope
-F:CoreText.CTFontManagerScope.None
F:CoreText.CTFontManagerScope.Persistent
-F:CoreText.CTFontManagerScope.Process
-F:CoreText.CTFontManagerScope.Session
-F:CoreText.CTFontNameKey.Copyright
-F:CoreText.CTFontNameKey.Description
-F:CoreText.CTFontNameKey.Designer
-F:CoreText.CTFontNameKey.DesignerUrl
-F:CoreText.CTFontNameKey.Family
-F:CoreText.CTFontNameKey.Full
-F:CoreText.CTFontNameKey.License
-F:CoreText.CTFontNameKey.LicenseUrl
-F:CoreText.CTFontNameKey.Manufacturer
-F:CoreText.CTFontNameKey.PostScript
-F:CoreText.CTFontNameKey.PostscriptCid
-F:CoreText.CTFontNameKey.SampleText
-F:CoreText.CTFontNameKey.Style
-F:CoreText.CTFontNameKey.SubFamily
-F:CoreText.CTFontNameKey.Trademark
-F:CoreText.CTFontNameKey.Unique
-F:CoreText.CTFontNameKey.VendorUrl
-F:CoreText.CTFontNameKey.Version
-F:CoreText.CTFontOptions.Default
-F:CoreText.CTFontOptions.PreferSystemFont
-F:CoreText.CTFontOptions.PreventAutoActivation
F:CoreText.CTFontOptions.PreventAutoDownload
-F:CoreText.CTFontOrientation.Default
-F:CoreText.CTFontOrientation.Horizontal
-F:CoreText.CTFontOrientation.Vertical
-F:CoreText.CTFontPriority.Computer
-F:CoreText.CTFontPriority.Dynamic
-F:CoreText.CTFontPriority.Network
-F:CoreText.CTFontPriority.Process
-F:CoreText.CTFontPriority.System
-F:CoreText.CTFontPriority.User
-F:CoreText.CTFontStylisticClass.ClarendonSerifs
-F:CoreText.CTFontStylisticClass.FreeformSerifs
-F:CoreText.CTFontStylisticClass.ModernSerifs
-F:CoreText.CTFontStylisticClass.None
-F:CoreText.CTFontStylisticClass.OldStyleSerifs
-F:CoreText.CTFontStylisticClass.Ornamentals
-F:CoreText.CTFontStylisticClass.SansSerif
-F:CoreText.CTFontStylisticClass.Scripts
-F:CoreText.CTFontStylisticClass.SlabSerifs
-F:CoreText.CTFontStylisticClass.Symbolic
-F:CoreText.CTFontStylisticClass.TransitionalSerifs
-F:CoreText.CTFontStylisticClass.Unknown
-F:CoreText.CTFontSymbolicTraits.Bold
-F:CoreText.CTFontSymbolicTraits.ColorGlyphs
-F:CoreText.CTFontSymbolicTraits.Composite
-F:CoreText.CTFontSymbolicTraits.Condensed
-F:CoreText.CTFontSymbolicTraits.Expanded
-F:CoreText.CTFontSymbolicTraits.Italic
-F:CoreText.CTFontSymbolicTraits.Mask
-F:CoreText.CTFontSymbolicTraits.MonoSpace
-F:CoreText.CTFontSymbolicTraits.None
-F:CoreText.CTFontSymbolicTraits.UIOptimized
-F:CoreText.CTFontSymbolicTraits.Vertical
-F:CoreText.CTFontTable.AccentAttachment
-F:CoreText.CTFontTable.AnchorPoints
-F:CoreText.CTFontTable.AxisVariation
-F:CoreText.CTFontTable.BaselineBASE
-F:CoreText.CTFontTable.BaselineBsln
-F:CoreText.CTFontTable.BitmapData
-F:CoreText.CTFontTable.BitmapFontHeader
-F:CoreText.CTFontTable.BitmapLocation
-F:CoreText.CTFontTable.CharacterToGlyphMapping
-F:CoreText.CTFontTable.ColorBitmapData
-F:CoreText.CTFontTable.ColorBitmapLocationData
-F:CoreText.CTFontTable.ColorPaletteTable
-F:CoreText.CTFontTable.ColorTable
-F:CoreText.CTFontTable.CompactFontFormat2
-F:CoreText.CTFontTable.ControlValueTable
-F:CoreText.CTFontTable.ControlValueTableProgram
-F:CoreText.CTFontTable.ControlValueTableVariation
-F:CoreText.CTFontTable.CrossReference
-F:CoreText.CTFontTable.DigitalSignature
-F:CoreText.CTFontTable.EmbeddedBitmap
-F:CoreText.CTFontTable.EmbeddedBitmapLocation
-F:CoreText.CTFontTable.EmbeddedBitmapScaling
-F:CoreText.CTFontTable.ExtendedKerning
-F:CoreText.CTFontTable.ExtendedMorph
-F:CoreText.CTFontTable.FondAndNfntData
-F:CoreText.CTFontTable.FontDescriptor
-F:CoreText.CTFontTable.FontHeader
-F:CoreText.CTFontTable.FontMetrics
-F:CoreText.CTFontTable.FontProgram
-F:CoreText.CTFontTable.FontVariation
-F:CoreText.CTFontTable.GlyphData
-F:CoreText.CTFontTable.GlyphDefinition
-F:CoreText.CTFontTable.GlyphPositioning
-F:CoreText.CTFontTable.GlyphReference
-F:CoreText.CTFontTable.GlyphSubstitution
-F:CoreText.CTFontTable.GlyphVariation
-F:CoreText.CTFontTable.GridFitting
-F:CoreText.CTFontTable.HorizontalDeviceMetrics
-F:CoreText.CTFontTable.HorizontalHeader
-F:CoreText.CTFontTable.HorizontalMetrics
-F:CoreText.CTFontTable.HorizontalMetricsVariations
-F:CoreText.CTFontTable.HorizontalStyle
-F:CoreText.CTFontTable.IndexToLocation
-F:CoreText.CTFontTable.JustificationJSTF
-F:CoreText.CTFontTable.JustificationJust
-F:CoreText.CTFontTable.Kerning
-F:CoreText.CTFontTable.LanguageTags
-F:CoreText.CTFontTable.LayoutFeature
-F:CoreText.CTFontTable.LigatureCaret
-F:CoreText.CTFontTable.LinearThreshold
-F:CoreText.CTFontTable.MathLayoutData
-F:CoreText.CTFontTable.MaximumProfile
-F:CoreText.CTFontTable.Merge
-F:CoreText.CTFontTable.Metadata
-F:CoreText.CTFontTable.MetricsVariations
-F:CoreText.CTFontTable.Morph
-F:CoreText.CTFontTable.Name
-F:CoreText.CTFontTable.OpticalBounds
-F:CoreText.CTFontTable.Pcl5Data
-F:CoreText.CTFontTable.PostscriptFontProgram
-F:CoreText.CTFontTable.PostScriptInformation
-F:CoreText.CTFontTable.Properties
-F:CoreText.CTFontTable.SBitmapData
-F:CoreText.CTFontTable.ScalableVectorGraphics
-F:CoreText.CTFontTable.SExtendedBitmapData
-F:CoreText.CTFontTable.StyleAttributes
-F:CoreText.CTFontTable.Tracking
-F:CoreText.CTFontTable.VerticalDeviceMetrics
-F:CoreText.CTFontTable.VerticalHeader
-F:CoreText.CTFontTable.VerticalMetrics
-F:CoreText.CTFontTable.VerticalMetricsVariations
-F:CoreText.CTFontTable.VerticalOrigin
-F:CoreText.CTFontTable.WindowsSpecificMetrics
-F:CoreText.CTFontTableOptions.ExcludeSynthetic
-F:CoreText.CTFontTableOptions.None
-F:CoreText.CTFontUIFontType.AlertHeader
-F:CoreText.CTFontUIFontType.Application
-F:CoreText.CTFontUIFontType.ControlContent
-F:CoreText.CTFontUIFontType.EmphasizedSystem
-F:CoreText.CTFontUIFontType.EmphasizedSystemDetail
-F:CoreText.CTFontUIFontType.Label
-F:CoreText.CTFontUIFontType.MenuItem
-F:CoreText.CTFontUIFontType.MenuItemCmdKey
-F:CoreText.CTFontUIFontType.MenuItemMark
-F:CoreText.CTFontUIFontType.MenuTitle
-F:CoreText.CTFontUIFontType.Message
-F:CoreText.CTFontUIFontType.MiniEmphasizedSystem
-F:CoreText.CTFontUIFontType.MiniSystem
-F:CoreText.CTFontUIFontType.None
-F:CoreText.CTFontUIFontType.Palette
-F:CoreText.CTFontUIFontType.PushButton
-F:CoreText.CTFontUIFontType.SmallEmphasizedSystem
-F:CoreText.CTFontUIFontType.SmallSystem
-F:CoreText.CTFontUIFontType.SmallToolbar
-F:CoreText.CTFontUIFontType.System
-F:CoreText.CTFontUIFontType.SystemDetail
-F:CoreText.CTFontUIFontType.Toolbar
-F:CoreText.CTFontUIFontType.ToolTip
-F:CoreText.CTFontUIFontType.User
-F:CoreText.CTFontUIFontType.UserFixedPitch
-F:CoreText.CTFontUIFontType.UtilityWindowTitle
-F:CoreText.CTFontUIFontType.Views
-F:CoreText.CTFontUIFontType.WindowTitle
-F:CoreText.CTFramePathFillRule.EvenOdd
-F:CoreText.CTFramePathFillRule.WindingNumber
F:CoreText.CTFrameProgression.LeftToRight
-F:CoreText.CTFrameProgression.RightToLeft
-F:CoreText.CTFrameProgression.TopToBottom
-F:CoreText.CTLigatureFormation.All
-F:CoreText.CTLigatureFormation.Essential
-F:CoreText.CTLigatureFormation.Standard
-F:CoreText.CTLineBoundsOptions.ExcludeTypographicLeading
-F:CoreText.CTLineBoundsOptions.ExcludeTypographicShifts
-F:CoreText.CTLineBoundsOptions.IncludeLanguageExtents
-F:CoreText.CTLineBoundsOptions.UseGlyphPathBounds
-F:CoreText.CTLineBoundsOptions.UseHangingPunctuation
-F:CoreText.CTLineBoundsOptions.UseOpticalBounds
-F:CoreText.CTLineBreakMode.CharWrapping
-F:CoreText.CTLineBreakMode.Clipping
-F:CoreText.CTLineBreakMode.TruncatingHead
-F:CoreText.CTLineBreakMode.TruncatingMiddle
-F:CoreText.CTLineBreakMode.TruncatingTail
-F:CoreText.CTLineBreakMode.WordWrapping
-F:CoreText.CTLineTruncation.End
-F:CoreText.CTLineTruncation.Middle
-F:CoreText.CTLineTruncation.Start
-F:CoreText.CTRunStatus.HasNonIdentityMatrix
-F:CoreText.CTRunStatus.NonMonotonic
-F:CoreText.CTRunStatus.NoStatus
-F:CoreText.CTRunStatus.RightToLeft
-F:CoreText.CTSuperscriptStyle.None
-F:CoreText.CTSuperscriptStyle.Subscript
-F:CoreText.CTSuperscriptStyle.Superscript
-F:CoreText.CTTextAlignment.Center
-F:CoreText.CTTextAlignment.Justified
-F:CoreText.CTTextAlignment.Left
-F:CoreText.CTTextAlignment.Natural
-F:CoreText.CTTextAlignment.Right
-F:CoreText.CTUnderlineStyle.Double
-F:CoreText.CTUnderlineStyle.None
-F:CoreText.CTUnderlineStyle.Single
-F:CoreText.CTUnderlineStyle.Thick
-F:CoreText.CTUnderlineStyleModifiers.PatternDash
-F:CoreText.CTUnderlineStyleModifiers.PatternDashDot
-F:CoreText.CTUnderlineStyleModifiers.PatternDashDotDot
-F:CoreText.CTUnderlineStyleModifiers.PatternDot
-F:CoreText.CTUnderlineStyleModifiers.PatternSolid
-F:CoreText.CTWritingDirection.Embedding
-F:CoreText.CTWritingDirection.LeftToRight
-F:CoreText.CTWritingDirection.Natural
-F:CoreText.CTWritingDirection.Override
-F:CoreText.CTWritingDirection.RightToLeft
-F:CoreText.FontFeatureGroup.AllTypographicFeatures
-F:CoreText.FontFeatureGroup.AlternateKana
-F:CoreText.FontFeatureGroup.Annotation
-F:CoreText.FontFeatureGroup.CaseSensitiveLayout
-F:CoreText.FontFeatureGroup.CharacterAlternatives
-F:CoreText.FontFeatureGroup.CharacterShape
-F:CoreText.FontFeatureGroup.CJKRomanSpacing
-F:CoreText.FontFeatureGroup.CJKSymbolAlternatives
-F:CoreText.FontFeatureGroup.CJKVerticalRomanPlacement
-F:CoreText.FontFeatureGroup.ContextualAlternates
-F:CoreText.FontFeatureGroup.CursiveConnection
-F:CoreText.FontFeatureGroup.DesignComplexity
-F:CoreText.FontFeatureGroup.Diacritics
-F:CoreText.FontFeatureGroup.Fractions
-F:CoreText.FontFeatureGroup.IdeographicAlternatives
-F:CoreText.FontFeatureGroup.IdeographicSpacing
-F:CoreText.FontFeatureGroup.ItalicCJKRoman
-F:CoreText.FontFeatureGroup.KanaSpacing
-F:CoreText.FontFeatureGroup.LetterCase
-F:CoreText.FontFeatureGroup.Ligatures
-F:CoreText.FontFeatureGroup.LinguisticRearrangement
-F:CoreText.FontFeatureGroup.LowerCase
-F:CoreText.FontFeatureGroup.MathematicalExtras
-F:CoreText.FontFeatureGroup.NumberCase
-F:CoreText.FontFeatureGroup.NumberSpacing
-F:CoreText.FontFeatureGroup.OrnamentSets
-F:CoreText.FontFeatureGroup.OverlappingCharacters
-F:CoreText.FontFeatureGroup.RubyKana
-F:CoreText.FontFeatureGroup.SmartSwash
-F:CoreText.FontFeatureGroup.StyleOptions
-F:CoreText.FontFeatureGroup.StylisticAlternatives
-F:CoreText.FontFeatureGroup.TextSpacing
-F:CoreText.FontFeatureGroup.Transliteration
-F:CoreText.FontFeatureGroup.TypographicExtras
-F:CoreText.FontFeatureGroup.UnicodeDecomposition
-F:CoreText.FontFeatureGroup.UpperCase
-F:CoreText.FontFeatureGroup.VerticalPosition
-F:CoreText.FontFeatureGroup.VerticalSubstitution
F:CoreVideo.CVAttachmentMode.ShouldNotPropagate
F:CoreVideo.CVAttachmentMode.ShouldPropagate
F:CoreVideo.CVFillExtendedPixelsCallBackData.FillCallBack
@@ -9547,20 +7230,6 @@ F:ExecutionPolicy.EPDeveloperToolStatus.NotDetermined
F:ExecutionPolicy.EPDeveloperToolStatus.Restricted
F:ExecutionPolicy.EPError.Generic
F:ExecutionPolicy.EPError.NotADeveloperTool
-F:ExternalAccessory.EABluetoothAccessoryPickerError.AlreadyConnected
-F:ExternalAccessory.EABluetoothAccessoryPickerError.Cancelled
-F:ExternalAccessory.EABluetoothAccessoryPickerError.Failed
-F:ExternalAccessory.EABluetoothAccessoryPickerError.NotFound
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserState.Configuring
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserState.Searching
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserState.Stopped
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserState.WiFiUnavailable
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryConfigurationStatus.Failed
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryConfigurationStatus.Success
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryConfigurationStatus.UserCancelledConfiguration
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryProperties.SupportsAirPlay
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryProperties.SupportsAirPrint
-F:ExternalAccessory.EAWiFiUnconfiguredAccessoryProperties.SupportsHomeKit
F:FileProvider.NSFileProviderContentPolicy.DownloadEagerlyAndKeepDownloaded
F:FileProvider.NSFileProviderContentPolicy.DownloadLazily
F:FileProvider.NSFileProviderContentPolicy.DownloadLazilyAndEvictOnRemoteUpdate
@@ -9791,22 +7460,6 @@ F:Foundation.NSCalendarOptions.MatchStrictly
F:Foundation.NSCalendarOptions.None
F:Foundation.NSCalendarOptions.SearchBackwards
F:Foundation.NSCalendarOptions.WrapCalendarComponents
-F:Foundation.NSCalendarType.Buddhist
-F:Foundation.NSCalendarType.Chinese
-F:Foundation.NSCalendarType.Coptic
-F:Foundation.NSCalendarType.EthiopicAmeteAlem
-F:Foundation.NSCalendarType.EthiopicAmeteMihret
-F:Foundation.NSCalendarType.Gregorian
-F:Foundation.NSCalendarType.Hebrew
-F:Foundation.NSCalendarType.Indian
-F:Foundation.NSCalendarType.Islamic
-F:Foundation.NSCalendarType.IslamicCivil
-F:Foundation.NSCalendarType.IslamicTabular
-F:Foundation.NSCalendarType.IslamicUmmAlQura
-F:Foundation.NSCalendarType.ISO8601
-F:Foundation.NSCalendarType.Japanese
-F:Foundation.NSCalendarType.Persian
-F:Foundation.NSCalendarType.Taiwan
F:Foundation.NSCalendarUnit.Calendar
F:Foundation.NSCalendarUnit.Day
F:Foundation.NSCalendarUnit.DayOfYear
@@ -9949,7 +7602,6 @@ F:Foundation.NSDataWritingOptions.FileProtectionCompleteWhenUserInactive
F:Foundation.NSDataWritingOptions.FileProtectionMask
F:Foundation.NSDataWritingOptions.FileProtectionNone
F:Foundation.NSDataWritingOptions.WithoutOverwriting
-F:Foundation.NSDateComponents.Undefined
F:Foundation.NSDateComponentsFormatterUnitsStyle.Abbreviated
F:Foundation.NSDateComponentsFormatterUnitsStyle.Brief
F:Foundation.NSDateComponentsFormatterUnitsStyle.Full
@@ -9976,15 +7628,6 @@ F:Foundation.NSDateIntervalFormatterStyle.Long
F:Foundation.NSDateIntervalFormatterStyle.Medium
F:Foundation.NSDateIntervalFormatterStyle.None
F:Foundation.NSDateIntervalFormatterStyle.Short
-F:Foundation.NSDecimal.fields
-F:Foundation.NSDecimal.m1
-F:Foundation.NSDecimal.m2
-F:Foundation.NSDecimal.m3
-F:Foundation.NSDecimal.m4
-F:Foundation.NSDecimal.m5
-F:Foundation.NSDecimal.m6
-F:Foundation.NSDecimal.m7
-F:Foundation.NSDecimal.m8
F:Foundation.NSDecodingFailurePolicy.RaiseException
F:Foundation.NSDecodingFailurePolicy.SetErrorAndReturn
F:Foundation.NSDirectoryEnumerationOptions.IncludesDirectoriesPostOrder
@@ -10196,7 +7839,6 @@ F:Foundation.NSLengthFormatterUnit.Mile
F:Foundation.NSLengthFormatterUnit.Millimeter
F:Foundation.NSLengthFormatterUnit.Yard
F:Foundation.NSLigatureType.All
-F:Foundation.NSLigatureType.Default
F:Foundation.NSLigatureType.None
F:Foundation.NSLinguisticTag.Adjective
F:Foundation.NSLinguisticTag.Adverb
@@ -10573,7 +8215,6 @@ F:Foundation.NSUbiquitousKeyValueStoreChangeReason.QuotaViolationChange
F:Foundation.NSUbiquitousKeyValueStoreChangeReason.ServerChange
F:Foundation.NSUnderlineStyle.ByWord
F:Foundation.NSUnderlineStyle.Double
-F:Foundation.NSUnderlineStyle.None
F:Foundation.NSUnderlineStyle.PatternDash
F:Foundation.NSUnderlineStyle.PatternDashDot
F:Foundation.NSUnderlineStyle.PatternDashDotDot
@@ -10740,11 +8381,6 @@ F:Foundation.PreserveAttribute.Conditional
F:GameController.GCAcceleration.X
F:GameController.GCAcceleration.Y
F:GameController.GCAcceleration.Z
-F:GameController.GCControllerPlayerIndex.Index1
-F:GameController.GCControllerPlayerIndex.Index2
-F:GameController.GCControllerPlayerIndex.Index3
-F:GameController.GCControllerPlayerIndex.Index4
-F:GameController.GCControllerPlayerIndex.Unset
F:GameController.GCDeviceBatteryState.Charging
F:GameController.GCDeviceBatteryState.Discharging
F:GameController.GCDeviceBatteryState.Full
@@ -10770,51 +8406,9 @@ F:GameController.GCDualSenseAdaptiveTriggerStatus.VibrationNotVibrating
F:GameController.GCDualSenseAdaptiveTriggerStatus.WeaponFired
F:GameController.GCDualSenseAdaptiveTriggerStatus.WeaponFiring
F:GameController.GCDualSenseAdaptiveTriggerStatus.WeaponReady
-F:GameController.GCExtendedGamepadSnapshotData.ButtonA
-F:GameController.GCExtendedGamepadSnapshotData.ButtonB
-F:GameController.GCExtendedGamepadSnapshotData.ButtonX
-F:GameController.GCExtendedGamepadSnapshotData.ButtonY
-F:GameController.GCExtendedGamepadSnapshotData.DPadX
-F:GameController.GCExtendedGamepadSnapshotData.DPadY
-F:GameController.GCExtendedGamepadSnapshotData.LeftShoulder
-F:GameController.GCExtendedGamepadSnapshotData.LeftThumbstickX
-F:GameController.GCExtendedGamepadSnapshotData.LeftThumbstickY
-F:GameController.GCExtendedGamepadSnapshotData.LeftTrigger
-F:GameController.GCExtendedGamepadSnapshotData.RightShoulder
-F:GameController.GCExtendedGamepadSnapshotData.RightThumbstickX
-F:GameController.GCExtendedGamepadSnapshotData.RightThumbstickY
-F:GameController.GCExtendedGamepadSnapshotData.RightTrigger
-F:GameController.GCExtendedGamepadSnapshotData.Size
F:GameController.GCExtendedGamepadSnapshotData.SupportsClickableThumbsticks
-F:GameController.GCExtendedGamepadSnapshotData.Version
-F:GameController.GCExtendedGamepadSnapShotDataV100.ButtonA
-F:GameController.GCExtendedGamepadSnapShotDataV100.ButtonB
-F:GameController.GCExtendedGamepadSnapShotDataV100.ButtonX
-F:GameController.GCExtendedGamepadSnapShotDataV100.ButtonY
-F:GameController.GCExtendedGamepadSnapShotDataV100.DPadX
-F:GameController.GCExtendedGamepadSnapShotDataV100.DPadY
-F:GameController.GCExtendedGamepadSnapShotDataV100.LeftShoulder
-F:GameController.GCExtendedGamepadSnapShotDataV100.LeftThumbstickX
-F:GameController.GCExtendedGamepadSnapShotDataV100.LeftThumbstickY
-F:GameController.GCExtendedGamepadSnapShotDataV100.LeftTrigger
-F:GameController.GCExtendedGamepadSnapShotDataV100.RightShoulder
-F:GameController.GCExtendedGamepadSnapShotDataV100.RightThumbstickX
-F:GameController.GCExtendedGamepadSnapShotDataV100.RightThumbstickY
-F:GameController.GCExtendedGamepadSnapShotDataV100.RightTrigger
-F:GameController.GCExtendedGamepadSnapShotDataV100.Size
-F:GameController.GCExtendedGamepadSnapShotDataV100.Version
F:GameController.GCExtendedGamepadSnapshotDataVersion.Version1
F:GameController.GCExtendedGamepadSnapshotDataVersion.Version2
-F:GameController.GCGamepadSnapShotDataV100.ButtonA
-F:GameController.GCGamepadSnapShotDataV100.ButtonB
-F:GameController.GCGamepadSnapShotDataV100.ButtonX
-F:GameController.GCGamepadSnapShotDataV100.ButtonY
-F:GameController.GCGamepadSnapShotDataV100.DPadX
-F:GameController.GCGamepadSnapShotDataV100.DPadY
-F:GameController.GCGamepadSnapShotDataV100.LeftShoulder
-F:GameController.GCGamepadSnapShotDataV100.RightShoulder
-F:GameController.GCGamepadSnapShotDataV100.Size
-F:GameController.GCGamepadSnapShotDataV100.Version
F:GameController.GCInputDirectional.CardinalDpad
F:GameController.GCInputDirectional.CenterButton
F:GameController.GCInputDirectional.Dpad
@@ -10823,19 +8417,6 @@ F:GameController.GCInputMicroGamepad.ButtonA
F:GameController.GCInputMicroGamepad.ButtonMenu
F:GameController.GCInputMicroGamepad.ButtonX
F:GameController.GCInputMicroGamepad.Dpad
-F:GameController.GCMicroGamepadSnapshotData.ButtonA
-F:GameController.GCMicroGamepadSnapshotData.ButtonX
-F:GameController.GCMicroGamepadSnapshotData.DPadX
-F:GameController.GCMicroGamepadSnapshotData.DPadY
-F:GameController.GCMicroGamepadSnapshotData.Size
-F:GameController.GCMicroGamepadSnapshotData.Version
-F:GameController.GCMicroGamepadSnapShotDataV100.ButtonA
-F:GameController.GCMicroGamepadSnapShotDataV100.ButtonX
-F:GameController.GCMicroGamepadSnapShotDataV100.DPadX
-F:GameController.GCMicroGamepadSnapShotDataV100.DPadY
-F:GameController.GCMicroGamepadSnapShotDataV100.Size
-F:GameController.GCMicroGamepadSnapShotDataV100.Version
-F:GameController.GCMicroGamepadSnapshotDataVersion.Version1
F:GameController.GCQuaternion.W
F:GameController.GCQuaternion.X
F:GameController.GCQuaternion.Y
@@ -10855,98 +8436,25 @@ F:GameKit.GKAccessPointLocation.BottomLeading
F:GameKit.GKAccessPointLocation.BottomTrailing
F:GameKit.GKAccessPointLocation.TopLeading
F:GameKit.GKAccessPointLocation.TopTrailing
-F:GameKit.GKChallengeState.Completed
-F:GameKit.GKChallengeState.Declined
-F:GameKit.GKChallengeState.Invalid
-F:GameKit.GKChallengeState.Pending
-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
-F:GameKit.GKError.CommunicationsFailure
F:GameKit.GKError.ConnectionTimeout
F:GameKit.GKError.FriendListDenied
F:GameKit.GKError.FriendListDescriptionMissing
F:GameKit.GKError.FriendListRestricted
F:GameKit.GKError.FriendRequestNotAvailable
-F:GameKit.GKError.GameSessionRequestInvalid
-F:GameKit.GKError.GameUnrecognized
F:GameKit.GKError.ICloudUnavailable
-F:GameKit.GKError.InvalidCredentials
-F:GameKit.GKError.InvalidParameter
-F:GameKit.GKError.InvalidPlayer
-F:GameKit.GKError.InvitationsDisabled
F:GameKit.GKError.LockdownMode
-F:GameKit.GKError.MatchNotConnected
-F:GameKit.GKError.MatchRequestInvalid
-F:GameKit.GKError.None
-F:GameKit.GKError.NotAuthenticated
F:GameKit.GKError.NotAuthorized
-F:GameKit.GKError.NotSupported
-F:GameKit.GKError.ParentalControlsBlocked
-F:GameKit.GKError.PlayerPhotoFailure
-F:GameKit.GKError.PlayerStatusExceedsMaximumLength
-F:GameKit.GKError.PlayerStatusInvalid
F:GameKit.GKError.RestrictedToAutomatch
-F:GameKit.GKError.ScoreNotSet
-F:GameKit.GKError.TurnBasedInvalidParticipant
-F:GameKit.GKError.TurnBasedInvalidState
-F:GameKit.GKError.TurnBasedInvalidTurn
-F:GameKit.GKError.TurnBasedMatchDataTooLarge
-F:GameKit.GKError.TurnBasedTooManySessions
-F:GameKit.GKError.UbiquityContainerUnavailable
-F:GameKit.GKError.Underage
-F:GameKit.GKError.UnexpectedConnection
-F:GameKit.GKError.Unknown
-F:GameKit.GKError.UserDenied
F:GameKit.GKFriendsAuthorizationStatus.Authorized
F:GameKit.GKFriendsAuthorizationStatus.Denied
F:GameKit.GKFriendsAuthorizationStatus.NotDetermined
F:GameKit.GKFriendsAuthorizationStatus.Restricted
-F:GameKit.GKGameCenterViewControllerState.Achievements
-F:GameKit.GKGameCenterViewControllerState.Challenges
F:GameKit.GKGameCenterViewControllerState.Dashboard
-F:GameKit.GKGameCenterViewControllerState.Default
-F:GameKit.GKGameCenterViewControllerState.Leaderboards
F:GameKit.GKGameCenterViewControllerState.LocalPlayerFriendsList
F:GameKit.GKGameCenterViewControllerState.LocalPlayerProfile
-F:GameKit.GKGameSessionErrorCode.BadContainer
-F:GameKit.GKGameSessionErrorCode.CloudDriveDisabled
-F:GameKit.GKGameSessionErrorCode.CloudQuotaExceeded
-F:GameKit.GKGameSessionErrorCode.ConnectionCancelledByUser
-F:GameKit.GKGameSessionErrorCode.ConnectionFailed
-F:GameKit.GKGameSessionErrorCode.InvalidSession
-F:GameKit.GKGameSessionErrorCode.NetworkFailure
-F:GameKit.GKGameSessionErrorCode.NotAuthenticated
-F:GameKit.GKGameSessionErrorCode.SendDataNoRecipients
-F:GameKit.GKGameSessionErrorCode.SendDataNotConnected
-F:GameKit.GKGameSessionErrorCode.SendDataNotReachable
-F:GameKit.GKGameSessionErrorCode.SendRateLimitReached
-F:GameKit.GKGameSessionErrorCode.SessionConflict
-F:GameKit.GKGameSessionErrorCode.SessionHasMaxConnectedPlayers
-F:GameKit.GKGameSessionErrorCode.SessionNotShared
-F:GameKit.GKGameSessionErrorCode.Unknown
-F:GameKit.GKInviteeResponse.Accepted
-F:GameKit.GKInviteeResponse.Declined
-F:GameKit.GKInviteeResponse.Failed
-F:GameKit.GKInviteeResponse.Incompatible
-F:GameKit.GKInviteeResponse.NoAnswer
-F:GameKit.GKInviteeResponse.UnableToConnect
-F:GameKit.GKInviteRecipientResponse.Accepted
-F:GameKit.GKInviteRecipientResponse.Declined
-F:GameKit.GKInviteRecipientResponse.Failed
-F:GameKit.GKInviteRecipientResponse.Incompatible
-F:GameKit.GKInviteRecipientResponse.NoAnswer
-F:GameKit.GKInviteRecipientResponse.UnableToConnect
-F:GameKit.GKLeaderboardPlayerScope.FriendsOnly
-F:GameKit.GKLeaderboardPlayerScope.Global
-F:GameKit.GKLeaderboardTimeScope.AllTime
-F:GameKit.GKLeaderboardTimeScope.Today
-F:GameKit.GKLeaderboardTimeScope.Week
F:GameKit.GKLeaderboardType.Classic
F:GameKit.GKLeaderboardType.Recurring
F:GameKit.GKMatchmakingMode.AutomatchOnly
@@ -10955,34 +8463,7 @@ F:GameKit.GKMatchmakingMode.InviteOnly
F:GameKit.GKMatchmakingMode.NearbyOnly
F:GameKit.GKMatchSendDataMode.Reliable
F:GameKit.GKMatchSendDataMode.Unreliable
-F:GameKit.GKMatchType.Hosted
-F:GameKit.GKMatchType.PeerToPeer
-F:GameKit.GKMatchType.TurnBased
-F:GameKit.GKPeerConnectionState.Available
-F:GameKit.GKPeerConnectionState.Connected
F:GameKit.GKPeerConnectionState.ConnectedRelay
-F:GameKit.GKPeerConnectionState.Connecting
-F:GameKit.GKPeerConnectionState.Disconnected
-F:GameKit.GKPeerConnectionState.Unavailable
-F:GameKit.GKPeerPickerConnectionType.Nearby
-F:GameKit.GKPeerPickerConnectionType.Online
-F:GameKit.GKPhotoSize.Normal
-F:GameKit.GKPhotoSize.Small
-F:GameKit.GKPlayerConnectionState.Connected
-F:GameKit.GKPlayerConnectionState.Disconnected
-F:GameKit.GKPlayerConnectionState.Unknown
-F:GameKit.GKSendDataMode.Reliable
-F:GameKit.GKSendDataMode.Unreliable
-F:GameKit.GKSessionMode.Client
-F:GameKit.GKSessionMode.Peer
-F:GameKit.GKSessionMode.Server
-F:GameKit.GKTransportType.Reliable
-F:GameKit.GKTransportType.Unreliable
-F:GameKit.GKTurnBasedExchangeStatus.Active
-F:GameKit.GKTurnBasedExchangeStatus.Canceled
-F:GameKit.GKTurnBasedExchangeStatus.Complete
-F:GameKit.GKTurnBasedExchangeStatus.Resolved
-F:GameKit.GKTurnBasedExchangeStatus.Unknown
F:GameKit.GKTurnBasedMatchOutcome.CustomRange
F:GameKit.GKTurnBasedMatchOutcome.First
F:GameKit.GKTurnBasedMatchOutcome.Fourth
@@ -11004,28 +8485,6 @@ F:GameKit.GKTurnBasedParticipantStatus.Done
F:GameKit.GKTurnBasedParticipantStatus.Invited
F:GameKit.GKTurnBasedParticipantStatus.Matching
F:GameKit.GKTurnBasedParticipantStatus.Unknown
-F:GameKit.GKVoiceChatPlayerState.Connected
-F:GameKit.GKVoiceChatPlayerState.Connecting
-F:GameKit.GKVoiceChatPlayerState.Disconnected
-F:GameKit.GKVoiceChatPlayerState.Silent
-F:GameKit.GKVoiceChatPlayerState.Speaking
-F:GameKit.GKVoiceChatServiceError.AudioUnavailable
-F:GameKit.GKVoiceChatServiceError.ClientMissingRequiredMethods
-F:GameKit.GKVoiceChatServiceError.Internal
-F:GameKit.GKVoiceChatServiceError.InvalidCallID
-F:GameKit.GKVoiceChatServiceError.InvalidParameter
-F:GameKit.GKVoiceChatServiceError.MethodCurrentlyInvalid
-F:GameKit.GKVoiceChatServiceError.NetworkConfiguration
-F:GameKit.GKVoiceChatServiceError.NoRemotePackets
-F:GameKit.GKVoiceChatServiceError.OutOfMemory
-F:GameKit.GKVoiceChatServiceError.RemoteParticipantBusy
-F:GameKit.GKVoiceChatServiceError.RemoteParticipantCancelled
-F:GameKit.GKVoiceChatServiceError.RemoteParticipantDeclinedInvite
-F:GameKit.GKVoiceChatServiceError.RemoteParticipantHangup
-F:GameKit.GKVoiceChatServiceError.RemoteParticipantResponseInvalid
-F:GameKit.GKVoiceChatServiceError.UnableToConnect
-F:GameKit.GKVoiceChatServiceError.UninitializedClient
-F:GameKit.GKVoiceChatServiceError.UnsupportedRemoteVersion
F:GameplayKit.GKBox.Max
F:GameplayKit.GKBox.Min
F:GameplayKit.GKGameModel.MaxScore
@@ -11035,65 +8494,6 @@ F:GameplayKit.GKMeshGraphTriangulationMode.EdgeMidpoints
F:GameplayKit.GKMeshGraphTriangulationMode.Vertices
F:GameplayKit.GKQuad.Max
F:GameplayKit.GKQuad.Min
-F:GameplayKit.GKRTreeSplitStrategy.Halve
-F:GameplayKit.GKRTreeSplitStrategy.Linear
-F:GameplayKit.GKRTreeSplitStrategy.Quadratic
-F:GameplayKit.GKRTreeSplitStrategy.ReduceOverlap
-F:GLKit.GLKFogMode.Exp
-F:GLKit.GLKFogMode.Exp2
-F:GLKit.GLKFogMode.Linear
-F:GLKit.GLKLightingType.PerPixel
-F:GLKit.GLKLightingType.PerVertex
-F:GLKit.GLKTextureEnvMode.Decal
-F:GLKit.GLKTextureEnvMode.Modulate
-F:GLKit.GLKTextureEnvMode.Replace
-F:GLKit.GLKTextureInfoAlphaState.None
-F:GLKit.GLKTextureInfoAlphaState.NonPremultiplied
-F:GLKit.GLKTextureInfoAlphaState.Premultiplied
-F:GLKit.GLKTextureInfoOrigin.BottomLeft
-F:GLKit.GLKTextureInfoOrigin.TopLeft
-F:GLKit.GLKTextureInfoOrigin.Unknown
-F:GLKit.GLKTextureLoaderError.AlphaPremultiplicationFailure
-F:GLKit.GLKTextureLoaderError.CompressedTextureUpload
-F:GLKit.GLKTextureLoaderError.CubeMapInvalidNumFiles
-F:GLKit.GLKTextureLoaderError.DataPreprocessingFailure
-F:GLKit.GLKTextureLoaderError.FileOrURLNotFound
-F:GLKit.GLKTextureLoaderError.IncompatibleFormatSRGB
-F:GLKit.GLKTextureLoaderError.InvalidCGImage
-F:GLKit.GLKTextureLoaderError.InvalidEAGLContext
-F:GLKit.GLKTextureLoaderError.InvalidNSData
-F:GLKit.GLKTextureLoaderError.MipmapUnsupported
-F:GLKit.GLKTextureLoaderError.PVRAtlasUnsupported
-F:GLKit.GLKTextureLoaderError.ReorientationFailure
-F:GLKit.GLKTextureLoaderError.UncompressedTextureUpload
-F:GLKit.GLKTextureLoaderError.UnknownFileType
-F:GLKit.GLKTextureLoaderError.UnknownPathType
-F:GLKit.GLKTextureLoaderError.UnsupportedBitDepth
-F:GLKit.GLKTextureLoaderError.UnsupportedCubeMapDimensions
-F:GLKit.GLKTextureLoaderError.UnsupportedOrientation
-F:GLKit.GLKTextureLoaderError.UnsupportedPVRFormat
-F:GLKit.GLKTextureLoaderError.UnsupportedTextureTarget
-F:GLKit.GLKTextureTarget.CubeMap
-F:GLKit.GLKTextureTarget.TargetCt
-F:GLKit.GLKTextureTarget.Texture2D
-F:GLKit.GLKVertexAttrib.Color
-F:GLKit.GLKVertexAttrib.Normal
-F:GLKit.GLKVertexAttrib.Position
-F:GLKit.GLKVertexAttrib.TexCoord0
-F:GLKit.GLKVertexAttrib.TexCoord1
-F:GLKit.GLKVertexAttributeParameters.Normalized
-F:GLKit.GLKVertexAttributeParameters.Size
-F:GLKit.GLKVertexAttributeParameters.Type
-F:GLKit.GLKViewDrawableColorFormat.RGB565
-F:GLKit.GLKViewDrawableColorFormat.RGBA8888
-F:GLKit.GLKViewDrawableColorFormat.SRGBA8888
-F:GLKit.GLKViewDrawableDepthFormat.Format16
-F:GLKit.GLKViewDrawableDepthFormat.Format24
-F:GLKit.GLKViewDrawableDepthFormat.None
-F:GLKit.GLKViewDrawableMultisample.None
-F:GLKit.GLKViewDrawableMultisample.Sample4x
-F:GLKit.GLKViewDrawableStencilFormat.Format8
-F:GLKit.GLKViewDrawableStencilFormat.FormatNone
F:HealthKit.HKActivityMoveMode.ActiveEnergy
F:HealthKit.HKActivityMoveMode.AppleMoveTime
F:HealthKit.HKAnchoredObjectQuery.NoAnchor
@@ -12593,29 +9993,13 @@ F:ImageIO.CGImageAnimationStatus.IncompleteInputImage
F:ImageIO.CGImageAnimationStatus.Ok
F:ImageIO.CGImageAnimationStatus.ParameterError
F:ImageIO.CGImageAnimationStatus.UnsupportedFormat
-F:ImageIO.CGImageAuxiliaryDataType.Depth
-F:ImageIO.CGImageAuxiliaryDataType.Disparity
F:ImageIO.CGImageAuxiliaryDataType.IsoGainMap
-F:ImageIO.CGImageAuxiliaryDataType.PortraitEffectsMatte
F:ImageIO.CGImageAuxiliaryDataType.SemanticSegmentationGlassesMatte
F:ImageIO.CGImageAuxiliaryDataType.SemanticSegmentationHairMatte
F:ImageIO.CGImageAuxiliaryDataType.SemanticSegmentationSkinMatte
F:ImageIO.CGImageAuxiliaryDataType.SemanticSegmentationSkyMatte
F:ImageIO.CGImageAuxiliaryDataType.SemanticSegmentationTeethMatte
F:ImageIO.CGImageAuxiliaryDataType.TypeHdrGainMap
-F:ImageIO.CGImageMetadataErrors.BadArgument
-F:ImageIO.CGImageMetadataErrors.ConflictingArguments
-F:ImageIO.CGImageMetadataErrors.PrefixConflict
-F:ImageIO.CGImageMetadataErrors.Unknown
-F:ImageIO.CGImageMetadataErrors.UnsupportedFormat
-F:ImageIO.CGImageMetadataType.AlternateArray
-F:ImageIO.CGImageMetadataType.AlternateText
-F:ImageIO.CGImageMetadataType.ArrayOrdered
-F:ImageIO.CGImageMetadataType.ArrayUnordered
-F:ImageIO.CGImageMetadataType.Default
-F:ImageIO.CGImageMetadataType.Invalid
-F:ImageIO.CGImageMetadataType.String
-F:ImageIO.CGImageMetadataType.Structure
F:ImageIO.CGImagePropertyOrientation.Down
F:ImageIO.CGImagePropertyOrientation.DownMirrored
F:ImageIO.CGImagePropertyOrientation.Left
@@ -12632,12 +10016,6 @@ F:ImageIO.CGImagePropertyPngFilters.Sub
F:ImageIO.CGImagePropertyPngFilters.Up
F:ImageIO.CGImagePropertyTgaCompression.None
F:ImageIO.CGImagePropertyTgaCompression.Rle
-F:ImageIO.CGImageSourceStatus.Complete
-F:ImageIO.CGImageSourceStatus.Incomplete
-F:ImageIO.CGImageSourceStatus.InvalidData
-F:ImageIO.CGImageSourceStatus.ReadingHeader
-F:ImageIO.CGImageSourceStatus.UnexpectedEOF
-F:ImageIO.CGImageSourceStatus.UnknownType
F:ImageKit.IKCameraDeviceViewDisplayMode.Icon
F:ImageKit.IKCameraDeviceViewDisplayMode.None
F:ImageKit.IKCameraDeviceViewDisplayMode.Table
@@ -13740,16 +11118,6 @@ F:Intents.INWorkoutNameIdentifier.Walk
F:Intents.INWorkoutNameIdentifier.Yoga
F:IntentsUI.INUIAddVoiceShortcutButtonStyle.Automatic
F:IntentsUI.INUIAddVoiceShortcutButtonStyle.AutomaticOutLine
-F:IntentsUI.INUIAddVoiceShortcutButtonStyle.Black
-F:IntentsUI.INUIAddVoiceShortcutButtonStyle.BlackOutline
-F:IntentsUI.INUIAddVoiceShortcutButtonStyle.White
-F:IntentsUI.INUIAddVoiceShortcutButtonStyle.WhiteOutline
-F:IntentsUI.INUIHostedViewContext.MapsCard
-F:IntentsUI.INUIHostedViewContext.SiriSnippet
-F:IntentsUI.INUIInteractiveBehavior.GenericAction
-F:IntentsUI.INUIInteractiveBehavior.Launch
-F:IntentsUI.INUIInteractiveBehavior.NextView
-F:IntentsUI.INUIInteractiveBehavior.None
F:IOSurface.IOSurfaceLockOptions.AvoidSync
F:IOSurface.IOSurfaceLockOptions.ReadOnly
F:IOSurface.IOSurfaceMemoryMap.CopybackCache
@@ -14009,47 +11377,10 @@ F:MapKit.MKAddressFilterOption.Locality
F:MapKit.MKAddressFilterOption.PostalCode
F:MapKit.MKAddressFilterOption.SubAdministrativeArea
F:MapKit.MKAddressFilterOption.SubLocality
-F:MapKit.MKAnnotationViewCollisionMode.Circle
F:MapKit.MKAnnotationViewCollisionMode.None
-F:MapKit.MKAnnotationViewCollisionMode.Rectangle
-F:MapKit.MKAnnotationViewDragState.Canceling
-F:MapKit.MKAnnotationViewDragState.Dragging
-F:MapKit.MKAnnotationViewDragState.Ending
-F:MapKit.MKAnnotationViewDragState.None
-F:MapKit.MKAnnotationViewDragState.Starting
-F:MapKit.MKCoordinateRegion.Center
-F:MapKit.MKCoordinateRegion.Span
-F:MapKit.MKCoordinateSpan.LatitudeDelta
-F:MapKit.MKCoordinateSpan.LongitudeDelta
-F:MapKit.MKDirectionsMode.Default
-F:MapKit.MKDirectionsMode.Driving
-F:MapKit.MKDirectionsMode.Transit
-F:MapKit.MKDirectionsMode.Walking
F:MapKit.MKDirectionsRoutePreference.Any
F:MapKit.MKDirectionsRoutePreference.Avoid
-F:MapKit.MKDirectionsTransportType.Any
-F:MapKit.MKDirectionsTransportType.Automobile
-F:MapKit.MKDirectionsTransportType.Transit
-F:MapKit.MKDirectionsTransportType.Walking
-F:MapKit.MKDistanceFormatterUnits.Default
-F:MapKit.MKDistanceFormatterUnits.Imperial
-F:MapKit.MKDistanceFormatterUnits.ImperialWithYards
-F:MapKit.MKDistanceFormatterUnits.Metric
-F:MapKit.MKDistanceFormatterUnitStyle.Abbreviated
-F:MapKit.MKDistanceFormatterUnitStyle.Default
-F:MapKit.MKDistanceFormatterUnitStyle.Full
F:MapKit.MKErrorCode.DecodingFailed
-F:MapKit.MKErrorCode.DirectionsNotFound
-F:MapKit.MKErrorCode.LoadingThrottled
-F:MapKit.MKErrorCode.PlacemarkNotFound
-F:MapKit.MKErrorCode.ServerFailure
-F:MapKit.MKErrorCode.Unknown
-F:MapKit.MKFeatureDisplayPriority.DefaultHigh
-F:MapKit.MKFeatureDisplayPriority.DefaultLow
-F:MapKit.MKFeatureDisplayPriority.Required
-F:MapKit.MKFeatureVisibility.Adaptive
-F:MapKit.MKFeatureVisibility.Hidden
-F:MapKit.MKFeatureVisibility.Visible
F:MapKit.MKLocalSearchCompleterResultType.Address
F:MapKit.MKLocalSearchCompleterResultType.PhysicalFeature
F:MapKit.MKLocalSearchCompleterResultType.PointOfInterest
@@ -14075,13 +11406,6 @@ F:MapKit.MKMapFeatureType.Territory
F:MapKit.MKMapItemDetailSelectionAccessoryCalloutStyle.Automatic
F:MapKit.MKMapItemDetailSelectionAccessoryCalloutStyle.Compact
F:MapKit.MKMapItemDetailSelectionAccessoryCalloutStyle.Full
-F:MapKit.MKMapPoint.X
-F:MapKit.MKMapPoint.Y
-F:MapKit.MKMapRect.Null
-F:MapKit.MKMapRect.Origin
-F:MapKit.MKMapRect.Size
-F:MapKit.MKMapSize.Height
-F:MapKit.MKMapSize.Width
F:MapKit.MKMapType.Hybrid
F:MapKit.MKMapType.HybridFlyover
F:MapKit.MKMapType.MutedStandard
@@ -14174,34 +11498,9 @@ F:MapKit.MKSearchCompletionFilterType.AndQueries
F:MapKit.MKSearchCompletionFilterType.Only
F:MapKit.MKStandardMapEmphasisStyle.Default
F:MapKit.MKStandardMapEmphasisStyle.Muted
-F:MapKit.MKTileOverlayPath.ContentScaleFactor
-F:MapKit.MKTileOverlayPath.X
-F:MapKit.MKTileOverlayPath.Y
-F:MapKit.MKTileOverlayPath.Z
F:MapKit.MKUserTrackingMode.Follow
F:MapKit.MKUserTrackingMode.FollowWithHeading
F:MapKit.MKUserTrackingMode.None
-F:MediaAccessibility.MACaptionAppearanceBehavior.UseContentIfAvailable
-F:MediaAccessibility.MACaptionAppearanceBehavior.UseValue
-F:MediaAccessibility.MACaptionAppearanceDisplayType.AlwaysOn
-F:MediaAccessibility.MACaptionAppearanceDisplayType.Automatic
-F:MediaAccessibility.MACaptionAppearanceDisplayType.ForcedOnly
-F:MediaAccessibility.MACaptionAppearanceDomain.Default
-F:MediaAccessibility.MACaptionAppearanceDomain.User
-F:MediaAccessibility.MACaptionAppearanceFontStyle.Casual
-F:MediaAccessibility.MACaptionAppearanceFontStyle.Cursive
-F:MediaAccessibility.MACaptionAppearanceFontStyle.Default
-F:MediaAccessibility.MACaptionAppearanceFontStyle.MonospacedWithoutSerif
-F:MediaAccessibility.MACaptionAppearanceFontStyle.MonospacedWithSerif
-F:MediaAccessibility.MACaptionAppearanceFontStyle.ProportionalWithoutSerif
-F:MediaAccessibility.MACaptionAppearanceFontStyle.ProportionalWithSerif
-F:MediaAccessibility.MACaptionAppearanceFontStyle.SmallCapital
-F:MediaAccessibility.MACaptionAppearanceTextEdgeStyle.Depressed
-F:MediaAccessibility.MACaptionAppearanceTextEdgeStyle.DropShadow
-F:MediaAccessibility.MACaptionAppearanceTextEdgeStyle.None
-F:MediaAccessibility.MACaptionAppearanceTextEdgeStyle.Raised
-F:MediaAccessibility.MACaptionAppearanceTextEdgeStyle.Undefined
-F:MediaAccessibility.MACaptionAppearanceTextEdgeStyle.Uniform
F:MediaExtension.MEDecodeFrameStatus.FrameDropped
F:MediaExtension.MEDecodeFrameStatus.NoStatus
F:MediaExtension.MEError.AllocationFailure
@@ -14228,9 +11527,6 @@ F:MediaLibrary.MLMediaSourceType.Movie
F:MediaLibrary.MLMediaType.Audio
F:MediaLibrary.MLMediaType.Image
F:MediaLibrary.MLMediaType.Movie
-F:MediaPlayer.MPChangeLanguageOptionSetting.None
-F:MediaPlayer.MPChangeLanguageOptionSetting.NowPlayingItemOnly
-F:MediaPlayer.MPChangeLanguageOptionSetting.Permanent
F:MediaPlayer.MPErrorCode.Cancelled
F:MediaPlayer.MPErrorCode.CloudServiceCapabilityMissing
F:MediaPlayer.MPErrorCode.NetworkConnectionFailed
@@ -14280,19 +11576,6 @@ F:MediaPlayer.MPMovieControlStyle.None
F:MediaPlayer.MPMovieFinishReason.PlaybackEnded
F:MediaPlayer.MPMovieFinishReason.PlaybackError
F:MediaPlayer.MPMovieFinishReason.UserExited
-F:MediaPlayer.MPMovieLoadState.Playable
-F:MediaPlayer.MPMovieLoadState.PlaythroughOK
-F:MediaPlayer.MPMovieLoadState.Stalled
-F:MediaPlayer.MPMovieLoadState.Unknown
-F:MediaPlayer.MPMovieMediaType.Audio
-F:MediaPlayer.MPMovieMediaType.None
-F:MediaPlayer.MPMovieMediaType.Video
-F:MediaPlayer.MPMoviePlaybackState.Interrupted
-F:MediaPlayer.MPMoviePlaybackState.Paused
-F:MediaPlayer.MPMoviePlaybackState.Playing
-F:MediaPlayer.MPMoviePlaybackState.SeekingBackward
-F:MediaPlayer.MPMoviePlaybackState.SeekingForward
-F:MediaPlayer.MPMoviePlaybackState.Stopped
F:MediaPlayer.MPMovieRepeatMode.None
F:MediaPlayer.MPMovieRepeatMode.One
F:MediaPlayer.MPMovieScalingMode.AspectFill
@@ -14304,12 +11587,6 @@ F:MediaPlayer.MPMovieSourceType.Streaming
F:MediaPlayer.MPMovieSourceType.Unknown
F:MediaPlayer.MPMovieTimeOption.Exact
F:MediaPlayer.MPMovieTimeOption.NearestKeyFrame
-F:MediaPlayer.MPMusicPlaybackState.Interrupted
-F:MediaPlayer.MPMusicPlaybackState.Paused
-F:MediaPlayer.MPMusicPlaybackState.Playing
-F:MediaPlayer.MPMusicPlaybackState.SeekingBackward
-F:MediaPlayer.MPMusicPlaybackState.SeekingForward
-F:MediaPlayer.MPMusicPlaybackState.Stopped
F:MediaPlayer.MPMusicRepeatMode.All
F:MediaPlayer.MPMusicRepeatMode.Default
F:MediaPlayer.MPMusicRepeatMode.None
@@ -14360,12 +11637,6 @@ F:MediaPlayer.MPSeekCommandEventType.EndSeeking
F:MediaPlayer.MPShuffleType.Collections
F:MediaPlayer.MPShuffleType.Items
F:MediaPlayer.MPShuffleType.Off
-F:MediaToolbox.MTAudioProcessingTapCreationFlags.PostEffects
-F:MediaToolbox.MTAudioProcessingTapCreationFlags.PreEffects
-F:MediaToolbox.MTAudioProcessingTapError.InvalidArgument
-F:MediaToolbox.MTAudioProcessingTapError.None
-F:MediaToolbox.MTAudioProcessingTapFlags.EndOfStream
-F:MediaToolbox.MTAudioProcessingTapFlags.StartOfStream
F:Messages.MSMessageErrorCode.APIUnavailableInPresentationContext
F:Messages.MSMessageErrorCode.FileNotFound
F:Messages.MSMessageErrorCode.FileUnreadable
@@ -14541,13 +11812,6 @@ F:Metal.MTLCaptureDestination.GpuTraceDocument
F:Metal.MTLCaptureError.AlreadyCapturing
F:Metal.MTLCaptureError.InvalidDescriptor
F:Metal.MTLCaptureError.NotSupported
-F:Metal.MTLClearColor.Alpha
-F:Metal.MTLClearColor.Blue
-F:Metal.MTLClearColor.Green
-F:Metal.MTLClearColor.Red
-F:Metal.MTLClearValue.Color
-F:Metal.MTLClearValue.Depth
-F:Metal.MTLClearValue.Stencil
F:Metal.MTLColorWriteMask.All
F:Metal.MTLColorWriteMask.Alpha
F:Metal.MTLColorWriteMask.Blue
@@ -14731,24 +11995,8 @@ F:Metal.MTLDeviceLocation.BuiltIn
F:Metal.MTLDeviceLocation.External
F:Metal.MTLDeviceLocation.Slot
F:Metal.MTLDeviceLocation.Unspecified
-F:Metal.MTLDispatchThreadgroupsIndirectArguments.ThreadGroupsPerGrid1
-F:Metal.MTLDispatchThreadgroupsIndirectArguments.ThreadGroupsPerGrid2
-F:Metal.MTLDispatchThreadgroupsIndirectArguments.ThreadGroupsPerGrid3
F:Metal.MTLDispatchType.Concurrent
F:Metal.MTLDispatchType.Serial
-F:Metal.MTLDrawIndexedPrimitivesIndirectArguments.BaseInstance
-F:Metal.MTLDrawIndexedPrimitivesIndirectArguments.BaseVertex
-F:Metal.MTLDrawIndexedPrimitivesIndirectArguments.IndexCount
-F:Metal.MTLDrawIndexedPrimitivesIndirectArguments.IndexStart
-F:Metal.MTLDrawIndexedPrimitivesIndirectArguments.InstanceCount
-F:Metal.MTLDrawPatchIndirectArguments.BaseInstance
-F:Metal.MTLDrawPatchIndirectArguments.InstanceCount
-F:Metal.MTLDrawPatchIndirectArguments.PatchCount
-F:Metal.MTLDrawPatchIndirectArguments.PatchStart
-F:Metal.MTLDrawPrimitivesIndirectArguments.BaseInstance
-F:Metal.MTLDrawPrimitivesIndirectArguments.InstanceCount
-F:Metal.MTLDrawPrimitivesIndirectArguments.VertexCount
-F:Metal.MTLDrawPrimitivesIndirectArguments.VertexStart
F:Metal.MTLDynamicLibraryError.CompilationFailure
F:Metal.MTLDynamicLibraryError.DependencyLoadFailure
F:Metal.MTLDynamicLibraryError.InvalidFile
@@ -14908,9 +12156,6 @@ F:Metal.MTLMultisampleStencilResolveFilter.Sample0
F:Metal.MTLMutability.Default
F:Metal.MTLMutability.Immutable
F:Metal.MTLMutability.Mutable
-F:Metal.MTLOrigin.X
-F:Metal.MTLOrigin.Y
-F:Metal.MTLOrigin.Z
F:Metal.MTLPatchType.None
F:Metal.MTLPatchType.Quad
F:Metal.MTLPatchType.Triangle
@@ -15071,13 +12316,9 @@ F:Metal.MTLPurgeableState.Empty
F:Metal.MTLPurgeableState.KeepCurrent
F:Metal.MTLPurgeableState.NonVolatile
F:Metal.MTLPurgeableState.Volatile
-F:Metal.MTLQuadTessellationFactorsHalf.EdgeTessellationFactor
-F:Metal.MTLQuadTessellationFactorsHalf.InsideTessellationFactor
F:Metal.MTLReadWriteTextureTier.None
F:Metal.MTLReadWriteTextureTier.One
F:Metal.MTLReadWriteTextureTier.Two
-F:Metal.MTLRegion.Origin
-F:Metal.MTLRegion.Size
F:Metal.MTLRenderStages.Fragment
F:Metal.MTLRenderStages.Mesh
F:Metal.MTLRenderStages.Object
@@ -15095,8 +12336,6 @@ F:Metal.MTLResourceOptions.StorageModeShared
F:Metal.MTLResourceUsage.Read
F:Metal.MTLResourceUsage.Sample
F:Metal.MTLResourceUsage.Write
-F:Metal.MTLSamplePosition.X
-F:Metal.MTLSamplePosition.Y
F:Metal.MTLSamplerAddressMode.ClampToBorderColor
F:Metal.MTLSamplerAddressMode.ClampToEdge
F:Metal.MTLSamplerAddressMode.ClampToZero
@@ -15111,18 +12350,9 @@ F:Metal.MTLSamplerMinMagFilter.Nearest
F:Metal.MTLSamplerMipFilter.Linear
F:Metal.MTLSamplerMipFilter.Nearest
F:Metal.MTLSamplerMipFilter.NotMipmapped
-F:Metal.MTLScissorRect.Height
-F:Metal.MTLScissorRect.Width
-F:Metal.MTLScissorRect.X
-F:Metal.MTLScissorRect.Y
F:Metal.MTLShaderValidation.Default
F:Metal.MTLShaderValidation.Disabled
F:Metal.MTLShaderValidation.Enabled
-F:Metal.MTLSize.Depth
-F:Metal.MTLSize.Height
-F:Metal.MTLSize.Width
-F:Metal.MTLSizeAndAlign.Align
-F:Metal.MTLSizeAndAlign.Size
F:Metal.MTLSparsePageSize.Size16
F:Metal.MTLSparsePageSize.Size256
F:Metal.MTLSparsePageSize.Size64
@@ -15130,12 +12360,6 @@ F:Metal.MTLSparseTextureMappingMode.Map
F:Metal.MTLSparseTextureMappingMode.Unmap
F:Metal.MTLSparseTextureRegionAlignmentMode.Inward
F:Metal.MTLSparseTextureRegionAlignmentMode.Outward
-F:Metal.MTLStageInRegionIndirectArguments.StageInOrigin1
-F:Metal.MTLStageInRegionIndirectArguments.StageInOrigin2
-F:Metal.MTLStageInRegionIndirectArguments.StageInOrigin3
-F:Metal.MTLStageInRegionIndirectArguments.StageInSize1
-F:Metal.MTLStageInRegionIndirectArguments.StageInSize2
-F:Metal.MTLStageInRegionIndirectArguments.StageInSize3
F:Metal.MTLStencilOperation.DecrementClamp
F:Metal.MTLStencilOperation.DecrementWrap
F:Metal.MTLStencilOperation.IncrementClamp
@@ -15212,8 +12436,6 @@ F:Metal.MTLTransformType.Component
F:Metal.MTLTransformType.PackedFloat4x3
F:Metal.MTLTriangleFillMode.Fill
F:Metal.MTLTriangleFillMode.Lines
-F:Metal.MTLTriangleTessellationFactorsHalf.EdgeTessellationFactor
-F:Metal.MTLTriangleTessellationFactorsHalf.InsideTessellationFactor
F:Metal.MTLVertexAmplificationViewMapping.RenderTargetArrayIndexOffset
F:Metal.MTLVertexAmplificationViewMapping.ViewportArrayIndexOffset
F:Metal.MTLVertexFormat.Char
@@ -15275,12 +12497,6 @@ F:Metal.MTLVertexStepFunction.PerInstance
F:Metal.MTLVertexStepFunction.PerPatch
F:Metal.MTLVertexStepFunction.PerPatchControlPoint
F:Metal.MTLVertexStepFunction.PerVertex
-F:Metal.MTLViewport.Height
-F:Metal.MTLViewport.OriginX
-F:Metal.MTLViewport.OriginY
-F:Metal.MTLViewport.Width
-F:Metal.MTLViewport.ZFar
-F:Metal.MTLViewport.ZNear
F:Metal.MTLVisibilityResultMode.Boolean
F:Metal.MTLVisibilityResultMode.Counting
F:Metal.MTLVisibilityResultMode.Disabled
@@ -15812,27 +13028,6 @@ F:MLCompute.MLCSampleMode.Linear
F:MLCompute.MLCSampleMode.Nearest
F:MLCompute.MLCSoftmaxOperation.LogSoftmax
F:MLCompute.MLCSoftmaxOperation.Softmax
-F:ModelIO.MDLAnimatedValueInterpolation.Constant
-F:ModelIO.MDLAnimatedValueInterpolation.Linear
-F:ModelIO.MDLAxisAlignedBoundingBox.MaxBounds
-F:ModelIO.MDLAxisAlignedBoundingBox.MinBounds
-F:ModelIO.MDLCameraProjection.Orthographic
-F:ModelIO.MDLCameraProjection.Perspective
-F:ModelIO.MDLDataPrecision.Double
-F:ModelIO.MDLDataPrecision.Float
-F:ModelIO.MDLDataPrecision.Undefined
-F:ModelIO.MDLGeometryType.Lines
-F:ModelIO.MDLGeometryType.Points
-F:ModelIO.MDLGeometryType.Quads
-F:ModelIO.MDLGeometryType.Triangles
-F:ModelIO.MDLGeometryType.TriangleStrips
-F:ModelIO.MDLGeometryType.VariableTopology
-F:ModelIO.MDLIndexBitDepth.Invalid
-F:ModelIO.MDLIndexBitDepth.UInt16
-F:ModelIO.MDLIndexBitDepth.UInt32
-F:ModelIO.MDLIndexBitDepth.UInt8
-F:ModelIO.MDLLightType.Ambient
-F:ModelIO.MDLLightType.Directional
F:ModelIO.MDLLightType.DiscArea
F:ModelIO.MDLLightType.Environment
F:ModelIO.MDLLightType.Linear
@@ -15840,9 +13035,7 @@ F:ModelIO.MDLLightType.Photometric
F:ModelIO.MDLLightType.Point
F:ModelIO.MDLLightType.Probe
F:ModelIO.MDLLightType.RectangularArea
-F:ModelIO.MDLLightType.Spot
F:ModelIO.MDLLightType.SuperElliptical
-F:ModelIO.MDLLightType.Unknown
F:ModelIO.MDLMaterialFace.Back
F:ModelIO.MDLMaterialFace.DoubleSided
F:ModelIO.MDLMaterialFace.Front
@@ -15976,21 +13169,6 @@ F:ModelIO.MDLVertexFormat.UShort4Normalized
F:ModelIO.MDLVertexFormat.UShortBits
F:ModelIO.MDLVertexFormat.UShortNormalized
F:ModelIO.MDLVertexFormat.UShortNormalizedBits
-F:MultipeerConnectivity.MCEncryptionPreference.None
-F:MultipeerConnectivity.MCEncryptionPreference.Optional
-F:MultipeerConnectivity.MCEncryptionPreference.Required
-F:MultipeerConnectivity.MCError.Cancelled
-F:MultipeerConnectivity.MCError.InvalidParameter
-F:MultipeerConnectivity.MCError.NotConnected
-F:MultipeerConnectivity.MCError.TimedOut
-F:MultipeerConnectivity.MCError.Unavailable
-F:MultipeerConnectivity.MCError.Unknown
-F:MultipeerConnectivity.MCError.Unsupported
-F:MultipeerConnectivity.MCSessionSendDataMode.Reliable
-F:MultipeerConnectivity.MCSessionSendDataMode.Unreliable
-F:MultipeerConnectivity.MCSessionState.Connected
-F:MultipeerConnectivity.MCSessionState.Connecting
-F:MultipeerConnectivity.MCSessionState.NotConnected
F:NaturalLanguage.NLContextualEmbeddingAssetsResult.Available
F:NaturalLanguage.NLContextualEmbeddingAssetsResult.Error
F:NaturalLanguage.NLContextualEmbeddingAssetsResult.NotAvailable
@@ -15998,67 +13176,7 @@ F:NaturalLanguage.NLContextualEmebeddingKey.Languages
F:NaturalLanguage.NLContextualEmebeddingKey.Revision
F:NaturalLanguage.NLContextualEmebeddingKey.Scripts
F:NaturalLanguage.NLDistanceType.Cosine
-F:NaturalLanguage.NLLanguage.Amharic
-F:NaturalLanguage.NLLanguage.Arabic
-F:NaturalLanguage.NLLanguage.Armenian
-F:NaturalLanguage.NLLanguage.Bengali
-F:NaturalLanguage.NLLanguage.Bulgarian
-F:NaturalLanguage.NLLanguage.Burmese
-F:NaturalLanguage.NLLanguage.Catalan
-F:NaturalLanguage.NLLanguage.Cherokee
-F:NaturalLanguage.NLLanguage.Croatian
-F:NaturalLanguage.NLLanguage.Czech
-F:NaturalLanguage.NLLanguage.Danish
-F:NaturalLanguage.NLLanguage.Dutch
-F:NaturalLanguage.NLLanguage.English
-F:NaturalLanguage.NLLanguage.Finnish
-F:NaturalLanguage.NLLanguage.French
-F:NaturalLanguage.NLLanguage.Georgian
-F:NaturalLanguage.NLLanguage.German
-F:NaturalLanguage.NLLanguage.Greek
-F:NaturalLanguage.NLLanguage.Gujarati
-F:NaturalLanguage.NLLanguage.Hebrew
-F:NaturalLanguage.NLLanguage.Hindi
-F:NaturalLanguage.NLLanguage.Hungarian
-F:NaturalLanguage.NLLanguage.Icelandic
-F:NaturalLanguage.NLLanguage.Indonesian
-F:NaturalLanguage.NLLanguage.Italian
-F:NaturalLanguage.NLLanguage.Japanese
-F:NaturalLanguage.NLLanguage.Kannada
F:NaturalLanguage.NLLanguage.Kazakh
-F:NaturalLanguage.NLLanguage.Khmer
-F:NaturalLanguage.NLLanguage.Korean
-F:NaturalLanguage.NLLanguage.Lao
-F:NaturalLanguage.NLLanguage.Malay
-F:NaturalLanguage.NLLanguage.Malayalam
-F:NaturalLanguage.NLLanguage.Marathi
-F:NaturalLanguage.NLLanguage.Mongolian
-F:NaturalLanguage.NLLanguage.Norwegian
-F:NaturalLanguage.NLLanguage.Oriya
-F:NaturalLanguage.NLLanguage.Persian
-F:NaturalLanguage.NLLanguage.Polish
-F:NaturalLanguage.NLLanguage.Portuguese
-F:NaturalLanguage.NLLanguage.Punjabi
-F:NaturalLanguage.NLLanguage.Romanian
-F:NaturalLanguage.NLLanguage.Russian
-F:NaturalLanguage.NLLanguage.SimplifiedChinese
-F:NaturalLanguage.NLLanguage.Sinhalese
-F:NaturalLanguage.NLLanguage.Slovak
-F:NaturalLanguage.NLLanguage.Spanish
-F:NaturalLanguage.NLLanguage.Swedish
-F:NaturalLanguage.NLLanguage.Tamil
-F:NaturalLanguage.NLLanguage.Telugu
-F:NaturalLanguage.NLLanguage.Thai
-F:NaturalLanguage.NLLanguage.Tibetan
-F:NaturalLanguage.NLLanguage.TraditionalChinese
-F:NaturalLanguage.NLLanguage.Turkish
-F:NaturalLanguage.NLLanguage.Ukrainian
-F:NaturalLanguage.NLLanguage.Undetermined
-F:NaturalLanguage.NLLanguage.Unevaluated
-F:NaturalLanguage.NLLanguage.Urdu
-F:NaturalLanguage.NLLanguage.Vietnamese
-F:NaturalLanguage.NLModelType.Classifier
-F:NaturalLanguage.NLModelType.Sequence
F:NaturalLanguage.NLScript.Arabic
F:NaturalLanguage.NLScript.Armenian
F:NaturalLanguage.NLScript.Bengali
@@ -16546,20 +13664,6 @@ F:NotificationCenter.NCUpdateResult.NewData
F:NotificationCenter.NCUpdateResult.NoData
F:NotificationCenter.NCWidgetDisplayMode.Compact
F:NotificationCenter.NCWidgetDisplayMode.Expanded
-F:ObjCRuntime.Arch.DEVICE
-F:ObjCRuntime.Arch.SIMULATOR
-F:ObjCRuntime.ArgumentSemantic.Assign
-F:ObjCRuntime.ArgumentSemantic.Copy
-F:ObjCRuntime.ArgumentSemantic.None
-F:ObjCRuntime.ArgumentSemantic.Retain
-F:ObjCRuntime.ArgumentSemantic.Strong
-F:ObjCRuntime.ArgumentSemantic.UnsafeUnretained
-F:ObjCRuntime.ArgumentSemantic.Weak
-F:ObjCRuntime.BindAsAttribute.OriginalType
-F:ObjCRuntime.BindAsAttribute.Type
-F:ObjCRuntime.BindingImplOptions.GeneratedCode
-F:ObjCRuntime.BindingImplOptions.Optimizable
-F:ObjCRuntime.Class.ThrowOnInitFailure
F:ObjCRuntime.Constants.AccelerateImageLibrary
F:ObjCRuntime.Constants.AccelerateLibrary
F:ObjCRuntime.Constants.AccessibilityLibrary
@@ -16652,10 +13756,7 @@ F:ObjCRuntime.Constants.IOBluetoothUILibrary
F:ObjCRuntime.Constants.IOSurfaceLibrary
F:ObjCRuntime.Constants.iTunesLibraryLibrary
F:ObjCRuntime.Constants.JavaScriptCoreLibrary
-F:ObjCRuntime.Constants.libcLibrary
F:ObjCRuntime.Constants.libcompressionLibrary
-F:ObjCRuntime.Constants.libdispatchLibrary
-F:ObjCRuntime.Constants.libSystemLibrary
F:ObjCRuntime.Constants.LinkPresentationLibrary
F:ObjCRuntime.Constants.LocalAuthenticationEmbeddedUILibrary
F:ObjCRuntime.Constants.LocalAuthenticationLibrary
@@ -16685,7 +13786,6 @@ F:ObjCRuntime.Constants.NetworkExtensionLibrary
F:ObjCRuntime.Constants.NetworkLibrary
F:ObjCRuntime.Constants.NewsstandKitLibrary
F:ObjCRuntime.Constants.NotificationCenterLibrary
-F:ObjCRuntime.Constants.ObjectiveCLibrary
F:ObjCRuntime.Constants.OpenALLibrary
F:ObjCRuntime.Constants.OpenGLESLibrary
F:ObjCRuntime.Constants.OpenGLLibrary
@@ -16727,7 +13827,6 @@ F:ObjCRuntime.Constants.SpriteKitLibrary
F:ObjCRuntime.Constants.StoreKitLibrary
F:ObjCRuntime.Constants.SymbolsLibrary
F:ObjCRuntime.Constants.SystemConfigurationLibrary
-F:ObjCRuntime.Constants.SystemLibrary
F:ObjCRuntime.Constants.ThreadNetworkLibrary
F:ObjCRuntime.Constants.TVMLKitLibrary
F:ObjCRuntime.Constants.TVServicesLibrary
@@ -16752,27 +13851,9 @@ F:ObjCRuntime.Dlfcn.Mode.NoDelete
F:ObjCRuntime.Dlfcn.Mode.NoLoad
F:ObjCRuntime.Dlfcn.Mode.None
F:ObjCRuntime.Dlfcn.Mode.Now
-F:ObjCRuntime.Dlfcn.RTLD.Default
-F:ObjCRuntime.Dlfcn.RTLD.MainOnly
-F:ObjCRuntime.Dlfcn.RTLD.Next
-F:ObjCRuntime.Dlfcn.RTLD.Self
-F:ObjCRuntime.DlsymOption.Default
-F:ObjCRuntime.DlsymOption.Disabled
-F:ObjCRuntime.DlsymOption.Required
-F:ObjCRuntime.LinkTarget.Arm64
-F:ObjCRuntime.LinkTarget.ArmV6
-F:ObjCRuntime.LinkTarget.ArmV7
-F:ObjCRuntime.LinkTarget.ArmV7s
-F:ObjCRuntime.LinkTarget.i386
-F:ObjCRuntime.LinkTarget.Simulator
-F:ObjCRuntime.LinkTarget.Simulator64
-F:ObjCRuntime.LinkTarget.Thumb
-F:ObjCRuntime.LinkTarget.x86_64
F:ObjCRuntime.NativeHandle.Zero
F:ObjCRuntime.NMath.E
F:ObjCRuntime.NMath.PI
-F:ObjCRuntime.Runtime.Arch
-F:ObjCRuntime.Runtime.IsARM64CallingConvention
F:OpenGL.CGLErrorCode.BadAddress
F:OpenGL.CGLErrorCode.BadAlloc
F:OpenGL.CGLErrorCode.BadAttribute
@@ -17035,64 +14116,6 @@ F:PdfKit.PdfAccessPermissions.DocumentChanges
F:PdfKit.PdfAccessPermissions.FormFieldEntry
F:PdfKit.PdfAccessPermissions.HighQualityPrinting
F:PdfKit.PdfAccessPermissions.LowQualityPrinting
-F:PdfKit.PdfActionNamedName.Find
-F:PdfKit.PdfActionNamedName.FirstPage
-F:PdfKit.PdfActionNamedName.GoBack
-F:PdfKit.PdfActionNamedName.GoForward
-F:PdfKit.PdfActionNamedName.GoToPage
-F:PdfKit.PdfActionNamedName.LastPage
-F:PdfKit.PdfActionNamedName.NextPage
-F:PdfKit.PdfActionNamedName.None
-F:PdfKit.PdfActionNamedName.PreviousPage
-F:PdfKit.PdfActionNamedName.Print
-F:PdfKit.PdfActionNamedName.ZoomIn
-F:PdfKit.PdfActionNamedName.ZoomOut
-F:PdfKit.PdfAnnotationHighlightingMode.Invert
-F:PdfKit.PdfAnnotationHighlightingMode.None
-F:PdfKit.PdfAnnotationHighlightingMode.Outline
-F:PdfKit.PdfAnnotationHighlightingMode.Push
-F:PdfKit.PdfAnnotationKey.Action
-F:PdfKit.PdfAnnotationKey.AdditionalActions
-F:PdfKit.PdfAnnotationKey.AppearanceDictionary
-F:PdfKit.PdfAnnotationKey.AppearanceState
-F:PdfKit.PdfAnnotationKey.Border
-F:PdfKit.PdfAnnotationKey.BorderStyle
-F:PdfKit.PdfAnnotationKey.Color
-F:PdfKit.PdfAnnotationKey.Contents
-F:PdfKit.PdfAnnotationKey.Date
-F:PdfKit.PdfAnnotationKey.DefaultAppearance
-F:PdfKit.PdfAnnotationKey.Destination
-F:PdfKit.PdfAnnotationKey.Flags
-F:PdfKit.PdfAnnotationKey.HighlightingMode
-F:PdfKit.PdfAnnotationKey.IconName
-F:PdfKit.PdfAnnotationKey.Inklist
-F:PdfKit.PdfAnnotationKey.InteriorColor
-F:PdfKit.PdfAnnotationKey.LineEndingStyles
-F:PdfKit.PdfAnnotationKey.LinePoints
-F:PdfKit.PdfAnnotationKey.Name
-F:PdfKit.PdfAnnotationKey.Open
-F:PdfKit.PdfAnnotationKey.Page
-F:PdfKit.PdfAnnotationKey.Parent
-F:PdfKit.PdfAnnotationKey.Popup
-F:PdfKit.PdfAnnotationKey.Quadding
-F:PdfKit.PdfAnnotationKey.QuadPoints
-F:PdfKit.PdfAnnotationKey.Rect
-F:PdfKit.PdfAnnotationKey.Subtype
-F:PdfKit.PdfAnnotationKey.TextLabel
-F:PdfKit.PdfAnnotationKey.WidgetAppearanceDictionary
-F:PdfKit.PdfAnnotationKey.WidgetBackgroundColor
-F:PdfKit.PdfAnnotationKey.WidgetBorderColor
-F:PdfKit.PdfAnnotationKey.WidgetCaption
-F:PdfKit.PdfAnnotationKey.WidgetDefaultValue
-F:PdfKit.PdfAnnotationKey.WidgetDownCaption
-F:PdfKit.PdfAnnotationKey.WidgetFieldFlags
-F:PdfKit.PdfAnnotationKey.WidgetFieldType
-F:PdfKit.PdfAnnotationKey.WidgetMaxLen
-F:PdfKit.PdfAnnotationKey.WidgetOptions
-F:PdfKit.PdfAnnotationKey.WidgetRolloverCaption
-F:PdfKit.PdfAnnotationKey.WidgetRotation
-F:PdfKit.PdfAnnotationKey.WidgetTextLabelUI
-F:PdfKit.PdfAnnotationKey.WidgetValue
F:PdfKit.PdfAnnotationLineEndingStyle.Circle
F:PdfKit.PdfAnnotationLineEndingStyle.ClosedArrow
F:PdfKit.PdfAnnotationLineEndingStyle.Diamond
@@ -17123,49 +14146,8 @@ F:PdfKit.PdfAnnotationWidgetSubtype.Button
F:PdfKit.PdfAnnotationWidgetSubtype.Choice
F:PdfKit.PdfAnnotationWidgetSubtype.Signature
F:PdfKit.PdfAnnotationWidgetSubtype.Text
-F:PdfKit.PdfAreaOfInterest.AnnotationArea
F:PdfKit.PdfAreaOfInterest.AnyArea
-F:PdfKit.PdfAreaOfInterest.ControlArea
-F:PdfKit.PdfAreaOfInterest.IconArea
-F:PdfKit.PdfAreaOfInterest.ImageArea
-F:PdfKit.PdfAreaOfInterest.LinkArea
-F:PdfKit.PdfAreaOfInterest.NoArea
-F:PdfKit.PdfAreaOfInterest.PageArea
-F:PdfKit.PdfAreaOfInterest.PopupArea
-F:PdfKit.PdfAreaOfInterest.TextArea
-F:PdfKit.PdfAreaOfInterest.TextFieldArea
-F:PdfKit.PdfBorderStyle.Beveled
-F:PdfKit.PdfBorderStyle.Dashed
-F:PdfKit.PdfBorderStyle.Inset
-F:PdfKit.PdfBorderStyle.Solid
-F:PdfKit.PdfBorderStyle.Underline
-F:PdfKit.PdfDisplayBox.Art
-F:PdfKit.PdfDisplayBox.Bleed
-F:PdfKit.PdfDisplayBox.Crop
-F:PdfKit.PdfDisplayBox.Media
-F:PdfKit.PdfDisplayBox.Trim
-F:PdfKit.PdfDisplayDirection.Horizontal
-F:PdfKit.PdfDisplayDirection.Vertical
-F:PdfKit.PdfDisplayMode.SinglePage
-F:PdfKit.PdfDisplayMode.SinglePageContinuous
-F:PdfKit.PdfDisplayMode.TwoUp
-F:PdfKit.PdfDisplayMode.TwoUpContinuous
-F:PdfKit.PdfDocumentPermissions.None
-F:PdfKit.PdfDocumentPermissions.Owner
-F:PdfKit.PdfDocumentPermissions.User
-F:PdfKit.PdfInterpolationQuality.High
-F:PdfKit.PdfInterpolationQuality.Low
-F:PdfKit.PdfInterpolationQuality.None
-F:PdfKit.PdfLineStyle.Circle
-F:PdfKit.PdfLineStyle.ClosedArrow
-F:PdfKit.PdfLineStyle.Diamond
-F:PdfKit.PdfLineStyle.None
-F:PdfKit.PdfLineStyle.OpenArrow
-F:PdfKit.PdfLineStyle.Square
-F:PdfKit.PdfMarkupType.Highlight
F:PdfKit.PdfMarkupType.Redact
-F:PdfKit.PdfMarkupType.StrikeOut
-F:PdfKit.PdfMarkupType.Underline
F:PdfKit.PdfPrintScalingMode.DownToFit
F:PdfKit.PdfPrintScalingMode.None
F:PdfKit.PdfPrintScalingMode.ToFit
@@ -17744,31 +14726,11 @@ F:SafetyKit.SAErrorCode.InvalidArgument
F:SafetyKit.SAErrorCode.NotAllowed
F:SafetyKit.SAErrorCode.NotAuthorized
F:SafetyKit.SAErrorCode.OperationFailed
-F:SceneKit.SCNActionTimingMode.EaseIn
-F:SceneKit.SCNActionTimingMode.EaseInEaseOut
-F:SceneKit.SCNActionTimingMode.EaseOut
-F:SceneKit.SCNActionTimingMode.Linear
F:SceneKit.SCNAnimationImportPolicy.DoNotPlay
F:SceneKit.SCNAnimationImportPolicy.Play
F:SceneKit.SCNAnimationImportPolicy.PlayRepeatedly
F:SceneKit.SCNAnimationImportPolicy.PlayUsingSceneTimeBase
F:SceneKit.SCNAnimationImportPolicy.Unknown
-F:SceneKit.SCNAntialiasingMode.Multisampling16X
-F:SceneKit.SCNAntialiasingMode.Multisampling2X
-F:SceneKit.SCNAntialiasingMode.Multisampling4X
-F:SceneKit.SCNAntialiasingMode.Multisampling8X
-F:SceneKit.SCNAntialiasingMode.None
-F:SceneKit.SCNBillboardAxis.All
-F:SceneKit.SCNBillboardAxis.X
-F:SceneKit.SCNBillboardAxis.Y
-F:SceneKit.SCNBillboardAxis.Z
-F:SceneKit.SCNBlendMode.Add
-F:SceneKit.SCNBlendMode.Alpha
-F:SceneKit.SCNBlendMode.Max
-F:SceneKit.SCNBlendMode.Multiply
-F:SceneKit.SCNBlendMode.Replace
-F:SceneKit.SCNBlendMode.Screen
-F:SceneKit.SCNBlendMode.Subtract
F:SceneKit.SCNBufferFrequency.Frame
F:SceneKit.SCNBufferFrequency.Node
F:SceneKit.SCNBufferFrequency.Shadable
@@ -17873,9 +14835,6 @@ F:SceneKit.SCNParticleSortingMode.None
F:SceneKit.SCNParticleSortingMode.OldestFirst
F:SceneKit.SCNParticleSortingMode.ProjectedDepth
F:SceneKit.SCNParticleSortingMode.YoungestFirst
-F:SceneKit.SCNPhysicsBodyType.Dynamic
-F:SceneKit.SCNPhysicsBodyType.Kinematic
-F:SceneKit.SCNPhysicsBodyType.Static
F:SceneKit.SCNPhysicsCollisionCategory.All
F:SceneKit.SCNPhysicsCollisionCategory.Default
F:SceneKit.SCNPhysicsCollisionCategory.None
@@ -19005,32 +15964,6 @@ F:Speech.SFSpeechErrorCode.InternalServiceError
F:Speech.SFSpeechErrorCode.MalformedSupplementalModel
F:Speech.SFSpeechErrorCode.Timeout
F:Speech.SFSpeechErrorCode.UndefinedTemplateClassName
-F:Speech.SFSpeechRecognitionTaskHint.Confirmation
-F:Speech.SFSpeechRecognitionTaskHint.Dictation
-F:Speech.SFSpeechRecognitionTaskHint.Search
-F:Speech.SFSpeechRecognitionTaskHint.Unspecified
-F:Speech.SFSpeechRecognitionTaskState.Canceling
-F:Speech.SFSpeechRecognitionTaskState.Completed
-F:Speech.SFSpeechRecognitionTaskState.Finishing
-F:Speech.SFSpeechRecognitionTaskState.Running
-F:Speech.SFSpeechRecognitionTaskState.Starting
-F:Speech.SFSpeechRecognizerAuthorizationStatus.Authorized
-F:Speech.SFSpeechRecognizerAuthorizationStatus.Denied
-F:Speech.SFSpeechRecognizerAuthorizationStatus.NotDetermined
-F:Speech.SFSpeechRecognizerAuthorizationStatus.Restricted
-F:SpriteKit.SKActionTimingMode.EaseIn
-F:SpriteKit.SKActionTimingMode.EaseInEaseOut
-F:SpriteKit.SKActionTimingMode.EaseOut
-F:SpriteKit.SKActionTimingMode.Linear
-F:SpriteKit.SKAttributeType.Float
-F:SpriteKit.SKAttributeType.HalfFloat
-F:SpriteKit.SKAttributeType.None
-F:SpriteKit.SKAttributeType.VectorFloat2
-F:SpriteKit.SKAttributeType.VectorFloat3
-F:SpriteKit.SKAttributeType.VectorFloat4
-F:SpriteKit.SKAttributeType.VectorHalfFloat2
-F:SpriteKit.SKAttributeType.VectorHalfFloat3
-F:SpriteKit.SKAttributeType.VectorHalfFloat4
F:SpriteKit.SKBlendMode.Add
F:SpriteKit.SKBlendMode.Alpha
F:SpriteKit.SKBlendMode.Multiply
@@ -19193,36 +16126,6 @@ F:StoreKit.SKProductPeriodUnit.Year
F:StoreKit.SKProductStorePromotionVisibility.Default
F:StoreKit.SKProductStorePromotionVisibility.Hide
F:StoreKit.SKProductStorePromotionVisibility.Show
-F:SystemConfiguration.NetworkReachabilityFlags.ConnectionAutomatic
-F:SystemConfiguration.NetworkReachabilityFlags.ConnectionOnDemand
-F:SystemConfiguration.NetworkReachabilityFlags.ConnectionOnTraffic
-F:SystemConfiguration.NetworkReachabilityFlags.ConnectionRequired
-F:SystemConfiguration.NetworkReachabilityFlags.InterventionRequired
-F:SystemConfiguration.NetworkReachabilityFlags.IsDirect
-F:SystemConfiguration.NetworkReachabilityFlags.IsLocalAddress
-F:SystemConfiguration.NetworkReachabilityFlags.IsWWAN
-F:SystemConfiguration.NetworkReachabilityFlags.Reachable
-F:SystemConfiguration.NetworkReachabilityFlags.TransientConnection
-F:SystemConfiguration.StatusCode.AccessError
-F:SystemConfiguration.StatusCode.ConnectionIgnore
-F:SystemConfiguration.StatusCode.ConnectionNoService
-F:SystemConfiguration.StatusCode.Failed
-F:SystemConfiguration.StatusCode.InvalidArgument
-F:SystemConfiguration.StatusCode.KeyExists
-F:SystemConfiguration.StatusCode.Locked
-F:SystemConfiguration.StatusCode.MaxLink
-F:SystemConfiguration.StatusCode.NeedLock
-F:SystemConfiguration.StatusCode.NoConfigFile
-F:SystemConfiguration.StatusCode.NoKey
-F:SystemConfiguration.StatusCode.NoLink
-F:SystemConfiguration.StatusCode.NoPrefsSession
-F:SystemConfiguration.StatusCode.NoStoreServer
-F:SystemConfiguration.StatusCode.NoStoreSession
-F:SystemConfiguration.StatusCode.NotifierActive
-F:SystemConfiguration.StatusCode.OK
-F:SystemConfiguration.StatusCode.PrefsBusy
-F:SystemConfiguration.StatusCode.ReachabilityUnknown
-F:SystemConfiguration.StatusCode.Stale
F:TVMLKit.TVColorType.LinearGradientLeftToRight
F:TVMLKit.TVColorType.LinearGradientTopToBottom
F:TVMLKit.TVColorType.None
@@ -21356,36 +18259,12 @@ F:UIKit.UIWritingToolsResultOptions.RichText
F:UIKit.UIWritingToolsResultOptions.Table
F:UniformTypeIdentifiers.UTTagClass.FilenameExtension
F:UniformTypeIdentifiers.UTTagClass.MimeType
-F:UserNotifications.UNAlertStyle.Alert
-F:UserNotifications.UNAlertStyle.Banner
-F:UserNotifications.UNAlertStyle.None
-F:UserNotifications.UNAuthorizationOptions.Alert
F:UserNotifications.UNAuthorizationOptions.Announcement
-F:UserNotifications.UNAuthorizationOptions.Badge
-F:UserNotifications.UNAuthorizationOptions.CarPlay
-F:UserNotifications.UNAuthorizationOptions.CriticalAlert
-F:UserNotifications.UNAuthorizationOptions.None
-F:UserNotifications.UNAuthorizationOptions.ProvidesAppNotificationSettings
-F:UserNotifications.UNAuthorizationOptions.Provisional
-F:UserNotifications.UNAuthorizationOptions.Sound
F:UserNotifications.UNAuthorizationOptions.TimeSensitive
-F:UserNotifications.UNAuthorizationStatus.Authorized
-F:UserNotifications.UNAuthorizationStatus.Denied
F:UserNotifications.UNAuthorizationStatus.Ephemeral
-F:UserNotifications.UNAuthorizationStatus.NotDetermined
-F:UserNotifications.UNAuthorizationStatus.Provisional
-F:UserNotifications.UNErrorCode.AttachmentCorrupt
-F:UserNotifications.UNErrorCode.AttachmentInvalidFileSize
-F:UserNotifications.UNErrorCode.AttachmentInvalidUrl
-F:UserNotifications.UNErrorCode.AttachmentMoveIntoDataStoreFailed
-F:UserNotifications.UNErrorCode.AttachmentNotInDataStore
-F:UserNotifications.UNErrorCode.AttachmentUnrecognizedType
F:UserNotifications.UNErrorCode.BadgeInputInvalid
F:UserNotifications.UNErrorCode.ContentProvidingInvalid
F:UserNotifications.UNErrorCode.ContentProvidingObjectNotAllowed
-F:UserNotifications.UNErrorCode.NotificationInvalidNoContent
-F:UserNotifications.UNErrorCode.NotificationInvalidNoDate
-F:UserNotifications.UNErrorCode.NotificationsNotAllowed
F:UserNotifications.UNNotificationActionOptions.AuthenticationRequired
F:UserNotifications.UNNotificationActionOptions.Destructive
F:UserNotifications.UNNotificationActionOptions.Foreground
@@ -21447,129 +18326,24 @@ F:VideoToolbox.HdrMetadataInsertionMode.Auto
F:VideoToolbox.HdrMetadataInsertionMode.None
F:VideoToolbox.VTAlphaChannelMode.PremultipliedAlpha
F:VideoToolbox.VTAlphaChannelMode.StraightAlpha
-F:VideoToolbox.VTColorPrimaries.Ebu3213
-F:VideoToolbox.VTColorPrimaries.ItuR7092
-F:VideoToolbox.VTColorPrimaries.P22
-F:VideoToolbox.VTColorPrimaries.SmpteC
-F:VideoToolbox.VTColorPrimaries.Unset
F:VideoToolbox.VTCompressionSessionOptionFlags.BeginFinalPass
-F:VideoToolbox.VTDecodeFrameFlags.DoNotOutputFrame
-F:VideoToolbox.VTDecodeFrameFlags.EnableAsynchronousDecompression
-F:VideoToolbox.VTDecodeFrameFlags.EnableTemporalProcessing
-F:VideoToolbox.VTDecodeFrameFlags.OneTimeRealTimePlayback
-F:VideoToolbox.VTDecodeInfoFlags.Asynchronous
-F:VideoToolbox.VTDecodeInfoFlags.FrameDropped
-F:VideoToolbox.VTDecodeInfoFlags.ImageBufferModifiable
F:VideoToolbox.VTDecodeInfoFlags.SkippedLeadingFrameDropped
F:VideoToolbox.VTDeinterlaceMode.Temporal
F:VideoToolbox.VTDeinterlaceMode.Unset
F:VideoToolbox.VTDeinterlaceMode.VerticalFilter
-F:VideoToolbox.VTDownsamplingMode.Average
-F:VideoToolbox.VTDownsamplingMode.Decimate
-F:VideoToolbox.VTDownsamplingMode.Unset
-F:VideoToolbox.VTEncodeInfoFlags.Asynchronous
-F:VideoToolbox.VTEncodeInfoFlags.FrameDropped
-F:VideoToolbox.VTFieldCount.Interlaced
-F:VideoToolbox.VTFieldCount.Progressive
-F:VideoToolbox.VTFieldDetail.SpatialFirstLineEarly
-F:VideoToolbox.VTFieldDetail.SpatialFirstLineLate
-F:VideoToolbox.VTFieldDetail.TemporalBottomFirst
-F:VideoToolbox.VTFieldDetail.TemporalTopFirst
-F:VideoToolbox.VTFieldDetail.Unset
-F:VideoToolbox.VTFieldMode.BothFields
-F:VideoToolbox.VTFieldMode.BottomFieldOnly
-F:VideoToolbox.VTFieldMode.DeinterlaceFields
-F:VideoToolbox.VTFieldMode.SingleField
-F:VideoToolbox.VTFieldMode.TopFieldOnly
-F:VideoToolbox.VTFieldMode.Unset
-F:VideoToolbox.VTH264EntropyMode.Cabac
-F:VideoToolbox.VTH264EntropyMode.Cavlc
-F:VideoToolbox.VTH264EntropyMode.Unset
F:VideoToolbox.VTHdrPerFrameMetadataGenerationHdrFormatType.DolbyVision
-F:VideoToolbox.VTOnlyTheseFrames.AllFrames
-F:VideoToolbox.VTOnlyTheseFrames.IFrames
-F:VideoToolbox.VTOnlyTheseFrames.KeyFrames
-F:VideoToolbox.VTOnlyTheseFrames.NonDroppableFrames
-F:VideoToolbox.VTOnlyTheseFrames.Unset
-F:VideoToolbox.VTProfileLevel.H263Profile0Level10
-F:VideoToolbox.VTProfileLevel.H263Profile0Level45
-F:VideoToolbox.VTProfileLevel.H263Profile3Level45
-F:VideoToolbox.VTProfileLevel.H264Baseline13
-F:VideoToolbox.VTProfileLevel.H264Baseline30
-F:VideoToolbox.VTProfileLevel.H264Baseline31
-F:VideoToolbox.VTProfileLevel.H264Baseline32
-F:VideoToolbox.VTProfileLevel.H264Baseline40
-F:VideoToolbox.VTProfileLevel.H264Baseline41
-F:VideoToolbox.VTProfileLevel.H264Baseline42
-F:VideoToolbox.VTProfileLevel.H264Baseline50
-F:VideoToolbox.VTProfileLevel.H264Baseline51
-F:VideoToolbox.VTProfileLevel.H264Baseline52
-F:VideoToolbox.VTProfileLevel.H264BaselineAutoLevel
-F:VideoToolbox.VTProfileLevel.H264Extended50
-F:VideoToolbox.VTProfileLevel.H264ExtendedAutoLevel
-F:VideoToolbox.VTProfileLevel.H264High30
-F:VideoToolbox.VTProfileLevel.H264High31
-F:VideoToolbox.VTProfileLevel.H264High32
-F:VideoToolbox.VTProfileLevel.H264High40
-F:VideoToolbox.VTProfileLevel.H264High41
-F:VideoToolbox.VTProfileLevel.H264High42
-F:VideoToolbox.VTProfileLevel.H264High50
-F:VideoToolbox.VTProfileLevel.H264High51
-F:VideoToolbox.VTProfileLevel.H264High52
-F:VideoToolbox.VTProfileLevel.H264HighAutoLevel
-F:VideoToolbox.VTProfileLevel.H264Main30
-F:VideoToolbox.VTProfileLevel.H264Main31
-F:VideoToolbox.VTProfileLevel.H264Main32
-F:VideoToolbox.VTProfileLevel.H264Main40
-F:VideoToolbox.VTProfileLevel.H264Main41
-F:VideoToolbox.VTProfileLevel.H264Main42
-F:VideoToolbox.VTProfileLevel.H264Main50
-F:VideoToolbox.VTProfileLevel.H264Main51
-F:VideoToolbox.VTProfileLevel.H264Main52
-F:VideoToolbox.VTProfileLevel.H264MainAutoLevel
-F:VideoToolbox.VTProfileLevel.HevcMain10AutoLevel
-F:VideoToolbox.VTProfileLevel.HevcMainAutoLevel
-F:VideoToolbox.VTProfileLevel.MP4VAdvancedSimpleL0
-F:VideoToolbox.VTProfileLevel.MP4VAdvancedSimpleL1
-F:VideoToolbox.VTProfileLevel.MP4VAdvancedSimpleL2
-F:VideoToolbox.VTProfileLevel.MP4VAdvancedSimpleL3
-F:VideoToolbox.VTProfileLevel.MP4VAdvancedSimpleL4
-F:VideoToolbox.VTProfileLevel.MP4VMainL2
-F:VideoToolbox.VTProfileLevel.MP4VMainL3
-F:VideoToolbox.VTProfileLevel.MP4VMainL4
-F:VideoToolbox.VTProfileLevel.MP4VSimpleL0
-F:VideoToolbox.VTProfileLevel.MP4VSimpleL1
-F:VideoToolbox.VTProfileLevel.MP4VSimpleL2
-F:VideoToolbox.VTProfileLevel.MP4VSimpleL3
-F:VideoToolbox.VTProfileLevel.Unset
-F:VideoToolbox.VTPropertyType.Boolean
-F:VideoToolbox.VTPropertyType.Enumeration
-F:VideoToolbox.VTPropertyType.Number
-F:VideoToolbox.VTPropertyType.Unset
F:VideoToolbox.VTQPModulationLevel.Default
F:VideoToolbox.VTQPModulationLevel.Disable
-F:VideoToolbox.VTReadWriteStatus.ReadOnly
-F:VideoToolbox.VTReadWriteStatus.ReadWrite
-F:VideoToolbox.VTReadWriteStatus.Unset
F:VideoToolbox.VTRotation.ClockwiseNinety
F:VideoToolbox.VTRotation.CounterclockwiseNinety
F:VideoToolbox.VTRotation.OneHundredAndEighty
F:VideoToolbox.VTRotation.Zero
-F:VideoToolbox.VTScalingMode.CropSourceToCleanAperture
-F:VideoToolbox.VTScalingMode.Letterbox
-F:VideoToolbox.VTScalingMode.Normal
-F:VideoToolbox.VTScalingMode.Trim
-F:VideoToolbox.VTScalingMode.Unset
-F:VideoToolbox.VTStatus.AllocationFailed
F:VideoToolbox.VTStatus.ColorCorrectionImageRotationFailed
F:VideoToolbox.VTStatus.ColorCorrectionPixelTransferFailed
F:VideoToolbox.VTStatus.ColorSyncTransformConvertFailed
F:VideoToolbox.VTStatus.CouldNotCreateColorCorrectionData
-F:VideoToolbox.VTStatus.CouldNotCreateInstance
F:VideoToolbox.VTStatus.CouldNotFindExtensionErr
F:VideoToolbox.VTStatus.CouldNotFindTemporalFilter
-F:VideoToolbox.VTStatus.CouldNotFindVideoDecoder
-F:VideoToolbox.VTStatus.CouldNotFindVideoEncoder
F:VideoToolbox.VTStatus.CouldNotOutputTaggedBufferGroupErr
F:VideoToolbox.VTStatus.DecoderNeedsRosetta
F:VideoToolbox.VTStatus.EncoderNeedsRosetta
@@ -21579,19 +18353,14 @@ F:VideoToolbox.VTStatus.FormatDescriptionChangeNotSupported
F:VideoToolbox.VTStatus.FrameSiloInvalidTimeRange
F:VideoToolbox.VTStatus.FrameSiloInvalidTimeStamp
F:VideoToolbox.VTStatus.InsufficientSourceColorData
-F:VideoToolbox.VTStatus.InvalidSession
F:VideoToolbox.VTStatus.MultiPassStorageIdentifierMismatch
F:VideoToolbox.VTStatus.MultiPassStorageInvalid
F:VideoToolbox.VTStatus.Ok
-F:VideoToolbox.VTStatus.Parameter
F:VideoToolbox.VTStatus.PixelRotationNotSupported
F:VideoToolbox.VTStatus.PixelTransferNotPermitted
-F:VideoToolbox.VTStatus.PixelTransferNotSupported
-F:VideoToolbox.VTStatus.PropertyNotSupported
F:VideoToolbox.VTStatus.PropertyReadOnly
F:VideoToolbox.VTStatus.SessionMalfunction
F:VideoToolbox.VTStatus.VideoDecoderAuthorization
-F:VideoToolbox.VTStatus.VideoDecoderBadData
F:VideoToolbox.VTStatus.VideoDecoderCallbackMessaging
F:VideoToolbox.VTStatus.VideoDecoderMalfunction
F:VideoToolbox.VTStatus.VideoDecoderNotAvailableNow
@@ -22117,103 +18886,43 @@ M:Accelerate.vImage.TentConvolveARGB8888(Accelerate.vImageBuffer@,Accelerate.vIm
M:Accelerate.vImage.TentConvolvePlanar8(Accelerate.vImageBuffer@,Accelerate.vImageBuffer@,System.IntPtr,System.IntPtr,System.IntPtr,System.UInt32,System.UInt32,System.Byte,Accelerate.vImageFlags)
M:Accessibility.AXBrailleMap.Copy(Foundation.NSZone)
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.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(System.String,System.String[])
M:Accessibility.AXCategoricalDataAxisDescriptor.Copy(Foundation.NSZone)
-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(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.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.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.Copy(Foundation.NSZone)
M:Accessibility.AXDataPointValue.Copy(Foundation.NSZone)
-M:Accessibility.AXDataPointValue.CreateValueWithCategory(System.String)
-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.AXFeatureOverrideSessionManager.BeginOverrideSession(Accessibility.AXFeatureOverrideSessionOptions,Accessibility.AXFeatureOverrideSessionOptions,Foundation.NSError@)
-M:Accessibility.AXFeatureOverrideSessionManager.EndOverrideSession(Accessibility.AXFeatureOverrideSession,Foundation.NSError@)
M:Accessibility.AXHearingUtilities.AXSupportsBidirectionalAXMFiHearingDeviceStreaming
M:Accessibility.AXHearingUtilities.GetMFiHearingDevicePairedUuids
M:Accessibility.AXHearingUtilities.GetMFiHearingDeviceStreamingEar
M:Accessibility.AXHearingUtilities.SupportsBidirectionalStreaming
-M:Accessibility.AXLiveAudioGraph.Start
-M:Accessibility.AXLiveAudioGraph.Stop
-M:Accessibility.AXLiveAudioGraph.Update(System.Double)
-M:Accessibility.AXMathExpressionFenced.#ctor(Accessibility.AXMathExpression[],System.String,System.String)
-M:Accessibility.AXMathExpressionFraction.#ctor(Accessibility.AXMathExpression,Accessibility.AXMathExpression)
-M:Accessibility.AXMathExpressionIdentifier.#ctor(System.String)
-M:Accessibility.AXMathExpressionMultiscript.#ctor(Accessibility.AXMathExpression,Accessibility.AXMathExpressionSubSuperscript[],Accessibility.AXMathExpressionSubSuperscript[])
-M:Accessibility.AXMathExpressionNumber.#ctor(System.String)
-M:Accessibility.AXMathExpressionOperator.#ctor(System.String)
-M:Accessibility.AXMathExpressionRoot.#ctor(Accessibility.AXMathExpression[],Accessibility.AXMathExpression)
-M:Accessibility.AXMathExpressionRow.#ctor(Accessibility.AXMathExpression[])
-M:Accessibility.AXMathExpressionSubSuperscript.#ctor(Accessibility.AXMathExpression[],Accessibility.AXMathExpression[],Accessibility.AXMathExpression[])
-M:Accessibility.AXMathExpressionTable.#ctor(Accessibility.AXMathExpression[])
-M:Accessibility.AXMathExpressionTableCell.#ctor(Accessibility.AXMathExpression[])
-M:Accessibility.AXMathExpressionTableRow.#ctor(Accessibility.AXMathExpression[])
-M:Accessibility.AXMathExpressionText.#ctor(System.String)
-M:Accessibility.AXMathExpressionUnderOver.#ctor(Accessibility.AXMathExpression,Accessibility.AXMathExpression,Accessibility.AXMathExpression)
-M:Accessibility.AXNumericDataAxisDescriptor.#ctor(Foundation.NSAttributedString,System.Double,System.Double,Foundation.NSNumber[],System.Func{System.Double,Foundation.NSString})
-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:Accessibility.AXPrefers.NonBlinkingTextInsertionIndicator
M:Accessibility.AXRequest.Copy(Foundation.NSZone)
M:Accessibility.AXRequest.EncodeTo(Foundation.NSCoder)
-M:AccessorySetupKit.ASAccessorySession.Activate(CoreFoundation.DispatchQueue,System.Action{AccessorySetupKit.ASAccessoryEvent})
-M:AccessorySetupKit.ASAccessorySession.FailAuthorization(AccessorySetupKit.ASAccessory,AccessorySetupKit.ASAccessorySessionCompletionHandler)
M:AccessorySetupKit.ASAccessorySession.FailAuthorizationAsync(AccessorySetupKit.ASAccessory)
-M:AccessorySetupKit.ASAccessorySession.FinishAuthorization(AccessorySetupKit.ASAccessory,AccessorySetupKit.ASAccessorySettings,AccessorySetupKit.ASAccessorySessionCompletionHandler)
M:AccessorySetupKit.ASAccessorySession.FinishAuthorizationAsync(AccessorySetupKit.ASAccessory,AccessorySetupKit.ASAccessorySettings)
-M:AccessorySetupKit.ASAccessorySession.Invalidate
-M:AccessorySetupKit.ASAccessorySession.RemoveAccessory(AccessorySetupKit.ASAccessory,AccessorySetupKit.ASAccessorySessionCompletionHandler)
M:AccessorySetupKit.ASAccessorySession.RemoveAccessoryAsync(AccessorySetupKit.ASAccessory)
-M:AccessorySetupKit.ASAccessorySession.RenameAccessory(AccessorySetupKit.ASAccessory,AccessorySetupKit.ASAccessoryRenameOptions,AccessorySetupKit.ASAccessorySessionCompletionHandler)
M:AccessorySetupKit.ASAccessorySession.RenameAccessoryAsync(AccessorySetupKit.ASAccessory,AccessorySetupKit.ASAccessoryRenameOptions)
-M:AccessorySetupKit.ASAccessorySession.ShowPicker(AccessorySetupKit.ASAccessorySessionCompletionHandler)
-M:AccessorySetupKit.ASAccessorySession.ShowPicker(AccessorySetupKit.ASPickerDisplayItem[],AccessorySetupKit.ASAccessorySessionCompletionHandler)
M:AccessorySetupKit.ASAccessorySession.ShowPickerAsync
M:AccessorySetupKit.ASAccessorySession.ShowPickerAsync(AccessorySetupKit.ASPickerDisplayItem[])
-M:AccessorySetupKit.ASMigrationDisplayItem.#ctor(System.String,UIKit.UIImage,AccessorySetupKit.ASDiscoveryDescriptor)
-M:AccessorySetupKit.ASPickerDisplayItem.#ctor(System.String,UIKit.UIImage,AccessorySetupKit.ASDiscoveryDescriptor)
-M:Accounts.ACAccount.#ctor(Accounts.ACAccountType)
M:Accounts.ACAccount.EncodeTo(Foundation.NSCoder)
-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.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: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.ACAccountType.EncodeTo(Foundation.NSCoder)
M:Accounts.AccountStoreOptions.#ctor
@@ -22383,7 +19092,6 @@ M:AddressBookUI.IABPeoplePickerNavigationControllerDelegate.ShouldContinue(Addre
M:AddressBookUI.IABPersonViewControllerDelegate.ShouldPerformDefaultActionForPerson(AddressBookUI.ABPersonViewController,AddressBook.ABPerson,System.Int32,System.Int32)
M:AddressBookUI.IABUnknownPersonViewControllerDelegate.DidResolveToPerson(AddressBookUI.ABUnknownPersonViewController,AddressBook.ABPerson)
M:AddressBookUI.IABUnknownPersonViewControllerDelegate.ShouldPerformDefaultActionForPerson(AddressBookUI.ABUnknownPersonViewController,AddressBook.ABPerson,System.Int32,System.Int32)
-M:AdServices.AAAttribution.GetAttributionToken(Foundation.NSError@)
M:AppClip.APActivationPayload.ConfirmAcquired(CoreLocation.CLRegion,System.Action{System.Boolean,Foundation.NSError})
M:AppClip.APActivationPayload.ConfirmAcquiredAsync(CoreLocation.CLRegion)
M:AppClip.APActivationPayload.Copy(Foundation.NSZone)
@@ -23229,45 +19937,10 @@ M:AppKit.NSAccessibility.GetUnignoredDescendant(Foundation.NSObject)
M:AppKit.NSAccessibility.PostNotification(Foundation.NSObject,Foundation.NSString,Foundation.NSDictionary)
M:AppKit.NSAccessibility.PostNotification(Foundation.NSObject,Foundation.NSString)
M:AppKit.NSAccessibility.SetMayContainProtectedContent(System.Boolean)
-M:AppKit.NSAccessibilityCustomAction.#ctor(System.String,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSAccessibilityCustomAction.#ctor(System.String,System.Func{System.Boolean})
M:AppKit.NSAccessibilityCustomAction.Dispose(System.Boolean)
-M:AppKit.NSAccessibilityCustomRotor.#ctor(AppKit.NSAccessibilityCustomRotorType,AppKit.INSAccessibilityCustomRotorItemSearchDelegate)
-M:AppKit.NSAccessibilityCustomRotor.#ctor(System.String,AppKit.INSAccessibilityCustomRotorItemSearchDelegate)
M:AppKit.NSAccessibilityCustomRotor.Dispose(System.Boolean)
-M:AppKit.NSAccessibilityCustomRotorItemResult.#ctor(AppKit.NSAccessibilityElement)
-M:AppKit.NSAccessibilityCustomRotorItemResult.#ctor(Foundation.INSSecureCoding,System.String)
M:AppKit.NSAccessibilityCustomRotorItemResult.Dispose(System.Boolean)
-M:AppKit.NSAccessibilityCustomRotorItemSearchDelegate.GetResult(AppKit.NSAccessibilityCustomRotor,AppKit.NSAccessibilityCustomRotorSearchParameters)
-M:AppKit.NSAccessibilityElement.AccessibilityAddChildElement(AppKit.NSAccessibilityElement)
-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.CreateElement(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSString,Foundation.NSObject)
M:AppKit.NSAccessibilityElement.Dispose(System.Boolean)
-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.NSAccessibilityElementLoading_Extensions.GetAccessibilityRangeInTargetElement(AppKit.INSAccessibilityElementLoading,Foundation.INSSecureCoding)
M:AppKit.NSAccessibilityElementProtocol_Extensions.GetAccessibilityFocused(AppKit.INSAccessibilityElementProtocol)
M:AppKit.NSAccessibilityElementProtocol_Extensions.GetAccessibilityIdentifier(AppKit.INSAccessibilityElementProtocol)
@@ -23289,44 +19962,23 @@ M:AppKit.NSAccessibilityTable_Extensions.GetAccessibilityVisibleCells(AppKit.INS
M:AppKit.NSAccessibilityTable_Extensions.GetAccessibilityVisibleColumns(AppKit.INSAccessibilityTable)
M:AppKit.NSAccessibilityTable_Extensions.GetAccessibilityVisibleRows(AppKit.INSAccessibilityTable)
M:AppKit.NSAccessibilityTable_Extensions.SetAccessibilitySelectedRows(AppKit.INSAccessibilityTable,AppKit.INSAccessibilityRow[])
-M:AppKit.NSActionCell.#ctor(AppKit.NSImage)
-M:AppKit.NSActionCell.#ctor(System.String)
M:AppKit.NSActionCell.add_Activated(System.EventHandler)
M:AppKit.NSActionCell.Dispose(System.Boolean)
M:AppKit.NSActionCell.remove_Activated(System.EventHandler)
-M:AppKit.NSAdaptiveImageGlyph.#ctor(Foundation.NSData)
M:AppKit.NSAdaptiveImageGlyph.Copy(Foundation.NSZone)
M:AppKit.NSAdaptiveImageGlyph.EncodeTo(Foundation.NSCoder)
M:AppKit.NSAdaptiveImageGlyph.GetImage(CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint@,CoreGraphics.CGSize@)
-M:AppKit.NSAlert.AddButton(System.String)
-M:AppKit.NSAlert.BeginSheet(AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:AppKit.NSAlert.BeginSheet(AppKit.NSWindow,System.Action)
-M:AppKit.NSAlert.BeginSheet(AppKit.NSWindow,System.Action{AppKit.NSModalResponse})
M:AppKit.NSAlert.BeginSheet(AppKit.NSWindow)
M:AppKit.NSAlert.BeginSheetAsync(AppKit.NSWindow)
M:AppKit.NSAlert.BeginSheetForResponse(AppKit.NSWindow,System.Action{System.IntPtr})
M:AppKit.NSAlert.Dispose(System.Boolean)
-M:AppKit.NSAlert.Layout
-M:AppKit.NSAlert.RunModal
M:AppKit.NSAlert.RunSheetModal(AppKit.NSWindow,AppKit.NSApplication)
M:AppKit.NSAlert.RunSheetModal(AppKit.NSWindow)
-M:AppKit.NSAlert.WithError(Foundation.NSError)
-M:AppKit.NSAlert.WithMessage(System.String,System.String,System.String,System.String,System.String)
M:AppKit.NSAlertDelegate_Extensions.ShowHelp(AppKit.INSAlertDelegate,AppKit.NSAlert)
-M:AppKit.NSAlertDelegate.ShowHelp(AppKit.NSAlert)
-M:AppKit.NSAlignmentFeedbackFilter.GetTokenForHorizontalMovement(AppKit.NSView,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSAlignmentFeedbackFilter.GetTokenForMovement(AppKit.NSView,CoreGraphics.CGPoint,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:AppKit.NSAlignmentFeedbackFilter.GetTokenForVerticalMovement(AppKit.NSView,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSAlignmentFeedbackFilter.PerformFeedback(AppKit.INSAlignmentFeedbackToken[],AppKit.NSHapticFeedbackPerformanceTime)
-M:AppKit.NSAlignmentFeedbackFilter.Update(AppKit.NSEvent)
-M:AppKit.NSAlignmentFeedbackFilter.Update(AppKit.NSPanGestureRecognizer)
-M:AppKit.NSAnimation.#ctor(System.Double,AppKit.NSAnimationCurve)
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.AddProgressMark(System.Single)
-M:AppKit.NSAnimation.ClearStartAnimation
-M:AppKit.NSAnimation.ClearStopAnimation
M:AppKit.NSAnimation.Copy(Foundation.NSZone)
M:AppKit.NSAnimation.Dispose(System.Boolean)
M:AppKit.NSAnimation.EncodeTo(Foundation.NSCoder)
@@ -23334,53 +19986,20 @@ M:AppKit.NSAnimation.IsAnimating
M:AppKit.NSAnimation.remove_AnimationDidEnd(System.EventHandler)
M:AppKit.NSAnimation.remove_AnimationDidReachProgressMark(System.EventHandler{AppKit.NSAnimationEventArgs})
M:AppKit.NSAnimation.remove_AnimationDidStop(System.EventHandler)
-M:AppKit.NSAnimation.RemoveProgressMark(System.Single)
-M:AppKit.NSAnimation.StartAnimation
-M:AppKit.NSAnimation.StartWhenAnimationReaches(AppKit.NSAnimation,System.Single)
-M:AppKit.NSAnimation.StopAnimation
-M:AppKit.NSAnimation.StopWhenAnimationReaches(AppKit.NSAnimation,System.Single)
-M:AppKit.NSAnimationContext.BeginGrouping
-M:AppKit.NSAnimationContext.EndGrouping
-M:AppKit.NSAnimationContext.RunAnimation(System.Action{AppKit.NSAnimationContext},System.Action)
-M:AppKit.NSAnimationContext.RunAnimation(System.Action{AppKit.NSAnimationContext})
M:AppKit.NSAnimationDelegate_Extensions.AnimationDidEnd(AppKit.INSAnimationDelegate,AppKit.NSAnimation)
M:AppKit.NSAnimationDelegate_Extensions.AnimationDidReachProgressMark(AppKit.INSAnimationDelegate,AppKit.NSAnimation,System.Single)
M:AppKit.NSAnimationDelegate_Extensions.AnimationDidStop(AppKit.INSAnimationDelegate,AppKit.NSAnimation)
M:AppKit.NSAnimationDelegate_Extensions.AnimationShouldStart(AppKit.INSAnimationDelegate,AppKit.NSAnimation)
M:AppKit.NSAnimationDelegate_Extensions.ComputeAnimationCurve(AppKit.INSAnimationDelegate,AppKit.NSAnimation,System.Single)
-M:AppKit.NSAnimationDelegate.AnimationDidEnd(AppKit.NSAnimation)
-M:AppKit.NSAnimationDelegate.AnimationDidReachProgressMark(AppKit.NSAnimation,System.Single)
-M:AppKit.NSAnimationDelegate.AnimationDidStop(AppKit.NSAnimation)
-M:AppKit.NSAnimationDelegate.AnimationShouldStart(AppKit.NSAnimation)
-M:AppKit.NSAnimationDelegate.ComputeAnimationCurve(AppKit.NSAnimation,System.Single)
M:AppKit.NSAnimationEventArgs.#ctor(System.Single)
M:AppKit.NSAnimationProgressMarkEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSAppearance.#ctor(System.String,Foundation.NSBundle)
M:AppKit.NSAppearance.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSAppearance.FindBestMatch(System.String[])
-M:AppKit.NSAppearance.GetAppearance(Foundation.NSString)
-M:AppKit.NSAppearance.PerformAsCurrentDrawingAppearance(System.Action)
M:AppKit.NSApplication_NSServicesMenu.RegisterServicesMenu(AppKit.NSApplication,System.String[],System.String[])
M:AppKit.NSApplication_NSStandardAboutPanel.OrderFrontStandardAboutPanel(AppKit.NSApplication,Foundation.NSObject)
M:AppKit.NSApplication_NSStandardAboutPanel.OrderFrontStandardAboutPanelWithOptions(AppKit.NSApplication,Foundation.NSDictionary)
M:AppKit.NSApplication_NSTouchBarCustomization.GetAutomaticCustomizeTouchBarMenuItemEnabled(AppKit.NSApplication)
M:AppKit.NSApplication_NSTouchBarCustomization.SetAutomaticCustomizeTouchBarMenuItemEnabled(AppKit.NSApplication,System.Boolean)
M:AppKit.NSApplication_NSTouchBarCustomization.ToggleTouchBarCustomizationPalette(AppKit.NSApplication,Foundation.NSObject)
-M:AppKit.NSApplication.AbortModal
-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.Activate
-M:AppKit.NSApplication.ActivateContextHelpMode(Foundation.NSObject)
-M:AppKit.NSApplication.ActivateIgnoringOtherApps(System.Boolean)
M:AppKit.NSApplication.add_DecodedRestorableState(System.EventHandler{AppKit.NSCoderEventArgs})
M:AppKit.NSApplication.add_DidBecomeActive(System.EventHandler)
M:AppKit.NSApplication.add_DidFinishLaunching(System.EventHandler)
@@ -23407,64 +20026,17 @@ M:AppKit.NSApplication.add_WillResignActive(System.EventHandler)
M:AppKit.NSApplication.add_WillTerminate(System.EventHandler)
M:AppKit.NSApplication.add_WillUnhide(System.EventHandler)
M:AppKit.NSApplication.add_WillUpdate(System.EventHandler)
-M:AppKit.NSApplication.AddWindowsItem(AppKit.NSWindow,System.String,System.Boolean)
-M:AppKit.NSApplication.ArrangeInFront(Foundation.NSObject)
-M:AppKit.NSApplication.BeginModalSession(AppKit.NSWindow)
-M:AppKit.NSApplication.BeginSheet(AppKit.NSWindow,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:AppKit.NSApplication.BeginSheet(AppKit.NSWindow,AppKit.NSWindow,System.Action)
M:AppKit.NSApplication.BeginSheet(AppKit.NSWindow,AppKit.NSWindow)
-M:AppKit.NSApplication.CancelUserAttentionRequest(System.IntPtr)
-M:AppKit.NSApplication.ChangeWindowsItem(AppKit.NSWindow,System.String,System.Boolean)
-M:AppKit.NSApplication.CompleteStateRestoration
-M:AppKit.NSApplication.Deactivate
-M:AppKit.NSApplication.DetachDrawingThread(ObjCRuntime.Selector,Foundation.NSObject,Foundation.NSObject)
-M:AppKit.NSApplication.DisableRelaunchOnLogin
M:AppKit.NSApplication.DiscardEvents(AppKit.NSEventMask,AppKit.NSEvent)
-M:AppKit.NSApplication.DiscardEvents(System.UIntPtr,AppKit.NSEvent)
M:AppKit.NSApplication.Dispose(System.Boolean)
-M:AppKit.NSApplication.EnabledRemoteNotificationTypes
-M:AppKit.NSApplication.EnableRelaunchOnLogin
-M:AppKit.NSApplication.EndModalSession(System.IntPtr)
-M:AppKit.NSApplication.EndSheet(AppKit.NSWindow,System.IntPtr)
-M:AppKit.NSApplication.EndSheet(AppKit.NSWindow)
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.EnumerateWindows(AppKit.NSWindowListOptions,AppKit.NSApplicationEnumerateWindowsHandler)
-M:AppKit.NSApplication.ExtendStateRestoration
-M:AppKit.NSApplication.FinishLaunching
-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.GetActivationPolicy
-M:AppKit.NSApplication.Hide(Foundation.NSObject)
-M:AppKit.NSApplication.HideOtherApplications(Foundation.NSObject)
M:AppKit.NSApplication.Init
M:AppKit.NSApplication.InitDrawingBridge
-M:AppKit.NSApplication.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector)
M:AppKit.NSApplication.Main(System.String[])
-M:AppKit.NSApplication.MakeWindowsPerform(ObjCRuntime.Selector,System.Boolean)
-M:AppKit.NSApplication.MiniaturizeAll(Foundation.NSObject)
M:AppKit.NSApplication.NextEvent(AppKit.NSEventMask,Foundation.NSDate,Foundation.NSRunLoopMode,System.Boolean)
-M:AppKit.NSApplication.NextEvent(AppKit.NSEventMask,Foundation.NSDate,Foundation.NSString,System.Boolean)
-M:AppKit.NSApplication.OrderFrontCharacterPalette(Foundation.NSObject)
-M:AppKit.NSApplication.OrderFrontColorPanel(Foundation.NSObject)
-M:AppKit.NSApplication.PostEvent(AppKit.NSEvent,System.Boolean)
-M:AppKit.NSApplication.PreventWindowOrdering
-M:AppKit.NSApplication.RegisterForRemoteNotifications
-M:AppKit.NSApplication.RegisterForRemoteNotificationTypes(AppKit.NSRemoteNotificationType)
-M:AppKit.NSApplication.RegisterUserInterfaceItemSearchHandler(AppKit.INSUserInterfaceItemSearching)
M:AppKit.NSApplication.remove_DecodedRestorableState(System.EventHandler{AppKit.NSCoderEventArgs})
M:AppKit.NSApplication.remove_DidBecomeActive(System.EventHandler)
M:AppKit.NSApplication.remove_DidFinishLaunching(System.EventHandler)
@@ -23491,41 +20063,6 @@ M:AppKit.NSApplication.remove_WillResignActive(System.EventHandler)
M:AppKit.NSApplication.remove_WillTerminate(System.EventHandler)
M:AppKit.NSApplication.remove_WillUnhide(System.EventHandler)
M:AppKit.NSApplication.remove_WillUpdate(System.EventHandler)
-M:AppKit.NSApplication.RemoveWindowsItem(AppKit.NSWindow)
-M:AppKit.NSApplication.ReplyToApplicationShouldTerminate(System.Boolean)
-M:AppKit.NSApplication.ReplyToOpenOrPrint(AppKit.NSApplicationDelegateReply)
-M:AppKit.NSApplication.ReportException(Foundation.NSException)
-M:AppKit.NSApplication.RequestUserAttention(AppKit.NSRequestUserAttentionType)
-M:AppKit.NSApplication.RestoreWindowWithIdentifier(System.String,Foundation.NSCoder,AppKit.NSWindowCompletionHandler)
-M:AppKit.NSApplication.Run
-M:AppKit.NSApplication.RunModalForWindow(AppKit.NSWindow)
-M:AppKit.NSApplication.RunModalSession(System.IntPtr)
-M:AppKit.NSApplication.SearchStringInUserInterface(System.String,System.String,Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.NSApplication.SendAction(ObjCRuntime.Selector,Foundation.NSObject,Foundation.NSObject)
-M:AppKit.NSApplication.SendEvent(AppKit.NSEvent)
-M:AppKit.NSApplication.SetActivationPolicy(AppKit.NSApplicationActivationPolicy)
-M:AppKit.NSApplication.SetWindowsNeedUpdate(System.Boolean)
-M:AppKit.NSApplication.ShowHelp(Foundation.NSObject)
-M:AppKit.NSApplication.Stop(Foundation.NSObject)
-M:AppKit.NSApplication.StopModal
-M:AppKit.NSApplication.StopModalWithCode(System.IntPtr)
-M:AppKit.NSApplication.TargetForAction(ObjCRuntime.Selector,Foundation.NSObject,Foundation.NSObject)
-M:AppKit.NSApplication.TargetForAction(ObjCRuntime.Selector)
-M:AppKit.NSApplication.Terminate(Foundation.NSObject)
-M:AppKit.NSApplication.TryToPerform(ObjCRuntime.Selector,Foundation.NSObject)
-M:AppKit.NSApplication.Unhide(Foundation.NSObject)
-M:AppKit.NSApplication.UnhideAllApplications(Foundation.NSObject)
-M:AppKit.NSApplication.UnhideWithoutActivation
-M:AppKit.NSApplication.UnregisterForRemoteNotifications
-M:AppKit.NSApplication.UnregisterUserInterfaceItemSearchHandler(AppKit.INSUserInterfaceItemSearching)
-M:AppKit.NSApplication.UpdateWindows
-M:AppKit.NSApplication.UpdateWindowsItem(AppKit.NSWindow)
-M:AppKit.NSApplication.ValidateMenuItem(AppKit.NSMenuItem)
-M:AppKit.NSApplication.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.NSApplication.ValidRequestor(System.String,System.String)
-M:AppKit.NSApplication.WindowWithWindowNumber(System.IntPtr)
-M:AppKit.NSApplication.YieldActivation(AppKit.NSRunningApplication)
-M:AppKit.NSApplication.YieldActivation(System.String)
M:AppKit.NSApplicationDelegate_Extensions.ApplicationDockMenu(AppKit.INSApplicationDelegate,AppKit.NSApplication)
M:AppKit.NSApplicationDelegate_Extensions.ApplicationOpenUntitledFile(AppKit.INSApplicationDelegate,AppKit.NSApplication)
M:AppKit.NSApplicationDelegate_Extensions.ApplicationShouldHandleReopen(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.Boolean)
@@ -23570,230 +20107,31 @@ M:AppKit.NSApplicationDelegate_Extensions.WillResignActive(AppKit.INSApplication
M:AppKit.NSApplicationDelegate_Extensions.WillTerminate(AppKit.INSApplicationDelegate,Foundation.NSNotification)
M:AppKit.NSApplicationDelegate_Extensions.WillUnhide(AppKit.INSApplicationDelegate,Foundation.NSNotification)
M:AppKit.NSApplicationDelegate_Extensions.WillUpdate(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.ApplicationDockMenu(AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate.ApplicationOpenUntitledFile(AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate.ApplicationShouldHandleReopen(AppKit.NSApplication,System.Boolean)
-M:AppKit.NSApplicationDelegate.ApplicationShouldOpenUntitledFile(AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate.ApplicationShouldTerminate(AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate.ApplicationShouldTerminateAfterLastWindowClosed(AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate.ContinueUserActivity(AppKit.NSApplication,Foundation.NSUserActivity,AppKit.ContinueUserActivityRestorationHandler)
-M:AppKit.NSApplicationDelegate.DecodedRestorableState(AppKit.NSApplication,Foundation.NSCoder)
-M:AppKit.NSApplicationDelegate.DidBecomeActive(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.DidFinishLaunching(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.DidHide(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.DidResignActive(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.DidUnhide(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.DidUpdate(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.FailedToContinueUserActivity(AppKit.NSApplication,System.String,Foundation.NSError)
-M:AppKit.NSApplicationDelegate.FailedToRegisterForRemoteNotifications(AppKit.NSApplication,Foundation.NSError)
-M:AppKit.NSApplicationDelegate.GetHandler(AppKit.NSApplication,Intents.INIntent)
-M:AppKit.NSApplicationDelegate.HandlesKey(AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate.OpenFile(AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate.OpenFiles(AppKit.NSApplication,System.String[])
-M:AppKit.NSApplicationDelegate.OpenFileWithoutUI(Foundation.NSObject,System.String)
-M:AppKit.NSApplicationDelegate.OpenTempFile(AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate.OpenUrls(AppKit.NSApplication,Foundation.NSUrl[])
-M:AppKit.NSApplicationDelegate.PrintFile(AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate.PrintFiles(AppKit.NSApplication,System.String[],Foundation.NSDictionary,System.Boolean)
-M:AppKit.NSApplicationDelegate.ProtectedDataDidBecomeAvailable(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.ProtectedDataWillBecomeUnavailable(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.ReceivedRemoteNotification(AppKit.NSApplication,Foundation.NSDictionary)
-M:AppKit.NSApplicationDelegate.RegisteredForRemoteNotifications(AppKit.NSApplication,Foundation.NSData)
-M:AppKit.NSApplicationDelegate.ScreenParametersChanged(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.ShouldAutomaticallyLocalizeKeyEquivalents(AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate.SupportsSecureRestorableState(AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate.UpdatedUserActivity(AppKit.NSApplication,Foundation.NSUserActivity)
-M:AppKit.NSApplicationDelegate.UserDidAcceptCloudKitShare(AppKit.NSApplication,CloudKit.CKShareMetadata)
-M:AppKit.NSApplicationDelegate.WillBecomeActive(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.WillContinueUserActivity(AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate.WillEncodeRestorableState(AppKit.NSApplication,Foundation.NSCoder)
-M:AppKit.NSApplicationDelegate.WillFinishLaunching(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.WillHide(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.WillPresentError(AppKit.NSApplication,Foundation.NSError)
-M:AppKit.NSApplicationDelegate.WillResignActive(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.WillTerminate(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.WillUnhide(Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate.WillUpdate(Foundation.NSNotification)
M:AppKit.NSApplicationDidFinishLaunchingEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSApplicationFailedEventArgs.#ctor(System.String,Foundation.NSError)
M:AppKit.NSApplicationFilesEventArgs.#ctor(System.String[])
M:AppKit.NSApplicationOpenUrlsEventArgs.#ctor(Foundation.NSUrl[])
M:AppKit.NSApplicationUpdatedUserActivityEventArgs.#ctor(Foundation.NSUserActivity)
M:AppKit.NSApplicationUserAcceptedCloudKitShareEventArgs.#ctor(CloudKit.CKShareMetadata)
-M:AppKit.NSArrayController.Add(Foundation.NSObject)
-M:AppKit.NSArrayController.AddObject(Foundation.NSObject)
-M:AppKit.NSArrayController.AddObjects(Foundation.NSArray)
-M:AppKit.NSArrayController.AddSelectedObjects(Foundation.NSObject[])
-M:AppKit.NSArrayController.AddSelectionIndexes(Foundation.NSIndexSet)
-M:AppKit.NSArrayController.ArrangedObjects
-M:AppKit.NSArrayController.ArrangeObjects(Foundation.NSObject[])
-M:AppKit.NSArrayController.AutomaticRearrangementKeyPaths
-M:AppKit.NSArrayController.CanInsert
-M:AppKit.NSArrayController.CanSelectNext
-M:AppKit.NSArrayController.CanSelectPrevious
-M:AppKit.NSArrayController.DidChangeArrangementCriteria
-M:AppKit.NSArrayController.GetSelectedObjects
-M:AppKit.NSArrayController.GetSelectionIndex
-M:AppKit.NSArrayController.GetSelectionIndexes
-M:AppKit.NSArrayController.Insert(Foundation.NSObject,System.IntPtr)
-M:AppKit.NSArrayController.Insert(Foundation.NSObject)
-M:AppKit.NSArrayController.Insert(Foundation.NSObject[],Foundation.NSIndexSet)
-M:AppKit.NSArrayController.RearrangeObjects
-M:AppKit.NSArrayController.Remove(Foundation.NSIndexSet)
-M:AppKit.NSArrayController.Remove(Foundation.NSObject)
-M:AppKit.NSArrayController.Remove(Foundation.NSObject[])
-M:AppKit.NSArrayController.RemoveAt(System.IntPtr)
-M:AppKit.NSArrayController.RemoveOp(Foundation.NSObject)
-M:AppKit.NSArrayController.RemoveSelectedObjects(Foundation.NSObject[])
-M:AppKit.NSArrayController.RemoveSelectionIndexes(Foundation.NSIndexSet)
-M:AppKit.NSArrayController.SelectNext(Foundation.NSObject)
-M:AppKit.NSArrayController.SelectPrevious(Foundation.NSObject)
-M:AppKit.NSArrayController.SetSelectedObjects(Foundation.NSObject[])
-M:AppKit.NSArrayController.SetSelectionIndex(System.UIntPtr)
-M:AppKit.NSArrayController.SetSelectionIndexes(Foundation.NSIndexSet)
M:AppKit.NSAttributedString_NSExtendedStringDrawing.BoundingRectWithSize(Foundation.NSAttributedString,CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,AppKit.NSStringDrawingContext)
M:AppKit.NSAttributedString_NSExtendedStringDrawing.DrawWithRect(Foundation.NSAttributedString,CoreGraphics.CGRect,Foundation.NSStringDrawingOptions,AppKit.NSStringDrawingContext)
M:AppKit.NSAttributedStringDocumentReadingOptions.#ctor
M:AppKit.NSAttributedStringDocumentReadingOptions.#ctor(Foundation.NSDictionary)
-M:AppKit.NSBezierPath.AddClip
M:AppKit.NSBezierPath.Append(AppKit.NSBezierPath)
M:AppKit.NSBezierPath.Append(CoreGraphics.CGPoint[])
M:AppKit.NSBezierPath.Append(System.UInt32[],AppKit.NSFont)
-M:AppKit.NSBezierPath.AppendPath(AppKit.NSBezierPath)
-M:AppKit.NSBezierPath.AppendPathWithArc(CoreGraphics.CGPoint,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSBezierPath.AppendPathWithArc(CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)
-M:AppKit.NSBezierPath.AppendPathWithArc(CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSBezierPath.AppendPathWithCGGlyph(System.UInt16,AppKit.NSFont)
-M:AppKit.NSBezierPath.AppendPathWithGlyph(System.UInt32,AppKit.NSFont)
-M:AppKit.NSBezierPath.AppendPathWithOvalInRect(CoreGraphics.CGRect)
-M:AppKit.NSBezierPath.AppendPathWithPackedGlyphs(System.IntPtr)
-M:AppKit.NSBezierPath.AppendPathWithRect(CoreGraphics.CGRect)
-M:AppKit.NSBezierPath.AppendPathWithRoundedRect(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSBezierPath.BezierPathByFlatteningPath
-M:AppKit.NSBezierPath.BezierPathByReversingPath
-M:AppKit.NSBezierPath.ClipRect(CoreGraphics.CGRect)
-M:AppKit.NSBezierPath.ClosePath
-M:AppKit.NSBezierPath.Contains(CoreGraphics.CGPoint)
M:AppKit.NSBezierPath.Copy(Foundation.NSZone)
-M:AppKit.NSBezierPath.CurveTo(CoreGraphics.CGPoint,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.CurveTo(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.DrawPackedGlyphsAtPoint(System.IntPtr,CoreGraphics.CGPoint)
M:AppKit.NSBezierPath.ElementAt(System.IntPtr,CoreGraphics.CGPoint[]@)
-M:AppKit.NSBezierPath.ElementAt(System.IntPtr)
M:AppKit.NSBezierPath.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSBezierPath.Fill
-M:AppKit.NSBezierPath.FillRect(CoreGraphics.CGRect)
-M:AppKit.NSBezierPath.FromCGPath(CoreGraphics.CGPath)
-M:AppKit.NSBezierPath.FromOvalInRect(CoreGraphics.CGRect)
-M:AppKit.NSBezierPath.FromRect(CoreGraphics.CGRect)
-M:AppKit.NSBezierPath.FromRoundedRect(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSBezierPath.GetLineDash(System.Runtime.InteropServices.NFloat[]@,System.Runtime.InteropServices.NFloat@)
-M:AppKit.NSBezierPath.LineTo(CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.MoveTo(CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.RelativeCurveTo(CoreGraphics.CGPoint,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.RelativeCurveTo(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.RelativeLineTo(CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.RelativeMoveTo(CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.RemoveAllPoints
M:AppKit.NSBezierPath.SetAssociatedPointsAtIndex(CoreGraphics.CGPoint[],System.IntPtr)
-M:AppKit.NSBezierPath.SetClip
M:AppKit.NSBezierPath.SetLineDash(System.Runtime.InteropServices.NFloat[],System.Runtime.InteropServices.NFloat)
-M:AppKit.NSBezierPath.Stroke
-M:AppKit.NSBezierPath.StrokeLine(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:AppKit.NSBezierPath.StrokeRect(CoreGraphics.CGRect)
-M:AppKit.NSBezierPath.TransformUsingAffineTransform(Foundation.NSAffineTransform)
-M:AppKit.NSBitmapImageRep.#ctor(CoreGraphics.CGImage)
-M:AppKit.NSBitmapImageRep.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSBitmapImageRep.#ctor(CoreImage.CIImage)
-M:AppKit.NSBitmapImageRep.#ctor(Foundation.NSData)
-M:AppKit.NSBitmapImageRep.#ctor(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,System.String,AppKit.NSBitmapFormat,System.IntPtr,System.IntPtr)
-M:AppKit.NSBitmapImageRep.#ctor(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean,System.Boolean,System.String,System.IntPtr,System.IntPtr)
-M:AppKit.NSBitmapImageRep.CanBeCompressedUsing(AppKit.NSTiffCompression)
-M:AppKit.NSBitmapImageRep.ColorAt(System.IntPtr,System.IntPtr)
-M:AppKit.NSBitmapImageRep.Colorize(System.Runtime.InteropServices.NFloat,AppKit.NSColor,AppKit.NSColor,AppKit.NSColor)
-M:AppKit.NSBitmapImageRep.ConvertingToColorSpace(AppKit.NSColorSpace,AppKit.NSColorRenderingIntent)
M:AppKit.NSBitmapImageRep.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSBitmapImageRep.GetBitmapDataPlanes(System.IntPtr)
-M:AppKit.NSBitmapImageRep.GetCompressionFactor(AppKit.NSTiffCompression@,System.Single@)
-M:AppKit.NSBitmapImageRep.ImageRepFromData(Foundation.NSData)
-M:AppKit.NSBitmapImageRep.ImageRepsWithData(Foundation.NSData)
-M:AppKit.NSBitmapImageRep.ImagesAsTiff(AppKit.NSImageRep[],AppKit.NSTiffCompression,System.Single)
-M:AppKit.NSBitmapImageRep.ImagesAsTiff(AppKit.NSImageRep[])
-M:AppKit.NSBitmapImageRep.IncrementalLoad(Foundation.NSData,System.Boolean)
M:AppKit.NSBitmapImageRep.IncrementalLoader
-M:AppKit.NSBitmapImageRep.LocalizedNameForTiffCompressionType(AppKit.NSTiffCompression)
-M:AppKit.NSBitmapImageRep.RepresentationUsingTypeProperties(AppKit.NSBitmapImageFileType,Foundation.NSDictionary)
M:AppKit.NSBitmapImageRep.RepresentationUsingTypeProperties(AppKit.NSBitmapImageFileType)
-M:AppKit.NSBitmapImageRep.RetaggedWithColorSpace(AppKit.NSColorSpace)
-M:AppKit.NSBitmapImageRep.SetColorAt(AppKit.NSColor,System.IntPtr,System.IntPtr)
-M:AppKit.NSBitmapImageRep.SetCompressionFactor(AppKit.NSTiffCompression,System.Single)
-M:AppKit.NSBitmapImageRep.TiffRepresentationUsingCompressionFactor(AppKit.NSTiffCompression,System.Single)
-M:AppKit.NSBox.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSBox.SetFrameFromContentFrame(CoreGraphics.CGRect)
-M:AppKit.NSBox.SetTitleWithMnemonic(System.String)
-M:AppKit.NSBox.SizeToFit
-M:AppKit.NSBrowser.#ctor(CoreGraphics.CGRect)
M:AppKit.NSBrowser.add_DoubleClick(System.EventHandler)
-M:AppKit.NSBrowser.AddColumn
-M:AppKit.NSBrowser.CanDragRowsWithIndexes(Foundation.NSIndexSet,System.IntPtr,AppKit.NSEvent)
-M:AppKit.NSBrowser.ClickedColumn
-M:AppKit.NSBrowser.ClickedRow
-M:AppKit.NSBrowser.ColumnContentWidthForColumnWidth(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSBrowser.ColumnFrame(System.IntPtr)
-M:AppKit.NSBrowser.ColumnInsideFrame(System.IntPtr)
-M:AppKit.NSBrowser.ColumnOfMatrix(AppKit.NSMatrix)
-M:AppKit.NSBrowser.ColumnPath(System.IntPtr)
-M:AppKit.NSBrowser.ColumnTitle(System.IntPtr)
-M:AppKit.NSBrowser.ColumnWidthForColumnContentWidth(System.Runtime.InteropServices.NFloat)
M:AppKit.NSBrowser.Dispose(System.Boolean)
-M:AppKit.NSBrowser.DoClick(Foundation.NSObject)
-M:AppKit.NSBrowser.DoDoubleClick(Foundation.NSObject)
-M:AppKit.NSBrowser.DrawTitle(System.IntPtr,CoreGraphics.CGRect)
-M:AppKit.NSBrowser.EditItemAtIndexPath(Foundation.NSIndexPath,AppKit.NSEvent,System.Boolean)
-M:AppKit.NSBrowser.GetColumnWidth(System.IntPtr)
-M:AppKit.NSBrowser.GetItem(System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowser.GetPath
-M:AppKit.NSBrowser.GetRowColumnForPoint(System.IntPtr@,System.IntPtr@,CoreGraphics.CGPoint)
-M:AppKit.NSBrowser.IndexPathForColumn(System.IntPtr)
-M:AppKit.NSBrowser.IsLeafItem(Foundation.NSObject)
-M:AppKit.NSBrowser.ItemAtIndexPath(Foundation.NSIndexPath)
-M:AppKit.NSBrowser.LoadColumnZero
-M:AppKit.NSBrowser.LoadedCell(System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowser.MatrixInColumn(System.IntPtr)
-M:AppKit.NSBrowser.NoteHeightOfRows(Foundation.NSIndexSet,System.IntPtr)
-M:AppKit.NSBrowser.ParentForItems(System.IntPtr)
-M:AppKit.NSBrowser.ReloadColumn(System.IntPtr)
-M:AppKit.NSBrowser.ReloadData(Foundation.NSIndexSet,System.IntPtr)
M:AppKit.NSBrowser.remove_DoubleClick(System.EventHandler)
-M:AppKit.NSBrowser.RemoveSavedColumnsWithAutosaveName(System.String)
-M:AppKit.NSBrowser.RowFrame(System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowser.ScrollColumnsLeftBy(System.IntPtr)
-M:AppKit.NSBrowser.ScrollColumnsRightBy(System.IntPtr)
-M:AppKit.NSBrowser.ScrollColumnToVisible(System.IntPtr)
-M:AppKit.NSBrowser.ScrollRowToVisible(System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowser.Select(System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowser.SelectAll(Foundation.NSObject)
-M:AppKit.NSBrowser.SelectedCell
-M:AppKit.NSBrowser.SelectedCellInColumn(System.IntPtr)
-M:AppKit.NSBrowser.SelectedCells
-M:AppKit.NSBrowser.SelectedColumn
-M:AppKit.NSBrowser.SelectedRow(System.IntPtr)
-M:AppKit.NSBrowser.SelectedRowIndexes(System.IntPtr)
-M:AppKit.NSBrowser.SelectRowIndexes(Foundation.NSIndexSet,System.IntPtr)
-M:AppKit.NSBrowser.SendAction
-M:AppKit.NSBrowser.SetCellClass(ObjCRuntime.Class)
-M:AppKit.NSBrowser.SetColumnWidth(System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSBrowser.SetDraggingSourceOperationMask(AppKit.NSDragOperation,System.Boolean)
-M:AppKit.NSBrowser.SetPath(System.String)
-M:AppKit.NSBrowser.SetTitle(System.String,System.IntPtr)
-M:AppKit.NSBrowser.Tile
-M:AppKit.NSBrowser.TitleFrameOfColumn(System.IntPtr)
-M:AppKit.NSBrowser.ValidateVisibleColumns
-M:AppKit.NSBrowserCell.#ctor(AppKit.NSImage)
-M:AppKit.NSBrowserCell.#ctor(System.String)
-M:AppKit.NSBrowserCell.HighlightColorInView(AppKit.NSView)
-M:AppKit.NSBrowserCell.Reset
-M:AppKit.NSBrowserCell.Set
M:AppKit.NSBrowserDelegate_Extensions.AcceptDrop(AppKit.INSBrowserDelegate,AppKit.NSBrowser,AppKit.INSDraggingInfo,System.IntPtr,System.IntPtr,AppKit.NSBrowserDropOperation)
M:AppKit.NSBrowserDelegate_Extensions.CanDragRowsWithIndexes(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr,AppKit.NSEvent)
M:AppKit.NSBrowserDelegate_Extensions.ColumnConfigurationDidChange(AppKit.INSBrowserDelegate,Foundation.NSNotification)
@@ -23827,308 +20165,56 @@ M:AppKit.NSBrowserDelegate_Extensions.ValidateDrop(AppKit.INSBrowserDelegate,App
M:AppKit.NSBrowserDelegate_Extensions.WillDisplayCell(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSObject,System.IntPtr,System.IntPtr)
M:AppKit.NSBrowserDelegate_Extensions.WillScroll(AppKit.INSBrowserDelegate,AppKit.NSBrowser)
M:AppKit.NSBrowserDelegate_Extensions.WriteRowsWithIndexesToPasteboard(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr,AppKit.NSPasteboard)
-M:AppKit.NSBrowserDelegate.AcceptDrop(AppKit.NSBrowser,AppKit.INSDraggingInfo,System.IntPtr,System.IntPtr,AppKit.NSBrowserDropOperation)
-M:AppKit.NSBrowserDelegate.CanDragRowsWithIndexes(AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr,AppKit.NSEvent)
-M:AppKit.NSBrowserDelegate.ColumnConfigurationDidChange(Foundation.NSNotification)
-M:AppKit.NSBrowserDelegate.ColumnTitle(AppKit.NSBrowser,System.IntPtr)
-M:AppKit.NSBrowserDelegate.CountChildren(AppKit.NSBrowser,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate.CreateRowsForColumn(AppKit.NSBrowser,System.IntPtr,AppKit.NSMatrix)
-M:AppKit.NSBrowserDelegate.DidChangeLastColumn(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowserDelegate.DidScroll(AppKit.NSBrowser)
-M:AppKit.NSBrowserDelegate.GetChild(AppKit.NSBrowser,System.IntPtr,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate.HeaderViewControllerForItem(AppKit.NSBrowser,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate.IsColumnValid(AppKit.NSBrowser,System.IntPtr)
-M:AppKit.NSBrowserDelegate.IsLeafItem(AppKit.NSBrowser,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate.NextTypeSelectMatch(AppKit.NSBrowser,System.IntPtr,System.IntPtr,System.IntPtr,System.String)
-M:AppKit.NSBrowserDelegate.ObjectValueForItem(AppKit.NSBrowser,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate.PreviewViewControllerForLeafItem(AppKit.NSBrowser,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate.PromisedFilesDroppedAtDestination(AppKit.NSBrowser,Foundation.NSUrl,Foundation.NSIndexSet,System.IntPtr)
-M:AppKit.NSBrowserDelegate.RootItemForBrowser(AppKit.NSBrowser)
-M:AppKit.NSBrowserDelegate.RowHeight(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowserDelegate.RowsInColumn(AppKit.NSBrowser,System.IntPtr)
-M:AppKit.NSBrowserDelegate.SelectCellWithString(AppKit.NSBrowser,System.String,System.IntPtr)
-M:AppKit.NSBrowserDelegate.SelectionIndexesForProposedSelection(AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr)
-M:AppKit.NSBrowserDelegate.SelectRowInColumn(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowserDelegate.SetObjectValue(AppKit.NSBrowser,Foundation.NSObject,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate.ShouldEditItem(AppKit.NSBrowser,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate.ShouldShowCellExpansion(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowserDelegate.ShouldSizeColumn(AppKit.NSBrowser,System.IntPtr,System.Boolean,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSBrowserDelegate.ShouldTypeSelectForEvent(AppKit.NSBrowser,AppKit.NSEvent,System.String)
-M:AppKit.NSBrowserDelegate.SizeToFitWidth(AppKit.NSBrowser,System.IntPtr)
-M:AppKit.NSBrowserDelegate.TypeSelectString(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowserDelegate.ValidateDrop(AppKit.NSBrowser,AppKit.INSDraggingInfo,System.IntPtr@,System.IntPtr@,AppKit.NSBrowserDropOperation@)
-M:AppKit.NSBrowserDelegate.WillDisplayCell(AppKit.NSBrowser,Foundation.NSObject,System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowserDelegate.WillScroll(AppKit.NSBrowser)
-M:AppKit.NSBrowserDelegate.WriteRowsWithIndexesToPasteboard(AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr,AppKit.NSPasteboard)
-M:AppKit.NSButton.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSButton.AccessibilityPerformPress
-M:AppKit.NSButton.Compress(AppKit.NSUserInterfaceCompressionOptions[])
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)
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.GetMinimumSize(AppKit.NSUserInterfaceCompressionOptions[])
-M:AppKit.NSButton.GetPeriodicDelay(System.Single@,System.Single@)
-M:AppKit.NSButton.Highlight(System.Boolean)
-M:AppKit.NSButton.PerformKeyEquivalent(AppKit.NSEvent)
-M:AppKit.NSButton.SetButtonType(AppKit.NSButtonType)
-M:AppKit.NSButton.SetNextState
-M:AppKit.NSButton.SetPeriodicDelay(System.Single,System.Single)
-M:AppKit.NSButton.SetTitleWithMnemonic(System.String)
-M:AppKit.NSButton.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.NSButtonCell.#ctor(AppKit.NSImage)
-M:AppKit.NSButtonCell.#ctor(System.String)
-M:AppKit.NSButtonCell.DrawBezelWithFrame(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSButtonCell.DrawImage(AppKit.NSImage,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSButtonCell.DrawTitle(Foundation.NSAttributedString,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSButtonCell.GetPeriodicDelay(System.Single@,System.Single@)
-M:AppKit.NSButtonCell.MouseEntered(AppKit.NSEvent)
-M:AppKit.NSButtonCell.MouseExited(AppKit.NSEvent)
-M:AppKit.NSButtonCell.PerformClick(Foundation.NSObject)
-M:AppKit.NSButtonCell.SetButtonType(AppKit.NSButtonType)
M:AppKit.NSButtonCell.SetFont(AppKit.NSFont)
M:AppKit.NSButtonCell.SetGradientType(AppKit.NSGradientType)
-M:AppKit.NSButtonCell.SetKeyEquivalentFont(System.String,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSButtonCell.SetPeriodicDelay(System.Single,System.Single)
-M:AppKit.NSButtonTouchBarItem.#ctor(System.String)
-M:AppKit.NSButtonTouchBarItem.Create(AppKit.NSTouchBarItemIdentifier,AppKit.NSImage,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSButtonTouchBarItem.Create(AppKit.NSTouchBarItemIdentifier,System.String,AppKit.NSImage,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSButtonTouchBarItem.Create(AppKit.NSTouchBarItemIdentifier,System.String,Foundation.NSObject,ObjCRuntime.Selector)
M:AppKit.NSButtonTouchBarItem.Dispose(System.Boolean)
-M:AppKit.NSCachedImageRep.#ctor(AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.NSCachedImageRep.#ctor(CoreGraphics.CGSize,AppKit.NSWindowDepth,System.Boolean,System.Boolean)
-M:AppKit.NSCandidateListTouchBarItem.#ctor(System.String)
M:AppKit.NSCandidateListTouchBarItem.Dispose(System.Boolean)
-M:AppKit.NSCandidateListTouchBarItem.SetCandidates(Foundation.NSObject[],Foundation.NSRange,System.String)
-M:AppKit.NSCandidateListTouchBarItem.UpdateWithInsertionPointVisibility(System.Boolean)
M:AppKit.NSCandidateListTouchBarItemDelegate_Extensions.BeginSelectingCandidate(AppKit.INSCandidateListTouchBarItemDelegate,AppKit.NSCandidateListTouchBarItem,System.IntPtr)
M:AppKit.NSCandidateListTouchBarItemDelegate_Extensions.ChangedCandidateListVisibility(AppKit.INSCandidateListTouchBarItemDelegate,AppKit.NSCandidateListTouchBarItem,System.Boolean)
M:AppKit.NSCandidateListTouchBarItemDelegate_Extensions.ChangeSelectionFromCandidate(AppKit.INSCandidateListTouchBarItemDelegate,AppKit.NSCandidateListTouchBarItem,System.IntPtr,System.IntPtr)
M:AppKit.NSCandidateListTouchBarItemDelegate_Extensions.EndSelectingCandidate(AppKit.INSCandidateListTouchBarItemDelegate,AppKit.NSCandidateListTouchBarItem,System.IntPtr)
-M:AppKit.NSCandidateListTouchBarItemDelegate.BeginSelectingCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr)
-M:AppKit.NSCandidateListTouchBarItemDelegate.ChangedCandidateListVisibility(AppKit.NSCandidateListTouchBarItem,System.Boolean)
-M:AppKit.NSCandidateListTouchBarItemDelegate.ChangeSelectionFromCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr,System.IntPtr)
-M:AppKit.NSCandidateListTouchBarItemDelegate.EndSelectingCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr)
-M:AppKit.NSCell.#ctor(AppKit.NSImage)
-M:AppKit.NSCell.#ctor(System.String)
-M:AppKit.NSCell.AcceptsFirstResponder
-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.CalcDrawInfo(CoreGraphics.CGRect)
-M:AppKit.NSCell.CellAttribute(AppKit.NSCellAttribute)
-M:AppKit.NSCell.CellSizeForBounds(CoreGraphics.CGRect)
-M:AppKit.NSCell.Compare(Foundation.NSObject)
-M:AppKit.NSCell.ContinueTracking(CoreGraphics.CGPoint,CoreGraphics.CGPoint,AppKit.NSView)
M:AppKit.NSCell.Copy(Foundation.NSZone)
M:AppKit.NSCell.Dispose(System.Boolean)
-M:AppKit.NSCell.DrawFocusRing(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.DrawingRectForBounds(CoreGraphics.CGRect)
-M:AppKit.NSCell.DrawInteriorWithFrame(CoreGraphics.CGRect,AppKit.NSView)
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.DrawWithExpansionFrame(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.DrawWithFrame(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.EditWithFrame(CoreGraphics.CGRect,AppKit.NSView,AppKit.NSText,Foundation.NSObject,AppKit.NSEvent)
M:AppKit.NSCell.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSCell.EndEditing(AppKit.NSText)
-M:AppKit.NSCell.ExpansionFrame(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.FieldEditorForView(AppKit.NSView)
-M:AppKit.NSCell.GenerateDraggingImageComponents(CoreGraphics.CGRect,AppKit.NSView)
-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.GetFocusRingMaskBounds(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.GetPeriodicDelay(System.Single@,System.Single@)
-M:AppKit.NSCell.Highlight(System.Boolean,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.HighlightColor(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.HitTest(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.ImageRectForBounds(CoreGraphics.CGRect)
-M:AppKit.NSCell.IsAccessibilityAttributeSettable(Foundation.NSString)
-M:AppKit.NSCell.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector)
-M:AppKit.NSCell.IsEntryAcceptable(System.String)
-M:AppKit.NSCell.MenuForEvent(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.PerformClick(Foundation.NSObject)
-M:AppKit.NSCell.RefusesFirstResponder
-M:AppKit.NSCell.ResetCursorRect(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSCell.SelectWithFrame(CoreGraphics.CGRect,AppKit.NSView,AppKit.NSText,Foundation.NSObject,System.IntPtr,System.IntPtr)
-M:AppKit.NSCell.SendActionOn(AppKit.NSEventType)
-M:AppKit.NSCell.SendsActionOnEndEditing
-M:AppKit.NSCell.SetAccessibilityValue(Foundation.NSString,Foundation.NSObject)
-M:AppKit.NSCell.SetCellAttribute(AppKit.NSCellAttribute,System.IntPtr)
-M:AppKit.NSCell.SetNextState
M:AppKit.NSCell.SetSendsActionOnEndEditing(System.Boolean)
-M:AppKit.NSCell.SetTitleWithMnemonic(System.String)
-M:AppKit.NSCell.SetUpFieldEditorAttributes(AppKit.NSText)
-M:AppKit.NSCell.StartTracking(CoreGraphics.CGPoint,AppKit.NSView)
-M:AppKit.NSCell.StopTracking(CoreGraphics.CGPoint,CoreGraphics.CGPoint,AppKit.NSView,System.Boolean)
-M:AppKit.NSCell.TakeDoubleValueFrom(Foundation.NSObject)
-M:AppKit.NSCell.TakeFloatValueFrom(Foundation.NSObject)
-M:AppKit.NSCell.TakeIntegerValueFrom(Foundation.NSObject)
-M:AppKit.NSCell.TakeIntValueFrom(Foundation.NSObject)
-M:AppKit.NSCell.TakeObjectValueFrom(Foundation.NSObject)
-M:AppKit.NSCell.TakeStringValueFrom(Foundation.NSObject)
-M:AppKit.NSCell.TitleRectForBounds(CoreGraphics.CGRect)
-M:AppKit.NSCell.TrackMouse(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView,System.Boolean)
-M:AppKit.NSCIImageRep.#ctor(CoreImage.CIImage)
-M:AppKit.NSCIImageRep.FromCIImage(CoreImage.CIImage)
-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(CoreGraphics.CGRect)
-M:AppKit.NSClipView.Autoscroll(AppKit.NSEvent)
-M:AppKit.NSClipView.ConstrainBoundsRect(CoreGraphics.CGRect)
-M:AppKit.NSClipView.ConstrainScrollPoint(CoreGraphics.CGPoint)
-M:AppKit.NSClipView.DocumentVisibleRect
-M:AppKit.NSClipView.ScrollClipView(AppKit.NSClipView,CoreGraphics.CGPoint)
-M:AppKit.NSClipView.ScrollToPoint(CoreGraphics.CGPoint)
-M:AppKit.NSClipView.ViewBoundsChanged(Foundation.NSNotification)
-M:AppKit.NSClipView.ViewFrameChanged(Foundation.NSNotification)
M:AppKit.NSCloudSharingServiceDelegate_Extensions.Completed(AppKit.INSCloudSharingServiceDelegate,AppKit.NSSharingService,Foundation.NSObject[],Foundation.NSError)
M:AppKit.NSCloudSharingServiceDelegate_Extensions.Options(AppKit.INSCloudSharingServiceDelegate,AppKit.NSSharingService,Foundation.NSItemProvider)
M:AppKit.NSCloudSharingServiceDelegate_Extensions.Saved(AppKit.INSCloudSharingServiceDelegate,AppKit.NSSharingService,CloudKit.CKShare)
M:AppKit.NSCloudSharingServiceDelegate_Extensions.Stopped(AppKit.INSCloudSharingServiceDelegate,AppKit.NSSharingService,CloudKit.CKShare)
-M:AppKit.NSCloudSharingServiceDelegate.Completed(AppKit.NSSharingService,Foundation.NSObject[],Foundation.NSError)
-M:AppKit.NSCloudSharingServiceDelegate.Options(AppKit.NSSharingService,Foundation.NSItemProvider)
-M:AppKit.NSCloudSharingServiceDelegate.Saved(AppKit.NSSharingService,CloudKit.CKShare)
-M:AppKit.NSCloudSharingServiceDelegate.Stopped(AppKit.NSSharingService,CloudKit.CKShare)
M:AppKit.NSCoderAppKitAddons.DecodeNXColor(Foundation.NSCoder)
M:AppKit.NSCoderEventArgs.#ctor(Foundation.NSCoder)
M:AppKit.NSCollectionLayoutAnchor.Copy(Foundation.NSZone)
M:AppKit.NSCollectionLayoutAnchor.Create(AppKit.NSDirectionalRectEdge,AppKit.NSCollectionLayoutAnchorOffsetType,CoreGraphics.CGPoint)
-M:AppKit.NSCollectionLayoutAnchor.Create(AppKit.NSDirectionalRectEdge)
-M:AppKit.NSCollectionLayoutAnchor.CreateFromAbsoluteOffset(AppKit.NSDirectionalRectEdge,CoreGraphics.CGPoint)
-M:AppKit.NSCollectionLayoutAnchor.CreateFromFractionalOffset(AppKit.NSDirectionalRectEdge,CoreGraphics.CGPoint)
M:AppKit.NSCollectionLayoutBoundarySupplementaryItem.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutBoundarySupplementaryItem.Create(AppKit.NSCollectionLayoutSize,System.String,AppKit.NSRectAlignment,CoreGraphics.CGPoint)
-M:AppKit.NSCollectionLayoutBoundarySupplementaryItem.Create(AppKit.NSCollectionLayoutSize,System.String,AppKit.NSRectAlignment)
M:AppKit.NSCollectionLayoutDecorationItem.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutDecorationItem.Create(System.String)
M:AppKit.NSCollectionLayoutDimension.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutDimension.CreateAbsolute(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSCollectionLayoutDimension.CreateEstimated(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSCollectionLayoutDimension.CreateFractionalHeight(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSCollectionLayoutDimension.CreateFractionalWidth(System.Runtime.InteropServices.NFloat)
M:AppKit.NSCollectionLayoutEdgeSpacing.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutEdgeSpacing.Create(AppKit.NSCollectionLayoutSpacing,AppKit.NSCollectionLayoutSpacing,AppKit.NSCollectionLayoutSpacing,AppKit.NSCollectionLayoutSpacing)
M:AppKit.NSCollectionLayoutGroup.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutGroup.CreateCustom(AppKit.NSCollectionLayoutSize,AppKit.NSCollectionLayoutGroupCustomItemProvider)
-M:AppKit.NSCollectionLayoutGroup.CreateHorizontal(AppKit.NSCollectionLayoutSize,AppKit.NSCollectionLayoutItem,System.IntPtr)
-M:AppKit.NSCollectionLayoutGroup.CreateHorizontal(AppKit.NSCollectionLayoutSize,AppKit.NSCollectionLayoutItem[])
-M:AppKit.NSCollectionLayoutGroup.CreateVertical(AppKit.NSCollectionLayoutSize,AppKit.NSCollectionLayoutItem,System.IntPtr)
-M:AppKit.NSCollectionLayoutGroup.CreateVertical(AppKit.NSCollectionLayoutSize,AppKit.NSCollectionLayoutItem[])
M:AppKit.NSCollectionLayoutGroup.GetHorizontalGroup(AppKit.NSCollectionLayoutSize,AppKit.NSCollectionLayoutItem,System.IntPtr)
M:AppKit.NSCollectionLayoutGroup.GetVerticalGroup(AppKit.NSCollectionLayoutSize,AppKit.NSCollectionLayoutItem,System.IntPtr)
M:AppKit.NSCollectionLayoutGroupCustomItem.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutGroupCustomItem.Create(CoreGraphics.CGRect,System.IntPtr)
-M:AppKit.NSCollectionLayoutGroupCustomItem.Create(CoreGraphics.CGRect)
M:AppKit.NSCollectionLayoutItem.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutItem.Create(AppKit.NSCollectionLayoutSize,AppKit.NSCollectionLayoutSupplementaryItem[])
-M:AppKit.NSCollectionLayoutItem.Create(AppKit.NSCollectionLayoutSize)
M:AppKit.NSCollectionLayoutSection.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutSection.Create(AppKit.NSCollectionLayoutGroup)
M:AppKit.NSCollectionLayoutSize.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutSize.Create(AppKit.NSCollectionLayoutDimension,AppKit.NSCollectionLayoutDimension)
M:AppKit.NSCollectionLayoutSpacing.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutSpacing.CreateFixed(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSCollectionLayoutSpacing.CreateFlexible(System.Runtime.InteropServices.NFloat)
M:AppKit.NSCollectionLayoutSupplementaryItem.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutSupplementaryItem.Create(AppKit.NSCollectionLayoutSize,System.String,AppKit.NSCollectionLayoutAnchor,AppKit.NSCollectionLayoutAnchor)
-M:AppKit.NSCollectionLayoutSupplementaryItem.Create(AppKit.NSCollectionLayoutSize,System.String,AppKit.NSCollectionLayoutAnchor)
-M:AppKit.NSCollectionView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSCollectionView.ConcludeDragOperation(AppKit.INSDraggingInfo)
-M:AppKit.NSCollectionView.DeleteItems(Foundation.NSSet{Foundation.NSIndexPath})
-M:AppKit.NSCollectionView.DeleteSections(Foundation.NSIndexSet)
-M:AppKit.NSCollectionView.DeselectAll(Foundation.NSObject)
-M:AppKit.NSCollectionView.DeselectItems(Foundation.NSSet)
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.GetDraggingImage(Foundation.NSSet{Foundation.NSIndexPath},AppKit.NSEvent,CoreGraphics.CGPoint@)
-M:AppKit.NSCollectionView.GetFrameForItem(System.IntPtr,System.IntPtr)
-M:AppKit.NSCollectionView.GetFrameForItem(System.IntPtr)
-M:AppKit.NSCollectionView.GetIndexPath(AppKit.NSCollectionViewItem)
-M:AppKit.NSCollectionView.GetIndexPath(CoreGraphics.CGPoint)
-M:AppKit.NSCollectionView.GetIndexPaths(System.String)
-M:AppKit.NSCollectionView.GetItem(Foundation.NSIndexPath)
-M:AppKit.NSCollectionView.GetItem(System.IntPtr)
-M:AppKit.NSCollectionView.GetLayoutAttributes(Foundation.NSIndexPath)
-M:AppKit.NSCollectionView.GetLayoutAttributes(System.String,Foundation.NSIndexPath)
-M:AppKit.NSCollectionView.GetNumberOfItems(System.IntPtr)
-M:AppKit.NSCollectionView.GetSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionView.GetVisibleSupplementaryViews(Foundation.NSString)
-M:AppKit.NSCollectionView.InsertItems(Foundation.NSSet{Foundation.NSIndexPath})
-M:AppKit.NSCollectionView.InsertSections(Foundation.NSIndexSet)
-M:AppKit.NSCollectionView.MakeItem(System.String,Foundation.NSIndexPath)
-M:AppKit.NSCollectionView.MakeSupplementaryView(Foundation.NSString,System.String,Foundation.NSIndexPath)
-M:AppKit.NSCollectionView.MoveItem(Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:AppKit.NSCollectionView.MoveSection(System.IntPtr,System.IntPtr)
-M:AppKit.NSCollectionView.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl)
-M:AppKit.NSCollectionView.NewItemForRepresentedObject(Foundation.NSObject)
-M:AppKit.NSCollectionView.PerformBatchUpdates(System.Action,System.Action{System.Boolean})
-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.RegisterNib(AppKit.NSNib,Foundation.NSString,System.String)
-M:AppKit.NSCollectionView.RegisterNib(AppKit.NSNib,System.String)
-M:AppKit.NSCollectionView.ReloadData
-M:AppKit.NSCollectionView.ReloadItems(Foundation.NSSet{Foundation.NSIndexPath})
-M:AppKit.NSCollectionView.ReloadSections(Foundation.NSIndexSet)
-M:AppKit.NSCollectionView.ScrollToItems(Foundation.NSSet{Foundation.NSIndexPath},AppKit.NSCollectionViewScrollPosition)
-M:AppKit.NSCollectionView.SelectAll(Foundation.NSObject)
-M:AppKit.NSCollectionView.SelectItems(Foundation.NSSet,AppKit.NSCollectionViewScrollPosition)
-M:AppKit.NSCollectionView.SetDraggingSource(AppKit.NSDragOperation,System.Boolean)
-M:AppKit.NSCollectionView.ToggleSectionCollapse(Foundation.NSObject)
-M:AppKit.NSCollectionViewCompositionalLayout.#ctor(AppKit.NSCollectionLayoutSection,AppKit.NSCollectionViewCompositionalLayoutConfiguration)
-M:AppKit.NSCollectionViewCompositionalLayout.#ctor(AppKit.NSCollectionLayoutSection)
-M:AppKit.NSCollectionViewCompositionalLayout.#ctor(AppKit.NSCollectionViewCompositionalLayoutSectionProvider,AppKit.NSCollectionViewCompositionalLayoutConfiguration)
-M:AppKit.NSCollectionViewCompositionalLayout.#ctor(AppKit.NSCollectionViewCompositionalLayoutSectionProvider)
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)
-M:AppKit.NSCollectionViewDataSource.GetItem(AppKit.NSCollectionView,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDataSource.GetNumberofItems(AppKit.NSCollectionView,System.IntPtr)
-M:AppKit.NSCollectionViewDataSource.GetNumberOfSections(AppKit.NSCollectionView)
-M:AppKit.NSCollectionViewDataSource.GetView(AppKit.NSCollectionView,Foundation.NSString,Foundation.NSIndexPath)
M:AppKit.NSCollectionViewDelegate_Extensions.AcceptDrop(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.INSDraggingInfo,Foundation.NSIndexPath,AppKit.NSCollectionViewDropOperation)
M:AppKit.NSCollectionViewDelegate_Extensions.AcceptDrop(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSCollectionViewDropOperation)
M:AppKit.NSCollectionViewDelegate_Extensions.CanDragItems(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSIndexSet,AppKit.NSEvent)
@@ -24157,389 +20243,98 @@ M:AppKit.NSCollectionViewDelegate_Extensions.WillDisplayItem(AppKit.INSCollectio
M:AppKit.NSCollectionViewDelegate_Extensions.WillDisplaySupplementaryView(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.NSView,Foundation.NSString,Foundation.NSIndexPath)
M:AppKit.NSCollectionViewDelegate_Extensions.WriteItems(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSIndexSet,AppKit.NSPasteboard)
M:AppKit.NSCollectionViewDelegate_Extensions.WriteItems(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSPasteboard)
-M:AppKit.NSCollectionViewDelegate.AcceptDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,Foundation.NSIndexPath,AppKit.NSCollectionViewDropOperation)
-M:AppKit.NSCollectionViewDelegate.AcceptDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSCollectionViewDropOperation)
-M:AppKit.NSCollectionViewDelegate.CanDragItems(AppKit.NSCollectionView,Foundation.NSIndexSet,AppKit.NSEvent)
-M:AppKit.NSCollectionViewDelegate.CanDragItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSEvent)
-M:AppKit.NSCollectionViewDelegate.DisplayingItemEnded(AppKit.NSCollectionView,AppKit.NSCollectionViewItem,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegate.DisplayingSupplementaryViewEnded(AppKit.NSCollectionView,AppKit.NSView,System.String,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegate.DraggingSessionEnded(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.NSCollectionViewDelegate.DraggingSessionWillBegin(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet)
-M:AppKit.NSCollectionViewDelegate.DraggingSessionWillBegin(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate.GetDraggingImage(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSEvent,CoreGraphics.CGPoint@)
-M:AppKit.NSCollectionViewDelegate.GetNamesOfPromisedFiles(AppKit.NSCollectionView,Foundation.NSUrl,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate.GetPasteboardWriter(AppKit.NSCollectionView,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegate.ItemsChanged(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSCollectionViewItemHighlightState)
-M:AppKit.NSCollectionViewDelegate.ItemsDeselected(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate.ItemsSelected(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate.NamesOfPromisedFilesDroppedAtDestination(AppKit.NSCollectionView,Foundation.NSUrl,Foundation.NSIndexSet)
-M:AppKit.NSCollectionViewDelegate.PasteboardWriterForItem(AppKit.NSCollectionView,System.UIntPtr)
-M:AppKit.NSCollectionViewDelegate.ShouldChangeItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSCollectionViewItemHighlightState)
-M:AppKit.NSCollectionViewDelegate.ShouldDeselectItems(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate.ShouldSelectItems(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate.TransitionLayout(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
-M:AppKit.NSCollectionViewDelegate.UpdateDraggingItemsForDrag(AppKit.NSCollectionView,AppKit.INSDraggingInfo)
-M:AppKit.NSCollectionViewDelegate.ValidateDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,Foundation.NSIndexPath@,AppKit.NSCollectionViewDropOperation@)
-M:AppKit.NSCollectionViewDelegate.ValidateDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,System.IntPtr@,AppKit.NSCollectionViewDropOperation@)
-M:AppKit.NSCollectionViewDelegate.WillDisplayItem(AppKit.NSCollectionView,AppKit.NSCollectionViewItem,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegate.WillDisplaySupplementaryView(AppKit.NSCollectionView,AppKit.NSView,Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegate.WriteItems(AppKit.NSCollectionView,Foundation.NSIndexSet,AppKit.NSPasteboard)
-M:AppKit.NSCollectionViewDelegate.WriteItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSPasteboard)
M:AppKit.NSCollectionViewDelegateFlowLayout_Extensions.InsetForSection(AppKit.INSCollectionViewDelegateFlowLayout,AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.NSCollectionViewDelegateFlowLayout_Extensions.MinimumInteritemSpacingForSection(AppKit.INSCollectionViewDelegateFlowLayout,AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.NSCollectionViewDelegateFlowLayout_Extensions.MinimumLineSpacing(AppKit.INSCollectionViewDelegateFlowLayout,AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.NSCollectionViewDelegateFlowLayout_Extensions.ReferenceSizeForFooter(AppKit.INSCollectionViewDelegateFlowLayout,AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.NSCollectionViewDelegateFlowLayout_Extensions.ReferenceSizeForHeader(AppKit.INSCollectionViewDelegateFlowLayout,AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.NSCollectionViewDelegateFlowLayout_Extensions.SizeForItem(AppKit.INSCollectionViewDelegateFlowLayout,AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegateFlowLayout.AcceptDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,Foundation.NSIndexPath,AppKit.NSCollectionViewDropOperation)
-M:AppKit.NSCollectionViewDelegateFlowLayout.AcceptDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSCollectionViewDropOperation)
-M:AppKit.NSCollectionViewDelegateFlowLayout.CanDragItems(AppKit.NSCollectionView,Foundation.NSIndexSet,AppKit.NSEvent)
-M:AppKit.NSCollectionViewDelegateFlowLayout.CanDragItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSEvent)
-M:AppKit.NSCollectionViewDelegateFlowLayout.DisplayingItemEnded(AppKit.NSCollectionView,AppKit.NSCollectionViewItem,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegateFlowLayout.DisplayingSupplementaryViewEnded(AppKit.NSCollectionView,AppKit.NSView,System.String,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegateFlowLayout.DraggingSessionEnded(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.NSCollectionViewDelegateFlowLayout.DraggingSessionWillBegin(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet)
-M:AppKit.NSCollectionViewDelegateFlowLayout.DraggingSessionWillBegin(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegateFlowLayout.GetDraggingImage(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSEvent,CoreGraphics.CGPoint@)
-M:AppKit.NSCollectionViewDelegateFlowLayout.GetNamesOfPromisedFiles(AppKit.NSCollectionView,Foundation.NSUrl,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegateFlowLayout.GetPasteboardWriter(AppKit.NSCollectionView,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegateFlowLayout.InsetForSection(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ItemsChanged(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSCollectionViewItemHighlightState)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ItemsDeselected(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ItemsSelected(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegateFlowLayout.MinimumInteritemSpacingForSection(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
-M:AppKit.NSCollectionViewDelegateFlowLayout.MinimumLineSpacing(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
-M:AppKit.NSCollectionViewDelegateFlowLayout.NamesOfPromisedFilesDroppedAtDestination(AppKit.NSCollectionView,Foundation.NSUrl,Foundation.NSIndexSet)
-M:AppKit.NSCollectionViewDelegateFlowLayout.PasteboardWriterForItem(AppKit.NSCollectionView,System.UIntPtr)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ReferenceSizeForFooter(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ReferenceSizeForHeader(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ShouldChangeItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSCollectionViewItemHighlightState)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ShouldDeselectItems(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ShouldSelectItems(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegateFlowLayout.SizeForItem(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegateFlowLayout.TransitionLayout(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
-M:AppKit.NSCollectionViewDelegateFlowLayout.UpdateDraggingItemsForDrag(AppKit.NSCollectionView,AppKit.INSDraggingInfo)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ValidateDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,Foundation.NSIndexPath@,AppKit.NSCollectionViewDropOperation@)
-M:AppKit.NSCollectionViewDelegateFlowLayout.ValidateDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,System.IntPtr@,AppKit.NSCollectionViewDropOperation@)
-M:AppKit.NSCollectionViewDelegateFlowLayout.WillDisplayItem(AppKit.NSCollectionView,AppKit.NSCollectionViewItem,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegateFlowLayout.WillDisplaySupplementaryView(AppKit.NSCollectionView,AppKit.NSView,Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegateFlowLayout.WriteItems(AppKit.NSCollectionView,Foundation.NSIndexSet,AppKit.NSPasteboard)
-M:AppKit.NSCollectionViewDelegateFlowLayout.WriteItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSPasteboard)
-M:AppKit.NSCollectionViewDiffableDataSource`2.#ctor(AppKit.NSCollectionView,AppKit.NSCollectionViewDiffableDataSourceItemProvider)
-M:AppKit.NSCollectionViewDiffableDataSource`2.Apply(AppKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
-M:AppKit.NSCollectionViewDiffableDataSource`2.GetIndexPath(`1)
-M:AppKit.NSCollectionViewDiffableDataSource`2.GetItem(AppKit.NSCollectionView,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDiffableDataSource`2.GetItemIdentifier(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.NSCollectionViewElement_Extensions.ApplyLayoutAttributes(AppKit.INSCollectionViewElement,AppKit.NSCollectionViewLayoutAttributes)
M:AppKit.NSCollectionViewElement_Extensions.DidTransition(AppKit.INSCollectionViewElement,AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
M:AppKit.NSCollectionViewElement_Extensions.GetPreferredLayoutAttributes(AppKit.INSCollectionViewElement,AppKit.NSCollectionViewLayoutAttributes)
M:AppKit.NSCollectionViewElement_Extensions.PrepareForReuse(AppKit.INSCollectionViewElement)
M:AppKit.NSCollectionViewElement_Extensions.WillTransition(AppKit.INSCollectionViewElement,AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
-M:AppKit.NSCollectionViewElement.ApplyLayoutAttributes(AppKit.NSCollectionViewLayoutAttributes)
-M:AppKit.NSCollectionViewElement.DidTransition(AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
-M:AppKit.NSCollectionViewElement.GetPreferredLayoutAttributes(AppKit.NSCollectionViewLayoutAttributes)
-M:AppKit.NSCollectionViewElement.PrepareForReuse
-M:AppKit.NSCollectionViewElement.WillTransition(AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
-M:AppKit.NSCollectionViewFlowLayout.CollapseSectionAtIndex(System.UIntPtr)
-M:AppKit.NSCollectionViewFlowLayout.ExpandSectionAtIndex(System.UIntPtr)
-M:AppKit.NSCollectionViewFlowLayout.SectionAtIndexIsCollapsed(System.UIntPtr)
-M:AppKit.NSCollectionViewItem.#ctor(System.String,Foundation.NSBundle)
M:AppKit.NSCollectionViewItem.Copy(Foundation.NSZone)
M:AppKit.NSCollectionViewItem.Dispose(System.Boolean)
M:AppKit.NSCollectionViewLayout.Dispose(System.Boolean)
M:AppKit.NSCollectionViewLayout.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSCollectionViewLayout.FinalizeAnimatedBoundsChange
-M:AppKit.NSCollectionViewLayout.FinalizeCollectionViewUpdates
-M:AppKit.NSCollectionViewLayout.FinalizeLayoutTransition
-M:AppKit.NSCollectionViewLayout.GetFinalLayoutAttributesForDisappearingDecorationElement(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetFinalLayoutAttributesForDisappearingItem(Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetFinalLayoutAttributesForDisappearingSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetIndexPathsToDeleteForDecorationView(Foundation.NSString)
-M:AppKit.NSCollectionViewLayout.GetIndexPathsToDeleteForSupplementaryView(Foundation.NSString)
-M:AppKit.NSCollectionViewLayout.GetIndexPathsToInsertForDecorationView(Foundation.NSString)
-M:AppKit.NSCollectionViewLayout.GetIndexPathsToInsertForSupplementaryView(Foundation.NSString)
-M:AppKit.NSCollectionViewLayout.GetInitialLayoutAttributesForAppearingDecorationElement(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetInitialLayoutAttributesForAppearingItem(Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetInitialLayoutAttributesForAppearingSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetInvalidationContext(AppKit.NSCollectionViewLayoutAttributes,AppKit.NSCollectionViewLayoutAttributes)
-M:AppKit.NSCollectionViewLayout.GetInvalidationContext(CoreGraphics.CGRect)
-M:AppKit.NSCollectionViewLayout.GetLayoutAttributesForDecorationView(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetLayoutAttributesForDropTarget(CoreGraphics.CGPoint)
-M:AppKit.NSCollectionViewLayout.GetLayoutAttributesForElements(CoreGraphics.CGRect)
-M:AppKit.NSCollectionViewLayout.GetLayoutAttributesForInterItemGap(Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetLayoutAttributesForItem(Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetLayoutAttributesForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayout.GetTargetContentOffset(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:AppKit.NSCollectionViewLayout.GetTargetContentOffset(CoreGraphics.CGPoint)
-M:AppKit.NSCollectionViewLayout.InvalidateLayout
-M:AppKit.NSCollectionViewLayout.InvalidateLayout(AppKit.NSCollectionViewLayoutInvalidationContext)
-M:AppKit.NSCollectionViewLayout.PrepareForAnimatedBoundsChange(CoreGraphics.CGRect)
-M:AppKit.NSCollectionViewLayout.PrepareForCollectionViewUpdates(AppKit.NSCollectionViewUpdateItem[])
-M:AppKit.NSCollectionViewLayout.PrepareForTransitionFromLayout(AppKit.NSCollectionViewLayout)
-M:AppKit.NSCollectionViewLayout.PrepareForTransitionToLayout(AppKit.NSCollectionViewLayout)
-M:AppKit.NSCollectionViewLayout.PrepareLayout
M:AppKit.NSCollectionViewLayout.RegisterClassForDecorationView(System.Type,Foundation.NSString)
-M:AppKit.NSCollectionViewLayout.RegisterNib(AppKit.NSNib,Foundation.NSString)
-M:AppKit.NSCollectionViewLayout.ShouldInvalidateLayout(AppKit.NSCollectionViewLayoutAttributes,AppKit.NSCollectionViewLayoutAttributes)
-M:AppKit.NSCollectionViewLayout.ShouldInvalidateLayout(CoreGraphics.CGRect)
M:AppKit.NSCollectionViewLayoutAttributes.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionViewLayoutAttributes.CreateForDecorationView(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayoutAttributes.CreateForInterItemGap(Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayoutAttributes.CreateForItem(Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayoutAttributes.CreateForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewLayoutInvalidationContext.InvalidateDecorationElements(Foundation.NSString,Foundation.NSSet)
-M:AppKit.NSCollectionViewLayoutInvalidationContext.InvalidateItems(Foundation.NSSet)
-M:AppKit.NSCollectionViewLayoutInvalidationContext.InvalidateSupplementaryElements(Foundation.NSString,Foundation.NSSet)
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.NSCollectionViewTransitionLayout.#ctor(AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
-M:AppKit.NSCollectionViewTransitionLayout.GetValue(System.String)
-M:AppKit.NSCollectionViewTransitionLayout.UpdateValue(System.Runtime.InteropServices.NFloat,System.String)
-M:AppKit.NSColor.BlendedColor(System.Runtime.InteropServices.NFloat,AppKit.NSColor)
-M:AppKit.NSColor.ColorWithAlphaComponent(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.ControlAlternatingRowBackgroundColors
M:AppKit.NSColor.Copy(Foundation.NSZone)
-M:AppKit.NSColor.DrawSwatchInRect(CoreGraphics.CGRect)
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)
M:AppKit.NSColor.FromCalibratedHsb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromCalibratedHsba(System.Byte,System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromCalibratedHsba(System.Int32,System.Int32,System.Int32,System.Int32)
-M:AppKit.NSColor.FromCalibratedHsba(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromCalibratedRgb(System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromCalibratedRgb(System.Int32,System.Int32,System.Int32)
M:AppKit.NSColor.FromCalibratedRgb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromCalibratedRgba(System.Byte,System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromCalibratedRgba(System.Int32,System.Int32,System.Int32,System.Int32)
-M:AppKit.NSColor.FromCalibratedRgba(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.FromCalibratedWhite(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.FromCatalogName(System.String,System.String)
-M:AppKit.NSColor.FromCGColor(CoreGraphics.CGColor)
-M:AppKit.NSColor.FromCIColor(CoreImage.CIColor)
-M:AppKit.NSColor.FromColor(AppKit.NSColorSpace,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromColorSpace(AppKit.NSColorSpace,System.Runtime.InteropServices.NFloat[])
-M:AppKit.NSColor.FromControlTint(AppKit.NSControlTint)
M:AppKit.NSColor.FromDeviceCymk(System.Byte,System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromDeviceCymk(System.Int32,System.Int32,System.Int32,System.Int32)
M:AppKit.NSColor.FromDeviceCymk(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromDeviceCymka(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromDeviceCymka(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
-M:AppKit.NSColor.FromDeviceCymka(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromDeviceHsb(System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromDeviceHsb(System.Int32,System.Int32,System.Int32)
M:AppKit.NSColor.FromDeviceHsb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromDeviceHsba(System.Byte,System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromDeviceHsba(System.Int32,System.Int32,System.Int32,System.Int32)
-M:AppKit.NSColor.FromDeviceHsba(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromDeviceRgb(System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromDeviceRgb(System.Int32,System.Int32,System.Int32)
M:AppKit.NSColor.FromDeviceRgb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromDeviceRgba(System.Byte,System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromDeviceRgba(System.Int32,System.Int32,System.Int32,System.Int32)
-M:AppKit.NSColor.FromDeviceRgba(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.FromDeviceWhite(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.FromDisplayP3(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.FromGamma22White(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromHsb(System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromHsb(System.Int32,System.Int32,System.Int32)
M:AppKit.NSColor.FromHsb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromHsba(System.Byte,System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromHsba(System.Int32,System.Int32,System.Int32,System.Int32)
-M:AppKit.NSColor.FromHsba(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.FromName(System.String,Foundation.NSBundle)
-M:AppKit.NSColor.FromName(System.String)
-M:AppKit.NSColor.FromPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSColor.FromPatternImage(AppKit.NSImage)
M:AppKit.NSColor.FromRgb(System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromRgb(System.Int32,System.Int32,System.Int32)
M:AppKit.NSColor.FromRgb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromRgba(System.Byte,System.Byte,System.Byte,System.Byte)
M:AppKit.NSColor.FromRgba(System.Int32,System.Int32,System.Int32,System.Int32)
-M:AppKit.NSColor.FromRgba(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.FromSrgb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.FromSystemEffect(AppKit.NSColorSystemEffect)
-M:AppKit.NSColor.FromWhite(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.GetCmyka(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@)
-M:AppKit.NSColor.GetColor(AppKit.NSColorType)
-M:AppKit.NSColor.GetColor(System.String,System.Func{AppKit.NSAppearance,AppKit.NSColor})
M:AppKit.NSColor.GetComponents(System.Runtime.InteropServices.NFloat[]@)
-M:AppKit.NSColor.GetHsba(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,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.GetRgba(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@)
-M:AppKit.NSColor.GetWhiteAlpha(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@)
-M:AppKit.NSColor.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSColor.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
-M:AppKit.NSColor.HighlightWithLevel(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSColor.Set
-M:AppKit.NSColor.SetFill
-M:AppKit.NSColor.SetStroke
-M:AppKit.NSColor.ShadowWithLevel(System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.ToString
-M:AppKit.NSColor.UsingColorSpace(AppKit.NSColorSpace)
-M:AppKit.NSColor.UsingColorSpace(System.String,Foundation.NSDictionary)
-M:AppKit.NSColor.UsingColorSpace(System.String)
-M:AppKit.NSColor.WriteToPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSColorList.#ctor(System.String,System.String)
-M:AppKit.NSColorList.#ctor(System.String)
-M:AppKit.NSColorList.AllKeys
-M:AppKit.NSColorList.ColorListNamed(System.String)
-M:AppKit.NSColorList.ColorWithKey(System.String)
M:AppKit.NSColorList.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSColorList.InsertColor(AppKit.NSColor,System.String,System.IntPtr)
-M:AppKit.NSColorList.RemoveColor(System.String)
-M:AppKit.NSColorList.RemoveFile
-M:AppKit.NSColorList.SetColorForKey(AppKit.NSColor,System.String)
-M:AppKit.NSColorList.WriteToFile(System.String)
-M:AppKit.NSColorList.WriteToUrl(Foundation.NSUrl,Foundation.NSError@)
-M:AppKit.NSColorPanel.AttachColorList(AppKit.NSColorList)
-M:AppKit.NSColorPanel.DetachColorList(AppKit.NSColorList)
-M:AppKit.NSColorPanel.DragColor(AppKit.NSColor,AppKit.NSEvent,AppKit.NSView)
-M:AppKit.NSColorPanel.SetAction(ObjCRuntime.Selector)
-M:AppKit.NSColorPanel.SetPickerMode(AppKit.NSColorPanelMode)
-M:AppKit.NSColorPanel.SetPickerStyle(AppKit.NSColorPanelFlags)
-M:AppKit.NSColorPanel.SetTarget(Foundation.NSObject)
-M:AppKit.NSColorPicker.#ctor(AppKit.NSColorPanelFlags,AppKit.NSColorPanel)
-M:AppKit.NSColorPicker.AttachColorList(AppKit.NSColorList)
-M:AppKit.NSColorPicker.DetachColorList(AppKit.NSColorList)
-M:AppKit.NSColorPicker.InsertNewButtonImage(AppKit.NSImage,AppKit.NSButtonCell)
-M:AppKit.NSColorPicker.ProvideNewButtonImage
-M:AppKit.NSColorPicker.SetMode(AppKit.NSColorPanelMode)
-M:AppKit.NSColorPicker.ViewSizeChanged(Foundation.NSObject)
-M:AppKit.NSColorPickerTouchBarItem.#ctor(System.String)
M:AppKit.NSColorPickerTouchBarItem.add_Activated(System.EventHandler)
-M:AppKit.NSColorPickerTouchBarItem.CreateColorPicker(System.String,AppKit.NSImage)
-M:AppKit.NSColorPickerTouchBarItem.CreateColorPicker(System.String)
-M:AppKit.NSColorPickerTouchBarItem.CreateStrokeColorPicker(System.String)
-M:AppKit.NSColorPickerTouchBarItem.CreateTextColorPicker(System.String)
M:AppKit.NSColorPickerTouchBarItem.Dispose(System.Boolean)
M:AppKit.NSColorPickerTouchBarItem.remove_Activated(System.EventHandler)
-M:AppKit.NSColorSampler.ShowSampler(System.Action{AppKit.NSColor})
-M:AppKit.NSColorSpace.#ctor(CoreGraphics.CGColorSpace)
-M:AppKit.NSColorSpace.#ctor(Foundation.NSData)
-M:AppKit.NSColorSpace.AvailableColorSpacesWithModel(AppKit.NSColorSpaceModel)
M:AppKit.NSColorSpace.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSColorWell.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSColorWell.Activate(System.Boolean)
-M:AppKit.NSColorWell.Create(AppKit.NSColorWellStyle)
-M:AppKit.NSColorWell.Deactivate
M:AppKit.NSColorWell.Dispose(System.Boolean)
-M:AppKit.NSColorWell.DrawWellInside(CoreGraphics.CGRect)
-M:AppKit.NSColorWell.TakeColorFrom(Foundation.NSObject)
-M:AppKit.NSComboBox.#ctor(CoreGraphics.CGRect)
M:AppKit.NSComboBox.add_SelectionChanged(System.EventHandler)
M:AppKit.NSComboBox.add_SelectionIsChanging(System.EventHandler)
M:AppKit.NSComboBox.add_WillDismiss(System.EventHandler)
M:AppKit.NSComboBox.add_WillPopUp(System.EventHandler)
-M:AppKit.NSComboBox.Add(Foundation.NSObject)
-M:AppKit.NSComboBox.Add(Foundation.NSObject[])
-M:AppKit.NSComboBox.DeselectItem(System.IntPtr)
M:AppKit.NSComboBox.Dispose(System.Boolean)
-M:AppKit.NSComboBox.GetItemObject(System.IntPtr)
-M:AppKit.NSComboBox.IndexOf(Foundation.NSObject)
-M:AppKit.NSComboBox.Insert(Foundation.NSObject,System.IntPtr)
-M:AppKit.NSComboBox.NoteNumberOfItemsChanged
-M:AppKit.NSComboBox.ReloadData
M:AppKit.NSComboBox.remove_SelectionChanged(System.EventHandler)
M:AppKit.NSComboBox.remove_SelectionIsChanging(System.EventHandler)
M:AppKit.NSComboBox.remove_WillDismiss(System.EventHandler)
M:AppKit.NSComboBox.remove_WillPopUp(System.EventHandler)
-M:AppKit.NSComboBox.Remove(Foundation.NSObject)
-M:AppKit.NSComboBox.RemoveAll
-M:AppKit.NSComboBox.RemoveAt(System.IntPtr)
-M:AppKit.NSComboBox.ScrollItemAtIndexToTop(System.IntPtr)
-M:AppKit.NSComboBox.ScrollItemAtIndexToVisible(System.IntPtr)
-M:AppKit.NSComboBox.Select(Foundation.NSObject)
-M:AppKit.NSComboBox.SelectItem(System.IntPtr)
-M:AppKit.NSComboBoxCell.#ctor(System.String)
-M:AppKit.NSComboBoxCell.Add(Foundation.NSObject)
-M:AppKit.NSComboBoxCell.Add(Foundation.NSObject[])
-M:AppKit.NSComboBoxCell.CompletedString(System.String)
-M:AppKit.NSComboBoxCell.DeselectItem(System.IntPtr)
M:AppKit.NSComboBoxCell.Dispose(System.Boolean)
-M:AppKit.NSComboBoxCell.GetItem(System.IntPtr)
-M:AppKit.NSComboBoxCell.IndexOf(Foundation.NSObject)
-M:AppKit.NSComboBoxCell.Insert(Foundation.NSObject,System.IntPtr)
-M:AppKit.NSComboBoxCell.NoteNumberOfItemsChanged
-M:AppKit.NSComboBoxCell.ReloadData
-M:AppKit.NSComboBoxCell.Remove(Foundation.NSObject)
-M:AppKit.NSComboBoxCell.RemoveAll
-M:AppKit.NSComboBoxCell.RemoveAt(System.IntPtr)
-M:AppKit.NSComboBoxCell.ScrollItemAtIndexToTop(System.IntPtr)
-M:AppKit.NSComboBoxCell.ScrollItemAtIndexToVisible(System.IntPtr)
-M:AppKit.NSComboBoxCell.Select(Foundation.NSObject)
-M:AppKit.NSComboBoxCell.SelectItem(System.IntPtr)
M:AppKit.NSComboBoxCellDataSource_Extensions.CompletedString(AppKit.INSComboBoxCellDataSource,AppKit.NSComboBoxCell,System.String)
M:AppKit.NSComboBoxCellDataSource_Extensions.IndexOfItem(AppKit.INSComboBoxCellDataSource,AppKit.NSComboBoxCell,System.String)
M:AppKit.NSComboBoxCellDataSource_Extensions.ItemCount(AppKit.INSComboBoxCellDataSource,AppKit.NSComboBoxCell)
M:AppKit.NSComboBoxCellDataSource_Extensions.ObjectValueForItem(AppKit.INSComboBoxCellDataSource,AppKit.NSComboBoxCell,System.IntPtr)
-M:AppKit.NSComboBoxCellDataSource.CompletedString(AppKit.NSComboBoxCell,System.String)
-M:AppKit.NSComboBoxCellDataSource.IndexOfItem(AppKit.NSComboBoxCell,System.String)
-M:AppKit.NSComboBoxCellDataSource.ItemCount(AppKit.NSComboBoxCell)
-M:AppKit.NSComboBoxCellDataSource.ObjectValueForItem(AppKit.NSComboBoxCell,System.IntPtr)
M:AppKit.NSComboBoxDataSource_Extensions.CompletedString(AppKit.INSComboBoxDataSource,AppKit.NSComboBox,System.String)
M:AppKit.NSComboBoxDataSource_Extensions.IndexOfItem(AppKit.INSComboBoxDataSource,AppKit.NSComboBox,System.String)
M:AppKit.NSComboBoxDataSource_Extensions.ItemCount(AppKit.INSComboBoxDataSource,AppKit.NSComboBox)
M:AppKit.NSComboBoxDataSource_Extensions.ObjectValueForItem(AppKit.INSComboBoxDataSource,AppKit.NSComboBox,System.IntPtr)
-M:AppKit.NSComboBoxDataSource.CompletedString(AppKit.NSComboBox,System.String)
-M:AppKit.NSComboBoxDataSource.IndexOfItem(AppKit.NSComboBox,System.String)
-M:AppKit.NSComboBoxDataSource.ItemCount(AppKit.NSComboBox)
-M:AppKit.NSComboBoxDataSource.ObjectValueForItem(AppKit.NSComboBox,System.IntPtr)
M:AppKit.NSComboBoxDelegate_Extensions.SelectionChanged(AppKit.INSComboBoxDelegate,Foundation.NSNotification)
M:AppKit.NSComboBoxDelegate_Extensions.SelectionIsChanging(AppKit.INSComboBoxDelegate,Foundation.NSNotification)
M:AppKit.NSComboBoxDelegate_Extensions.WillDismiss(AppKit.INSComboBoxDelegate,Foundation.NSNotification)
M:AppKit.NSComboBoxDelegate_Extensions.WillPopUp(AppKit.INSComboBoxDelegate,Foundation.NSNotification)
-M:AppKit.NSComboBoxDelegate.SelectionChanged(Foundation.NSNotification)
-M:AppKit.NSComboBoxDelegate.SelectionIsChanging(Foundation.NSNotification)
-M:AppKit.NSComboBoxDelegate.WillDismiss(Foundation.NSNotification)
-M:AppKit.NSComboBoxDelegate.WillPopUp(Foundation.NSNotification)
-M:AppKit.NSComboButton.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSComboButton.Create(AppKit.NSImage,AppKit.NSMenu,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSComboButton.Create(System.String,AppKit.NSImage,AppKit.NSMenu,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSComboButton.Create(System.String,AppKit.NSMenu,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSControl.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSControl.AbortEditing
M:AppKit.NSControl.add_Activated(System.EventHandler)
-M:AppKit.NSControl.CalcSize
M:AppKit.NSControl.Dispose(System.Boolean)
-M:AppKit.NSControl.DrawCell(AppKit.NSCell)
-M:AppKit.NSControl.DrawCellInside(AppKit.NSCell)
-M:AppKit.NSControl.DrawWithExpansionFrame(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSControl.EditWithFrame(CoreGraphics.CGRect,AppKit.NSText,Foundation.NSObject,AppKit.NSEvent)
-M:AppKit.NSControl.EndEditing(AppKit.NSText)
-M:AppKit.NSControl.InvalidateIntrinsicContentSizeForCell(AppKit.NSCell)
-M:AppKit.NSControl.MouseDown(AppKit.NSEvent)
-M:AppKit.NSControl.PerformClick(Foundation.NSObject)
M:AppKit.NSControl.remove_Activated(System.EventHandler)
-M:AppKit.NSControl.SelectCell(AppKit.NSCell)
-M:AppKit.NSControl.SelectWithFrame(CoreGraphics.CGRect,AppKit.NSText,Foundation.NSObject,System.IntPtr,System.IntPtr)
-M:AppKit.NSControl.SendAction(ObjCRuntime.Selector,Foundation.NSObject)
-M:AppKit.NSControl.SendActionOn(AppKit.NSEventType)
-M:AppKit.NSControl.SetNeedsDisplay
-M:AppKit.NSControl.SizeThatFits(CoreGraphics.CGSize)
-M:AppKit.NSControl.SizeToFit
-M:AppKit.NSControl.TakeDoubleValueFrom(Foundation.NSObject)
-M:AppKit.NSControl.TakeFloatValueFrom(Foundation.NSObject)
-M:AppKit.NSControl.TakeIntegerValueFrom(Foundation.NSObject)
-M:AppKit.NSControl.TakeIntValueFrom(Foundation.NSObject)
-M:AppKit.NSControl.TakeObjectValueFrom(Foundation.NSObject)
-M:AppKit.NSControl.TakeStringValueFrom(Foundation.NSObject)
-M:AppKit.NSControl.UpdateCell(AppKit.NSCell)
-M:AppKit.NSControl.UpdateCellInside(AppKit.NSCell)
-M:AppKit.NSControl.ValidateEditing
-M:AppKit.NSController.CommitEditing
-M:AppKit.NSController.CommitEditing(Foundation.NSError@)
-M:AppKit.NSController.CommitEditing(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSController.DiscardEditing
M:AppKit.NSController.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSController.ObjectDidBeginEditing(AppKit.INSEditor)
-M:AppKit.NSController.ObjectDidEndEditing(AppKit.INSEditor)
M:AppKit.NSControlTextEditingDelegate_Extensions.ControlTextDidBeginEditing(AppKit.INSControlTextEditingDelegate,Foundation.NSNotification)
M:AppKit.NSControlTextEditingDelegate_Extensions.ControlTextDidChange(AppKit.INSControlTextEditingDelegate,Foundation.NSNotification)
M:AppKit.NSControlTextEditingDelegate_Extensions.ControlTextDidEndEditing(AppKit.INSControlTextEditingDelegate,Foundation.NSNotification)
@@ -24550,244 +20345,44 @@ M:AppKit.NSControlTextEditingDelegate_Extensions.GetCompletions(AppKit.INSContro
M:AppKit.NSControlTextEditingDelegate_Extensions.IsValidObject(AppKit.INSControlTextEditingDelegate,AppKit.NSControl,Foundation.NSObject)
M:AppKit.NSControlTextEditingDelegate_Extensions.TextShouldBeginEditing(AppKit.INSControlTextEditingDelegate,AppKit.NSControl,AppKit.NSText)
M:AppKit.NSControlTextEditingDelegate_Extensions.TextShouldEndEditing(AppKit.INSControlTextEditingDelegate,AppKit.NSControl,AppKit.NSText)
-M:AppKit.NSControlTextEditingDelegate.ControlTextDidBeginEditing(Foundation.NSNotification)
-M:AppKit.NSControlTextEditingDelegate.ControlTextDidChange(Foundation.NSNotification)
-M:AppKit.NSControlTextEditingDelegate.ControlTextDidEndEditing(Foundation.NSNotification)
-M:AppKit.NSControlTextEditingDelegate.DidFailToFormatString(AppKit.NSControl,System.String,System.String)
-M:AppKit.NSControlTextEditingDelegate.DidFailToValidatePartialString(AppKit.NSControl,System.String,System.String)
-M:AppKit.NSControlTextEditingDelegate.DoCommandBySelector(AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector)
-M:AppKit.NSControlTextEditingDelegate.GetCompletions(AppKit.NSControl,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.NSControlTextEditingDelegate.IsValidObject(AppKit.NSControl,Foundation.NSObject)
-M:AppKit.NSControlTextEditingDelegate.TextShouldBeginEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.NSControlTextEditingDelegate.TextShouldEndEditing(AppKit.NSControl,AppKit.NSText)
M:AppKit.NSControlTextEditingEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSControlTextErrorEventArgs.#ctor(System.String,System.String)
-M:AppKit.NSCursor.#ctor(AppKit.NSImage,AppKit.NSColor,AppKit.NSColor,CoreGraphics.CGPoint)
-M:AppKit.NSCursor.#ctor(AppKit.NSImage,CoreGraphics.CGPoint)
M:AppKit.NSCursor.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSCursor.GetColumnResizeCursor(AppKit.NSHorizontalDirections)
-M:AppKit.NSCursor.GetFrameResizeCursor(AppKit.NSCursorFrameResizePosition,AppKit.NSCursorFrameResizeDirections)
-M:AppKit.NSCursor.GetRowResizeCursor(AppKit.NSVerticalDirections)
-M:AppKit.NSCursor.Hide
M:AppKit.NSCursor.IsSetOnMouseEntered
M:AppKit.NSCursor.IsSetOnMouseExited
-M:AppKit.NSCursor.MouseEntered(AppKit.NSEvent)
-M:AppKit.NSCursor.MouseExited(AppKit.NSEvent)
-M:AppKit.NSCursor.Pop
-M:AppKit.NSCursor.Push
-M:AppKit.NSCursor.Set
-M:AppKit.NSCursor.SetHiddenUntilMouseMoves(System.Boolean)
-M:AppKit.NSCursor.SetOnMouseEntered(System.Boolean)
-M:AppKit.NSCursor.SetOnMouseExited(System.Boolean)
-M:AppKit.NSCursor.Unhide
-M:AppKit.NSCustomImageRep.#ctor(CoreGraphics.CGSize,System.Boolean,AppKit.NSCustomImageRepDrawingHandler)
-M:AppKit.NSCustomImageRep.#ctor(ObjCRuntime.Selector,Foundation.NSObject)
M:AppKit.NSCustomImageRep.Dispose(System.Boolean)
-M:AppKit.NSCustomTouchBarItem.#ctor(System.String)
-M:AppKit.NSDataAsset.#ctor(System.String,Foundation.NSBundle)
-M:AppKit.NSDataAsset.#ctor(System.String)
M:AppKit.NSDataAsset.Copy(Foundation.NSZone)
M:AppKit.NSDataEventArgs.#ctor(Foundation.NSData)
-M:AppKit.NSDatePicker.#ctor(CoreGraphics.CGRect)
M:AppKit.NSDatePicker.add_ValidateProposedDateValue(System.EventHandler{AppKit.NSDatePickerValidatorEventArgs})
M:AppKit.NSDatePicker.Dispose(System.Boolean)
M:AppKit.NSDatePicker.remove_ValidateProposedDateValue(System.EventHandler{AppKit.NSDatePickerValidatorEventArgs})
-M:AppKit.NSDatePickerCell.#ctor(AppKit.NSImage)
-M:AppKit.NSDatePickerCell.#ctor(System.String)
M:AppKit.NSDatePickerCell.add_ValidateProposedDateValue(System.EventHandler{AppKit.NSDatePickerValidatorEventArgs})
M:AppKit.NSDatePickerCell.Dispose(System.Boolean)
M:AppKit.NSDatePickerCell.remove_ValidateProposedDateValue(System.EventHandler{AppKit.NSDatePickerValidatorEventArgs})
M:AppKit.NSDatePickerCellDelegate_Extensions.ValidateProposedDateValue(AppKit.INSDatePickerCellDelegate,AppKit.NSDatePickerCell,Foundation.NSDate@,System.Double)
-M:AppKit.NSDatePickerCellDelegate.ValidateProposedDateValue(AppKit.NSDatePickerCell,Foundation.NSDate@,System.Double)
M:AppKit.NSDatePickerValidatorEventArgs.#ctor(Foundation.NSDate,System.Double)
M:AppKit.NSDictionaryEventArgs.#ctor(Foundation.NSDictionary)
-M:AppKit.NSDiffableDataSourceSnapshot`2.AppendItems(`1[],`0)
-M:AppKit.NSDiffableDataSourceSnapshot`2.AppendItems(`1[])
-M:AppKit.NSDiffableDataSourceSnapshot`2.AppendSections(`0[])
M:AppKit.NSDiffableDataSourceSnapshot`2.Copy(Foundation.NSZone)
-M:AppKit.NSDiffableDataSourceSnapshot`2.DeleteAllItems
-M:AppKit.NSDiffableDataSourceSnapshot`2.DeleteItems(`1[])
-M:AppKit.NSDiffableDataSourceSnapshot`2.DeleteSections(`0[])
-M:AppKit.NSDiffableDataSourceSnapshot`2.GetIndex(`0)
-M:AppKit.NSDiffableDataSourceSnapshot`2.GetIndex(`1)
-M:AppKit.NSDiffableDataSourceSnapshot`2.GetItemIdentifiersInSection(`0)
-M:AppKit.NSDiffableDataSourceSnapshot`2.GetNumberOfItems(`0)
-M:AppKit.NSDiffableDataSourceSnapshot`2.GetSectionIdentifierForSection(`1)
-M:AppKit.NSDiffableDataSourceSnapshot`2.InsertItemsAfter(`1[],`1)
-M:AppKit.NSDiffableDataSourceSnapshot`2.InsertItemsBefore(`1[],`1)
-M:AppKit.NSDiffableDataSourceSnapshot`2.InsertSectionsAfter(`0[],`0)
-M:AppKit.NSDiffableDataSourceSnapshot`2.InsertSectionsBefore(`0[],`0)
-M:AppKit.NSDiffableDataSourceSnapshot`2.MoveItemAfter(`1,`1)
-M:AppKit.NSDiffableDataSourceSnapshot`2.MoveItemBefore(`1,`1)
-M:AppKit.NSDiffableDataSourceSnapshot`2.MoveSectionAfter(`0,`0)
-M:AppKit.NSDiffableDataSourceSnapshot`2.MoveSectionBefore(`0,`0)
M:AppKit.NSDiffableDataSourceSnapshot`2.ReconfigureItems(`1[])
-M:AppKit.NSDiffableDataSourceSnapshot`2.ReloadItems(`1[])
-M:AppKit.NSDiffableDataSourceSnapshot`2.ReloadSections(`0[])
M:AppKit.NSDirectionalEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSDirectionalEdgeInsets.Equals(AppKit.NSDirectionalEdgeInsets)
M:AppKit.NSDirectionalEdgeInsets.Equals(System.Object)
M:AppKit.NSDirectionalEdgeInsets.GetHashCode
M:AppKit.NSDirectionalEdgeInsets.op_Equality(AppKit.NSDirectionalEdgeInsets,AppKit.NSDirectionalEdgeInsets)
M:AppKit.NSDirectionalEdgeInsets.op_Inequality(AppKit.NSDirectionalEdgeInsets,AppKit.NSDirectionalEdgeInsets)
-M:AppKit.NSDockTile.Display
M:AppKit.NSDockTilePlugIn_Extensions.DockMenu(AppKit.INSDockTilePlugIn)
-M:AppKit.NSDockTilePlugIn.DockMenu
-M:AppKit.NSDockTilePlugIn.SetDockTile(AppKit.NSDockTile)
-M:AppKit.NSDocument.#ctor(Foundation.NSUrl,Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AppKit.NSDocument.#ctor(Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AppKit.NSDocument.#ctor(System.String,Foundation.NSError@)
-M:AppKit.NSDocument.AccommodatePresentedItemDeletion(System.Action{Foundation.NSError})
M:AppKit.NSDocument.AccommodatePresentedItemEviction(System.Action{Foundation.NSError})
M:AppKit.NSDocument.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError})
-M:AppKit.NSDocument.AddWindowController(AppKit.NSWindowController)
-M:AppKit.NSDocument.Autosave(System.Boolean,AppKit.NSDocumentCompletionHandler)
-M:AppKit.NSDocument.AutosaveDocument(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.AutosavesInPlace
-M:AppKit.NSDocument.BrowseDocumentVersions(Foundation.NSObject)
-M:AppKit.NSDocument.CanCloseDocument(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.CanConcurrentlyReadDocumentsOfType(System.String)
-M:AppKit.NSDocument.CanWriteAsynchronously(Foundation.NSUrl,System.String,AppKit.NSSaveOperationType)
-M:AppKit.NSDocument.ChangeCountToken(AppKit.NSSaveOperationType)
-M:AppKit.NSDocument.CheckAutosavingSafety(Foundation.NSError@)
-M:AppKit.NSDocument.Close
-M:AppKit.NSDocument.ContinueActivity(System.Action)
-M:AppKit.NSDocument.ContinueAsynchronousWorkOnMainThread(System.Action)
-M:AppKit.NSDocument.Duplicate(Foundation.NSError@)
M:AppKit.NSDocument.DuplicateDocument(AppKit.NSDocument.DuplicateCallback)
-M:AppKit.NSDocument.DuplicateDocument(Foundation.NSObject)
-M:AppKit.NSDocument.EncodeRestorableState(Foundation.NSCoder,Foundation.NSOperationQueue)
-M:AppKit.NSDocument.EncodeRestorableState(Foundation.NSCoder)
-M:AppKit.NSDocument.FileAttributesToWrite(Foundation.NSUrl,System.String,AppKit.NSSaveOperationType,Foundation.NSUrl,Foundation.NSError@)
-M:AppKit.NSDocument.FileNameExtensionForSaveOperation(System.String,AppKit.NSSaveOperationType)
-M:AppKit.NSDocument.GetAllowedClasses(System.String)
-M:AppKit.NSDocument.GetAsData(System.String,Foundation.NSError@)
-M:AppKit.NSDocument.GetAsFileWrapper(System.String,Foundation.NSError@)
-M:AppKit.NSDocument.InvalidateRestorableState
-M:AppKit.NSDocument.IsNativeType(System.String)
-M:AppKit.NSDocument.KeepBackupFile
-M:AppKit.NSDocument.LockDocument(Foundation.NSObject)
-M:AppKit.NSDocument.LockDocumentWithCompletionHandler(AppKit.NSDocumentLockDocumentCompletionHandler)
-M:AppKit.NSDocument.LockWithCompletionHandler(AppKit.NSDocumentLockCompletionHandler)
-M:AppKit.NSDocument.MakeWindowControllers
-M:AppKit.NSDocument.MoveDocument(Foundation.NSObject)
-M:AppKit.NSDocument.MoveDocumentToUbiquityContainer(Foundation.NSObject)
-M:AppKit.NSDocument.MoveDocumentWithCompletionHandler(AppKit.NSDocumentMoveCompletionHandler)
-M:AppKit.NSDocument.MoveToUrl(Foundation.NSUrl,AppKit.NSDocumentMoveToUrlCompletionHandler)
-M:AppKit.NSDocument.ObjectDidBeginEditing(AppKit.INSEditor)
-M:AppKit.NSDocument.ObjectDidEndEditing(AppKit.INSEditor)
-M:AppKit.NSDocument.PerformActivity(System.Boolean,System.Action)
-M:AppKit.NSDocument.PerformAsynchronousFileAccess(System.Action)
-M:AppKit.NSDocument.PerformSynchronousFileAccess(System.Action)
-M:AppKit.NSDocument.Prepare(AppKit.NSSharingServicePicker)
-M:AppKit.NSDocument.PreparePageLayout(AppKit.NSPageLayout)
-M:AppKit.NSDocument.PrepareSavePanel(AppKit.NSSavePanel)
-M:AppKit.NSDocument.PresentedItemChanged
-M:AppKit.NSDocument.PresentedItemChangedUbiquityAttributes(Foundation.NSSet{Foundation.NSString})
-M:AppKit.NSDocument.PresentedItemGainedVersion(Foundation.NSFileVersion)
-M:AppKit.NSDocument.PresentedItemLostVersion(Foundation.NSFileVersion)
-M:AppKit.NSDocument.PresentedItemMoved(Foundation.NSUrl)
-M:AppKit.NSDocument.PresentedItemResolveConflictVersion(Foundation.NSFileVersion)
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.PresentError(Foundation.NSError,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.PresentError(Foundation.NSError)
-M:AppKit.NSDocument.PreservesVersions
-M:AppKit.NSDocument.PrintDocument(Foundation.NSDictionary,System.Boolean,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.PrintDocument(Foundation.NSObject)
-M:AppKit.NSDocument.PrintOperation(Foundation.NSDictionary,Foundation.NSError@)
-M:AppKit.NSDocument.ReadFromData(Foundation.NSData,System.String,Foundation.NSError@)
-M:AppKit.NSDocument.ReadFromFileWrapper(Foundation.NSFileWrapper,System.String,Foundation.NSError@)
-M:AppKit.NSDocument.ReadFromUrl(Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AppKit.NSDocument.RelinquishPresentedItemToReader(Foundation.NSFilePresenterReacquirer)
-M:AppKit.NSDocument.RelinquishPresentedItemToWriter(Foundation.NSFilePresenterReacquirer)
-M:AppKit.NSDocument.RemoveWindowController(AppKit.NSWindowController)
-M:AppKit.NSDocument.RenameDocument(Foundation.NSObject)
-M:AppKit.NSDocument.RestorableStateKeyPaths
-M:AppKit.NSDocument.RestoreDocumentWindow(System.String,Foundation.NSCoder,AppKit.NSWindowCompletionHandler)
-M:AppKit.NSDocument.RestoreState(Foundation.NSCoder)
-M:AppKit.NSDocument.RestoreUserActivityState(Foundation.NSUserActivity)
-M:AppKit.NSDocument.RevertDocumentToSaved(Foundation.NSObject)
-M:AppKit.NSDocument.RevertToContentsOfUrl(Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AppKit.NSDocument.RunModalPageLayout(AppKit.NSPrintInfo,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.RunModalPrintOperation(AppKit.NSPrintOperation,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.RunModalSavePanelForSaveOperation(AppKit.NSSaveOperationType,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.RunPageLayout(Foundation.NSObject)
-M:AppKit.NSDocument.SaveDocument(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.SaveDocument(Foundation.NSObject)
-M:AppKit.NSDocument.SaveDocumentAs(Foundation.NSObject)
-M:AppKit.NSDocument.SaveDocumentAsPdf(Foundation.NSObject)
-M:AppKit.NSDocument.SaveDocumentTo(Foundation.NSObject)
-M:AppKit.NSDocument.SavePresentedItemChanges(System.Action{Foundation.NSError})
-M:AppKit.NSDocument.SaveTo(Foundation.NSUrl,System.String,AppKit.NSSaveOperationType,AppKit.NSDocumentCompletionHandler)
-M:AppKit.NSDocument.SaveToUrl(Foundation.NSUrl,System.String,AppKit.NSSaveOperationType,Foundation.NSError@)
-M:AppKit.NSDocument.SaveToUrl(Foundation.NSUrl,System.String,AppKit.NSSaveOperationType,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.ScheduleAutosaving
-M:AppKit.NSDocument.SetWindow(AppKit.NSWindow)
-M:AppKit.NSDocument.ShareDocument(AppKit.NSSharingService,System.Action{System.Boolean})
M:AppKit.NSDocument.ShareDocumentAsync(AppKit.NSSharingService)
-M:AppKit.NSDocument.ShouldChangePrintInfo(AppKit.NSPrintInfo)
-M:AppKit.NSDocument.ShouldCloseWindowController(AppKit.NSWindowController,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocument.ShowWindows
-M:AppKit.NSDocument.StopBrowsingVersions(System.Action)
M:AppKit.NSDocument.StopBrowsingVersionsAsync
-M:AppKit.NSDocument.UnblockUserInteraction
-M:AppKit.NSDocument.UnlockDocument(Foundation.NSObject)
-M:AppKit.NSDocument.UnlockDocumentWithCompletionHandler(AppKit.NSDocumentUnlockDocumentCompletionHandler)
-M:AppKit.NSDocument.UnlockWithCompletionHandler(AppKit.NSDocumentUnlockCompletionHandler)
-M:AppKit.NSDocument.UpdateChangeCount(AppKit.NSDocumentChangeType)
-M:AppKit.NSDocument.UpdateChangeCount(Foundation.NSObject,AppKit.NSSaveOperationType)
-M:AppKit.NSDocument.UpdateUserActivityState(Foundation.NSUserActivity)
-M:AppKit.NSDocument.ValidateMenuItem(AppKit.NSMenuItem)
-M:AppKit.NSDocument.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.NSDocument.WillNotPresentError(Foundation.NSError)
-M:AppKit.NSDocument.WillPresentError(Foundation.NSError)
-M:AppKit.NSDocument.WindowControllerDidLoadNib(AppKit.NSWindowController)
-M:AppKit.NSDocument.WindowControllerWillLoadNib(AppKit.NSWindowController)
-M:AppKit.NSDocument.WritableTypes
-M:AppKit.NSDocument.WritableTypesForSaveOperation(AppKit.NSSaveOperationType)
-M:AppKit.NSDocument.WriteSafelyToUrl(Foundation.NSUrl,System.String,AppKit.NSSaveOperationType,Foundation.NSError@)
-M:AppKit.NSDocument.WriteToUrl(Foundation.NSUrl,System.String,AppKit.NSSaveOperationType,Foundation.NSUrl,Foundation.NSError@)
-M:AppKit.NSDocument.WriteToUrl(Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AppKit.NSDocumentController.AddDocument(AppKit.NSDocument)
-M:AppKit.NSDocumentController.BeginOpenPanel(AppKit.NSOpenPanel,Foundation.NSArray,AppKit.NSDocumentControllerOpenPanelResultHandler)
-M:AppKit.NSDocumentController.BeginOpenPanelWithCompletionHandler(AppKit.NSDocumentControllerOpenPanelWithCompletionHandler)
-M:AppKit.NSDocumentController.ClearRecentDocuments(Foundation.NSObject)
-M:AppKit.NSDocumentController.CloseAllDocuments(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocumentController.DisplayNameForType(System.String)
-M:AppKit.NSDocumentController.DocumentClassForType(System.String)
-M:AppKit.NSDocumentController.DocumentForUrl(Foundation.NSUrl)
-M:AppKit.NSDocumentController.DocumentForWindow(AppKit.NSWindow)
-M:AppKit.NSDocumentController.DuplicateDocumentWithContentsOfUrl(Foundation.NSUrl,System.Boolean,System.String,Foundation.NSError@)
M:AppKit.NSDocumentController.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSDocumentController.MakeDocument(Foundation.NSUrl,Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AppKit.NSDocumentController.MakeDocument(Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AppKit.NSDocumentController.MakeUntitledDocument(System.String,Foundation.NSError@)
-M:AppKit.NSDocumentController.NewDocument(Foundation.NSObject)
-M:AppKit.NSDocumentController.NoteNewRecentDocument(AppKit.NSDocument)
-M:AppKit.NSDocumentController.NoteNewRecentDocumentURL(Foundation.NSUrl)
-M:AppKit.NSDocumentController.OpenDocument(Foundation.NSObject)
-M:AppKit.NSDocumentController.OpenDocument(Foundation.NSUrl,System.Boolean,AppKit.OpenDocumentCompletionHandler)
-M:AppKit.NSDocumentController.OpenDocument(Foundation.NSUrl,System.Boolean,Foundation.NSError@)
-M:AppKit.NSDocumentController.OpenUntitledDocument(System.Boolean,Foundation.NSError@)
-M:AppKit.NSDocumentController.PresentError(Foundation.NSError,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocumentController.PresentError(Foundation.NSError)
-M:AppKit.NSDocumentController.RemoveDocument(AppKit.NSDocument)
-M:AppKit.NSDocumentController.ReopenDocument(Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@)
-M:AppKit.NSDocumentController.ReopenDocumentForUrl(Foundation.NSUrl,Foundation.NSUrl,System.Boolean,AppKit.OpenDocumentCompletionHandler)
-M:AppKit.NSDocumentController.RestoreWindow(System.String,Foundation.NSCoder,AppKit.NSWindowCompletionHandler)
-M:AppKit.NSDocumentController.ReviewUnsavedDocuments(System.String,System.Boolean,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSDocumentController.RunModalOpenPanel(AppKit.NSOpenPanel,System.String[])
-M:AppKit.NSDocumentController.SaveAllDocuments(Foundation.NSObject)
-M:AppKit.NSDocumentController.TypeForUrl(Foundation.NSUrl,Foundation.NSError@)
-M:AppKit.NSDocumentController.UrlsFromRunningOpenPanel
-M:AppKit.NSDocumentController.ValidateMenuItem(AppKit.NSMenuItem)
-M:AppKit.NSDocumentController.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.NSDocumentController.WillPresentError(Foundation.NSError)
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)
@@ -24796,17 +20391,6 @@ M:AppKit.NSDraggingDestination_Extensions.DraggingUpdated(AppKit.INSDraggingDest
M:AppKit.NSDraggingDestination_Extensions.GetWantsPeriodicDraggingUpdates(AppKit.INSDraggingDestination)
M:AppKit.NSDraggingDestination_Extensions.PerformDragOperation(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo)
M:AppKit.NSDraggingDestination_Extensions.PrepareForDragOperation(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo)
-M:AppKit.NSDraggingDestination.ConcludeDragOperation(AppKit.INSDraggingInfo)
-M:AppKit.NSDraggingDestination.DraggingEnded(AppKit.INSDraggingInfo)
-M:AppKit.NSDraggingDestination.DraggingEntered(AppKit.INSDraggingInfo)
-M:AppKit.NSDraggingDestination.DraggingExited(AppKit.INSDraggingInfo)
-M:AppKit.NSDraggingDestination.DraggingUpdated(AppKit.INSDraggingInfo)
-M:AppKit.NSDraggingDestination.PerformDragOperation(AppKit.INSDraggingInfo)
-M:AppKit.NSDraggingDestination.PrepareForDragOperation(AppKit.INSDraggingInfo)
-M:AppKit.NSDraggingImageComponent.#ctor(System.String)
-M:AppKit.NSDraggingImageComponent.FromKey(System.String)
-M:AppKit.NSDraggingItem.#ctor(AppKit.INSPasteboardWriting)
-M:AppKit.NSDraggingItem.SetDraggingFrame(CoreGraphics.CGRect,Foundation.NSObject)
M:AppKit.NSDraggingItem.SetImagesContentProvider(AppKit.NSDraggingItemImagesContentProvider)
M:AppKit.NSDraggingSession.EnumerateDraggingItems(AppKit.NSDraggingItemEnumerationOptions,AppKit.NSView,AppKit.INSPasteboardReading[],Foundation.NSDictionary,AppKit.NSDraggingEnumerator)
M:AppKit.NSDraggingSession.EnumerateDraggingItems(AppKit.NSDraggingItemEnumerationOptions,AppKit.NSView,Foundation.NSArray,Foundation.NSDictionary,AppKit.NSDraggingEnumerator)
@@ -24817,54 +20401,15 @@ M:AppKit.NSDraggingSource_Extensions.DraggedImageMovedTo(AppKit.INSDraggingSourc
M:AppKit.NSDraggingSource_Extensions.DraggingSourceOperationMaskForLocal(AppKit.INSDraggingSource,System.Boolean)
M:AppKit.NSDraggingSource_Extensions.GetIgnoreModifierKeysWhileDragging(AppKit.INSDraggingSource)
M:AppKit.NSDraggingSource_Extensions.NamesOfPromisedFilesDroppedAtDestination(AppKit.INSDraggingSource,Foundation.NSUrl)
-M:AppKit.NSDraggingSource.DraggedImageBeganAt(AppKit.NSImage,CoreGraphics.CGPoint)
-M:AppKit.NSDraggingSource.DraggedImageEndedAtDeposited(AppKit.NSImage,CoreGraphics.CGPoint,System.Boolean)
-M:AppKit.NSDraggingSource.DraggedImageEndedAtOperation(AppKit.NSImage,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.NSDraggingSource.DraggedImageMovedTo(AppKit.NSImage,CoreGraphics.CGPoint)
-M:AppKit.NSDraggingSource.DraggingSourceOperationMaskForLocal(System.Boolean)
-M:AppKit.NSDraggingSource.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl)
-M:AppKit.NSDrawer.#ctor(CoreGraphics.CGSize,AppKit.NSRectEdge)
-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.Close
-M:AppKit.NSDrawer.Close(Foundation.NSObject)
M:AppKit.NSDrawer.Dispose(System.Boolean)
-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.Open
-M:AppKit.NSDrawer.Open(Foundation.NSObject)
-M:AppKit.NSDrawer.OpenOnEdge(AppKit.NSRectEdge)
M:AppKit.NSDrawer.remove_DrawerDidClose(System.EventHandler)
M:AppKit.NSDrawer.remove_DrawerDidOpen(System.EventHandler)
M:AppKit.NSDrawer.remove_DrawerWillClose(System.EventHandler)
M:AppKit.NSDrawer.remove_DrawerWillOpen(System.EventHandler)
-M:AppKit.NSDrawer.Toggle(Foundation.NSObject)
M:AppKit.NSDrawerDelegate_Extensions.DrawerDidClose(AppKit.INSDrawerDelegate,Foundation.NSNotification)
M:AppKit.NSDrawerDelegate_Extensions.DrawerDidOpen(AppKit.INSDrawerDelegate,Foundation.NSNotification)
M:AppKit.NSDrawerDelegate_Extensions.DrawerShouldClose(AppKit.INSDrawerDelegate,AppKit.NSDrawer)
@@ -24872,56 +20417,18 @@ M:AppKit.NSDrawerDelegate_Extensions.DrawerShouldOpen(AppKit.INSDrawerDelegate,A
M:AppKit.NSDrawerDelegate_Extensions.DrawerWillClose(AppKit.INSDrawerDelegate,Foundation.NSNotification)
M:AppKit.NSDrawerDelegate_Extensions.DrawerWillOpen(AppKit.INSDrawerDelegate,Foundation.NSNotification)
M:AppKit.NSDrawerDelegate_Extensions.DrawerWillResizeContents(AppKit.INSDrawerDelegate,AppKit.NSDrawer,CoreGraphics.CGSize)
-M:AppKit.NSDrawerDelegate.DrawerDidClose(Foundation.NSNotification)
-M:AppKit.NSDrawerDelegate.DrawerDidOpen(Foundation.NSNotification)
-M:AppKit.NSDrawerDelegate.DrawerShouldClose(AppKit.NSDrawer)
-M:AppKit.NSDrawerDelegate.DrawerShouldOpen(AppKit.NSDrawer)
-M:AppKit.NSDrawerDelegate.DrawerWillClose(Foundation.NSNotification)
-M:AppKit.NSDrawerDelegate.DrawerWillOpen(Foundation.NSNotification)
-M:AppKit.NSDrawerDelegate.DrawerWillResizeContents(AppKit.NSDrawer,CoreGraphics.CGSize)
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.NSEPSImageRep.#ctor(Foundation.NSData)
-M:AppKit.NSEPSImageRep.FromData(Foundation.NSData)
-M:AppKit.NSEPSImageRep.PrepareGState
-M:AppKit.NSEvent.AddGlobalMonitorForEventsMatchingMask(AppKit.NSEventMask,AppKit.GlobalEventHandler)
-M:AppKit.NSEvent.AddLocalMonitorForEventsMatchingMask(AppKit.NSEventMask,AppKit.LocalEventHandler)
M:AppKit.NSEvent.Copy(Foundation.NSZone)
M:AppKit.NSEvent.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSEvent.EnterExitEvent(AppKit.NSEventType,CoreGraphics.CGPoint,AppKit.NSEventModifierMask,System.Double,System.IntPtr,AppKit.NSGraphicsContext,System.IntPtr,System.IntPtr,System.IntPtr)
-M:AppKit.NSEvent.EventWithEventRef(System.IntPtr)
-M:AppKit.NSEvent.GetCharacters(AppKit.NSEventModifierFlags)
-M:AppKit.NSEvent.GetCoalescedTouches(AppKit.NSTouch)
-M:AppKit.NSEvent.GetTouches(AppKit.NSView)
-M:AppKit.NSEvent.KeyEvent(AppKit.NSEventType,CoreGraphics.CGPoint,AppKit.NSEventModifierMask,System.Double,System.IntPtr,AppKit.NSGraphicsContext,System.String,System.String,System.Boolean,System.UInt16)
-M:AppKit.NSEvent.MouseEvent(AppKit.NSEventType,CoreGraphics.CGPoint,AppKit.NSEventModifierMask,System.Double,System.IntPtr,AppKit.NSGraphicsContext,System.IntPtr,System.IntPtr,System.Single)
-M:AppKit.NSEvent.OtherEvent(AppKit.NSEventType,CoreGraphics.CGPoint,AppKit.NSEventModifierMask,System.Double,System.IntPtr,AppKit.NSGraphicsContext,System.Int16,System.IntPtr,System.IntPtr)
-M:AppKit.NSEvent.PointingDeviceID
-M:AppKit.NSEvent.RemoveMonitor(Foundation.NSObject)
-M:AppKit.NSEvent.StartPeriodicEventsAfterDelay(System.Double,System.Double)
-M:AppKit.NSEvent.StopPeriodicEvents
-M:AppKit.NSEvent.TouchesMatchingPhase(AppKit.NSTouchPhase,AppKit.NSView)
-M:AppKit.NSEvent.TrackSwipeEvent(AppKit.NSEventSwipeTrackingOptions,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,AppKit.NSEventTrackHandler)
M:AppKit.NSExtendedStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSStringDrawingOptions,AppKit.NSStringAttributes,AppKit.NSStringDrawingContext)
M:AppKit.NSExtendedStringDrawing.GetBoundingRect(Foundation.NSString,CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,AppKit.NSStringAttributes,AppKit.NSStringDrawingContext)
M:AppKit.NSExtendedStringDrawing.WeakDrawString(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSStringDrawingOptions,Foundation.NSDictionary,AppKit.NSStringDrawingContext)
M:AppKit.NSExtendedStringDrawing.WeakGetBoundingRect(Foundation.NSString,CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,Foundation.NSDictionary,AppKit.NSStringDrawingContext)
-M:AppKit.NSFilePromiseProvider.#ctor(System.String,AppKit.INSFilePromiseProviderDelegate)
M:AppKit.NSFilePromiseProvider.Dispose(System.Boolean)
-M:AppKit.NSFilePromiseProvider.GetPasteboardPropertyListForType(System.String)
-M:AppKit.NSFilePromiseProvider.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSFilePromiseProvider.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
M:AppKit.NSFilePromiseProviderDelegate_Extensions.GetOperationQueue(AppKit.INSFilePromiseProviderDelegate,AppKit.NSFilePromiseProvider)
-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.GetReadableTypesForPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSFilePromiseReceiver.GetReadingOptionsForType(System.String,AppKit.NSPasteboard)
-M:AppKit.NSFilePromiseReceiver.ReceivePromisedFiles(Foundation.NSUrl,Foundation.NSDictionary,Foundation.NSOperationQueue,System.Action{Foundation.NSUrl,Foundation.NSError})
-M:AppKit.NSFont.AdvancementForGlyph(System.UInt32)
M:AppKit.NSFont.BoldSystemFontOfSize(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFont.BoundingRectForGlyph(System.UInt32)
M:AppKit.NSFont.ControlContentFontOfSize(System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.Copy(Foundation.NSZone)
M:AppKit.NSFont.EncodeTo(Foundation.NSCoder)
@@ -24929,14 +20436,9 @@ M:AppKit.NSFont.FromCTFont(CoreText.CTFont)
M:AppKit.NSFont.FromDescription(AppKit.NSFontDescriptor,Foundation.NSAffineTransform)
M:AppKit.NSFont.FromDescription(AppKit.NSFontDescriptor,System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.FromFontName(System.String,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFont.GetAdvancement(System.UInt16)
M:AppKit.NSFont.GetAdvancements(System.UInt16[])
-M:AppKit.NSFont.GetBoundingRect(System.UInt16)
M:AppKit.NSFont.GetBoundingRects(System.UInt16[])
-M:AppKit.NSFont.GetFont(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFont.GetPreferredFont(System.String,Foundation.NSDictionary)
M:AppKit.NSFont.GetVerticalFont
-M:AppKit.NSFont.GlyphWithName(System.String)
M:AppKit.NSFont.LabelFontOfSize(System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.MenuBarFontOfSize(System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.MenuFontOfSize(System.Runtime.InteropServices.NFloat)
@@ -24945,194 +20447,46 @@ M:AppKit.NSFont.MonospacedDigitSystemFontOfSize(System.Runtime.InteropServices.N
M:AppKit.NSFont.MonospacedSystemFont(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.PaletteFontOfSize(System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.ScreenFontWithRenderingMode(AppKit.NSFontRenderingMode)
-M:AppKit.NSFont.Set
-M:AppKit.NSFont.SetInContext(AppKit.NSGraphicsContext)
-M:AppKit.NSFont.SetUserFixedPitchFont(AppKit.NSFont)
-M:AppKit.NSFont.SetUserFont(AppKit.NSFont)
M:AppKit.NSFont.SystemFontOfSize(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.SystemFontOfSize(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.SystemFontOfSize(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFont.SystemFontSizeForControlSize(AppKit.NSControlSize)
M:AppKit.NSFont.TitleBarFontOfSize(System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.ToolTipsFontOfSize(System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.UserFixedPitchFontOfSize(System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.UserFontOfSize(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFontAssetRequest.#ctor(AppKit.NSFontDescriptor[],AppKit.NSFontAssetRequestOptions)
-M:AppKit.NSFontAssetRequest.DownloadFontAssets(AppKit.DownloadFontAssetsRequestCompletionHandler)
M:AppKit.NSFontChanging_Extensions.ChangeFont(AppKit.INSFontChanging,AppKit.NSFontManager)
M:AppKit.NSFontChanging_Extensions.GetValidModes(AppKit.INSFontChanging,AppKit.NSFontPanel)
M:AppKit.NSFontCollection.Copy(Foundation.NSZone)
M:AppKit.NSFontCollection.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSFontCollection.FromDescriptors(AppKit.NSFontDescriptor[])
-M:AppKit.NSFontCollection.FromLocale(Foundation.NSLocale)
-M:AppKit.NSFontCollection.FromName(System.String,AppKit.NSFontCollectionVisibility)
-M:AppKit.NSFontCollection.FromName(System.String)
-M:AppKit.NSFontCollection.GetAllAvailableFonts
-M:AppKit.NSFontCollection.GetExclusionDescriptors
-M:AppKit.NSFontCollection.GetMatchingDescriptors
-M:AppKit.NSFontCollection.GetMatchingDescriptors(Foundation.NSDictionary)
-M:AppKit.NSFontCollection.GetMatchingDescriptors(System.String,Foundation.NSDictionary)
-M:AppKit.NSFontCollection.GetMatchingDescriptors(System.String)
-M:AppKit.NSFontCollection.GetQueryDescriptors
-M:AppKit.NSFontCollection.HideFontCollection(System.String,AppKit.NSFontCollectionVisibility,Foundation.NSError@)
M:AppKit.NSFontCollection.MutableCopy(Foundation.NSZone)
-M:AppKit.NSFontCollection.RenameFontCollection(System.String,AppKit.NSFontCollectionVisibility,System.String,Foundation.NSError@)
-M:AppKit.NSFontCollection.ShowFontCollection(AppKit.NSFontCollection,System.String,AppKit.NSFontCollectionVisibility,Foundation.NSError@)
M:AppKit.NSFontCollectionChangedEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSFontDescriptor.#ctor(Foundation.NSDictionary)
M:AppKit.NSFontDescriptor.Copy(Foundation.NSZone)
M:AppKit.NSFontDescriptor.Create(AppKit.NSFontDescriptorSystemDesign)
-M:AppKit.NSFontDescriptor.Create(Foundation.NSString)
M:AppKit.NSFontDescriptor.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSFontDescriptor.FontDescriptorByAddingAttributes(Foundation.NSDictionary)
-M:AppKit.NSFontDescriptor.FontDescriptorWithFace(System.String)
-M:AppKit.NSFontDescriptor.FontDescriptorWithFamily(System.String)
-M:AppKit.NSFontDescriptor.FontDescriptorWithMatrix(Foundation.NSAffineTransform)
-M:AppKit.NSFontDescriptor.FontDescriptorWithSize(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFontDescriptor.FontDescriptorWithSymbolicTraits(AppKit.NSFontSymbolicTraits)
-M:AppKit.NSFontDescriptor.FromAttributes(Foundation.NSDictionary)
-M:AppKit.NSFontDescriptor.FromNameMatrix(System.String,Foundation.NSAffineTransform)
-M:AppKit.NSFontDescriptor.FromNameSize(System.String,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFontDescriptor.GetPreferredFont(System.String,Foundation.NSDictionary)
-M:AppKit.NSFontDescriptor.MatchingFontDescriptors(Foundation.NSSet)
-M:AppKit.NSFontDescriptor.MatchingFontDescriptorWithMandatoryKeys(Foundation.NSSet)
-M:AppKit.NSFontDescriptor.ObjectForKey(System.String)
-M:AppKit.NSFontManager.AddCollection(System.String,AppKit.NSFontCollectionOptions)
-M:AppKit.NSFontManager.AddFontDescriptors(AppKit.NSFontDescriptor[],System.String)
-M:AppKit.NSFontManager.AddFontTrait(Foundation.NSObject)
-M:AppKit.NSFontManager.AvailableFontNamesMatchingFontDescriptor(AppKit.NSFontDescriptor)
-M:AppKit.NSFontManager.AvailableFontNamesWithTraits(AppKit.NSFontTraitMask)
-M:AppKit.NSFontManager.AvailableMembersOfFontFamily(System.String)
-M:AppKit.NSFontManager.ConvertAttributes(Foundation.NSDictionary)
-M:AppKit.NSFontManager.ConvertFont(AppKit.NSFont,AppKit.NSFontTraitMask)
-M:AppKit.NSFontManager.ConvertFont(AppKit.NSFont,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFontManager.ConvertFont(AppKit.NSFont,System.String)
-M:AppKit.NSFontManager.ConvertFont(AppKit.NSFont)
-M:AppKit.NSFontManager.ConvertFontToFamily(AppKit.NSFont,System.String)
-M:AppKit.NSFontManager.ConvertFontToNotHaveTrait(AppKit.NSFont,AppKit.NSFontTraitMask)
-M:AppKit.NSFontManager.ConvertFontTraits(AppKit.NSFontTraitMask)
-M:AppKit.NSFontManager.ConvertWeight(System.Boolean,AppKit.NSFont)
M:AppKit.NSFontManager.Dispose(System.Boolean)
-M:AppKit.NSFontManager.FontDescriptorsInCollection(System.String)
-M:AppKit.NSFontManager.FontMenu(System.Boolean)
-M:AppKit.NSFontManager.FontNamedHasTraits(System.String,AppKit.NSFontTraitMask)
-M:AppKit.NSFontManager.FontPanel(System.Boolean)
-M:AppKit.NSFontManager.FontWithFamily(System.String,AppKit.NSFontTraitMask,System.IntPtr,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFontManager.LocalizedNameForFamily(System.String,System.String)
-M:AppKit.NSFontManager.ModifyFont(Foundation.NSObject)
-M:AppKit.NSFontManager.ModifyFontViaPanel(Foundation.NSObject)
-M:AppKit.NSFontManager.OrderFrontFontPanel(Foundation.NSObject)
-M:AppKit.NSFontManager.OrderFrontStylesPanel(Foundation.NSObject)
-M:AppKit.NSFontManager.RemoveCollection(System.String)
-M:AppKit.NSFontManager.RemoveFontDescriptor(AppKit.NSFontDescriptor,System.String)
-M:AppKit.NSFontManager.RemoveFontTrait(Foundation.NSObject)
-M:AppKit.NSFontManager.SetFontManagerFactory(ObjCRuntime.Class)
-M:AppKit.NSFontManager.SetFontMenu(AppKit.NSMenu)
-M:AppKit.NSFontManager.SetFontPanelFactory(ObjCRuntime.Class)
-M:AppKit.NSFontManager.SetSelectedAttributes(Foundation.NSDictionary,System.Boolean)
-M:AppKit.NSFontManager.SetSelectedFont(AppKit.NSFont,System.Boolean)
-M:AppKit.NSFontManager.TraitsOfFont(AppKit.NSFont)
-M:AppKit.NSFontManager.ValidateMenuItem(AppKit.NSMenuItem)
-M:AppKit.NSFontManager.WeightOfFont(AppKit.NSFont)
-M:AppKit.NSFontPanel.PanelConvertFont(AppKit.NSFont)
-M:AppKit.NSFontPanel.ReloadDefaultFontFamilies
-M:AppKit.NSFontPanel.SetPanelFont(AppKit.NSFont,System.Boolean)
-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)
-M:AppKit.NSForm.AddEntry(System.String)
-M:AppKit.NSForm.CellAtIndex(System.IntPtr)
-M:AppKit.NSForm.DrawCellAtIndex(System.IntPtr)
-M:AppKit.NSForm.IndexOfCellWithTag(System.IntPtr)
-M:AppKit.NSForm.InsertEntryatIndex(System.String,System.IntPtr)
-M:AppKit.NSForm.RemoveEntryAtIndex(System.IntPtr)
-M:AppKit.NSForm.SelectTextAtIndex(System.IntPtr)
-M:AppKit.NSForm.SetBezeled(System.Boolean)
-M:AppKit.NSForm.SetBordered(System.Boolean)
-M:AppKit.NSForm.SetEntryWidth(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSForm.SetFrameSize(CoreGraphics.CGSize)
-M:AppKit.NSForm.SetInterlineSpacing(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSForm.SetTextAlignment(AppKit.NSTextAlignment)
-M:AppKit.NSForm.SetTextBaseWritingDirection(Foundation.NSWritingDirection)
-M:AppKit.NSForm.SetTextFont(AppKit.NSFont)
-M:AppKit.NSForm.SetTitleAlignment(AppKit.NSTextAlignment)
-M:AppKit.NSForm.SetTitleBaseWritingDirection(Foundation.NSWritingDirection)
-M:AppKit.NSForm.SetTitleFont(AppKit.NSFont)
-M:AppKit.NSFormCell.#ctor(AppKit.NSImage)
-M:AppKit.NSFormCell.#ctor(System.String)
-M:AppKit.NSFormCell.SetTitleWithMnemonic(System.String)
-M:AppKit.NSFormCell.TitleWidthConstraintedToSize(CoreGraphics.CGSize)
M:AppKit.NSGestureRecognizer_NSTouchBar.GetAllowedTouchTypes(AppKit.NSGestureRecognizer)
M:AppKit.NSGestureRecognizer_NSTouchBar.SetAllowedTouchTypes(AppKit.NSGestureRecognizer,AppKit.NSTouchTypeMask)
-M:AppKit.NSGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:AppKit.NSGestureRecognizer.#ctor(ObjCRuntime.Selector,AppKit.NSGestureRecognizer.Token)
M:AppKit.NSGestureRecognizer.#ctor(System.Action)
-M:AppKit.NSGestureRecognizer.CanBePrevented(AppKit.NSGestureRecognizer)
-M:AppKit.NSGestureRecognizer.CanPrevent(AppKit.NSGestureRecognizer)
M:AppKit.NSGestureRecognizer.Dispose(System.Boolean)
M:AppKit.NSGestureRecognizer.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSGestureRecognizer.FlagsChanged(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.KeyDown(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.KeyUp(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.LocationInView(AppKit.NSView)
-M:AppKit.NSGestureRecognizer.Magnify(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.MouseDown(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.MouseDragged(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.MouseUp(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.OtherMouseDown(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.OtherMouseDragged(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.OtherMouseUp(AppKit.NSEvent)
M:AppKit.NSGestureRecognizer.ParameterlessDispatch.Activated
M:AppKit.NSGestureRecognizer.ParametrizedDispatch.Activated(AppKit.NSGestureRecognizer)
-M:AppKit.NSGestureRecognizer.PressureChange(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.Reset
-M:AppKit.NSGestureRecognizer.RightMouseDown(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.RightMouseDragged(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.RightMouseUp(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.Rotate(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.ShouldBeRequiredToFailByGestureRecognizer(AppKit.NSGestureRecognizer)
-M:AppKit.NSGestureRecognizer.ShouldRequireFailureOfGestureRecognizer(AppKit.NSGestureRecognizer)
-M:AppKit.NSGestureRecognizer.TabletPoint(AppKit.NSEvent)
M:AppKit.NSGestureRecognizer.Token.#ctor
-M:AppKit.NSGestureRecognizer.TouchesBegan(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.TouchesCancelled(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.TouchesEnded(AppKit.NSEvent)
-M:AppKit.NSGestureRecognizer.TouchesMoved(AppKit.NSEvent)
M:AppKit.NSGestureRecognizerDelegate_Extensions.ShouldAttemptToRecognize(AppKit.INSGestureRecognizerDelegate,AppKit.NSGestureRecognizer,AppKit.NSEvent)
M:AppKit.NSGestureRecognizerDelegate_Extensions.ShouldBegin(AppKit.INSGestureRecognizerDelegate,AppKit.NSGestureRecognizer)
M:AppKit.NSGestureRecognizerDelegate_Extensions.ShouldBeRequiredToFail(AppKit.INSGestureRecognizerDelegate,AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer)
M:AppKit.NSGestureRecognizerDelegate_Extensions.ShouldReceiveTouch(AppKit.INSGestureRecognizerDelegate,AppKit.NSGestureRecognizer,AppKit.NSTouch)
M:AppKit.NSGestureRecognizerDelegate_Extensions.ShouldRecognizeSimultaneously(AppKit.INSGestureRecognizerDelegate,AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer)
M:AppKit.NSGestureRecognizerDelegate_Extensions.ShouldRequireFailure(AppKit.INSGestureRecognizerDelegate,AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer)
-M:AppKit.NSGestureRecognizerDelegate.ShouldAttemptToRecognize(AppKit.NSGestureRecognizer,AppKit.NSEvent)
-M:AppKit.NSGestureRecognizerDelegate.ShouldBegin(AppKit.NSGestureRecognizer)
-M:AppKit.NSGestureRecognizerDelegate.ShouldBeRequiredToFail(AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer)
-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.GenerateGlyphs(Foundation.NSObject,System.UIntPtr,System.UIntPtr@,System.UIntPtr@)
M:AppKit.NSGlyphInfo.Copy(Foundation.NSZone)
M:AppKit.NSGlyphInfo.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSGlyphInfo.Get(System.String,AppKit.NSFont,System.String)
-M:AppKit.NSGlyphInfo.Get(System.UInt32,AppKit.NSFont,System.String)
-M:AppKit.NSGlyphInfo.Get(System.UIntPtr,AppKit.NSCharacterCollection,System.String)
-M:AppKit.NSGlyphInfo.GetGlyphInfo(System.UInt16,AppKit.NSFont,System.String)
-M:AppKit.NSGradient.#ctor(AppKit.NSColor,AppKit.NSColor)
M:AppKit.NSGradient.#ctor(AppKit.NSColor[],System.Double[],AppKit.NSColorSpace)
M:AppKit.NSGradient.#ctor(AppKit.NSColor[],System.Double[])
M:AppKit.NSGradient.#ctor(AppKit.NSColor[],System.Single[],AppKit.NSColorSpace)
M:AppKit.NSGradient.#ctor(AppKit.NSColor[],System.Single[])
-M:AppKit.NSGradient.#ctor(AppKit.NSColor[])
M:AppKit.NSGradient.Copy(Foundation.NSZone)
-M:AppKit.NSGradient.DrawFromCenterRadius(CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,AppKit.NSGradientDrawingOptions)
-M:AppKit.NSGradient.DrawFromPoint(CoreGraphics.CGPoint,CoreGraphics.CGPoint,AppKit.NSGradientDrawingOptions)
-M:AppKit.NSGradient.DrawInBezierPath(AppKit.NSBezierPath,CoreGraphics.CGPoint)
-M:AppKit.NSGradient.DrawInBezierPath(AppKit.NSBezierPath,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSGradient.DrawInRect(CoreGraphics.CGRect,CoreGraphics.CGPoint)
-M:AppKit.NSGradient.DrawInRect(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat)
M:AppKit.NSGradient.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSGradient.GetColor(AppKit.NSColor@,System.Runtime.InteropServices.NFloat@,System.IntPtr)
-M:AppKit.NSGradient.GetInterpolatedColor(System.Runtime.InteropServices.NFloat)
M:AppKit.NSGraphics.BitsPerPixelFromDepth(AppKit.NSWindowDepth)
M:AppKit.NSGraphics.BitsPerSampleFromDepth(AppKit.NSWindowDepth)
M:AppKit.NSGraphics.ColorSpaceFromDepth(AppKit.NSWindowDepth)
@@ -25159,353 +20513,102 @@ M:AppKit.NSGraphics.RectFill(CoreGraphics.CGRect[])
M:AppKit.NSGraphics.SetFocusRingStyle(AppKit.NSFocusRingPlacement)
M:AppKit.NSGraphics.ShowAnimationEffect(AppKit.NSAnimationEffect,CoreGraphics.CGPoint,CoreGraphics.CGSize,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:AppKit.NSGraphics.ShowAnimationEffect(AppKit.NSAnimationEffect,CoreGraphics.CGPoint,CoreGraphics.CGSize,System.Action)
-M:AppKit.NSGraphicsContext.FlushGraphics
-M:AppKit.NSGraphicsContext.FromAttributes(Foundation.NSDictionary)
-M:AppKit.NSGraphicsContext.FromBitmap(AppKit.NSBitmapImageRep)
-M:AppKit.NSGraphicsContext.FromCGContext(CoreGraphics.CGContext,System.Boolean)
M:AppKit.NSGraphicsContext.FromGraphicsPort(CoreGraphics.CGContext,System.Boolean)
-M:AppKit.NSGraphicsContext.FromGraphicsPort(System.IntPtr,System.Boolean)
-M:AppKit.NSGraphicsContext.FromWindow(AppKit.NSWindow)
-M:AppKit.NSGraphicsContext.GlobalRestoreGraphicsState
-M:AppKit.NSGraphicsContext.GlobalSaveGraphicsState
-M:AppKit.NSGraphicsContext.RestoreGraphicsState
-M:AppKit.NSGraphicsContext.SaveGraphicsState
-M:AppKit.NSGraphicsContext.SetGraphicsState(System.IntPtr)
M:AppKit.NSGridCell.Dispose(System.Boolean)
M:AppKit.NSGridCell.EncodeTo(Foundation.NSCoder)
M:AppKit.NSGridColumn.Dispose(System.Boolean)
M:AppKit.NSGridColumn.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSGridColumn.GetCell(System.IntPtr)
-M:AppKit.NSGridColumn.MergeCells(Foundation.NSRange)
M:AppKit.NSGridRow.Dispose(System.Boolean)
M:AppKit.NSGridRow.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSGridRow.GetCell(System.IntPtr)
-M:AppKit.NSGridRow.MergeCells(Foundation.NSRange)
-M:AppKit.NSGridView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSGridView.AddColumn(AppKit.NSView[])
-M:AppKit.NSGridView.AddRow(AppKit.NSView[])
-M:AppKit.NSGridView.Create(AppKit.NSView[][])
-M:AppKit.NSGridView.Create(AppKit.NSView[0:,0:])
-M:AppKit.NSGridView.Create(System.IntPtr,System.IntPtr)
-M:AppKit.NSGridView.GetCell(AppKit.NSView)
-M:AppKit.NSGridView.GetCell(System.IntPtr,System.IntPtr)
-M:AppKit.NSGridView.GetColumn(System.IntPtr)
-M:AppKit.NSGridView.GetIndex(AppKit.NSGridColumn)
-M:AppKit.NSGridView.GetIndex(AppKit.NSGridRow)
-M:AppKit.NSGridView.GetRow(System.IntPtr)
-M:AppKit.NSGridView.InsertColumn(System.IntPtr,AppKit.NSView[])
-M:AppKit.NSGridView.InsertRow(System.IntPtr,AppKit.NSView[])
-M:AppKit.NSGridView.MergeCells(Foundation.NSRange,Foundation.NSRange)
-M:AppKit.NSGridView.MoveColumn(System.IntPtr,System.IntPtr)
-M:AppKit.NSGridView.MoveRow(System.IntPtr,System.IntPtr)
-M:AppKit.NSGridView.RemoveColumn(System.IntPtr)
-M:AppKit.NSGridView.RemoveRow(System.IntPtr)
-M:AppKit.NSGroupTouchBarItem.#ctor(System.String)
-M:AppKit.NSGroupTouchBarItem.CreateAlertStyleGroupItem(System.String)
-M:AppKit.NSGroupTouchBarItem.CreateGroupItem(System.String,AppKit.NSTouchBarItem[],AppKit.NSUserInterfaceCompressionOptions)
-M:AppKit.NSGroupTouchBarItem.CreateGroupItem(System.String,AppKit.NSTouchBarItem[])
-M:AppKit.NSHapticFeedbackPerformer.PerformFeedback(AppKit.NSHapticFeedbackPattern,AppKit.NSHapticFeedbackPerformanceTime)
-M:AppKit.NSHelpManager.Context(Foundation.NSObject)
-M:AppKit.NSHelpManager.FindString(System.String,System.String)
-M:AppKit.NSHelpManager.OpenHelpAnchor(System.String,System.String)
-M:AppKit.NSHelpManager.RegisterBooks(Foundation.NSBundle)
-M:AppKit.NSHelpManager.RemoveContext(Foundation.NSObject)
-M:AppKit.NSHelpManager.SetContext(Foundation.NSAttributedString,Foundation.NSObject)
-M:AppKit.NSHelpManager.SharedHelpManager
-M:AppKit.NSHelpManager.ShowContext(Foundation.NSObject,CoreGraphics.CGPoint)
-M:AppKit.NSImage.#ctor(AppKit.NSPasteboard)
-M:AppKit.NSImage.#ctor(CoreGraphics.CGImage,CoreGraphics.CGSize)
-M:AppKit.NSImage.#ctor(CoreGraphics.CGSize)
M:AppKit.NSImage.#ctor(Foundation.NSData,System.Boolean)
-M:AppKit.NSImage.#ctor(Foundation.NSData)
-M:AppKit.NSImage.#ctor(Foundation.NSUrl)
M:AppKit.NSImage.#ctor(System.String,System.Boolean)
-M:AppKit.NSImage.#ctor(System.String)
M:AppKit.NSImage.add_DidLoadPartOfRepresentation(System.EventHandler{AppKit.NSImagePartialEventArgs})
M:AppKit.NSImage.add_DidLoadRepresentation(System.EventHandler{AppKit.NSImageLoadRepresentationEventArgs})
M:AppKit.NSImage.add_DidLoadRepresentationHeader(System.EventHandler{AppKit.NSImageLoadEventArgs})
M:AppKit.NSImage.add_WillLoadRepresentation(System.EventHandler{AppKit.NSImageLoadEventArgs})
-M:AppKit.NSImage.AddRepresentation(AppKit.NSImageRep)
-M:AppKit.NSImage.AddRepresentations(AppKit.NSImageRep[])
-M:AppKit.NSImage.AsCGImage(CoreGraphics.CGRect@,AppKit.NSGraphicsContext,Foundation.NSDictionary)
-M:AppKit.NSImage.AsTiff
-M:AppKit.NSImage.AsTiff(AppKit.NSTiffCompression,System.Single)
-M:AppKit.NSImage.BestRepresentation(CoreGraphics.CGRect,AppKit.NSGraphicsContext,Foundation.NSDictionary)
-M:AppKit.NSImage.BestRepresentationForDevice(Foundation.NSDictionary)
-M:AppKit.NSImage.CancelIncrementalLoad
-M:AppKit.NSImage.CanInitWithPasteboard(AppKit.NSPasteboard)
M:AppKit.NSImage.Copy(Foundation.NSZone)
M:AppKit.NSImage.Dispose(System.Boolean)
-M:AppKit.NSImage.Draw(AppKit.NSImageRep,CoreGraphics.CGRect)
-M:AppKit.NSImage.Draw(CoreGraphics.CGPoint,CoreGraphics.CGRect,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSImage.Draw(CoreGraphics.CGRect,CoreGraphics.CGRect,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat,System.Boolean,Foundation.NSDictionary)
-M:AppKit.NSImage.Draw(CoreGraphics.CGRect,CoreGraphics.CGRect,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSImage.Draw(CoreGraphics.CGRect)
M:AppKit.NSImage.EncodeTo(Foundation.NSCoder)
M:AppKit.NSImage.FromStream(System.IO.Stream)
-M:AppKit.NSImage.GetImage(AppKit.NSImageSymbolConfiguration)
-M:AppKit.NSImage.GetImage(Foundation.NSLocale)
-M:AppKit.NSImage.GetImage(System.String,Foundation.NSBundle,System.Double)
-M:AppKit.NSImage.GetImage(System.String,System.Double,System.String)
-M:AppKit.NSImage.GetImage(System.String,System.Double)
-M:AppKit.NSImage.GetLayerContentsForContentsScale(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSImage.GetPasteboardPropertyListForType(System.String)
-M:AppKit.NSImage.GetReadableTypesForPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSImage.GetReadingOptionsForType(System.String,AppKit.NSPasteboard)
-M:AppKit.NSImage.GetRecommendedLayerContentsScale(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSImage.GetSystemSymbol(System.String,System.String)
-M:AppKit.NSImage.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSImage.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
-M:AppKit.NSImage.HitTestRect(CoreGraphics.CGRect,CoreGraphics.CGRect,AppKit.NSGraphicsContext,Foundation.NSDictionary,System.Boolean)
M:AppKit.NSImage.ImageNamed(AppKit.NSImageName)
-M:AppKit.NSImage.ImageNamed(System.String)
-M:AppKit.NSImage.ImageUnfilteredFileTypes
-M:AppKit.NSImage.ImageUnfilteredPasteboardTypes
-M:AppKit.NSImage.ImageWithSize(CoreGraphics.CGSize,System.Boolean,AppKit.NSCustomImageRepDrawingHandler)
-M:AppKit.NSImage.LockFocus
-M:AppKit.NSImage.LockFocusFlipped(System.Boolean)
-M:AppKit.NSImage.Recache
M:AppKit.NSImage.remove_DidLoadPartOfRepresentation(System.EventHandler{AppKit.NSImagePartialEventArgs})
M:AppKit.NSImage.remove_DidLoadRepresentation(System.EventHandler{AppKit.NSImageLoadRepresentationEventArgs})
M:AppKit.NSImage.remove_DidLoadRepresentationHeader(System.EventHandler{AppKit.NSImageLoadEventArgs})
M:AppKit.NSImage.remove_WillLoadRepresentation(System.EventHandler{AppKit.NSImageLoadEventArgs})
-M:AppKit.NSImage.RemoveRepresentation(AppKit.NSImageRep)
-M:AppKit.NSImage.Representations
-M:AppKit.NSImage.UnlockFocus
-M:AppKit.NSImageCell.#ctor(AppKit.NSImage)
-M:AppKit.NSImageCell.#ctor(System.String)
M:AppKit.NSImageDelegate_Extensions.DidLoadPartOfRepresentation(AppKit.INSImageDelegate,AppKit.NSImage,AppKit.NSImageRep,System.IntPtr)
M:AppKit.NSImageDelegate_Extensions.DidLoadRepresentation(AppKit.INSImageDelegate,AppKit.NSImage,AppKit.NSImageRep,AppKit.NSImageLoadStatus)
M:AppKit.NSImageDelegate_Extensions.DidLoadRepresentationHeader(AppKit.INSImageDelegate,AppKit.NSImage,AppKit.NSImageRep)
M:AppKit.NSImageDelegate_Extensions.ImageDidNotDraw(AppKit.INSImageDelegate,Foundation.NSObject,CoreGraphics.CGRect)
M:AppKit.NSImageDelegate_Extensions.WillLoadRepresentation(AppKit.INSImageDelegate,AppKit.NSImage,AppKit.NSImageRep)
-M:AppKit.NSImageDelegate.DidLoadPartOfRepresentation(AppKit.NSImage,AppKit.NSImageRep,System.IntPtr)
-M:AppKit.NSImageDelegate.DidLoadRepresentation(AppKit.NSImage,AppKit.NSImageRep,AppKit.NSImageLoadStatus)
-M:AppKit.NSImageDelegate.DidLoadRepresentationHeader(AppKit.NSImage,AppKit.NSImageRep)
-M:AppKit.NSImageDelegate.ImageDidNotDraw(Foundation.NSObject,CoreGraphics.CGRect)
-M:AppKit.NSImageDelegate.WillLoadRepresentation(AppKit.NSImage,AppKit.NSImageRep)
M:AppKit.NSImageLoadEventArgs.#ctor(AppKit.NSImageRep)
M:AppKit.NSImageLoadRepresentationEventArgs.#ctor(AppKit.NSImageRep,AppKit.NSImageLoadStatus)
M:AppKit.NSImagePartialEventArgs.#ctor(AppKit.NSImageRep,System.IntPtr)
-M:AppKit.NSImageRep.AsCGImage(CoreGraphics.CGRect@,AppKit.NSGraphicsContext,Foundation.NSDictionary)
-M:AppKit.NSImageRep.CanInitWithData(Foundation.NSData)
-M:AppKit.NSImageRep.CanInitWithPasteboard(AppKit.NSPasteboard)
M:AppKit.NSImageRep.Copy(Foundation.NSZone)
-M:AppKit.NSImageRep.Draw
-M:AppKit.NSImageRep.DrawAtPoint(CoreGraphics.CGPoint)
-M:AppKit.NSImageRep.DrawInRect(CoreGraphics.CGRect,CoreGraphics.CGRect,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat,System.Boolean,Foundation.NSDictionary)
-M:AppKit.NSImageRep.DrawInRect(CoreGraphics.CGRect)
M:AppKit.NSImageRep.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSImageRep.GetRegisteredImageRepClasses
-M:AppKit.NSImageRep.ImageRepClassForData(Foundation.NSData)
-M:AppKit.NSImageRep.ImageRepClassForFileType(System.String)
-M:AppKit.NSImageRep.ImageRepClassForPasteboardType(System.String)
-M:AppKit.NSImageRep.ImageRepClassForType(System.String)
-M:AppKit.NSImageRep.ImageRepFromFile(System.String)
-M:AppKit.NSImageRep.ImageRepFromPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSImageRep.ImageRepFromUrl(Foundation.NSUrl)
-M:AppKit.NSImageRep.ImageRepsFromFile(System.String)
-M:AppKit.NSImageRep.ImageRepsFromPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSImageRep.ImageRepsFromUrl(Foundation.NSUrl)
-M:AppKit.NSImageRep.RegisterImageRepClass(ObjCRuntime.Class)
M:AppKit.NSImageRep.SetAlpha(System.Boolean)
-M:AppKit.NSImageRep.UnregisterImageRepClass(ObjCRuntime.Class)
M:AppKit.NSImageResizingModeExtensions.ToManaged(System.IntPtr)
M:AppKit.NSImageResizingModeExtensions.ToNative(AppKit.NSImageResizingMode)
M:AppKit.NSImageSymbolConfiguration.Copy(Foundation.NSZone)
-M:AppKit.NSImageSymbolConfiguration.Create
-M:AppKit.NSImageSymbolConfiguration.Create(AppKit.NSColor)
-M:AppKit.NSImageSymbolConfiguration.Create(AppKit.NSColor[])
-M:AppKit.NSImageSymbolConfiguration.Create(AppKit.NSImageSymbolConfiguration)
-M:AppKit.NSImageSymbolConfiguration.Create(AppKit.NSImageSymbolScale)
-M:AppKit.NSImageSymbolConfiguration.Create(System.Runtime.InteropServices.NFloat,System.Double,AppKit.NSImageSymbolScale)
-M:AppKit.NSImageSymbolConfiguration.Create(System.Runtime.InteropServices.NFloat,System.Double)
-M:AppKit.NSImageSymbolConfiguration.Create(System.String,AppKit.NSImageSymbolScale)
-M:AppKit.NSImageSymbolConfiguration.Create(System.String)
-M:AppKit.NSImageSymbolConfiguration.CreateConfigurationPreferringHierarchical
-M:AppKit.NSImageSymbolConfiguration.CreateConfigurationPreferringMonochrome
M:AppKit.NSImageSymbolConfiguration.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSImageView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSImageView.AddSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
-M:AppKit.NSImageView.AddSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions)
-M:AppKit.NSImageView.AddSymbolEffect(Symbols.NSSymbolEffect)
-M:AppKit.NSImageView.FromImage(AppKit.NSImage)
-M:AppKit.NSImageView.RemoveAllSymbolEffects
-M:AppKit.NSImageView.RemoveAllSymbolEffects(Symbols.NSSymbolEffectOptions,System.Boolean)
-M:AppKit.NSImageView.RemoveAllSymbolEffects(Symbols.NSSymbolEffectOptions)
-M:AppKit.NSImageView.RemoveSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
-M:AppKit.NSImageView.RemoveSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions)
-M:AppKit.NSImageView.RemoveSymbolEffect(Symbols.NSSymbolEffect)
-M:AppKit.NSImageView.SetSymbolImage(AppKit.NSImage,Symbols.NSSymbolContentTransition,Symbols.NSSymbolEffectOptions)
-M:AppKit.NSImageView.SetSymbolImage(AppKit.NSImage,Symbols.NSSymbolContentTransition)
-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.ConstraintEqualTo(AppKit.NSLayoutAnchor{`0},System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutAnchor`1.ConstraintEqualTo(AppKit.NSLayoutAnchor{`0})
-M:AppKit.NSLayoutAnchor`1.ConstraintGreaterThanOrEqualTo(AppKit.NSLayoutAnchor{`0},System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutAnchor`1.ConstraintGreaterThanOrEqualTo(AppKit.NSLayoutAnchor{`0})
-M:AppKit.NSLayoutAnchor`1.ConstraintLessThanOrEqualTo(AppKit.NSLayoutAnchor{`0},System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutAnchor`1.ConstraintLessThanOrEqualTo(AppKit.NSLayoutAnchor{`0})
M:AppKit.NSLayoutAnchor`1.Copy(Foundation.NSZone)
M:AppKit.NSLayoutAnchor`1.Dispose(System.Boolean)
M:AppKit.NSLayoutAnchor`1.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSLayoutConstraint.ActivateConstraints(AppKit.NSLayoutConstraint[])
-M:AppKit.NSLayoutConstraint.AnimationFor(Foundation.NSString)
M:AppKit.NSLayoutConstraint.Create(Foundation.NSObject,AppKit.NSLayoutAttribute,AppKit.NSLayoutRelation,Foundation.NSObject,AppKit.NSLayoutAttribute,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSLayoutConstraint.Create(Foundation.NSObject,AppKit.NSLayoutAttribute,AppKit.NSLayoutRelation,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSLayoutConstraint.Create(Foundation.NSObject,AppKit.NSLayoutAttribute,AppKit.NSLayoutRelation)
-M:AppKit.NSLayoutConstraint.Create(ObjCRuntime.INativeObject,AppKit.NSLayoutAttribute,AppKit.NSLayoutRelation,ObjCRuntime.INativeObject,AppKit.NSLayoutAttribute,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutConstraint.DeactivateConstraints(AppKit.NSLayoutConstraint[])
-M:AppKit.NSLayoutConstraint.DefaultAnimationFor(Foundation.NSString)
M:AppKit.NSLayoutConstraint.Dispose(System.Boolean)
M:AppKit.NSLayoutConstraint.FirstAnchor``1
-M:AppKit.NSLayoutConstraint.FromVisualFormat(System.String,AppKit.NSLayoutFormatOptions,Foundation.NSDictionary,Foundation.NSDictionary)
M:AppKit.NSLayoutConstraint.FromVisualFormat(System.String,AppKit.NSLayoutFormatOptions,System.Object[])
M:AppKit.NSLayoutConstraint.SecondAnchor``1
-M:AppKit.NSLayoutDimension.ConstraintEqualTo(AppKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutDimension.ConstraintEqualTo(AppKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutDimension.ConstraintEqualTo(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutDimension.ConstraintGreaterThanOrEqualTo(AppKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutDimension.ConstraintGreaterThanOrEqualTo(AppKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutDimension.ConstraintGreaterThanOrEqualTo(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutDimension.ConstraintLessThanOrEqualTo(AppKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutDimension.ConstraintLessThanOrEqualTo(AppKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutDimension.ConstraintLessThanOrEqualTo(System.Runtime.InteropServices.NFloat)
M:AppKit.NSLayoutGuide.Dispose(System.Boolean)
M:AppKit.NSLayoutGuide.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSLayoutGuide.GetConstraintsAffectingLayout(AppKit.NSLayoutConstraintOrientation)
M:AppKit.NSLayoutManager_NSTextViewSupport.GetFirstTextView(AppKit.NSLayoutManager)
M:AppKit.NSLayoutManager_NSTextViewSupport.GetRulerAccessoryView(AppKit.NSLayoutManager,AppKit.NSTextView,AppKit.NSParagraphStyle,AppKit.NSRulerView,System.Boolean)
M:AppKit.NSLayoutManager_NSTextViewSupport.GetRulerMarkers(AppKit.NSLayoutManager,AppKit.NSTextView,AppKit.NSParagraphStyle,AppKit.NSRulerView)
M:AppKit.NSLayoutManager_NSTextViewSupport.GetTextViewForBeginningOfSelection(AppKit.NSLayoutManager)
M:AppKit.NSLayoutManager_NSTextViewSupport.LayoutManagerOwnsFirstResponder(AppKit.NSLayoutManager,AppKit.NSWindow)
-M:AppKit.NSLayoutManager.AddTemporaryAttribute(Foundation.NSString,Foundation.NSObject,Foundation.NSRange)
M:AppKit.NSLayoutManager.AddTemporaryAttribute(System.String,Foundation.NSObject,Foundation.NSRange)
-M:AppKit.NSLayoutManager.AddTemporaryAttributes(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSRange)
-M:AppKit.NSLayoutManager.AddTextContainer(AppKit.NSTextContainer)
M:AppKit.NSLayoutManager.Dispose(System.Boolean)
-M:AppKit.NSLayoutManager.DrawBackground(Foundation.NSRange,CoreGraphics.CGPoint)
-M:AppKit.NSLayoutManager.DrawGlyphs(Foundation.NSRange,CoreGraphics.CGPoint)
-M:AppKit.NSLayoutManager.DrawsOutsideLineFragmentForGlyph(System.UIntPtr)
-M:AppKit.NSLayoutManager.DrawStrikethrough(Foundation.NSRange,Foundation.NSUnderlineStyle,System.Runtime.InteropServices.NFloat,CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGPoint)
-M:AppKit.NSLayoutManager.DrawUnderline(Foundation.NSRange,Foundation.NSUnderlineStyle,System.Runtime.InteropServices.NFloat,CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGPoint)
M:AppKit.NSLayoutManager.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSLayoutManager.EnsureGlyphsForCharacterRange(Foundation.NSRange)
-M:AppKit.NSLayoutManager.EnsureGlyphsForGlyphRange(Foundation.NSRange)
-M:AppKit.NSLayoutManager.EnsureLayoutForBoundingRect(CoreGraphics.CGRect,AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.EnsureLayoutForCharacterRange(Foundation.NSRange)
-M:AppKit.NSLayoutManager.EnsureLayoutForGlyphRange(Foundation.NSRange)
-M:AppKit.NSLayoutManager.EnsureLayoutForTextContainer(AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.EnumerateEnclosingRects(Foundation.NSRange,Foundation.NSRange,AppKit.NSTextContainer,AppKit.NSTextLayoutEnumerateEnclosingRects)
-M:AppKit.NSLayoutManager.EnumerateLineFragments(Foundation.NSRange,AppKit.NSTextLayoutEnumerateLineFragments)
-M:AppKit.NSLayoutManager.FillBackground(System.IntPtr,System.UIntPtr,Foundation.NSRange,AppKit.NSColor)
-M:AppKit.NSLayoutManager.GetAttachmentSizeForGlyph(System.UIntPtr)
-M:AppKit.NSLayoutManager.GetBoundingRect(Foundation.NSRange,AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.GetBoundsRect(AppKit.NSTextBlock,Foundation.NSRange)
M:AppKit.NSLayoutManager.GetBoundsRect(AppKit.NSTextBlock,System.UIntPtr,Foundation.NSRange@)
-M:AppKit.NSLayoutManager.GetBoundsRect(AppKit.NSTextBlock,System.UIntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.GetBoundsRect(AppKit.NSTextBlock,System.UIntPtr)
-M:AppKit.NSLayoutManager.GetCharacterIndex(CoreGraphics.CGPoint,AppKit.NSTextContainer,System.IntPtr)
M:AppKit.NSLayoutManager.GetCharacterIndex(CoreGraphics.CGPoint,AppKit.NSTextContainer,System.Runtime.InteropServices.NFloat@)
M:AppKit.NSLayoutManager.GetCharacterIndex(CoreGraphics.CGPoint,AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.GetCharacterIndex(System.UIntPtr)
M:AppKit.NSLayoutManager.GetCharacterRange(Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.NSLayoutManager.GetCharacterRange(Foundation.NSRange,System.IntPtr)
M:AppKit.NSLayoutManager.GetCharacterRange(Foundation.NSRange)
-M:AppKit.NSLayoutManager.GetDefaultBaselineOffset(AppKit.NSFont)
-M:AppKit.NSLayoutManager.GetDefaultLineHeight(AppKit.NSFont)
-M:AppKit.NSLayoutManager.GetFirstUnlaidCharacterIndex(System.UIntPtr@,System.UIntPtr@)
-M:AppKit.NSLayoutManager.GetFractionOfDistanceThroughGlyph(CoreGraphics.CGPoint,AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.GetGlyph(System.UIntPtr,System.Boolean@)
-M:AppKit.NSLayoutManager.GetGlyph(System.UIntPtr)
-M:AppKit.NSLayoutManager.GetGlyphIndex(CoreGraphics.CGPoint,AppKit.NSTextContainer,System.Runtime.InteropServices.NFloat@)
-M:AppKit.NSLayoutManager.GetGlyphIndex(CoreGraphics.CGPoint,AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.GetGlyphIndex(System.UIntPtr)
-M:AppKit.NSLayoutManager.GetGlyphRange(AppKit.NSTextContainer)
M:AppKit.NSLayoutManager.GetGlyphRange(Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.NSLayoutManager.GetGlyphRange(Foundation.NSRange,System.IntPtr)
M:AppKit.NSLayoutManager.GetGlyphRange(Foundation.NSRange)
-M:AppKit.NSLayoutManager.GetGlyphRangeForBoundingRect(CoreGraphics.CGRect,AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.GetGlyphRangeForBoundingRectWithoutAdditionalLayout(CoreGraphics.CGRect,AppKit.NSTextContainer)
M:AppKit.NSLayoutManager.GetGlyphs(Foundation.NSRange,System.Int16[],AppKit.NSGlyphProperty[],System.UIntPtr[],System.Byte[])
-M:AppKit.NSLayoutManager.GetGlyphs(Foundation.NSRange,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:AppKit.NSLayoutManager.GetLayoutRect(AppKit.NSTextBlock,Foundation.NSRange)
M:AppKit.NSLayoutManager.GetLayoutRect(AppKit.NSTextBlock,System.UIntPtr,Foundation.NSRange@)
-M:AppKit.NSLayoutManager.GetLayoutRect(AppKit.NSTextBlock,System.UIntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.GetLayoutRect(AppKit.NSTextBlock,System.UIntPtr)
-M:AppKit.NSLayoutManager.GetLineFragmentInsertionPoints(System.UIntPtr,System.Boolean,System.Boolean,System.IntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.GetLineFragmentInsertionPoints(System.UIntPtr,System.Boolean,System.Boolean,System.Runtime.InteropServices.NFloat[],System.IntPtr[])
M:AppKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,Foundation.NSRange@,System.Boolean)
M:AppKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,Foundation.NSRange@)
M:AppKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,System.Boolean)
-M:AppKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,System.IntPtr,System.Boolean)
-M:AppKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr)
M:AppKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,Foundation.NSRange@,System.Boolean)
M:AppKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,Foundation.NSRange@)
M:AppKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,System.Boolean)
-M:AppKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,System.IntPtr,System.Boolean)
-M:AppKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr)
-M:AppKit.NSLayoutManager.GetLocationForGlyph(System.UIntPtr)
-M:AppKit.NSLayoutManager.GetProperty(System.UIntPtr)
-M:AppKit.NSLayoutManager.GetRangeOfNominallySpacedGlyphsContainingIndex(System.UIntPtr)
M:AppKit.NSLayoutManager.GetTemporaryAttribute(Foundation.NSString,System.UIntPtr,Foundation.NSRange)
M:AppKit.NSLayoutManager.GetTemporaryAttribute(Foundation.NSString,System.UIntPtr,Foundation.NSRange@,Foundation.NSRange)
M:AppKit.NSLayoutManager.GetTemporaryAttribute(Foundation.NSString,System.UIntPtr,Foundation.NSRange@)
-M:AppKit.NSLayoutManager.GetTemporaryAttribute(Foundation.NSString,System.UIntPtr,System.IntPtr,Foundation.NSRange)
-M:AppKit.NSLayoutManager.GetTemporaryAttribute(Foundation.NSString,System.UIntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.GetTemporaryAttribute(Foundation.NSString,System.UIntPtr)
M:AppKit.NSLayoutManager.GetTemporaryAttributes(System.UIntPtr,Foundation.NSRange)
M:AppKit.NSLayoutManager.GetTemporaryAttributes(System.UIntPtr,Foundation.NSRange@,Foundation.NSRange)
M:AppKit.NSLayoutManager.GetTemporaryAttributes(System.UIntPtr,Foundation.NSRange@)
-M:AppKit.NSLayoutManager.GetTemporaryAttributes(System.UIntPtr,System.IntPtr,Foundation.NSRange)
-M:AppKit.NSLayoutManager.GetTemporaryAttributes(System.UIntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.GetTemporaryAttributes(System.UIntPtr)
M:AppKit.NSLayoutManager.GetTextContainer(System.UIntPtr,Foundation.NSRange@,System.Boolean)
M:AppKit.NSLayoutManager.GetTextContainer(System.UIntPtr,Foundation.NSRange@)
M:AppKit.NSLayoutManager.GetTextContainer(System.UIntPtr,System.Boolean)
-M:AppKit.NSLayoutManager.GetTextContainer(System.UIntPtr,System.IntPtr,System.Boolean)
-M:AppKit.NSLayoutManager.GetTextContainer(System.UIntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.GetTextContainer(System.UIntPtr)
-M:AppKit.NSLayoutManager.GetTruncatedGlyphRangeInLineFragment(System.UIntPtr)
-M:AppKit.NSLayoutManager.GetUsedRect(AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.GlyphAtIndex(System.UIntPtr,System.Boolean@)
-M:AppKit.NSLayoutManager.GlyphAtIndex(System.UIntPtr)
-M:AppKit.NSLayoutManager.InsertTextContainer(AppKit.NSTextContainer,System.IntPtr)
-M:AppKit.NSLayoutManager.InvalidateDisplayForCharacterRange(Foundation.NSRange)
-M:AppKit.NSLayoutManager.InvalidateDisplayForGlyphRange(Foundation.NSRange)
M:AppKit.NSLayoutManager.InvalidateGlyphs(Foundation.NSRange,System.IntPtr,Foundation.NSRange@)
-M:AppKit.NSLayoutManager.InvalidateGlyphs(Foundation.NSRange,System.IntPtr,System.IntPtr)
M:AppKit.NSLayoutManager.InvalidateGlyphs(Foundation.NSRange,System.IntPtr)
M:AppKit.NSLayoutManager.InvalidateLayout(Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.NSLayoutManager.InvalidateLayout(Foundation.NSRange,System.IntPtr)
M:AppKit.NSLayoutManager.InvalidateLayout(Foundation.NSRange)
-M:AppKit.NSLayoutManager.IsNotShownAttributeForGlyph(System.UIntPtr)
-M:AppKit.NSLayoutManager.IsValidGlyph(System.UIntPtr)
-M:AppKit.NSLayoutManager.ProcessEditing(AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr,Foundation.NSRange)
-M:AppKit.NSLayoutManager.RemoveTemporaryAttribute(Foundation.NSString,Foundation.NSRange)
M:AppKit.NSLayoutManager.RemoveTemporaryAttribute(System.String,Foundation.NSRange)
-M:AppKit.NSLayoutManager.RemoveTextContainer(System.IntPtr)
-M:AppKit.NSLayoutManager.SetAttachmentSize(CoreGraphics.CGSize,Foundation.NSRange)
-M:AppKit.NSLayoutManager.SetBoundsRect(CoreGraphics.CGRect,AppKit.NSTextBlock,Foundation.NSRange)
-M:AppKit.NSLayoutManager.SetDrawsOutsideLineFragment(System.Boolean,System.UIntPtr)
-M:AppKit.NSLayoutManager.SetExtraLineFragment(CoreGraphics.CGRect,CoreGraphics.CGRect,AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.SetGlyphs(System.IntPtr,System.IntPtr,System.IntPtr,AppKit.NSFont,Foundation.NSRange)
-M:AppKit.NSLayoutManager.SetLayoutRect(CoreGraphics.CGRect,AppKit.NSTextBlock,Foundation.NSRange)
-M:AppKit.NSLayoutManager.SetLineFragment(CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGRect)
-M:AppKit.NSLayoutManager.SetLocation(CoreGraphics.CGPoint,Foundation.NSRange)
-M:AppKit.NSLayoutManager.SetNotShownAttribute(System.Boolean,System.UIntPtr)
-M:AppKit.NSLayoutManager.SetTemporaryAttributes(Foundation.NSDictionary,Foundation.NSRange)
-M:AppKit.NSLayoutManager.SetTextContainer(AppKit.NSTextContainer,Foundation.NSRange)
-M:AppKit.NSLayoutManager.ShowAttachmentCell(AppKit.NSCell,CoreGraphics.CGRect,System.UIntPtr)
M:AppKit.NSLayoutManager.ShowGlyphs(System.Int16[],CoreGraphics.CGPoint[],System.IntPtr,AppKit.NSFont,CoreGraphics.CGAffineTransform,Foundation.NSDictionary,CoreGraphics.CGContext)
-M:AppKit.NSLayoutManager.ShowGlyphs(System.IntPtr,System.IntPtr,System.IntPtr,AppKit.NSFont,CoreGraphics.CGAffineTransform,Foundation.NSDictionary,CoreGraphics.CGContext)
-M:AppKit.NSLayoutManager.ShowGlyphs(System.IntPtr,System.IntPtr,System.UIntPtr,AppKit.NSFont,CoreGraphics.CGAffineTransform,Foundation.NSDictionary,CoreGraphics.CGContext)
-M:AppKit.NSLayoutManager.Strikethrough(Foundation.NSRange,Foundation.NSUnderlineStyle,CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGPoint)
-M:AppKit.NSLayoutManager.TextContainerChangedGeometry(AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.TextContainerChangedTextView(AppKit.NSTextContainer)
-M:AppKit.NSLayoutManager.Underline(Foundation.NSRange,Foundation.NSUnderlineStyle,CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGPoint)
M:AppKit.NSLayoutManagerDelegate_Extensions.DidChangeGeometry(AppKit.INSLayoutManagerDelegate,AppKit.NSLayoutManager,AppKit.NSTextContainer,CoreGraphics.CGSize)
M:AppKit.NSLayoutManagerDelegate_Extensions.DidCompleteLayout(AppKit.INSLayoutManagerDelegate,AppKit.NSLayoutManager,AppKit.NSTextContainer,System.Boolean)
M:AppKit.NSLayoutManagerDelegate_Extensions.DidInvalidatedLayout(AppKit.INSLayoutManagerDelegate,AppKit.NSLayoutManager)
@@ -25519,169 +20622,15 @@ M:AppKit.NSLayoutManagerDelegate_Extensions.ShouldGenerateGlyphs(AppKit.INSLayou
M:AppKit.NSLayoutManagerDelegate_Extensions.ShouldSetLineFragmentRect(AppKit.INSLayoutManagerDelegate,AppKit.NSLayoutManager,CoreGraphics.CGRect@,CoreGraphics.CGRect@,System.Runtime.InteropServices.NFloat@,AppKit.NSTextContainer,Foundation.NSRange)
M:AppKit.NSLayoutManagerDelegate_Extensions.ShouldUseAction(AppKit.INSLayoutManagerDelegate,AppKit.NSLayoutManager,AppKit.NSControlCharacterAction,System.UIntPtr)
M:AppKit.NSLayoutManagerDelegate_Extensions.ShouldUseTemporaryAttributes(AppKit.INSLayoutManagerDelegate,AppKit.NSLayoutManager,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Boolean,System.UIntPtr,Foundation.NSRange@)
-M:AppKit.NSLayoutManagerDelegate.DidChangeGeometry(AppKit.NSLayoutManager,AppKit.NSTextContainer,CoreGraphics.CGSize)
-M:AppKit.NSLayoutManagerDelegate.DidCompleteLayout(AppKit.NSLayoutManager,AppKit.NSTextContainer,System.Boolean)
-M:AppKit.NSLayoutManagerDelegate.DidInvalidatedLayout(AppKit.NSLayoutManager)
-M:AppKit.NSLayoutManagerDelegate.GetBoundingBox(AppKit.NSLayoutManager,System.UIntPtr,AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr)
-M:AppKit.NSLayoutManagerDelegate.GetLineSpacingAfterGlyph(AppKit.NSLayoutManager,System.UIntPtr,CoreGraphics.CGRect)
-M:AppKit.NSLayoutManagerDelegate.GetParagraphSpacingAfterGlyph(AppKit.NSLayoutManager,System.UIntPtr,CoreGraphics.CGRect)
-M:AppKit.NSLayoutManagerDelegate.GetParagraphSpacingBeforeGlyph(AppKit.NSLayoutManager,System.UIntPtr,CoreGraphics.CGRect)
-M:AppKit.NSLayoutManagerDelegate.ShouldBreakLineByHyphenatingBeforeCharacter(AppKit.NSLayoutManager,System.UIntPtr)
-M:AppKit.NSLayoutManagerDelegate.ShouldBreakLineByWordBeforeCharacter(AppKit.NSLayoutManager,System.UIntPtr)
-M:AppKit.NSLayoutManagerDelegate.ShouldGenerateGlyphs(AppKit.NSLayoutManager,System.IntPtr,System.IntPtr,System.IntPtr,AppKit.NSFont,Foundation.NSRange)
-M:AppKit.NSLayoutManagerDelegate.ShouldSetLineFragmentRect(AppKit.NSLayoutManager,CoreGraphics.CGRect@,CoreGraphics.CGRect@,System.Runtime.InteropServices.NFloat@,AppKit.NSTextContainer,Foundation.NSRange)
-M:AppKit.NSLayoutManagerDelegate.ShouldUseAction(AppKit.NSLayoutManager,AppKit.NSControlCharacterAction,System.UIntPtr)
-M:AppKit.NSLayoutManagerDelegate.ShouldUseTemporaryAttributes(AppKit.NSLayoutManager,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Boolean,System.UIntPtr,Foundation.NSRange@)
-M:AppKit.NSLayoutXAxisAnchor.ConstraintEqualToSystemSpacingAfterAnchor(AppKit.NSLayoutXAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutXAxisAnchor.ConstraintGreaterThanOrEqualToSystemSpacingAfterAnchor(AppKit.NSLayoutXAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutXAxisAnchor.ConstraintLessThanOrEqualToSystemSpacingAfterAnchor(AppKit.NSLayoutXAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutXAxisAnchor.CreateAnchorWithOffset(AppKit.NSLayoutXAxisAnchor)
-M:AppKit.NSLayoutYAxisAnchor.ConstraintEqualToSystemSpacingBelowAnchor(AppKit.NSLayoutYAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutYAxisAnchor.ConstraintGreaterThanOrEqualToSystemSpacingBelowAnchor(AppKit.NSLayoutYAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutYAxisAnchor.ConstraintLessThanOrEqualToSystemSpacingBelowAnchor(AppKit.NSLayoutYAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSLayoutYAxisAnchor.CreateAnchorWithOffset(AppKit.NSLayoutYAxisAnchor)
-M:AppKit.NSLevelIndicator.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSLevelIndicator.RectOfTickMark(System.IntPtr)
-M:AppKit.NSLevelIndicator.TickMarkValueAt(System.IntPtr)
-M:AppKit.NSLevelIndicatorCell.#ctor(AppKit.NSImage)
-M:AppKit.NSLevelIndicatorCell.#ctor(AppKit.NSLevelIndicatorStyle)
-M:AppKit.NSLevelIndicatorCell.#ctor(System.String)
-M:AppKit.NSLevelIndicatorCell.RectOfTickMarkAt(System.IntPtr)
-M:AppKit.NSLevelIndicatorCell.SetImage(AppKit.NSImage)
-M:AppKit.NSLevelIndicatorCell.TickMarkValueAt(System.IntPtr)
-M:AppKit.NSMagnificationGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:AppKit.NSMagnificationGestureRecognizer.#ctor(System.Action)
M:AppKit.NSMagnificationGestureRecognizer.#ctor(System.Action{AppKit.NSMagnificationGestureRecognizer})
-M:AppKit.NSMatrix.#ctor(CoreGraphics.CGRect,AppKit.NSMatrixMode,AppKit.NSCell,System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.#ctor(CoreGraphics.CGRect,AppKit.NSMatrixMode,ObjCRuntime.Class,System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSMatrix.AcceptsFirstMouse(AppKit.NSEvent)
M:AppKit.NSMatrix.add_DoubleClick(System.EventHandler)
-M:AppKit.NSMatrix.AddColumn
-M:AppKit.NSMatrix.AddColumnWithCells(AppKit.NSCell[])
-M:AppKit.NSMatrix.AddRow
-M:AppKit.NSMatrix.AddRowWithCells(AppKit.NSCell[])
-M:AppKit.NSMatrix.CellFrameAtRowColumn(System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.CellWithTag(System.IntPtr)
-M:AppKit.NSMatrix.Changed(Foundation.NSNotification)
-M:AppKit.NSMatrix.DeselectAllCells
-M:AppKit.NSMatrix.DeselectSelectedCell
-M:AppKit.NSMatrix.DidBeginEditing(Foundation.NSNotification)
-M:AppKit.NSMatrix.DidEndEditing(Foundation.NSNotification)
M:AppKit.NSMatrix.Dispose(System.Boolean)
-M:AppKit.NSMatrix.DrawCellAtRowColumn(System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.GetRowColumn(System.IntPtr@,System.IntPtr@,AppKit.NSCell)
-M:AppKit.NSMatrix.GetRowColumnForPoint(System.IntPtr@,System.IntPtr@,CoreGraphics.CGPoint)
-M:AppKit.NSMatrix.GetRowsAndColumnsCount(System.IntPtr@,System.IntPtr@)
-M:AppKit.NSMatrix.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr)
-M:AppKit.NSMatrix.HighlightCell(System.Boolean,System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.InsertColumn(System.IntPtr,AppKit.NSCell[])
-M:AppKit.NSMatrix.InsertColumn(System.IntPtr)
-M:AppKit.NSMatrix.InsertRow(System.IntPtr,AppKit.NSCell[])
-M:AppKit.NSMatrix.InsertRow(System.IntPtr)
-M:AppKit.NSMatrix.MakeCell(System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.MouseDown(AppKit.NSEvent)
-M:AppKit.NSMatrix.MouseDownFlags
-M:AppKit.NSMatrix.PerformKeyEquivalent(AppKit.NSEvent)
-M:AppKit.NSMatrix.PutCell(AppKit.NSCell,System.IntPtr,System.IntPtr)
M:AppKit.NSMatrix.remove_DoubleClick(System.EventHandler)
-M:AppKit.NSMatrix.RemoveColumn(System.IntPtr)
-M:AppKit.NSMatrix.RemoveRow(System.IntPtr)
-M:AppKit.NSMatrix.RenewRowsColumns(System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.ResetCursorRects
-M:AppKit.NSMatrix.ScrollCellToVisible(System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.SelectAll(Foundation.NSObject)
-M:AppKit.NSMatrix.SelectCell(System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.SelectCellWithTag(System.IntPtr)
-M:AppKit.NSMatrix.SelectText(Foundation.NSObject)
-M:AppKit.NSMatrix.SelectTextAtRowColumn(System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.SendAction
-M:AppKit.NSMatrix.SendAction(ObjCRuntime.Selector,Foundation.NSObject,System.Boolean)
-M:AppKit.NSMatrix.SendDoubleAction
-M:AppKit.NSMatrix.SetScrollable(System.Boolean)
-M:AppKit.NSMatrix.SetSelection(System.IntPtr,System.IntPtr,System.IntPtr,System.Boolean)
-M:AppKit.NSMatrix.SetState(System.IntPtr,System.IntPtr,System.IntPtr)
-M:AppKit.NSMatrix.SetToolTipForCell(System.String,AppKit.NSCell)
-M:AppKit.NSMatrix.SetValidateSize(System.Boolean)
-M:AppKit.NSMatrix.ShouldBeginEditing(AppKit.NSText)
-M:AppKit.NSMatrix.ShouldEndEditing(AppKit.NSText)
-M:AppKit.NSMatrix.SizeToCells
-M:AppKit.NSMatrix.Sort(ObjCRuntime.Selector)
-M:AppKit.NSMatrix.ToolTipForCell(AppKit.NSCell)
-M:AppKit.NSMatrix.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.NSMatrixDelegate.ControlTextDidBeginEditing(Foundation.NSNotification)
-M:AppKit.NSMatrixDelegate.ControlTextDidChange(Foundation.NSNotification)
-M:AppKit.NSMatrixDelegate.ControlTextDidEndEditing(Foundation.NSNotification)
-M:AppKit.NSMatrixDelegate.DidFailToFormatString(AppKit.NSControl,System.String,System.String)
-M:AppKit.NSMatrixDelegate.DidFailToValidatePartialString(AppKit.NSControl,System.String,System.String)
-M:AppKit.NSMatrixDelegate.DoCommandBySelector(AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector)
-M:AppKit.NSMatrixDelegate.GetCompletions(AppKit.NSControl,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-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(System.String)
-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.AddItem(AppKit.NSMenuItem)
-M:AppKit.NSMenu.AddItem(System.String,ObjCRuntime.Selector,System.String)
-M:AppKit.NSMenu.CancelTracking
-M:AppKit.NSMenu.CancelTrackingWithoutAnimation
M:AppKit.NSMenu.Copy(Foundation.NSZone)
-M:AppKit.NSMenu.CreateElement(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSString,Foundation.NSObject)
-M:AppKit.NSMenu.CreatePaletteMenu(AppKit.NSColor[],System.String[],AppKit.NSImage,System.Action{AppKit.NSMenu})
-M:AppKit.NSMenu.CreatePaletteMenu(AppKit.NSColor[],System.String[],System.Action{AppKit.NSMenu})
M:AppKit.NSMenu.Dispose(System.Boolean)
M:AppKit.NSMenu.EncodeTo(Foundation.NSCoder)
-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.HelpRequested(AppKit.NSEvent)
-M:AppKit.NSMenu.IndexOf(AppKit.NSMenuItem)
-M:AppKit.NSMenu.IndexOf(System.IntPtr)
-M:AppKit.NSMenu.IndexOf(System.String)
-M:AppKit.NSMenu.IndexOfItem(AppKit.NSMenu)
-M:AppKit.NSMenu.IndexOfItem(Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSMenu.IndexOfItem(Foundation.NSObject)
-M:AppKit.NSMenu.InsertItem(AppKit.NSMenuItem,System.IntPtr)
-M:AppKit.NSMenu.InsertItem(System.String,ObjCRuntime.Selector,System.String,System.IntPtr)
M:AppKit.NSMenu.InsertItem(System.String,System.String,System.IntPtr)
-M:AppKit.NSMenu.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector)
-M:AppKit.NSMenu.ItemAt(System.IntPtr)
-M:AppKit.NSMenu.ItemChanged(AppKit.NSMenuItem)
-M:AppKit.NSMenu.ItemWithTag(System.IntPtr)
-M:AppKit.NSMenu.ItemWithTitle(System.String)
-M:AppKit.NSMenu.PerformActionForItem(System.IntPtr)
-M:AppKit.NSMenu.PerformKeyEquivalent(AppKit.NSEvent)
-M:AppKit.NSMenu.PopUpContextMenu(AppKit.NSMenu,AppKit.NSEvent,AppKit.NSView,AppKit.NSFont)
-M:AppKit.NSMenu.PopUpContextMenu(AppKit.NSMenu,AppKit.NSEvent,AppKit.NSView)
-M:AppKit.NSMenu.PopUpMenu(AppKit.NSMenuItem,CoreGraphics.CGPoint,AppKit.NSView)
-M:AppKit.NSMenu.PropertiesToUpdate
-M:AppKit.NSMenu.RemoveAllItems
-M:AppKit.NSMenu.RemoveItem(AppKit.NSMenuItem)
-M:AppKit.NSMenu.RemoveItemAt(System.IntPtr)
-M:AppKit.NSMenu.SetSubmenu(AppKit.NSMenu,AppKit.NSMenuItem)
-M:AppKit.NSMenu.Update
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)
@@ -25690,77 +20639,19 @@ M:AppKit.NSMenuDelegate_Extensions.MenuWillHighlightItem(AppKit.INSMenuDelegate,
M:AppKit.NSMenuDelegate_Extensions.MenuWillOpen(AppKit.INSMenuDelegate,AppKit.NSMenu)
M:AppKit.NSMenuDelegate_Extensions.NeedsUpdate(AppKit.INSMenuDelegate,AppKit.NSMenu)
M:AppKit.NSMenuDelegate_Extensions.UpdateItem(AppKit.INSMenuDelegate,AppKit.NSMenu,AppKit.NSMenuItem,System.IntPtr,System.Boolean)
-M:AppKit.NSMenuDelegate.ConfinementRectForMenu(AppKit.NSMenu,AppKit.NSScreen)
-M:AppKit.NSMenuDelegate.HasKeyEquivalentForEvent(AppKit.NSMenu,AppKit.NSEvent,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSMenuDelegate.MenuDidClose(AppKit.NSMenu)
-M:AppKit.NSMenuDelegate.MenuItemCount(AppKit.NSMenu)
-M:AppKit.NSMenuDelegate.MenuWillHighlightItem(AppKit.NSMenu,AppKit.NSMenuItem)
-M:AppKit.NSMenuDelegate.MenuWillOpen(AppKit.NSMenu)
-M:AppKit.NSMenuDelegate.NeedsUpdate(AppKit.NSMenu)
-M:AppKit.NSMenuDelegate.UpdateItem(AppKit.NSMenu,AppKit.NSMenuItem,System.IntPtr,System.Boolean)
-M:AppKit.NSMenuItem.#ctor(System.String,ObjCRuntime.Selector,System.String)
M:AppKit.NSMenuItem.#ctor(System.String,System.EventHandler)
M:AppKit.NSMenuItem.#ctor(System.String,System.String,System.EventHandler,System.Func{AppKit.NSMenuItem,System.Boolean})
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.CreateSectionHeader(System.String)
M:AppKit.NSMenuItem.Dispose(System.Boolean)
M:AppKit.NSMenuItem.EncodeTo(Foundation.NSCoder)
-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.remove_Activated(System.EventHandler)
-M:AppKit.NSMenuItem.SetTitleWithMnemonic(System.String)
-M:AppKit.NSMenuItemBadge.#ctor(System.IntPtr,AppKit.NSMenuItemBadgeType)
-M:AppKit.NSMenuItemBadge.#ctor(System.IntPtr)
-M:AppKit.NSMenuItemBadge.#ctor(System.String)
M:AppKit.NSMenuItemBadge.Copy(Foundation.NSZone)
-M:AppKit.NSMenuItemBadge.CreateAlerts(System.IntPtr)
-M:AppKit.NSMenuItemBadge.CreateNewItems(System.IntPtr)
-M:AppKit.NSMenuItemBadge.CreateUpdates(System.IntPtr)
-M:AppKit.NSMenuItemCell.#ctor(AppKit.NSImage)
-M:AppKit.NSMenuItemCell.#ctor(System.String)
-M:AppKit.NSMenuItemCell.CalcSize
-M:AppKit.NSMenuItemCell.DrawBorderAndBackground(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSMenuItemCell.DrawImage(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSMenuItemCell.DrawKeyEquivalent(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSMenuItemCell.DrawSeparatorItem(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSMenuItemCell.DrawStateImage(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSMenuItemCell.DrawTitle(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSMenuItemCell.KeyEquivalentRectForBounds(CoreGraphics.CGRect)
-M:AppKit.NSMenuItemCell.StateImageRectForBounds(CoreGraphics.CGRect)
-M:AppKit.NSMenuItemCell.TitleRectForBounds(CoreGraphics.CGRect)
M:AppKit.NSMenuItemEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSMenuItemIndexEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSMenuToolbarItem.#ctor(System.String)
M:AppKit.NSMutableAttributedStringAppKitAddons.ApplyFontTraits(Foundation.NSMutableAttributedString,AppKit.NSFontTraitMask,Foundation.NSRange)
M:AppKit.NSMutableAttributedStringAppKitAddons.FixAttachmentAttributeInRange(Foundation.NSMutableAttributedString,Foundation.NSRange)
M:AppKit.NSMutableAttributedStringAppKitAddons.FixFontAttributeInRange(Foundation.NSMutableAttributedString,Foundation.NSRange)
@@ -25779,80 +20670,22 @@ M:AppKit.NSMutableAttributedStringAppKitAddons.SubscriptRange(Foundation.NSMutab
M:AppKit.NSMutableAttributedStringAppKitAddons.SuperscriptRange(Foundation.NSMutableAttributedString,Foundation.NSRange)
M:AppKit.NSMutableAttributedStringAppKitAddons.UnscriptRange(Foundation.NSMutableAttributedString,Foundation.NSRange)
M:AppKit.NSMutableAttributedStringAppKitAddons.UpdateAttachmentsFromPath(Foundation.NSMutableAttributedString,System.String)
-M:AppKit.NSMutableFontCollection.AddQueryForDescriptors(AppKit.NSFontDescriptor[])
-M:AppKit.NSMutableFontCollection.FromDescriptors(AppKit.NSFontDescriptor[])
-M:AppKit.NSMutableFontCollection.FromLocale(Foundation.NSLocale)
-M:AppKit.NSMutableFontCollection.FromName(System.String,AppKit.NSFontCollectionVisibility)
-M:AppKit.NSMutableFontCollection.FromName(System.String)
-M:AppKit.NSMutableFontCollection.GetAllAvailableFonts
-M:AppKit.NSMutableFontCollection.RemoveQueryForDescriptors(AppKit.NSFontDescriptor[])
M:AppKit.NSMutableFontCollection.SetExclusionDescriptors(AppKit.NSFontDescriptor[])
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(Foundation.NSData,Foundation.NSBundle)
-M:AppKit.NSNib.#ctor(Foundation.NSUrl)
-M:AppKit.NSNib.#ctor(System.String,Foundation.NSBundle)
M:AppKit.NSNib.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSNib.InstantiateNib(Foundation.NSDictionary)
-M:AppKit.NSNib.InstantiateNibWithOwner(Foundation.NSObject,Foundation.NSArray@)
M:AppKit.NSNibConnector.Dispose(System.Boolean)
M:AppKit.NSNibConnector.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSNibConnector.EstablishConnection
-M:AppKit.NSNibConnector.Replace(Foundation.NSObject,Foundation.NSObject)
-M:AppKit.NSNibControlConnector.EstablishConnection
-M:AppKit.NSNibOutletConnector.EstablishConnection
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)
M:AppKit.NSObject_NSToolbarItemValidation.ValidateToolbarItem(Foundation.NSObject,AppKit.NSToolbarItem)
-M:AppKit.NSObjectController.#ctor(Foundation.NSObject)
-M:AppKit.NSObjectController.Add(Foundation.NSObject)
-M:AppKit.NSObjectController.AddObject(Foundation.NSObject)
-M:AppKit.NSObjectController.Fetch(Foundation.NSObject)
-M:AppKit.NSObjectController.PrepareContent
-M:AppKit.NSObjectController.Remove(Foundation.NSObject)
-M:AppKit.NSObjectController.RemoveObject(Foundation.NSObject)
-M:AppKit.NSObjectController.ValidateUserInterfaceItem(Foundation.NSObject)
-M:AppKit.NSOpenGLContext.#ctor(AppKit.NSOpenGLPixelFormat,AppKit.NSOpenGLContext)
-M:AppKit.NSOpenGLContext.ClearCurrentContext
-M:AppKit.NSOpenGLContext.ClearDrawable
-M:AppKit.NSOpenGLContext.CopyAttributes(AppKit.NSOpenGLContext,System.UInt32)
-M:AppKit.NSOpenGLContext.CreateTexture(System.Int32,AppKit.NSView,System.Int32)
-M:AppKit.NSOpenGLContext.FlushBuffer
-M:AppKit.NSOpenGLContext.GetValues(System.IntPtr,AppKit.NSOpenGLContextParameter)
-M:AppKit.NSOpenGLContext.MakeCurrentContext
-M:AppKit.NSOpenGLContext.SetFullScreen
-M:AppKit.NSOpenGLContext.SetOffScreen(System.IntPtr,System.Int32,System.Int32,System.Int32)
-M:AppKit.NSOpenGLContext.SetPixelBuffer(AppKit.NSOpenGLPixelBuffer,AppKit.NSGLTextureCubeMap,System.Int32,System.Int32)
-M:AppKit.NSOpenGLContext.SetTextureImage(AppKit.NSOpenGLPixelBuffer,AppKit.NSGLColorBuffer)
-M:AppKit.NSOpenGLContext.SetValues(System.IntPtr,AppKit.NSOpenGLContextParameter)
-M:AppKit.NSOpenGLContext.Update
-M:AppKit.NSOpenGLLayer.CanDraw(AppKit.NSOpenGLContext,AppKit.NSOpenGLPixelFormat,System.Double,CoreVideo.CVTimeStamp@)
M:AppKit.NSOpenGLLayer.Dispose(System.Boolean)
-M:AppKit.NSOpenGLLayer.Draw(AppKit.NSOpenGLContext,AppKit.NSOpenGLPixelFormat,System.Double,CoreVideo.CVTimeStamp@)
-M:AppKit.NSOpenGLLayer.GetOpenGLContext(AppKit.NSOpenGLPixelFormat)
-M:AppKit.NSOpenGLLayer.GetOpenGLPixelFormat(System.UInt32)
-M:AppKit.NSOpenGLPixelBuffer.#ctor(AppKit.NSGLTextureTarget,AppKit.NSGLFormat,System.Int32,System.Int32,System.Int32)
M:AppKit.NSOpenGLPixelFormat.#ctor(AppKit.NSOpenGLPixelFormatAttribute[])
-M:AppKit.NSOpenGLPixelFormat.#ctor(Foundation.NSData)
M:AppKit.NSOpenGLPixelFormat.#ctor(System.Object[])
M:AppKit.NSOpenGLPixelFormat.#ctor(System.UInt32[])
M:AppKit.NSOpenGLPixelFormat.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSOpenGLPixelFormat.GetValue(System.Int32@,AppKit.NSOpenGLPixelFormatAttribute,System.Int32)
-M:AppKit.NSOpenGLView.#ctor(CoreGraphics.CGRect,AppKit.NSOpenGLPixelFormat)
-M:AppKit.NSOpenGLView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSOpenGLView.ClearGLContext
-M:AppKit.NSOpenGLView.PrepareOpenGL
-M:AppKit.NSOpenGLView.Reshape
-M:AppKit.NSOpenGLView.Update
-M:AppKit.NSOpenPanel.Begin(System.String,System.String,System.String[],Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSOpenPanel.BeginSheet(System.String,System.String,System.String[],AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:AppKit.NSOpenPanel.BeginSheet(System.String,System.String,System.String[],AppKit.NSWindow,System.Action)
M:AppKit.NSOpenPanel.BeginSheet(System.String,System.String,System.String[],AppKit.NSWindow)
-M:AppKit.NSOpenPanel.RunModal(System.String,System.String,System.String[])
-M:AppKit.NSOpenPanel.RunModal(System.String[])
M:AppKit.NSOpenSaveExpandingEventArgs.#ctor(System.Boolean)
M:AppKit.NSOpenSaveFilenameEventArgs.#ctor(System.String)
M:AppKit.NSOpenSavePanelDelegate_Extensions.CompareFilenames(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,System.String,System.String,System.Boolean)
@@ -25867,47 +20700,9 @@ M:AppKit.NSOpenSavePanelDelegate_Extensions.ShouldShowFilename(AppKit.INSOpenSav
M:AppKit.NSOpenSavePanelDelegate_Extensions.UserEnteredFilename(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,System.String,System.Boolean)
M:AppKit.NSOpenSavePanelDelegate_Extensions.ValidateUrl(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,Foundation.NSUrl,Foundation.NSError@)
M:AppKit.NSOpenSavePanelDelegate_Extensions.WillExpand(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,System.Boolean)
-M:AppKit.NSOpenSavePanelDelegate.CompareFilenames(AppKit.NSSavePanel,System.String,System.String,System.Boolean)
-M:AppKit.NSOpenSavePanelDelegate.DidChangeToDirectory(AppKit.NSSavePanel,Foundation.NSUrl)
-M:AppKit.NSOpenSavePanelDelegate.DidSelectType(AppKit.NSSavePanel,UniformTypeIdentifiers.UTType)
-M:AppKit.NSOpenSavePanelDelegate.DirectoryDidChange(AppKit.NSSavePanel,System.String)
-M:AppKit.NSOpenSavePanelDelegate.GetDisplayName(AppKit.NSSavePanel,UniformTypeIdentifiers.UTType)
-M:AppKit.NSOpenSavePanelDelegate.IsValidFilename(AppKit.NSSavePanel,System.String)
-M:AppKit.NSOpenSavePanelDelegate.SelectionDidChange(AppKit.NSSavePanel)
-M:AppKit.NSOpenSavePanelDelegate.ShouldEnableUrl(AppKit.NSSavePanel,Foundation.NSUrl)
-M:AppKit.NSOpenSavePanelDelegate.ShouldShowFilename(AppKit.NSSavePanel,System.String)
-M:AppKit.NSOpenSavePanelDelegate.UserEnteredFilename(AppKit.NSSavePanel,System.String,System.Boolean)
-M:AppKit.NSOpenSavePanelDelegate.ValidateUrl(AppKit.NSSavePanel,Foundation.NSUrl,Foundation.NSError@)
-M:AppKit.NSOpenSavePanelDelegate.WillExpand(AppKit.NSSavePanel,System.Boolean)
M:AppKit.NSOpenSavePanelUrlEventArgs.#ctor(Foundation.NSUrl)
M:AppKit.NSopenSavePanelUTTypeEventArgs.#ctor(UniformTypeIdentifiers.UTType)
-M:AppKit.NSOutlineView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSOutlineView.CollapseItem(Foundation.NSObject,System.Boolean)
-M:AppKit.NSOutlineView.CollapseItem(Foundation.NSObject)
M:AppKit.NSOutlineView.Dispose(System.Boolean)
-M:AppKit.NSOutlineView.ExpandItem(Foundation.NSObject,System.Boolean)
-M:AppKit.NSOutlineView.ExpandItem(Foundation.NSObject)
-M:AppKit.NSOutlineView.FrameOfOutlineCellAtRow(System.IntPtr)
-M:AppKit.NSOutlineView.GetChild(System.IntPtr,Foundation.NSObject)
-M:AppKit.NSOutlineView.GetChildIndex(Foundation.NSObject)
-M:AppKit.NSOutlineView.GetParent(Foundation.NSObject)
-M:AppKit.NSOutlineView.InsertItems(Foundation.NSIndexSet,Foundation.NSObject,AppKit.NSTableViewAnimation)
-M:AppKit.NSOutlineView.InsertRows(Foundation.NSIndexSet,AppKit.NSTableViewAnimation)
-M:AppKit.NSOutlineView.IsExpandable(Foundation.NSObject)
-M:AppKit.NSOutlineView.IsItemExpanded(Foundation.NSObject)
-M:AppKit.NSOutlineView.ItemAtRow(System.IntPtr)
-M:AppKit.NSOutlineView.LevelForItem(Foundation.NSObject)
-M:AppKit.NSOutlineView.LevelForRow(System.IntPtr)
-M:AppKit.NSOutlineView.MoveItem(System.IntPtr,Foundation.NSObject,System.IntPtr,Foundation.NSObject)
-M:AppKit.NSOutlineView.MoveRow(System.IntPtr,System.IntPtr)
-M:AppKit.NSOutlineView.NumberOfChildren(Foundation.NSObject)
-M:AppKit.NSOutlineView.ReloadItem(Foundation.NSObject,System.Boolean)
-M:AppKit.NSOutlineView.ReloadItem(Foundation.NSObject)
-M:AppKit.NSOutlineView.RemoveItems(Foundation.NSIndexSet,Foundation.NSObject,AppKit.NSTableViewAnimation)
-M:AppKit.NSOutlineView.RemoveRows(Foundation.NSIndexSet,AppKit.NSTableViewAnimation)
-M:AppKit.NSOutlineView.RowForItem(Foundation.NSObject)
-M:AppKit.NSOutlineView.SetDropItem(Foundation.NSObject,System.IntPtr)
-M:AppKit.NSOutlineView.ShouldCollapseAutoExpandedItems(System.Boolean)
M:AppKit.NSOutlineViewDataSource_Extensions.AcceptDrop(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,AppKit.INSDraggingInfo,Foundation.NSObject,System.IntPtr)
M:AppKit.NSOutlineViewDataSource_Extensions.DraggingSessionEnded(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
M:AppKit.NSOutlineViewDataSource_Extensions.DraggingSessionWillBegin(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSArray)
@@ -25924,22 +20719,6 @@ M:AppKit.NSOutlineViewDataSource_Extensions.SetObjectValue(AppKit.INSOutlineView
M:AppKit.NSOutlineViewDataSource_Extensions.SortDescriptorsChanged(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSSortDescriptor[])
M:AppKit.NSOutlineViewDataSource_Extensions.UpdateDraggingItemsForDrag(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,AppKit.INSDraggingInfo)
M:AppKit.NSOutlineViewDataSource_Extensions.ValidateDrop(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,AppKit.INSDraggingInfo,Foundation.NSObject,System.IntPtr)
-M:AppKit.NSOutlineViewDataSource.AcceptDrop(AppKit.NSOutlineView,AppKit.INSDraggingInfo,Foundation.NSObject,System.IntPtr)
-M:AppKit.NSOutlineViewDataSource.DraggingSessionEnded(AppKit.NSOutlineView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.NSOutlineViewDataSource.DraggingSessionWillBegin(AppKit.NSOutlineView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSArray)
-M:AppKit.NSOutlineViewDataSource.FilesDropped(AppKit.NSOutlineView,Foundation.NSUrl,Foundation.NSArray)
-M:AppKit.NSOutlineViewDataSource.GetChild(AppKit.NSOutlineView,System.IntPtr,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource.GetChildrenCount(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource.GetObjectValue(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource.ItemExpandable(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource.ItemForPersistentObject(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource.OutlineViewwriteItemstoPasteboard(AppKit.NSOutlineView,Foundation.NSArray,AppKit.NSPasteboard)
-M:AppKit.NSOutlineViewDataSource.PasteboardWriterForItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource.PersistentObjectForItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource.SetObjectValue(AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource.SortDescriptorsChanged(AppKit.NSOutlineView,Foundation.NSSortDescriptor[])
-M:AppKit.NSOutlineViewDataSource.UpdateDraggingItemsForDrag(AppKit.NSOutlineView,AppKit.INSDraggingInfo)
-M:AppKit.NSOutlineViewDataSource.ValidateDrop(AppKit.NSOutlineView,AppKit.INSDraggingInfo,Foundation.NSObject,System.IntPtr)
M:AppKit.NSOutlineViewDelegate_Extensions.ColumnDidMove(AppKit.INSOutlineViewDelegate,Foundation.NSNotification)
M:AppKit.NSOutlineViewDelegate_Extensions.ColumnDidResize(AppKit.INSOutlineViewDelegate,Foundation.NSNotification)
M:AppKit.NSOutlineViewDelegate_Extensions.DidAddRowView(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableRowView,System.IntPtr)
@@ -25979,59 +20758,12 @@ M:AppKit.NSOutlineViewDelegate_Extensions.UserCanChangeVisibility(AppKit.INSOutl
M:AppKit.NSOutlineViewDelegate_Extensions.UserDidChangeVisibility(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn[])
M:AppKit.NSOutlineViewDelegate_Extensions.WillDisplayCell(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
M:AppKit.NSOutlineViewDelegate_Extensions.WillDisplayOutlineCell(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ColumnDidMove(Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate.ColumnDidResize(Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate.DidAddRowView(AppKit.NSOutlineView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSOutlineViewDelegate.DidClickTableColumn(AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.NSOutlineViewDelegate.DidDragTableColumn(AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.NSOutlineViewDelegate.DidRemoveRowView(AppKit.NSOutlineView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSOutlineViewDelegate.GetCell(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.GetNextTypeSelectMatch(AppKit.NSOutlineView,Foundation.NSObject,Foundation.NSObject,System.String)
-M:AppKit.NSOutlineViewDelegate.GetRowHeight(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.GetSelectionIndexes(AppKit.NSOutlineView,Foundation.NSIndexSet)
-M:AppKit.NSOutlineViewDelegate.GetSelectString(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.GetSizeToFitColumnWidth(AppKit.NSOutlineView,System.IntPtr)
-M:AppKit.NSOutlineViewDelegate.GetTintConfiguration(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.GetView(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.IsGroupItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ItemDidCollapse(Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate.ItemDidExpand(Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate.ItemWillCollapse(Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate.ItemWillExpand(Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate.MouseDown(AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.NSOutlineViewDelegate.RowViewForItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.SelectionDidChange(Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate.SelectionIsChanging(Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate.SelectionShouldChange(AppKit.NSOutlineView)
-M:AppKit.NSOutlineViewDelegate.ShouldCollapseItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ShouldEditTableColumn(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ShouldExpandItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ShouldReorder(AppKit.NSOutlineView,System.IntPtr,System.IntPtr)
-M:AppKit.NSOutlineViewDelegate.ShouldSelectItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ShouldSelectTableColumn(AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.NSOutlineViewDelegate.ShouldShowCellExpansion(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ShouldShowOutlineCell(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ShouldTrackCell(AppKit.NSOutlineView,AppKit.NSCell,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.ShouldTypeSelect(AppKit.NSOutlineView,AppKit.NSEvent,System.String)
-M:AppKit.NSOutlineViewDelegate.ToolTipForCell(AppKit.NSOutlineView,AppKit.NSCell,CoreGraphics.CGRect@,AppKit.NSTableColumn,Foundation.NSObject,CoreGraphics.CGPoint)
-M:AppKit.NSOutlineViewDelegate.UserCanChangeVisibility(AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.NSOutlineViewDelegate.UserDidChangeVisibility(AppKit.NSOutlineView,AppKit.NSTableColumn[])
-M:AppKit.NSOutlineViewDelegate.WillDisplayCell(AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate.WillDisplayOutlineCell(AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
M:AppKit.NSOutlineViewItemEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSPageController.#ctor(System.String,Foundation.NSBundle)
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.CompleteTransition
-M:AppKit.NSPageController.DefaultAnimationFor(Foundation.NSString)
M:AppKit.NSPageController.Dispose(System.Boolean)
-M:AppKit.NSPageController.NavigateBack(Foundation.NSObject)
-M:AppKit.NSPageController.NavigateForward(Foundation.NSObject)
-M:AppKit.NSPageController.NavigateForwardTo(Foundation.NSObject)
-M:AppKit.NSPageController.NavigateTo(Foundation.NSObject)
M:AppKit.NSPageController.remove_DidEndLiveTransition(System.EventHandler)
M:AppKit.NSPageController.remove_DidTransition(System.EventHandler{AppKit.NSPageControllerTransitionEventArgs})
M:AppKit.NSPageController.remove_PrepareViewController(System.EventHandler{AppKit.NSPageControllerPrepareViewControllerEventArgs})
@@ -26043,155 +20775,44 @@ M:AppKit.NSPageControllerDelegate_Extensions.GetIdentifier(AppKit.INSPageControl
M:AppKit.NSPageControllerDelegate_Extensions.GetViewController(AppKit.INSPageControllerDelegate,AppKit.NSPageController,System.String)
M:AppKit.NSPageControllerDelegate_Extensions.PrepareViewController(AppKit.INSPageControllerDelegate,AppKit.NSPageController,AppKit.NSViewController,Foundation.NSObject)
M:AppKit.NSPageControllerDelegate_Extensions.WillStartLiveTransition(AppKit.INSPageControllerDelegate,AppKit.NSPageController)
-M:AppKit.NSPageControllerDelegate.DidEndLiveTransition(AppKit.NSPageController)
-M:AppKit.NSPageControllerDelegate.DidTransition(AppKit.NSPageController,Foundation.NSObject)
-M:AppKit.NSPageControllerDelegate.GetFrame(AppKit.NSPageController,Foundation.NSObject)
-M:AppKit.NSPageControllerDelegate.GetIdentifier(AppKit.NSPageController,Foundation.NSObject)
-M:AppKit.NSPageControllerDelegate.GetViewController(AppKit.NSPageController,System.String)
-M:AppKit.NSPageControllerDelegate.PrepareViewController(AppKit.NSPageController,AppKit.NSViewController,Foundation.NSObject)
-M:AppKit.NSPageControllerDelegate.WillStartLiveTransition(AppKit.NSPageController)
M:AppKit.NSPageControllerPrepareViewControllerEventArgs.#ctor(AppKit.NSViewController,Foundation.NSObject)
M:AppKit.NSPageControllerTransitionEventArgs.#ctor(Foundation.NSObject)
-M:AppKit.NSPageLayout.AccessoryControllers
-M:AppKit.NSPageLayout.AddAccessoryController(AppKit.NSViewController)
-M:AppKit.NSPageLayout.BeginSheet(AppKit.NSPrintInfo,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:AppKit.NSPageLayout.BeginSheet(AppKit.NSPrintInfo,AppKit.NSWindow,System.Action)
-M:AppKit.NSPageLayout.BeginSheet(AppKit.NSPrintInfo,AppKit.NSWindow,System.Action{AppKit.NSPageLayoutResult})
M:AppKit.NSPageLayout.BeginSheet(AppKit.NSPrintInfo,AppKit.NSWindow)
M:AppKit.NSPageLayout.BeginSheetAsync(AppKit.NSPrintInfo,AppKit.NSWindow)
-M:AppKit.NSPageLayout.RemoveAccessoryController(AppKit.NSViewController)
-M:AppKit.NSPageLayout.RunModal
-M:AppKit.NSPageLayout.RunModalWithPrintInfo(AppKit.NSPrintInfo)
-M:AppKit.NSPanel.#ctor(CoreGraphics.CGRect,AppKit.NSWindowStyle,AppKit.NSBackingStore,System.Boolean)
-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.NSPanGestureRecognizer.SetTranslation(CoreGraphics.CGPoint,AppKit.NSView)
-M:AppKit.NSPanGestureRecognizer.TranslationInView(AppKit.NSView)
-M:AppKit.NSPanGestureRecognizer.VelocityInView(AppKit.NSView)
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.AddTypes(System.String[],Foundation.NSObject)
-M:AppKit.NSPasteboard.CanReadItemWithDataConformingToTypes(System.String[])
-M:AppKit.NSPasteboard.CanReadObjectForClasses(ObjCRuntime.Class[],Foundation.NSDictionary)
-M:AppKit.NSPasteboard.ClearContents
-M:AppKit.NSPasteboard.CreateWithUniqueName
-M:AppKit.NSPasteboard.DeclareTypes(System.String[],Foundation.NSObject)
-M:AppKit.NSPasteboard.FromName(System.String)
-M:AppKit.NSPasteboard.GetAvailableTypeFromArray(System.String[])
-M:AppKit.NSPasteboard.GetDataForType(System.String)
-M:AppKit.NSPasteboard.GetPropertyListForType(System.String)
-M:AppKit.NSPasteboard.GetStringForType(System.String)
-M:AppKit.NSPasteboard.IndexOf(AppKit.NSPasteboardItem)
-M:AppKit.NSPasteboard.PrepareForNewContents(AppKit.NSPasteboardContentsOptions)
-M:AppKit.NSPasteboard.ReadObjectsForClasses(ObjCRuntime.Class[],Foundation.NSDictionary)
-M:AppKit.NSPasteboard.ReleaseGlobally
-M:AppKit.NSPasteboard.SetDataForType(Foundation.NSData,System.String)
-M:AppKit.NSPasteboard.SetPropertyListForType(Foundation.NSObject,System.String)
-M:AppKit.NSPasteboard.SetStringForType(System.String,System.String)
M:AppKit.NSPasteboard.WriteObjects(AppKit.INSPasteboardWriting[])
-M:AppKit.NSPasteboardItem.GetAvailableTypeFromArray(System.String[])
-M:AppKit.NSPasteboardItem.GetDataForType(System.String)
-M:AppKit.NSPasteboardItem.GetPasteboardPropertyListForType(System.String)
-M:AppKit.NSPasteboardItem.GetPropertyListForType(System.String)
-M:AppKit.NSPasteboardItem.GetReadableTypesForPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSPasteboardItem.GetReadingOptionsForType(System.String,AppKit.NSPasteboard)
-M:AppKit.NSPasteboardItem.GetStringForType(System.String)
-M:AppKit.NSPasteboardItem.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSPasteboardItem.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
-M:AppKit.NSPasteboardItem.SetDataForType(Foundation.NSData,System.String)
-M:AppKit.NSPasteboardItem.SetDataProviderForTypes(AppKit.INSPasteboardItemDataProvider,System.String[])
-M:AppKit.NSPasteboardItem.SetPropertyListForType(Foundation.NSObject,System.String)
-M:AppKit.NSPasteboardItem.SetStringForType(System.String,System.String)
M:AppKit.NSPasteboardItemDataProvider_Extensions.FinishedWithDataProvider(AppKit.INSPasteboardItemDataProvider,AppKit.NSPasteboard)
-M:AppKit.NSPasteboardItemDataProvider.FinishedWithDataProvider(AppKit.NSPasteboard)
-M:AppKit.NSPasteboardItemDataProvider.ProvideDataForType(AppKit.NSPasteboard,AppKit.NSPasteboardItem,System.String)
M:AppKit.NSPasteboardTypeOwner_Extensions.PasteboardChangedOwner(AppKit.INSPasteboardTypeOwner,AppKit.NSPasteboard)
M:AppKit.NSPasteboardWriting_Extensions.GetWritingOptionsForType(AppKit.INSPasteboardWriting,System.String,AppKit.NSPasteboard)
-M:AppKit.NSPathCell.#ctor(AppKit.NSImage)
-M:AppKit.NSPathCell.#ctor(System.String)
M:AppKit.NSPathCell.add_DoubleClick(System.EventHandler)
M:AppKit.NSPathCell.add_WillDisplayOpenPanel(System.EventHandler{AppKit.NSPathCellDisplayPanelEventArgs})
M:AppKit.NSPathCell.add_WillPopupMenu(System.EventHandler{AppKit.NSPathCellMenuEventArgs})
M:AppKit.NSPathCell.Dispose(System.Boolean)
-M:AppKit.NSPathCell.GetPathComponent(CoreGraphics.CGPoint,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSPathCell.GetRect(AppKit.NSPathComponentCell,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSPathCell.MouseEntered(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSPathCell.MouseExited(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView)
M:AppKit.NSPathCell.remove_DoubleClick(System.EventHandler)
M:AppKit.NSPathCell.remove_WillDisplayOpenPanel(System.EventHandler{AppKit.NSPathCellDisplayPanelEventArgs})
M:AppKit.NSPathCell.remove_WillPopupMenu(System.EventHandler{AppKit.NSPathCellMenuEventArgs})
M:AppKit.NSPathCell.SetControlSize(AppKit.NSControlSize)
-M:AppKit.NSPathCell.SetObjectValue(Foundation.NSObject)
-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.WillDisplayOpenPanel(AppKit.NSPathCell,AppKit.NSOpenPanel)
-M:AppKit.NSPathCellDelegate.WillPopupMenu(AppKit.NSPathCell,AppKit.NSMenu)
M:AppKit.NSPathCellDisplayPanelEventArgs.#ctor(AppKit.NSOpenPanel)
M:AppKit.NSPathCellMenuEventArgs.#ctor(AppKit.NSMenu)
-M:AppKit.NSPathComponentCell.#ctor(System.String)
-M:AppKit.NSPathControl.#ctor(CoreGraphics.CGRect)
M:AppKit.NSPathControl.add_DoubleClick(System.EventHandler)
M:AppKit.NSPathControl.Dispose(System.Boolean)
M:AppKit.NSPathControl.remove_DoubleClick(System.EventHandler)
-M:AppKit.NSPathControl.SetDraggingSource(AppKit.NSDragOperation,System.Boolean)
M:AppKit.NSPathControlDelegate_Extensions.AcceptDrop(AppKit.INSPathControlDelegate,AppKit.NSPathControl,AppKit.INSDraggingInfo)
M:AppKit.NSPathControlDelegate_Extensions.ShouldDragItem(AppKit.INSPathControlDelegate,AppKit.NSPathControl,AppKit.NSPathControlItem,AppKit.NSPasteboard)
M:AppKit.NSPathControlDelegate_Extensions.ShouldDragPathComponentCell(AppKit.INSPathControlDelegate,AppKit.NSPathControl,AppKit.NSPathComponentCell,AppKit.NSPasteboard)
M:AppKit.NSPathControlDelegate_Extensions.ValidateDrop(AppKit.INSPathControlDelegate,AppKit.NSPathControl,AppKit.INSDraggingInfo)
M:AppKit.NSPathControlDelegate_Extensions.WillDisplayOpenPanel(AppKit.INSPathControlDelegate,AppKit.NSPathControl,AppKit.NSOpenPanel)
M:AppKit.NSPathControlDelegate_Extensions.WillPopUpMenu(AppKit.INSPathControlDelegate,AppKit.NSPathControl,AppKit.NSMenu)
-M:AppKit.NSPathControlDelegate.AcceptDrop(AppKit.NSPathControl,AppKit.INSDraggingInfo)
-M:AppKit.NSPathControlDelegate.ShouldDragItem(AppKit.NSPathControl,AppKit.NSPathControlItem,AppKit.NSPasteboard)
-M:AppKit.NSPathControlDelegate.ShouldDragPathComponentCell(AppKit.NSPathControl,AppKit.NSPathComponentCell,AppKit.NSPasteboard)
-M:AppKit.NSPathControlDelegate.ValidateDrop(AppKit.NSPathControl,AppKit.INSDraggingInfo)
-M:AppKit.NSPathControlDelegate.WillDisplayOpenPanel(AppKit.NSPathControl,AppKit.NSOpenPanel)
-M:AppKit.NSPathControlDelegate.WillPopUpMenu(AppKit.NSPathControl,AppKit.NSMenu)
-M:AppKit.NSPdfImageRep.#ctor(Foundation.NSData)
-M:AppKit.NSPickerTouchBarItem.Create(AppKit.NSTouchBarItemIdentifier,AppKit.NSImage[],AppKit.NSPickerTouchBarItemSelectionMode,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSPickerTouchBarItem.Create(AppKit.NSTouchBarItemIdentifier,System.String[],AppKit.NSPickerTouchBarItemSelectionMode,Foundation.NSObject,ObjCRuntime.Selector)
M:AppKit.NSPickerTouchBarItem.Dispose(System.Boolean)
-M:AppKit.NSPickerTouchBarItem.GetEnabled(System.IntPtr)
-M:AppKit.NSPickerTouchBarItem.GetImage(System.IntPtr)
-M:AppKit.NSPickerTouchBarItem.GetLabel(System.IntPtr)
-M:AppKit.NSPickerTouchBarItem.SetEnabled(System.Boolean,System.IntPtr)
-M:AppKit.NSPickerTouchBarItem.SetImage(AppKit.NSImage,System.IntPtr)
-M:AppKit.NSPickerTouchBarItem.SetLabel(System.String,System.IntPtr)
-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.Close
M:AppKit.NSPopover.Dispose(System.Boolean)
-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.PerformClose(Foundation.NSObject)
-M:AppKit.NSPopover.Show(CoreGraphics.CGRect,AppKit.NSView,AppKit.NSRectEdge)
-M:AppKit.NSPopover.ShowRelative(AppKit.NSToolbarItem)
M:AppKit.NSPopoverCloseEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSPopoverDelegate_Extensions.DidClose(AppKit.INSPopoverDelegate,Foundation.NSNotification)
M:AppKit.NSPopoverDelegate_Extensions.DidDetach(AppKit.INSPopoverDelegate,AppKit.NSPopover)
@@ -26200,75 +20821,7 @@ M:AppKit.NSPopoverDelegate_Extensions.GetDetachableWindowForPopover(AppKit.INSPo
M:AppKit.NSPopoverDelegate_Extensions.ShouldClose(AppKit.INSPopoverDelegate,AppKit.NSPopover)
M:AppKit.NSPopoverDelegate_Extensions.WillClose(AppKit.INSPopoverDelegate,Foundation.NSNotification)
M:AppKit.NSPopoverDelegate_Extensions.WillShow(AppKit.INSPopoverDelegate,Foundation.NSNotification)
-M:AppKit.NSPopoverDelegate.DidClose(Foundation.NSNotification)
-M:AppKit.NSPopoverDelegate.DidDetach(AppKit.NSPopover)
-M:AppKit.NSPopoverDelegate.DidShow(Foundation.NSNotification)
-M:AppKit.NSPopoverDelegate.GetDetachableWindowForPopover(AppKit.NSPopover)
-M:AppKit.NSPopoverDelegate.ShouldClose(AppKit.NSPopover)
-M:AppKit.NSPopoverDelegate.WillClose(Foundation.NSNotification)
-M:AppKit.NSPopoverDelegate.WillShow(Foundation.NSNotification)
-M:AppKit.NSPopoverTouchBarItem.#ctor(System.String)
-M:AppKit.NSPopoverTouchBarItem.DismissPopover(Foundation.NSObject)
-M:AppKit.NSPopoverTouchBarItem.MakeStandardActivatePopoverGestureRecognizer
-M:AppKit.NSPopoverTouchBarItem.ShowPopover(Foundation.NSObject)
-M:AppKit.NSPopUpButton.#ctor(CoreGraphics.CGRect,System.Boolean)
-M:AppKit.NSPopUpButton.AddItem(System.String)
-M:AppKit.NSPopUpButton.AddItems(System.String[])
-M:AppKit.NSPopUpButton.CreatePopUpButton(AppKit.NSMenu,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSPopUpButton.CreatePullDownButton(AppKit.NSImage,AppKit.NSMenu)
-M:AppKit.NSPopUpButton.CreatePullDownButton(System.String,AppKit.NSImage,AppKit.NSMenu)
-M:AppKit.NSPopUpButton.CreatePullDownButton(System.String,AppKit.NSMenu)
-M:AppKit.NSPopUpButton.IndexOfItem(AppKit.NSMenuItem)
-M:AppKit.NSPopUpButton.IndexOfItem(Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSPopUpButton.IndexOfItem(Foundation.NSObject)
-M:AppKit.NSPopUpButton.IndexOfItem(System.IntPtr)
-M:AppKit.NSPopUpButton.IndexOfItem(System.String)
-M:AppKit.NSPopUpButton.InsertItem(System.String,System.IntPtr)
-M:AppKit.NSPopUpButton.ItemAtIndex(System.IntPtr)
-M:AppKit.NSPopUpButton.Items
-M:AppKit.NSPopUpButton.ItemTitle(System.IntPtr)
-M:AppKit.NSPopUpButton.ItemTitles
-M:AppKit.NSPopUpButton.ItemWithTitle(System.String)
-M:AppKit.NSPopUpButton.RemoveAllItems
-M:AppKit.NSPopUpButton.RemoveItem(System.IntPtr)
-M:AppKit.NSPopUpButton.RemoveItem(System.String)
-M:AppKit.NSPopUpButton.SelectItem(AppKit.NSMenuItem)
-M:AppKit.NSPopUpButton.SelectItem(System.IntPtr)
-M:AppKit.NSPopUpButton.SelectItem(System.String)
-M:AppKit.NSPopUpButton.SelectItemWithTag(System.IntPtr)
-M:AppKit.NSPopUpButton.SetTitle(System.String)
-M:AppKit.NSPopUpButton.SynchronizeTitleAndSelectedItem
-M:AppKit.NSPopUpButtonCell.#ctor(AppKit.NSImage)
-M:AppKit.NSPopUpButtonCell.#ctor(System.String,System.Boolean)
-M:AppKit.NSPopUpButtonCell.#ctor(System.String)
-M:AppKit.NSPopUpButtonCell.AddItem(System.String)
-M:AppKit.NSPopUpButtonCell.AddItems(System.String[])
-M:AppKit.NSPopUpButtonCell.AttachPopUp(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSPopUpButtonCell.DismissPopUp
-M:AppKit.NSPopUpButtonCell.GetItemTitle(System.IntPtr)
-M:AppKit.NSPopUpButtonCell.IndexOf(AppKit.NSMenuItem)
-M:AppKit.NSPopUpButtonCell.IndexOfItemWithRepresentedObject(Foundation.NSObject)
-M:AppKit.NSPopUpButtonCell.IndexOfItemWithTag(System.IntPtr)
-M:AppKit.NSPopUpButtonCell.IndexOfItemWithTargetandAction(Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSPopUpButtonCell.IndexOfItemWithTitle(System.String)
-M:AppKit.NSPopUpButtonCell.InsertItem(System.String,System.IntPtr)
-M:AppKit.NSPopUpButtonCell.ItemAt(System.IntPtr)
-M:AppKit.NSPopUpButtonCell.ItemWithTitle(System.String)
-M:AppKit.NSPopUpButtonCell.PerformClick(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSPopUpButtonCell.RemoveAllItems
-M:AppKit.NSPopUpButtonCell.RemoveItem(System.String)
-M:AppKit.NSPopUpButtonCell.RemoveItemAt(System.IntPtr)
-M:AppKit.NSPopUpButtonCell.SelectItem(AppKit.NSMenuItem)
-M:AppKit.NSPopUpButtonCell.SelectItemAt(System.IntPtr)
-M:AppKit.NSPopUpButtonCell.SelectItemWithTag(System.IntPtr)
-M:AppKit.NSPopUpButtonCell.SelectItemWithTitle(System.String)
-M:AppKit.NSPopUpButtonCell.SetTitle(System.String)
-M:AppKit.NSPopUpButtonCell.SynchronizeTitleAndSelectedItem
-M:AppKit.NSPopUpButtonCell.ValidateMenuItem(AppKit.NSMenuItem)
M:AppKit.NSPredicateEditorRowTemplate.#ctor(Foundation.NSCompoundPredicateType[])
-M:AppKit.NSPredicateEditorRowTemplate.#ctor(Foundation.NSExpression[],CoreData.NSAttributeType,Foundation.NSComparisonPredicateModifier,Foundation.NSObject[],Foundation.NSComparisonPredicateOptions)
-M:AppKit.NSPredicateEditorRowTemplate.#ctor(Foundation.NSExpression[],Foundation.NSExpression[],Foundation.NSComparisonPredicateModifier,Foundation.NSObject[],Foundation.NSComparisonPredicateOptions)
-M:AppKit.NSPredicateEditorRowTemplate.#ctor(Foundation.NSNumber[])
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)
M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.Collections.Generic.IEnumerable{System.String},CoreData.NSAttributeType,System.Collections.Generic.IEnumerable{Foundation.NSPredicateOperatorType},Foundation.NSComparisonPredicateModifier,Foundation.NSComparisonPredicateOptions)
@@ -26277,433 +20830,98 @@ M:AppKit.NSPredicateEditorRowTemplate.#ctor(System.String,CoreData.NSAttributeTy
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.DisplayableSubpredicatesOfPredicate(Foundation.NSPredicate)
M:AppKit.NSPredicateEditorRowTemplate.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSPredicateEditorRowTemplate.GetTemplates(System.String[],CoreData.NSEntityDescription)
-M:AppKit.NSPredicateEditorRowTemplate.MatchForPredicate(Foundation.NSPredicate)
-M:AppKit.NSPredicateEditorRowTemplate.PredicateWithSubpredicates(Foundation.NSPredicate[])
-M:AppKit.NSPredicateEditorRowTemplate.SetPredicate(Foundation.NSPredicate)
-M:AppKit.NSPressGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:AppKit.NSPressGestureRecognizer.#ctor(System.Action)
M:AppKit.NSPressGestureRecognizer.#ctor(System.Action{AppKit.NSPressGestureRecognizer})
-M:AppKit.NSPressureConfiguration.#ctor(AppKit.NSPressureBehavior)
-M:AppKit.NSPressureConfiguration.Set
M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetIconProvider(AppKit.INSPreviewRepresentableActivityItem)
M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetImageProvider(AppKit.INSPreviewRepresentableActivityItem)
M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetTitle(AppKit.INSPreviewRepresentableActivityItem)
-M:AppKit.NSPreviewRepresentingActivityItem.#ctor(Foundation.NSObject,System.String,AppKit.NSImage,AppKit.NSImage)
-M:AppKit.NSPreviewRepresentingActivityItem.#ctor(Foundation.NSObject,System.String,Foundation.NSItemProvider,Foundation.NSItemProvider)
-M:AppKit.NSPrinter.BooleanForKey(System.String,System.String)
M:AppKit.NSPrinter.Copy(Foundation.NSZone)
M:AppKit.NSPrinter.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSPrinter.FloatForKey(System.String,System.String)
-M:AppKit.NSPrinter.IntForKey(System.String,System.String)
-M:AppKit.NSPrinter.IsKeyInTable(System.String,System.String)
-M:AppKit.NSPrinter.PageSizeForPaper(System.String)
-M:AppKit.NSPrinter.PrinterWithName(System.String)
-M:AppKit.NSPrinter.PrinterWithType(System.String)
-M:AppKit.NSPrinter.RectForKey(System.String,System.String)
-M:AppKit.NSPrinter.SizeForKey(System.String,System.String)
-M:AppKit.NSPrinter.StatusForTable(System.String)
-M:AppKit.NSPrinter.StringForKey(System.String,System.String)
-M:AppKit.NSPrinter.StringListForKey(System.String,System.String)
-M:AppKit.NSPrintInfo.#ctor(Foundation.NSDictionary)
M:AppKit.NSPrintInfo.Copy(Foundation.NSZone)
M:AppKit.NSPrintInfo.EncodeTo(Foundation.NSCoder)
M:AppKit.NSPrintInfo.GetPageFormat
M:AppKit.NSPrintInfo.GetPrintSession
M:AppKit.NSPrintInfo.GetPrintSettings
-M:AppKit.NSPrintInfo.SetUpPrintOperationDefaultValues
-M:AppKit.NSPrintInfo.UpdateFromPMPageFormat
-M:AppKit.NSPrintInfo.UpdateFromPMPrintSettings
-M:AppKit.NSPrintOperation.CleanUpOperation
-M:AppKit.NSPrintOperation.CreateContext
-M:AppKit.NSPrintOperation.DeliverResult
-M:AppKit.NSPrintOperation.DestroyContext
-M:AppKit.NSPrintOperation.EpsFromView(AppKit.NSView,CoreGraphics.CGRect,Foundation.NSMutableData,AppKit.NSPrintInfo)
-M:AppKit.NSPrintOperation.EpsFromView(AppKit.NSView,CoreGraphics.CGRect,Foundation.NSMutableData)
-M:AppKit.NSPrintOperation.EpsFromView(AppKit.NSView,CoreGraphics.CGRect,System.String,AppKit.NSPrintInfo)
-M:AppKit.NSPrintOperation.FromView(AppKit.NSView,AppKit.NSPrintInfo)
-M:AppKit.NSPrintOperation.FromView(AppKit.NSView)
-M:AppKit.NSPrintOperation.PdfFromView(AppKit.NSView,CoreGraphics.CGRect,Foundation.NSMutableData,AppKit.NSPrintInfo)
-M:AppKit.NSPrintOperation.PdfFromView(AppKit.NSView,CoreGraphics.CGRect,Foundation.NSMutableData)
-M:AppKit.NSPrintOperation.PdfFromView(AppKit.NSView,CoreGraphics.CGRect,System.String,AppKit.NSPrintInfo)
-M:AppKit.NSPrintOperation.RunOperation
-M:AppKit.NSPrintOperation.RunOperationModal(AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSPrintPanel.AccessoryControllers
-M:AppKit.NSPrintPanel.AddAccessoryController(AppKit.NSViewController)
-M:AppKit.NSPrintPanel.BeginSheet(AppKit.NSPrintInfo,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSPrintPanel.BeginSheet(AppKit.NSPrintInfo,AppKit.NSWindow,System.Action{AppKit.NSPrintPanelResult})
M:AppKit.NSPrintPanel.BeginSheetAsync(AppKit.NSPrintInfo,AppKit.NSWindow)
-M:AppKit.NSPrintPanel.RemoveAccessoryController(AppKit.NSViewController)
-M:AppKit.NSPrintPanel.RunModal
-M:AppKit.NSPrintPanel.RunModalWithPrintInfo(AppKit.NSPrintInfo)
M:AppKit.NSPrintPanelAccessorizing_Extensions.KeyPathsForValuesAffectingPreview(AppKit.INSPrintPanelAccessorizing)
-M:AppKit.NSPrintPanelAccessorizing.KeyPathsForValuesAffectingPreview
-M:AppKit.NSPrintPanelAccessorizing.LocalizedSummaryItems
-M:AppKit.NSProgressIndicator.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSProgressIndicator.IncrementBy(System.Double)
-M:AppKit.NSProgressIndicator.SizeToFit
-M:AppKit.NSProgressIndicator.StartAnimation(Foundation.NSObject)
-M:AppKit.NSProgressIndicator.StopAnimation(Foundation.NSObject)
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_NSWritingToolsSupport.ShowWritingTools(AppKit.NSResponder,Foundation.NSObject)
-M:AppKit.NSResponder.AcceptsFirstResponder
-M:AppKit.NSResponder.BecomeFirstResponder
-M:AppKit.NSResponder.BeginGestureWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.ChangeMode(AppKit.NSEvent)
-M:AppKit.NSResponder.ContextMenuKeyDown(AppKit.NSEvent)
-M:AppKit.NSResponder.CursorUpdate(AppKit.NSEvent)
-M:AppKit.NSResponder.EncodeRestorableState(Foundation.NSCoder,Foundation.NSOperationQueue)
-M:AppKit.NSResponder.EncodeRestorableState(Foundation.NSCoder)
M:AppKit.NSResponder.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSResponder.EndGestureWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.FlagsChanged(AppKit.NSEvent)
-M:AppKit.NSResponder.FlushBufferedKeyEvents
-M:AppKit.NSResponder.GetAllowedClassesForRestorableStateKeyPath(System.String)
-M:AppKit.NSResponder.GetNewWindowForTab(Foundation.NSObject)
-M:AppKit.NSResponder.HelpRequested(AppKit.NSEvent)
-M:AppKit.NSResponder.InterpretKeyEvents(AppKit.NSEvent[])
-M:AppKit.NSResponder.InvalidateRestorableState
-M:AppKit.NSResponder.KeyDown(AppKit.NSEvent)
-M:AppKit.NSResponder.KeyUp(AppKit.NSEvent)
-M:AppKit.NSResponder.MagnifyWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.MouseDown(AppKit.NSEvent)
-M:AppKit.NSResponder.MouseDragged(AppKit.NSEvent)
-M:AppKit.NSResponder.MouseEntered(AppKit.NSEvent)
-M:AppKit.NSResponder.MouseExited(AppKit.NSEvent)
-M:AppKit.NSResponder.MouseMoved(AppKit.NSEvent)
-M:AppKit.NSResponder.MouseUp(AppKit.NSEvent)
-M:AppKit.NSResponder.NoResponderFor(ObjCRuntime.Selector)
-M:AppKit.NSResponder.OtherMouseDown(AppKit.NSEvent)
-M:AppKit.NSResponder.OtherMouseDragged(AppKit.NSEvent)
-M:AppKit.NSResponder.OtherMouseUp(AppKit.NSEvent)
-M:AppKit.NSResponder.PerformKeyEquivalent(AppKit.NSEvent)
M:AppKit.NSResponder.PresentError(Foundation.NSError,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSResponder.PresentError(Foundation.NSError)
-M:AppKit.NSResponder.PressureChange(AppKit.NSEvent)
-M:AppKit.NSResponder.QuickLook(AppKit.NSEvent)
-M:AppKit.NSResponder.ResignFirstResponder
-M:AppKit.NSResponder.RestorableStateKeyPaths
-M:AppKit.NSResponder.RestoreState(Foundation.NSCoder)
-M:AppKit.NSResponder.RestoreUserActivityState(Foundation.NSUserActivity)
-M:AppKit.NSResponder.RightMouseDown(AppKit.NSEvent)
-M:AppKit.NSResponder.RightMouseDragged(AppKit.NSEvent)
-M:AppKit.NSResponder.RightMouseUp(AppKit.NSEvent)
-M:AppKit.NSResponder.RotateWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.ScrollWheel(AppKit.NSEvent)
-M:AppKit.NSResponder.ShouldBeTreatedAsInkEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.ShowContextHelp(Foundation.NSObject)
-M:AppKit.NSResponder.SmartMagnify(AppKit.NSEvent)
-M:AppKit.NSResponder.SupplementalTargetForAction(ObjCRuntime.Selector,Foundation.NSObject)
-M:AppKit.NSResponder.SwipeWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.TabletPoint(AppKit.NSEvent)
-M:AppKit.NSResponder.TabletProximity(AppKit.NSEvent)
-M:AppKit.NSResponder.TouchesBeganWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.TouchesCancelledWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.TouchesEndedWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.TouchesMovedWithEvent(AppKit.NSEvent)
-M:AppKit.NSResponder.TryToPerformwith(ObjCRuntime.Selector,Foundation.NSObject)
-M:AppKit.NSResponder.UpdateUserActivityState(Foundation.NSUserActivity)
-M:AppKit.NSResponder.ValidateProposedFirstResponder(AppKit.NSResponder,AppKit.NSEvent)
-M:AppKit.NSResponder.ValidRequestorForSendType(System.String,System.String)
-M:AppKit.NSResponder.WantsForwardedScrollEventsForAxis(AppKit.NSEventGestureAxis)
-M:AppKit.NSResponder.WantsScrollEventsForSwipeTrackingOnAxis(AppKit.NSEventGestureAxis)
-M:AppKit.NSResponder.WillPresentError(Foundation.NSError)
-M:AppKit.NSRotationGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:AppKit.NSRotationGestureRecognizer.#ctor(System.Action)
M:AppKit.NSRotationGestureRecognizer.#ctor(System.Action{AppKit.NSRotationGestureRecognizer})
-M:AppKit.NSRuleEditor.#ctor(CoreGraphics.CGRect)
M:AppKit.NSRuleEditor.add_Changed(System.EventHandler)
M:AppKit.NSRuleEditor.add_EditingBegan(System.EventHandler)
M:AppKit.NSRuleEditor.add_EditingEnded(System.EventHandler)
M:AppKit.NSRuleEditor.add_RowsDidChange(System.EventHandler)
-M:AppKit.NSRuleEditor.AddRow(Foundation.NSObject)
-M:AppKit.NSRuleEditor.Criteria(System.IntPtr)
-M:AppKit.NSRuleEditor.DisplayValues(System.IntPtr)
M:AppKit.NSRuleEditor.Dispose(System.Boolean)
-M:AppKit.NSRuleEditor.GetPredicate(System.IntPtr)
-M:AppKit.NSRuleEditor.InsertRowAtIndex(System.IntPtr,AppKit.NSRuleEditorRowType,System.IntPtr,System.Boolean)
-M:AppKit.NSRuleEditor.ParentRow(System.IntPtr)
-M:AppKit.NSRuleEditor.ReloadCriteria
-M:AppKit.NSRuleEditor.ReloadPredicate
M:AppKit.NSRuleEditor.remove_Changed(System.EventHandler)
M:AppKit.NSRuleEditor.remove_EditingBegan(System.EventHandler)
M:AppKit.NSRuleEditor.remove_EditingEnded(System.EventHandler)
M:AppKit.NSRuleEditor.remove_RowsDidChange(System.EventHandler)
-M:AppKit.NSRuleEditor.RemoveRowAtIndex(System.IntPtr)
-M:AppKit.NSRuleEditor.RemoveRowsAtIndexes(Foundation.NSIndexSet,System.Boolean)
-M:AppKit.NSRuleEditor.Row(Foundation.NSObject)
-M:AppKit.NSRuleEditor.RowType(System.IntPtr)
-M:AppKit.NSRuleEditor.SelectRows(Foundation.NSIndexSet,System.Boolean)
-M:AppKit.NSRuleEditor.SetCriteria(Foundation.NSArray,Foundation.NSArray,System.IntPtr)
-M:AppKit.NSRuleEditor.SubrowIndexes(System.IntPtr)
M:AppKit.NSRuleEditorDelegate_Extensions.Changed(AppKit.INSRuleEditorDelegate,Foundation.NSNotification)
M:AppKit.NSRuleEditorDelegate_Extensions.EditingBegan(AppKit.INSRuleEditorDelegate,Foundation.NSNotification)
M:AppKit.NSRuleEditorDelegate_Extensions.EditingEnded(AppKit.INSRuleEditorDelegate,Foundation.NSNotification)
M:AppKit.NSRuleEditorDelegate_Extensions.PredicateParts(AppKit.INSRuleEditorDelegate,AppKit.NSRuleEditor,Foundation.NSObject,Foundation.NSObject,System.IntPtr)
M:AppKit.NSRuleEditorDelegate_Extensions.RowsDidChange(AppKit.INSRuleEditorDelegate,Foundation.NSNotification)
-M:AppKit.NSRuleEditorDelegate.Changed(Foundation.NSNotification)
-M:AppKit.NSRuleEditorDelegate.ChildForCriterion(AppKit.NSRuleEditor,System.IntPtr,Foundation.NSObject,AppKit.NSRuleEditorRowType)
-M:AppKit.NSRuleEditorDelegate.DisplayValue(AppKit.NSRuleEditor,Foundation.NSObject,System.IntPtr)
-M:AppKit.NSRuleEditorDelegate.EditingBegan(Foundation.NSNotification)
-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(AppKit.NSRulerView,System.Runtime.InteropServices.NFloat,AppKit.NSImage,CoreGraphics.CGPoint)
M:AppKit.NSRulerMarker.Copy(Foundation.NSZone)
-M:AppKit.NSRulerMarker.DrawRect(CoreGraphics.CGRect)
M:AppKit.NSRulerMarker.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSRulerMarker.TrackMouse(AppKit.NSEvent,System.Boolean)
M:AppKit.NSRulerMarkerClientViewDelegation.RulerViewLocation(AppKit.NSView,AppKit.NSRulerView,CoreGraphics.CGPoint)
M:AppKit.NSRulerMarkerClientViewDelegation.RulerViewPoint(AppKit.NSView,AppKit.NSRulerView,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSRulerView.#ctor(AppKit.NSScrollView,AppKit.NSRulerOrientation)
-M:AppKit.NSRulerView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSRulerView.AddMarker(AppKit.NSRulerMarker)
M:AppKit.NSRulerView.Dispose(System.Boolean)
-M:AppKit.NSRulerView.DrawHashMarksAndLabels(CoreGraphics.CGRect)
-M:AppKit.NSRulerView.DrawMarkers(CoreGraphics.CGRect)
-M:AppKit.NSRulerView.InvalidateHashMarks
-M:AppKit.NSRulerView.MoveRulerline(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSRulerView.RegisterUnit(System.String,System.String,System.Runtime.InteropServices.NFloat,Foundation.NSNumber[],Foundation.NSNumber[])
-M:AppKit.NSRulerView.RemoveMarker(AppKit.NSRulerMarker)
-M:AppKit.NSRulerView.TrackMarker(AppKit.NSRulerMarker,AppKit.NSEvent)
-M:AppKit.NSRunningApplication.Activate(AppKit.NSApplicationActivationOptions)
-M:AppKit.NSRunningApplication.Activate(AppKit.NSRunningApplication,AppKit.NSApplicationActivationOptions)
-M:AppKit.NSRunningApplication.ForceTerminate
-M:AppKit.NSRunningApplication.GetRunningApplication(System.Int32)
-M:AppKit.NSRunningApplication.GetRunningApplications(System.String)
-M:AppKit.NSRunningApplication.Hide
-M:AppKit.NSRunningApplication.Terminate
-M:AppKit.NSRunningApplication.TerminateAutomaticallyTerminableApplications
-M:AppKit.NSRunningApplication.Unhide
M:AppKit.NSSavePanel.add_DidChangeToDirectory(System.EventHandler{AppKit.NSOpenSavePanelUrlEventArgs})
M:AppKit.NSSavePanel.add_DidSelectType(System.EventHandler{AppKit.NSopenSavePanelUTTypeEventArgs})
M:AppKit.NSSavePanel.add_DirectoryDidChange(System.EventHandler{AppKit.NSOpenSaveFilenameEventArgs})
M:AppKit.NSSavePanel.add_SelectionDidChange(System.EventHandler)
M:AppKit.NSSavePanel.add_WillExpand(System.EventHandler{AppKit.NSOpenSaveExpandingEventArgs})
-M:AppKit.NSSavePanel.Begin(AppKit.NSSavePanelComplete)
-M:AppKit.NSSavePanel.Begin(System.String,System.String,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSSavePanel.BeginSheet(AppKit.NSWindow,AppKit.NSSavePanelComplete)
-M:AppKit.NSSavePanel.Cancel(Foundation.NSObject)
M:AppKit.NSSavePanel.Dispose(System.Boolean)
-M:AppKit.NSSavePanel.Ok(Foundation.NSObject)
M:AppKit.NSSavePanel.remove_DidChangeToDirectory(System.EventHandler{AppKit.NSOpenSavePanelUrlEventArgs})
M:AppKit.NSSavePanel.remove_DidSelectType(System.EventHandler{AppKit.NSopenSavePanelUTTypeEventArgs})
M:AppKit.NSSavePanel.remove_DirectoryDidChange(System.EventHandler{AppKit.NSOpenSaveFilenameEventArgs})
M:AppKit.NSSavePanel.remove_SelectionDidChange(System.EventHandler)
M:AppKit.NSSavePanel.remove_WillExpand(System.EventHandler{AppKit.NSOpenSaveExpandingEventArgs})
-M:AppKit.NSSavePanel.RunModal
-M:AppKit.NSSavePanel.RunModal(System.String,System.String)
-M:AppKit.NSSavePanel.ValidateVisibleColumns
-M:AppKit.NSScreen.CanRepresentDisplayGamut(AppKit.NSDisplayGamut)
-M:AppKit.NSScreen.ConvertRectfromBacking(CoreGraphics.CGRect)
-M:AppKit.NSScreen.ConvertRectToBacking(CoreGraphics.CGRect)
-M:AppKit.NSScreen.GetBackingAlignedRect(CoreGraphics.CGRect,Foundation.NSAlignmentOptions)
-M:AppKit.NSScreen.GetDisplayLink(Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSScreen.ScreensHaveSeparateSpaces
-M:AppKit.NSScroller.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSScroller.CheckSpaceForParts
-M:AppKit.NSScroller.DrawArrow(AppKit.NSScrollerArrow,System.Boolean)
-M:AppKit.NSScroller.DrawKnob
-M:AppKit.NSScroller.DrawKnobSlot(CoreGraphics.CGRect,System.Boolean)
-M:AppKit.NSScroller.DrawParts
-M:AppKit.NSScroller.GetScrollerWidth(AppKit.NSControlSize,AppKit.NSScrollerStyle)
-M:AppKit.NSScroller.Highlight(System.Boolean)
-M:AppKit.NSScroller.RectForPart(AppKit.NSScrollerPart)
-M:AppKit.NSScroller.ScrollerWidthForControlSize(AppKit.NSControlSize)
-M:AppKit.NSScroller.TestPart(CoreGraphics.CGPoint)
-M:AppKit.NSScroller.TrackKnob(AppKit.NSEvent)
-M:AppKit.NSScroller.TrackScrollButtons(AppKit.NSEvent)
-M:AppKit.NSScrollView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSScrollView.AddFloatingSubview(AppKit.NSView,AppKit.NSEventGestureAxis)
-M:AppKit.NSScrollView.ContentSizeForFrame(CoreGraphics.CGSize,System.Boolean,System.Boolean,AppKit.NSBorderType)
-M:AppKit.NSScrollView.FindBarViewDidChangeHeight
-M:AppKit.NSScrollView.FlashScrollers
-M:AppKit.NSScrollView.FrameSizeForContentSize(CoreGraphics.CGSize,System.Boolean,System.Boolean,AppKit.NSBorderType)
-M:AppKit.NSScrollView.GetContentSizeForFrame(CoreGraphics.CGSize,ObjCRuntime.Class,ObjCRuntime.Class,AppKit.NSBorderType,AppKit.NSControlSize,AppKit.NSScrollerStyle)
-M:AppKit.NSScrollView.GetFrameSizeForContent(CoreGraphics.CGSize,ObjCRuntime.Class,ObjCRuntime.Class,AppKit.NSBorderType,AppKit.NSControlSize,AppKit.NSScrollerStyle)
-M:AppKit.NSScrollView.MagnifyToFitRect(CoreGraphics.CGRect)
-M:AppKit.NSScrollView.ReflectScrolledClipView(AppKit.NSClipView)
-M:AppKit.NSScrollView.ScrollWheel(AppKit.NSEvent)
-M:AppKit.NSScrollView.SetMagnification(System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint)
-M:AppKit.NSScrollView.Tile
-M:AppKit.NSScrubber.#ctor(CoreGraphics.CGRect)
M:AppKit.NSScrubber.Dispose(System.Boolean)
-M:AppKit.NSScrubber.GetItemViewForItem(System.IntPtr)
-M:AppKit.NSScrubber.InsertItems(Foundation.NSIndexSet)
-M:AppKit.NSScrubber.MakeItem(System.String,Foundation.NSObject)
-M:AppKit.NSScrubber.MoveItem(System.IntPtr,System.IntPtr)
-M:AppKit.NSScrubber.PerformSequentialBatchUpdates(System.Action)
-M:AppKit.NSScrubber.RegisterClass(ObjCRuntime.Class,System.String)
-M:AppKit.NSScrubber.RegisterNib(AppKit.NSNib,System.String)
-M:AppKit.NSScrubber.ReloadData
-M:AppKit.NSScrubber.ReloadItems(Foundation.NSIndexSet)
-M:AppKit.NSScrubber.RemoveItems(Foundation.NSIndexSet)
-M:AppKit.NSScrubber.ScrollItem(System.IntPtr,AppKit.NSScrubberAlignment)
-M:AppKit.NSScrubberArrangedView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSScrubberArrangedView.ApplyLayoutAttributes(AppKit.NSScrubberLayoutAttributes)
-M:AppKit.NSScrubberDataSource.GetNumberOfItems(AppKit.NSScrubber)
-M:AppKit.NSScrubberDataSource.GetViewForItem(AppKit.NSScrubber,System.IntPtr)
M:AppKit.NSScrubberDelegate_Extensions.DidBeginInteracting(AppKit.INSScrubberDelegate,AppKit.NSScrubber)
M:AppKit.NSScrubberDelegate_Extensions.DidCancelInteracting(AppKit.INSScrubberDelegate,AppKit.NSScrubber)
M:AppKit.NSScrubberDelegate_Extensions.DidChangeVisible(AppKit.INSScrubberDelegate,AppKit.NSScrubber,Foundation.NSRange)
M:AppKit.NSScrubberDelegate_Extensions.DidFinishInteracting(AppKit.INSScrubberDelegate,AppKit.NSScrubber)
M:AppKit.NSScrubberDelegate_Extensions.DidHighlightItem(AppKit.INSScrubberDelegate,AppKit.NSScrubber,System.IntPtr)
M:AppKit.NSScrubberDelegate_Extensions.DidSelectItem(AppKit.INSScrubberDelegate,AppKit.NSScrubber,System.IntPtr)
-M:AppKit.NSScrubberDelegate.DidBeginInteracting(AppKit.NSScrubber)
-M:AppKit.NSScrubberDelegate.DidCancelInteracting(AppKit.NSScrubber)
-M:AppKit.NSScrubberDelegate.DidChangeVisible(AppKit.NSScrubber,Foundation.NSRange)
-M:AppKit.NSScrubberDelegate.DidFinishInteracting(AppKit.NSScrubber)
-M:AppKit.NSScrubberDelegate.DidHighlightItem(AppKit.NSScrubber,System.IntPtr)
-M:AppKit.NSScrubberDelegate.DidSelectItem(AppKit.NSScrubber,System.IntPtr)
-M:AppKit.NSScrubberFlowLayout.InvalidateLayoutForItems(Foundation.NSIndexSet)
M:AppKit.NSScrubberFlowLayoutDelegate_Extensions.Layout(AppKit.INSScrubberFlowLayoutDelegate,AppKit.NSScrubber,AppKit.NSScrubberFlowLayout,System.IntPtr)
-M:AppKit.NSScrubberFlowLayoutDelegate.DidBeginInteracting(AppKit.NSScrubber)
-M:AppKit.NSScrubberFlowLayoutDelegate.DidCancelInteracting(AppKit.NSScrubber)
-M:AppKit.NSScrubberFlowLayoutDelegate.DidChangeVisible(AppKit.NSScrubber,Foundation.NSRange)
-M:AppKit.NSScrubberFlowLayoutDelegate.DidFinishInteracting(AppKit.NSScrubber)
-M:AppKit.NSScrubberFlowLayoutDelegate.DidHighlightItem(AppKit.NSScrubber,System.IntPtr)
-M:AppKit.NSScrubberFlowLayoutDelegate.DidSelectItem(AppKit.NSScrubber,System.IntPtr)
-M:AppKit.NSScrubberFlowLayoutDelegate.Layout(AppKit.NSScrubber,AppKit.NSScrubberFlowLayout,System.IntPtr)
M:AppKit.NSScrubberLayout.Dispose(System.Boolean)
M:AppKit.NSScrubberLayout.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSScrubberLayout.InvalidateLayout
-M:AppKit.NSScrubberLayout.LayoutAttributesForItem(System.IntPtr)
-M:AppKit.NSScrubberLayout.LayoutAttributesForItems(CoreGraphics.CGRect)
-M:AppKit.NSScrubberLayout.PrepareLayout
-M:AppKit.NSScrubberLayout.ShouldInvalidateLayoutForChangeFromVisibleRect(CoreGraphics.CGRect,CoreGraphics.CGRect)
-M:AppKit.NSScrubberLayout.ShouldInvalidateLayoutForHighlightChange
-M:AppKit.NSScrubberLayout.ShouldInvalidateLayoutForSelectionChange
M:AppKit.NSScrubberLayoutAttributes.Copy(Foundation.NSZone)
-M:AppKit.NSScrubberLayoutAttributes.CreateLayoutAttributes(System.IntPtr)
-M:AppKit.NSScrubberProportionalLayout.#ctor(System.IntPtr)
M:AppKit.NSScrubberSelectionStyle.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSScrubberSelectionStyle.MakeSelectionView
-M:AppKit.NSSearchField.#ctor(CoreGraphics.CGRect)
M:AppKit.NSSearchField.add_SearchingEnded(System.EventHandler)
M:AppKit.NSSearchField.add_SearchingStarted(System.EventHandler)
M:AppKit.NSSearchField.Dispose(System.Boolean)
-M:AppKit.NSSearchField.GetRectForCancelButton(System.Boolean)
-M:AppKit.NSSearchField.GetRectForSearchButton(System.Boolean)
-M:AppKit.NSSearchField.GetRectForSearchText(System.Boolean)
M:AppKit.NSSearchField.remove_SearchingEnded(System.EventHandler)
M:AppKit.NSSearchField.remove_SearchingStarted(System.EventHandler)
-M:AppKit.NSSearchFieldCell.#ctor(System.String)
-M:AppKit.NSSearchFieldCell.CancelButtonRectForBounds(CoreGraphics.CGRect)
-M:AppKit.NSSearchFieldCell.ResetCancelButtonCell
-M:AppKit.NSSearchFieldCell.ResetSearchButtonCell
-M:AppKit.NSSearchFieldCell.SearchButtonRectForBounds(CoreGraphics.CGRect)
-M:AppKit.NSSearchFieldCell.SearchTextRectForBounds(CoreGraphics.CGRect)
M:AppKit.NSSearchFieldDelegate_Extensions.SearchingEnded(AppKit.INSSearchFieldDelegate,AppKit.NSSearchField)
M:AppKit.NSSearchFieldDelegate_Extensions.SearchingStarted(AppKit.INSSearchFieldDelegate,AppKit.NSSearchField)
-M:AppKit.NSSearchFieldDelegate.Changed(Foundation.NSNotification)
-M:AppKit.NSSearchFieldDelegate.DidFailToFormatString(AppKit.NSControl,System.String,System.String)
-M:AppKit.NSSearchFieldDelegate.DidFailToValidatePartialString(AppKit.NSControl,System.String,System.String)
-M:AppKit.NSSearchFieldDelegate.DoCommandBySelector(AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector)
-M:AppKit.NSSearchFieldDelegate.EditingBegan(Foundation.NSNotification)
-M:AppKit.NSSearchFieldDelegate.EditingEnded(Foundation.NSNotification)
-M:AppKit.NSSearchFieldDelegate.GetCandidates(AppKit.NSTextField,AppKit.NSTextView,Foundation.NSRange)
-M:AppKit.NSSearchFieldDelegate.GetCompletions(AppKit.NSControl,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.NSSearchFieldDelegate.GetTextCheckingResults(AppKit.NSTextField,AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange)
-M:AppKit.NSSearchFieldDelegate.IsValidObject(AppKit.NSControl,Foundation.NSObject)
-M:AppKit.NSSearchFieldDelegate.SearchingEnded(AppKit.NSSearchField)
-M:AppKit.NSSearchFieldDelegate.SearchingStarted(AppKit.NSSearchField)
-M:AppKit.NSSearchFieldDelegate.ShouldSelectCandidate(AppKit.NSTextField,AppKit.NSTextView,System.UIntPtr)
-M:AppKit.NSSearchFieldDelegate.TextShouldBeginEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.NSSearchFieldDelegate.TextShouldEndEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.NSSearchToolbarItem.#ctor(System.String)
-M:AppKit.NSSearchToolbarItem.BeginSearchInteraction
-M:AppKit.NSSearchToolbarItem.EndSearchInteraction
-M:AppKit.NSSecureTextField.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSSecureTextFieldCell.#ctor(System.String)
-M:AppKit.NSSegmentedCell.#ctor(AppKit.NSImage)
-M:AppKit.NSSegmentedCell.#ctor(System.String)
-M:AppKit.NSSegmentedCell.DrawSegment(System.IntPtr,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSSegmentedCell.GetImageForSegment(System.IntPtr)
-M:AppKit.NSSegmentedCell.GetImageScaling(System.IntPtr)
-M:AppKit.NSSegmentedCell.GetLabel(System.IntPtr)
-M:AppKit.NSSegmentedCell.GetMenu(System.IntPtr)
-M:AppKit.NSSegmentedCell.GetTag(System.IntPtr)
-M:AppKit.NSSegmentedCell.GetToolTip(System.IntPtr)
-M:AppKit.NSSegmentedCell.GetWidth(System.IntPtr)
-M:AppKit.NSSegmentedCell.InsertSegmentAfterSelection
-M:AppKit.NSSegmentedCell.InsertSegmentBeforeSelection
-M:AppKit.NSSegmentedCell.IsEnabled(System.IntPtr)
-M:AppKit.NSSegmentedCell.IsSelected(System.IntPtr)
-M:AppKit.NSSegmentedCell.SelectSegment(System.IntPtr)
-M:AppKit.NSSegmentedCell.SetEnabled(System.Boolean,System.IntPtr)
-M:AppKit.NSSegmentedCell.SetImage(AppKit.NSImage,System.IntPtr)
-M:AppKit.NSSegmentedCell.SetImageScaling(AppKit.NSImageScaling,System.IntPtr)
-M:AppKit.NSSegmentedCell.SetLabel(System.String,System.IntPtr)
-M:AppKit.NSSegmentedCell.SetMenu(AppKit.NSMenu,System.IntPtr)
-M:AppKit.NSSegmentedCell.SetSelected(System.Boolean,System.IntPtr)
-M:AppKit.NSSegmentedCell.SetTag(System.IntPtr,System.IntPtr)
-M:AppKit.NSSegmentedCell.SetToolTip(System.String,System.IntPtr)
-M:AppKit.NSSegmentedCell.SetWidth(System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSSegmentedControl.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSSegmentedControl.Compress(AppKit.NSUserInterfaceCompressionOptions[])
M:AppKit.NSSegmentedControl.FromImages(AppKit.NSImage[],AppKit.NSSegmentSwitchTracking,System.Action)
M:AppKit.NSSegmentedControl.FromLabels(System.String[],AppKit.NSSegmentSwitchTracking,System.Action)
-M:AppKit.NSSegmentedControl.GetAlignment(System.IntPtr)
-M:AppKit.NSSegmentedControl.GetImage(System.IntPtr)
-M:AppKit.NSSegmentedControl.GetImageScaling(System.IntPtr)
-M:AppKit.NSSegmentedControl.GetLabel(System.IntPtr)
-M:AppKit.NSSegmentedControl.GetMenu(System.IntPtr)
-M:AppKit.NSSegmentedControl.GetMinimumSize(AppKit.NSUserInterfaceCompressionOptions[])
-M:AppKit.NSSegmentedControl.GetTag(System.IntPtr)
-M:AppKit.NSSegmentedControl.GetToolTip(System.IntPtr)
-M:AppKit.NSSegmentedControl.GetValueForSelectedSegment
-M:AppKit.NSSegmentedControl.GetWidth(System.IntPtr)
-M:AppKit.NSSegmentedControl.IsEnabled(System.IntPtr)
-M:AppKit.NSSegmentedControl.IsSelectedForSegment(System.IntPtr)
-M:AppKit.NSSegmentedControl.SelectSegment(System.IntPtr)
-M:AppKit.NSSegmentedControl.SetAlignment(AppKit.NSTextAlignment,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetEnabled(System.Boolean,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetImage(AppKit.NSImage,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetImageScaling(AppKit.NSImageScaling,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetLabel(System.String,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetMenu(AppKit.NSMenu,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetSelected(System.Boolean,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetShowsMenuIndicator(System.Boolean,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetTag(System.IntPtr,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetToolTip(System.String,System.IntPtr)
-M:AppKit.NSSegmentedControl.SetWidth(System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSSegmentedControl.ShowsMenuIndicator(System.IntPtr)
M:AppKit.NSSegmentedControl.UnselectAllSegments
M:AppKit.NSSeguePerforming_Extensions.PerformSegue(AppKit.INSSeguePerforming,System.String,Foundation.NSObject)
M:AppKit.NSSeguePerforming_Extensions.PrepareForSegue(AppKit.INSSeguePerforming,AppKit.NSStoryboardSegue,Foundation.NSObject)
M:AppKit.NSSeguePerforming_Extensions.ShouldPerformSegue(AppKit.INSSeguePerforming,System.String,Foundation.NSObject)
-M:AppKit.NSSeguePerforming.PerformSegue(System.String,Foundation.NSObject)
-M:AppKit.NSSeguePerforming.PrepareForSegue(AppKit.NSStoryboardSegue,Foundation.NSObject)
-M:AppKit.NSSeguePerforming.ShouldPerformSegue(System.String,Foundation.NSObject)
M:AppKit.NSServicesMenuRequestor_Extensions.ReadSelectionFromPasteboard(AppKit.INSServicesMenuRequestor,AppKit.NSPasteboard)
M:AppKit.NSServicesMenuRequestor_Extensions.WriteSelectionToPasteboard(AppKit.INSServicesMenuRequestor,AppKit.NSPasteboard,System.String[])
M:AppKit.NSShadow.Copy(Foundation.NSZone)
M:AppKit.NSShadow.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSShadow.Set
-M:AppKit.NSSharingCollaborationModeRestriction.#ctor(AppKit.NSSharingCollaborationMode,System.String,System.String,System.String,System.String,Foundation.NSUrl)
-M:AppKit.NSSharingCollaborationModeRestriction.#ctor(AppKit.NSSharingCollaborationMode,System.String,System.String,System.String)
-M:AppKit.NSSharingCollaborationModeRestriction.#ctor(AppKit.NSSharingCollaborationMode,System.String,System.String)
-M:AppKit.NSSharingCollaborationModeRestriction.#ctor(AppKit.NSSharingCollaborationMode)
M:AppKit.NSSharingCollaborationModeRestriction.Copy(Foundation.NSZone)
M:AppKit.NSSharingCollaborationModeRestriction.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSSharingService.#ctor(System.String,AppKit.NSImage,AppKit.NSImage,AppKit.NSSharingServiceHandler)
M:AppKit.NSSharingService.add_DidFailToShareItems(System.EventHandler{AppKit.NSSharingServiceDidFailToShareItemsEventArgs})
M:AppKit.NSSharingService.add_DidShareItems(System.EventHandler{AppKit.NSSharingServiceItemsEventArgs})
M:AppKit.NSSharingService.add_WillShareItems(System.EventHandler{AppKit.NSSharingServiceItemsEventArgs})
-M:AppKit.NSSharingService.CanPerformWithItems(Foundation.NSObject[])
M:AppKit.NSSharingService.Dispose(System.Boolean)
M:AppKit.NSSharingService.GetSharingService(AppKit.NSSharingServiceName)
-M:AppKit.NSSharingService.GetSharingService(Foundation.NSString)
-M:AppKit.NSSharingService.PerformWithItems(Foundation.NSObject[])
M:AppKit.NSSharingService.remove_DidFailToShareItems(System.EventHandler{AppKit.NSSharingServiceDidFailToShareItemsEventArgs})
M:AppKit.NSSharingService.remove_DidShareItems(System.EventHandler{AppKit.NSSharingServiceItemsEventArgs})
M:AppKit.NSSharingService.remove_WillShareItems(System.EventHandler{AppKit.NSSharingServiceItemsEventArgs})
-M:AppKit.NSSharingService.SharingServicesForItems(Foundation.NSObject[])
M:AppKit.NSSharingServiceDelegate_Extensions.CreateAnchoringView(AppKit.INSSharingServiceDelegate,AppKit.NSSharingService,CoreGraphics.CGRect@,AppKit.NSRectEdge@)
M:AppKit.NSSharingServiceDelegate_Extensions.DidFailToShareItems(AppKit.INSSharingServiceDelegate,AppKit.NSSharingService,Foundation.NSObject[],Foundation.NSError)
M:AppKit.NSSharingServiceDelegate_Extensions.DidShareItems(AppKit.INSSharingServiceDelegate,AppKit.NSSharingService,Foundation.NSObject[])
@@ -26711,232 +20929,52 @@ M:AppKit.NSSharingServiceDelegate_Extensions.SourceFrameOnScreenForShareItem(App
M:AppKit.NSSharingServiceDelegate_Extensions.SourceWindowForShareItems(AppKit.INSSharingServiceDelegate,AppKit.NSSharingService,Foundation.NSObject[],AppKit.NSSharingContentScope)
M:AppKit.NSSharingServiceDelegate_Extensions.TransitionImageForShareItem(AppKit.INSSharingServiceDelegate,AppKit.NSSharingService,AppKit.INSPasteboardWriting,CoreGraphics.CGRect)
M:AppKit.NSSharingServiceDelegate_Extensions.WillShareItems(AppKit.INSSharingServiceDelegate,AppKit.NSSharingService,Foundation.NSObject[])
-M:AppKit.NSSharingServiceDelegate.CreateAnchoringView(AppKit.NSSharingService,CoreGraphics.CGRect@,AppKit.NSRectEdge@)
-M:AppKit.NSSharingServiceDelegate.DidFailToShareItems(AppKit.NSSharingService,Foundation.NSObject[],Foundation.NSError)
-M:AppKit.NSSharingServiceDelegate.DidShareItems(AppKit.NSSharingService,Foundation.NSObject[])
-M:AppKit.NSSharingServiceDelegate.SourceFrameOnScreenForShareItem(AppKit.NSSharingService,AppKit.INSPasteboardWriting)
-M:AppKit.NSSharingServiceDelegate.SourceWindowForShareItems(AppKit.NSSharingService,Foundation.NSObject[],AppKit.NSSharingContentScope)
-M:AppKit.NSSharingServiceDelegate.TransitionImageForShareItem(AppKit.NSSharingService,AppKit.INSPasteboardWriting,CoreGraphics.CGRect)
-M:AppKit.NSSharingServiceDelegate.WillShareItems(AppKit.NSSharingService,Foundation.NSObject[])
M:AppKit.NSSharingServiceDidFailToShareItemsEventArgs.#ctor(Foundation.NSObject[],Foundation.NSError)
M:AppKit.NSSharingServiceItemsEventArgs.#ctor(Foundation.NSObject[])
-M:AppKit.NSSharingServicePicker.#ctor(Foundation.NSObject[])
M:AppKit.NSSharingServicePicker.add_DidChooseSharingService(System.EventHandler{AppKit.NSSharingServicePickerDidChooseSharingServiceEventArgs})
-M:AppKit.NSSharingServicePicker.Close
M:AppKit.NSSharingServicePicker.Dispose(System.Boolean)
M:AppKit.NSSharingServicePicker.remove_DidChooseSharingService(System.EventHandler{AppKit.NSSharingServicePickerDidChooseSharingServiceEventArgs})
-M:AppKit.NSSharingServicePicker.ShowRelativeToRect(CoreGraphics.CGRect,AppKit.NSView,AppKit.NSRectEdge)
M:AppKit.NSSharingServicePickerDelegate_Extensions.DelegateForSharingService(AppKit.INSSharingServicePickerDelegate,AppKit.NSSharingServicePicker,AppKit.NSSharingService)
M:AppKit.NSSharingServicePickerDelegate_Extensions.DidChooseSharingService(AppKit.INSSharingServicePickerDelegate,AppKit.NSSharingServicePicker,AppKit.NSSharingService)
M:AppKit.NSSharingServicePickerDelegate_Extensions.GetCollaborationModeRestrictions(AppKit.INSSharingServicePickerDelegate,AppKit.NSSharingServicePicker)
M:AppKit.NSSharingServicePickerDelegate_Extensions.SharingServicesForItems(AppKit.INSSharingServicePickerDelegate,AppKit.NSSharingServicePicker,Foundation.NSObject[],AppKit.NSSharingService[])
-M:AppKit.NSSharingServicePickerDelegate.DelegateForSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)
-M:AppKit.NSSharingServicePickerDelegate.DidChooseSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)
-M:AppKit.NSSharingServicePickerDelegate.GetCollaborationModeRestrictions(AppKit.NSSharingServicePicker)
-M:AppKit.NSSharingServicePickerDelegate.SharingServicesForItems(AppKit.NSSharingServicePicker,Foundation.NSObject[],AppKit.NSSharingService[])
M:AppKit.NSSharingServicePickerDidChooseSharingServiceEventArgs.#ctor(AppKit.NSSharingService)
-M:AppKit.NSSharingServicePickerToolbarItem.#ctor(System.String)
M:AppKit.NSSharingServicePickerToolbarItem.Dispose(System.Boolean)
-M:AppKit.NSSharingServicePickerToolbarItemDelegate.GetItems(AppKit.NSSharingServicePickerToolbarItem)
-M:AppKit.NSSharingServicePickerTouchBarItem.#ctor(System.String)
M:AppKit.NSSharingServicePickerTouchBarItem.Dispose(System.Boolean)
-M:AppKit.NSSharingServicePickerTouchBarItemDelegate.DelegateForSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)
-M:AppKit.NSSharingServicePickerTouchBarItemDelegate.DidChooseSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)
-M:AppKit.NSSharingServicePickerTouchBarItemDelegate.GetCollaborationModeRestrictions(AppKit.NSSharingServicePicker)
-M:AppKit.NSSharingServicePickerTouchBarItemDelegate.ItemsForSharingServicePickerTouchBarItem(AppKit.NSSharingServicePickerTouchBarItem)
-M:AppKit.NSSharingServicePickerTouchBarItemDelegate.SharingServicesForItems(AppKit.NSSharingServicePicker,Foundation.NSObject[],AppKit.NSSharingService[])
-M:AppKit.NSSlider.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSSlider.AcceptsFirstMouse(AppKit.NSEvent)
-M:AppKit.NSSlider.AccessibilityPerformDecrement
-M:AppKit.NSSlider.AccessibilityPerformIncrement
-M:AppKit.NSSlider.ClosestTickMarkValue(System.Double)
M:AppKit.NSSlider.FromTarget(System.Action)
M:AppKit.NSSlider.FromValue(System.Double,System.Double,System.Double,System.Action)
-M:AppKit.NSSlider.IndexOfTickMark(CoreGraphics.CGPoint)
-M:AppKit.NSSlider.RectOfTick(System.IntPtr)
-M:AppKit.NSSlider.TickMarkValue(System.IntPtr)
-M:AppKit.NSSliderAccessory.AccessibilityPerformCancel
-M:AppKit.NSSliderAccessory.AccessibilityPerformConfirm
-M:AppKit.NSSliderAccessory.AccessibilityPerformDecrement
-M:AppKit.NSSliderAccessory.AccessibilityPerformDelete
-M:AppKit.NSSliderAccessory.AccessibilityPerformIncrement
-M:AppKit.NSSliderAccessory.AccessibilityPerformPick
-M:AppKit.NSSliderAccessory.AccessibilityPerformPress
-M:AppKit.NSSliderAccessory.AccessibilityPerformRaise
-M:AppKit.NSSliderAccessory.AccessibilityPerformShowAlternateUI
-M:AppKit.NSSliderAccessory.AccessibilityPerformShowDefaultUI
-M:AppKit.NSSliderAccessory.AccessibilityPerformShowMenu
-M:AppKit.NSSliderAccessory.CreateAccessory(AppKit.NSImage)
M:AppKit.NSSliderAccessory.Dispose(System.Boolean)
M:AppKit.NSSliderAccessory.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSSliderAccessory.GetAccessibilityAttributedString(Foundation.NSRange)
-M:AppKit.NSSliderAccessory.GetAccessibilityCellForColumn(System.IntPtr,System.IntPtr)
-M:AppKit.NSSliderAccessory.GetAccessibilityFrame(Foundation.NSRange)
-M:AppKit.NSSliderAccessory.GetAccessibilityLayoutForScreen(CoreGraphics.CGPoint)
-M:AppKit.NSSliderAccessory.GetAccessibilityLayoutForScreen(CoreGraphics.CGSize)
-M:AppKit.NSSliderAccessory.GetAccessibilityLine(System.IntPtr)
-M:AppKit.NSSliderAccessory.GetAccessibilityRange(CoreGraphics.CGPoint)
-M:AppKit.NSSliderAccessory.GetAccessibilityRange(System.IntPtr)
-M:AppKit.NSSliderAccessory.GetAccessibilityRangeForLine(System.IntPtr)
-M:AppKit.NSSliderAccessory.GetAccessibilityRtf(Foundation.NSRange)
-M:AppKit.NSSliderAccessory.GetAccessibilityScreenForLayout(CoreGraphics.CGPoint)
-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.Copy(Foundation.NSZone)
-M:AppKit.NSSliderAccessoryBehavior.CreateBehavior(Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSSliderAccessoryBehavior.CreateBehavior(System.Action{AppKit.NSSliderAccessory})
M:AppKit.NSSliderAccessoryBehavior.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSSliderAccessoryBehavior.HandleAction(AppKit.NSSliderAccessory)
-M:AppKit.NSSliderCell.#ctor(AppKit.NSImage)
-M:AppKit.NSSliderCell.#ctor(System.String)
-M:AppKit.NSSliderCell.BarRectFlipped(System.Boolean)
-M:AppKit.NSSliderCell.ClosestTickMarkValue(System.Double)
-M:AppKit.NSSliderCell.DrawBar(CoreGraphics.CGRect,System.Boolean)
-M:AppKit.NSSliderCell.DrawKnob
-M:AppKit.NSSliderCell.DrawKnob(CoreGraphics.CGRect)
-M:AppKit.NSSliderCell.IndexOfTickMark(CoreGraphics.CGPoint)
-M:AppKit.NSSliderCell.KnobRectFlipped(System.Boolean)
-M:AppKit.NSSliderCell.PrefersTrackingUntilMouseUp
-M:AppKit.NSSliderCell.RectOfTickMark(System.IntPtr)
-M:AppKit.NSSliderCell.TickMarkValue(System.IntPtr)
-M:AppKit.NSSliderTouchBarItem.#ctor(System.String)
M:AppKit.NSSliderTouchBarItem.add_Activated(System.EventHandler)
M:AppKit.NSSliderTouchBarItem.Dispose(System.Boolean)
M:AppKit.NSSliderTouchBarItem.remove_Activated(System.EventHandler)
-M:AppKit.NSSound.#ctor(AppKit.NSPasteboard)
-M:AppKit.NSSound.#ctor(Foundation.NSData)
-M:AppKit.NSSound.#ctor(Foundation.NSUrl,System.Boolean)
-M:AppKit.NSSound.#ctor(System.String,System.Boolean)
M:AppKit.NSSound.add_DidFinishPlaying(System.EventHandler{AppKit.NSSoundFinishedEventArgs})
-M:AppKit.NSSound.CanCreateFromPasteboard(AppKit.NSPasteboard)
M:AppKit.NSSound.Copy(Foundation.NSZone)
M:AppKit.NSSound.Dispose(System.Boolean)
-M:AppKit.NSSound.Duration
M:AppKit.NSSound.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSSound.FromName(System.String)
-M:AppKit.NSSound.GetName
-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.Pause
-M:AppKit.NSSound.Play
M:AppKit.NSSound.remove_DidFinishPlaying(System.EventHandler{AppKit.NSSoundFinishedEventArgs})
-M:AppKit.NSSound.Resume
-M:AppKit.NSSound.SetName(System.String)
-M:AppKit.NSSound.SoundUnfilteredTypes
-M:AppKit.NSSound.Stop
-M:AppKit.NSSound.WriteToPasteboard(AppKit.NSPasteboard)
M:AppKit.NSSoundDelegate_Extensions.DidFinishPlaying(AppKit.INSSoundDelegate,AppKit.NSSound,System.Boolean)
-M:AppKit.NSSoundDelegate.DidFinishPlaying(AppKit.NSSound,System.Boolean)
M:AppKit.NSSoundFinishedEventArgs.#ctor(System.Boolean)
M:AppKit.NSSpeechRecognizer.Dispose(System.Boolean)
-M:AppKit.NSSpeechRecognizer.StartListening
-M:AppKit.NSSpeechRecognizer.StopListening
M:AppKit.NSSpeechRecognizerDelegate_Extensions.DidRecognizeCommand(AppKit.INSSpeechRecognizerDelegate,AppKit.NSSpeechRecognizer,System.String)
-M:AppKit.NSSpeechRecognizerDelegate.DidRecognizeCommand(AppKit.NSSpeechRecognizer,System.String)
-M:AppKit.NSSpeechSynthesizer.#ctor(System.String)
-M:AppKit.NSSpeechSynthesizer.AddSpeechDictionary(Foundation.NSDictionary)
-M:AppKit.NSSpeechSynthesizer.AttributesForVoice(System.String)
-M:AppKit.NSSpeechSynthesizer.ContinueSpeaking
M:AppKit.NSSpeechSynthesizer.Dispose(System.Boolean)
-M:AppKit.NSSpeechSynthesizer.GetVoice
-M:AppKit.NSSpeechSynthesizer.ObjectForProperty(System.String,Foundation.NSError@)
-M:AppKit.NSSpeechSynthesizer.PauseSpeaking(AppKit.NSSpeechBoundary)
-M:AppKit.NSSpeechSynthesizer.PhonemesFromText(System.String)
-M:AppKit.NSSpeechSynthesizer.SetObjectforProperty(Foundation.NSObject,System.String,Foundation.NSError@)
-M:AppKit.NSSpeechSynthesizer.SetVoice(System.String)
-M:AppKit.NSSpeechSynthesizer.StartSpeakingString(System.String)
-M:AppKit.NSSpeechSynthesizer.StartSpeakingStringtoURL(System.String,Foundation.NSUrl)
-M:AppKit.NSSpeechSynthesizer.StopSpeaking
-M:AppKit.NSSpeechSynthesizer.StopSpeaking(AppKit.NSSpeechBoundary)
M:AppKit.NSSpeechSynthesizerDelegate_Extensions.DidEncounterError(AppKit.INSSpeechSynthesizerDelegate,AppKit.NSSpeechSynthesizer,System.UIntPtr,System.String,System.String)
M:AppKit.NSSpeechSynthesizerDelegate_Extensions.DidEncounterSyncMessage(AppKit.INSSpeechSynthesizerDelegate,AppKit.NSSpeechSynthesizer,System.String)
M:AppKit.NSSpeechSynthesizerDelegate_Extensions.DidFinishSpeaking(AppKit.INSSpeechSynthesizerDelegate,AppKit.NSSpeechSynthesizer,System.Boolean)
M:AppKit.NSSpeechSynthesizerDelegate_Extensions.WillSpeakPhoneme(AppKit.INSSpeechSynthesizerDelegate,AppKit.NSSpeechSynthesizer,System.Int16)
M:AppKit.NSSpeechSynthesizerDelegate_Extensions.WillSpeakWord(AppKit.INSSpeechSynthesizerDelegate,AppKit.NSSpeechSynthesizer,Foundation.NSRange,System.String)
-M:AppKit.NSSpeechSynthesizerDelegate.DidEncounterError(AppKit.NSSpeechSynthesizer,System.UIntPtr,System.String,System.String)
-M:AppKit.NSSpeechSynthesizerDelegate.DidEncounterSyncMessage(AppKit.NSSpeechSynthesizer,System.String)
-M:AppKit.NSSpeechSynthesizerDelegate.DidFinishSpeaking(AppKit.NSSpeechSynthesizer,System.Boolean)
-M:AppKit.NSSpeechSynthesizerDelegate.WillSpeakPhoneme(AppKit.NSSpeechSynthesizer,System.Int16)
-M:AppKit.NSSpeechSynthesizerDelegate.WillSpeakWord(AppKit.NSSpeechSynthesizer,Foundation.NSRange,System.String)
-M:AppKit.NSSpellChecker.CheckGrammar(System.String,System.IntPtr,System.String,System.Boolean,System.IntPtr,Foundation.NSDictionary[])
-M:AppKit.NSSpellChecker.CheckSpelling(System.String,System.IntPtr,System.String,System.Boolean,System.IntPtr,System.IntPtr@)
-M:AppKit.NSSpellChecker.CheckSpelling(System.String,System.IntPtr)
M:AppKit.NSSpellChecker.CheckString(System.String,Foundation.NSRange,Foundation.NSTextCheckingTypes,AppKit.NSTextCheckingOptions,System.IntPtr,Foundation.NSOrthography@,System.IntPtr@)
-M:AppKit.NSSpellChecker.CheckString(System.String,Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,System.IntPtr,Foundation.NSOrthography@,System.IntPtr@)
-M:AppKit.NSSpellChecker.CloseSpellDocument(System.IntPtr)
-M:AppKit.NSSpellChecker.CompletionsForPartialWordRange(Foundation.NSRange,System.String,System.String,System.IntPtr)
-M:AppKit.NSSpellChecker.CountWords(System.String,System.String)
-M:AppKit.NSSpellChecker.DeletesAutospace(System.String,System.String,System.String)
-M:AppKit.NSSpellChecker.DismissCorrectionIndicator(AppKit.NSView)
-M:AppKit.NSSpellChecker.GetCorrection(Foundation.NSRange,System.String,System.String,System.IntPtr)
-M:AppKit.NSSpellChecker.GetLanguage
-M:AppKit.NSSpellChecker.GetLanguage(Foundation.NSRange,System.String,Foundation.NSOrthography)
-M:AppKit.NSSpellChecker.GuessesForWordRange(Foundation.NSRange,System.String,System.String,System.IntPtr)
-M:AppKit.NSSpellChecker.HasLearnedWord(System.String)
-M:AppKit.NSSpellChecker.IgnoredWords(System.IntPtr)
-M:AppKit.NSSpellChecker.IgnoreWord(System.String,System.IntPtr)
M:AppKit.NSSpellChecker.IsAutomaticDashSubstitutionEnabled
M:AppKit.NSSpellChecker.IsAutomaticQuoteSubstitutionEnabled
-M:AppKit.NSSpellChecker.LearnWord(System.String)
M:AppKit.NSSpellChecker.MenuForResults(Foundation.NSTextCheckingResult,System.String,AppKit.NSTextCheckingOptions,CoreGraphics.CGPoint,AppKit.NSView)
-M:AppKit.NSSpellChecker.MenuForResults(Foundation.NSTextCheckingResult,System.String,Foundation.NSDictionary,CoreGraphics.CGPoint,AppKit.NSView)
-M:AppKit.NSSpellChecker.PreventsAutocorrectionBefore(System.String,System.String)
-M:AppKit.NSSpellChecker.RecordResponse(AppKit.NSCorrectionResponse,System.String,System.String,System.String,System.IntPtr)
-M:AppKit.NSSpellChecker.RequestCandidates(Foundation.NSRange,System.String,System.UInt64,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr,System.Action{System.IntPtr,Foundation.NSTextCheckingResult[]})
M:AppKit.NSSpellChecker.RequestCandidatesAsync(Foundation.NSRange,System.String,System.UInt64,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr,System.IntPtr@)
M:AppKit.NSSpellChecker.RequestCandidatesAsync(Foundation.NSRange,System.String,System.UInt64,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr)
M:AppKit.NSSpellChecker.RequestChecking(System.String,Foundation.NSRange,Foundation.NSTextCheckingTypes,AppKit.NSTextCheckingOptions,System.IntPtr,System.Action{System.IntPtr,Foundation.NSTextCheckingResult[],Foundation.NSOrthography,System.IntPtr})
-M:AppKit.NSSpellChecker.RequestChecking(System.String,Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,System.IntPtr,System.Action{System.IntPtr,Foundation.NSTextCheckingResult[],Foundation.NSOrthography,System.IntPtr})
-M:AppKit.NSSpellChecker.SetIgnoredWords(System.String[],System.IntPtr)
-M:AppKit.NSSpellChecker.SetLanguage(System.String)
-M:AppKit.NSSpellChecker.SetWordFieldStringValue(System.String)
-M:AppKit.NSSpellChecker.ShowCorrectionIndicatorOfType(AppKit.NSCorrectionIndicatorType,System.String,System.String[],CoreGraphics.CGRect,AppKit.NSRulerView,AppKit.NSSpellCheckerShowCorrectionIndicatorOfTypeHandler)
-M:AppKit.NSSpellChecker.ShowInlinePrediction(Foundation.NSTextCheckingResult[],AppKit.INSTextInputClient)
-M:AppKit.NSSpellChecker.UnlearnWord(System.String)
-M:AppKit.NSSpellChecker.UpdatePanels
-M:AppKit.NSSpellChecker.UpdateSpellingPanelWithGrammarl(System.String,Foundation.NSDictionary)
-M:AppKit.NSSpellChecker.UpdateSpellingPanelWithMisspelledWord(System.String)
-M:AppKit.NSSpellChecker.UserQuotesArrayForLanguage(System.String)
M:AppKit.NSSpellCheckerCandidates.#ctor(System.IntPtr,Foundation.NSTextCheckingResult[])
-M:AppKit.NSSplitView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSSplitView.AddArrangedSubview(AppKit.NSView)
-M:AppKit.NSSplitView.AdjustSubviews
M:AppKit.NSSplitView.Dispose(System.Boolean)
-M:AppKit.NSSplitView.DrawDivider(CoreGraphics.CGRect)
-M:AppKit.NSSplitView.HoldingPriorityForSubview(System.IntPtr)
-M:AppKit.NSSplitView.InsertArrangedSubview(AppKit.NSView,System.IntPtr)
-M:AppKit.NSSplitView.IsSubviewCollapsed(AppKit.NSView)
-M:AppKit.NSSplitView.MaxPositionOfDivider(System.IntPtr)
-M:AppKit.NSSplitView.MinPositionOfDivider(System.IntPtr)
-M:AppKit.NSSplitView.RemoveArrangedSubview(AppKit.NSView)
-M:AppKit.NSSplitView.SetHoldingPriority(System.Single,System.IntPtr)
-M:AppKit.NSSplitView.SetPositionOfDivider(System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSSplitViewController.#ctor(System.String,Foundation.NSBundle)
-M:AppKit.NSSplitViewController.AddSplitViewItem(AppKit.NSSplitViewItem)
-M:AppKit.NSSplitViewController.CanCollapse(AppKit.NSSplitView,AppKit.NSView)
-M:AppKit.NSSplitViewController.ConstrainSplitPosition(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSSplitViewController.DidResizeSubviews(Foundation.NSNotification)
-M:AppKit.NSSplitViewController.GetAdditionalEffectiveRect(AppKit.NSSplitView,System.IntPtr)
-M:AppKit.NSSplitViewController.GetEffectiveRect(AppKit.NSSplitView,CoreGraphics.CGRect,CoreGraphics.CGRect,System.IntPtr)
-M:AppKit.NSSplitViewController.GetSplitViewItem(AppKit.NSViewController)
-M:AppKit.NSSplitViewController.InsertSplitViewItem(AppKit.NSSplitViewItem,System.IntPtr)
-M:AppKit.NSSplitViewController.RemoveSplitViewItem(AppKit.NSSplitViewItem)
-M:AppKit.NSSplitViewController.Resize(AppKit.NSSplitView,CoreGraphics.CGSize)
-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.ShouldCollapseForDoubleClick(AppKit.NSSplitView,AppKit.NSView,System.IntPtr)
-M:AppKit.NSSplitViewController.ShouldHideDivider(AppKit.NSSplitView,System.IntPtr)
-M:AppKit.NSSplitViewController.SplitViewWillResizeSubviews(Foundation.NSNotification)
-M:AppKit.NSSplitViewController.ToggleInspector(Foundation.NSObject)
-M:AppKit.NSSplitViewController.ToggleSidebar(Foundation.NSObject)
-M:AppKit.NSSplitViewController.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
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)
@@ -26949,59 +20987,15 @@ M:AppKit.NSSplitViewDelegate_Extensions.ShouldAdjustSize(AppKit.INSSplitViewDele
M:AppKit.NSSplitViewDelegate_Extensions.ShouldCollapseForDoubleClick(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,AppKit.NSView,System.IntPtr)
M:AppKit.NSSplitViewDelegate_Extensions.ShouldHideDivider(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,System.IntPtr)
M:AppKit.NSSplitViewDelegate_Extensions.SplitViewWillResizeSubviews(AppKit.INSSplitViewDelegate,Foundation.NSNotification)
-M:AppKit.NSSplitViewDelegate.CanCollapse(AppKit.NSSplitView,AppKit.NSView)
-M:AppKit.NSSplitViewDelegate.ConstrainSplitPosition(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSSplitViewDelegate.DidResizeSubviews(Foundation.NSNotification)
-M:AppKit.NSSplitViewDelegate.GetAdditionalEffectiveRect(AppKit.NSSplitView,System.IntPtr)
-M:AppKit.NSSplitViewDelegate.GetEffectiveRect(AppKit.NSSplitView,CoreGraphics.CGRect,CoreGraphics.CGRect,System.IntPtr)
-M:AppKit.NSSplitViewDelegate.Resize(AppKit.NSSplitView,CoreGraphics.CGSize)
-M:AppKit.NSSplitViewDelegate.SetMaxCoordinateOfSubview(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSSplitViewDelegate.SetMinCoordinateOfSubview(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSSplitViewDelegate.ShouldAdjustSize(AppKit.NSSplitView,AppKit.NSView)
-M:AppKit.NSSplitViewDelegate.ShouldCollapseForDoubleClick(AppKit.NSSplitView,AppKit.NSView,System.IntPtr)
-M:AppKit.NSSplitViewDelegate.ShouldHideDivider(AppKit.NSSplitView,System.IntPtr)
-M:AppKit.NSSplitViewDelegate.SplitViewWillResizeSubviews(Foundation.NSNotification)
M:AppKit.NSSplitViewDividerIndexEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSSplitViewItem.AnimationFor(Foundation.NSString)
-M:AppKit.NSSplitViewItem.CreateContentList(AppKit.NSViewController)
-M:AppKit.NSSplitViewItem.CreateInspector(AppKit.NSViewController)
-M:AppKit.NSSplitViewItem.CreateSidebar(AppKit.NSViewController)
-M:AppKit.NSSplitViewItem.DefaultAnimationFor(Foundation.NSString)
M:AppKit.NSSplitViewItem.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSSplitViewItem.FromViewController(AppKit.NSViewController)
M:AppKit.NSSpringLoadingDestination_Extensions.DraggingEnded(AppKit.INSSpringLoadingDestination,AppKit.INSDraggingInfo)
M:AppKit.NSSpringLoadingDestination_Extensions.Entered(AppKit.INSSpringLoadingDestination,AppKit.INSDraggingInfo)
M:AppKit.NSSpringLoadingDestination_Extensions.Exited(AppKit.INSSpringLoadingDestination,AppKit.INSDraggingInfo)
M:AppKit.NSSpringLoadingDestination_Extensions.Updated(AppKit.INSSpringLoadingDestination,AppKit.INSDraggingInfo)
-M:AppKit.NSSpringLoadingDestination.Activated(System.Boolean,AppKit.INSDraggingInfo)
-M:AppKit.NSSpringLoadingDestination.DraggingEnded(AppKit.INSDraggingInfo)
-M:AppKit.NSSpringLoadingDestination.Entered(AppKit.INSDraggingInfo)
-M:AppKit.NSSpringLoadingDestination.Exited(AppKit.INSDraggingInfo)
-M:AppKit.NSSpringLoadingDestination.HighlightChanged(AppKit.INSDraggingInfo)
-M:AppKit.NSSpringLoadingDestination.Updated(AppKit.INSDraggingInfo)
-M:AppKit.NSStackView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSStackView.AddArrangedSubview(AppKit.NSView)
-M:AppKit.NSStackView.AddView(AppKit.NSView,AppKit.NSStackViewGravity)
-M:AppKit.NSStackView.ClippingResistancePriorityForOrientation(AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSStackView.CustomSpacingAfterView(AppKit.NSView)
M:AppKit.NSStackView.Dispose(System.Boolean)
-M:AppKit.NSStackView.FromViews(AppKit.NSView[])
-M:AppKit.NSStackView.HuggingPriority(AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSStackView.InsertArrangedSubview(AppKit.NSView,System.IntPtr)
-M:AppKit.NSStackView.InsertView(AppKit.NSView,System.UIntPtr,AppKit.NSStackViewGravity)
-M:AppKit.NSStackView.RemoveArrangedSubview(AppKit.NSView)
-M:AppKit.NSStackView.RemoveView(AppKit.NSView)
-M:AppKit.NSStackView.SetClippingResistancePriority(System.Single,AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSStackView.SetCustomSpacing(System.Runtime.InteropServices.NFloat,AppKit.NSView)
-M:AppKit.NSStackView.SetHuggingPriority(System.Single,AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSStackView.SetViews(AppKit.NSView[],AppKit.NSStackViewGravity)
-M:AppKit.NSStackView.SetVisibilityPriority(System.Single,AppKit.NSView)
-M:AppKit.NSStackView.ViewsInGravity(AppKit.NSStackViewGravity)
-M:AppKit.NSStackView.VisibilityPriority(AppKit.NSView)
M:AppKit.NSStackViewDelegate_Extensions.DidReattachViews(AppKit.INSStackViewDelegate,AppKit.NSStackView,AppKit.NSView[])
M:AppKit.NSStackViewDelegate_Extensions.WillDetachViews(AppKit.INSStackViewDelegate,AppKit.NSStackView,AppKit.NSView[])
-M:AppKit.NSStackViewDelegate.DidReattachViews(AppKit.NSStackView,AppKit.NSView[])
-M:AppKit.NSStackViewDelegate.WillDetachViews(AppKit.NSStackView,AppKit.NSView[])
M:AppKit.NSStandardKeyBindingMethods.QuickLookPreviewItems(AppKit.NSResponder,Foundation.NSObject)
M:AppKit.NSStandardKeyBindingResponding_Extensions.CancelOperation(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
M:AppKit.NSStandardKeyBindingResponding_Extensions.CapitalizeWord(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
@@ -27100,29 +21094,10 @@ M:AppKit.NSStandardKeyBindingResponding_Extensions.TransposeWords(AppKit.INSStan
M:AppKit.NSStandardKeyBindingResponding_Extensions.UppercaseWord(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
M:AppKit.NSStandardKeyBindingResponding_Extensions.Yank(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
M:AppKit.NSStatusBar.CreateStatusItem(AppKit.NSStatusItemLength)
-M:AppKit.NSStatusBar.CreateStatusItem(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSStatusBar.RemoveStatusItem(AppKit.NSStatusItem)
-M:AppKit.NSStatusBarButton.#ctor(CoreGraphics.CGRect)
M:AppKit.NSStatusItem.add_DoubleClick(System.EventHandler)
M:AppKit.NSStatusItem.Dispose(System.Boolean)
-M:AppKit.NSStatusItem.DrawStatusBarBackground(CoreGraphics.CGRect,System.Boolean)
-M:AppKit.NSStatusItem.PopUpStatusItemMenu(AppKit.NSMenu)
M:AppKit.NSStatusItem.remove_DoubleClick(System.EventHandler)
-M:AppKit.NSStatusItem.SendActionOn(AppKit.NSTouchPhase)
-M:AppKit.NSStepper.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSStepper.AccessibilityPerformDecrement
-M:AppKit.NSStepper.AccessibilityPerformIncrement
-M:AppKit.NSStepperTouchBarItem.Create(AppKit.NSTouchBarItemIdentifier,Foundation.NSFormatter)
-M:AppKit.NSStepperTouchBarItem.Create(AppKit.NSTouchBarItemIdentifier,System.Action{CoreGraphics.CGRect,System.Double})
M:AppKit.NSStepperTouchBarItem.Dispose(System.Boolean)
-M:AppKit.NSStoryboard.FromName(System.String,Foundation.NSBundle)
-M:AppKit.NSStoryboard.InstantiateController(System.String,AppKit.NSStoryboardControllerCreator)
-M:AppKit.NSStoryboard.InstantiateControllerWithIdentifier(System.String)
-M:AppKit.NSStoryboard.InstantiateInitialController
-M:AppKit.NSStoryboard.InstantiateInitialController(AppKit.NSStoryboardControllerCreator)
-M:AppKit.NSStoryboardSegue.#ctor(System.String,Foundation.NSObject,Foundation.NSObject)
-M:AppKit.NSStoryboardSegue.FromIdentifier(System.String,Foundation.NSObject,Foundation.NSObject,System.Action)
-M:AppKit.NSStoryboardSegue.Perform
M:AppKit.NSStringAttributes.#ctor
M:AppKit.NSStringAttributes.#ctor(Foundation.NSDictionary)
M:AppKit.NSStringAttributes.SetStrikethroughStyle(Foundation.NSUnderlineStyle,AppKit.NSUnderlinePattern,System.Boolean)
@@ -27142,30 +21117,9 @@ 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.NSSwitch.AccessibilityPerformDecrement
-M:AppKit.NSSwitch.AccessibilityPerformIncrement
-M:AppKit.NSSwitch.AccessibilityPerformPress
-M:AppKit.NSTableCellView.#ctor(CoreGraphics.CGRect)
M:AppKit.NSTableCellView.Dispose(System.Boolean)
-M:AppKit.NSTableColumn.#ctor(Foundation.NSString)
M:AppKit.NSTableColumn.#ctor(System.String)
-M:AppKit.NSTableColumn.DataCellForRow(System.IntPtr)
M:AppKit.NSTableColumn.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTableColumn.SizeToFit
-M:AppKit.NSTableHeaderCell.#ctor(System.String)
-M:AppKit.NSTableHeaderCell.DrawSortIndicator(CoreGraphics.CGRect,AppKit.NSView,System.Boolean,System.IntPtr)
-M:AppKit.NSTableHeaderCell.GetSortIndicatorRect(CoreGraphics.CGRect)
-M:AppKit.NSTableHeaderView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSTableHeaderView.GetColumn(CoreGraphics.CGPoint)
-M:AppKit.NSTableHeaderView.GetHeaderRect(System.IntPtr)
-M:AppKit.NSTableHeaderView.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr)
-M:AppKit.NSTableRowView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSTableRowView.DrawBackground(CoreGraphics.CGRect)
-M:AppKit.NSTableRowView.DrawDraggingDestinationFeedback(CoreGraphics.CGRect)
-M:AppKit.NSTableRowView.DrawSelection(CoreGraphics.CGRect)
-M:AppKit.NSTableRowView.DrawSeparator(CoreGraphics.CGRect)
-M:AppKit.NSTableRowView.ViewAtColumn(System.IntPtr)
-M:AppKit.NSTableView.#ctor(CoreGraphics.CGRect)
M:AppKit.NSTableView.add_ColumnDidMove(System.EventHandler)
M:AppKit.NSTableView.add_ColumnDidResize(System.EventHandler)
M:AppKit.NSTableView.add_DidAddRowView(System.EventHandler{AppKit.NSTableViewRowEventArgs})
@@ -27178,53 +21132,7 @@ M:AppKit.NSTableView.add_SelectionDidChange(System.EventHandler)
M:AppKit.NSTableView.add_SelectionIsChanging(System.EventHandler)
M:AppKit.NSTableView.add_UserDidChangeVisibility(System.EventHandler{AppKit.NSTableViewUserCanChangeColumnsVisibilityEventArgs})
M:AppKit.NSTableView.add_WillDisplayCell(System.EventHandler{AppKit.NSTableViewCellEventArgs})
-M:AppKit.NSTableView.AddColumn(AppKit.NSTableColumn)
-M:AppKit.NSTableView.BeginUpdates
-M:AppKit.NSTableView.CanDragRows(Foundation.NSIndexSet,CoreGraphics.CGPoint)
-M:AppKit.NSTableView.ColumnForView(AppKit.NSView)
-M:AppKit.NSTableView.DeselectAll(Foundation.NSObject)
-M:AppKit.NSTableView.DeselectColumn(System.IntPtr)
-M:AppKit.NSTableView.DeselectRow(System.IntPtr)
M:AppKit.NSTableView.Dispose(System.Boolean)
-M:AppKit.NSTableView.DraggedImageBeganAt(AppKit.NSImage,CoreGraphics.CGPoint)
-M:AppKit.NSTableView.DraggedImageEndedAtDeposited(AppKit.NSImage,CoreGraphics.CGPoint,System.Boolean)
-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.DragImageForRows(Foundation.NSIndexSet,AppKit.NSTableColumn[],AppKit.NSEvent,CoreGraphics.CGPoint@)
-M:AppKit.NSTableView.DrawBackground(CoreGraphics.CGRect)
-M:AppKit.NSTableView.DrawGrid(CoreGraphics.CGRect)
-M:AppKit.NSTableView.DrawRow(System.IntPtr,CoreGraphics.CGRect)
-M:AppKit.NSTableView.EditColumn(System.IntPtr,System.IntPtr,AppKit.NSEvent,System.Boolean)
-M:AppKit.NSTableView.EndUpdates
-M:AppKit.NSTableView.EnumerateAvailableRowViews(AppKit.NSTableViewRowHandler)
-M:AppKit.NSTableView.FindColumn(Foundation.NSString)
-M:AppKit.NSTableView.FindTableColumn(Foundation.NSString)
-M:AppKit.NSTableView.GetCell(System.IntPtr,System.IntPtr)
-M:AppKit.NSTableView.GetCellFrame(System.IntPtr,System.IntPtr)
-M:AppKit.NSTableView.GetColumn(CoreGraphics.CGPoint)
-M:AppKit.NSTableView.GetColumnIndexesInRect(CoreGraphics.CGRect)
-M:AppKit.NSTableView.GetIndicatorImage(AppKit.NSTableColumn)
-M:AppKit.NSTableView.GetRow(CoreGraphics.CGPoint)
-M:AppKit.NSTableView.GetRowView(System.IntPtr,System.Boolean)
-M:AppKit.NSTableView.GetView(System.IntPtr,System.IntPtr,System.Boolean)
-M:AppKit.NSTableView.HideRows(Foundation.NSIndexSet,AppKit.NSTableViewAnimation)
-M:AppKit.NSTableView.HighlightSelection(CoreGraphics.CGRect)
-M:AppKit.NSTableView.InsertRows(Foundation.NSIndexSet,AppKit.NSTableViewAnimation)
-M:AppKit.NSTableView.IsColumnSelected(System.IntPtr)
-M:AppKit.NSTableView.IsRowSelected(System.IntPtr)
-M:AppKit.NSTableView.MakeView(System.String,Foundation.NSObject)
-M:AppKit.NSTableView.MoveColumn(System.IntPtr,System.IntPtr)
-M:AppKit.NSTableView.MoveRow(System.IntPtr,System.IntPtr)
-M:AppKit.NSTableView.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl)
-M:AppKit.NSTableView.NoteHeightOfRowsWithIndexesChanged(Foundation.NSIndexSet)
-M:AppKit.NSTableView.NoteNumberOfRowsChanged
-M:AppKit.NSTableView.PerformClick(System.IntPtr,System.IntPtr)
-M:AppKit.NSTableView.RectForColumn(System.IntPtr)
-M:AppKit.NSTableView.RectForRow(System.IntPtr)
-M:AppKit.NSTableView.RegisterNib(AppKit.NSNib,System.String)
-M:AppKit.NSTableView.ReloadData
-M:AppKit.NSTableView.ReloadData(Foundation.NSIndexSet,Foundation.NSIndexSet)
M:AppKit.NSTableView.remove_ColumnDidMove(System.EventHandler)
M:AppKit.NSTableView.remove_ColumnDidResize(System.EventHandler)
M:AppKit.NSTableView.remove_DidAddRowView(System.EventHandler{AppKit.NSTableViewRowEventArgs})
@@ -27237,34 +21145,8 @@ M:AppKit.NSTableView.remove_SelectionDidChange(System.EventHandler)
M:AppKit.NSTableView.remove_SelectionIsChanging(System.EventHandler)
M:AppKit.NSTableView.remove_UserDidChangeVisibility(System.EventHandler{AppKit.NSTableViewUserCanChangeColumnsVisibilityEventArgs})
M:AppKit.NSTableView.remove_WillDisplayCell(System.EventHandler{AppKit.NSTableViewCellEventArgs})
-M:AppKit.NSTableView.RemoveColumn(AppKit.NSTableColumn)
-M:AppKit.NSTableView.RemoveRows(Foundation.NSIndexSet,AppKit.NSTableViewAnimation)
-M:AppKit.NSTableView.RowForView(AppKit.NSView)
-M:AppKit.NSTableView.RowsInRect(CoreGraphics.CGRect)
-M:AppKit.NSTableView.RowViewAdded(AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSTableView.RowViewRemoved(AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSTableView.ScrollColumnToVisible(System.IntPtr)
-M:AppKit.NSTableView.ScrollRowToVisible(System.IntPtr)
-M:AppKit.NSTableView.SelectAll(Foundation.NSObject)
M:AppKit.NSTableView.SelectColumn(System.IntPtr,System.Boolean)
-M:AppKit.NSTableView.SelectColumns(Foundation.NSIndexSet,System.Boolean)
M:AppKit.NSTableView.SelectRow(System.IntPtr,System.Boolean)
-M:AppKit.NSTableView.SelectRows(Foundation.NSIndexSet,System.Boolean)
-M:AppKit.NSTableView.SetDraggingSourceOperationMask(AppKit.NSDragOperation,System.Boolean)
-M:AppKit.NSTableView.SetDropRowDropOperation(System.IntPtr,AppKit.NSTableViewDropOperation)
-M:AppKit.NSTableView.SetIndicatorImage(AppKit.NSImage,AppKit.NSTableColumn)
-M:AppKit.NSTableView.ShouldFocusCell(AppKit.NSCell,System.IntPtr,System.IntPtr)
-M:AppKit.NSTableView.SizeLastColumnToFit
-M:AppKit.NSTableView.SizeToFit
-M:AppKit.NSTableView.TableColumns
-M:AppKit.NSTableView.TextDidBeginEditing(Foundation.NSNotification)
-M:AppKit.NSTableView.TextDidChange(Foundation.NSNotification)
-M:AppKit.NSTableView.TextDidEndEditing(Foundation.NSNotification)
-M:AppKit.NSTableView.TextShouldBeginEditing(AppKit.NSText)
-M:AppKit.NSTableView.TextShouldEndEditing(AppKit.NSText)
-M:AppKit.NSTableView.Tile
-M:AppKit.NSTableView.UnhideRows(Foundation.NSIndexSet,AppKit.NSTableViewAnimation)
-M:AppKit.NSTableView.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
M:AppKit.NSTableViewCellEventArgs.#ctor(Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.NSTableViewDataSource_Extensions.AcceptDrop(AppKit.INSTableViewDataSource,AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
M:AppKit.NSTableViewDataSource_Extensions.DraggingSessionEnded(AppKit.INSTableViewDataSource,AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
@@ -27278,18 +21160,6 @@ M:AppKit.NSTableViewDataSource_Extensions.SortDescriptorsChanged(AppKit.INSTable
M:AppKit.NSTableViewDataSource_Extensions.UpdateDraggingItems(AppKit.INSTableViewDataSource,AppKit.NSTableView,AppKit.INSDraggingInfo)
M:AppKit.NSTableViewDataSource_Extensions.ValidateDrop(AppKit.INSTableViewDataSource,AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
M:AppKit.NSTableViewDataSource_Extensions.WriteRows(AppKit.INSTableViewDataSource,AppKit.NSTableView,Foundation.NSIndexSet,AppKit.NSPasteboard)
-M:AppKit.NSTableViewDataSource.AcceptDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
-M:AppKit.NSTableViewDataSource.DraggingSessionEnded(AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.NSTableViewDataSource.DraggingSessionWillBegin(AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet)
-M:AppKit.NSTableViewDataSource.FilesDropped(AppKit.NSTableView,Foundation.NSUrl,Foundation.NSIndexSet)
-M:AppKit.NSTableViewDataSource.GetObjectValue(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDataSource.GetPasteboardWriterForRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDataSource.GetRowCount(AppKit.NSTableView)
-M:AppKit.NSTableViewDataSource.SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDataSource.SortDescriptorsChanged(AppKit.NSTableView,Foundation.NSSortDescriptor[])
-M:AppKit.NSTableViewDataSource.UpdateDraggingItems(AppKit.NSTableView,AppKit.INSDraggingInfo)
-M:AppKit.NSTableViewDataSource.ValidateDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
-M:AppKit.NSTableViewDataSource.WriteRows(AppKit.NSTableView,Foundation.NSIndexSet,AppKit.NSPasteboard)
M:AppKit.NSTableViewDelegate_Extensions.ColumnDidMove(AppKit.INSTableViewDelegate,Foundation.NSNotification)
M:AppKit.NSTableViewDelegate_Extensions.ColumnDidResize(AppKit.INSTableViewDelegate,Foundation.NSNotification)
M:AppKit.NSTableViewDelegate_Extensions.CoreGetRowView(AppKit.INSTableViewDelegate,AppKit.NSTableView,System.IntPtr)
@@ -27321,314 +21191,60 @@ M:AppKit.NSTableViewDelegate_Extensions.ShouldTypeSelect(AppKit.INSTableViewDele
M:AppKit.NSTableViewDelegate_Extensions.UserCanChangeVisibility(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn)
M:AppKit.NSTableViewDelegate_Extensions.UserDidChangeVisibility(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn[])
M:AppKit.NSTableViewDelegate_Extensions.WillDisplayCell(AppKit.INSTableViewDelegate,AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDelegate.ColumnDidMove(Foundation.NSNotification)
-M:AppKit.NSTableViewDelegate.ColumnDidResize(Foundation.NSNotification)
-M:AppKit.NSTableViewDelegate.CoreGetRowView(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDelegate.DidAddRowView(AppKit.NSTableView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSTableViewDelegate.DidClickTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewDelegate.DidDragTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewDelegate.DidRemoveRowView(AppKit.NSTableView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSTableViewDelegate.GetDataCell(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDelegate.GetNextTypeSelectMatch(AppKit.NSTableView,System.IntPtr,System.IntPtr,System.String)
-M:AppKit.NSTableViewDelegate.GetRowHeight(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDelegate.GetSelectionIndexes(AppKit.NSTableView,Foundation.NSIndexSet)
-M:AppKit.NSTableViewDelegate.GetSelectString(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDelegate.GetSizeToFitColumnWidth(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDelegate.GetToolTip(AppKit.NSTableView,AppKit.NSCell,CoreGraphics.CGRect@,AppKit.NSTableColumn,System.IntPtr,CoreGraphics.CGPoint)
-M:AppKit.NSTableViewDelegate.GetViewForItem(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDelegate.IsGroupRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDelegate.MouseDownInHeaderOfTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewDelegate.RowActions(AppKit.NSTableView,System.IntPtr,AppKit.NSTableRowActionEdge)
-M:AppKit.NSTableViewDelegate.SelectionDidChange(Foundation.NSNotification)
-M:AppKit.NSTableViewDelegate.SelectionIsChanging(Foundation.NSNotification)
-M:AppKit.NSTableViewDelegate.SelectionShouldChange(AppKit.NSTableView)
-M:AppKit.NSTableViewDelegate.ShouldEditTableColumn(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDelegate.ShouldReorder(AppKit.NSTableView,System.IntPtr,System.IntPtr)
-M:AppKit.NSTableViewDelegate.ShouldSelectRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDelegate.ShouldSelectTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewDelegate.ShouldShowCellExpansion(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDelegate.ShouldTrackCell(AppKit.NSTableView,AppKit.NSCell,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDelegate.ShouldTypeSelect(AppKit.NSTableView,AppKit.NSEvent,System.String)
-M:AppKit.NSTableViewDelegate.UserCanChangeVisibility(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewDelegate.UserDidChangeVisibility(AppKit.NSTableView,AppKit.NSTableColumn[])
-M:AppKit.NSTableViewDelegate.WillDisplayCell(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDiffableDataSource`2.#ctor(AppKit.NSTableView,AppKit.NSTableViewDiffableDataSourceCellProvider)
-M:AppKit.NSTableViewDiffableDataSource`2.AcceptDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
-M:AppKit.NSTableViewDiffableDataSource`2.ApplySnapshot(AppKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean,System.Action)
-M:AppKit.NSTableViewDiffableDataSource`2.ApplySnapshot(AppKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
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.GetItemIdentifier(System.IntPtr)
-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.GetRowForItemIdentifier(`1)
-M:AppKit.NSTableViewDiffableDataSource`2.GetRowForSectionIdentifier(`0)
-M:AppKit.NSTableViewDiffableDataSource`2.GetSectionIdentifier(System.IntPtr)
-M:AppKit.NSTableViewDiffableDataSource`2.SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDiffableDataSource`2.Snapshot
-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.NSTableViewRowAction.Copy(Foundation.NSZone)
-M:AppKit.NSTableViewRowAction.FromStyle(AppKit.NSTableViewRowActionStyle,System.String,System.Action{AppKit.NSTableViewRowAction,System.IntPtr})
M:AppKit.NSTableViewRowEventArgs.#ctor(AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSTableViewSource.AcceptDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
-M:AppKit.NSTableViewSource.ColumnDidMove(Foundation.NSNotification)
-M:AppKit.NSTableViewSource.ColumnDidResize(Foundation.NSNotification)
-M:AppKit.NSTableViewSource.DidAddRowView(AppKit.NSTableView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSTableViewSource.DidClickTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewSource.DidDragTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewSource.DidRemoveRowView(AppKit.NSTableView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSTableViewSource.DraggingSessionEnded(AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.NSTableViewSource.DraggingSessionWillBegin(AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet)
-M:AppKit.NSTableViewSource.FilesDropped(AppKit.NSTableView,Foundation.NSUrl,Foundation.NSIndexSet)
-M:AppKit.NSTableViewSource.GetCell(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.GetNextTypeSelectMatch(AppKit.NSTableView,System.IntPtr,System.IntPtr,System.String)
-M:AppKit.NSTableViewSource.GetObjectValue(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.GetPasteboardWriterForRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewSource.GetRowCount(AppKit.NSTableView)
-M:AppKit.NSTableViewSource.GetRowHeight(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewSource.GetRowView(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewSource.GetSelectionIndexes(AppKit.NSTableView,Foundation.NSIndexSet)
-M:AppKit.NSTableViewSource.GetSelectString(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.GetSizeToFitColumnWidth(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewSource.GetViewForItem(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.IsGroupRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewSource.MouseDown(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewSource.SelectionDidChange(Foundation.NSNotification)
-M:AppKit.NSTableViewSource.SelectionIsChanging(Foundation.NSNotification)
-M:AppKit.NSTableViewSource.SelectionShouldChange(AppKit.NSTableView)
-M:AppKit.NSTableViewSource.SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.ShouldEditTableColumn(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.ShouldReorder(AppKit.NSTableView,System.IntPtr,System.IntPtr)
-M:AppKit.NSTableViewSource.ShouldSelectRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewSource.ShouldSelectTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewSource.ShouldShowCellExpansion(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.ShouldTrackCell(AppKit.NSTableView,AppKit.NSCell,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.ShouldTypeSelect(AppKit.NSTableView,AppKit.NSEvent,System.String)
-M:AppKit.NSTableViewSource.SortDescriptorsChanged(AppKit.NSTableView,Foundation.NSSortDescriptor[])
-M:AppKit.NSTableViewSource.UpdateDraggingItems(AppKit.NSTableView,AppKit.INSDraggingInfo)
-M:AppKit.NSTableViewSource.ValidateDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
-M:AppKit.NSTableViewSource.WillDisplayCell(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewSource.WriteRows(AppKit.NSTableView,Foundation.NSIndexSet,AppKit.NSPasteboard)
M:AppKit.NSTableViewTableEventArgs.#ctor(AppKit.NSTableColumn)
M:AppKit.NSTableViewUserCanChangeColumnsVisibilityEventArgs.#ctor(AppKit.NSTableColumn[])
-M:AppKit.NSTabView.#ctor(CoreGraphics.CGRect)
M:AppKit.NSTabView.add_DidSelect(System.EventHandler{AppKit.NSTabViewItemEventArgs})
M:AppKit.NSTabView.add_NumberOfItemsChanged(System.EventHandler)
M:AppKit.NSTabView.add_WillSelect(System.EventHandler{AppKit.NSTabViewItemEventArgs})
-M:AppKit.NSTabView.Add(AppKit.NSTabViewItem)
M:AppKit.NSTabView.Dispose(System.Boolean)
-M:AppKit.NSTabView.IndexOf(AppKit.NSTabViewItem)
-M:AppKit.NSTabView.IndexOf(Foundation.NSObject)
-M:AppKit.NSTabView.Insert(AppKit.NSTabViewItem,System.IntPtr)
-M:AppKit.NSTabView.Item(System.IntPtr)
M:AppKit.NSTabView.remove_DidSelect(System.EventHandler{AppKit.NSTabViewItemEventArgs})
M:AppKit.NSTabView.remove_NumberOfItemsChanged(System.EventHandler)
M:AppKit.NSTabView.remove_WillSelect(System.EventHandler{AppKit.NSTabViewItemEventArgs})
-M:AppKit.NSTabView.Remove(AppKit.NSTabViewItem)
-M:AppKit.NSTabView.Select(AppKit.NSTabViewItem)
-M:AppKit.NSTabView.Select(Foundation.NSObject)
-M:AppKit.NSTabView.SelectAt(System.IntPtr)
-M:AppKit.NSTabView.SelectFirst(Foundation.NSObject)
-M:AppKit.NSTabView.SelectLast(Foundation.NSObject)
-M:AppKit.NSTabView.SelectNext(Foundation.NSObject)
-M:AppKit.NSTabView.SelectPrevious(Foundation.NSObject)
-M:AppKit.NSTabView.TabViewItemAtPoint(CoreGraphics.CGPoint)
-M:AppKit.NSTabView.TakeSelectedTabViewItemFrom(Foundation.NSObject)
-M:AppKit.NSTabViewController.#ctor(System.String,Foundation.NSBundle)
-M:AppKit.NSTabViewController.AddTabViewItem(AppKit.NSTabViewItem)
-M:AppKit.NSTabViewController.AllowedItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.NSTabViewController.DefaultItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.NSTabViewController.DidRemoveItem(Foundation.NSNotification)
-M:AppKit.NSTabViewController.DidSelect(AppKit.NSTabView,AppKit.NSTabViewItem)
-M:AppKit.NSTabViewController.GetItemCanBeInsertedAt(AppKit.NSToolbar,System.String,System.IntPtr)
-M:AppKit.NSTabViewController.GetTabViewItem(AppKit.NSViewController)
-M:AppKit.NSTabViewController.GetToolbarImmovableItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.NSTabViewController.InsertTabViewItem(AppKit.NSTabViewItem,System.IntPtr)
-M:AppKit.NSTabViewController.NumberOfItemsChanged(AppKit.NSTabView)
-M:AppKit.NSTabViewController.RemoveTabViewItem(AppKit.NSTabViewItem)
-M:AppKit.NSTabViewController.SelectableItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.NSTabViewController.ShouldSelectTabViewItem(AppKit.NSTabView,AppKit.NSTabViewItem)
-M:AppKit.NSTabViewController.WillAddItem(Foundation.NSNotification)
-M:AppKit.NSTabViewController.WillInsertItem(AppKit.NSToolbar,System.String,System.Boolean)
-M:AppKit.NSTabViewController.WillSelect(AppKit.NSTabView,AppKit.NSTabViewItem)
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)
M:AppKit.NSTabViewDelegate_Extensions.WillSelect(AppKit.INSTabViewDelegate,AppKit.NSTabView,AppKit.NSTabViewItem)
-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(Foundation.NSObject)
-M:AppKit.NSTabViewItem.DrawLabel(System.Boolean,CoreGraphics.CGRect)
M:AppKit.NSTabViewItem.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTabViewItem.GetTabViewItem(AppKit.NSViewController)
-M:AppKit.NSTabViewItem.SizeOfLabel(System.Boolean)
M:AppKit.NSTabViewItemEventArgs.#ctor(AppKit.NSTabViewItem)
-M:AppKit.NSText.#ctor(CoreGraphics.CGRect)
M:AppKit.NSText.add_TextDidBeginEditing(System.EventHandler)
M:AppKit.NSText.add_TextDidChange(System.EventHandler)
M:AppKit.NSText.add_TextDidEndEditing(System.EventHandler)
-M:AppKit.NSText.AlignCenter(Foundation.NSObject)
-M:AppKit.NSText.AlignLeft(Foundation.NSObject)
-M:AppKit.NSText.AlignRight(Foundation.NSObject)
-M:AppKit.NSText.ChangeFont(Foundation.NSObject)
-M:AppKit.NSText.CheckSpelling(Foundation.NSObject)
-M:AppKit.NSText.Copy(Foundation.NSObject)
-M:AppKit.NSText.CopyFont(Foundation.NSObject)
-M:AppKit.NSText.CopyRuler(Foundation.NSObject)
-M:AppKit.NSText.Cut(Foundation.NSObject)
-M:AppKit.NSText.Delete(Foundation.NSObject)
M:AppKit.NSText.Dispose(System.Boolean)
-M:AppKit.NSText.FromRtfdFile(System.String)
-M:AppKit.NSText.Paste(Foundation.NSObject)
-M:AppKit.NSText.PasteFont(Foundation.NSObject)
-M:AppKit.NSText.PasteRuler(Foundation.NSObject)
M:AppKit.NSText.remove_TextDidBeginEditing(System.EventHandler)
M:AppKit.NSText.remove_TextDidChange(System.EventHandler)
M:AppKit.NSText.remove_TextDidEndEditing(System.EventHandler)
-M:AppKit.NSText.Replace(Foundation.NSRange,System.String)
-M:AppKit.NSText.ReplaceWithRtf(Foundation.NSRange,Foundation.NSData)
-M:AppKit.NSText.ReplaceWithRtfd(Foundation.NSRange,Foundation.NSData)
-M:AppKit.NSText.RtfdFromRange(Foundation.NSRange)
-M:AppKit.NSText.RtfFromRange(Foundation.NSRange)
-M:AppKit.NSText.ScrollRangeToVisible(Foundation.NSRange)
-M:AppKit.NSText.SelectAll(Foundation.NSObject)
-M:AppKit.NSText.SetFont(AppKit.NSFont,Foundation.NSRange)
-M:AppKit.NSText.SetTextColor(AppKit.NSColor,Foundation.NSRange)
-M:AppKit.NSText.ShowGuessPanel(Foundation.NSObject)
-M:AppKit.NSText.SizeToFit
-M:AppKit.NSText.Subscript(Foundation.NSObject)
-M:AppKit.NSText.Superscript(Foundation.NSObject)
-M:AppKit.NSText.ToggleRuler(Foundation.NSObject)
-M:AppKit.NSText.Underline(Foundation.NSObject)
-M:AppKit.NSText.Unscript(Foundation.NSObject)
-M:AppKit.NSText.WriteRtfd(System.String,System.Boolean)
M:AppKit.NSTextAlignmentExtensions.ToManaged(System.UIntPtr)
M:AppKit.NSTextAlignmentExtensions.ToNative(AppKit.NSTextAlignment)
-M:AppKit.NSTextAlternatives.#ctor(System.String,Foundation.NSArray)
M:AppKit.NSTextAlternatives.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextAlternatives.NoteSelectedAlternativeString(System.String)
M:AppKit.NSTextAlternativesSelectedAlternativeStringEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSTextAttachment.#ctor(Foundation.NSData,System.String)
-M:AppKit.NSTextAttachment.#ctor(Foundation.NSFileWrapper)
M:AppKit.NSTextAttachment.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextAttachment.GetAttachmentBounds(AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr)
-M:AppKit.NSTextAttachment.GetAttachmentBounds(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},AppKit.INSTextLocation,AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint)
-M:AppKit.NSTextAttachment.GetImageForBounds(CoreGraphics.CGRect,AppKit.NSTextContainer,System.UIntPtr)
-M:AppKit.NSTextAttachment.GetImageForBounds(CoreGraphics.CGRect,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},AppKit.INSTextLocation,AppKit.NSTextContainer)
-M:AppKit.NSTextAttachment.GetTextAttachmentViewProviderClass(System.String)
-M:AppKit.NSTextAttachment.GetViewProvider(AppKit.NSView,AppKit.INSTextLocation,AppKit.NSTextContainer)
-M:AppKit.NSTextAttachment.RegisterViewProviderClass(ObjCRuntime.Class,System.String)
-M:AppKit.NSTextAttachmentCell.#ctor(AppKit.NSImage)
-M:AppKit.NSTextAttachmentCell.#ctor(System.String)
-M:AppKit.NSTextAttachmentCell.CellFrameForTextContainer(AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr)
-M:AppKit.NSTextAttachmentCell.DrawWithFrame(CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr,AppKit.NSLayoutManager)
-M:AppKit.NSTextAttachmentCell.DrawWithFrame(CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr)
-M:AppKit.NSTextAttachmentCell.DrawWithFrame(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSTextAttachmentCell.Highlight(System.Boolean,CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSTextAttachmentCell.TrackMouse(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView,System.Boolean)
-M:AppKit.NSTextAttachmentCell.TrackMouse(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr,System.Boolean)
-M:AppKit.NSTextAttachmentCell.WantsToTrackMouse
-M:AppKit.NSTextAttachmentCell.WantsToTrackMouse(AppKit.NSEvent,CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr)
-M:AppKit.NSTextAttachmentContainer.GetAttachmentBounds(AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr)
-M:AppKit.NSTextAttachmentContainer.GetImageForBounds(CoreGraphics.CGRect,AppKit.NSTextContainer,System.UIntPtr)
-M:AppKit.NSTextAttachmentViewProvider.#ctor(AppKit.NSTextAttachment,AppKit.NSView,AppKit.NSTextLayoutManager,AppKit.INSTextLocation)
M:AppKit.NSTextAttachmentViewProvider.Dispose(System.Boolean)
-M:AppKit.NSTextAttachmentViewProvider.GetAttachmentBounds(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},AppKit.INSTextLocation,AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint)
-M:AppKit.NSTextAttachmentViewProvider.LoadView
M:AppKit.NSTextBlock.Copy(Foundation.NSZone)
-M:AppKit.NSTextBlock.DrawBackground(CoreGraphics.CGRect,AppKit.NSView,Foundation.NSRange,AppKit.NSLayoutManager)
M:AppKit.NSTextBlock.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextBlock.GetBorderColor(AppKit.NSRectEdge)
-M:AppKit.NSTextBlock.GetBoundsRect(CoreGraphics.CGRect,CoreGraphics.CGRect,AppKit.NSTextContainer,Foundation.NSRange)
-M:AppKit.NSTextBlock.GetRectForLayout(CoreGraphics.CGPoint,CoreGraphics.CGRect,AppKit.NSTextContainer,Foundation.NSRange)
-M:AppKit.NSTextBlock.GetValue(AppKit.NSTextBlockDimension)
-M:AppKit.NSTextBlock.GetValueType(AppKit.NSTextBlockDimension)
-M:AppKit.NSTextBlock.GetWidth(AppKit.NSTextBlockLayer,AppKit.NSRectEdge)
-M:AppKit.NSTextBlock.SetBorderColor(AppKit.NSColor,AppKit.NSRectEdge)
-M:AppKit.NSTextBlock.SetBorderColor(AppKit.NSColor)
-M:AppKit.NSTextBlock.SetContentWidth(System.Runtime.InteropServices.NFloat,AppKit.NSTextBlockValueType)
-M:AppKit.NSTextBlock.SetValue(System.Runtime.InteropServices.NFloat,AppKit.NSTextBlockValueType,AppKit.NSTextBlockDimension)
-M:AppKit.NSTextBlock.SetWidth(System.Runtime.InteropServices.NFloat,AppKit.NSTextBlockValueType,AppKit.NSTextBlockLayer,AppKit.NSRectEdge)
-M:AppKit.NSTextBlock.SetWidth(System.Runtime.InteropServices.NFloat,AppKit.NSTextBlockValueType,AppKit.NSTextBlockLayer)
-M:AppKit.NSTextBlock.WidthValueTypeForLayer(AppKit.NSTextBlockLayer,AppKit.NSRectEdge)
-M:AppKit.NSTextCheckingController.#ctor(AppKit.INSTextCheckingClient)
-M:AppKit.NSTextCheckingController.ChangeSpelling(Foundation.NSObject)
-M:AppKit.NSTextCheckingController.CheckSpelling(Foundation.NSObject)
M:AppKit.NSTextCheckingController.CheckText(Foundation.NSRange,Foundation.NSTextCheckingTypes,AppKit.NSTextCheckingOptions)
-M:AppKit.NSTextCheckingController.CheckTextInDocument(Foundation.NSObject)
-M:AppKit.NSTextCheckingController.CheckTextInSelection(Foundation.NSObject)
-M:AppKit.NSTextCheckingController.ConsiderTextChecking(Foundation.NSRange)
-M:AppKit.NSTextCheckingController.DidChangeSelectedRange
-M:AppKit.NSTextCheckingController.DidChangeText(Foundation.NSRange)
-M:AppKit.NSTextCheckingController.GetMenu(System.UIntPtr,System.Boolean,Foundation.NSRange@)
-M:AppKit.NSTextCheckingController.IgnoreSpelling(Foundation.NSObject)
-M:AppKit.NSTextCheckingController.InsertedText(Foundation.NSRange)
-M:AppKit.NSTextCheckingController.Invalidate
-M:AppKit.NSTextCheckingController.OrderFrontSubstitutionsPanel(Foundation.NSObject)
-M:AppKit.NSTextCheckingController.ShowGuessPanel(Foundation.NSObject)
-M:AppKit.NSTextCheckingController.UpdateCandidates
M:AppKit.NSTextCheckingOptions.#ctor
M:AppKit.NSTextCheckingOptions.#ctor(Foundation.NSDictionary)
-M:AppKit.NSTextContainer.ContainsPoint(CoreGraphics.CGPoint)
M:AppKit.NSTextContainer.Dispose(System.Boolean)
M:AppKit.NSTextContainer.EncodeTo(Foundation.NSCoder)
M:AppKit.NSTextContainer.FromContainerSize(CoreGraphics.CGSize)
M:AppKit.NSTextContainer.FromSize(CoreGraphics.CGSize)
-M:AppKit.NSTextContainer.GetLineFragmentRect(CoreGraphics.CGRect,System.UIntPtr,Foundation.NSWritingDirection,CoreGraphics.CGRect@)
-M:AppKit.NSTextContainer.ReplaceLayoutManager(AppKit.NSLayoutManager)
-M:AppKit.NSTextContentManager.#ctor
-M:AppKit.NSTextContentManager.Add(AppKit.NSTextLayoutManager)
-M:AppKit.NSTextContentManager.AdjustedRange(AppKit.NSTextRange,System.Boolean)
M:AppKit.NSTextContentManager.Dispose(System.Boolean)
M:AppKit.NSTextContentManager.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextContentManager.EnumerateTextElements(AppKit.INSTextLocation,AppKit.NSTextContentManagerEnumerationOptions,System.Func{AppKit.NSTextElement,System.Boolean})
-M:AppKit.NSTextContentManager.GetLocation(AppKit.INSTextLocation,System.IntPtr)
-M:AppKit.NSTextContentManager.GetOffset(AppKit.INSTextLocation,AppKit.INSTextLocation)
-M:AppKit.NSTextContentManager.GetTextElements(AppKit.NSTextRange)
-M:AppKit.NSTextContentManager.PerformEditingTransaction(System.Action)
M:AppKit.NSTextContentManager.PerformEditingTransactionAsync
-M:AppKit.NSTextContentManager.RecordEditAction(AppKit.NSTextRange,AppKit.NSTextRange)
-M:AppKit.NSTextContentManager.Remove(AppKit.NSTextLayoutManager)
-M:AppKit.NSTextContentManager.ReplaceContents(AppKit.NSTextRange,AppKit.NSTextElement[])
-M:AppKit.NSTextContentManager.Synchronize(System.Action{Foundation.NSError})
-M:AppKit.NSTextContentManager.SynchronizeTextLayoutManagers(System.Action{Foundation.NSError})
M:AppKit.NSTextContentManager.SynchronizeTextLayoutManagersAsync
M:AppKit.NSTextContentManagerDelegate_Extensions.GetTextContentManager(AppKit.INSTextContentManagerDelegate,AppKit.NSTextContentManager,AppKit.INSTextLocation)
M:AppKit.NSTextContentManagerDelegate_Extensions.ShouldEnumerateTextElement(AppKit.INSTextContentManagerDelegate,AppKit.NSTextContentManager,AppKit.NSTextElement,AppKit.NSTextContentManagerEnumerationOptions)
-M:AppKit.NSTextContentManagerDelegate.GetTextContentManager(AppKit.NSTextContentManager,AppKit.INSTextLocation)
-M:AppKit.NSTextContentManagerDelegate.ShouldEnumerateTextElement(AppKit.NSTextContentManager,AppKit.NSTextElement,AppKit.NSTextContentManagerEnumerationOptions)
M:AppKit.NSTextContentStorage.Dispose(System.Boolean)
-M:AppKit.NSTextContentStorage.GetAdjustedRange(AppKit.NSTextRange,System.Boolean)
-M:AppKit.NSTextContentStorage.GetAttributedString(AppKit.NSTextElement)
-M:AppKit.NSTextContentStorage.GetLocation(AppKit.INSTextLocation,System.IntPtr)
-M:AppKit.NSTextContentStorage.GetOffset(AppKit.INSTextLocation,AppKit.INSTextLocation)
-M:AppKit.NSTextContentStorage.GetTextElement(Foundation.NSAttributedString)
-M:AppKit.NSTextContentStorage.PerformEditingTransaction(AppKit.NSTextStorage,System.Action)
-M:AppKit.NSTextContentStorage.ProcessEditing(AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr,Foundation.NSRange)
M:AppKit.NSTextContentStorageDelegate_Extensions.GetTextParagraph(AppKit.INSTextContentStorageDelegate,AppKit.NSTextContentStorage,Foundation.NSRange)
-M:AppKit.NSTextContentStorageDelegate.GetTextContentManager(AppKit.NSTextContentManager,AppKit.INSTextLocation)
-M:AppKit.NSTextContentStorageDelegate.GetTextParagraph(AppKit.NSTextContentStorage,Foundation.NSRange)
-M:AppKit.NSTextContentStorageDelegate.ShouldEnumerateTextElement(AppKit.NSTextContentManager,AppKit.NSTextElement,AppKit.NSTextContentManagerEnumerationOptions)
M:AppKit.NSTextDelegate_Extensions.TextDidBeginEditing(AppKit.INSTextDelegate,Foundation.NSNotification)
M:AppKit.NSTextDelegate_Extensions.TextDidChange(AppKit.INSTextDelegate,Foundation.NSNotification)
M:AppKit.NSTextDelegate_Extensions.TextDidEndEditing(AppKit.INSTextDelegate,Foundation.NSNotification)
M:AppKit.NSTextDelegate_Extensions.TextShouldBeginEditing(AppKit.INSTextDelegate,AppKit.NSText)
M:AppKit.NSTextDelegate_Extensions.TextShouldEndEditing(AppKit.INSTextDelegate,AppKit.NSText)
-M:AppKit.NSTextDelegate.TextDidBeginEditing(Foundation.NSNotification)
-M:AppKit.NSTextDelegate.TextDidChange(Foundation.NSNotification)
-M:AppKit.NSTextDelegate.TextDidEndEditing(Foundation.NSNotification)
-M:AppKit.NSTextDelegate.TextShouldBeginEditing(AppKit.NSText)
-M:AppKit.NSTextDelegate.TextShouldEndEditing(AppKit.NSText)
M:AppKit.NSTextDidEndEditingEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSTextElement.#ctor(AppKit.NSTextContentManager)
M:AppKit.NSTextElement.Dispose(System.Boolean)
M:AppKit.NSTextElementProvider_Extensions.AdjustedRange(AppKit.INSTextElementProvider,AppKit.NSTextRange,System.Boolean)
M:AppKit.NSTextElementProvider_Extensions.GetLocation(AppKit.INSTextElementProvider,AppKit.INSTextLocation,System.IntPtr)
@@ -27637,38 +21253,16 @@ M:AppKit.NSTextField_NSTouchBar.GetAllowsCharacterPickerTouchBarItem(AppKit.NSTe
M:AppKit.NSTextField_NSTouchBar.GetAutomaticTextCompletionEnabled(AppKit.NSTextField)
M:AppKit.NSTextField_NSTouchBar.SetAllowsCharacterPickerTouchBarItem(AppKit.NSTextField,System.Boolean)
M:AppKit.NSTextField_NSTouchBar.SetAutomaticTextCompletionEnabled(AppKit.NSTextField,System.Boolean)
-M:AppKit.NSTextField.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSTextField.AcceptsFirstResponder
M:AppKit.NSTextField.add_Changed(System.EventHandler)
M:AppKit.NSTextField.add_DidFailToValidatePartialString(System.EventHandler{AppKit.NSControlTextErrorEventArgs})
M:AppKit.NSTextField.add_EditingBegan(System.EventHandler)
M:AppKit.NSTextField.add_EditingEnded(System.EventHandler)
-M:AppKit.NSTextField.CreateLabel(Foundation.NSAttributedString)
-M:AppKit.NSTextField.CreateLabel(System.String)
-M:AppKit.NSTextField.CreateTextField(System.String)
-M:AppKit.NSTextField.CreateWrappingLabel(System.String)
-M:AppKit.NSTextField.DidBeginEditing(Foundation.NSNotification)
-M:AppKit.NSTextField.DidChange(Foundation.NSNotification)
-M:AppKit.NSTextField.DidEndEditing(Foundation.NSNotification)
M:AppKit.NSTextField.Dispose(System.Boolean)
-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)
M:AppKit.NSTextField.remove_EditingEnded(System.EventHandler)
-M:AppKit.NSTextField.SelectText(Foundation.NSObject)
M:AppKit.NSTextField.SetContentType(Foundation.NSString)
-M:AppKit.NSTextField.ShouldBeginEditing(AppKit.NSText)
-M:AppKit.NSTextField.ShouldEndEditing(AppKit.NSText)
-M:AppKit.NSTextField.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.NSTextFieldCell.#ctor(AppKit.NSImage)
-M:AppKit.NSTextFieldCell.#ctor(System.String)
-M:AppKit.NSTextFieldCell.SetUpFieldEditorAttributes(AppKit.NSText)
M:AppKit.NSTextFieldDelegate_Extensions.Changed(AppKit.INSTextFieldDelegate,Foundation.NSNotification)
M:AppKit.NSTextFieldDelegate_Extensions.DidFailToFormatString(AppKit.INSTextFieldDelegate,AppKit.NSControl,System.String,System.String)
M:AppKit.NSTextFieldDelegate_Extensions.DidFailToValidatePartialString(AppKit.INSTextFieldDelegate,AppKit.NSControl,System.String,System.String)
@@ -27682,28 +21276,9 @@ M:AppKit.NSTextFieldDelegate_Extensions.IsValidObject(AppKit.INSTextFieldDelegat
M:AppKit.NSTextFieldDelegate_Extensions.ShouldSelectCandidate(AppKit.INSTextFieldDelegate,AppKit.NSTextField,AppKit.NSTextView,System.UIntPtr)
M:AppKit.NSTextFieldDelegate_Extensions.TextShouldBeginEditing(AppKit.INSTextFieldDelegate,AppKit.NSControl,AppKit.NSText)
M:AppKit.NSTextFieldDelegate_Extensions.TextShouldEndEditing(AppKit.INSTextFieldDelegate,AppKit.NSControl,AppKit.NSText)
-M:AppKit.NSTextFieldDelegate.Changed(Foundation.NSNotification)
-M:AppKit.NSTextFieldDelegate.DidFailToFormatString(AppKit.NSControl,System.String,System.String)
-M:AppKit.NSTextFieldDelegate.DidFailToValidatePartialString(AppKit.NSControl,System.String,System.String)
-M:AppKit.NSTextFieldDelegate.DoCommandBySelector(AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector)
-M:AppKit.NSTextFieldDelegate.EditingBegan(Foundation.NSNotification)
-M:AppKit.NSTextFieldDelegate.EditingEnded(Foundation.NSNotification)
-M:AppKit.NSTextFieldDelegate.GetCandidates(AppKit.NSTextField,AppKit.NSTextView,Foundation.NSRange)
-M:AppKit.NSTextFieldDelegate.GetCompletions(AppKit.NSControl,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.NSTextFieldDelegate.GetTextCheckingResults(AppKit.NSTextField,AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange)
-M:AppKit.NSTextFieldDelegate.IsValidObject(AppKit.NSControl,Foundation.NSObject)
-M:AppKit.NSTextFieldDelegate.ShouldSelectCandidate(AppKit.NSTextField,AppKit.NSTextView,System.UIntPtr)
-M:AppKit.NSTextFieldDelegate.TextShouldBeginEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.NSTextFieldDelegate.TextShouldEndEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.NSTextFinder.CancelFindIndicator
M:AppKit.NSTextFinder.Dispose(System.Boolean)
-M:AppKit.NSTextFinder.DrawIncrementalMatchHighlightInRect(CoreGraphics.CGRect)
M:AppKit.NSTextFinder.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextFinder.NoteClientStringWillChange
-M:AppKit.NSTextFinder.PerformAction(AppKit.NSTextFinderAction)
-M:AppKit.NSTextFinder.ValidateAction(AppKit.NSTextFinderAction)
M:AppKit.NSTextFinderBarContainer_Extensions.GetContentView(AppKit.INSTextFinderBarContainer)
-M:AppKit.NSTextFinderBarContainer.FindBarViewDidChangeHeight
M:AppKit.NSTextFinderClient_Extensions.DidReplaceCharacters(AppKit.INSTextFinderClient)
M:AppKit.NSTextFinderClient_Extensions.DrawCharacters(AppKit.INSTextFinderClient,Foundation.NSRange,AppKit.NSView)
M:AppKit.NSTextFinderClient_Extensions.GetAllowsMultipleSelection(AppKit.INSTextFinderClient)
@@ -27732,25 +21307,6 @@ M:AppKit.NSTextInputClient_Extensions.GetSupportsAdaptiveImageGlyph(AppKit.INSTe
M:AppKit.NSTextInputClient_Extensions.GetUnionRectInVisibleSelectedRange(AppKit.INSTextInputClient)
M:AppKit.NSTextInputClient_Extensions.GetWindowLevel(AppKit.INSTextInputClient)
M:AppKit.NSTextInputClient_Extensions.InsertAdaptiveImageGlyph(AppKit.INSTextInputClient,AppKit.NSAdaptiveImageGlyph,Foundation.NSRange)
-M:AppKit.NSTextInputClient.DrawsVertically(System.UIntPtr)
-M:AppKit.NSTextInputClient.GetAttributedSubstring(Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.NSTextInputClient.GetBaselineDelta(System.UIntPtr)
-M:AppKit.NSTextInputClient.GetCharacterIndex(CoreGraphics.CGPoint)
-M:AppKit.NSTextInputClient.GetFirstRect(Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.NSTextInputClient.GetFractionOfDistanceThroughGlyph(CoreGraphics.CGPoint)
-M:AppKit.NSTextInputClient.InsertAdaptiveImageGlyph(AppKit.NSAdaptiveImageGlyph,Foundation.NSRange)
-M:AppKit.NSTextInputClient.InsertText(Foundation.NSObject,Foundation.NSRange)
-M:AppKit.NSTextInputClient.SetMarkedText(Foundation.NSObject,Foundation.NSRange,Foundation.NSRange)
-M:AppKit.NSTextInputClient.UnmarkText
-M:AppKit.NSTextInputContext.#ctor(AppKit.INSTextInputClient)
-M:AppKit.NSTextInputContext.Activate
-M:AppKit.NSTextInputContext.Deactivate
-M:AppKit.NSTextInputContext.DiscardMarkedText
-M:AppKit.NSTextInputContext.HandleEvent(AppKit.NSEvent)
-M:AppKit.NSTextInputContext.InvalidateCharacterCoordinates
-M:AppKit.NSTextInputContext.LocalizedNameForInputSource(System.String)
-M:AppKit.NSTextInputContext.TextInputClientDidEndScrollingOrZooming
-M:AppKit.NSTextInputContext.TextInputClientWillStartScrollingOrZooming
M:AppKit.NSTextInputTraits_Extensions.GetAllowedWritingToolsResultOptions(AppKit.INSTextInputTraits)
M:AppKit.NSTextInputTraits_Extensions.GetAutocorrectionType(AppKit.INSTextInputTraits)
M:AppKit.NSTextInputTraits_Extensions.GetDataDetectionType(AppKit.INSTextInputTraits)
@@ -27779,149 +21335,45 @@ M:AppKit.NSTextInputTraits_Extensions.SetSpellCheckingType(AppKit.INSTextInputTr
M:AppKit.NSTextInputTraits_Extensions.SetTextCompletionType(AppKit.INSTextInputTraits,AppKit.NSTextInputTraitType)
M:AppKit.NSTextInputTraits_Extensions.SetTextReplacementType(AppKit.INSTextInputTraits,AppKit.NSTextInputTraitType)
M:AppKit.NSTextInputTraits_Extensions.SetWritingToolsBehavior(AppKit.INSTextInputTraits,AppKit.NSWritingToolsBehavior)
-M:AppKit.NSTextInsertionIndicator.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSTextLayoutFragment.#ctor(AppKit.NSTextElement,AppKit.NSTextRange)
M:AppKit.NSTextLayoutFragment.Dispose(System.Boolean)
-M:AppKit.NSTextLayoutFragment.Draw(CoreGraphics.CGPoint,CoreGraphics.CGContext)
M:AppKit.NSTextLayoutFragment.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextLayoutFragment.GetFrameForTextAttachment(AppKit.INSTextLocation)
-M:AppKit.NSTextLayoutFragment.GetTextLineFragment(AppKit.INSTextLocation,System.Boolean)
-M:AppKit.NSTextLayoutFragment.GetTextLineFragment(System.Runtime.InteropServices.NFloat,System.Boolean)
-M:AppKit.NSTextLayoutFragment.InvalidateLayout
-M:AppKit.NSTextLayoutManager.AddRenderingAttribute(System.String,Foundation.NSObject,AppKit.NSTextRange)
M:AppKit.NSTextLayoutManager.Dispose(System.Boolean)
M:AppKit.NSTextLayoutManager.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextLayoutManager.EnsureLayout(AppKit.NSTextRange)
-M:AppKit.NSTextLayoutManager.EnsureLayout(CoreGraphics.CGRect)
-M:AppKit.NSTextLayoutManager.EnumerateCaretOffsets(AppKit.INSTextLocation,AppKit.NSTextSelectionDataSourceEnumerateCaretOffsetsDelegate)
-M:AppKit.NSTextLayoutManager.EnumerateContainerBoundaries(AppKit.INSTextLocation,System.Boolean,AppKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate)
-M:AppKit.NSTextLayoutManager.EnumerateRenderingAttributes(AppKit.INSTextLocation,System.Boolean,AppKit.NSTextLayoutManagerEnumerateRenderingAttributesDelegate)
-M:AppKit.NSTextLayoutManager.EnumerateSubstrings(AppKit.INSTextLocation,Foundation.NSStringEnumerationOptions,AppKit.NSTextSelectionDataSourceEnumerateSubstringsDelegate)
-M:AppKit.NSTextLayoutManager.EnumerateTextLayoutFragments(AppKit.INSTextLocation,AppKit.NSTextLayoutFragmentEnumerationOptions,System.Func{AppKit.NSTextLayoutFragment,System.Boolean})
-M:AppKit.NSTextLayoutManager.EnumerateTextSegments(AppKit.NSTextRange,AppKit.NSTextLayoutManagerSegmentType,AppKit.NSTextLayoutManagerSegmentOptions,AppKit.NSTextLayoutManagerEnumerateTextSegmentsDelegate)
-M:AppKit.NSTextLayoutManager.GetBaseWritingDirection(AppKit.INSTextLocation)
-M:AppKit.NSTextLayoutManager.GetLineFragmentRange(CoreGraphics.CGPoint,AppKit.INSTextLocation)
-M:AppKit.NSTextLayoutManager.GetLocation(AppKit.INSTextLocation,System.IntPtr)
-M:AppKit.NSTextLayoutManager.GetOffsetFromLocation(AppKit.INSTextLocation,AppKit.INSTextLocation)
-M:AppKit.NSTextLayoutManager.GetRenderingAttributes(Foundation.NSObject,AppKit.INSTextLocation)
-M:AppKit.NSTextLayoutManager.GetTextLayoutFragment(AppKit.INSTextLocation)
-M:AppKit.NSTextLayoutManager.GetTextLayoutFragment(CoreGraphics.CGPoint)
-M:AppKit.NSTextLayoutManager.GetTextLayoutOrientation(AppKit.INSTextLocation)
-M:AppKit.NSTextLayoutManager.GetTextRange(AppKit.NSTextSelectionGranularity,AppKit.INSTextLocation)
-M:AppKit.NSTextLayoutManager.InvalidateLayout(AppKit.NSTextRange)
-M:AppKit.NSTextLayoutManager.InvalidateRenderingAttributes(AppKit.NSTextRange)
-M:AppKit.NSTextLayoutManager.RemoveRenderingAttribute(System.String,AppKit.NSTextRange)
-M:AppKit.NSTextLayoutManager.Replace(AppKit.NSTextContentManager)
-M:AppKit.NSTextLayoutManager.ReplaceContents(AppKit.NSTextRange,AppKit.NSTextElement[])
-M:AppKit.NSTextLayoutManager.ReplaceContents(AppKit.NSTextRange,Foundation.NSAttributedString)
-M:AppKit.NSTextLayoutManager.SetRenderingAttributes(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},AppKit.NSTextRange)
M:AppKit.NSTextLayoutManagerDelegate_Extensions.GetRenderingAttributes(AppKit.INSTextLayoutManagerDelegate,AppKit.NSTextLayoutManager,Foundation.NSObject,AppKit.INSTextLocation,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:AppKit.NSTextLayoutManagerDelegate_Extensions.GetTextLayoutFragment(AppKit.INSTextLayoutManagerDelegate,AppKit.NSTextLayoutManager,AppKit.INSTextLocation,AppKit.NSTextElement)
M:AppKit.NSTextLayoutManagerDelegate_Extensions.ShouldBreakLineBeforeLocation(AppKit.INSTextLayoutManagerDelegate,AppKit.NSTextLayoutManager,AppKit.INSTextLocation,System.Boolean)
-M:AppKit.NSTextLayoutManagerDelegate.GetRenderingAttributes(AppKit.NSTextLayoutManager,Foundation.NSObject,AppKit.INSTextLocation,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AppKit.NSTextLayoutManagerDelegate.GetTextLayoutFragment(AppKit.NSTextLayoutManager,AppKit.INSTextLocation,AppKit.NSTextElement)
-M:AppKit.NSTextLayoutManagerDelegate.ShouldBreakLineBeforeLocation(AppKit.NSTextLayoutManager,AppKit.INSTextLocation,System.Boolean)
-M:AppKit.NSTextLineFragment.#ctor(Foundation.NSAttributedString,Foundation.NSRange)
-M:AppKit.NSTextLineFragment.#ctor(System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSRange)
-M:AppKit.NSTextLineFragment.Draw(CoreGraphics.CGPoint,CoreGraphics.CGContext)
M:AppKit.NSTextLineFragment.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextLineFragment.GetCharacterIndex(CoreGraphics.CGPoint)
-M:AppKit.NSTextLineFragment.GetFractionOfDistanceThroughGlyph(CoreGraphics.CGPoint)
-M:AppKit.NSTextLineFragment.GetLocation(System.IntPtr)
M:AppKit.NSTextList.#ctor(AppKit.NSTextListMarkerFormats,AppKit.NSTextListOptions)
M:AppKit.NSTextList.#ctor(AppKit.NSTextListMarkerFormats)
-M:AppKit.NSTextList.#ctor(System.String,AppKit.NSTextListOptions,System.IntPtr)
-M:AppKit.NSTextList.#ctor(System.String,AppKit.NSTextListOptions)
M:AppKit.NSTextList.#ctor(System.String)
M:AppKit.NSTextList.Copy(Foundation.NSZone)
M:AppKit.NSTextList.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextList.GetMarker(System.IntPtr)
-M:AppKit.NSTextListElement.#ctor(AppKit.NSTextContentManager)
-M:AppKit.NSTextListElement.#ctor(AppKit.NSTextListElement,AppKit.NSTextList,Foundation.NSAttributedString,Foundation.NSDictionary,AppKit.NSTextListElement[])
-M:AppKit.NSTextListElement.#ctor(Foundation.NSAttributedString)
-M:AppKit.NSTextListElement.Create(AppKit.NSTextListElement[],AppKit.NSTextList,System.IntPtr)
-M:AppKit.NSTextListElement.Create(Foundation.NSAttributedString,Foundation.NSDictionary,AppKit.NSTextList,AppKit.NSTextListElement[])
M:AppKit.NSTextListElement.Dispose(System.Boolean)
-M:AppKit.NSTextParagraph.#ctor(AppKit.NSTextContentManager)
-M:AppKit.NSTextParagraph.#ctor(Foundation.NSAttributedString)
-M:AppKit.NSTextPreview.#ctor(CoreGraphics.CGImage,CoreGraphics.CGRect,CoreGraphics.CGRect[])
-M:AppKit.NSTextPreview.#ctor(CoreGraphics.CGImage,CoreGraphics.CGRect)
-M:AppKit.NSTextRange.#ctor(AppKit.INSTextLocation,AppKit.INSTextLocation)
-M:AppKit.NSTextRange.#ctor(AppKit.INSTextLocation)
-M:AppKit.NSTextRange.Contains(AppKit.INSTextLocation)
-M:AppKit.NSTextRange.Contains(AppKit.NSTextRange)
-M:AppKit.NSTextRange.GetTextRangeByFormingUnion(AppKit.NSTextRange)
-M:AppKit.NSTextRange.GetTextRangeByIntersecting(AppKit.NSTextRange)
-M:AppKit.NSTextRange.Intersects(AppKit.NSTextRange)
-M:AppKit.NSTextRange.IsEqual(AppKit.NSTextRange)
-M:AppKit.NSTextSelection.#ctor(AppKit.INSTextLocation,AppKit.NSTextSelectionAffinity)
-M:AppKit.NSTextSelection.#ctor(AppKit.NSTextRange,AppKit.NSTextSelectionAffinity,AppKit.NSTextSelectionGranularity)
-M:AppKit.NSTextSelection.#ctor(AppKit.NSTextRange[],AppKit.NSTextSelectionAffinity,AppKit.NSTextSelectionGranularity)
M:AppKit.NSTextSelection.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextSelection.GetTextSelection(AppKit.NSTextRange[])
M:AppKit.NSTextSelectionDataSource_Extensions.EnumerateContainerBoundaries(AppKit.INSTextSelectionDataSource,AppKit.INSTextLocation,System.Boolean,AppKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate)
M:AppKit.NSTextSelectionDataSource_Extensions.GetTextLayoutOrientation(AppKit.INSTextSelectionDataSource,AppKit.INSTextLocation)
-M:AppKit.NSTextSelectionDataSource.EnumerateCaretOffsets(AppKit.INSTextLocation,AppKit.NSTextSelectionDataSourceEnumerateCaretOffsetsDelegate)
-M:AppKit.NSTextSelectionDataSource.EnumerateContainerBoundaries(AppKit.INSTextLocation,System.Boolean,AppKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate)
-M:AppKit.NSTextSelectionDataSource.EnumerateSubstrings(AppKit.INSTextLocation,Foundation.NSStringEnumerationOptions,AppKit.NSTextSelectionDataSourceEnumerateSubstringsDelegate)
-M:AppKit.NSTextSelectionDataSource.GetBaseWritingDirection(AppKit.INSTextLocation)
-M:AppKit.NSTextSelectionDataSource.GetLineFragmentRange(CoreGraphics.CGPoint,AppKit.INSTextLocation)
-M:AppKit.NSTextSelectionDataSource.GetLocation(AppKit.INSTextLocation,System.IntPtr)
-M:AppKit.NSTextSelectionDataSource.GetOffsetFromLocation(AppKit.INSTextLocation,AppKit.INSTextLocation)
-M:AppKit.NSTextSelectionDataSource.GetTextLayoutOrientation(AppKit.INSTextLocation)
-M:AppKit.NSTextSelectionDataSource.GetTextRange(AppKit.NSTextSelectionGranularity,AppKit.INSTextLocation)
-M:AppKit.NSTextSelectionNavigation.#ctor(AppKit.INSTextSelectionDataSource)
M:AppKit.NSTextSelectionNavigation.Dispose(System.Boolean)
-M:AppKit.NSTextSelectionNavigation.FlushLayoutCache
-M:AppKit.NSTextSelectionNavigation.GetDeletionRanges(AppKit.NSTextSelection,AppKit.NSTextSelectionNavigationDirection,AppKit.NSTextSelectionNavigationDestination,System.Boolean)
-M:AppKit.NSTextSelectionNavigation.GetDestinationSelection(AppKit.NSTextSelection,AppKit.NSTextSelectionNavigationDirection,AppKit.NSTextSelectionNavigationDestination,System.Boolean,System.Boolean)
-M:AppKit.NSTextSelectionNavigation.GetResolvedInsertionLocation(AppKit.NSTextSelection,AppKit.NSTextSelectionNavigationWritingDirection)
-M:AppKit.NSTextSelectionNavigation.GetTextSelection(AppKit.NSTextSelectionGranularity,AppKit.NSTextSelection)
-M:AppKit.NSTextSelectionNavigation.GetTextSelection(AppKit.NSTextSelectionGranularity,CoreGraphics.CGPoint,AppKit.INSTextLocation)
-M:AppKit.NSTextSelectionNavigation.GetTextSelectionsInteracting(CoreGraphics.CGPoint,AppKit.INSTextLocation,AppKit.NSTextSelection[],AppKit.NSTextSelectionNavigationModifier,System.Boolean,CoreGraphics.CGRect)
M:AppKit.NSTextStorage.#ctor(Foundation.NSAttributedString)
M:AppKit.NSTextStorage.#ctor(System.String,CoreText.CTStringAttributes)
M:AppKit.NSTextStorage.#ctor(System.String,Foundation.NSDictionary)
-M:AppKit.NSTextStorage.#ctor(System.String)
M:AppKit.NSTextStorage.add_DidProcessEditing(System.EventHandler{AppKit.NSTextStorageEventArgs})
M:AppKit.NSTextStorage.add_TextStorageDidProcessEditing(System.EventHandler)
M:AppKit.NSTextStorage.add_TextStorageWillProcessEditing(System.EventHandler)
M:AppKit.NSTextStorage.add_WillProcessEditing(System.EventHandler{AppKit.NSTextStorageEventArgs})
-M:AppKit.NSTextStorage.AddLayoutManager(AppKit.NSLayoutManager)
M:AppKit.NSTextStorage.Dispose(System.Boolean)
-M:AppKit.NSTextStorage.Edited(AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
M:AppKit.NSTextStorage.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextStorage.EnsureAttributesAreFixed(Foundation.NSRange)
-M:AppKit.NSTextStorage.InvalidateAttributes(Foundation.NSRange)
-M:AppKit.NSTextStorage.ProcessEditing
M:AppKit.NSTextStorage.remove_DidProcessEditing(System.EventHandler{AppKit.NSTextStorageEventArgs})
M:AppKit.NSTextStorage.remove_TextStorageDidProcessEditing(System.EventHandler)
M:AppKit.NSTextStorage.remove_TextStorageWillProcessEditing(System.EventHandler)
M:AppKit.NSTextStorage.remove_WillProcessEditing(System.EventHandler{AppKit.NSTextStorageEventArgs})
-M:AppKit.NSTextStorage.RemoveLayoutManager(AppKit.NSLayoutManager)
M:AppKit.NSTextStorageDelegate_Extensions.DidProcessEditing(AppKit.INSTextStorageDelegate,AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
M:AppKit.NSTextStorageDelegate_Extensions.TextStorageDidProcessEditing(AppKit.INSTextStorageDelegate,Foundation.NSNotification)
M:AppKit.NSTextStorageDelegate_Extensions.TextStorageWillProcessEditing(AppKit.INSTextStorageDelegate,Foundation.NSNotification)
M:AppKit.NSTextStorageDelegate_Extensions.WillProcessEditing(AppKit.INSTextStorageDelegate,AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
-M:AppKit.NSTextStorageDelegate.DidProcessEditing(AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
-M:AppKit.NSTextStorageDelegate.TextStorageDidProcessEditing(Foundation.NSNotification)
-M:AppKit.NSTextStorageDelegate.TextStorageWillProcessEditing(Foundation.NSNotification)
-M:AppKit.NSTextStorageDelegate.WillProcessEditing(AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
M:AppKit.NSTextStorageEventArgs.#ctor(AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
-M:AppKit.NSTextTab.#ctor(AppKit.NSTextAlignment,System.Runtime.InteropServices.NFloat,Foundation.NSDictionary)
-M:AppKit.NSTextTab.#ctor(AppKit.NSTextTabType,System.Runtime.InteropServices.NFloat)
M:AppKit.NSTextTab.Copy(Foundation.NSZone)
M:AppKit.NSTextTab.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTextTab.GetColumnTerminators(Foundation.NSLocale)
-M:AppKit.NSTextTable.DrawBackground(AppKit.NSTextTableBlock,CoreGraphics.CGRect,AppKit.NSView,Foundation.NSRange,AppKit.NSLayoutManager)
-M:AppKit.NSTextTable.GetBoundsRect(AppKit.NSTextTableBlock,CoreGraphics.CGRect,CoreGraphics.CGRect,AppKit.NSTextContainer,Foundation.NSRange)
-M:AppKit.NSTextTable.GetRectForBlock(AppKit.NSTextTableBlock,CoreGraphics.CGPoint,CoreGraphics.CGRect,AppKit.NSTextContainer,Foundation.NSRange)
-M:AppKit.NSTextTableBlock.#ctor(AppKit.NSTextTable,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
M:AppKit.NSTextView_SharingService.OrderFrontSharingServicePicker(AppKit.NSTextView,Foundation.NSObject)
-M:AppKit.NSTextView.#ctor(CoreGraphics.CGRect,AppKit.NSTextContainer)
-M:AppKit.NSTextView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSTextView.#ctor(System.Boolean)
-M:AppKit.NSTextView.AcceptableDragTypes
M:AppKit.NSTextView.add_CellClicked(System.EventHandler{AppKit.NSTextViewClickedEventArgs})
M:AppKit.NSTextView.add_CellDoubleClicked(System.EventHandler{AppKit.NSTextViewDoubleClickEventArgs})
M:AppKit.NSTextView.add_DidChangeSelection(System.EventHandler)
@@ -27929,90 +21381,8 @@ M:AppKit.NSTextView.add_DidChangeTypingAttributes(System.EventHandler)
M:AppKit.NSTextView.add_DraggedCell(System.EventHandler{AppKit.NSTextViewDraggedCellEventArgs})
M:AppKit.NSTextView.add_WritingToolsDidEnd(System.EventHandler)
M:AppKit.NSTextView.add_WritingToolsWillBegin(System.EventHandler)
-M:AppKit.NSTextView.AlignJustified(Foundation.NSObject)
-M:AppKit.NSTextView.BeginSelectingCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr)
-M:AppKit.NSTextView.BreakUndoCoalescing
-M:AppKit.NSTextView.ChangeAttributes(Foundation.NSObject)
-M:AppKit.NSTextView.ChangeColor(AppKit.NSColorPanel)
-M:AppKit.NSTextView.ChangedCandidateListVisibility(AppKit.NSCandidateListTouchBarItem,System.Boolean)
-M:AppKit.NSTextView.ChangeDocumentBackgroundColor(Foundation.NSObject)
-M:AppKit.NSTextView.ChangeLayoutOrientation(Foundation.NSObject)
-M:AppKit.NSTextView.ChangeSelectionFromCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr,System.IntPtr)
-M:AppKit.NSTextView.CharacterIndex(CoreGraphics.CGPoint)
-M:AppKit.NSTextView.CheckText(Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary)
-M:AppKit.NSTextView.CheckTextInDocument(Foundation.NSObject)
-M:AppKit.NSTextView.CheckTextInSelection(Foundation.NSObject)
-M:AppKit.NSTextView.CleanUpAfterDragOperation
-M:AppKit.NSTextView.ClickedOnLink(Foundation.NSObject,System.UIntPtr)
-M:AppKit.NSTextView.Complete(Foundation.NSObject)
-M:AppKit.NSTextView.CompletionsForPartialWord(Foundation.NSRange,System.IntPtr@)
-M:AppKit.NSTextView.Create(System.Boolean)
-M:AppKit.NSTextView.CreateFieldEditor
-M:AppKit.NSTextView.CreateScrollableDocumentContentTextView
-M:AppKit.NSTextView.CreateScrollablePlainDocumentContentTextView
-M:AppKit.NSTextView.CreateScrollableTextView
-M:AppKit.NSTextView.DidChangeText
M:AppKit.NSTextView.Dispose(System.Boolean)
-M:AppKit.NSTextView.DraggedImageBeganAt(AppKit.NSImage,CoreGraphics.CGPoint)
-M:AppKit.NSTextView.DraggedImageEndedAtDeposited(AppKit.NSImage,CoreGraphics.CGPoint,System.Boolean)
-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.DragOperationForDraggingInfo(AppKit.INSDraggingInfo,System.String)
-M:AppKit.NSTextView.DrawInsertionPoint(CoreGraphics.CGRect,AppKit.NSColor,System.Boolean)
-M:AppKit.NSTextView.DrawsVertically(System.UIntPtr)
-M:AppKit.NSTextView.DrawTextHighlightBackground(AppKit.NSTextRange,CoreGraphics.CGPoint)
-M:AppKit.NSTextView.DrawViewBackgroundInRect(CoreGraphics.CGRect)
-M:AppKit.NSTextView.EndSelectingCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr)
-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.GetPreferredPasteboardType(System.String[],System.String[])
-M:AppKit.NSTextView.HandleTextChecking(Foundation.NSTextCheckingResult[],Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,Foundation.NSOrthography,System.IntPtr)
-M:AppKit.NSTextView.Highlight(Foundation.NSObject)
-M:AppKit.NSTextView.InsertAdaptiveImageGlyph(AppKit.NSAdaptiveImageGlyph,Foundation.NSRange)
-M:AppKit.NSTextView.InsertCompletion(System.String,Foundation.NSRange,System.IntPtr,System.Boolean)
-M:AppKit.NSTextView.InsertText(Foundation.NSObject,Foundation.NSRange)
-M:AppKit.NSTextView.InsertText(Foundation.NSObject)
-M:AppKit.NSTextView.InvalidateTextContainerOrigin
M:AppKit.NSTextView.IsCoalescingUndo
-M:AppKit.NSTextView.LoosenKerning(Foundation.NSObject)
-M:AppKit.NSTextView.LowerBaseline(Foundation.NSObject)
-M:AppKit.NSTextView.MakeItem(AppKit.NSTouchBar,System.String)
-M:AppKit.NSTextView.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl)
-M:AppKit.NSTextView.OrderFrontLinkPanel(Foundation.NSObject)
-M:AppKit.NSTextView.OrderFrontListPanel(Foundation.NSObject)
-M:AppKit.NSTextView.OrderFrontSpacingPanel(Foundation.NSObject)
-M:AppKit.NSTextView.OrderFrontSubstitutionsPanel(Foundation.NSObject)
-M:AppKit.NSTextView.OrderFrontTablePanel(Foundation.NSObject)
-M:AppKit.NSTextView.Outline(Foundation.NSObject)
-M:AppKit.NSTextView.PasteAsPlainText(Foundation.NSObject)
-M:AppKit.NSTextView.PasteAsRichText(Foundation.NSObject)
-M:AppKit.NSTextView.PerformFindPanelAction(Foundation.NSObject)
-M:AppKit.NSTextView.PerformValidatedReplacement(Foundation.NSRange,Foundation.NSAttributedString)
-M:AppKit.NSTextView.QuickLookPreviewableItemsInRanges(Foundation.NSArray)
-M:AppKit.NSTextView.RaiseBaseline(Foundation.NSObject)
-M:AppKit.NSTextView.RangeForUserCharacterAttributeChange
-M:AppKit.NSTextView.RangeForUserCompletion
-M:AppKit.NSTextView.RangeForUserParagraphAttributeChange
-M:AppKit.NSTextView.RangeForUserTextChange
-M:AppKit.NSTextView.RangesForUserCharacterAttributeChange
-M:AppKit.NSTextView.RangesForUserParagraphAttributeChange
-M:AppKit.NSTextView.RangesForUserTextChange
-M:AppKit.NSTextView.ReadablePasteboardTypes
-M:AppKit.NSTextView.ReadSelectionFromPasteboard(AppKit.NSPasteboard,System.String)
-M:AppKit.NSTextView.ReadSelectionFromPasteboard(AppKit.NSPasteboard)
-M:AppKit.NSTextView.RegisterForServices
M:AppKit.NSTextView.remove_CellClicked(System.EventHandler{AppKit.NSTextViewClickedEventArgs})
M:AppKit.NSTextView.remove_CellDoubleClicked(System.EventHandler{AppKit.NSTextViewDoubleClickEventArgs})
M:AppKit.NSTextView.remove_DidChangeSelection(System.EventHandler)
@@ -28020,73 +21390,7 @@ M:AppKit.NSTextView.remove_DidChangeTypingAttributes(System.EventHandler)
M:AppKit.NSTextView.remove_DraggedCell(System.EventHandler{AppKit.NSTextViewDraggedCellEventArgs})
M:AppKit.NSTextView.remove_WritingToolsDidEnd(System.EventHandler)
M:AppKit.NSTextView.remove_WritingToolsWillBegin(System.EventHandler)
-M:AppKit.NSTextView.ReplaceTextContainer(AppKit.NSTextContainer)
-M:AppKit.NSTextView.RulerViewDidAddMarker(AppKit.NSRulerView,AppKit.NSRulerMarker)
-M:AppKit.NSTextView.RulerViewDidMoveMarker(AppKit.NSRulerView,AppKit.NSRulerMarker)
-M:AppKit.NSTextView.RulerViewDidRemoveMarker(AppKit.NSRulerView,AppKit.NSRulerMarker)
-M:AppKit.NSTextView.RulerViewHandleMouseDown(AppKit.NSRulerView,AppKit.NSEvent)
-M:AppKit.NSTextView.RulerViewShouldAddMarker(AppKit.NSRulerView,AppKit.NSRulerMarker)
-M:AppKit.NSTextView.RulerViewShouldMoveMarker(AppKit.NSRulerView,AppKit.NSRulerMarker)
-M:AppKit.NSTextView.RulerViewShouldRemoveMarker(AppKit.NSRulerView,AppKit.NSRulerMarker)
-M:AppKit.NSTextView.RulerViewWillAddMarker(AppKit.NSRulerView,AppKit.NSRulerMarker,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSTextView.RulerViewWillMoveMarker(AppKit.NSRulerView,AppKit.NSRulerMarker,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSTextView.SelectionAffinity
-M:AppKit.NSTextView.SelectionRange(Foundation.NSRange,AppKit.NSSelectionGranularity)
-M:AppKit.NSTextView.SetAlignmentRange(AppKit.NSTextAlignment,Foundation.NSRange)
-M:AppKit.NSTextView.SetBaseWritingDirection(Foundation.NSWritingDirection,Foundation.NSRange)
-M:AppKit.NSTextView.SetConstrainedFrameSize(CoreGraphics.CGSize)
M:AppKit.NSTextView.SetContentType(Foundation.NSString)
-M:AppKit.NSTextView.SetLayoutOrientation(AppKit.NSTextLayoutOrientation)
-M:AppKit.NSTextView.SetMarkedText(Foundation.NSObject,Foundation.NSRange,Foundation.NSRange)
-M:AppKit.NSTextView.SetMarkedText(Foundation.NSObject,Foundation.NSRange)
-M:AppKit.NSTextView.SetNeedsDisplay(CoreGraphics.CGRect,System.Boolean)
-M:AppKit.NSTextView.SetSelectedRange(Foundation.NSRange,AppKit.NSSelectionAffinity,System.Boolean)
-M:AppKit.NSTextView.SetSelectedRange(Foundation.NSRange)
-M:AppKit.NSTextView.SetSelectedRanges(Foundation.NSArray,AppKit.NSSelectionAffinity,System.Boolean)
-M:AppKit.NSTextView.SetSpellingState(System.IntPtr,Foundation.NSRange)
-M:AppKit.NSTextView.ShouldChangeText(Foundation.NSArray,System.String[])
-M:AppKit.NSTextView.ShouldChangeText(Foundation.NSRange,System.String)
-M:AppKit.NSTextView.ShowFindIndicatorForRange(Foundation.NSRange)
-M:AppKit.NSTextView.SmartDeleteRangeForProposedRange(Foundation.NSRange)
-M:AppKit.NSTextView.SmartInsert(System.String,Foundation.NSRange,System.String@,System.String@)
-M:AppKit.NSTextView.SmartInsertAfter(System.String,Foundation.NSRange)
-M:AppKit.NSTextView.SmartInsertBefore(System.String,Foundation.NSRange)
-M:AppKit.NSTextView.SpellCheckerDocumentTag
-M:AppKit.NSTextView.StartSpeaking(Foundation.NSObject)
-M:AppKit.NSTextView.StopSpeaking(Foundation.NSObject)
-M:AppKit.NSTextView.TightenKerning(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleAutomaticDashSubstitution(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleAutomaticDataDetection(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleAutomaticLinkDetection(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleAutomaticQuoteSubstitution(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleAutomaticSpellingCorrection(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleAutomaticTextCompletion(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleAutomaticTextReplacement(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleContinuousSpellChecking(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleGrammarChecking(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleQuickLookPreviewPanel(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleSmartInsertDelete(Foundation.NSObject)
-M:AppKit.NSTextView.ToggleTraditionalCharacterShape(Foundation.NSObject)
-M:AppKit.NSTextView.TurnOffKerning(Foundation.NSObject)
-M:AppKit.NSTextView.TurnOffLigatures(Foundation.NSObject)
-M:AppKit.NSTextView.UnmarkText
-M:AppKit.NSTextView.UpdateCandidates
-M:AppKit.NSTextView.UpdateDragTypeRegistration
-M:AppKit.NSTextView.UpdateFontPanel
-M:AppKit.NSTextView.UpdateInsertionPointStateAndRestartTimer(System.Boolean)
-M:AppKit.NSTextView.UpdateQuickLookPreviewPanel
-M:AppKit.NSTextView.UpdateRuler
-M:AppKit.NSTextView.UpdateTextTouchBarItems
-M:AppKit.NSTextView.UpdateTouchBarItemIdentifiers
-M:AppKit.NSTextView.UseAllLigatures(Foundation.NSObject)
-M:AppKit.NSTextView.UseStandardKerning(Foundation.NSObject)
-M:AppKit.NSTextView.UseStandardLigatures(Foundation.NSObject)
-M:AppKit.NSTextView.ValidateMenuItem(AppKit.NSMenuItem)
-M:AppKit.NSTextView.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.NSTextView.ValidRequestorForSendType(System.String,System.String)
-M:AppKit.NSTextView.WritablePasteboardTypes
-M:AppKit.NSTextView.WriteSelectionToPasteboard(AppKit.NSPasteboard,System.String)
-M:AppKit.NSTextView.WriteSelectionToPasteboard(AppKit.NSPasteboard,System.String[])
M:AppKit.NSTextViewClickedEventArgs.#ctor(AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr)
M:AppKit.NSTextViewDelegate_Extensions.CellClicked(AppKit.INSTextViewDelegate,AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr)
M:AppKit.NSTextViewDelegate_Extensions.CellDoubleClicked(AppKit.INSTextViewDelegate,AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr)
@@ -28116,67 +21420,16 @@ M:AppKit.NSTextViewDelegate_Extensions.WillDisplayToolTip(AppKit.INSTextViewDele
M:AppKit.NSTextViewDelegate_Extensions.WriteCell(AppKit.INSTextViewDelegate,AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr,AppKit.NSPasteboard,System.String)
M:AppKit.NSTextViewDelegate_Extensions.WritingToolsDidEnd(AppKit.INSTextViewDelegate,AppKit.NSTextView)
M:AppKit.NSTextViewDelegate_Extensions.WritingToolsWillBegin(AppKit.INSTextViewDelegate,AppKit.NSTextView)
-M:AppKit.NSTextViewDelegate.CellClicked(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr)
-M:AppKit.NSTextViewDelegate.CellDoubleClicked(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr)
-M:AppKit.NSTextViewDelegate.DidChangeSelection(Foundation.NSNotification)
-M:AppKit.NSTextViewDelegate.DidChangeTypingAttributes(Foundation.NSNotification)
-M:AppKit.NSTextViewDelegate.DidCheckText(AppKit.NSTextView,Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,Foundation.NSTextCheckingResult[],Foundation.NSOrthography,System.IntPtr)
-M:AppKit.NSTextViewDelegate.DoCommandBySelector(AppKit.NSTextView,ObjCRuntime.Selector)
-M:AppKit.NSTextViewDelegate.DraggedCell(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,AppKit.NSEvent,System.UIntPtr)
-M:AppKit.NSTextViewDelegate.GetCandidates(AppKit.NSTextView,Foundation.NSRange)
-M:AppKit.NSTextViewDelegate.GetCompletions(AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.NSTextViewDelegate.GetTextCheckingCandidates(AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange)
-M:AppKit.NSTextViewDelegate.GetUndoManager(AppKit.NSTextView)
-M:AppKit.NSTextViewDelegate.GetWritablePasteboardTypes(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr)
-M:AppKit.NSTextViewDelegate.GetWritingToolsIgnoredRangesInEnclosingRange(AppKit.NSTextView,Foundation.NSRange)
-M:AppKit.NSTextViewDelegate.LinkClicked(AppKit.NSTextView,Foundation.NSObject,System.UIntPtr)
-M:AppKit.NSTextViewDelegate.MenuForEvent(AppKit.NSTextView,AppKit.NSMenu,AppKit.NSEvent,System.UIntPtr)
-M:AppKit.NSTextViewDelegate.ShouldChangeTextInRange(AppKit.NSTextView,Foundation.NSRange,System.String)
-M:AppKit.NSTextViewDelegate.ShouldChangeTextInRanges(AppKit.NSTextView,Foundation.NSValue[],System.String[])
-M:AppKit.NSTextViewDelegate.ShouldChangeTypingAttributes(AppKit.NSTextView,Foundation.NSDictionary,Foundation.NSDictionary)
-M:AppKit.NSTextViewDelegate.ShouldSelectCandidates(AppKit.NSTextView,System.UIntPtr)
-M:AppKit.NSTextViewDelegate.ShouldSetSpellingState(AppKit.NSTextView,System.IntPtr,Foundation.NSRange)
-M:AppKit.NSTextViewDelegate.ShouldUpdateTouchBarItemIdentifiers(AppKit.NSTextView,System.String[])
-M:AppKit.NSTextViewDelegate.WillChangeSelection(AppKit.NSTextView,Foundation.NSRange,Foundation.NSRange)
-M:AppKit.NSTextViewDelegate.WillChangeSelectionFromRanges(AppKit.NSTextView,Foundation.NSValue[],Foundation.NSValue[])
-M:AppKit.NSTextViewDelegate.WillCheckText(AppKit.NSTextView,Foundation.NSRange,Foundation.NSDictionary,Foundation.NSTextCheckingTypes)
-M:AppKit.NSTextViewDelegate.WillDisplayToolTip(AppKit.NSTextView,System.String,System.UIntPtr)
-M:AppKit.NSTextViewDelegate.WriteCell(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr,AppKit.NSPasteboard,System.String)
-M:AppKit.NSTextViewDelegate.WritingToolsDidEnd(AppKit.NSTextView)
-M:AppKit.NSTextViewDelegate.WritingToolsWillBegin(AppKit.NSTextView)
M:AppKit.NSTextViewDidChangeSelectionEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSTextViewDoubleClickEventArgs.#ctor(AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr)
M:AppKit.NSTextViewDraggedCellEventArgs.#ctor(AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,AppKit.NSEvent,System.UIntPtr)
-M:AppKit.NSTextViewportLayoutController.#ctor(AppKit.NSTextLayoutManager)
-M:AppKit.NSTextViewportLayoutController.AdjustViewport(System.Runtime.InteropServices.NFloat)
M:AppKit.NSTextViewportLayoutController.Dispose(System.Boolean)
-M:AppKit.NSTextViewportLayoutController.LayoutViewport
-M:AppKit.NSTextViewportLayoutController.RelocateViewport(AppKit.INSTextLocation)
M:AppKit.NSTextViewportLayoutControllerDelegate_Extensions.DidLayout(AppKit.INSTextViewportLayoutControllerDelegate,AppKit.NSTextViewportLayoutController)
M:AppKit.NSTextViewportLayoutControllerDelegate_Extensions.WillLayout(AppKit.INSTextViewportLayoutControllerDelegate,AppKit.NSTextViewportLayoutController)
-M:AppKit.NSTextViewportLayoutControllerDelegate.ConfigureRenderingSurface(AppKit.NSTextViewportLayoutController,AppKit.NSTextLayoutFragment)
-M:AppKit.NSTextViewportLayoutControllerDelegate.DidLayout(AppKit.NSTextViewportLayoutController)
-M:AppKit.NSTextViewportLayoutControllerDelegate.GetViewportBounds(AppKit.NSTextViewportLayoutController)
-M:AppKit.NSTextViewportLayoutControllerDelegate.WillLayout(AppKit.NSTextViewportLayoutController)
M:AppKit.NSTextViewWillChangeNotifyingTextViewEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSTintConfiguration.Copy(Foundation.NSZone)
-M:AppKit.NSTintConfiguration.CreateWithFixedColor(AppKit.NSColor)
-M:AppKit.NSTintConfiguration.CreateWithPreferredColor(AppKit.NSColor)
M:AppKit.NSTintConfiguration.EncodeTo(Foundation.NSCoder)
-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.ViewDidAppear
-M:AppKit.NSTitlebarAccessoryViewController.ViewDidDisappear
-M:AppKit.NSTitlebarAccessoryViewController.ViewWillAppear
-M:AppKit.NSTokenField.#ctor(CoreGraphics.CGRect)
M:AppKit.NSTokenField.Dispose(System.Boolean)
-M:AppKit.NSTokenFieldCell.#ctor(System.String)
M:AppKit.NSTokenFieldCell.Dispose(System.Boolean)
M:AppKit.NSTokenFieldCellDelegate_Extensions.GetCompletionStrings(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,System.String,System.IntPtr,System.IntPtr@)
M:AppKit.NSTokenFieldCellDelegate_Extensions.GetDisplayString(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,Foundation.NSObject)
@@ -28188,16 +21441,6 @@ M:AppKit.NSTokenFieldCellDelegate_Extensions.HasMenu(AppKit.INSTokenFieldCellDel
M:AppKit.NSTokenFieldCellDelegate_Extensions.Read(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,AppKit.NSPasteboard)
M:AppKit.NSTokenFieldCellDelegate_Extensions.ShouldAddObjects(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,Foundation.NSObject[],System.UIntPtr)
M:AppKit.NSTokenFieldCellDelegate_Extensions.WriteRepresentedObjects(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,Foundation.NSObject[],AppKit.NSPasteboard)
-M:AppKit.NSTokenFieldCellDelegate.GetCompletionStrings(AppKit.NSTokenFieldCell,System.String,System.IntPtr,System.IntPtr@)
-M:AppKit.NSTokenFieldCellDelegate.GetDisplayString(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.NSTokenFieldCellDelegate.GetEditingString(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.NSTokenFieldCellDelegate.GetMenu(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.NSTokenFieldCellDelegate.GetRepresentedObject(AppKit.NSTokenFieldCell,System.String)
-M:AppKit.NSTokenFieldCellDelegate.GetStyle(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.NSTokenFieldCellDelegate.HasMenu(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.NSTokenFieldCellDelegate.Read(AppKit.NSTokenFieldCell,AppKit.NSPasteboard)
-M:AppKit.NSTokenFieldCellDelegate.ShouldAddObjects(AppKit.NSTokenFieldCell,Foundation.NSObject[],System.UIntPtr)
-M:AppKit.NSTokenFieldCellDelegate.WriteRepresentedObjects(AppKit.NSTokenFieldCell,Foundation.NSObject[],AppKit.NSPasteboard)
M:AppKit.NSTokenFieldDelegate_Extensions.GetCompletionStrings(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,System.String,System.IntPtr,System.IntPtr)
M:AppKit.NSTokenFieldDelegate_Extensions.GetDisplayString(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,Foundation.NSObject)
M:AppKit.NSTokenFieldDelegate_Extensions.GetEditingString(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,Foundation.NSObject)
@@ -28208,29 +21451,11 @@ M:AppKit.NSTokenFieldDelegate_Extensions.HasMenu(AppKit.INSTokenFieldDelegate,Ap
M:AppKit.NSTokenFieldDelegate_Extensions.Read(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,AppKit.NSPasteboard)
M:AppKit.NSTokenFieldDelegate_Extensions.ShouldAddObjects(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,Foundation.NSArray,System.UIntPtr)
M:AppKit.NSTokenFieldDelegate_Extensions.WriteRepresented(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,Foundation.NSArray,AppKit.NSPasteboard)
-M:AppKit.NSTokenFieldDelegate.GetCompletionStrings(AppKit.NSTokenField,System.String,System.IntPtr,System.IntPtr)
-M:AppKit.NSTokenFieldDelegate.GetDisplayString(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.NSTokenFieldDelegate.GetEditingString(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.NSTokenFieldDelegate.GetMenu(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.NSTokenFieldDelegate.GetRepresentedObject(AppKit.NSTokenField,System.String)
-M:AppKit.NSTokenFieldDelegate.GetStyle(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.NSTokenFieldDelegate.HasMenu(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.NSTokenFieldDelegate.Read(AppKit.NSTokenField,AppKit.NSPasteboard)
-M:AppKit.NSTokenFieldDelegate.ShouldAddObjects(AppKit.NSTokenField,Foundation.NSArray,System.UIntPtr)
-M:AppKit.NSTokenFieldDelegate.WriteRepresented(AppKit.NSTokenField,Foundation.NSArray,AppKit.NSPasteboard)
-M:AppKit.NSToolbar.#ctor
-M:AppKit.NSToolbar.#ctor(System.String)
M:AppKit.NSToolbar.add_DidRemoveItem(System.EventHandler)
M:AppKit.NSToolbar.add_WillAddItem(System.EventHandler)
M:AppKit.NSToolbar.Dispose(System.Boolean)
-M:AppKit.NSToolbar.InsertItem(System.String,System.IntPtr)
M:AppKit.NSToolbar.remove_DidRemoveItem(System.EventHandler)
M:AppKit.NSToolbar.remove_WillAddItem(System.EventHandler)
-M:AppKit.NSToolbar.RemoveItem(System.IntPtr)
-M:AppKit.NSToolbar.RemoveItem(System.String)
-M:AppKit.NSToolbar.RunCustomizationPalette(Foundation.NSObject)
-M:AppKit.NSToolbar.SetConfigurationFromDictionary(Foundation.NSDictionary)
-M:AppKit.NSToolbar.ValidateVisibleItems
M:AppKit.NSToolbarDelegate_Extensions.AllowedItemIdentifiers(AppKit.INSToolbarDelegate,AppKit.NSToolbar)
M:AppKit.NSToolbarDelegate_Extensions.DefaultItemIdentifiers(AppKit.INSToolbarDelegate,AppKit.NSToolbar)
M:AppKit.NSToolbarDelegate_Extensions.DidRemoveItem(AppKit.INSToolbarDelegate,Foundation.NSNotification)
@@ -28239,29 +21464,12 @@ M:AppKit.NSToolbarDelegate_Extensions.GetToolbarImmovableItemIdentifiers(AppKit.
M:AppKit.NSToolbarDelegate_Extensions.SelectableItemIdentifiers(AppKit.INSToolbarDelegate,AppKit.NSToolbar)
M:AppKit.NSToolbarDelegate_Extensions.WillAddItem(AppKit.INSToolbarDelegate,Foundation.NSNotification)
M:AppKit.NSToolbarDelegate_Extensions.WillInsertItem(AppKit.INSToolbarDelegate,AppKit.NSToolbar,System.String,System.Boolean)
-M:AppKit.NSToolbarDelegate.AllowedItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.NSToolbarDelegate.DefaultItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.NSToolbarDelegate.DidRemoveItem(Foundation.NSNotification)
-M:AppKit.NSToolbarDelegate.GetItemCanBeInsertedAt(AppKit.NSToolbar,System.String,System.IntPtr)
-M:AppKit.NSToolbarDelegate.GetToolbarImmovableItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.NSToolbarDelegate.SelectableItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.NSToolbarDelegate.WillAddItem(Foundation.NSNotification)
-M:AppKit.NSToolbarDelegate.WillInsertItem(AppKit.NSToolbar,System.String,System.Boolean)
-M:AppKit.NSToolbarItem.#ctor(System.String)
M:AppKit.NSToolbarItem.add_Activated(System.EventHandler)
M:AppKit.NSToolbarItem.Copy(Foundation.NSZone)
-M:AppKit.NSToolbarItem.Create(System.String,UIKit.UIBarButtonItem)
M:AppKit.NSToolbarItem.Dispose(System.Boolean)
M:AppKit.NSToolbarItem.GetFrame(UIKit.UIView)
M:AppKit.NSToolbarItem.remove_Activated(System.EventHandler)
-M:AppKit.NSToolbarItem.Validate
-M:AppKit.NSToolbarItem.ValidateMenuItem(AppKit.NSMenuItem)
M:AppKit.NSToolbarItemEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSToolbarItemGroup.#ctor(System.String)
-M:AppKit.NSToolbarItemGroup.Create(System.String,AppKit.NSImage[],AppKit.NSToolbarItemGroupSelectionMode,System.String[],Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSToolbarItemGroup.Create(System.String,System.String[],AppKit.NSToolbarItemGroupSelectionMode,System.String[],Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSToolbarItemGroup.GetSelected(System.IntPtr)
-M:AppKit.NSToolbarItemGroup.SetSelected(System.Boolean,System.IntPtr)
M:AppKit.NSTouch_NSTouchBar.GetLocation(AppKit.NSTouch,AppKit.NSView)
M:AppKit.NSTouch_NSTouchBar.GetPreviousLocation(AppKit.NSTouch,AppKit.NSView)
M:AppKit.NSTouch_NSTouchBar.GetTouchType(AppKit.NSTouch)
@@ -28269,438 +21477,29 @@ 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.GetItemForIdentifier(System.String)
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.#ctor(System.String)
M:AppKit.NSTouchBarItem.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTrackingArea.#ctor(CoreGraphics.CGRect,AppKit.NSTrackingAreaOptions,Foundation.NSObject,Foundation.NSDictionary)
M:AppKit.NSTrackingArea.Copy(Foundation.NSZone)
M:AppKit.NSTrackingArea.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSTrackingSeparatorToolbarItem.#ctor(System.String)
-M:AppKit.NSTrackingSeparatorToolbarItem.GetTrackingSeparatorToolbar(System.String,AppKit.NSSplitView,System.IntPtr)
-M:AppKit.NSTreeController.Add(Foundation.NSObject)
-M:AppKit.NSTreeController.AddChild(Foundation.NSObject)
-M:AppKit.NSTreeController.AddSelectionIndexPaths(Foundation.NSIndexPath[])
-M:AppKit.NSTreeController.ChildrenKeyPathForNode(AppKit.NSTreeNode)
-M:AppKit.NSTreeController.CountKeyPathForNode(AppKit.NSTreeNode)
-M:AppKit.NSTreeController.GetSelectionIndexPath
-M:AppKit.NSTreeController.GetSelectionIndexPaths
-M:AppKit.NSTreeController.Insert(Foundation.NSObject)
-M:AppKit.NSTreeController.InsertChild(Foundation.NSObject)
-M:AppKit.NSTreeController.InsertObject(Foundation.NSObject,Foundation.NSIndexPath)
-M:AppKit.NSTreeController.InsertObjects(Foundation.NSObject[],Foundation.NSArray)
-M:AppKit.NSTreeController.LeafKeyPathForNode(AppKit.NSTreeNode)
-M:AppKit.NSTreeController.MoveNode(AppKit.NSTreeNode,Foundation.NSIndexPath)
-M:AppKit.NSTreeController.MoveNodes(AppKit.NSTreeNode[],Foundation.NSIndexPath)
-M:AppKit.NSTreeController.RearrangeObjects
-M:AppKit.NSTreeController.Remove(Foundation.NSObject)
-M:AppKit.NSTreeController.RemoveObjectAtArrangedObjectIndexPath(Foundation.NSIndexPath)
-M:AppKit.NSTreeController.RemoveObjectsAtArrangedObjectIndexPaths(Foundation.NSIndexPath[])
-M:AppKit.NSTreeController.RemoveSelectionIndexPaths(Foundation.NSIndexPath[])
-M:AppKit.NSTreeController.SetSelectionIndexPath(Foundation.NSIndexPath)
-M:AppKit.NSTreeController.SetSelectionIndexPaths(Foundation.NSIndexPath[])
-M:AppKit.NSTreeNode.#ctor(Foundation.NSObject)
-M:AppKit.NSTreeNode.DescendantNode(Foundation.NSIndexPath)
-M:AppKit.NSTreeNode.FromRepresentedObject(Foundation.NSObject)
-M:AppKit.NSTreeNode.SortWithSortDescriptors(Foundation.NSSortDescriptor[],System.Boolean)
-M:AppKit.NSTypesetter.AttributesForExtraLineFragment
-M:AppKit.NSTypesetter.BeginLine(System.UIntPtr)
-M:AppKit.NSTypesetter.BeginParagraph
-M:AppKit.NSTypesetter.DeleteGlyphs(Foundation.NSRange)
-M:AppKit.NSTypesetter.EndLine(Foundation.NSRange)
-M:AppKit.NSTypesetter.EndParagraph
-M:AppKit.NSTypesetter.GetActionForControlCharacter(System.UIntPtr)
-M:AppKit.NSTypesetter.GetBaselineOffset(AppKit.NSLayoutManager,System.UIntPtr)
-M:AppKit.NSTypesetter.GetBoundingBoxForControlGlyph(System.UIntPtr,AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr)
-M:AppKit.NSTypesetter.GetCharacterRangeForGlyphRange(Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.NSTypesetter.GetGlyphsInRange(Foundation.NSRange,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:AppKit.NSTypesetter.GetInterGlyphSpacing(AppKit.NSLayoutManager,Foundation.NSRange,System.IntPtr,System.UIntPtr)
-M:AppKit.NSTypesetter.GetLineFragment(CoreGraphics.CGRect@,CoreGraphics.CGRect@,CoreGraphics.CGRect@,System.UIntPtr,CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSTypesetter.GetLineFragment(CoreGraphics.CGRect@,CoreGraphics.CGRect@,Foundation.NSRange,CoreGraphics.CGPoint)
-M:AppKit.NSTypesetter.GetLineSpacingAfterGlyph(System.UIntPtr,CoreGraphics.CGRect)
-M:AppKit.NSTypesetter.GetParagraphSpacingAfterGlyph(System.UIntPtr,CoreGraphics.CGRect)
-M:AppKit.NSTypesetter.GetParagraphSpacingBeforeGlyph(System.UIntPtr,CoreGraphics.CGRect)
-M:AppKit.NSTypesetter.GetSharedSystemTypesetter(AppKit.NSTypesetterBehavior)
-M:AppKit.NSTypesetter.GetSubstituteFont(AppKit.NSFont)
-M:AppKit.NSTypesetter.GetTextTab(System.Runtime.InteropServices.NFloat,Foundation.NSWritingDirection,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSTypesetter.GlyphRangeForCharacterRange(Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.NSTypesetter.HyphenationFactorForGlyph(System.UIntPtr)
-M:AppKit.NSTypesetter.HyphenCharacterForGlyph(System.UIntPtr)
-M:AppKit.NSTypesetter.InsertGlyph(System.UInt32,System.UIntPtr,System.UIntPtr)
-M:AppKit.NSTypesetter.LayoutCharacters(Foundation.NSRange,AppKit.NSLayoutManager,System.UIntPtr)
-M:AppKit.NSTypesetter.LayoutGlyphs(AppKit.NSLayoutManager,System.UIntPtr,System.UIntPtr,System.UIntPtr@)
-M:AppKit.NSTypesetter.LayoutParagraphAtPoint(CoreGraphics.CGPoint@)
-M:AppKit.NSTypesetter.SetAttachmentSize(CoreGraphics.CGSize,Foundation.NSRange)
-M:AppKit.NSTypesetter.SetBidiLevels(System.IntPtr,Foundation.NSRange)
-M:AppKit.NSTypesetter.SetDrawsOutsideLineFragment(System.Boolean,Foundation.NSRange)
-M:AppKit.NSTypesetter.SetHardInvalidation(System.Boolean,Foundation.NSRange)
-M:AppKit.NSTypesetter.SetLineFragment(CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSTypesetter.SetLocation(CoreGraphics.CGPoint,System.IntPtr,Foundation.NSRange)
-M:AppKit.NSTypesetter.SetNotShownAttribute(System.Boolean,Foundation.NSRange)
-M:AppKit.NSTypesetter.SetParagraphGlyphRange(Foundation.NSRange,Foundation.NSRange)
-M:AppKit.NSTypesetter.ShouldBreakLineByHyphenatingBeforeCharacter(System.UIntPtr)
-M:AppKit.NSTypesetter.ShouldBreakLineByWordBeforeCharacter(System.UIntPtr)
-M:AppKit.NSTypesetter.SubstituteGlyphs(Foundation.NSRange,System.IntPtr)
-M:AppKit.NSUserDefaultsController.#ctor(Foundation.NSUserDefaults,Foundation.NSDictionary)
-M:AppKit.NSUserDefaultsController.Revert(Foundation.NSObject)
-M:AppKit.NSUserDefaultsController.RevertToInitialValues(Foundation.NSObject)
-M:AppKit.NSUserDefaultsController.Save(Foundation.NSObject)
-M:AppKit.NSUserInterfaceCompressionOptions.#ctor(Foundation.NSSet{AppKit.NSUserInterfaceCompressionOptions})
-M:AppKit.NSUserInterfaceCompressionOptions.#ctor(System.String)
-M:AppKit.NSUserInterfaceCompressionOptions.Contains(AppKit.NSUserInterfaceCompressionOptions)
M:AppKit.NSUserInterfaceCompressionOptions.Copy(Foundation.NSZone)
M:AppKit.NSUserInterfaceCompressionOptions.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSUserInterfaceCompressionOptions.GetOptionsByAdding(AppKit.NSUserInterfaceCompressionOptions)
-M:AppKit.NSUserInterfaceCompressionOptions.GetOptionsByRemoving(AppKit.NSUserInterfaceCompressionOptions)
-M:AppKit.NSUserInterfaceCompressionOptions.Intersects(AppKit.NSUserInterfaceCompressionOptions)
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)
M:AppKit.NSView_NSTouchBar.GetAllowedTouchTypes(AppKit.NSView)
M:AppKit.NSView_NSTouchBar.SetAllowedTouchTypes(AppKit.NSView,AppKit.NSTouchTypeMask)
-M:AppKit.NSView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSView.AcceptsFirstMouse(AppKit.NSEvent)
-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.AddConstraint(AppKit.NSLayoutConstraint)
-M:AppKit.NSView.AddConstraints(AppKit.NSLayoutConstraint[])
-M:AppKit.NSView.AddCursorRect(CoreGraphics.CGRect,AppKit.NSCursor)
-M:AppKit.NSView.AddGestureRecognizer(AppKit.NSGestureRecognizer)
-M:AppKit.NSView.AddLayoutGuide(AppKit.NSLayoutGuide)
-M:AppKit.NSView.AddSubview(AppKit.NSView,AppKit.NSWindowOrderingMode,AppKit.NSView)
-M:AppKit.NSView.AddSubview(AppKit.NSView)
-M:AppKit.NSView.AddToolTip(CoreGraphics.CGRect,AppKit.INSToolTipOwner,System.IntPtr)
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.AddTrackingArea(AppKit.NSTrackingArea)
-M:AppKit.NSView.AddTrackingRect(CoreGraphics.CGRect,Foundation.NSObject,System.IntPtr,System.Boolean)
-M:AppKit.NSView.AdjustPageHeightNew(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSView.AdjustPageWidthNew(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSView.AdjustScroll(CoreGraphics.CGRect)
-M:AppKit.NSView.AllocateGState
-M:AppKit.NSView.AncestorSharedWithView(AppKit.NSView)
-M:AppKit.NSView.AnimationFor(Foundation.NSString)
-M:AppKit.NSView.Autoscroll(AppKit.NSEvent)
-M:AppKit.NSView.BackingAlignedRect(CoreGraphics.CGRect,Foundation.NSAlignmentOptions)
-M:AppKit.NSView.BeginDocument
-M:AppKit.NSView.BeginDraggingSession(AppKit.NSDraggingItem[],AppKit.NSEvent,AppKit.INSDraggingSource)
-M:AppKit.NSView.BeginPage(CoreGraphics.CGRect,CoreGraphics.CGPoint)
-M:AppKit.NSView.BitmapImageRepForCachingDisplayInRect(CoreGraphics.CGRect)
-M:AppKit.NSView.CacheDisplay(CoreGraphics.CGRect,AppKit.NSBitmapImageRep)
-M:AppKit.NSView.CanDraw
-M:AppKit.NSView.CenterScanRect(CoreGraphics.CGRect)
-M:AppKit.NSView.ConcludeDragOperation(AppKit.INSDraggingInfo)
-M:AppKit.NSView.ConvertPointFromBacking(CoreGraphics.CGPoint)
-M:AppKit.NSView.ConvertPointFromBase(CoreGraphics.CGPoint)
-M:AppKit.NSView.ConvertPointFromLayer(CoreGraphics.CGPoint)
-M:AppKit.NSView.ConvertPointFromView(CoreGraphics.CGPoint,AppKit.NSView)
-M:AppKit.NSView.ConvertPointToBacking(CoreGraphics.CGPoint)
-M:AppKit.NSView.ConvertPointToBase(CoreGraphics.CGPoint)
-M:AppKit.NSView.ConvertPointToLayer(CoreGraphics.CGPoint)
-M:AppKit.NSView.ConvertPointToView(CoreGraphics.CGPoint,AppKit.NSView)
-M:AppKit.NSView.ConvertRectFromBacking(CoreGraphics.CGRect)
-M:AppKit.NSView.ConvertRectFromBase(CoreGraphics.CGRect)
-M:AppKit.NSView.ConvertRectFromLayer(CoreGraphics.CGRect)
-M:AppKit.NSView.ConvertRectFromView(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSView.ConvertRectToBacking(CoreGraphics.CGRect)
-M:AppKit.NSView.ConvertRectToBase(CoreGraphics.CGRect)
-M:AppKit.NSView.ConvertRectToLayer(CoreGraphics.CGRect)
-M:AppKit.NSView.ConvertRectToView(CoreGraphics.CGRect,AppKit.NSView)
-M:AppKit.NSView.ConvertSizeFromBacking(CoreGraphics.CGSize)
-M:AppKit.NSView.ConvertSizeFromBase(CoreGraphics.CGSize)
-M:AppKit.NSView.ConvertSizeFromLayer(CoreGraphics.CGSize)
-M:AppKit.NSView.ConvertSizeFromView(CoreGraphics.CGSize,AppKit.NSView)
-M:AppKit.NSView.ConvertSizeToBacking(CoreGraphics.CGSize)
-M:AppKit.NSView.ConvertSizeToBase(CoreGraphics.CGSize)
-M:AppKit.NSView.ConvertSizeToLayer(CoreGraphics.CGSize)
-M:AppKit.NSView.ConvertSizeToView(CoreGraphics.CGSize,AppKit.NSView)
-M:AppKit.NSView.DataWithEpsInsideRect(CoreGraphics.CGRect)
-M:AppKit.NSView.DataWithPdfInsideRect(CoreGraphics.CGRect)
-M:AppKit.NSView.DefaultAnimationFor(Foundation.NSString)
-M:AppKit.NSView.DefaultMenu
-M:AppKit.NSView.DidAddSubview(AppKit.NSView)
-M:AppKit.NSView.DidChangeBackingProperties
-M:AppKit.NSView.DidCloseMenu(AppKit.NSMenu,AppKit.NSEvent)
-M:AppKit.NSView.DiscardCursorRects
-M:AppKit.NSView.Display
-M:AppKit.NSView.DisplayIfNeeded
-M:AppKit.NSView.DisplayIfNeededIgnoringOpacity
-M:AppKit.NSView.DisplayIfNeededInRect(CoreGraphics.CGRect)
-M:AppKit.NSView.DisplayIfNeededInRectIgnoringOpacity(CoreGraphics.CGRect)
-M:AppKit.NSView.DisplayRect(CoreGraphics.CGRect)
-M:AppKit.NSView.DisplayRectIgnoringOpacity(CoreGraphics.CGRect,AppKit.NSGraphicsContext)
-M:AppKit.NSView.DisplayRectIgnoringOpacity(CoreGraphics.CGRect)
M:AppKit.NSView.Dispose(System.Boolean)
-M:AppKit.NSView.DragFile(System.String,CoreGraphics.CGRect,System.Boolean,AppKit.NSEvent)
-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.DragImage(AppKit.NSImage,CoreGraphics.CGPoint,CoreGraphics.CGSize,AppKit.NSEvent,AppKit.NSPasteboard,Foundation.NSObject,System.Boolean)
-M:AppKit.NSView.DragPromisedFilesOfTypes(System.String[],CoreGraphics.CGRect,Foundation.NSObject,System.Boolean,AppKit.NSEvent)
-M:AppKit.NSView.DrawFocusRingMask
-M:AppKit.NSView.DrawPageBorder(CoreGraphics.CGSize)
-M:AppKit.NSView.DrawRect(CoreGraphics.CGRect)
-M:AppKit.NSView.DrawSheetBorder(CoreGraphics.CGSize)
-M:AppKit.NSView.EndDocument
-M:AppKit.NSView.EndPage
-M:AppKit.NSView.EnterFullscreenModeWithOptions(AppKit.NSScreen,Foundation.NSDictionary)
-M:AppKit.NSView.ExerciseAmbiguityInLayout
-M:AppKit.NSView.ExitFullscreenModeWithOptions(Foundation.NSDictionary)
-M:AppKit.NSView.FocusView
-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.GetAlignmentRectForFrame(CoreGraphics.CGRect)
-M:AppKit.NSView.GetConstraintsAffectingLayout(AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSView.GetContentCompressionResistancePriority(AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSView.GetContentHuggingPriorityForOrientation(AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSView.GetDisplayLink(Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSView.GetFrameForAlignmentRect(CoreGraphics.CGRect)
-M:AppKit.NSView.GState
-M:AppKit.NSView.HitTest(CoreGraphics.CGPoint)
-M:AppKit.NSView.InvalidateIntrinsicContentSize
-M:AppKit.NSView.IsAccessibilityAttributeSettable(Foundation.NSString)
-M:AppKit.NSView.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector)
-M:AppKit.NSView.IsDescendantOf(AppKit.NSView)
-M:AppKit.NSView.IsMouseInRect(CoreGraphics.CGPoint,CoreGraphics.CGRect)
-M:AppKit.NSView.KnowsPageRange(Foundation.NSRange@)
-M:AppKit.NSView.Layout
-M:AppKit.NSView.LayoutSubtreeIfNeeded
-M:AppKit.NSView.LocationOfPrintRect(CoreGraphics.CGRect)
-M:AppKit.NSView.LockFocus
-M:AppKit.NSView.LockFocusIfCanDraw
-M:AppKit.NSView.LockFocusIfCanDrawInContext(AppKit.NSGraphicsContext)
-M:AppKit.NSView.MakeBackingLayer
-M:AppKit.NSView.MenuForEvent(AppKit.NSEvent)
-M:AppKit.NSView.NeedsToDraw(CoreGraphics.CGRect)
-M:AppKit.NSView.NoteFocusRingMaskChanged
-M:AppKit.NSView.PerformDragOperation(AppKit.INSDraggingInfo)
-M:AppKit.NSView.PerformKeyEquivalent(AppKit.NSEvent)
-M:AppKit.NSView.PerformMnemonic(System.String)
-M:AppKit.NSView.PrepareContentInRect(CoreGraphics.CGRect)
-M:AppKit.NSView.PrepareForDragOperation(AppKit.INSDraggingInfo)
-M:AppKit.NSView.PrepareForReuse
-M:AppKit.NSView.Print(Foundation.NSObject)
-M:AppKit.NSView.RectForPage(System.IntPtr)
-M:AppKit.NSView.RectForSmartMagnificationAtPoint(CoreGraphics.CGPoint,CoreGraphics.CGRect)
-M:AppKit.NSView.RegisteredDragTypes
-M:AppKit.NSView.RegisterForDraggedTypes(System.String[])
-M:AppKit.NSView.ReleaseGState
-M:AppKit.NSView.RemoveAllToolTips
-M:AppKit.NSView.RemoveConstraint(AppKit.NSLayoutConstraint)
-M:AppKit.NSView.RemoveConstraints(AppKit.NSLayoutConstraint[])
-M:AppKit.NSView.RemoveCursorRect(CoreGraphics.CGRect,AppKit.NSCursor)
-M:AppKit.NSView.RemoveFromSuperview
-M:AppKit.NSView.RemoveFromSuperviewWithoutNeedingDisplay
-M:AppKit.NSView.RemoveGestureRecognizer(AppKit.NSGestureRecognizer)
-M:AppKit.NSView.RemoveLayoutGuide(AppKit.NSLayoutGuide)
-M:AppKit.NSView.RemoveToolTip(System.IntPtr)
-M:AppKit.NSView.RemoveTrackingArea(AppKit.NSTrackingArea)
-M:AppKit.NSView.RemoveTrackingRect(System.IntPtr)
-M:AppKit.NSView.RenewGState
-M:AppKit.NSView.ReplaceSubviewWith(AppKit.NSView,AppKit.NSView)
-M:AppKit.NSView.RequiresConstraintBasedLayout
-M:AppKit.NSView.ResetCursorRects
-M:AppKit.NSView.ResizeSubviewsWithOldSize(CoreGraphics.CGSize)
-M:AppKit.NSView.ResizeWithOldSuperviewSize(CoreGraphics.CGSize)
-M:AppKit.NSView.RotateByAngle(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSView.ScaleUnitSquareToSize(CoreGraphics.CGSize)
-M:AppKit.NSView.ScrollPoint(CoreGraphics.CGPoint)
-M:AppKit.NSView.ScrollRect(CoreGraphics.CGRect,CoreGraphics.CGSize)
-M:AppKit.NSView.ScrollRectToVisible(CoreGraphics.CGRect)
-M:AppKit.NSView.SetAccessibilityValue(Foundation.NSString,Foundation.NSObject)
-M:AppKit.NSView.SetBoundsOrigin(CoreGraphics.CGPoint)
-M:AppKit.NSView.SetBoundsSize(CoreGraphics.CGSize)
-M:AppKit.NSView.SetContentCompressionResistancePriority(System.Single,AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSView.SetContentHuggingPriorityForOrientation(System.Single,AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSView.SetFrameOrigin(CoreGraphics.CGPoint)
-M:AppKit.NSView.SetFrameSize(CoreGraphics.CGSize)
-M:AppKit.NSView.SetKeyboardFocusRingNeedsDisplay(CoreGraphics.CGRect)
-M:AppKit.NSView.SetNeedsDisplayInRect(CoreGraphics.CGRect)
-M:AppKit.NSView.SetUpGState
-M:AppKit.NSView.ShouldDelayWindowOrderingForEvent(AppKit.NSEvent)
M:AppKit.NSView.SortSubviews(System.Func{AppKit.NSView,AppKit.NSView,Foundation.NSComparisonResult})
-M:AppKit.NSView.TrackingAreas
-M:AppKit.NSView.TranslateOriginToPoint(CoreGraphics.CGPoint)
-M:AppKit.NSView.TranslateRectsNeedingDisplay(CoreGraphics.CGRect,CoreGraphics.CGSize)
-M:AppKit.NSView.UnlockFocus
-M:AppKit.NSView.UnregisterDraggedTypes
-M:AppKit.NSView.UpdateConstraints
-M:AppKit.NSView.UpdateConstraintsForSubtreeIfNeeded
-M:AppKit.NSView.UpdateLayer
-M:AppKit.NSView.UpdateTrackingAreas
-M:AppKit.NSView.ViewDidChangeEffectiveAppearance
-M:AppKit.NSView.ViewDidEndLiveResize
-M:AppKit.NSView.ViewDidHide
-M:AppKit.NSView.ViewDidMoveToSuperview
-M:AppKit.NSView.ViewDidMoveToWindow
-M:AppKit.NSView.ViewDidUnhide
-M:AppKit.NSView.ViewWillDraw
-M:AppKit.NSView.ViewWillMoveToSuperview(AppKit.NSView)
-M:AppKit.NSView.ViewWillMoveToWindow(AppKit.NSWindow)
-M:AppKit.NSView.ViewWillStartLiveResize
-M:AppKit.NSView.ViewWithTag(System.IntPtr)
-M:AppKit.NSView.VisibleRect
-M:AppKit.NSView.WillOpenMenu(AppKit.NSMenu,AppKit.NSEvent)
-M:AppKit.NSView.WillRemoveSubview(AppKit.NSView)
-M:AppKit.NSView.WriteEpsInsideRect(CoreGraphics.CGRect,AppKit.NSPasteboard)
-M:AppKit.NSView.WritePdfInsideRect(CoreGraphics.CGRect,AppKit.NSPasteboard)
-M:AppKit.NSViewAnimation.#ctor(Foundation.NSDictionary[])
-M:AppKit.NSViewAnimation.#ctor(System.Double,AppKit.NSAnimationCurve)
-M:AppKit.NSViewAnimation.AnimationForKey(System.String)
-M:AppKit.NSViewAnimation.DefaultAnimationForKey(System.String)
M:AppKit.NSViewColumnMoveEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSViewColumnResizeEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSViewController.#ctor(System.String,Foundation.NSBundle)
-M:AppKit.NSViewController.AcceptsFirstResponder
-M:AppKit.NSViewController.AddChildViewController(AppKit.NSViewController)
-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
-M:AppKit.NSViewController.CommitEditing(Foundation.NSError@)
-M:AppKit.NSViewController.CommitEditing(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSViewController.ContextMenuKeyDown(AppKit.NSEvent)
-M:AppKit.NSViewController.CursorUpdate(AppKit.NSEvent)
-M:AppKit.NSViewController.DiscardEditing
-M:AppKit.NSViewController.DismissController(Foundation.NSObject)
-M:AppKit.NSViewController.DismissViewController(AppKit.NSViewController)
M:AppKit.NSViewController.Dispose(System.Boolean)
-M:AppKit.NSViewController.EncodeRestorableState(Foundation.NSCoder,Foundation.NSOperationQueue)
-M:AppKit.NSViewController.EncodeRestorableState(Foundation.NSCoder)
M:AppKit.NSViewController.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSViewController.EndGestureWithEvent(AppKit.NSEvent)
-M:AppKit.NSViewController.FlagsChanged(AppKit.NSEvent)
-M:AppKit.NSViewController.FlushBufferedKeyEvents
-M:AppKit.NSViewController.GetAllowedClassesForRestorableStateKeyPath(System.String)
-M:AppKit.NSViewController.GetNewWindowForTab(Foundation.NSObject)
-M:AppKit.NSViewController.HelpRequested(AppKit.NSEvent)
-M:AppKit.NSViewController.InsertChildViewController(AppKit.NSViewController,System.IntPtr)
-M:AppKit.NSViewController.InterpretKeyEvents(AppKit.NSEvent[])
-M:AppKit.NSViewController.InvalidateRestorableState
-M:AppKit.NSViewController.KeyDown(AppKit.NSEvent)
-M:AppKit.NSViewController.KeyUp(AppKit.NSEvent)
-M:AppKit.NSViewController.LoadView
-M:AppKit.NSViewController.LoadViewIfNeeded
-M:AppKit.NSViewController.MagnifyWithEvent(AppKit.NSEvent)
-M:AppKit.NSViewController.MouseDown(AppKit.NSEvent)
-M:AppKit.NSViewController.MouseDragged(AppKit.NSEvent)
-M:AppKit.NSViewController.MouseEntered(AppKit.NSEvent)
-M:AppKit.NSViewController.MouseExited(AppKit.NSEvent)
-M:AppKit.NSViewController.MouseMoved(AppKit.NSEvent)
-M:AppKit.NSViewController.MouseUp(AppKit.NSEvent)
-M:AppKit.NSViewController.NoResponderFor(ObjCRuntime.Selector)
-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.PreferredContentSizeDidChange(AppKit.NSViewController)
-M:AppKit.NSViewController.PrepareForSegue(AppKit.NSStoryboardSegue,Foundation.NSObject)
-M:AppKit.NSViewController.Present(AppKit.NSViewController,CoreGraphics.CGRect,AppKit.NSView,AppKit.NSRectEdge,AppKit.NSPopoverBehavior,System.Byte)
M:AppKit.NSViewController.PresentError(Foundation.NSError,AppKit.NSWindow,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.NSViewController.PresentError(Foundation.NSError)
-M:AppKit.NSViewController.PresentViewController(AppKit.NSViewController,AppKit.INSViewControllerPresentationAnimator)
-M:AppKit.NSViewController.PresentViewController(AppKit.NSViewController,CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr,AppKit.NSPopoverBehavior)
-M:AppKit.NSViewController.PresentViewControllerAsModalWindow(AppKit.NSViewController)
-M:AppKit.NSViewController.PresentViewControllerAsSheet(AppKit.NSViewController)
-M:AppKit.NSViewController.PresentViewControllerInWidget(AppKit.NSViewController)
-M:AppKit.NSViewController.PressureChange(AppKit.NSEvent)
-M:AppKit.NSViewController.QuickLook(AppKit.NSEvent)
-M:AppKit.NSViewController.RemoveChildViewController(System.IntPtr)
-M:AppKit.NSViewController.RemoveFromParentViewController
-M:AppKit.NSViewController.ResignFirstResponder
-M:AppKit.NSViewController.RestorableStateKeyPaths
-M:AppKit.NSViewController.RestoreState(Foundation.NSCoder)
-M:AppKit.NSViewController.RestoreUserActivityState(Foundation.NSUserActivity)
-M:AppKit.NSViewController.RightMouseDown(AppKit.NSEvent)
-M:AppKit.NSViewController.RightMouseDragged(AppKit.NSEvent)
-M:AppKit.NSViewController.RightMouseUp(AppKit.NSEvent)
-M:AppKit.NSViewController.RotateWithEvent(AppKit.NSEvent)
-M:AppKit.NSViewController.ScrollWheel(AppKit.NSEvent)
-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)
-M:AppKit.NSViewController.SwipeWithEvent(AppKit.NSEvent)
-M:AppKit.NSViewController.TabletPoint(AppKit.NSEvent)
-M:AppKit.NSViewController.TabletProximity(AppKit.NSEvent)
-M:AppKit.NSViewController.TouchesBeganWithEvent(AppKit.NSEvent)
-M:AppKit.NSViewController.TouchesCancelledWithEvent(AppKit.NSEvent)
-M:AppKit.NSViewController.TouchesEndedWithEvent(AppKit.NSEvent)
-M:AppKit.NSViewController.TouchesMovedWithEvent(AppKit.NSEvent)
-M:AppKit.NSViewController.TransitionFromViewController(AppKit.NSViewController,AppKit.NSViewController,AppKit.NSViewControllerTransitionOptions,System.Action)
-M:AppKit.NSViewController.TryToPerformwith(ObjCRuntime.Selector,Foundation.NSObject)
-M:AppKit.NSViewController.UpdateUserActivityState(Foundation.NSUserActivity)
-M:AppKit.NSViewController.UpdateViewConstraints
-M:AppKit.NSViewController.ValidateProposedFirstResponder(AppKit.NSResponder,AppKit.NSEvent)
-M:AppKit.NSViewController.ValidRequestorForSendType(System.String,System.String)
-M:AppKit.NSViewController.ViewDidAppear
-M:AppKit.NSViewController.ViewDidDisappear
-M:AppKit.NSViewController.ViewDidLayout
-M:AppKit.NSViewController.ViewDidLoad
-M:AppKit.NSViewController.ViewWillAppear
-M:AppKit.NSViewController.ViewWillDisappear
-M:AppKit.NSViewController.ViewWillLayout
-M:AppKit.NSViewController.ViewWillTransition(CoreGraphics.CGSize)
-M:AppKit.NSViewController.WantsForwardedScrollEventsForAxis(AppKit.NSEventGestureAxis)
-M:AppKit.NSViewController.WantsScrollEventsForSwipeTrackingOnAxis(AppKit.NSEventGestureAxis)
-M:AppKit.NSViewController.WillPresentError(Foundation.NSError)
-M:AppKit.NSViewControllerPresentationAnimator.AnimateDismissal(AppKit.NSViewController,AppKit.NSViewController)
-M:AppKit.NSViewControllerPresentationAnimator.AnimatePresentation(AppKit.NSViewController,AppKit.NSViewController)
-M:AppKit.NSVisualEffectView.#ctor(CoreGraphics.CGRect)
-M:AppKit.NSVisualEffectView.ViewDidMove
-M:AppKit.NSVisualEffectView.ViewWillMove(AppKit.NSWindow)
-M:AppKit.NSWindow.#ctor
-M:AppKit.NSWindow.#ctor(CoreGraphics.CGRect,AppKit.NSWindowStyle,AppKit.NSBackingStore,System.Boolean,AppKit.NSScreen)
-M:AppKit.NSWindow.#ctor(CoreGraphics.CGRect,AppKit.NSWindowStyle,AppKit.NSBackingStore,System.Boolean)
-M:AppKit.NSWindow.#ctor(System.IntPtr)
-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)
@@ -28735,118 +21534,12 @@ 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.AddChildWindow(AppKit.NSWindow,AppKit.NSWindowOrderingMode)
-M:AppKit.NSWindow.AddTabbedWindow(AppKit.NSWindow,AppKit.NSWindowOrderingMode)
-M:AppKit.NSWindow.AddTitlebarAccessoryViewController(AppKit.NSTitlebarAccessoryViewController)
-M:AppKit.NSWindow.AnimationFor(Foundation.NSString)
-M:AppKit.NSWindow.AnimationResizeTime(CoreGraphics.CGRect)
-M:AppKit.NSWindow.AutorecalculatesContentBorderThickness(AppKit.NSRectEdge)
-M:AppKit.NSWindow.BackingAlignedRect(CoreGraphics.CGRect,Foundation.NSAlignmentOptions)
-M:AppKit.NSWindow.BecomeKeyWindow
-M:AppKit.NSWindow.BecomeMainWindow
-M:AppKit.NSWindow.BeginCriticalSheet(AppKit.NSWindow,System.Action{System.IntPtr})
-M:AppKit.NSWindow.BeginDraggingSession(AppKit.NSDraggingItem[],AppKit.NSEvent,AppKit.INSDraggingSource)
-M:AppKit.NSWindow.BeginSheet(AppKit.NSWindow,System.Action{System.IntPtr})
-M:AppKit.NSWindow.CacheImageInRect(CoreGraphics.CGRect)
-M:AppKit.NSWindow.CanRepresentDisplayGamut(AppKit.NSDisplayGamut)
-M:AppKit.NSWindow.CascadeTopLeftFromPoint(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.Center
M:AppKit.NSWindow.Close
-M:AppKit.NSWindow.ConstrainFrameRect(CoreGraphics.CGRect,AppKit.NSScreen)
-M:AppKit.NSWindow.ContentBorderThicknessForEdge(AppKit.NSRectEdge)
-M:AppKit.NSWindow.ContentRectFor(CoreGraphics.CGRect,AppKit.NSWindowStyle)
-M:AppKit.NSWindow.ContentRectFor(CoreGraphics.CGRect)
-M:AppKit.NSWindow.ConvertBaseToScreen(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.ConvertPointFromBacking(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.ConvertPointFromScreen(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.ConvertPointToBacking(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.ConvertPointToScreen(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.ConvertRectFromBacking(CoreGraphics.CGRect)
-M:AppKit.NSWindow.ConvertRectFromScreen(CoreGraphics.CGRect)
-M:AppKit.NSWindow.ConvertRectToBacking(CoreGraphics.CGRect)
-M:AppKit.NSWindow.ConvertRectToScreen(CoreGraphics.CGRect)
-M:AppKit.NSWindow.ConvertScreenToBase(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.CurrentEvent
-M:AppKit.NSWindow.DataWithEpsInsideRect(CoreGraphics.CGRect)
-M:AppKit.NSWindow.DataWithPdfInsideRect(CoreGraphics.CGRect)
-M:AppKit.NSWindow.DefaultAnimationFor(Foundation.NSString)
-M:AppKit.NSWindow.Deminiaturize(Foundation.NSObject)
-M:AppKit.NSWindow.DisableCursorRects
-M:AppKit.NSWindow.DisableFlushWindow
-M:AppKit.NSWindow.DisableKeyEquivalentForDefaultButtonCell
-M:AppKit.NSWindow.DisableScreenUpdatesUntilFlush
-M:AppKit.NSWindow.DisableSnapshotRestoration
-M:AppKit.NSWindow.DiscardCachedImage
-M:AppKit.NSWindow.DiscardCursorRects
M:AppKit.NSWindow.DiscardEventsMatchingMask(AppKit.NSEventMask,AppKit.NSEvent)
-M:AppKit.NSWindow.DiscardEventsMatchingMask(System.UIntPtr,AppKit.NSEvent)
-M:AppKit.NSWindow.Display
-M:AppKit.NSWindow.DisplayIfNeeded
M:AppKit.NSWindow.Dispose(System.Boolean)
-M:AppKit.NSWindow.DragImage(AppKit.NSImage,CoreGraphics.CGPoint,CoreGraphics.CGSize,AppKit.NSEvent,AppKit.NSPasteboard,Foundation.NSObject,System.Boolean)
-M:AppKit.NSWindow.EnableCursorRects
-M:AppKit.NSWindow.EnableFlushWindow
-M:AppKit.NSWindow.EnableKeyEquivalentForDefaultButtonCell
-M:AppKit.NSWindow.EnableSnapshotRestoration
-M:AppKit.NSWindow.EndEditingFor(Foundation.NSObject)
-M:AppKit.NSWindow.EndSheet(AppKit.NSWindow,AppKit.NSModalResponse)
-M:AppKit.NSWindow.EndSheet(AppKit.NSWindow)
-M:AppKit.NSWindow.FieldEditor(System.Boolean,Foundation.NSObject)
-M:AppKit.NSWindow.FlushWindow
-M:AppKit.NSWindow.FlushWindowIfNeeded
-M:AppKit.NSWindow.FrameRectFor(CoreGraphics.CGRect,AppKit.NSWindowStyle)
-M:AppKit.NSWindow.FrameRectFor(CoreGraphics.CGRect)
M:AppKit.NSWindow.FromWindowRef(System.IntPtr)
-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.GetDisplayLink(Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSWindow.GetFrameAutosaveName
-M:AppKit.NSWindow.GetWindowWithContentViewController(AppKit.NSViewController)
-M:AppKit.NSWindow.GState
-M:AppKit.NSWindow.InsertTitlebarAccessoryViewController(AppKit.NSTitlebarAccessoryViewController,System.IntPtr)
-M:AppKit.NSWindow.InvalidateCursorRectsForView(AppKit.NSView)
-M:AppKit.NSWindow.InvalidateShadow
-M:AppKit.NSWindow.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector)
-M:AppKit.NSWindow.KeyViewSelectionDirection
-M:AppKit.NSWindow.LayoutIfNeeded
-M:AppKit.NSWindow.MakeFirstResponder(AppKit.NSResponder)
-M:AppKit.NSWindow.MakeKeyAndOrderFront(Foundation.NSObject)
-M:AppKit.NSWindow.MakeKeyWindow
-M:AppKit.NSWindow.MakeMainWindow
-M:AppKit.NSWindow.MenuChanged(AppKit.NSMenu)
-M:AppKit.NSWindow.MergeAllWindows(Foundation.NSObject)
-M:AppKit.NSWindow.MinFrameWidthWithTitle(System.String,AppKit.NSWindowStyle)
-M:AppKit.NSWindow.Miniaturize(Foundation.NSObject)
-M:AppKit.NSWindow.MoveTabToNewWindow(Foundation.NSObject)
M:AppKit.NSWindow.NextEventMatchingMask(AppKit.NSEventMask,Foundation.NSDate,System.String,System.Boolean)
M:AppKit.NSWindow.NextEventMatchingMask(AppKit.NSEventMask)
-M:AppKit.NSWindow.NextEventMatchingMask(System.UIntPtr,Foundation.NSDate,System.String,System.Boolean)
-M:AppKit.NSWindow.NextEventMatchingMask(System.UIntPtr)
-M:AppKit.NSWindow.OrderBack(Foundation.NSObject)
-M:AppKit.NSWindow.OrderFront(Foundation.NSObject)
-M:AppKit.NSWindow.OrderFrontRegardless
-M:AppKit.NSWindow.OrderOut(Foundation.NSObject)
-M:AppKit.NSWindow.OrderWindow(AppKit.NSWindowOrderingMode,System.IntPtr)
-M:AppKit.NSWindow.PerformClose(Foundation.NSObject)
-M:AppKit.NSWindow.PerformMiniaturize(Foundation.NSObject)
-M:AppKit.NSWindow.PerformWindowDrag(AppKit.NSEvent)
-M:AppKit.NSWindow.PerformZoom(Foundation.NSObject)
-M:AppKit.NSWindow.PostEvent(AppKit.NSEvent,System.Boolean)
-M:AppKit.NSWindow.Print(Foundation.NSObject)
-M:AppKit.NSWindow.RecalculateKeyViewLoop
-M:AppKit.NSWindow.RegisterForDraggedTypes(System.String[])
M:AppKit.NSWindow.ReleaseWhenClosed(System.Boolean)
M:AppKit.NSWindow.remove_DidBecomeKey(System.EventHandler)
M:AppKit.NSWindow.remove_DidBecomeMain(System.EventHandler)
@@ -28882,84 +21575,17 @@ M:AppKit.NSWindow.remove_WillExitVersionBrowser(System.EventHandler)
M:AppKit.NSWindow.remove_WillMiniaturize(System.EventHandler)
M:AppKit.NSWindow.remove_WillMove(System.EventHandler)
M:AppKit.NSWindow.remove_WillStartLiveResize(System.EventHandler)
-M:AppKit.NSWindow.RemoveChildWindow(AppKit.NSWindow)
-M:AppKit.NSWindow.RemoveFrameUsingName(System.String)
-M:AppKit.NSWindow.RemoveTitlebarAccessoryViewControllerAtIndex(System.IntPtr)
-M:AppKit.NSWindow.RequestSharingOfWindow(AppKit.NSImage,System.String,System.Action{Foundation.NSError})
-M:AppKit.NSWindow.RequestSharingOfWindow(AppKit.NSWindow,System.Action{Foundation.NSError})
M:AppKit.NSWindow.RequestSharingOfWindowAsync(AppKit.NSImage,System.String)
M:AppKit.NSWindow.RequestSharingOfWindowAsync(AppKit.NSWindow)
-M:AppKit.NSWindow.ResetCursorRects
-M:AppKit.NSWindow.ResignKeyWindow
-M:AppKit.NSWindow.ResignMainWindow
-M:AppKit.NSWindow.RestoreCachedImage
-M:AppKit.NSWindow.RunToolbarCustomizationPalette(Foundation.NSObject)
-M:AppKit.NSWindow.SaveFrameUsingName(System.String)
-M:AppKit.NSWindow.SelectKeyViewFollowingView(AppKit.NSView)
-M:AppKit.NSWindow.SelectKeyViewPrecedingView(AppKit.NSView)
-M:AppKit.NSWindow.SelectNextKeyView(Foundation.NSObject)
-M:AppKit.NSWindow.SelectNextTab(Foundation.NSObject)
-M:AppKit.NSWindow.SelectPreviousKeyView(Foundation.NSObject)
-M:AppKit.NSWindow.SelectPreviousTab(Foundation.NSObject)
-M:AppKit.NSWindow.SendEvent(AppKit.NSEvent)
-M:AppKit.NSWindow.SetAnchorAttribute(AppKit.NSLayoutAttribute,AppKit.NSLayoutConstraintOrientation)
-M:AppKit.NSWindow.SetAutorecalculatesContentBorderThickness(System.Boolean,AppKit.NSRectEdge)
-M:AppKit.NSWindow.SetContentBorderThickness(System.Runtime.InteropServices.NFloat,AppKit.NSRectEdge)
-M:AppKit.NSWindow.SetContentSize(CoreGraphics.CGSize)
M:AppKit.NSWindow.SetExcludedFromWindowsMenu(System.Boolean)
-M:AppKit.NSWindow.SetFrame(CoreGraphics.CGRect,System.Boolean,System.Boolean)
-M:AppKit.NSWindow.SetFrame(CoreGraphics.CGRect,System.Boolean)
-M:AppKit.NSWindow.SetFrameAutosaveName(System.String)
-M:AppKit.NSWindow.SetFrameFrom(System.String)
-M:AppKit.NSWindow.SetFrameOrigin(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.SetFrameTopLeftPoint(CoreGraphics.CGPoint)
-M:AppKit.NSWindow.SetFrameUsingName(System.String,System.Boolean)
-M:AppKit.NSWindow.SetFrameUsingName(System.String)
M:AppKit.NSWindow.SetIsMiniaturized(System.Boolean)
M:AppKit.NSWindow.SetIsVisible(System.Boolean)
M:AppKit.NSWindow.SetIsZoomed(System.Boolean)
M:AppKit.NSWindow.SetOneShot(System.Boolean)
-M:AppKit.NSWindow.SetTitleWithRepresentedFilename(System.String)
-M:AppKit.NSWindow.StandardWindowButton(AppKit.NSWindowButton,AppKit.NSWindowStyle)
-M:AppKit.NSWindow.StandardWindowButton(AppKit.NSWindowButton)
-M:AppKit.NSWindow.StringWithSavedFrame
-M:AppKit.NSWindow.ToggleFullScreen(Foundation.NSObject)
-M:AppKit.NSWindow.ToggleTabBar(Foundation.NSObject)
-M:AppKit.NSWindow.ToggleTabOverview(Foundation.NSObject)
-M:AppKit.NSWindow.ToggleToolbarShown(Foundation.NSObject)
-M:AppKit.NSWindow.TrackEventsMatching(AppKit.NSEventMask,System.Double,System.String,AppKit.NSWindowTrackEventsMatchingCompletionHandler)
-M:AppKit.NSWindow.TransferWindowSharing(AppKit.NSWindow,System.Action{Foundation.NSError})
M:AppKit.NSWindow.TransferWindowSharingAsync(AppKit.NSWindow)
-M:AppKit.NSWindow.TryToPerform(ObjCRuntime.Selector,Foundation.NSObject)
-M:AppKit.NSWindow.UnregisterDraggedTypes
-M:AppKit.NSWindow.Update
-M:AppKit.NSWindow.UpdateConstraintsIfNeeded
-M:AppKit.NSWindow.UseOptimizedDrawing(System.Boolean)
-M:AppKit.NSWindow.ValidateMenuItem(AppKit.NSMenuItem)
-M:AppKit.NSWindow.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.NSWindow.ValidRequestorForSendType(System.String,System.String)
-M:AppKit.NSWindow.VisualizeConstraints(AppKit.NSLayoutConstraint[])
-M:AppKit.NSWindow.WindowNumberAtPoint(CoreGraphics.CGPoint,System.IntPtr)
-M:AppKit.NSWindow.WindowNumbersWithOptions(AppKit.NSWindowNumberListOptions)
-M:AppKit.NSWindow.Zoom(Foundation.NSObject)
M:AppKit.NSWindowBackingPropertiesEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSWindowCoderEventArgs.#ctor(Foundation.NSCoder)
-M:AppKit.NSWindowController.#ctor(AppKit.NSWindow)
-M:AppKit.NSWindowController.#ctor(System.String,Foundation.NSObject)
-M:AppKit.NSWindowController.#ctor(System.String)
-M:AppKit.NSWindowController.Close
-M:AppKit.NSWindowController.DismissController(Foundation.NSObject)
M:AppKit.NSWindowController.EncodeTo(Foundation.NSCoder)
-M:AppKit.NSWindowController.LoadWindow
-M:AppKit.NSWindowController.PerformSegue(System.String,Foundation.NSObject)
-M:AppKit.NSWindowController.PrepareForSegue(AppKit.NSStoryboardSegue,Foundation.NSObject)
-M:AppKit.NSWindowController.SetDocumentEdited(System.Boolean)
-M:AppKit.NSWindowController.ShouldPerformSegue(System.String,Foundation.NSObject)
-M:AppKit.NSWindowController.ShowWindow(Foundation.NSObject)
-M:AppKit.NSWindowController.SynchronizeWindowTitleWithDocumentName
-M:AppKit.NSWindowController.WindowDidLoad
-M:AppKit.NSWindowController.WindowTitleForDocumentDisplayName(System.String)
-M:AppKit.NSWindowController.WindowWillLoad
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)
@@ -29010,231 +21636,56 @@ M:AppKit.NSWindowDelegate_Extensions.WillUseFullScreenContentSize(AppKit.INSWind
M:AppKit.NSWindowDelegate_Extensions.WillUseFullScreenPresentationOptions(AppKit.INSWindowDelegate,AppKit.NSWindow,AppKit.NSApplicationPresentationOptions)
M:AppKit.NSWindowDelegate_Extensions.WillUseStandardFrame(AppKit.INSWindowDelegate,AppKit.NSWindow,CoreGraphics.CGRect)
M:AppKit.NSWindowDelegate_Extensions.WindowShouldClose(AppKit.INSWindowDelegate,Foundation.NSObject)
-M:AppKit.NSWindowDelegate.CustomWindowsToEnterFullScreen(AppKit.NSWindow)
-M:AppKit.NSWindowDelegate.CustomWindowsToExitFullScreen(AppKit.NSWindow)
-M:AppKit.NSWindowDelegate.DidBecomeKey(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidBecomeMain(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidChangeBackingProperties(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidChangeScreen(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidChangeScreenProfile(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidDecodeRestorableState(AppKit.NSWindow,Foundation.NSCoder)
-M:AppKit.NSWindowDelegate.DidDeminiaturize(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidEndLiveResize(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidEndSheet(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidEnterFullScreen(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidEnterVersionBrowser(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidExitFullScreen(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidExitVersionBrowser(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidExpose(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidFailToEnterFullScreen(AppKit.NSWindow)
-M:AppKit.NSWindowDelegate.DidFailToExitFullScreen(AppKit.NSWindow)
-M:AppKit.NSWindowDelegate.DidMiniaturize(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidMove(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidResignKey(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidResignMain(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidResize(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.DidUpdate(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.GetPreviewRepresentableActivityItems(AppKit.NSWindow)
-M:AppKit.NSWindowDelegate.GetWindowForSharingRequest(AppKit.NSWindow)
-M:AppKit.NSWindowDelegate.ShouldDragDocumentWithEvent(AppKit.NSWindow,AppKit.NSEvent,CoreGraphics.CGPoint,AppKit.NSPasteboard)
-M:AppKit.NSWindowDelegate.ShouldPopUpDocumentPathMenu(AppKit.NSWindow,AppKit.NSMenu)
-M:AppKit.NSWindowDelegate.ShouldZoom(AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.NSWindowDelegate.StartCustomAnimationToEnterFullScreen(AppKit.NSWindow,System.Double)
-M:AppKit.NSWindowDelegate.StartCustomAnimationToExitFullScreen(AppKit.NSWindow,System.Double)
-M:AppKit.NSWindowDelegate.WillBeginSheet(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillClose(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillEncodeRestorableState(AppKit.NSWindow,Foundation.NSCoder)
-M:AppKit.NSWindowDelegate.WillEnterFullScreen(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillEnterVersionBrowser(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillExitFullScreen(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillExitVersionBrowser(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillMiniaturize(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillMove(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillPositionSheet(AppKit.NSWindow,AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.NSWindowDelegate.WillResize(AppKit.NSWindow,CoreGraphics.CGSize)
-M:AppKit.NSWindowDelegate.WillResizeForVersionBrowser(AppKit.NSWindow,CoreGraphics.CGSize,CoreGraphics.CGSize)
-M:AppKit.NSWindowDelegate.WillReturnFieldEditor(AppKit.NSWindow,Foundation.NSObject)
-M:AppKit.NSWindowDelegate.WillReturnUndoManager(AppKit.NSWindow)
-M:AppKit.NSWindowDelegate.WillStartLiveResize(Foundation.NSNotification)
-M:AppKit.NSWindowDelegate.WillUseFullScreenContentSize(AppKit.NSWindow,CoreGraphics.CGSize)
-M:AppKit.NSWindowDelegate.WillUseFullScreenPresentationOptions(AppKit.NSWindow,AppKit.NSApplicationPresentationOptions)
-M:AppKit.NSWindowDelegate.WillUseStandardFrame(AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.NSWindowDelegate.WindowShouldClose(Foundation.NSObject)
M:AppKit.NSWindowDurationEventArgs.#ctor(System.Double)
M:AppKit.NSWindowExposeEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSWindowRestoration.RestoreWindow(System.String,Foundation.NSCoder,AppKit.NSWindowCompletionHandler)
-M:AppKit.NSWindowTabGroup.Add(AppKit.NSWindow)
M:AppKit.NSWindowTabGroup.Dispose(System.Boolean)
-M:AppKit.NSWindowTabGroup.Insert(AppKit.NSWindow,System.IntPtr)
-M:AppKit.NSWindowTabGroup.Remove(AppKit.NSWindow)
-M:AppKit.NSWorkspace.AbsolutePathForAppBundle(System.String)
-M:AppKit.NSWorkspace.ActivateFileViewer(Foundation.NSUrl[])
-M:AppKit.NSWorkspace.DesktopImageOptions(AppKit.NSScreen)
-M:AppKit.NSWorkspace.DesktopImageUrl(AppKit.NSScreen)
-M:AppKit.NSWorkspace.DuplicateUrls(Foundation.NSArray,AppKit.NSWorkspaceUrlHandler)
-M:AppKit.NSWorkspace.ExtendPowerOffBy(System.IntPtr)
-M:AppKit.NSWorkspace.FullPathForApplication(System.String)
-M:AppKit.NSWorkspace.GetFileSystemInfo(System.String,System.Boolean@,System.Boolean@,System.Boolean@,System.String@,System.String@)
-M:AppKit.NSWorkspace.GetIcon(UniformTypeIdentifiers.UTType)
-M:AppKit.NSWorkspace.GetInfo(System.String,System.String@,System.String@)
-M:AppKit.NSWorkspace.GetUrlForApplicationToOpenContentType(UniformTypeIdentifiers.UTType)
-M:AppKit.NSWorkspace.GetUrlsForApplications(Foundation.NSUrl)
-M:AppKit.NSWorkspace.GetUrlsForApplications(System.String)
-M:AppKit.NSWorkspace.GetUrlsForApplicationsToOpenContentType(UniformTypeIdentifiers.UTType)
-M:AppKit.NSWorkspace.HideOtherApplications
-M:AppKit.NSWorkspace.IconForFile(System.String)
-M:AppKit.NSWorkspace.IconForFiles(System.String[])
M:AppKit.NSWorkspace.IconForFileType(AppKit.HfsTypeCode)
M:AppKit.NSWorkspace.IconForFileType(System.String)
-M:AppKit.NSWorkspace.IsFilenameExtensionValid(System.String,System.String)
-M:AppKit.NSWorkspace.IsFilePackage(System.String)
-M:AppKit.NSWorkspace.LaunchApp(System.String,AppKit.NSWorkspaceLaunchOptions,Foundation.NSAppleEventDescriptor,System.IntPtr)
-M:AppKit.NSWorkspace.LaunchApplication(Foundation.NSUrl,AppKit.NSWorkspaceLaunchOptions,Foundation.NSDictionary,Foundation.NSError@)
-M:AppKit.NSWorkspace.LaunchApplication(System.String,System.Boolean,System.Boolean)
-M:AppKit.NSWorkspace.LaunchApplication(System.String)
-M:AppKit.NSWorkspace.LocalizedDescription(System.String)
-M:AppKit.NSWorkspace.NoteFileSystemChanged(System.String)
-M:AppKit.NSWorkspace.OpenApplication(Foundation.NSUrl,AppKit.NSWorkspaceOpenConfiguration,System.Action{AppKit.NSRunningApplication,Foundation.NSError})
M:AppKit.NSWorkspace.OpenApplicationAsync(Foundation.NSUrl,AppKit.NSWorkspaceOpenConfiguration)
-M:AppKit.NSWorkspace.OpenFile(System.String,AppKit.NSImage,CoreGraphics.CGPoint,AppKit.NSView)
-M:AppKit.NSWorkspace.OpenFile(System.String,System.String,System.Boolean)
-M:AppKit.NSWorkspace.OpenFile(System.String,System.String)
-M:AppKit.NSWorkspace.OpenFile(System.String)
-M:AppKit.NSWorkspace.OpenUrl(Foundation.NSUrl,AppKit.NSWorkspaceLaunchOptions,Foundation.NSDictionary,Foundation.NSError@)
-M:AppKit.NSWorkspace.OpenUrl(Foundation.NSUrl,AppKit.NSWorkspaceOpenConfiguration,System.Action{AppKit.NSRunningApplication,Foundation.NSError})
-M:AppKit.NSWorkspace.OpenUrl(Foundation.NSUrl)
M:AppKit.NSWorkspace.OpenUrlAsync(Foundation.NSUrl,AppKit.NSWorkspaceOpenConfiguration)
-M:AppKit.NSWorkspace.OpenUrls(Foundation.NSUrl[],Foundation.NSUrl,AppKit.NSWorkspaceLaunchOptions,Foundation.NSDictionary,Foundation.NSError@)
-M:AppKit.NSWorkspace.OpenUrls(Foundation.NSUrl[],Foundation.NSUrl,AppKit.NSWorkspaceOpenConfiguration,System.Action{AppKit.NSRunningApplication,Foundation.NSError})
M:AppKit.NSWorkspace.OpenUrls(Foundation.NSUrl[],System.String,AppKit.NSWorkspaceLaunchOptions,Foundation.NSAppleEventDescriptor,System.String[])
M:AppKit.NSWorkspace.OpenUrls(Foundation.NSUrl[],System.String,AppKit.NSWorkspaceLaunchOptions,Foundation.NSAppleEventDescriptor)
M:AppKit.NSWorkspace.OpenUrlsAsync(Foundation.NSUrl[],Foundation.NSUrl,AppKit.NSWorkspaceOpenConfiguration)
-M:AppKit.NSWorkspace.PerformFileOperation(Foundation.NSString,System.String,System.String,System.String[],System.IntPtr@)
-M:AppKit.NSWorkspace.PreferredFilenameExtension(System.String)
-M:AppKit.NSWorkspace.RecycleUrls(Foundation.NSArray,AppKit.NSWorkspaceUrlHandler)
-M:AppKit.NSWorkspace.RequestAuthorization(AppKit.NSWorkspaceAuthorizationType,System.Action{AppKit.NSWorkspaceAuthorization,Foundation.NSError})
-M:AppKit.NSWorkspace.SelectFile(System.String,System.String)
-M:AppKit.NSWorkspace.SetDefaultApplicationToOpenContentType(Foundation.NSUrl,Foundation.NSUrl,System.Action{Foundation.NSError})
-M:AppKit.NSWorkspace.SetDefaultApplicationToOpenContentType(Foundation.NSUrl,UniformTypeIdentifiers.UTType,System.Action{Foundation.NSError})
M:AppKit.NSWorkspace.SetDefaultApplicationToOpenContentTypeAsync(Foundation.NSUrl,Foundation.NSUrl)
M:AppKit.NSWorkspace.SetDefaultApplicationToOpenContentTypeAsync(Foundation.NSUrl,UniformTypeIdentifiers.UTType)
-M:AppKit.NSWorkspace.SetDefaultApplicationToOpenFile(Foundation.NSUrl,Foundation.NSUrl,System.Action{Foundation.NSError})
M:AppKit.NSWorkspace.SetDefaultApplicationToOpenFileAsync(Foundation.NSUrl,Foundation.NSUrl)
-M:AppKit.NSWorkspace.SetDefaultApplicationToOpenUrls(Foundation.NSUrl,System.String,System.Action{Foundation.NSError})
M:AppKit.NSWorkspace.SetDefaultApplicationToOpenUrlsAsync(Foundation.NSUrl,System.String)
-M:AppKit.NSWorkspace.SetDesktopImageUrl(Foundation.NSUrl,AppKit.NSScreen,Foundation.NSDictionary,Foundation.NSError)
-M:AppKit.NSWorkspace.SetIconforFile(AppKit.NSImage,System.String,AppKit.NSWorkspaceIconCreationOptions)
-M:AppKit.NSWorkspace.ShowSearchResults(System.String)
-M:AppKit.NSWorkspace.TypeConformsTo(System.String,System.String)
-M:AppKit.NSWorkspace.TypeOfFile(System.String,Foundation.NSError@)
-M:AppKit.NSWorkspace.UnmountAndEjectDevice(Foundation.NSUrl,Foundation.NSError@)
-M:AppKit.NSWorkspace.UnmountAndEjectDevice(System.String)
-M:AppKit.NSWorkspace.UrlForApplication(Foundation.NSUrl)
-M:AppKit.NSWorkspace.UrlForApplication(System.String)
M:AppKit.NSWorkspaceApplicationEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSWorkspaceFileOperationEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSWorkspaceMountEventArgs.#ctor(Foundation.NSNotification)
M:AppKit.NSWorkspaceOpenConfiguration.Copy(Foundation.NSZone)
-M:AppKit.NSWorkspaceOpenConfiguration.Create
M:AppKit.NSWorkspaceRenamedEventArgs.#ctor(Foundation.NSNotification)
-M:AppKit.NSWritingToolsCoordinator.#ctor(AppKit.INSWritingToolsCoordinatorDelegate)
M:AppKit.NSWritingToolsCoordinator.Dispose(System.Boolean)
-M:AppKit.NSWritingToolsCoordinator.StopWritingTools
-M:AppKit.NSWritingToolsCoordinator.UpdateForReflowedTextInContext(Foundation.NSUuid)
-M:AppKit.NSWritingToolsCoordinator.UpdateRange(Foundation.NSRange,Foundation.NSAttributedString,AppKit.NSWritingToolsCoordinatorTextUpdateReason,Foundation.NSUuid)
-M:AppKit.NSWritingToolsCoordinatorContext.#ctor(Foundation.NSAttributedString,Foundation.NSRange)
-M:AppKit.NSWritingToolsCoordinatorDelegate.FinishTextAnimation(AppKit.NSWritingToolsCoordinator,AppKit.NSWritingToolsCoordinatorTextAnimation,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,System.Action)
-M:AppKit.NSWritingToolsCoordinatorDelegate.PrepareForTextAnimation(AppKit.NSWritingToolsCoordinator,AppKit.NSWritingToolsCoordinatorTextAnimation,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,System.Action)
-M:AppKit.NSWritingToolsCoordinatorDelegate.ReplaceRange(AppKit.NSWritingToolsCoordinator,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,Foundation.NSAttributedString,AppKit.NSWritingToolsCoordinatorTextReplacementReason,AppKit.NSWritingToolsCoordinatorAnimationParameters,AppKit.NSWritingToolsCoordinatorDelegateReplaceRangeCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.RequestsBoundingBezierPaths(AppKit.NSWritingToolsCoordinator,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,AppKit.NSWritingToolsCoordinatorDelegateRequestsBoundingBezierPathsCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.RequestsContexts(AppKit.NSWritingToolsCoordinator,AppKit.NSWritingToolsCoordinatorContextScope,AppKit.NSWritingToolsCoordinatorDelegateRequestsContextsCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.RequestsDecorationContainerView(AppKit.NSWritingToolsCoordinator,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,AppKit.NSWritingToolsCoordinatorDelegateRequestsDecorationContainerViewCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.RequestsPreview(AppKit.NSWritingToolsCoordinator,CoreGraphics.CGRect,AppKit.NSWritingToolsCoordinatorContext,AppKit.NSWritingToolsCoordinatorDelegateRequestsPreviewCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.RequestsPreviewForTextAnimation(AppKit.NSWritingToolsCoordinator,AppKit.NSWritingToolsCoordinatorTextAnimation,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,AppKit.NSWritingToolsCoordinatorDelegateRequestsPreviewForTextAnimationCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.RequestsRange(AppKit.NSWritingToolsCoordinator,CoreGraphics.CGPoint,AppKit.NSWritingToolsCoordinatorDelegateRequestsRangeCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.RequestsSingleContainerSubranges(AppKit.NSWritingToolsCoordinator,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,AppKit.NSWritingToolsCoordinatorDelegateRequestsSingleContainerSubrangesCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.RequestsUnderlinePaths(AppKit.NSWritingToolsCoordinator,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,AppKit.NSWritingToolsCoordinatorDelegateRequestsUnderlinePathsCallback)
-M:AppKit.NSWritingToolsCoordinatorDelegate.SelectRanges(AppKit.NSWritingToolsCoordinator,Foundation.NSValue[],AppKit.NSWritingToolsCoordinatorContext,System.Action)
-M:AppKit.NSWritingToolsCoordinatorDelegate.WillChangeToState(AppKit.NSWritingToolsCoordinator,AppKit.NSWritingToolsCoordinatorState,System.Action)
M:AppTrackingTransparency.ATTrackingManager.RequestTrackingAuthorization(System.Action{AppTrackingTransparency.ATTrackingManagerAuthorizationStatus})
M:AppTrackingTransparency.ATTrackingManager.RequestTrackingAuthorizationAsync
-M:ARKit.ARAnchor.#ctor(ARKit.ARAnchor)
-M:ARKit.ARAnchor.#ctor(CoreGraphics.NMatrix4)
-M:ARKit.ARAnchor.#ctor(System.String,CoreGraphics.NMatrix4)
M:ARKit.ARAnchor.Copy(Foundation.NSZone)
M:ARKit.ARAnchor.EncodeTo(Foundation.NSCoder)
-M:ARKit.ARAppClipCodeAnchor.#ctor(ARKit.ARAnchor)
M:ARKit.ARBlendShapeLocationOptions.#ctor
M:ARKit.ARBlendShapeLocationOptions.#ctor(Foundation.NSDictionary)
-M:ARKit.ARBodyAnchor.#ctor(ARKit.ARAnchor)
-M:ARKit.ARBodyTrackingConfiguration.GetSupportedVideoFormats
-M:ARKit.ARBodyTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
M:ARKit.ARCamera.Copy(Foundation.NSZone)
-M:ARKit.ARCamera.GetProjectionMatrix(UIKit.UIInterfaceOrientation,CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:ARKit.ARCamera.GetViewMatrix(UIKit.UIInterfaceOrientation)
-M:ARKit.ARCamera.Project(CoreGraphics.NVector3,UIKit.UIInterfaceOrientation,CoreGraphics.CGSize)
-M:ARKit.ARCamera.Unproject(CoreGraphics.CGPoint,CoreGraphics.NMatrix4,UIKit.UIInterfaceOrientation,CoreGraphics.CGSize)
M:ARKit.ARCoachingOverlayView.#ctor(CoreGraphics.CGRect)
M:ARKit.ARCoachingOverlayView.ARCoachingOverlayViewAppearance.#ctor(System.IntPtr)
M:ARKit.ARCoachingOverlayView.Dispose(System.Boolean)
-M:ARKit.ARCoachingOverlayView.SetActive(System.Boolean,System.Boolean)
M:ARKit.ARCoachingOverlayViewDelegate_Extensions.DidDeactivate(ARKit.IARCoachingOverlayViewDelegate,ARKit.ARCoachingOverlayView)
M:ARKit.ARCoachingOverlayViewDelegate_Extensions.DidRequestSessionReset(ARKit.IARCoachingOverlayViewDelegate,ARKit.ARCoachingOverlayView)
M:ARKit.ARCoachingOverlayViewDelegate_Extensions.WillActivate(ARKit.IARCoachingOverlayViewDelegate,ARKit.ARCoachingOverlayView)
-M:ARKit.ARCoachingOverlayViewDelegate.DidDeactivate(ARKit.ARCoachingOverlayView)
-M:ARKit.ARCoachingOverlayViewDelegate.DidRequestSessionReset(ARKit.ARCoachingOverlayView)
-M:ARKit.ARCoachingOverlayViewDelegate.WillActivate(ARKit.ARCoachingOverlayView)
M:ARKit.ARCollaborationData.EncodeTo(Foundation.NSCoder)
M:ARKit.ARConfiguration.Copy(Foundation.NSZone)
-M:ARKit.ARConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
M:ARKit.ARDepthData.Dispose(System.Boolean)
-M:ARKit.AREnvironmentProbeAnchor.#ctor(ARKit.ARAnchor)
-M:ARKit.AREnvironmentProbeAnchor.#ctor(CoreGraphics.NMatrix4,CoreGraphics.NVector3)
-M:ARKit.AREnvironmentProbeAnchor.#ctor(System.String,CoreGraphics.NMatrix4,CoreGraphics.NVector3)
-M:ARKit.ARFaceAnchor.#ctor(ARKit.ARAnchor)
M:ARKit.ARFaceGeometry.#ctor(ARKit.ARBlendShapeLocationOptions)
M:ARKit.ARFaceGeometry.Copy(Foundation.NSZone)
M:ARKit.ARFaceGeometry.EncodeTo(Foundation.NSCoder)
M:ARKit.ARFaceGeometry.GetTextureCoordinates
M:ARKit.ARFaceGeometry.GetTriangleIndices
M:ARKit.ARFaceGeometry.GetVertices
-M:ARKit.ARFaceTrackingConfiguration.GetSupportedVideoFormats
-M:ARKit.ARFaceTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
M:ARKit.ARFrame.Copy(Foundation.NSZone)
-M:ARKit.ARFrame.CreateRaycastQuery(CoreGraphics.CGPoint,ARKit.ARRaycastTarget,ARKit.ARRaycastTargetAlignment)
-M:ARKit.ARFrame.GetDisplayTransform(UIKit.UIInterfaceOrientation,CoreGraphics.CGSize)
-M:ARKit.ARFrame.HitTest(CoreGraphics.CGPoint,ARKit.ARHitTestResultType)
-M:ARKit.ARGeoAnchor.#ctor(ARKit.ARAnchor)
-M:ARKit.ARGeoAnchor.#ctor(CoreLocation.CLLocationCoordinate2D,System.Double)
-M:ARKit.ARGeoAnchor.#ctor(CoreLocation.CLLocationCoordinate2D)
-M:ARKit.ARGeoAnchor.#ctor(System.String,CoreLocation.CLLocationCoordinate2D,System.Double)
-M:ARKit.ARGeoAnchor.#ctor(System.String,CoreLocation.CLLocationCoordinate2D)
M:ARKit.ARGeometryElement.EncodeTo(Foundation.NSCoder)
M:ARKit.ARGeometrySource.EncodeTo(Foundation.NSCoder)
-M:ARKit.ARGeoTrackingConfiguration.CheckAvailability(CoreLocation.CLLocationCoordinate2D,System.Action{System.Boolean,Foundation.NSError})
-M:ARKit.ARGeoTrackingConfiguration.CheckAvailability(System.Action{System.Boolean,Foundation.NSError})
M:ARKit.ARGeoTrackingConfiguration.CheckAvailabilityAsync
M:ARKit.ARGeoTrackingConfiguration.CheckAvailabilityAsync(CoreLocation.CLLocationCoordinate2D)
-M:ARKit.ARGeoTrackingConfiguration.Create
-M:ARKit.ARGeoTrackingConfiguration.GetSupportedVideoFormats
-M:ARKit.ARGeoTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
M:ARKit.ARGeoTrackingStatus.Copy(Foundation.NSZone)
M:ARKit.ARGeoTrackingStatus.EncodeTo(Foundation.NSCoder)
-M:ARKit.ARImageAnchor.#ctor(ARKit.ARAnchor)
-M:ARKit.ARImageTrackingConfiguration.GetSupportedVideoFormats
-M:ARKit.ARImageTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
-M:ARKit.ARMatteGenerator.#ctor(Metal.IMTLDevice,ARKit.ARMatteResolution)
-M:ARKit.ARMatteGenerator.GenerateDilatedDepth(ARKit.ARFrame,Metal.IMTLCommandBuffer)
-M:ARKit.ARMatteGenerator.GenerateMatte(ARKit.ARFrame,Metal.IMTLCommandBuffer)
-M:ARKit.ARMeshAnchor.#ctor(ARKit.ARAnchor)
M:ARKit.ARMeshGeometry.EncodeTo(Foundation.NSCoder)
-M:ARKit.ARObjectAnchor.#ctor(ARKit.ARAnchor)
-M:ARKit.ARObjectScanningConfiguration.GetSupportedVideoFormats
-M:ARKit.ARObjectScanningConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
-M:ARKit.AROrientationTrackingConfiguration.GetSupportedVideoFormats
-M:ARKit.AROrientationTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
-M:ARKit.ARParticipantAnchor.#ctor(ARKit.ARAnchor)
-M:ARKit.ARPlaneAnchor.#ctor(ARKit.ARAnchor)
M:ARKit.ARPlaneExtent.EncodeTo(Foundation.NSCoder)
M:ARKit.ARPlaneGeometry.EncodeTo(Foundation.NSCoder)
M:ARKit.ARPlaneGeometry.GetBoundaryVertices
@@ -29242,94 +21693,33 @@ M:ARKit.ARPlaneGeometry.GetTextureCoordinates
M:ARKit.ARPlaneGeometry.GetTriangleIndices
M:ARKit.ARPlaneGeometry.GetVertices
M:ARKit.ARPointCloud.EncodeTo(Foundation.NSCoder)
-M:ARKit.ARPositionalTrackingConfiguration.GetSupportedVideoFormats
-M:ARKit.ARPositionalTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
-M:ARKit.ARQuickLookPreviewItem.#ctor(Foundation.NSUrl)
-M:ARKit.ARRaycastQuery.#ctor(CoreGraphics.NVector3,CoreGraphics.NVector3,ARKit.ARRaycastTarget,ARKit.ARRaycastTargetAlignment)
-M:ARKit.ARReferenceImage.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,System.Runtime.InteropServices.NFloat)
-M:ARKit.ARReferenceImage.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,System.Runtime.InteropServices.NFloat)
M:ARKit.ARReferenceImage.Copy(Foundation.NSZone)
-M:ARKit.ARReferenceImage.GetReferenceImagesInGroup(System.String,Foundation.NSBundle)
-M:ARKit.ARReferenceImage.Validate(System.Action{Foundation.NSError})
M:ARKit.ARReferenceImage.ValidateAsync
-M:ARKit.ARReferenceObject.#ctor(Foundation.NSUrl,Foundation.NSError@)
-M:ARKit.ARReferenceObject.ApplyTransform(CoreGraphics.NMatrix4)
M:ARKit.ARReferenceObject.EncodeTo(Foundation.NSCoder)
-M:ARKit.ARReferenceObject.Export(Foundation.NSUrl,UIKit.UIImage,Foundation.NSError@)
-M:ARKit.ARReferenceObject.GetReferenceObjects(System.String,Foundation.NSBundle)
-M:ARKit.ARReferenceObject.Merge(ARKit.ARReferenceObject,Foundation.NSError@)
-M:ARKit.ARSCNFaceGeometry.Create(Metal.IMTLDevice,System.Boolean)
-M:ARKit.ARSCNFaceGeometry.Create(Metal.IMTLDevice)
-M:ARKit.ARSCNFaceGeometry.Update(ARKit.ARFaceGeometry)
-M:ARKit.ARSCNPlaneGeometry.Create(Metal.IMTLDevice)
-M:ARKit.ARSCNPlaneGeometry.Update(ARKit.ARPlaneGeometry)
M:ARKit.ARSCNView.ARSCNViewAppearance.#ctor(System.IntPtr)
-M:ARKit.ARSCNView.CreateRaycastQuery(CoreGraphics.CGPoint,ARKit.ARRaycastTarget,ARKit.ARRaycastTargetAlignment)
M:ARKit.ARSCNView.Dispose(System.Boolean)
-M:ARKit.ARSCNView.GetAnchor(SceneKit.SCNNode)
-M:ARKit.ARSCNView.GetNode(ARKit.ARAnchor)
-M:ARKit.ARSCNView.HitTest(CoreGraphics.CGPoint,ARKit.ARHitTestResultType)
-M:ARKit.ARSCNView.Unproject(CoreGraphics.CGPoint,CoreGraphics.NMatrix4)
M:ARKit.ARSCNViewDelegate_Extensions.DidAddNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor)
M:ARKit.ARSCNViewDelegate_Extensions.DidRemoveNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor)
M:ARKit.ARSCNViewDelegate_Extensions.DidUpdateNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor)
M:ARKit.ARSCNViewDelegate_Extensions.GetNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,ARKit.ARAnchor)
M:ARKit.ARSCNViewDelegate_Extensions.WillUpdateNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor)
-M:ARKit.ARSCNViewDelegate.CameraDidChangeTrackingState(ARKit.ARSession,ARKit.ARCamera)
-M:ARKit.ARSCNViewDelegate.DidAddNode(SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor)
M:ARKit.ARSCNViewDelegate.DidApplyAnimations(SceneKit.ISCNSceneRenderer,System.Double)
M:ARKit.ARSCNViewDelegate.DidApplyConstraints(SceneKit.ISCNSceneRenderer,System.Double)
-M:ARKit.ARSCNViewDelegate.DidChangeGeoTrackingStatus(ARKit.ARSession,ARKit.ARGeoTrackingStatus)
-M:ARKit.ARSCNViewDelegate.DidFail(ARKit.ARSession,Foundation.NSError)
-M:ARKit.ARSCNViewDelegate.DidOutputAudioSampleBuffer(ARKit.ARSession,CoreMedia.CMSampleBuffer)
-M:ARKit.ARSCNViewDelegate.DidOutputCollaborationData(ARKit.ARSession,ARKit.ARCollaborationData)
-M:ARKit.ARSCNViewDelegate.DidRemoveNode(SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor)
M:ARKit.ARSCNViewDelegate.DidRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double)
M:ARKit.ARSCNViewDelegate.DidSimulatePhysics(SceneKit.ISCNSceneRenderer,System.Double)
-M:ARKit.ARSCNViewDelegate.DidUpdateNode(SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor)
-M:ARKit.ARSCNViewDelegate.GetNode(SceneKit.ISCNSceneRenderer,ARKit.ARAnchor)
-M:ARKit.ARSCNViewDelegate.InterruptionEnded(ARKit.ARSession)
-M:ARKit.ARSCNViewDelegate.ShouldAttemptRelocalization(ARKit.ARSession)
M:ARKit.ARSCNViewDelegate.Update(SceneKit.ISCNSceneRenderer,System.Double)
-M:ARKit.ARSCNViewDelegate.WasInterrupted(ARKit.ARSession)
M:ARKit.ARSCNViewDelegate.WillRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double)
-M:ARKit.ARSCNViewDelegate.WillUpdateNode(SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor)
-M:ARKit.ARSession.AddAnchor(ARKit.ARAnchor)
-M:ARKit.ARSession.CaptureHighResolutionFrame(System.Action{ARKit.ARFrame,Foundation.NSError})
M:ARKit.ARSession.CaptureHighResolutionFrameAsync
-M:ARKit.ARSession.CreateReferenceObject(CoreGraphics.NMatrix4,CoreGraphics.NVector3,CoreGraphics.NVector3,System.Action{ARKit.ARReferenceObject,Foundation.NSError})
M:ARKit.ARSession.CreateReferenceObjectAsync(CoreGraphics.NMatrix4,CoreGraphics.NVector3,CoreGraphics.NVector3)
M:ARKit.ARSession.Dispose(System.Boolean)
-M:ARKit.ARSession.GetCurrentWorldMap(System.Action{ARKit.ARWorldMap,Foundation.NSError})
M:ARKit.ARSession.GetCurrentWorldMapAsync
-M:ARKit.ARSession.GetGeoLocation(CoreGraphics.NVector3,ARKit.GetGeolocationCallback)
M:ARKit.ARSession.GetGeoLocationAsync(CoreGraphics.NVector3)
-M:ARKit.ARSession.Pause
-M:ARKit.ARSession.Raycast(ARKit.ARRaycastQuery)
-M:ARKit.ARSession.RemoveAnchor(ARKit.ARAnchor)
-M:ARKit.ARSession.Run(ARKit.ARConfiguration,ARKit.ARSessionRunOptions)
-M:ARKit.ARSession.Run(ARKit.ARConfiguration)
-M:ARKit.ARSession.SetWorldOrigin(CoreGraphics.NMatrix4)
-M:ARKit.ARSession.TrackedRaycast(ARKit.ARRaycastQuery,System.Action{ARKit.ARRaycastResult[]})
M:ARKit.ARSession.TrackedRaycastAsync(ARKit.ARRaycastQuery,ARKit.ARTrackedRaycast@)
M:ARKit.ARSession.TrackedRaycastAsync(ARKit.ARRaycastQuery)
-M:ARKit.ARSession.Update(ARKit.ARCollaborationData)
M:ARKit.ARSessionDelegate_Extensions.DidAddAnchors(ARKit.IARSessionDelegate,ARKit.ARSession,ARKit.ARAnchor[])
M:ARKit.ARSessionDelegate_Extensions.DidRemoveAnchors(ARKit.IARSessionDelegate,ARKit.ARSession,ARKit.ARAnchor[])
M:ARKit.ARSessionDelegate_Extensions.DidUpdateAnchors(ARKit.IARSessionDelegate,ARKit.ARSession,ARKit.ARAnchor[])
M:ARKit.ARSessionDelegate_Extensions.DidUpdateFrame(ARKit.IARSessionDelegate,ARKit.ARSession,ARKit.ARFrame)
-M:ARKit.ARSessionDelegate.CameraDidChangeTrackingState(ARKit.ARSession,ARKit.ARCamera)
-M:ARKit.ARSessionDelegate.DidAddAnchors(ARKit.ARSession,ARKit.ARAnchor[])
-M:ARKit.ARSessionDelegate.DidChangeGeoTrackingStatus(ARKit.ARSession,ARKit.ARGeoTrackingStatus)
-M:ARKit.ARSessionDelegate.DidFail(ARKit.ARSession,Foundation.NSError)
-M:ARKit.ARSessionDelegate.DidOutputAudioSampleBuffer(ARKit.ARSession,CoreMedia.CMSampleBuffer)
-M:ARKit.ARSessionDelegate.DidOutputCollaborationData(ARKit.ARSession,ARKit.ARCollaborationData)
-M:ARKit.ARSessionDelegate.DidRemoveAnchors(ARKit.ARSession,ARKit.ARAnchor[])
-M:ARKit.ARSessionDelegate.DidUpdateAnchors(ARKit.ARSession,ARKit.ARAnchor[])
-M:ARKit.ARSessionDelegate.DidUpdateFrame(ARKit.ARSession,ARKit.ARFrame)
-M:ARKit.ARSessionDelegate.InterruptionEnded(ARKit.ARSession)
-M:ARKit.ARSessionDelegate.ShouldAttemptRelocalization(ARKit.ARSession)
-M:ARKit.ARSessionDelegate.WasInterrupted(ARKit.ARSession)
M:ARKit.ARSessionObserver_Extensions.CameraDidChangeTrackingState(ARKit.IARSessionObserver,ARKit.ARSession,ARKit.ARCamera)
M:ARKit.ARSessionObserver_Extensions.DidChangeGeoTrackingStatus(ARKit.IARSessionObserver,ARKit.ARSession,ARKit.ARGeoTrackingStatus)
M:ARKit.ARSessionObserver_Extensions.DidFail(ARKit.IARSessionObserver,ARKit.ARSession,Foundation.NSError)
@@ -29339,42 +21729,21 @@ M:ARKit.ARSessionObserver_Extensions.InterruptionEnded(ARKit.IARSessionObserver,
M:ARKit.ARSessionObserver_Extensions.ShouldAttemptRelocalization(ARKit.IARSessionObserver,ARKit.ARSession)
M:ARKit.ARSessionObserver_Extensions.WasInterrupted(ARKit.IARSessionObserver,ARKit.ARSession)
M:ARKit.ARSkeleton.CreateJointName(Foundation.NSString)
-M:ARKit.ARSkeleton.IsJointTracked(System.IntPtr)
M:ARKit.ARSkeleton2D.GetLandmarkPoint(ARKit.ARSkeletonJointName)
M:ARKit.ARSkeleton3D.GetLocalTransform(ARKit.ARSkeletonJointName)
M:ARKit.ARSkeleton3D.GetModelTransform(ARKit.ARSkeletonJointName)
M:ARKit.ARSkeletonDefinition.GetJointIndex(ARKit.ARSkeletonJointName)
M:ARKit.ARSKView.ARSKViewAppearance.#ctor(System.IntPtr)
M:ARKit.ARSKView.Dispose(System.Boolean)
-M:ARKit.ARSKView.GetAnchor(SpriteKit.SKNode)
-M:ARKit.ARSKView.GetNode(ARKit.ARAnchor)
-M:ARKit.ARSKView.HitTest(CoreGraphics.CGPoint,ARKit.ARHitTestResultType)
M:ARKit.ARSKViewDelegate_Extensions.DidAddNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor)
M:ARKit.ARSKViewDelegate_Extensions.DidRemoveNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor)
M:ARKit.ARSKViewDelegate_Extensions.DidUpdateNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor)
M:ARKit.ARSKViewDelegate_Extensions.GetNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,ARKit.ARAnchor)
M:ARKit.ARSKViewDelegate_Extensions.WillUpdateNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor)
-M:ARKit.ARSKViewDelegate.CameraDidChangeTrackingState(ARKit.ARSession,ARKit.ARCamera)
-M:ARKit.ARSKViewDelegate.DidAddNode(ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor)
-M:ARKit.ARSKViewDelegate.DidChangeGeoTrackingStatus(ARKit.ARSession,ARKit.ARGeoTrackingStatus)
-M:ARKit.ARSKViewDelegate.DidFail(ARKit.ARSession,Foundation.NSError)
-M:ARKit.ARSKViewDelegate.DidOutputAudioSampleBuffer(ARKit.ARSession,CoreMedia.CMSampleBuffer)
-M:ARKit.ARSKViewDelegate.DidOutputCollaborationData(ARKit.ARSession,ARKit.ARCollaborationData)
-M:ARKit.ARSKViewDelegate.DidRemoveNode(ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor)
-M:ARKit.ARSKViewDelegate.DidUpdateNode(ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor)
-M:ARKit.ARSKViewDelegate.GetNode(ARKit.ARSKView,ARKit.ARAnchor)
-M:ARKit.ARSKViewDelegate.InterruptionEnded(ARKit.ARSession)
-M:ARKit.ARSKViewDelegate.ShouldAttemptRelocalization(ARKit.ARSession)
M:ARKit.ARSKViewDelegate.ShouldRender(SpriteKit.SKView,System.Double)
-M:ARKit.ARSKViewDelegate.WasInterrupted(ARKit.ARSession)
-M:ARKit.ARSKViewDelegate.WillUpdateNode(ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor)
-M:ARKit.ARTrackedRaycast.StopTracking
M:ARKit.ARVideoFormat.Copy(Foundation.NSZone)
M:ARKit.ARWorldMap.Copy(Foundation.NSZone)
M:ARKit.ARWorldMap.EncodeTo(Foundation.NSCoder)
-M:ARKit.ARWorldTrackingConfiguration.GetSupportedVideoFormats
-M:ARKit.ARWorldTrackingConfiguration.SupportsFrameSemantics(ARKit.ARFrameSemantics)
-M:ARKit.ARWorldTrackingConfiguration.SupportsSceneReconstruction(ARKit.ARSceneReconstruction)
M:ARKit.GeoLocationForPoint.#ctor(CoreLocation.CLLocationCoordinate2D,System.Double)
M:ARKit.IARCoachingOverlayViewDelegate.DidDeactivate(ARKit.ARCoachingOverlayView)
M:ARKit.IARCoachingOverlayViewDelegate.DidRequestSessionReset(ARKit.ARCoachingOverlayView)
@@ -30300,42 +22669,19 @@ M:AutomaticAssessmentConfiguration.IAEAssessmentSessionDelegate.WasInterrupted(A
M:AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs.#ctor(Foundation.NSNotification)
M:AVFoundation.AudioSettings.#ctor
M:AVFoundation.AudioSettings.#ctor(Foundation.NSDictionary)
-M:AVFoundation.AVAsset.CancelLoading
-M:AVFoundation.AVAsset.Copy(Foundation.NSZone)
-M:AVFoundation.AVAsset.FindUnusedTrackId(System.Action{System.Int32,Foundation.NSError})
M:AVFoundation.AVAsset.FindUnusedTrackIdAsync
-M:AVFoundation.AVAsset.FromUrl(Foundation.NSUrl)
-M:AVFoundation.AVAsset.GetChapterMetadataGroups(Foundation.NSLocale,AVFoundation.AVMetadataItem[])
-M:AVFoundation.AVAsset.GetChapterMetadataGroupsBestMatchingPreferredLanguages(System.String[])
M:AVFoundation.AVAsset.GetMediaSelectionGroupForMediaCharacteristic(AVFoundation.AVMediaCharacteristics)
M:AVFoundation.AVAsset.GetMetadataForFormat(AVFoundation.AVMetadataFormat)
-M:AVFoundation.AVAsset.GetMetadataForFormat(Foundation.NSString)
M:AVFoundation.AVAsset.GetTracks(AVFoundation.AVMediaCharacteristics)
M:AVFoundation.AVAsset.GetTracks(AVFoundation.AVMediaTypes)
-M:AVFoundation.AVAsset.LoadChapterMetadataGroups(Foundation.NSLocale,System.String[],System.Action{Foundation.NSArray{AVFoundation.AVTimedMetadataGroup},Foundation.NSError})
-M:AVFoundation.AVAsset.LoadChapterMetadataGroups(System.String[],System.Action{Foundation.NSArray{AVFoundation.AVTimedMetadataGroup},Foundation.NSError})
M:AVFoundation.AVAsset.LoadChapterMetadataGroupsAsync(Foundation.NSLocale,System.String[])
M:AVFoundation.AVAsset.LoadChapterMetadataGroupsAsync(System.String[])
-M:AVFoundation.AVAsset.LoadMediaSelectionGroup(System.String,System.Action{AVFoundation.AVMediaSelectionGroup,Foundation.NSError})
M:AVFoundation.AVAsset.LoadMediaSelectionGroupAsync(System.String)
-M:AVFoundation.AVAsset.LoadMetadata(System.String,System.Action{Foundation.NSArray{AVFoundation.AVMetadataItem},Foundation.NSError})
M:AVFoundation.AVAsset.LoadMetadataAsync(System.String)
-M:AVFoundation.AVAsset.LoadTrack(System.Int32,System.Action{AVFoundation.AVCompositionTrack,Foundation.NSError})
M:AVFoundation.AVAsset.LoadTrackAsync(System.Int32)
-M:AVFoundation.AVAsset.LoadTracksWithMediaType(System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
M:AVFoundation.AVAsset.LoadTracksWithMediaTypeAsync(System.String)
-M:AVFoundation.AVAsset.LoadTrackWithMediaCharacteristics(System.String,System.Action{Foundation.NSArray{AVFoundation.AVCompositionTrack},Foundation.NSError})
M:AVFoundation.AVAsset.LoadTrackWithMediaCharacteristicsAsync(System.String)
-M:AVFoundation.AVAsset.LoadValuesAsynchronously(System.String[],System.Action)
M:AVFoundation.AVAsset.LoadValuesTaskAsync(System.String[])
-M:AVFoundation.AVAsset.MediaSelectionGroupForMediaCharacteristic(System.String)
-M:AVFoundation.AVAsset.StatusOfValue(System.String,Foundation.NSError@)
-M:AVFoundation.AVAsset.TracksWithMediaCharacteristic(System.String)
-M:AVFoundation.AVAsset.TracksWithMediaType(System.String)
-M:AVFoundation.AVAsset.TrackWithTrackID(System.Int32)
-M:AVFoundation.AVAssetCache.GetMediaSelectionOptions(AVFoundation.AVMediaSelectionGroup)
-M:AVFoundation.AVAssetDownloadConfiguration.Create(AVFoundation.AVUrlAsset,System.String)
-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)
M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidLoadTimeRange(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,CoreMedia.CMTimeRange,Foundation.NSValue[],CoreMedia.CMTimeRange,AVFoundation.AVMediaSelection)
@@ -30344,31 +22690,19 @@ M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidResolveMediaSelection(AVFou
M:AVFoundation.AVAssetDownloadDelegate_Extensions.WillDownloadToUrl(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,Foundation.NSUrl)
M:AVFoundation.AVAssetDownloadDelegate_Extensions.WillDownloadVariants(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,AVFoundation.AVAssetVariant[])
M:AVFoundation.AVAssetDownloadDelegate_Extensions.WilllDownloadToUrl(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl)
-M:AVFoundation.AVAssetDownloadDelegate.DidCompleteForMediaSelection(Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,AVFoundation.AVMediaSelection)
M:AVFoundation.AVAssetDownloadDelegate.DidCompleteWithError(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSError)
M:AVFoundation.AVAssetDownloadDelegate.DidCreateTask(Foundation.NSUrlSession,Foundation.NSUrlSessionTask)
M:AVFoundation.AVAssetDownloadDelegate.DidFinishCollectingMetrics(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlSessionTaskMetrics)
-M:AVFoundation.AVAssetDownloadDelegate.DidFinishDownloadingToUrl(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl)
-M:AVFoundation.AVAssetDownloadDelegate.DidLoadTimeRange(Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,CoreMedia.CMTimeRange,Foundation.NSValue[],CoreMedia.CMTimeRange,AVFoundation.AVMediaSelection)
-M:AVFoundation.AVAssetDownloadDelegate.DidLoadTimeRange(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,CoreMedia.CMTimeRange,Foundation.NSValue[],CoreMedia.CMTimeRange)
M:AVFoundation.AVAssetDownloadDelegate.DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential})
M:AVFoundation.AVAssetDownloadDelegate.DidReceiveInformationalResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse)
-M:AVFoundation.AVAssetDownloadDelegate.DidResolveMediaSelection(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,AVFoundation.AVMediaSelection)
M:AVFoundation.AVAssetDownloadDelegate.DidSendBodyData(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Int64,System.Int64)
M:AVFoundation.AVAssetDownloadDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action{Foundation.NSInputStream})
M:AVFoundation.AVAssetDownloadDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action{Foundation.NSInputStream})
M:AVFoundation.AVAssetDownloadDelegate.TaskIsWaitingForConnectivity(Foundation.NSUrlSession,Foundation.NSUrlSessionTask)
M:AVFoundation.AVAssetDownloadDelegate.WillBeginDelayedRequest(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlSessionDelayedRequestDisposition,Foundation.NSUrlRequest})
-M:AVFoundation.AVAssetDownloadDelegate.WillDownloadToUrl(Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,Foundation.NSUrl)
-M:AVFoundation.AVAssetDownloadDelegate.WillDownloadVariants(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,AVFoundation.AVAssetVariant[])
-M:AVFoundation.AVAssetDownloadDelegate.WilllDownloadToUrl(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl)
M:AVFoundation.AVAssetDownloadDelegate.WillPerformHttpRedirection(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlRequest})
M:AVFoundation.AVAssetDownloadOptions.#ctor
M:AVFoundation.AVAssetDownloadOptions.#ctor(Foundation.NSDictionary)
-M:AVFoundation.AVAssetDownloadStorageManagementPolicy.Copy(Foundation.NSZone)
-M:AVFoundation.AVAssetDownloadStorageManagementPolicy.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVAssetDownloadStorageManager.GetStorageManagementPolicy(Foundation.NSUrl)
-M:AVFoundation.AVAssetDownloadStorageManager.SetStorageManagementPolicy(AVFoundation.AVAssetDownloadStorageManagementPolicy,Foundation.NSUrl)
M:AVFoundation.AVAssetDownloadUrlSession.CreateDataTask(Foundation.NSUrl,Foundation.NSUrlSessionResponse)
M:AVFoundation.AVAssetDownloadUrlSession.CreateDataTask(Foundation.NSUrl)
M:AVFoundation.AVAssetDownloadUrlSession.CreateDataTask(Foundation.NSUrlRequest,Foundation.NSUrlSessionResponse)
@@ -30379,7 +22713,6 @@ M:AVFoundation.AVAssetDownloadUrlSession.CreateDownloadTask(Foundation.NSUrl)
M:AVFoundation.AVAssetDownloadUrlSession.CreateDownloadTask(Foundation.NSUrlRequest,Foundation.NSUrlDownloadSessionResponse)
M:AVFoundation.AVAssetDownloadUrlSession.CreateDownloadTask(Foundation.NSUrlRequest)
M:AVFoundation.AVAssetDownloadUrlSession.CreateDownloadTaskFromResumeData(Foundation.NSData,Foundation.NSUrlDownloadSessionResponse)
-M:AVFoundation.AVAssetDownloadUrlSession.CreateSession(Foundation.NSUrlSessionConfiguration,AVFoundation.IAVAssetDownloadDelegate,Foundation.NSOperationQueue)
M:AVFoundation.AVAssetDownloadUrlSession.CreateUploadTask(Foundation.NSUrlRequest,Foundation.NSData,Foundation.NSUrlSessionResponse)
M:AVFoundation.AVAssetDownloadUrlSession.CreateUploadTask(Foundation.NSUrlRequest,Foundation.NSData)
M:AVFoundation.AVAssetDownloadUrlSession.CreateUploadTask(Foundation.NSUrlRequest,Foundation.NSUrl,Foundation.NSUrlSessionResponse)
@@ -30388,186 +22721,56 @@ M:AVFoundation.AVAssetDownloadUrlSession.CreateUploadTask(Foundation.NSUrlReques
M:AVFoundation.AVAssetDownloadUrlSession.FromConfiguration(Foundation.NSUrlSessionConfiguration,Foundation.INSUrlSessionDelegate,Foundation.NSOperationQueue)
M:AVFoundation.AVAssetDownloadUrlSession.FromConfiguration(Foundation.NSUrlSessionConfiguration)
M:AVFoundation.AVAssetDownloadUrlSession.FromWeakConfiguration(Foundation.NSUrlSessionConfiguration,Foundation.NSObject,Foundation.NSOperationQueue)
-M:AVFoundation.AVAssetDownloadUrlSession.GetAssetDownloadTask(AVFoundation.AVAssetDownloadConfiguration)
-M:AVFoundation.AVAssetDownloadUrlSession.GetAssetDownloadTask(AVFoundation.AVUrlAsset,AVFoundation.AVMediaSelection[],System.String,Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:AVFoundation.AVAssetDownloadUrlSession.GetAssetDownloadTask(AVFoundation.AVUrlAsset,Foundation.NSUrl,AVFoundation.AVAssetDownloadOptions)
-M:AVFoundation.AVAssetDownloadUrlSession.GetAssetDownloadTask(AVFoundation.AVUrlAsset,Foundation.NSUrl,Foundation.NSDictionary)
M:AVFoundation.AVAssetDownloadUrlSession.GetAssetDownloadTask(AVFoundation.AVUrlAsset,System.String,Foundation.NSData,AVFoundation.AVAssetDownloadOptions)
-M:AVFoundation.AVAssetDownloadUrlSession.GetAssetDownloadTask(AVFoundation.AVUrlAsset,System.String,Foundation.NSData,Foundation.NSDictionary)
M:AVFoundation.AVAssetExportSession.#ctor(AVFoundation.AVAsset,AVFoundation.AVAssetExportSessionPreset)
-M:AVFoundation.AVAssetExportSession.#ctor(AVFoundation.AVAsset,System.String)
-M:AVFoundation.AVAssetExportSession.CancelExport
M:AVFoundation.AVAssetExportSession.DetermineCompatibilityOfExportPreset(System.String,AVFoundation.AVAsset,AVFoundation.AVFileTypes,System.Action{System.Boolean})
-M:AVFoundation.AVAssetExportSession.DetermineCompatibilityOfExportPreset(System.String,AVFoundation.AVAsset,System.String,System.Action{System.Boolean})
M:AVFoundation.AVAssetExportSession.DetermineCompatibilityOfExportPresetAsync(System.String,AVFoundation.AVAsset,AVFoundation.AVFileTypes)
M:AVFoundation.AVAssetExportSession.DetermineCompatibilityOfExportPresetAsync(System.String,AVFoundation.AVAsset,System.String)
-M:AVFoundation.AVAssetExportSession.DetermineCompatibleFileTypes(System.Action{System.String[]})
M:AVFoundation.AVAssetExportSession.DetermineCompatibleFileTypesAsync
-M:AVFoundation.AVAssetExportSession.EstimateMaximumDuration(System.Action{CoreMedia.CMTime,Foundation.NSError})
M:AVFoundation.AVAssetExportSession.EstimateMaximumDurationAsync
-M:AVFoundation.AVAssetExportSession.EstimateOutputFileLength(System.Action{System.Int64,Foundation.NSError})
M:AVFoundation.AVAssetExportSession.EstimateOutputFileLengthAsync
-M:AVFoundation.AVAssetExportSession.ExportAsynchronously(System.Action)
-M:AVFoundation.AVAssetExportSession.ExportPresetsCompatibleWithAsset(AVFoundation.AVAsset)
M:AVFoundation.AVAssetExportSession.ExportTaskAsync
-M:AVFoundation.AVAssetExportSession.FromAsset(AVFoundation.AVAsset,System.String)
-M:AVFoundation.AVAssetImageGenerator.#ctor(AVFoundation.AVAsset)
-M:AVFoundation.AVAssetImageGenerator.CancelAllCGImageGeneration
-M:AVFoundation.AVAssetImageGenerator.CopyCGImageAtTime(CoreMedia.CMTime,CoreMedia.CMTime@,Foundation.NSError@)
-M:AVFoundation.AVAssetImageGenerator.FromAsset(AVFoundation.AVAsset)
-M:AVFoundation.AVAssetImageGenerator.GenerateCGImageAsynchronously(CoreMedia.CMTime,AVFoundation.AVAssetImageGenerateAsynchronouslyForTimeCompletionHandler)
-M:AVFoundation.AVAssetImageGenerator.GenerateCGImagesAsynchronously(Foundation.NSValue[],AVFoundation.AVAssetImageGeneratorCompletionHandler)
M:AVFoundation.AVAssetImageGenerator.GenerateCGImagesAsynchronously(Foundation.NSValue[],AVFoundation.AVAssetImageGeneratorCompletionHandler2)
-M:AVFoundation.AVAssetPlaybackAssistant.Create(AVFoundation.AVAsset)
-M:AVFoundation.AVAssetPlaybackAssistant.LoadPlaybackConfigurationOptions(AVFoundation.AVAssetPlaybackAssistantLoadPlaybackConfigurationOptionsHandler)
M:AVFoundation.AVAssetPlaybackAssistant.LoadPlaybackConfigurationOptionsAsync
-M:AVFoundation.AVAssetReader.#ctor(AVFoundation.AVAsset,Foundation.NSError@)
-M:AVFoundation.AVAssetReader.AddOutput(AVFoundation.AVAssetReaderOutput)
-M:AVFoundation.AVAssetReader.CanAddOutput(AVFoundation.AVAssetReaderOutput)
-M:AVFoundation.AVAssetReader.CancelReading
-M:AVFoundation.AVAssetReader.FromAsset(AVFoundation.AVAsset,Foundation.NSError@)
-M:AVFoundation.AVAssetReader.StartReading
M:AVFoundation.AVAssetReaderAudioMixOutput.#ctor(AVFoundation.AVAssetTrack[],AVFoundation.AudioSettings)
-M:AVFoundation.AVAssetReaderAudioMixOutput.#ctor(AVFoundation.AVAssetTrack[],Foundation.NSDictionary)
M:AVFoundation.AVAssetReaderAudioMixOutput.Create(AVFoundation.AVAssetTrack[],AVFoundation.AudioSettings)
M:AVFoundation.AVAssetReaderCaptionValidationHandling_Extensions.DidVendCaption(AVFoundation.IAVAssetReaderCaptionValidationHandling,AVFoundation.AVAssetReaderOutputCaptionAdaptor,AVFoundation.AVCaption,System.String[])
-M:AVFoundation.AVAssetReaderOutput.CopyNextSampleBuffer
-M:AVFoundation.AVAssetReaderOutput.MarkConfigurationAsFinal
-M:AVFoundation.AVAssetReaderOutput.ResetForReadingTimeRanges(Foundation.NSValue[])
-M:AVFoundation.AVAssetReaderOutputCaptionAdaptor.#ctor(AVFoundation.AVAssetReaderTrackOutput)
-M:AVFoundation.AVAssetReaderOutputCaptionAdaptor.Create(AVFoundation.AVAssetReaderTrackOutput)
M:AVFoundation.AVAssetReaderOutputCaptionAdaptor.Dispose(System.Boolean)
-M:AVFoundation.AVAssetReaderOutputCaptionAdaptor.GetCaptionsNotPresentInPreviousGroups(AVFoundation.AVCaptionGroup)
-M:AVFoundation.AVAssetReaderOutputCaptionAdaptor.GetNextCaptionGroup
-M:AVFoundation.AVAssetReaderOutputMetadataAdaptor.#ctor(AVFoundation.AVAssetReaderTrackOutput)
-M:AVFoundation.AVAssetReaderOutputMetadataAdaptor.Create(AVFoundation.AVAssetReaderTrackOutput)
-M:AVFoundation.AVAssetReaderOutputMetadataAdaptor.NextTimedMetadataGroup
-M:AVFoundation.AVAssetReaderSampleReferenceOutput.#ctor(AVFoundation.AVAssetTrack)
-M:AVFoundation.AVAssetReaderSampleReferenceOutput.Create(AVFoundation.AVAssetTrack)
M:AVFoundation.AVAssetReaderTrackOutput.#ctor(AVFoundation.AVAssetTrack,AVFoundation.AudioSettings)
M:AVFoundation.AVAssetReaderTrackOutput.#ctor(AVFoundation.AVAssetTrack,AVFoundation.AVVideoSettingsUncompressed)
-M:AVFoundation.AVAssetReaderTrackOutput.#ctor(AVFoundation.AVAssetTrack,Foundation.NSDictionary)
M:AVFoundation.AVAssetReaderTrackOutput.Create(AVFoundation.AVAssetTrack,AVFoundation.AudioSettings)
M:AVFoundation.AVAssetReaderTrackOutput.Create(AVFoundation.AVAssetTrack,AVFoundation.AVVideoSettingsUncompressed)
M:AVFoundation.AVAssetReaderVideoCompositionOutput.#ctor(AVFoundation.AVAssetTrack[],CoreVideo.CVPixelBufferAttributes)
-M:AVFoundation.AVAssetReaderVideoCompositionOutput.#ctor(AVFoundation.AVAssetTrack[],Foundation.NSDictionary)
M:AVFoundation.AVAssetReaderVideoCompositionOutput.Create(AVFoundation.AVAssetTrack[],CoreVideo.CVPixelBufferAttributes)
M:AVFoundation.AVAssetResourceLoader.Dispose(System.Boolean)
-M:AVFoundation.AVAssetResourceLoader.SetDelegate(AVFoundation.IAVAssetResourceLoaderDelegate,CoreFoundation.DispatchQueue)
M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.DidCancelAuthenticationChallenge(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,Foundation.NSUrlAuthenticationChallenge)
M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.DidCancelLoadingRequest(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest)
M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.ShouldWaitForLoadingOfRequestedResource(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest)
M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.ShouldWaitForRenewalOfRequestedResource(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceRenewalRequest)
M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.ShouldWaitForResponseToAuthenticationChallenge(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,Foundation.NSUrlAuthenticationChallenge)
-M:AVFoundation.AVAssetResourceLoaderDelegate.DidCancelAuthenticationChallenge(AVFoundation.AVAssetResourceLoader,Foundation.NSUrlAuthenticationChallenge)
-M:AVFoundation.AVAssetResourceLoaderDelegate.DidCancelLoadingRequest(AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest)
-M:AVFoundation.AVAssetResourceLoaderDelegate.ShouldWaitForLoadingOfRequestedResource(AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest)
-M:AVFoundation.AVAssetResourceLoaderDelegate.ShouldWaitForRenewalOfRequestedResource(AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceRenewalRequest)
-M:AVFoundation.AVAssetResourceLoaderDelegate.ShouldWaitForResponseToAuthenticationChallenge(AVFoundation.AVAssetResourceLoader,Foundation.NSUrlAuthenticationChallenge)
-M:AVFoundation.AVAssetResourceLoadingDataRequest.Respond(Foundation.NSData)
M:AVFoundation.AVAssetResourceLoadingDataRequest.ToString
-M:AVFoundation.AVAssetResourceLoadingRequest.FinishLoading
-M:AVFoundation.AVAssetResourceLoadingRequest.FinishLoading(Foundation.NSUrlResponse,Foundation.NSData,Foundation.NSUrlRequest)
-M:AVFoundation.AVAssetResourceLoadingRequest.FinishLoadingWithError(Foundation.NSError)
-M:AVFoundation.AVAssetResourceLoadingRequest.GetPersistentContentKey(Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
-M:AVFoundation.AVAssetResourceLoadingRequest.GetStreamingContentKey(Foundation.NSData,Foundation.NSData,Foundation.NSDictionary,Foundation.NSError@)
-M:AVFoundation.AVAssetTrack.Copy(Foundation.NSZone)
M:AVFoundation.AVAssetTrack.Dispose(System.Boolean)
-M:AVFoundation.AVAssetTrack.GetAssociatedTracks(Foundation.NSString)
-M:AVFoundation.AVAssetTrack.HasMediaCharacteristic(System.String)
-M:AVFoundation.AVAssetTrack.LoadAssociatedTracks(System.String,System.Action{Foundation.NSArray{AVFoundation.AVAssetTrack},Foundation.NSError})
M:AVFoundation.AVAssetTrack.LoadAssociatedTracksAsync(System.String)
-M:AVFoundation.AVAssetTrack.LoadMetadata(System.String,System.Action{Foundation.NSArray{AVFoundation.AVMetadataItem},Foundation.NSError})
M:AVFoundation.AVAssetTrack.LoadMetadataAsync(System.String)
-M:AVFoundation.AVAssetTrack.LoadSamplePresentationTime(CoreMedia.CMTime,System.Action{CoreMedia.CMTime,Foundation.NSError})
M:AVFoundation.AVAssetTrack.LoadSamplePresentationTimeAsync(CoreMedia.CMTime)
-M:AVFoundation.AVAssetTrack.LoadSegment(CoreMedia.CMTime,System.Action{AVFoundation.AVAssetTrackSegment,Foundation.NSError})
M:AVFoundation.AVAssetTrack.LoadSegmentAsync(CoreMedia.CMTime)
-M:AVFoundation.AVAssetTrack.MakeSampleCursor(CoreMedia.CMTime)
-M:AVFoundation.AVAssetTrack.MakeSampleCursorAtFirstSampleInDecodeOrder
-M:AVFoundation.AVAssetTrack.MakeSampleCursorAtLastSampleInDecodeOrder
-M:AVFoundation.AVAssetTrack.MetadataForFormat(System.String)
-M:AVFoundation.AVAssetTrack.SamplePresentationTimeForTrackTime(CoreMedia.CMTime)
-M:AVFoundation.AVAssetTrack.SegmentForTrackTime(CoreMedia.CMTime)
-M:AVFoundation.AVAssetTrackGroup.Copy(Foundation.NSZone)
-M:AVFoundation.AVAssetVariantAudioAttributes.GetRenditionSpecificAttributes(AVFoundation.AVMediaSelectionOption)
-M:AVFoundation.AVAssetVariantQualifier.Copy(Foundation.NSZone)
-M:AVFoundation.AVAssetVariantQualifier.Create(AVFoundation.AVAssetVariant)
-M:AVFoundation.AVAssetVariantQualifier.Create(Foundation.NSPredicate)
-M:AVFoundation.AVAssetVariantQualifier.GetPredicate(System.IntPtr,AVFoundation.AVMediaSelectionOption,Foundation.NSPredicateOperatorType)
-M:AVFoundation.AVAssetVariantQualifier.GetPredicateForAudioSampleRate(System.Double,AVFoundation.AVMediaSelectionOption,Foundation.NSPredicateOperatorType)
-M:AVFoundation.AVAssetVariantQualifier.GetPredicateForBinauralAudio(System.Boolean,AVFoundation.AVMediaSelectionOption)
-M:AVFoundation.AVAssetVariantQualifier.GetPredicateForDownmixAudio(System.Boolean,AVFoundation.AVMediaSelectionOption)
-M:AVFoundation.AVAssetVariantQualifier.GetPredicateForImmersiveAudio(System.Boolean,AVFoundation.AVMediaSelectionOption)
-M:AVFoundation.AVAssetWriter.#ctor(Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AVFoundation.AVAssetWriter.#ctor(UniformTypeIdentifiers.UTType)
-M:AVFoundation.AVAssetWriter.AddInput(AVFoundation.AVAssetWriterInput)
-M:AVFoundation.AVAssetWriter.AddInputGroup(AVFoundation.AVAssetWriterInputGroup)
-M:AVFoundation.AVAssetWriter.CanAddInput(AVFoundation.AVAssetWriterInput)
-M:AVFoundation.AVAssetWriter.CanAddInputGroup(AVFoundation.AVAssetWriterInputGroup)
M:AVFoundation.AVAssetWriter.CanApplyOutputSettings(AVFoundation.AudioSettings,System.String)
M:AVFoundation.AVAssetWriter.CanApplyOutputSettings(AVFoundation.AVVideoSettingsCompressed,System.String)
-M:AVFoundation.AVAssetWriter.CanApplyOutputSettings(Foundation.NSDictionary,System.String)
-M:AVFoundation.AVAssetWriter.CancelWriting
M:AVFoundation.AVAssetWriter.Dispose(System.Boolean)
-M:AVFoundation.AVAssetWriter.EndSessionAtSourceTime(CoreMedia.CMTime)
-M:AVFoundation.AVAssetWriter.FinishWriting
-M:AVFoundation.AVAssetWriter.FinishWriting(System.Action)
M:AVFoundation.AVAssetWriter.FinishWritingAsync
-M:AVFoundation.AVAssetWriter.FlushSegment
-M:AVFoundation.AVAssetWriter.FromUrl(Foundation.NSUrl,System.String,Foundation.NSError@)
-M:AVFoundation.AVAssetWriter.StartSessionAtSourceTime(CoreMedia.CMTime)
-M:AVFoundation.AVAssetWriter.StartWriting
M:AVFoundation.AVAssetWriterDelegate_Extensions.DidOutputSegmentData(AVFoundation.IAVAssetWriterDelegate,AVFoundation.AVAssetWriter,Foundation.NSData,AVFoundation.AVAssetSegmentType,AVFoundation.AVAssetSegmentReport)
M:AVFoundation.AVAssetWriterDelegate_Extensions.DidOutputSegmentData(AVFoundation.IAVAssetWriterDelegate,AVFoundation.AVAssetWriter,Foundation.NSData,AVFoundation.AVAssetSegmentType)
-M:AVFoundation.AVAssetWriterDelegate.DidOutputSegmentData(AVFoundation.AVAssetWriter,Foundation.NSData,AVFoundation.AVAssetSegmentType,AVFoundation.AVAssetSegmentReport)
-M:AVFoundation.AVAssetWriterDelegate.DidOutputSegmentData(AVFoundation.AVAssetWriter,Foundation.NSData,AVFoundation.AVAssetSegmentType)
M:AVFoundation.AVAssetWriterInput.#ctor(System.String,AVFoundation.AudioSettings,CoreMedia.CMFormatDescription)
M:AVFoundation.AVAssetWriterInput.#ctor(System.String,AVFoundation.AudioSettings)
M:AVFoundation.AVAssetWriterInput.#ctor(System.String,AVFoundation.AVVideoSettingsCompressed,CoreMedia.CMFormatDescription)
M:AVFoundation.AVAssetWriterInput.#ctor(System.String,AVFoundation.AVVideoSettingsCompressed)
-M:AVFoundation.AVAssetWriterInput.#ctor(System.String,Foundation.NSDictionary,CoreMedia.CMFormatDescription)
-M:AVFoundation.AVAssetWriterInput.#ctor(System.String,Foundation.NSDictionary)
-M:AVFoundation.AVAssetWriterInput.AddTrackAssociationWithTrackOfInput(AVFoundation.AVAssetWriterInput,Foundation.NSString)
-M:AVFoundation.AVAssetWriterInput.AppendSampleBuffer(CoreMedia.CMSampleBuffer)
-M:AVFoundation.AVAssetWriterInput.CanAddTrackAssociationWithTrackOfInput(AVFoundation.AVAssetWriterInput,Foundation.NSString)
M:AVFoundation.AVAssetWriterInput.Create(System.String,AVFoundation.AudioSettings,CoreMedia.CMFormatDescription)
M:AVFoundation.AVAssetWriterInput.Create(System.String,AVFoundation.AudioSettings)
M:AVFoundation.AVAssetWriterInput.Create(System.String,AVFoundation.AVVideoSettingsCompressed,CoreMedia.CMFormatDescription)
M:AVFoundation.AVAssetWriterInput.Create(System.String,AVFoundation.AVVideoSettingsCompressed)
-M:AVFoundation.AVAssetWriterInput.MarkAsFinished
-M:AVFoundation.AVAssetWriterInput.MarkCurrentPassAsFinished
-M:AVFoundation.AVAssetWriterInput.RequestMediaData(CoreFoundation.DispatchQueue,System.Action)
-M:AVFoundation.AVAssetWriterInput.SetPassHandler(CoreFoundation.DispatchQueue,System.Action)
-M:AVFoundation.AVAssetWriterInputCaptionAdaptor.#ctor(AVFoundation.AVAssetWriterInput)
-M:AVFoundation.AVAssetWriterInputCaptionAdaptor.AppendCaption(AVFoundation.AVCaption)
-M:AVFoundation.AVAssetWriterInputCaptionAdaptor.AppendCaptionGroup(AVFoundation.AVCaptionGroup)
-M:AVFoundation.AVAssetWriterInputCaptionAdaptor.Create(AVFoundation.AVAssetWriterInput)
-M:AVFoundation.AVAssetWriterInputGroup.#ctor(AVFoundation.AVAssetWriterInput[],AVFoundation.AVAssetWriterInput)
-M:AVFoundation.AVAssetWriterInputGroup.Create(AVFoundation.AVAssetWriterInput[],AVFoundation.AVAssetWriterInput)
-M:AVFoundation.AVAssetWriterInputMetadataAdaptor.#ctor(AVFoundation.AVAssetWriterInput)
-M:AVFoundation.AVAssetWriterInputMetadataAdaptor.AppendTimedMetadataGroup(AVFoundation.AVTimedMetadataGroup)
-M:AVFoundation.AVAssetWriterInputMetadataAdaptor.Create(AVFoundation.AVAssetWriterInput)
M:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.#ctor(AVFoundation.AVAssetWriterInput,CoreVideo.CVPixelBufferAttributes)
-M:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.#ctor(AVFoundation.AVAssetWriterInput,Foundation.NSDictionary)
-M:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.AppendPixelBufferWithPresentationTime(CoreVideo.CVPixelBuffer,CoreMedia.CMTime)
M:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.Create(AVFoundation.AVAssetWriterInput,CoreVideo.CVPixelBufferAttributes)
-M:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.FromInput(AVFoundation.AVAssetWriterInput,Foundation.NSDictionary)
-M:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor.#ctor(AVFoundation.AVAssetWriterInput,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor.Append(CoreMedia.CMTaggedBufferGroup,CoreMedia.CMTime)
-M:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor.Create(AVFoundation.AVAssetWriterInput,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVAsynchronousCIImageFilteringRequest.Copy(Foundation.NSZone)
-M:AVFoundation.AVAsynchronousCIImageFilteringRequest.Finish(CoreImage.CIImage,CoreImage.CIContext)
-M:AVFoundation.AVAsynchronousCIImageFilteringRequest.Finish(Foundation.NSError)
-M:AVFoundation.AVAsynchronousKeyValueLoading.GetStatusOfValue(System.String,Foundation.NSError@)
-M:AVFoundation.AVAsynchronousKeyValueLoading.LoadValuesAsynchronously(System.String[],System.Action)
-M:AVFoundation.AVAsynchronousVideoCompositionRequest.Copy(Foundation.NSZone)
-M:AVFoundation.AVAsynchronousVideoCompositionRequest.FinishCancelledRequest
-M:AVFoundation.AVAsynchronousVideoCompositionRequest.FinishWithComposedVideoFrame(CoreVideo.CVPixelBuffer)
-M:AVFoundation.AVAsynchronousVideoCompositionRequest.FinishWithError(Foundation.NSError)
-M:AVFoundation.AVAsynchronousVideoCompositionRequest.GetSourceSampleBuffer(System.Int32)
-M:AVFoundation.AVAsynchronousVideoCompositionRequest.GetSourceTimedMetadata(System.Int32)
-M:AVFoundation.AVAsynchronousVideoCompositionRequest.SourceFrameByTrackID(System.Int32)
M:AVFoundation.AVAudio3DAngularOrientation.Equals(AVFoundation.AVAudio3DAngularOrientation)
M:AVFoundation.AVAudio3DAngularOrientation.Equals(System.Object)
M:AVFoundation.AVAudio3DAngularOrientation.GetHashCode
@@ -30587,11 +22790,8 @@ M:AVFoundation.AVAudioApplication.RequestRecordPermission(System.Action{System.B
M:AVFoundation.AVAudioApplication.RequestRecordPermissionAsync
M:AVFoundation.AVAudioApplication.SetInputMuted(System.Boolean,Foundation.NSError@)
M:AVFoundation.AVAudioApplication.SetInputMuteStateChangeHandler(AVFoundation.AVAudioApplicationSetInputMuteStateChangeHandler,Foundation.NSError@)
-M:AVFoundation.AVAudioBuffer.Copy(Foundation.NSZone)
-M:AVFoundation.AVAudioBuffer.MutableCopy(Foundation.NSZone)
M:AVFoundation.AVAudioChannelLayout.#ctor(AudioToolbox.AudioChannelLayout)
M:AVFoundation.AVAudioChannelLayout.#ctor(System.UInt32)
-M:AVFoundation.AVAudioChannelLayout.EncodeTo(Foundation.NSCoder)
M:AVFoundation.AVAudioChannelLayout.op_Equality(AVFoundation.AVAudioChannelLayout,AVFoundation.AVAudioChannelLayout)
M:AVFoundation.AVAudioChannelLayout.op_Inequality(AVFoundation.AVAudioChannelLayout,AVFoundation.AVAudioChannelLayout)
M:AVFoundation.AVAudioCompressedBuffer.#ctor(AVFoundation.AVAudioFormat,System.UInt32,System.IntPtr)
@@ -30601,7 +22801,6 @@ M:AVFoundation.AVAudioConnectionPoint.Dispose(System.Boolean)
M:AVFoundation.AVAudioConverter.#ctor(AVFoundation.AVAudioFormat,AVFoundation.AVAudioFormat)
M:AVFoundation.AVAudioConverter.ConvertToBuffer(AVFoundation.AVAudioBuffer,Foundation.NSError@,AVFoundation.AVAudioConverterInputHandler)
M:AVFoundation.AVAudioConverter.ConvertToBuffer(AVFoundation.AVAudioPcmBuffer,AVFoundation.AVAudioPcmBuffer,Foundation.NSError@)
-M:AVFoundation.AVAudioConverter.Reset
M:AVFoundation.AVAudioConverterPrimeInfo.#ctor(System.UInt32,System.UInt32)
M:AVFoundation.AVAudioConverterPrimeInfo.Equals(AVFoundation.AVAudioConverterPrimeInfo)
M:AVFoundation.AVAudioConverterPrimeInfo.Equals(System.Object)
@@ -30628,13 +22827,10 @@ M:AVFoundation.AVAudioEngine.DisconnectNodeOutput(AVFoundation.AVAudioNode)
M:AVFoundation.AVAudioEngine.EnableManualRenderingMode(AVFoundation.AVAudioEngineManualRenderingMode,AVFoundation.AVAudioFormat,System.UInt32,Foundation.NSError@)
M:AVFoundation.AVAudioEngine.InputConnectionPoint(AVFoundation.AVAudioNode,System.UIntPtr)
M:AVFoundation.AVAudioEngine.OutputConnectionPoints(AVFoundation.AVAudioNode,System.UIntPtr)
-M:AVFoundation.AVAudioEngine.Pause
M:AVFoundation.AVAudioEngine.Prepare
M:AVFoundation.AVAudioEngine.RenderOffline(System.UInt32,AVFoundation.AVAudioPcmBuffer,Foundation.NSError@)
-M:AVFoundation.AVAudioEngine.Reset
M:AVFoundation.AVAudioEngine.StartAndReturnError(Foundation.NSError@)
M:AVFoundation.AVAudioEngine.Stop
-M:AVFoundation.AVAudioEnvironmentNode.#ctor
M:AVFoundation.AVAudioEnvironmentNode.DestinationForMixer(AVFoundation.AVAudioNode,System.UIntPtr)
M:AVFoundation.AVAudioEnvironmentReverbParameters.LoadFactoryReverbPreset(AVFoundation.AVAudioUnitReverbPreset)
M:AVFoundation.AVAudioFile.#ctor(Foundation.NSUrl,AVFoundation.AudioSettings,AVFoundation.AVAudioCommonFormat,System.Boolean,Foundation.NSError@)
@@ -30654,28 +22850,20 @@ M:AVFoundation.AVAudioFormat.#ctor(CoreMedia.CMAudioFormatDescription)
M:AVFoundation.AVAudioFormat.#ctor(Foundation.NSDictionary)
M:AVFoundation.AVAudioFormat.#ctor(System.Double,AVFoundation.AVAudioChannelLayout)
M:AVFoundation.AVAudioFormat.#ctor(System.Double,System.UInt32)
-M:AVFoundation.AVAudioFormat.EncodeTo(Foundation.NSCoder)
M:AVFoundation.AVAudioFormat.op_Equality(AVFoundation.AVAudioFormat,AVFoundation.AVAudioFormat)
M:AVFoundation.AVAudioFormat.op_Inequality(AVFoundation.AVAudioFormat,AVFoundation.AVAudioFormat)
M:AVFoundation.AVAudioInputNode.DestinationForMixer(AVFoundation.AVAudioNode,System.UIntPtr)
M:AVFoundation.AVAudioInputNode.SetManualRenderingInputPcmFormat(AVFoundation.AVAudioFormat,AVFoundation.AVAudioIONodeInputBlock)
M:AVFoundation.AVAudioInputNode.SetMutedSpeechActivityEventListener(AVFoundation.AVAudioInputNodeMutedSpeechEventListener)
M:AVFoundation.AVAudioIONode.SetVoiceProcessingEnabled(System.Boolean,Foundation.NSError@)
-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.Copy(Foundation.NSZone)
-M:AVFoundation.AVAudioMixInputParameters.GetVolumeRamp(CoreMedia.CMTime,System.Single@,System.Single@,CoreMedia.CMTimeRange@)
-M:AVFoundation.AVAudioMixInputParameters.MutableCopy(Foundation.NSZone)
M:AVFoundation.AVAudioNode.GetBusInputFormat(System.UIntPtr)
M:AVFoundation.AVAudioNode.GetBusOutputFormat(System.UIntPtr)
M:AVFoundation.AVAudioNode.GetNameForInputBus(System.UIntPtr)
M:AVFoundation.AVAudioNode.GetNameForOutputBus(System.UIntPtr)
M:AVFoundation.AVAudioNode.InstallTapOnBus(System.UIntPtr,System.UInt32,AVFoundation.AVAudioFormat,AVFoundation.AVAudioNodeTapBlock)
M:AVFoundation.AVAudioNode.RemoveTapOnBus(System.UIntPtr)
-M:AVFoundation.AVAudioNode.Reset
M:AVFoundation.AVAudioPcmBuffer.#ctor(AVFoundation.AVAudioFormat,AudioToolbox.AudioBuffers,System.Action{AudioToolbox.AudioBuffers})
M:AVFoundation.AVAudioPcmBuffer.#ctor(AVFoundation.AVAudioFormat,System.UInt32)
M:AVFoundation.AVAudioPlayer.add_BeginInterruption(System.EventHandler)
@@ -30684,9 +22872,7 @@ M:AVFoundation.AVAudioPlayer.add_EndInterruption(System.EventHandler)
M:AVFoundation.AVAudioPlayer.add_FinishedPlaying(System.EventHandler{AVFoundation.AVStatusEventArgs})
M:AVFoundation.AVAudioPlayer.AveragePower(System.UIntPtr)
M:AVFoundation.AVAudioPlayer.Dispose(System.Boolean)
-M:AVFoundation.AVAudioPlayer.Pause
M:AVFoundation.AVAudioPlayer.PeakPower(System.UIntPtr)
-M:AVFoundation.AVAudioPlayer.Play
M:AVFoundation.AVAudioPlayer.PlayAtTime(System.Double)
M:AVFoundation.AVAudioPlayer.PrepareToPlay
M:AVFoundation.AVAudioPlayer.remove_BeginInterruption(System.EventHandler)
@@ -30706,12 +22892,9 @@ M:AVFoundation.AVAudioPlayerDelegate.DecoderError(AVFoundation.AVAudioPlayer,Fou
M:AVFoundation.AVAudioPlayerDelegate.EndInterruption(AVFoundation.AVAudioPlayer,AVFoundation.AVAudioSessionInterruptionOptions)
M:AVFoundation.AVAudioPlayerDelegate.EndInterruption(AVFoundation.AVAudioPlayer)
M:AVFoundation.AVAudioPlayerDelegate.FinishedPlaying(AVFoundation.AVAudioPlayer,System.Boolean)
-M:AVFoundation.AVAudioPlayerNode.#ctor
M:AVFoundation.AVAudioPlayerNode.DestinationForMixer(AVFoundation.AVAudioNode,System.UIntPtr)
M:AVFoundation.AVAudioPlayerNode.GetNodeTimeFromPlayerTime(AVFoundation.AVAudioTime)
M:AVFoundation.AVAudioPlayerNode.GetPlayerTimeFromNodeTime(AVFoundation.AVAudioTime)
-M:AVFoundation.AVAudioPlayerNode.Pause
-M:AVFoundation.AVAudioPlayerNode.Play
M:AVFoundation.AVAudioPlayerNode.PlayAtTime(AVFoundation.AVAudioTime)
M:AVFoundation.AVAudioPlayerNode.PrepareWithFrameCount(System.UInt32)
M:AVFoundation.AVAudioPlayerNode.ScheduleBuffer(AVFoundation.AVAudioPcmBuffer,AVFoundation.AVAudioPlayerNodeCompletionCallbackType,System.Action{AVFoundation.AVAudioPlayerNodeCompletionCallbackType})
@@ -30740,7 +22923,6 @@ M:AVFoundation.AVAudioRecorder.Create(Foundation.NSUrl,AVFoundation.AudioSetting
M:AVFoundation.AVAudioRecorder.Create(Foundation.NSUrl,AVFoundation.AVAudioFormat,Foundation.NSError@)
M:AVFoundation.AVAudioRecorder.DeleteRecording
M:AVFoundation.AVAudioRecorder.Dispose(System.Boolean)
-M:AVFoundation.AVAudioRecorder.Pause
M:AVFoundation.AVAudioRecorder.PeakPower(System.UIntPtr)
M:AVFoundation.AVAudioRecorder.PrepareToRecord
M:AVFoundation.AVAudioRecorder.Record
@@ -30775,7 +22957,6 @@ M:AVFoundation.AVAudioSequencer.GetSeconds(System.Double)
M:AVFoundation.AVAudioSequencer.Load(Foundation.NSData,AVFoundation.AVMusicSequenceLoadOptions,Foundation.NSError@)
M:AVFoundation.AVAudioSequencer.Load(Foundation.NSUrl,AVFoundation.AVMusicSequenceLoadOptions,Foundation.NSError@)
M:AVFoundation.AVAudioSequencer.PrepareToPlay
-M:AVFoundation.AVAudioSequencer.RemoveTrack(AVFoundation.AVMusicTrack)
M:AVFoundation.AVAudioSequencer.ReverseEvents
M:AVFoundation.AVAudioSequencer.SetUserCallback(AVFoundation.AVAudioSequencerUserCallback)
M:AVFoundation.AVAudioSequencer.Start(Foundation.NSError@)
@@ -30909,163 +23090,41 @@ M:AVFoundation.AVBeatRange.GetHashCode
M:AVFoundation.AVBeatRange.op_Equality(AVFoundation.AVBeatRange,AVFoundation.AVBeatRange)
M:AVFoundation.AVBeatRange.op_Inequality(AVFoundation.AVBeatRange,AVFoundation.AVBeatRange)
M:AVFoundation.AVBeatRange.ToString
-M:AVFoundation.AVCaption.#ctor(System.String,CoreMedia.CMTimeRange)
-M:AVFoundation.AVCaption.Copy(Foundation.NSZone)
-M:AVFoundation.AVCaption.EncodeTo(Foundation.NSCoder)
-M:AVFoundation.AVCaption.GetBackgroundColor(System.IntPtr,Foundation.NSRange@)
-M:AVFoundation.AVCaption.GetDecoration(System.IntPtr,Foundation.NSRange@)
-M:AVFoundation.AVCaption.GetFontStyle(System.IntPtr,Foundation.NSRange@)
-M:AVFoundation.AVCaption.GetFontWeight(System.IntPtr,Foundation.NSRange@)
-M:AVFoundation.AVCaption.GetRuby(System.IntPtr,Foundation.NSRange@)
-M:AVFoundation.AVCaption.GetTextColor(System.IntPtr,Foundation.NSRange@)
-M:AVFoundation.AVCaption.GetTextCombine(System.IntPtr,Foundation.NSRange@)
-M:AVFoundation.AVCaption.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVCaptionConversionValidator.#ctor(AVFoundation.AVCaption[],CoreMedia.CMTimeRange,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVCaptionConversionValidator.Create(AVFoundation.AVCaption[],CoreMedia.CMTimeRange,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVCaptionConversionValidator.StopValidating
-M:AVFoundation.AVCaptionConversionValidator.ValidateCaptionConversion(System.Action{AVFoundation.AVCaptionConversionWarning})
M:AVFoundation.AVCaptionDimension.Create(System.Runtime.InteropServices.NFloat,AVFoundation.AVCaptionUnitsType)
M:AVFoundation.AVCaptionFormatConformer.#ctor(AVFoundation.AVCaptionSettings)
M:AVFoundation.AVCaptionFormatConformer.CreateFromSettings(AVFoundation.AVCaptionSettings)
-M:AVFoundation.AVCaptionFormatConformer.GetConformedCaption(AVFoundation.AVCaption,Foundation.NSError@)
-M:AVFoundation.AVCaptionGroup.#ctor(AVFoundation.AVCaption[],CoreMedia.CMTimeRange)
-M:AVFoundation.AVCaptionGroup.#ctor(CoreMedia.CMTimeRange)
-M:AVFoundation.AVCaptionGrouper.AddCaption(AVFoundation.AVCaption)
-M:AVFoundation.AVCaptionGrouper.FlushAddedCaptionsIntoGroupsUpToTime(CoreMedia.CMTime)
M:AVFoundation.AVCaptionPoint.Create(AVFoundation.AVCaptionDimension,AVFoundation.AVCaptionDimension)
-M:AVFoundation.AVCaptionRegion.Copy(Foundation.NSZone)
-M:AVFoundation.AVCaptionRegion.EncodeTo(Foundation.NSCoder)
-M:AVFoundation.AVCaptionRegion.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVCaptionRenderer.GetCaptionSceneChanges(CoreMedia.CMTimeRange)
-M:AVFoundation.AVCaptionRenderer.Render(CoreGraphics.CGContext,CoreMedia.CMTime)
-M:AVFoundation.AVCaptionRendererScene.Copy(Foundation.NSZone)
-M:AVFoundation.AVCaptionRuby.#ctor(System.String,AVFoundation.AVCaptionRubyPosition,AVFoundation.AVCaptionRubyAlignment)
-M:AVFoundation.AVCaptionRuby.#ctor(System.String)
-M:AVFoundation.AVCaptionRuby.Copy(Foundation.NSZone)
-M:AVFoundation.AVCaptionRuby.EncodeTo(Foundation.NSCoder)
M:AVFoundation.AVCaptionSettings.#ctor
M:AVFoundation.AVCaptionSettings.#ctor(Foundation.NSDictionary)
M:AVFoundation.AVCaptionSize.Create(AVFoundation.AVCaptionDimension,AVFoundation.AVCaptionDimension)
-M:AVFoundation.AVCaptureAudioDataOutput.GetRecommendedAudioSettingsForAssetWriter(System.String)
-M:AVFoundation.AVCaptureAudioDataOutput.SetSampleBufferDelegate(AVFoundation.IAVCaptureAudioDataOutputSampleBufferDelegate,CoreFoundation.DispatchQueue)
M:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegate_Extensions.DidOutputSampleBuffer(AVFoundation.IAVCaptureAudioDataOutputSampleBufferDelegate,AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegate.DidOutputSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureAudioFileOutput.AvailableOutputFileTypes
-M:AVFoundation.AVCaptureAudioFileOutput.StartRecording(Foundation.NSUrl,System.String,AVFoundation.IAVCaptureFileOutputRecordingDelegate)
-M:AVFoundation.AVCaptureAutoExposureBracketedStillImageSettings.Create(System.Single)
-M:AVFoundation.AVCaptureConnection.#ctor(AVFoundation.AVCaptureInputPort,AVFoundation.AVCaptureVideoPreviewLayer)
-M:AVFoundation.AVCaptureConnection.#ctor(AVFoundation.AVCaptureInputPort[],AVFoundation.AVCaptureOutput)
-M:AVFoundation.AVCaptureConnection.FromInputPort(AVFoundation.AVCaptureInputPort,AVFoundation.AVCaptureVideoPreviewLayer)
-M:AVFoundation.AVCaptureConnection.FromInputPorts(AVFoundation.AVCaptureInputPort[],AVFoundation.AVCaptureOutput)
-M:AVFoundation.AVCaptureConnection.IsVideoRotationAngleSupported(System.Runtime.InteropServices.NFloat)
-M:AVFoundation.AVCaptureDataOutputSynchronizer.#ctor(AVFoundation.AVCaptureOutput[])
-M:AVFoundation.AVCaptureDataOutputSynchronizer.SetDelegate(AVFoundation.IAVCaptureDataOutputSynchronizerDelegate,CoreFoundation.DispatchQueue)
-M:AVFoundation.AVCaptureDataOutputSynchronizerDelegate.DidOutputSynchronizedDataCollection(AVFoundation.AVCaptureDataOutputSynchronizer,AVFoundation.AVCaptureSynchronizedDataCollection)
-M:AVFoundation.AVCaptureDepthDataOutput.SetDelegate(AVFoundation.IAVCaptureDepthDataOutputDelegate,CoreFoundation.DispatchQueue)
M:AVFoundation.AVCaptureDepthDataOutputDelegate_Extensions.DidDropDepthData(AVFoundation.IAVCaptureDepthDataOutputDelegate,AVFoundation.AVCaptureDepthDataOutput,AVFoundation.AVDepthData,CoreMedia.CMTime,AVFoundation.AVCaptureConnection,AVFoundation.AVCaptureOutputDataDroppedReason)
M:AVFoundation.AVCaptureDepthDataOutputDelegate_Extensions.DidOutputDepthData(AVFoundation.IAVCaptureDepthDataOutputDelegate,AVFoundation.AVCaptureDepthDataOutput,AVFoundation.AVDepthData,CoreMedia.CMTime,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureDepthDataOutputDelegate.DidDropDepthData(AVFoundation.AVCaptureDepthDataOutput,AVFoundation.AVDepthData,CoreMedia.CMTime,AVFoundation.AVCaptureConnection,AVFoundation.AVCaptureOutputDataDroppedReason)
-M:AVFoundation.AVCaptureDepthDataOutputDelegate.DidOutputDepthData(AVFoundation.AVCaptureDepthDataOutput,AVFoundation.AVDepthData,CoreMedia.CMTime,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureDeskViewApplication.Present(AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration,AVFoundation.AVCaptureDeskViewApplicationPresentHandler)
-M:AVFoundation.AVCaptureDeskViewApplication.Present(AVFoundation.AVCaptureDeskViewApplicationPresentHandler)
M:AVFoundation.AVCaptureDeskViewApplication.PresentAsync
M:AVFoundation.AVCaptureDeskViewApplication.PresentAsync(AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration)
-M:AVFoundation.AVCaptureDevice.CancelVideoZoomRamp
-M:AVFoundation.AVCaptureDevice.DevicesWithMediaType(System.String)
-M:AVFoundation.AVCaptureDevice.DeviceWithUniqueID(System.String)
M:AVFoundation.AVCaptureDevice.Dispose(System.Boolean)
M:AVFoundation.AVCaptureDevice.GetAuthorizationStatus(AVFoundation.AVAuthorizationMediaType)
-M:AVFoundation.AVCaptureDevice.GetAuthorizationStatus(Foundation.NSString)
-M:AVFoundation.AVCaptureDevice.GetChromaticityValues(AVFoundation.AVCaptureWhiteBalanceGains)
-M:AVFoundation.AVCaptureDevice.GetDefaultDevice(AVFoundation.AVCaptureDeviceType,AVFoundation.AVMediaTypes,AVFoundation.AVCaptureDevicePosition)
M:AVFoundation.AVCaptureDevice.GetDefaultDevice(AVFoundation.AVCaptureDeviceType,System.String,AVFoundation.AVCaptureDevicePosition)
M:AVFoundation.AVCaptureDevice.GetDefaultDevice(AVFoundation.AVMediaTypes)
-M:AVFoundation.AVCaptureDevice.GetDefaultDevice(Foundation.NSString)
-M:AVFoundation.AVCaptureDevice.GetDeviceWhiteBalanceGains(AVFoundation.AVCaptureWhiteBalanceChromaticityValues)
-M:AVFoundation.AVCaptureDevice.GetDeviceWhiteBalanceGains(AVFoundation.AVCaptureWhiteBalanceTemperatureAndTintValues)
-M:AVFoundation.AVCaptureDevice.GetExtrinsicMatrix(AVFoundation.AVCaptureDevice,AVFoundation.AVCaptureDevice)
-M:AVFoundation.AVCaptureDevice.GetTemperatureAndTintValues(AVFoundation.AVCaptureWhiteBalanceGains)
M:AVFoundation.AVCaptureDevice.HasMediaType(AVFoundation.AVMediaTypes)
-M:AVFoundation.AVCaptureDevice.HasMediaType(System.String)
-M:AVFoundation.AVCaptureDevice.IsExposureModeSupported(AVFoundation.AVCaptureExposureMode)
-M:AVFoundation.AVCaptureDevice.IsFlashModeSupported(AVFoundation.AVCaptureFlashMode)
-M:AVFoundation.AVCaptureDevice.IsFocusModeSupported(AVFoundation.AVCaptureFocusMode)
-M:AVFoundation.AVCaptureDevice.IsTorchModeSupported(AVFoundation.AVCaptureTorchMode)
-M:AVFoundation.AVCaptureDevice.IsWhiteBalanceModeSupported(AVFoundation.AVCaptureWhiteBalanceMode)
-M:AVFoundation.AVCaptureDevice.LockExposure(CoreMedia.CMTime,System.Single,System.Action{CoreMedia.CMTime})
M:AVFoundation.AVCaptureDevice.LockExposureAsync(CoreMedia.CMTime,System.Single)
-M:AVFoundation.AVCaptureDevice.LockForConfiguration(Foundation.NSError@)
-M:AVFoundation.AVCaptureDevice.PerformEffect(System.String)
-M:AVFoundation.AVCaptureDevice.RampToVideoZoom(System.Runtime.InteropServices.NFloat,System.Single)
M:AVFoundation.AVCaptureDevice.RequestAccessForMediaType(AVFoundation.AVAuthorizationMediaType,AVFoundation.AVRequestAccessStatus)
-M:AVFoundation.AVCaptureDevice.RequestAccessForMediaType(Foundation.NSString,AVFoundation.AVRequestAccessStatus)
M:AVFoundation.AVCaptureDevice.RequestAccessForMediaTypeAsync(AVFoundation.AVAuthorizationMediaType)
M:AVFoundation.AVCaptureDevice.RequestAccessForMediaTypeAsync(Foundation.NSString)
-M:AVFoundation.AVCaptureDevice.SetExposureTargetBias(System.Single,System.Action{CoreMedia.CMTime})
M:AVFoundation.AVCaptureDevice.SetExposureTargetBiasAsync(System.Single)
-M:AVFoundation.AVCaptureDevice.SetFocusModeLocked(System.Single,System.Action{CoreMedia.CMTime})
M:AVFoundation.AVCaptureDevice.SetFocusModeLockedAsync(System.Single)
-M:AVFoundation.AVCaptureDevice.SetPrimaryConstituentDeviceSwitchingBehavior(AVFoundation.AVCapturePrimaryConstituentDeviceSwitchingBehavior,AVFoundation.AVCapturePrimaryConstituentDeviceRestrictedSwitchingBehaviorConditions)
-M:AVFoundation.AVCaptureDevice.SetTorchModeLevel(System.Single,Foundation.NSError@)
-M:AVFoundation.AVCaptureDevice.SetTransportControlsPlaybackMode(AVFoundation.AVCaptureDeviceTransportControlsPlaybackMode,System.Single)
-M:AVFoundation.AVCaptureDevice.SetWhiteBalanceModeLockedWithDeviceWhiteBalanceGains(AVFoundation.AVCaptureWhiteBalanceGains,System.Action{CoreMedia.CMTime})
M:AVFoundation.AVCaptureDevice.SetWhiteBalanceModeLockedWithDeviceWhiteBalanceGainsAsync(AVFoundation.AVCaptureWhiteBalanceGains)
-M:AVFoundation.AVCaptureDevice.ShowSystemUserInterface(AVFoundation.AVCaptureSystemUserInterface)
-M:AVFoundation.AVCaptureDevice.SupportsAVCaptureSessionPreset(System.String)
-M:AVFoundation.AVCaptureDevice.UnlockForConfiguration
-M:AVFoundation.AVCaptureDeviceDiscoverySession.Create(AVFoundation.AVCaptureDeviceType[],AVFoundation.AVMediaTypes,AVFoundation.AVCaptureDevicePosition)
-M:AVFoundation.AVCaptureDeviceFormat.IsVideoStabilizationModeSupported(AVFoundation.AVCaptureVideoStabilizationMode)
-M:AVFoundation.AVCaptureDeviceInput.#ctor(AVFoundation.AVCaptureDevice,Foundation.NSError@)
-M:AVFoundation.AVCaptureDeviceInput.FromDevice(AVFoundation.AVCaptureDevice,Foundation.NSError@)
M:AVFoundation.AVCaptureDeviceInput.FromDevice(AVFoundation.AVCaptureDevice)
-M:AVFoundation.AVCaptureDeviceInput.GetPorts(AVFoundation.AVMediaTypes,AVFoundation.AVCaptureDeviceType,AVFoundation.AVCaptureDevicePosition)
-M:AVFoundation.AVCaptureDeviceInput.IsMultichannelAudioModeSupported(AVFoundation.AVCaptureMultichannelAudioMode)
-M:AVFoundation.AVCaptureDeviceRotationCoordinator.#ctor(AVFoundation.AVCaptureDevice,CoreAnimation.CALayer)
M:AVFoundation.AVCaptureDeviceRotationCoordinator.Dispose(System.Boolean)
M:AVFoundation.AVCaptureFileOutput.Dispose(System.Boolean)
-M:AVFoundation.AVCaptureFileOutput.PauseRecording
-M:AVFoundation.AVCaptureFileOutput.ResumeRecording
-M:AVFoundation.AVCaptureFileOutput.StartRecordingToOutputFile(Foundation.NSUrl,AVFoundation.IAVCaptureFileOutputRecordingDelegate)
M:AVFoundation.AVCaptureFileOutput.StartRecordingToOutputFile(Foundation.NSUrl,System.Action{Foundation.NSObject[]},System.Action{Foundation.NSObject[],Foundation.NSError})
-M:AVFoundation.AVCaptureFileOutput.StopRecording
M:AVFoundation.AVCaptureFileOutputDelegate_Extensions.DidOutputSampleBuffer(AVFoundation.IAVCaptureFileOutputDelegate,AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureFileOutputDelegate.DidOutputSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureFileOutputDelegate.ShouldProvideSampleAccurateRecordingStart(AVFoundation.AVCaptureOutput)
M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.DidPauseRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[])
M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.DidResumeRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[])
M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.DidStartRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,CoreMedia.CMTime,Foundation.NSObject[])
M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.DidStartRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,Foundation.NSObject[])
M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.WillFinishRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[],Foundation.NSError)
-M:AVFoundation.AVCaptureFileOutputRecordingDelegate.DidPauseRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[])
-M:AVFoundation.AVCaptureFileOutputRecordingDelegate.DidResumeRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[])
-M:AVFoundation.AVCaptureFileOutputRecordingDelegate.DidStartRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,CoreMedia.CMTime,Foundation.NSObject[])
-M:AVFoundation.AVCaptureFileOutputRecordingDelegate.DidStartRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,Foundation.NSObject[])
-M:AVFoundation.AVCaptureFileOutputRecordingDelegate.FinishedRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,Foundation.NSObject[],Foundation.NSError)
-M:AVFoundation.AVCaptureFileOutputRecordingDelegate.WillFinishRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[],Foundation.NSError)
-M:AVFoundation.AVCaptureIndexPicker.#ctor(System.String,System.String,System.IntPtr,AVFoundation.AVCaptureIndexPickerTitleTransform)
-M:AVFoundation.AVCaptureIndexPicker.#ctor(System.String,System.String,System.IntPtr)
-M:AVFoundation.AVCaptureIndexPicker.#ctor(System.String,System.String,System.String[])
-M:AVFoundation.AVCaptureIndexPicker.SetActionQueue(CoreFoundation.DispatchQueue,AVFoundation.AVCaptureIndexPickerCallback)
-M:AVFoundation.AVCaptureManualExposureBracketedStillImageSettings.Create(CoreMedia.CMTime,System.Single)
-M:AVFoundation.AVCaptureMetadataInput.AppendTimedMetadataGroup(AVFoundation.AVTimedMetadataGroup,Foundation.NSError@)
-M:AVFoundation.AVCaptureMetadataOutput.SetDelegate(AVFoundation.IAVCaptureMetadataOutputObjectsDelegate,CoreFoundation.DispatchQueue)
M:AVFoundation.AVCaptureMetadataOutputObjectsDelegate_Extensions.DidOutputMetadataObjects(AVFoundation.IAVCaptureMetadataOutputObjectsDelegate,AVFoundation.AVCaptureMetadataOutput,AVFoundation.AVMetadataObject[],AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureMetadataOutputObjectsDelegate.DidOutputMetadataObjects(AVFoundation.AVCaptureMetadataOutput,AVFoundation.AVMetadataObject[],AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureMovieFileOutput.GetOutputSettings(AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureMovieFileOutput.GetSupportedOutputSettingsKeys(AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureMovieFileOutput.RecordsVideoOrientationAndMirroringChangesAsMetadataTrack(AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureMovieFileOutput.SetOutputSettings(Foundation.NSDictionary,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureMovieFileOutput.SetPrimaryConstituentDeviceSwitchingBehaviorForRecording(AVFoundation.AVCapturePrimaryConstituentDeviceSwitchingBehavior,AVFoundation.AVCapturePrimaryConstituentDeviceRestrictedSwitchingBehaviorConditions)
-M:AVFoundation.AVCaptureMovieFileOutput.SetRecordsVideoOrientationAndMirroringChanges(System.Boolean,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureOutput.ConnectionFromMediaType(Foundation.NSString)
-M:AVFoundation.AVCaptureOutput.GetMetadataOutputRectOfInterestForRect(CoreGraphics.CGRect)
-M:AVFoundation.AVCaptureOutput.GetRectForMetadataOutputRectOfInterest(CoreGraphics.CGRect)
-M:AVFoundation.AVCaptureOutput.GetTransformedMetadataObject(AVFoundation.AVMetadataObject,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCapturePhoto.GetFileDataRepresentation(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer)
-M:AVFoundation.AVCapturePhoto.GetFileDataRepresentation(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},CoreVideo.CVPixelBuffer,AVFoundation.AVDepthData)
-M:AVFoundation.AVCapturePhoto.GetSemanticSegmentationMatte(AVFoundation.AVSemanticSegmentationMatteType)
-M:AVFoundation.AVCapturePhotoBracketSettings.FromPhotoBracketSettings(System.UInt32,System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.String,AVFoundation.AVCaptureBracketedStillImageSettings[])
-M:AVFoundation.AVCapturePhotoBracketSettings.FromRawPixelFormatType(System.UInt32,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},AVFoundation.AVCaptureBracketedStillImageSettings[])
M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidCapturePhoto(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings)
M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishCapture(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings,Foundation.NSError)
M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishCapturingDeferredPhotoProxy(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureDeferredPhotoProxy,Foundation.NSError)
@@ -31076,112 +23135,29 @@ M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishProcessingRawPh
M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishRecordingLivePhotoMovie(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,Foundation.NSUrl,AVFoundation.AVCaptureResolvedPhotoSettings)
M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.WillBeginCapture(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings)
M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.WillCapturePhoto(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.DidCapturePhoto(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.DidFinishCapture(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings,Foundation.NSError)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.DidFinishCapturingDeferredPhotoProxy(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureDeferredPhotoProxy,Foundation.NSError)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.DidFinishProcessingLivePhotoMovie(AVFoundation.AVCapturePhotoOutput,Foundation.NSUrl,CoreMedia.CMTime,CoreMedia.CMTime,AVFoundation.AVCaptureResolvedPhotoSettings,Foundation.NSError)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.DidFinishProcessingPhoto(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCapturePhoto,Foundation.NSError)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.DidFinishProcessingPhoto(AVFoundation.AVCapturePhotoOutput,CoreMedia.CMSampleBuffer,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureResolvedPhotoSettings,AVFoundation.AVCaptureBracketedStillImageSettings,Foundation.NSError)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.DidFinishProcessingRawPhoto(AVFoundation.AVCapturePhotoOutput,CoreMedia.CMSampleBuffer,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureResolvedPhotoSettings,AVFoundation.AVCaptureBracketedStillImageSettings,Foundation.NSError)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.DidFinishRecordingLivePhotoMovie(AVFoundation.AVCapturePhotoOutput,Foundation.NSUrl,AVFoundation.AVCaptureResolvedPhotoSettings)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.WillBeginCapture(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings)
-M:AVFoundation.AVCapturePhotoCaptureDelegate.WillCapturePhoto(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings)
M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementAppleProRawCompressionSettings(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr)
M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementDepthData(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto)
M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementEmbeddedThumbnail(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,Foundation.NSDictionary`2@,AVFoundation.AVCapturePhoto)
M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementMetadata(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto)
M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementPortraitEffectsMatte(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto)
M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementSemanticSegmentationMatte(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,Foundation.NSString,AVFoundation.AVCapturePhoto)
-M:AVFoundation.AVCapturePhotoOutput.CapturePhoto(AVFoundation.AVCapturePhotoSettings,AVFoundation.IAVCapturePhotoCaptureDelegate)
M:AVFoundation.AVCapturePhotoOutput.Dispose(System.Boolean)
-M:AVFoundation.AVCapturePhotoOutput.GetDngPhotoDataRepresentation(CoreMedia.CMSampleBuffer,CoreMedia.CMSampleBuffer)
-M:AVFoundation.AVCapturePhotoOutput.GetJpegPhotoDataRepresentation(CoreMedia.CMSampleBuffer,CoreMedia.CMSampleBuffer)
M:AVFoundation.AVCapturePhotoOutput.GetSupportedPhotoCodecTypesForFileType(System.String)
-M:AVFoundation.AVCapturePhotoOutput.GetSupportedPhotoPixelFormatTypesForFileType(System.String)
-M:AVFoundation.AVCapturePhotoOutput.GetSupportedRawPhotoCodecTypes(CoreVideo.CVPixelFormatType,AVFoundation.AVFileTypes)
-M:AVFoundation.AVCapturePhotoOutput.GetSupportedRawPhotoPixelFormatTypesForFileType(System.String)
-M:AVFoundation.AVCapturePhotoOutput.IsAppleProRawPixelFormat(CoreVideo.CVPixelFormatType)
-M:AVFoundation.AVCapturePhotoOutput.IsBayerRawPixelFormat(CoreVideo.CVPixelFormatType)
-M:AVFoundation.AVCapturePhotoOutput.SetPreparedPhotoSettings(AVFoundation.AVCapturePhotoSettings[],System.Action{System.Boolean,Foundation.NSError})
M:AVFoundation.AVCapturePhotoOutput.SetPreparedPhotoSettingsAsync(AVFoundation.AVCapturePhotoSettings[])
-M:AVFoundation.AVCapturePhotoOutputReadinessCoordinator.#ctor(AVFoundation.AVCapturePhotoOutput)
M:AVFoundation.AVCapturePhotoOutputReadinessCoordinator.Dispose(System.Boolean)
-M:AVFoundation.AVCapturePhotoOutputReadinessCoordinator.StartTrackingCaptureRequest(AVFoundation.AVCapturePhotoSettings)
-M:AVFoundation.AVCapturePhotoOutputReadinessCoordinator.StopTrackingCaptureRequest(System.Int64)
-M:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegate.CaptureReadinessDidChange(AVFoundation.AVCapturePhotoOutputReadinessCoordinator,AVFoundation.AVCapturePhotoOutputCaptureReadiness)
-M:AVFoundation.AVCapturePhotoSettings.Copy(Foundation.NSZone)
-M:AVFoundation.AVCapturePhotoSettings.Create
M:AVFoundation.AVCapturePhotoSettings.Dispose(System.Boolean)
-M:AVFoundation.AVCapturePhotoSettings.FromFormat(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVCapturePhotoSettings.FromPhotoSettings(AVFoundation.AVCapturePhotoSettings)
-M:AVFoundation.AVCapturePhotoSettings.FromRawPixelFormatType(System.UInt32,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVCapturePhotoSettings.FromRawPixelFormatType(System.UInt32,System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.String)
-M:AVFoundation.AVCapturePhotoSettings.FromRawPixelFormatType(System.UInt32)
M:AVFoundation.AVCapturePhotoSettingsThumbnailFormat.#ctor
M:AVFoundation.AVCapturePhotoSettingsThumbnailFormat.#ctor(Foundation.NSDictionary)
M:AVFoundation.AVCaptureReactionTypeExtensions.GetConstant(AVFoundation.AVCaptureReactionType)
M:AVFoundation.AVCaptureReactionTypeExtensions.GetValue(Foundation.NSString)
-M:AVFoundation.AVCaptureResolvedPhotoSettings.GetDimensions(AVFoundation.AVSemanticSegmentationMatteType)
-M:AVFoundation.AVCaptureScreenInput.#ctor(System.UInt32)
-M:AVFoundation.AVCaptureSession.AddConnection(AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureSession.AddControl(AVFoundation.AVCaptureControl)
-M:AVFoundation.AVCaptureSession.AddInput(AVFoundation.AVCaptureInput)
-M:AVFoundation.AVCaptureSession.AddInputWithNoConnections(AVFoundation.AVCaptureInput)
-M:AVFoundation.AVCaptureSession.AddOutput(AVFoundation.AVCaptureOutput)
-M:AVFoundation.AVCaptureSession.AddOutputWithNoConnections(AVFoundation.AVCaptureOutput)
-M:AVFoundation.AVCaptureSession.BeginConfiguration
-M:AVFoundation.AVCaptureSession.CanAddConnection(AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureSession.CanAddControl(AVFoundation.AVCaptureControl)
-M:AVFoundation.AVCaptureSession.CanAddInput(AVFoundation.AVCaptureInput)
-M:AVFoundation.AVCaptureSession.CanAddOutput(AVFoundation.AVCaptureOutput)
-M:AVFoundation.AVCaptureSession.CanSetSessionPreset(Foundation.NSString)
-M:AVFoundation.AVCaptureSession.CommitConfiguration
-M:AVFoundation.AVCaptureSession.RemoveConnection(AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureSession.RemoveControl(AVFoundation.AVCaptureControl)
-M:AVFoundation.AVCaptureSession.RemoveInput(AVFoundation.AVCaptureInput)
-M:AVFoundation.AVCaptureSession.RemoveOutput(AVFoundation.AVCaptureOutput)
-M:AVFoundation.AVCaptureSession.SetControlsDelegate(AVFoundation.IAVCaptureSessionControlsDelegate,CoreFoundation.DispatchQueue)
-M:AVFoundation.AVCaptureSession.StartRunning
-M:AVFoundation.AVCaptureSession.StopRunning
-M:AVFoundation.AVCaptureSessionControlsDelegate.DidBecomeActive(AVFoundation.AVCaptureSession)
-M:AVFoundation.AVCaptureSessionControlsDelegate.DidBecomeInactive(AVFoundation.AVCaptureSession)
-M:AVFoundation.AVCaptureSessionControlsDelegate.WillEnterFullscreenAppearance(AVFoundation.AVCaptureSession)
-M:AVFoundation.AVCaptureSessionControlsDelegate.WillExitFullscreenAppearance(AVFoundation.AVCaptureSession)
M:AVFoundation.AVCaptureSessionRuntimeErrorEventArgs.#ctor(Foundation.NSNotification)
-M:AVFoundation.AVCaptureSlider.#ctor(System.String,System.String,System.Single,System.Single,System.Single)
-M:AVFoundation.AVCaptureSlider.#ctor(System.String,System.String,System.Single,System.Single)
-M:AVFoundation.AVCaptureSlider.#ctor(System.String,System.String,System.Single[])
-M:AVFoundation.AVCaptureSlider.SetActionQueue(CoreFoundation.DispatchQueue,AVFoundation.AVCaptureSliderCallback)
-M:AVFoundation.AVCaptureStillImageOutput.CaptureStillImageAsynchronously(AVFoundation.AVCaptureConnection,AVFoundation.AVCaptureCompletionHandler)
-M:AVFoundation.AVCaptureStillImageOutput.CaptureStillImageBracket(AVFoundation.AVCaptureConnection,AVFoundation.AVCaptureBracketedStillImageSettings[],System.Action{CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureBracketedStillImageSettings,Foundation.NSError})
M:AVFoundation.AVCaptureStillImageOutput.CaptureStillImageTaskAsync(AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureStillImageOutput.JpegStillToNSData(CoreMedia.CMSampleBuffer)
-M:AVFoundation.AVCaptureStillImageOutput.PrepareToCaptureStillImageBracket(AVFoundation.AVCaptureConnection,AVFoundation.AVCaptureBracketedStillImageSettings[],System.Action{System.Boolean,Foundation.NSError})
-M:AVFoundation.AVCaptureSynchronizedDataCollection.GetSynchronizedData(AVFoundation.AVCaptureOutput)
-M:AVFoundation.AVCaptureSystemExposureBiasSlider.#ctor(AVFoundation.AVCaptureDevice,AVFoundation.AVCaptureSystemExposureBiasSliderCallback)
-M:AVFoundation.AVCaptureSystemExposureBiasSlider.#ctor(AVFoundation.AVCaptureDevice)
-M:AVFoundation.AVCaptureSystemZoomSlider.#ctor(AVFoundation.AVCaptureDevice,AVFoundation.AVCaptureSystemZoomSliderCallback)
-M:AVFoundation.AVCaptureSystemZoomSlider.#ctor(AVFoundation.AVCaptureDevice)
-M:AVFoundation.AVCaptureVideoDataOutput.GetAvailableVideoCodecTypes(System.String)
M:AVFoundation.AVCaptureVideoDataOutput.GetRecommendedVideoSettings(AVFoundation.AVVideoCodecType,AVFoundation.AVFileTypes,Foundation.NSUrl)
-M:AVFoundation.AVCaptureVideoDataOutput.GetRecommendedVideoSettings(System.String,System.String,Foundation.NSUrl)
M:AVFoundation.AVCaptureVideoDataOutput.GetRecommendedVideoSettings(System.String,System.String)
-M:AVFoundation.AVCaptureVideoDataOutput.GetRecommendedVideoSettingsForAssetWriter(System.String)
-M:AVFoundation.AVCaptureVideoDataOutput.SetSampleBufferDelegate(AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate,CoreFoundation.DispatchQueue)
M:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Extensions.DidDropSampleBuffer(AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate,AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
M:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Extensions.DidOutputSampleBuffer(AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate,AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate.DidDropSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
-M:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate.DidOutputSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
M:AVFoundation.AVCaptureVideoPreviewLayer.#ctor(AVFoundation.AVCaptureSession,AVFoundation.AVCaptureVideoPreviewLayer.InitMode)
M:AVFoundation.AVCaptureVideoPreviewLayer.#ctor(AVFoundation.AVCaptureSession)
-M:AVFoundation.AVCaptureVideoPreviewLayer.CaptureDevicePointOfInterestForPoint(CoreGraphics.CGPoint)
-M:AVFoundation.AVCaptureVideoPreviewLayer.CreateWithNoConnection(AVFoundation.AVCaptureSession)
-M:AVFoundation.AVCaptureVideoPreviewLayer.FromSession(AVFoundation.AVCaptureSession)
-M:AVFoundation.AVCaptureVideoPreviewLayer.GetTransformedMetadataObject(AVFoundation.AVMetadataObject)
-M:AVFoundation.AVCaptureVideoPreviewLayer.MapToLayerCoordinates(CoreGraphics.CGRect)
-M:AVFoundation.AVCaptureVideoPreviewLayer.MapToMetadataOutputCoordinates(CoreGraphics.CGRect)
-M:AVFoundation.AVCaptureVideoPreviewLayer.PointForCaptureDevicePointOfInterest(CoreGraphics.CGPoint)
-M:AVFoundation.AVCaptureVideoPreviewLayer.SetSessionWithNoConnection(AVFoundation.AVCaptureSession)
M:AVFoundation.AVCaptureWhiteBalanceChromaticityValues.#ctor(System.Single,System.Single)
M:AVFoundation.AVCaptureWhiteBalanceChromaticityValues.Equals(AVFoundation.AVCaptureWhiteBalanceChromaticityValues)
M:AVFoundation.AVCaptureWhiteBalanceChromaticityValues.Equals(System.Object)
@@ -31220,58 +23196,25 @@ M:AVFoundation.AVComposition_AVCompositionTrackInspection.LoadTracksWithMediaCha
M:AVFoundation.AVComposition_AVCompositionTrackInspection.LoadTracksWithMediaCharacteristicAsync(AVFoundation.AVComposition,System.String)
M:AVFoundation.AVComposition_AVCompositionTrackInspection.LoadTracksWithMediaType(AVFoundation.AVComposition,System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
M:AVFoundation.AVComposition_AVCompositionTrackInspection.LoadTracksWithMediaTypeAsync(AVFoundation.AVComposition,System.String)
-M:AVFoundation.AVComposition.Copy(Foundation.NSZone)
-M:AVFoundation.AVComposition.GetChapterMetadataGroups(Foundation.NSLocale,System.String[])
-M:AVFoundation.AVComposition.GetChapterMetadataGroups(System.String[])
-M:AVFoundation.AVComposition.GetMediaSelectionGroup(System.String)
-M:AVFoundation.AVComposition.GetMetadata(System.String)
-M:AVFoundation.AVComposition.GetUnusedTrackId
-M:AVFoundation.AVComposition.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVCompositionTrack.GetAssociatedTracks(System.String)
-M:AVFoundation.AVCompositionTrack.GetMetadata(System.String)
-M:AVFoundation.AVCompositionTrack.GetSamplePresentationTime(CoreMedia.CMTime)
-M:AVFoundation.AVCompositionTrack.HasMediaCharacteristic(System.String)
-M:AVFoundation.AVCompositionTrackFormatDescriptionReplacement.EncodeTo(Foundation.NSCoder)
-M:AVFoundation.AVCompositionTrackSegment.#ctor(CoreMedia.CMTimeRange)
-M:AVFoundation.AVCompositionTrackSegment.#ctor(Foundation.NSUrl,System.Int32,CoreMedia.CMTimeRange,CoreMedia.CMTimeRange)
-M:AVFoundation.AVCompositionTrackSegment.FromTimeRange(CoreMedia.CMTimeRange)
-M:AVFoundation.AVCompositionTrackSegment.FromUrl(Foundation.NSUrl,System.Int32,CoreMedia.CMTimeRange,CoreMedia.CMTimeRange)
M:AVFoundation.AVCompressionProperties.#ctor
M:AVFoundation.AVCompressionProperties.#ctor(Foundation.NSDictionary)
-M:AVFoundation.AVContentKey.Revoke
M:AVFoundation.AVContentKeyRecipient_Extensions.DidProvideContentKey(AVFoundation.IAVContentKeyRecipient,AVFoundation.AVContentKeySession,AVFoundation.AVContentKey)
M:AVFoundation.AVContentKeyRequest_AVContentKeyRequestRenewal.GetRenewsExpiringResponseData(AVFoundation.AVContentKeyRequest)
-M:AVFoundation.AVContentKeyRequest.MakeStreamingContentKeyRequestData(Foundation.NSData,Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Action{Foundation.NSData,Foundation.NSError})
M:AVFoundation.AVContentKeyRequest.MakeStreamingContentKeyRequestDataAsync(Foundation.NSData,Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVContentKeyRequest.Process(AVFoundation.AVContentKeyResponse)
-M:AVFoundation.AVContentKeyRequest.Process(Foundation.NSError)
-M:AVFoundation.AVContentKeyRequest.RespondByRequestingPersistableContentKeyRequest
-M:AVFoundation.AVContentKeyRequest.RespondByRequestingPersistableContentKeyRequest(Foundation.NSError@)
M:AVFoundation.AVContentKeyResponse.Create(Foundation.NSData,AVFoundation.AVContentKeyResponseDataType)
-M:AVFoundation.AVContentKeyResponse.Create(Foundation.NSData,Foundation.NSData)
M:AVFoundation.AVContentKeyResponse.Create(Foundation.NSData)
M:AVFoundation.AVContentKeySession_AVContentKeyRecipients.Add(AVFoundation.AVContentKeySession,AVFoundation.IAVContentKeyRecipient)
M:AVFoundation.AVContentKeySession_AVContentKeyRecipients.GetContentKeyRecipients(AVFoundation.AVContentKeySession)
M:AVFoundation.AVContentKeySession_AVContentKeyRecipients.Remove(AVFoundation.AVContentKeySession,AVFoundation.IAVContentKeyRecipient)
M:AVFoundation.AVContentKeySession.Create(AVFoundation.AVContentKeySystem,Foundation.NSUrl)
-M:AVFoundation.AVContentKeySession.Create(System.String)
M:AVFoundation.AVContentKeySession.Dispose(System.Boolean)
-M:AVFoundation.AVContentKeySession.Expire
-M:AVFoundation.AVContentKeySession.GetPendingExpiredSessionReports(Foundation.NSData,Foundation.NSUrl)
M:AVFoundation.AVContentKeySession.InvalidateAllPersistableContentKeys(Foundation.NSData,AVFoundation.AVContentKeySessionServerPlaybackContextOptions,System.Action{Foundation.NSData,Foundation.NSError})
-M:AVFoundation.AVContentKeySession.InvalidateAllPersistableContentKeys(Foundation.NSData,Foundation.NSDictionary,System.Action{Foundation.NSData,Foundation.NSError})
M:AVFoundation.AVContentKeySession.InvalidateAllPersistableContentKeysAsync(Foundation.NSData,AVFoundation.AVContentKeySessionServerPlaybackContextOptions)
M:AVFoundation.AVContentKeySession.InvalidateAllPersistableContentKeysAsync(Foundation.NSData,Foundation.NSDictionary)
M:AVFoundation.AVContentKeySession.InvalidatePersistableContentKey(Foundation.NSData,AVFoundation.AVContentKeySessionServerPlaybackContextOptions,System.Action{Foundation.NSData,Foundation.NSError})
-M:AVFoundation.AVContentKeySession.InvalidatePersistableContentKey(Foundation.NSData,Foundation.NSDictionary,System.Action{Foundation.NSData,Foundation.NSError})
M:AVFoundation.AVContentKeySession.InvalidatePersistableContentKeyAsync(Foundation.NSData,AVFoundation.AVContentKeySessionServerPlaybackContextOptions)
M:AVFoundation.AVContentKeySession.InvalidatePersistableContentKeyAsync(Foundation.NSData,Foundation.NSDictionary)
-M:AVFoundation.AVContentKeySession.MakeSecureToken(Foundation.NSData,System.Action{Foundation.NSData,Foundation.NSError})
M:AVFoundation.AVContentKeySession.MakeSecureTokenAsync(Foundation.NSData)
-M:AVFoundation.AVContentKeySession.ProcessContentKeyRequest(Foundation.NSObject,Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVContentKeySession.RemovePendingExpiredSessionReports(Foundation.NSDictionary[],Foundation.NSData,Foundation.NSUrl)
-M:AVFoundation.AVContentKeySession.RenewExpiringResponseData(AVFoundation.AVContentKeyRequest)
-M:AVFoundation.AVContentKeySession.SetDelegate(AVFoundation.IAVContentKeySessionDelegate,CoreFoundation.DispatchQueue)
M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidChange(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession)
M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidFail(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest,Foundation.NSError)
M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidGenerateExpiredSessionReport(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession)
@@ -31282,43 +23225,12 @@ M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidSucceed(AVFoundation.IA
M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidUpdate(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,Foundation.NSData,Foundation.NSObject)
M:AVFoundation.AVContentKeySessionDelegate_Extensions.ExternalProtectionStatusDidChange(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKey)
M:AVFoundation.AVContentKeySessionDelegate_Extensions.ShouldRetryContentKeyRequest(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest,System.String)
-M:AVFoundation.AVContentKeySessionDelegate.DidChange(AVFoundation.AVContentKeySession)
-M:AVFoundation.AVContentKeySessionDelegate.DidFail(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest,Foundation.NSError)
-M:AVFoundation.AVContentKeySessionDelegate.DidGenerateExpiredSessionReport(AVFoundation.AVContentKeySession)
-M:AVFoundation.AVContentKeySessionDelegate.DidProvideContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest)
-M:AVFoundation.AVContentKeySessionDelegate.DidProvideContentKeyRequests(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest[],Foundation.NSData)
-M:AVFoundation.AVContentKeySessionDelegate.DidProvidePersistableContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVPersistableContentKeyRequest)
-M:AVFoundation.AVContentKeySessionDelegate.DidProvideRenewingContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest)
-M:AVFoundation.AVContentKeySessionDelegate.DidSucceed(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest)
-M:AVFoundation.AVContentKeySessionDelegate.DidUpdate(AVFoundation.AVContentKeySession,Foundation.NSData,Foundation.NSObject)
-M:AVFoundation.AVContentKeySessionDelegate.ExternalProtectionStatusDidChange(AVFoundation.AVContentKeySession,AVFoundation.AVContentKey)
-M:AVFoundation.AVContentKeySessionDelegate.ShouldRetryContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest,System.String)
M:AVFoundation.AVContentKeySessionServerPlaybackContextOptions.#ctor
M:AVFoundation.AVContentKeySessionServerPlaybackContextOptions.#ctor(Foundation.NSDictionary)
-M:AVFoundation.AVContentKeySpecifier.#ctor(AVFoundation.AVContentKeySystem,Foundation.NSObject,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVContentKeySpecifier.GetContentKeySpecifier(AVFoundation.AVContentKeySystem,Foundation.NSObject,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:AVFoundation.AVContentProposal.#ctor(CoreMedia.CMTime,System.String,UIKit.UIImage)
-M:AVFoundation.AVContentProposal.Copy(Foundation.NSZone)
M:AVFoundation.AVContentProposal.Dispose(System.Boolean)
-M:AVFoundation.AVCoordinatedPlaybackSuspension.End
-M:AVFoundation.AVCoordinatedPlaybackSuspension.EndProposingNewTime(CoreMedia.CMTime)
-M:AVFoundation.AVDateRangeMetadataGroup.#ctor(AVFoundation.AVMetadataItem[],Foundation.NSDate,Foundation.NSDate)
-M:AVFoundation.AVDateRangeMetadataGroup.Copy(Foundation.NSZone)
-M:AVFoundation.AVDateRangeMetadataGroup.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVDelegatingPlaybackCoordinator.#ctor(AVFoundation.IAVPlaybackCoordinatorPlaybackControlDelegate)
-M:AVFoundation.AVDelegatingPlaybackCoordinator.CoordinateRateChangeToRate(System.Single,AVFoundation.AVDelegatingPlaybackCoordinatorRateChangeOptions)
-M:AVFoundation.AVDelegatingPlaybackCoordinator.CoordinateSeekToTime(CoreMedia.CMTime,AVFoundation.AVDelegatingPlaybackCoordinatorSeekOptions)
M:AVFoundation.AVDelegatingPlaybackCoordinator.Dispose(System.Boolean)
-M:AVFoundation.AVDelegatingPlaybackCoordinator.ReapplyCurrentItemStateToPlaybackControlDelegate
-M:AVFoundation.AVDelegatingPlaybackCoordinator.TransitionToItem(System.String,CoreMedia.CMTimebase)
-M:AVFoundation.AVDepthData.ApplyExifOrientation(ImageIO.CGImagePropertyOrientation)
-M:AVFoundation.AVDepthData.ConvertToDepthDataType(CoreVideo.CVPixelFormatType)
-M:AVFoundation.AVDepthData.Create(Foundation.NSDictionary,Foundation.NSError@)
M:AVFoundation.AVDepthData.Create(ImageIO.CGImageAuxiliaryDataInfo,Foundation.NSError@)
-M:AVFoundation.AVDepthData.GetDictionaryRepresentation(System.String@)
-M:AVFoundation.AVDepthData.ReplaceDepthDataMap(CoreVideo.CVPixelBuffer,Foundation.NSError@)
-M:AVFoundation.AVDisplayCriteria.#ctor(System.Single,CoreMedia.CMFormatDescription)
-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)
M:AVFoundation.AVEdgeWidths.GetHashCode
@@ -31326,12 +23238,9 @@ M:AVFoundation.AVEdgeWidths.op_Equality(AVFoundation.AVEdgeWidths,AVFoundation.A
M:AVFoundation.AVEdgeWidths.op_Inequality(AVFoundation.AVEdgeWidths,AVFoundation.AVEdgeWidths)
M:AVFoundation.AVEdgeWidths.ToString
M:AVFoundation.AVErrorEventArgs.#ctor(Foundation.NSError)
-M:AVFoundation.AVExposureBiasRange.ContainsExposureBias(System.Single)
M:AVFoundation.AVExtendedNoteOnEvent.#ctor(System.Single,System.Single,System.UInt32,System.Double)
M:AVFoundation.AVExtendedNoteOnEvent.#ctor(System.Single,System.Single,System.UInt32,System.UInt32,System.Double)
M:AVFoundation.AVExtendedTempoEvent.#ctor(System.Double)
-M:AVFoundation.AVExternalStorageDevice.GetNextAvailableUrls(System.String[],Foundation.NSError@)
-M:AVFoundation.AVExternalStorageDevice.RequestAccess(AVFoundation.AVExternalStorageDeviceRequestAccessCallback)
M:AVFoundation.AVExternalStorageDevice.RequestAccessAsync
M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.GetTrack(AVFoundation.AVFragmentedAsset,System.Int32)
M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.GetTracks(AVFoundation.AVFragmentedAsset,AVFoundation.AVMediaCharacteristics)
@@ -31344,13 +23253,7 @@ M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.LoadTracksWith
M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.LoadTracksWithMediaCharacteristicAsync(AVFoundation.AVFragmentedAsset,System.String)
M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.LoadTracksWithMediaType(AVFoundation.AVFragmentedAsset,System.String,System.Action{Foundation.NSArray{AVFoundation.AVFragmentedAssetTrack},Foundation.NSError})
M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.LoadTracksWithMediaTypeAsync(AVFoundation.AVFragmentedAsset,System.String)
-M:AVFoundation.AVFragmentedAsset.#ctor(Foundation.NSUrl,Foundation.NSDictionary)
-M:AVFoundation.AVFragmentedAsset.FromUrl(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:AVFoundation.AVFragmentedAsset.IsAssociatedWithFragmentMinder
-M:AVFoundation.AVFragmentedAssetMinder.#ctor(AVFoundation.IAVFragmentMinding,System.Double)
-M:AVFoundation.AVFragmentedAssetMinder.AddFragmentedAsset(AVFoundation.AVAsset)
-M:AVFoundation.AVFragmentedAssetMinder.FromAsset(AVFoundation.AVAsset,System.Double)
-M:AVFoundation.AVFragmentedAssetMinder.RemoveFragmentedAsset(AVFoundation.AVAsset)
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.GetTrack(AVFoundation.AVFragmentedMovie,System.Int32)
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.GetTracks(AVFoundation.AVFragmentedMovie,AVFoundation.AVMediaCharacteristics)
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.GetTracks(AVFoundation.AVFragmentedMovie,AVFoundation.AVMediaTypes)
@@ -31362,66 +23265,13 @@ M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.LoadTracksWith
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.LoadTracksWithMediaCharacteristicAsync(AVFoundation.AVFragmentedMovie,System.String)
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.LoadTracksWithMediaType(AVFoundation.AVFragmentedMovie,System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.LoadTracksWithMediaTypeAsync(AVFoundation.AVFragmentedMovie,System.String)
-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(AVFoundation.AVFragmentedMovie,System.Double)
-M:AVFoundation.AVFragmentedMovieMinder.Add(AVFoundation.AVFragmentedMovie)
-M:AVFoundation.AVFragmentedMovieMinder.FromMovie(AVFoundation.AVFragmentedMovie,System.Double)
-M:AVFoundation.AVFragmentedMovieMinder.Remove(AVFoundation.AVFragmentedMovie)
-M:AVFoundation.AVMediaDataStorage.#ctor(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVMediaExtensionProperties.Copy(Foundation.NSZone)
-M:AVFoundation.AVMediaSelection.Copy(Foundation.NSZone)
-M:AVFoundation.AVMediaSelection.CriteriaCanBeAppliedAutomaticallyToMediaSelectionGroup(AVFoundation.AVMediaSelectionGroup)
M:AVFoundation.AVMediaSelection.Dispose(System.Boolean)
-M:AVFoundation.AVMediaSelection.GetSelectedMediaOption(AVFoundation.AVMediaSelectionGroup)
-M:AVFoundation.AVMediaSelection.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVMediaSelectionGroup.Copy(Foundation.NSZone)
-M:AVFoundation.AVMediaSelectionGroup.GetMediaSelectionOptionForPropertyList(Foundation.NSObject)
-M:AVFoundation.AVMediaSelectionGroup.MediaSelectionOptions(AVFoundation.AVMediaSelectionOption[],Foundation.NSLocale)
-M:AVFoundation.AVMediaSelectionGroup.MediaSelectionOptions(AVFoundation.AVMediaSelectionOption[],Foundation.NSString[])
-M:AVFoundation.AVMediaSelectionGroup.MediaSelectionOptionsExcludingCharacteristics(AVFoundation.AVMediaSelectionOption[],Foundation.NSString[])
-M:AVFoundation.AVMediaSelectionGroup.MediaSelectionOptionsFilteredAndSorted(AVFoundation.AVMediaSelectionOption[],System.String[])
-M:AVFoundation.AVMediaSelectionGroup.PlayableMediaSelectionOptions(AVFoundation.AVMediaSelectionOption[])
-M:AVFoundation.AVMediaSelectionOption.AssociatedMediaSelectionOptionInMediaSelectionGroup(AVFoundation.AVMediaSelectionGroup)
-M:AVFoundation.AVMediaSelectionOption.Copy(Foundation.NSZone)
-M:AVFoundation.AVMediaSelectionOption.GetDisplayName(Foundation.NSLocale)
-M:AVFoundation.AVMediaSelectionOption.GetMetadataForFormat(System.String)
-M:AVFoundation.AVMediaSelectionOption.HasMediaCharacteristic(System.String)
-M:AVFoundation.AVMetadataBodyObject.Copy(Foundation.NSZone)
-M:AVFoundation.AVMetadataCatBodyObject.Copy(Foundation.NSZone)
-M:AVFoundation.AVMetadataDogBodyObject.Copy(Foundation.NSZone)
-M:AVFoundation.AVMetadataFaceObject.Copy(Foundation.NSZone)
-M:AVFoundation.AVMetadataHumanBodyObject.Copy(Foundation.NSZone)
-M:AVFoundation.AVMetadataHumanFullBodyObject.Copy(Foundation.NSZone)
-M:AVFoundation.AVMetadataItem.Copy(Foundation.NSZone)
-M:AVFoundation.AVMetadataItem.FilterFromPreferredLanguages(AVFoundation.AVMetadataItem[],System.String[])
-M:AVFoundation.AVMetadataItem.FilterWithIdentifier(AVFoundation.AVMetadataItem[],Foundation.NSString)
-M:AVFoundation.AVMetadataItem.FilterWithItemFilter(AVFoundation.AVMetadataItem[],AVFoundation.AVMetadataItemFilter)
-M:AVFoundation.AVMetadataItem.FilterWithKey(AVFoundation.AVMetadataItem[],Foundation.NSObject,System.String)
-M:AVFoundation.AVMetadataItem.FilterWithLocale(AVFoundation.AVMetadataItem[],Foundation.NSLocale)
-M:AVFoundation.AVMetadataItem.GetKeyForIdentifier(Foundation.NSString)
-M:AVFoundation.AVMetadataItem.GetKeySpaceForIdentifier(Foundation.NSString)
-M:AVFoundation.AVMetadataItem.GetMetadataIdentifier(Foundation.NSObject,Foundation.NSString)
-M:AVFoundation.AVMetadataItem.GetMetadataItem(AVFoundation.AVMetadataItem,System.Action{AVFoundation.AVMetadataItemValueRequest})
-M:AVFoundation.AVMetadataItem.LoadValuesAsynchronously(System.String[],System.Action)
M:AVFoundation.AVMetadataItem.LoadValuesTaskAsync(System.String[])
-M:AVFoundation.AVMetadataItem.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVMetadataItem.StatusOfValueForKeyerror(System.String,Foundation.NSError@)
M:AVFoundation.AVMetadataItemValueRequest.Dispose(System.Boolean)
-M:AVFoundation.AVMetadataItemValueRequest.Respond(Foundation.NSError)
-M:AVFoundation.AVMetadataItemValueRequest.Respond(Foundation.NSObject)
M:AVFoundation.AVMetadataObjectTypeExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
-M:AVFoundation.AVMetadataSalientObject.Copy(Foundation.NSZone)
-M:AVFoundation.AVMetricEvent.EncodeTo(Foundation.NSCoder)
-M:AVFoundation.AVMetricEventStream.AddPublisher(AVFoundation.IAVMetricEventStreamPublisher)
-M:AVFoundation.AVMetricEventStream.Create
-M:AVFoundation.AVMetricEventStream.SetSubscriber(AVFoundation.IAVMetricEventStreamSubscriber,CoreFoundation.DispatchQueue)
-M:AVFoundation.AVMetricEventStream.SubscribeTo(ObjCRuntime.Class)
-M:AVFoundation.AVMetricEventStream.SubscribeTo(ObjCRuntime.Class[])
M:AVFoundation.AVMetricEventStream.SubscribeTo(System.Type)
M:AVFoundation.AVMetricEventStream.SubscribeTo(System.Type[])
-M:AVFoundation.AVMetricEventStream.SubscribeToAll
M:AVFoundation.AVMidiChannelPressureEvent.#ctor(System.UInt32,System.UInt32)
M:AVFoundation.AVMidiControlChangeEvent.#ctor(System.UInt32,AVFoundation.AVMidiControlChangeMessageType,System.UInt32)
M:AVFoundation.AVMidiMetaEvent.#ctor(AVFoundation.AVMidiMetaEventType,Foundation.NSData)
@@ -31429,7 +23279,6 @@ M:AVFoundation.AVMidiNoteEvent.#ctor(System.UInt32,System.UInt32,System.UInt32,S
M:AVFoundation.AVMidiPitchBendEvent.#ctor(System.UInt32,System.UInt32)
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)
M:AVFoundation.AVMidiPlayer.PlayAsync
M:AVFoundation.AVMidiPlayer.PrepareToPlay
M:AVFoundation.AVMidiPlayer.Stop
@@ -31450,12 +23299,6 @@ M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaCharacteristic(
M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaCharacteristicAsync(AVFoundation.AVMovie,System.String)
M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaType(AVFoundation.AVMovie,System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaTypeAsync(AVFoundation.AVMovie,System.String)
-M:AVFoundation.AVMovie.#ctor(Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVMovie.#ctor(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVMovie.Copy(Foundation.NSZone)
-M:AVFoundation.AVMovie.FromData(Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVMovie.FromUrl(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVMovie.MutableCopy(Foundation.NSZone)
M:AVFoundation.AVMusicTrack.AddEvent(AVFoundation.AVMusicEvent,System.Double)
M:AVFoundation.AVMusicTrack.ClearEvents(AVFoundation.AVBeatRange)
M:AVFoundation.AVMusicTrack.CopyAndMergeEvents(AVFoundation.AVBeatRange,AVFoundation.AVMusicTrack,System.Double)
@@ -31464,27 +23307,6 @@ M:AVFoundation.AVMusicTrack.CutEvents(AVFoundation.AVBeatRange)
M:AVFoundation.AVMusicTrack.EnumerateEvents(AVFoundation.AVBeatRange,AVFoundation.AVMusicEventEnumerationBlock)
M:AVFoundation.AVMusicTrack.MoveEvents(AVFoundation.AVBeatRange,System.Double)
M:AVFoundation.AVMusicUserEvent.#ctor(Foundation.NSData)
-M:AVFoundation.AVMutableAudioMix.Create
-M:AVFoundation.AVMutableAudioMixInputParameters.Create
-M:AVFoundation.AVMutableAudioMixInputParameters.FromTrack(AVFoundation.AVAssetTrack)
-M:AVFoundation.AVMutableAudioMixInputParameters.SetVolume(System.Single,CoreMedia.CMTime)
-M:AVFoundation.AVMutableAudioMixInputParameters.SetVolumeRamp(System.Single,System.Single,CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableCaption.#ctor(System.String,CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableCaption.RemoveBackgroundColor(Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.RemoveDecoration(Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.RemoveFontStyle(Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.RemoveFontWeight(Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.RemoveRuby(Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.RemoveTextColor(Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.RemoveTextCombine(Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.SetBackgroundColor(CoreGraphics.CGColor,Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.SetDecoration(AVFoundation.AVCaptionDecoration,Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.SetFontStyle(AVFoundation.AVCaptionFontStyle,Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.SetFontWeight(AVFoundation.AVCaptionFontWeight,Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.SetRuby(AVFoundation.AVCaptionRuby,Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.SetTextColor(CoreGraphics.CGColor,Foundation.NSRange)
-M:AVFoundation.AVMutableCaption.SetTextCombine(AVFoundation.AVCaptionTextCombine,Foundation.NSRange)
-M:AVFoundation.AVMutableCaptionRegion.#ctor(System.String)
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.GetTrack(AVFoundation.AVMutableComposition,System.Int32)
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.GetTracks(AVFoundation.AVMutableComposition,AVFoundation.AVMediaCharacteristics)
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.GetTracks(AVFoundation.AVMutableComposition,AVFoundation.AVMediaTypes)
@@ -31496,29 +23318,7 @@ M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.LoadTrac
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.LoadTracksWithMediaCharacteristicAsync(AVFoundation.AVMutableComposition,System.String)
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.LoadTracksWithMediaType(AVFoundation.AVMutableComposition,System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.LoadTracksWithMediaTypeAsync(AVFoundation.AVMutableComposition,System.String)
-M:AVFoundation.AVMutableComposition.AddMutableTrack(System.String,System.Int32)
-M:AVFoundation.AVMutableComposition.AddTracks(Cinematic.CNAssetInfo,System.Int32)
-M:AVFoundation.AVMutableComposition.Create
-M:AVFoundation.AVMutableComposition.CreateMutableTrack(AVFoundation.AVAssetTrack)
-M:AVFoundation.AVMutableComposition.FromOptions(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:AVFoundation.AVMutableComposition.InserEmptyTimeRange(CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableComposition.Insert(CoreMedia.CMTimeRange,AVFoundation.AVAsset,CoreMedia.CMTime,AVFoundation.AVMutableCompositionInsertHandler)
-M:AVFoundation.AVMutableComposition.Insert(CoreMedia.CMTimeRange,AVFoundation.AVAsset,CoreMedia.CMTime,Foundation.NSError@)
M:AVFoundation.AVMutableComposition.InsertAsync(CoreMedia.CMTimeRange,AVFoundation.AVAsset,CoreMedia.CMTime)
-M:AVFoundation.AVMutableComposition.RemoveTimeRange(CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableComposition.RemoveTrack(AVFoundation.AVCompositionTrack)
-M:AVFoundation.AVMutableComposition.ScaleTimeRange(CoreMedia.CMTimeRange,CoreMedia.CMTime)
-M:AVFoundation.AVMutableCompositionTrack.AddTrackAssociation(AVFoundation.AVCompositionTrack,System.String)
-M:AVFoundation.AVMutableCompositionTrack.InsertEmptyTimeRange(CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableCompositionTrack.InsertTimeRange(CoreMedia.CMTimeRange,AVFoundation.AVAssetTrack,CoreMedia.CMTime,Foundation.NSError@)
-M:AVFoundation.AVMutableCompositionTrack.InsertTimeRanges(Foundation.NSValue[],AVFoundation.AVAssetTrack[],CoreMedia.CMTime,Foundation.NSError@)
-M:AVFoundation.AVMutableCompositionTrack.RemoveTimeRange(CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableCompositionTrack.RemoveTrackAssociation(AVFoundation.AVCompositionTrack,System.String)
-M:AVFoundation.AVMutableCompositionTrack.ReplaceFormatDescription(CoreMedia.CMFormatDescription,CoreMedia.CMFormatDescription)
-M:AVFoundation.AVMutableCompositionTrack.ScaleTimeRange(CoreMedia.CMTimeRange,CoreMedia.CMTime)
-M:AVFoundation.AVMutableCompositionTrack.ValidateTrackSegments(AVFoundation.AVCompositionTrackSegment[],Foundation.NSError@)
-M:AVFoundation.AVMutableMediaSelection.SelectMediaOption(AVFoundation.AVMediaSelectionOption,AVFoundation.AVMediaSelectionGroup)
-M:AVFoundation.AVMutableMetadataItem.Create
M:AVFoundation.AVMutableMovie_AVMutableMovieMovieLevelEditing.InsertEmptyTimeRange(AVFoundation.AVMutableMovie,CoreMedia.CMTimeRange)
M:AVFoundation.AVMutableMovie_AVMutableMovieMovieLevelEditing.InsertTimeRange(AVFoundation.AVMutableMovie,CoreMedia.CMTimeRange,AVFoundation.AVAsset,CoreMedia.CMTime,System.Boolean,Foundation.NSError@)
M:AVFoundation.AVMutableMovie_AVMutableMovieMovieLevelEditing.RemoveTimeRange(AVFoundation.AVMutableMovie,CoreMedia.CMTimeRange)
@@ -31532,22 +23332,8 @@ M:AVFoundation.AVMutableMovie_AVMutableMovieTrackLevelEditing.AddMutableTrack(AV
M:AVFoundation.AVMutableMovie_AVMutableMovieTrackLevelEditing.AddMutableTracks(AVFoundation.AVMutableMovie,AVFoundation.AVAssetTrack[],Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:AVFoundation.AVMutableMovie_AVMutableMovieTrackLevelEditing.GetMutableTrack(AVFoundation.AVMutableMovie,AVFoundation.AVAssetTrack)
M:AVFoundation.AVMutableMovie_AVMutableMovieTrackLevelEditing.RemoveTrack(AVFoundation.AVMutableMovie,AVFoundation.AVMovieTrack)
-M:AVFoundation.AVMutableMovie.#ctor(AVFoundation.AVMovie,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
-M:AVFoundation.AVMutableMovie.#ctor(Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
-M:AVFoundation.AVMutableMovie.#ctor(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
-M:AVFoundation.AVMutableMovie.FromData(Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
-M:AVFoundation.AVMutableMovie.FromMovie(AVFoundation.AVMovie,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
-M:AVFoundation.AVMutableMovie.FromUrl(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
-M:AVFoundation.AVMutableMovie.GetChapterMetadataGroups(Foundation.NSLocale,System.String[])
-M:AVFoundation.AVMutableMovie.GetChapterMetadataGroups(System.String[])
-M:AVFoundation.AVMutableMovie.GetMediaSelectionGroup(System.String)
-M:AVFoundation.AVMutableMovie.GetMetadata(System.String)
-M:AVFoundation.AVMutableMovie.GetUnusedTrackId
-M:AVFoundation.AVMutableMovie.LoadTrack(System.Int32,System.Action{AVFoundation.AVMovieTrack,Foundation.NSError})
M:AVFoundation.AVMutableMovie.LoadTrackAsync(System.Int32)
-M:AVFoundation.AVMutableMovie.LoadTracksWithMediaCharacteristic(System.String,System.Action{Foundation.NSArray{AVFoundation.AVMovieTrack},Foundation.NSError})
M:AVFoundation.AVMutableMovie.LoadTracksWithMediaCharacteristicAsync(System.String)
-M:AVFoundation.AVMutableMovie.LoadTracksWithMediaType(System.String,System.Action{Foundation.NSArray{AVFoundation.AVMovieTrack},Foundation.NSError})
M:AVFoundation.AVMutableMovie.LoadTracksWithMediaTypeAsync(System.String)
M:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrack_TrackLevelEditing.InsertEmptyTimeRange(AVFoundation.AVMutableMovieTrack,CoreMedia.CMTimeRange)
M:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrack_TrackLevelEditing.InsertTimeRange(AVFoundation.AVMutableMovieTrack,CoreMedia.CMTimeRange,AVFoundation.AVAssetTrack,CoreMedia.CMTime,System.Boolean,Foundation.NSError@)
@@ -31555,36 +23341,10 @@ M:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrack_TrackLevelEditing.RemoveT
M:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrack_TrackLevelEditing.ScaleTimeRange(AVFoundation.AVMutableMovieTrack,CoreMedia.CMTimeRange,CoreMedia.CMTime)
M:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrackTrackAssociations.AddTrackAssociation(AVFoundation.AVMutableMovieTrack,AVFoundation.AVMovieTrack,System.String)
M:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrackTrackAssociations.RemoveTrackAssociation(AVFoundation.AVMutableMovieTrack,AVFoundation.AVMovieTrack,System.String)
-M:AVFoundation.AVMutableMovieTrack.AppendSampleBuffer(CoreMedia.CMSampleBuffer,CoreMedia.CMTime@,CoreMedia.CMTime@,Foundation.NSError@)
-M:AVFoundation.AVMutableMovieTrack.GetAssociatedTracks(System.String)
-M:AVFoundation.AVMutableMovieTrack.GetMetadata(System.String)
-M:AVFoundation.AVMutableMovieTrack.GetSamplePresentationTime(CoreMedia.CMTime)
-M:AVFoundation.AVMutableMovieTrack.GetSegment(CoreMedia.CMTime)
-M:AVFoundation.AVMutableMovieTrack.HasMediaCharacteristic(System.String)
-M:AVFoundation.AVMutableMovieTrack.InsertMediaTimeRange(CoreMedia.CMTimeRange,CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableMovieTrack.ReplaceFormatDescription(CoreMedia.CMFormatDescription,CoreMedia.CMFormatDescription)
-M:AVFoundation.AVMutableVideoComposition.Create
-M:AVFoundation.AVMutableVideoComposition.Create(AVFoundation.AVAsset,AVFoundation.AVMutableVideoCompositionCreateApplier,AVFoundation.AVMutableVideoCompositionCreateCallback)
-M:AVFoundation.AVMutableVideoComposition.Create(AVFoundation.AVAsset,AVFoundation.AVMutableVideoCompositionCreateCallback)
-M:AVFoundation.AVMutableVideoComposition.Create(AVFoundation.AVAsset,AVFoundation.AVVideoCompositionInstruction,AVFoundation.AVMutableVideoCompositionCreateCallback)
-M:AVFoundation.AVMutableVideoComposition.Create(AVFoundation.AVAsset,AVFoundation.AVVideoCompositionInstruction)
-M:AVFoundation.AVMutableVideoComposition.Create(AVFoundation.AVAsset)
M:AVFoundation.AVMutableVideoComposition.CreateAsync(AVFoundation.AVAsset,AVFoundation.AVMutableVideoCompositionCreateApplier)
M:AVFoundation.AVMutableVideoComposition.CreateAsync(AVFoundation.AVAsset,AVFoundation.AVVideoCompositionInstruction)
M:AVFoundation.AVMutableVideoComposition.CreateAsync(AVFoundation.AVAsset)
-M:AVFoundation.AVMutableVideoComposition.GetVideoComposition(AVFoundation.AVAsset,System.Action{AVFoundation.AVAsynchronousCIImageFilteringRequest})
-M:AVFoundation.AVMutableVideoCompositionInstruction.Create
-M:AVFoundation.AVMutableVideoCompositionLayerInstruction.Create
-M:AVFoundation.AVMutableVideoCompositionLayerInstruction.FromAssetTrack(AVFoundation.AVAssetTrack)
-M:AVFoundation.AVMutableVideoCompositionLayerInstruction.SetCrop(CoreGraphics.CGRect,CoreGraphics.CGRect,CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableVideoCompositionLayerInstruction.SetCrop(CoreGraphics.CGRect,CoreMedia.CMTime)
-M:AVFoundation.AVMutableVideoCompositionLayerInstruction.SetOpacity(System.Single,CoreMedia.CMTime)
-M:AVFoundation.AVMutableVideoCompositionLayerInstruction.SetOpacityRamp(System.Single,System.Single,CoreMedia.CMTimeRange)
-M:AVFoundation.AVMutableVideoCompositionLayerInstruction.SetTransform(CoreGraphics.CGAffineTransform,CoreMedia.CMTime)
-M:AVFoundation.AVMutableVideoCompositionLayerInstruction.SetTransformRamp(CoreGraphics.CGAffineTransform,CoreGraphics.CGAffineTransform,CoreMedia.CMTimeRange)
-M:AVFoundation.AVOutputSettingsAssistant.FromPreset(System.String)
M:AVFoundation.AVParameterEvent.#ctor(System.UInt32,System.UInt32,System.UInt32,System.Single)
-M:AVFoundation.AVPersistableContentKeyRequest.GetPersistableContentKey(Foundation.NSData,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
M:AVFoundation.AVPixelAspectRatio.#ctor(System.IntPtr,System.IntPtr)
M:AVFoundation.AVPixelAspectRatio.Equals(System.Object)
M:AVFoundation.AVPixelAspectRatio.GetHashCode
@@ -31593,53 +23353,13 @@ M:AVFoundation.AVPixelAspectRatio.op_Inequality(AVFoundation.AVPixelAspectRatio,
M:AVFoundation.AVPixelAspectRatio.ToString
M:AVFoundation.AVPixelAspectRatioProperties.#ctor
M:AVFoundation.AVPixelAspectRatioProperties.#ctor(Foundation.NSDictionary)
-M:AVFoundation.AVPlaybackCoordinator.BeginSuspension(System.String)
-M:AVFoundation.AVPlaybackCoordinator.GetExpectedItemTime(CoreMedia.CMTime)
-M:AVFoundation.AVPlaybackCoordinator.GetParticipantLimit(System.String)
-M:AVFoundation.AVPlaybackCoordinator.SetParticipantLimit(System.IntPtr,System.String)
-M:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate.DidIssueBufferingCommand(AVFoundation.AVDelegatingPlaybackCoordinator,AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand,System.Action)
-M:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate.DidIssuePauseCommand(AVFoundation.AVDelegatingPlaybackCoordinator,AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand,System.Action)
-M:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate.DidIssuePlayCommand(AVFoundation.AVDelegatingPlaybackCoordinator,AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand,System.Action)
-M:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate.DidIssueSeekCommand(AVFoundation.AVDelegatingPlaybackCoordinator,AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand,System.Action)
-M:AVFoundation.AVPlayer.#ctor(AVFoundation.AVPlayerItem)
-M:AVFoundation.AVPlayer.#ctor(Foundation.NSUrl)
-M:AVFoundation.AVPlayer.AddBoundaryTimeObserver(Foundation.NSValue[],CoreFoundation.DispatchQueue,System.Action)
-M:AVFoundation.AVPlayer.AddPeriodicTimeObserver(CoreMedia.CMTime,CoreFoundation.DispatchQueue,System.Action{CoreMedia.CMTime})
-M:AVFoundation.AVPlayer.CancelPendingPrerolls
M:AVFoundation.AVPlayer.Dispose(System.Boolean)
-M:AVFoundation.AVPlayer.FromPlayerItem(AVFoundation.AVPlayerItem)
-M:AVFoundation.AVPlayer.FromUrl(Foundation.NSUrl)
-M:AVFoundation.AVPlayer.MediaSelectionCriteriaForMediaCharacteristic(Foundation.NSString)
-M:AVFoundation.AVPlayer.Pause
-M:AVFoundation.AVPlayer.Play
-M:AVFoundation.AVPlayer.PlayImmediatelyAtRate(System.Single)
-M:AVFoundation.AVPlayer.Preroll(System.Single,AVFoundation.AVCompletion)
M:AVFoundation.AVPlayer.PrerollAsync(System.Single)
-M:AVFoundation.AVPlayer.RemoveTimeObserver(Foundation.NSObject)
-M:AVFoundation.AVPlayer.ReplaceCurrentItemWithPlayerItem(AVFoundation.AVPlayerItem)
-M:AVFoundation.AVPlayer.Seek(CoreMedia.CMTime,AVFoundation.AVCompletion)
-M:AVFoundation.AVPlayer.Seek(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime,AVFoundation.AVCompletion)
-M:AVFoundation.AVPlayer.Seek(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime)
-M:AVFoundation.AVPlayer.Seek(CoreMedia.CMTime)
-M:AVFoundation.AVPlayer.Seek(Foundation.NSDate,AVFoundation.AVCompletion)
-M:AVFoundation.AVPlayer.Seek(Foundation.NSDate)
M:AVFoundation.AVPlayer.SeekAsync(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime)
M:AVFoundation.AVPlayer.SeekAsync(CoreMedia.CMTime)
M:AVFoundation.AVPlayer.SeekAsync(Foundation.NSDate)
-M:AVFoundation.AVPlayer.SetMediaSelectionCriteria(AVFoundation.AVPlayerMediaSelectionCriteria,Foundation.NSString)
-M:AVFoundation.AVPlayer.SetRate(System.Single,CoreMedia.CMTime,CoreMedia.CMTime)
-M:AVFoundation.AVPlayerInterstitialEvent.Copy(Foundation.NSZone)
-M:AVFoundation.AVPlayerInterstitialEvent.Create(AVFoundation.AVPlayerItem,CoreMedia.CMTime)
-M:AVFoundation.AVPlayerInterstitialEvent.Create(AVFoundation.AVPlayerItem,Foundation.NSDate)
M:AVFoundation.AVPlayerInterstitialEvent.Dispose(System.Boolean)
-M:AVFoundation.AVPlayerInterstitialEvent.GetPlayerInterstitialEvent(AVFoundation.AVPlayerItem,System.String,CoreMedia.CMTime,AVFoundation.AVPlayerItem[],AVFoundation.AVPlayerInterstitialEventRestrictions,CoreMedia.CMTime,CoreMedia.CMTime,Foundation.NSDictionary)
-M:AVFoundation.AVPlayerInterstitialEvent.GetPlayerInterstitialEvent(AVFoundation.AVPlayerItem,System.String,Foundation.NSDate,AVFoundation.AVPlayerItem[],AVFoundation.AVPlayerInterstitialEventRestrictions,CoreMedia.CMTime,CoreMedia.CMTime,Foundation.NSDictionary)
-M:AVFoundation.AVPlayerInterstitialEventController.#ctor(AVFoundation.AVPlayer)
-M:AVFoundation.AVPlayerInterstitialEventController.CancelCurrentEvent(CoreMedia.CMTime)
-M:AVFoundation.AVPlayerInterstitialEventController.GetInterstitialEventController(AVFoundation.AVPlayer)
-M:AVFoundation.AVPlayerInterstitialEventMonitor.#ctor(AVFoundation.AVPlayer)
M:AVFoundation.AVPlayerInterstitialEventMonitor.Dispose(System.Boolean)
-M:AVFoundation.AVPlayerInterstitialEventMonitor.InterstitialEventMonitorWithPrimaryPlayer(AVFoundation.AVPlayer)
M:AVFoundation.AVPlayerItem_AVPlaybackRestrictions.CancelPlaybackRestrictionsAuthorizationRequest(AVFoundation.AVPlayerItem)
M:AVFoundation.AVPlayerItem_AVPlaybackRestrictions.RequestPlaybackRestrictionsAuthorization(AVFoundation.AVPlayerItem,System.Action{System.Boolean,Foundation.NSError})
M:AVFoundation.AVPlayerItem_AVPlaybackRestrictions.RequestPlaybackRestrictionsAuthorizationAsync(AVFoundation.AVPlayerItem)
@@ -31652,185 +23372,48 @@ M:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent.IsApplicationAuthorized
M:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent.IsAuthorizationRequiredForPlayback(AVFoundation.AVPlayerItem)
M:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent.IsContentAuthorizedForPlayback(AVFoundation.AVPlayerItem)
M:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent.RequestContentAuthorizationAsynchronously(AVFoundation.AVPlayerItem,System.Double,System.Action)
-M:AVFoundation.AVPlayerItem.#ctor(AVFoundation.AVAsset,Foundation.NSString[])
-M:AVFoundation.AVPlayerItem.#ctor(AVFoundation.AVAsset)
-M:AVFoundation.AVPlayerItem.#ctor(Foundation.NSUrl)
-M:AVFoundation.AVPlayerItem.AddMediaDataCollector(AVFoundation.AVPlayerItemMediaDataCollector)
-M:AVFoundation.AVPlayerItem.AddOutput(AVFoundation.AVPlayerItemOutput)
-M:AVFoundation.AVPlayerItem.CancelPendingSeeks
-M:AVFoundation.AVPlayerItem.Copy
-M:AVFoundation.AVPlayerItem.Copy(Foundation.NSZone)
M:AVFoundation.AVPlayerItem.Dispose(System.Boolean)
-M:AVFoundation.AVPlayerItem.FromAsset(AVFoundation.AVAsset,Foundation.NSString[])
-M:AVFoundation.AVPlayerItem.FromAsset(AVFoundation.AVAsset)
-M:AVFoundation.AVPlayerItem.FromUrl(Foundation.NSUrl)
-M:AVFoundation.AVPlayerItem.RemoveMediaDataCollector(AVFoundation.AVPlayerItemMediaDataCollector)
-M:AVFoundation.AVPlayerItem.RemoveOutput(AVFoundation.AVPlayerItemOutput)
-M:AVFoundation.AVPlayerItem.Seek(CoreMedia.CMTime,AVFoundation.AVCompletion)
-M:AVFoundation.AVPlayerItem.Seek(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime,AVFoundation.AVCompletion)
-M:AVFoundation.AVPlayerItem.Seek(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime)
-M:AVFoundation.AVPlayerItem.Seek(CoreMedia.CMTime)
-M:AVFoundation.AVPlayerItem.Seek(Foundation.NSDate,AVFoundation.AVCompletion)
-M:AVFoundation.AVPlayerItem.Seek(Foundation.NSDate)
M:AVFoundation.AVPlayerItem.SeekAsync(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime)
M:AVFoundation.AVPlayerItem.SeekAsync(CoreMedia.CMTime)
M:AVFoundation.AVPlayerItem.SeekAsync(Foundation.NSDate,System.Boolean@)
M:AVFoundation.AVPlayerItem.SeekAsync(Foundation.NSDate)
-M:AVFoundation.AVPlayerItem.SelectedMediaOption(AVFoundation.AVMediaSelectionGroup)
-M:AVFoundation.AVPlayerItem.SelectMediaOption(AVFoundation.AVMediaSelectionOption,AVFoundation.AVMediaSelectionGroup)
-M:AVFoundation.AVPlayerItem.SelectMediaOptionAutomaticallyInMediaSelectionGroup(AVFoundation.AVMediaSelectionGroup)
-M:AVFoundation.AVPlayerItem.StepByCount(System.IntPtr)
-M:AVFoundation.AVPlayerItemAccessLog.Copy(Foundation.NSZone)
-M:AVFoundation.AVPlayerItemAccessLogEvent.Copy(Foundation.NSZone)
M:AVFoundation.AVPlayerItemErrorEventArgs.#ctor(Foundation.NSNotification)
-M:AVFoundation.AVPlayerItemErrorLog.Copy(Foundation.NSZone)
-M:AVFoundation.AVPlayerItemErrorLogEvent.Copy(Foundation.NSZone)
-M:AVFoundation.AVPlayerItemIntegratedTimeline.AddBoundaryTimeObserver(AVFoundation.AVPlayerItemSegment,CoreMedia.CMTime[],CoreFoundation.DispatchQueue,AVFoundation.AVPlayerItemIntegratedTimelineAddBoundaryTimeObserverCallback)
-M:AVFoundation.AVPlayerItemIntegratedTimeline.AddPeriodicTimeObserver(CoreMedia.CMTime,CoreFoundation.DispatchQueue,AVFoundation.AVPlayerItemIntegratedTimelineAddPeriodicTimeObserverCallback)
-M:AVFoundation.AVPlayerItemIntegratedTimeline.RemoveTimeObserver(AVFoundation.IAVPlayerItemIntegratedTimelineObserver)
-M:AVFoundation.AVPlayerItemIntegratedTimeline.SeekToDate(Foundation.NSDate,AVFoundation.AVPlayerItemIntegratedTimelineSeekCallback)
M:AVFoundation.AVPlayerItemIntegratedTimeline.SeekToDateAsync(Foundation.NSDate)
-M:AVFoundation.AVPlayerItemIntegratedTimeline.SeekToTime(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime,AVFoundation.AVPlayerItemIntegratedTimelineSeekCallback)
M:AVFoundation.AVPlayerItemIntegratedTimeline.SeekToTimeAsync(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime)
-M:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot.Map(CoreMedia.CMTime,AVFoundation.AVPlayerItemSegment@,CoreMedia.CMTime@)
-M:AVFoundation.AVPlayerItemLegibleOutput.#ctor(Foundation.NSNumber[])
-M:AVFoundation.AVPlayerItemLegibleOutput.SetDelegate(AVFoundation.IAVPlayerItemLegibleOutputPushDelegate,CoreFoundation.DispatchQueue)
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.#ctor(System.String[],System.String[])
M:AVFoundation.AVPlayerItemMetadataCollector.Dispose(System.Boolean)
-M:AVFoundation.AVPlayerItemMetadataCollector.SetDelegate(AVFoundation.IAVPlayerItemMetadataCollectorPushDelegate,CoreFoundation.DispatchQueue)
-M:AVFoundation.AVPlayerItemMetadataCollectorPushDelegate.DidCollectDateRange(AVFoundation.AVPlayerItemMetadataCollector,AVFoundation.AVDateRangeMetadataGroup[],Foundation.NSIndexSet,Foundation.NSIndexSet)
-M:AVFoundation.AVPlayerItemMetadataOutput.#ctor(Foundation.NSString[])
M:AVFoundation.AVPlayerItemMetadataOutput.Dispose(System.Boolean)
-M:AVFoundation.AVPlayerItemMetadataOutput.SetDelegate(AVFoundation.IAVPlayerItemMetadataOutputPushDelegate,CoreFoundation.DispatchQueue)
M:AVFoundation.AVPlayerItemMetadataOutputPushDelegate_Extensions.DidOutputTimedMetadataGroups(AVFoundation.IAVPlayerItemMetadataOutputPushDelegate,AVFoundation.AVPlayerItemMetadataOutput,AVFoundation.AVTimedMetadataGroup[],AVFoundation.AVPlayerItemTrack)
-M:AVFoundation.AVPlayerItemMetadataOutputPushDelegate.DidOutputTimedMetadataGroups(AVFoundation.AVPlayerItemMetadataOutput,AVFoundation.AVTimedMetadataGroup[],AVFoundation.AVPlayerItemTrack)
-M:AVFoundation.AVPlayerItemMetadataOutputPushDelegate.OutputSequenceWasFlushed(AVFoundation.AVPlayerItemOutput)
-M:AVFoundation.AVPlayerItemOutput.GetItemTime(CoreVideo.CVTimeStamp)
-M:AVFoundation.AVPlayerItemOutput.GetItemTime(System.Double)
-M:AVFoundation.AVPlayerItemOutput.GetItemTime(System.Int64)
M:AVFoundation.AVPlayerItemOutputPullDelegate_Extensions.OutputMediaDataWillChange(AVFoundation.IAVPlayerItemOutputPullDelegate,AVFoundation.AVPlayerItemOutput)
M:AVFoundation.AVPlayerItemOutputPullDelegate_Extensions.OutputSequenceWasFlushed(AVFoundation.IAVPlayerItemOutputPullDelegate,AVFoundation.AVPlayerItemOutput)
-M:AVFoundation.AVPlayerItemOutputPullDelegate.OutputMediaDataWillChange(AVFoundation.AVPlayerItemOutput)
-M:AVFoundation.AVPlayerItemOutputPullDelegate.OutputSequenceWasFlushed(AVFoundation.AVPlayerItemOutput)
M:AVFoundation.AVPlayerItemOutputPushDelegate_Extensions.OutputSequenceWasFlushed(AVFoundation.IAVPlayerItemOutputPushDelegate,AVFoundation.AVPlayerItemOutput)
-M:AVFoundation.AVPlayerItemOutputPushDelegate.OutputSequenceWasFlushed(AVFoundation.AVPlayerItemOutput)
-M:AVFoundation.AVPlayerItemRenderedLegibleOutput.#ctor(CoreGraphics.CGSize)
M:AVFoundation.AVPlayerItemRenderedLegibleOutput.Dispose(System.Boolean)
-M:AVFoundation.AVPlayerItemRenderedLegibleOutput.SetDelegate(AVFoundation.IAVPlayerItemRenderedLegibleOutputPushDelegate,CoreFoundation.DispatchQueue)
-M:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegate.DidOutputRenderedCaptionImages(AVFoundation.AVPlayerItemRenderedLegibleOutput,AVFoundation.AVRenderedCaptionImage[],CoreMedia.CMTime)
-M:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegate.OutputSequenceWasFlushed(AVFoundation.AVPlayerItemOutput)
M:AVFoundation.AVPlayerItemTimeJumpedEventArgs.#ctor(Foundation.NSNotification)
M:AVFoundation.AVPlayerItemVideoOutput.#ctor(AVFoundation.AVPlayerItemVideoOutputSettings)
M:AVFoundation.AVPlayerItemVideoOutput.#ctor(CoreVideo.CVPixelBufferAttributes)
M:AVFoundation.AVPlayerItemVideoOutput.#ctor(Foundation.NSDictionary)
M:AVFoundation.AVPlayerItemVideoOutput.CopyPixelBuffer(CoreMedia.CMTime,CoreMedia.CMTime@)
M:AVFoundation.AVPlayerItemVideoOutput.Dispose(System.Boolean)
-M:AVFoundation.AVPlayerItemVideoOutput.HasNewPixelBufferForItemTime(CoreMedia.CMTime)
-M:AVFoundation.AVPlayerItemVideoOutput.RequestNotificationOfMediaDataChange(System.Double)
-M:AVFoundation.AVPlayerItemVideoOutput.SetDelegate(AVFoundation.IAVPlayerItemOutputPullDelegate,CoreFoundation.DispatchQueue)
-M:AVFoundation.AVPlayerItemVideoOutput.WeakCopyPixelBuffer(CoreMedia.CMTime,CoreMedia.CMTime@)
M:AVFoundation.AVPlayerItemVideoOutputSettings.#ctor
M:AVFoundation.AVPlayerItemVideoOutputSettings.#ctor(Foundation.NSDictionary)
-M:AVFoundation.AVPlayerLayer.CopyDisplayedPixelBuffer
-M:AVFoundation.AVPlayerLayer.FromPlayer(AVFoundation.AVPlayer)
-M:AVFoundation.AVPlayerLooper.#ctor(AVFoundation.AVQueuePlayer,AVFoundation.AVPlayerItem,CoreMedia.CMTimeRange,AVFoundation.AVPlayerLooperItemOrdering)
-M:AVFoundation.AVPlayerLooper.#ctor(AVFoundation.AVQueuePlayer,AVFoundation.AVPlayerItem,CoreMedia.CMTimeRange)
-M:AVFoundation.AVPlayerLooper.DisableLooping
-M:AVFoundation.AVPlayerLooper.FromPlayer(AVFoundation.AVQueuePlayer,AVFoundation.AVPlayerItem,CoreMedia.CMTimeRange)
-M:AVFoundation.AVPlayerLooper.FromPlayer(AVFoundation.AVQueuePlayer,AVFoundation.AVPlayerItem)
-M:AVFoundation.AVPlayerMediaSelectionCriteria.#ctor(AVFoundation.AVMediaCharacteristics[],AVFoundation.AVMediaCharacteristics[],System.String[])
-M:AVFoundation.AVPlayerMediaSelectionCriteria.#ctor(System.String[],Foundation.NSString[])
M:AVFoundation.AVPlayerPlaybackCoordinator.Dispose(System.Boolean)
M:AVFoundation.AVPlayerPlaybackCoordinatorDelegate_Extensions.GetIdentifier(AVFoundation.IAVPlayerPlaybackCoordinatorDelegate,AVFoundation.AVPlayerPlaybackCoordinator,AVFoundation.AVPlayerItem)
M:AVFoundation.AVPlayerPlaybackCoordinatorDelegate_Extensions.GetInterstitialTimeRanges(AVFoundation.IAVPlayerPlaybackCoordinatorDelegate,AVFoundation.AVPlayerPlaybackCoordinator,AVFoundation.AVPlayerItem)
-M:AVFoundation.AVPlayerPlaybackCoordinatorDelegate.GetIdentifier(AVFoundation.AVPlayerPlaybackCoordinator,AVFoundation.AVPlayerItem)
-M:AVFoundation.AVPlayerPlaybackCoordinatorDelegate.GetInterstitialTimeRanges(AVFoundation.AVPlayerPlaybackCoordinator,AVFoundation.AVPlayerItem)
M:AVFoundation.AVPlayerRateDidChangeEventArgs.#ctor(Foundation.NSNotification)
-M:AVFoundation.AVPlayerVideoOutput.#ctor(AVFoundation.AVVideoOutputSpecification)
-M:AVFoundation.AVPlayerVideoOutput.CopyTaggedBufferGroup(CoreMedia.CMTime,CoreMedia.CMTime@,AVFoundation.AVPlayerVideoOutputConfiguration@)
M:AVFoundation.AVPlayerVideoOutputConfiguration.Dispose(System.Boolean)
-M:AVFoundation.AVPortraitEffectsMatte.Create(CoreVideo.CVPixelBuffer,Foundation.NSError@)
-M:AVFoundation.AVPortraitEffectsMatte.Create(Foundation.NSDictionary,Foundation.NSError@)
-M:AVFoundation.AVPortraitEffectsMatte.Create(ImageIO.CGImagePropertyOrientation)
-M:AVFoundation.AVPortraitEffectsMatte.GetDictionaryRepresentation(System.String@)
-M:AVFoundation.AVQueuePlayer.#ctor(AVFoundation.AVPlayerItem[])
-M:AVFoundation.AVQueuePlayer.AdvanceToNextItem
-M:AVFoundation.AVQueuePlayer.CanInsert(AVFoundation.AVPlayerItem,AVFoundation.AVPlayerItem)
-M:AVFoundation.AVQueuePlayer.FromItems(AVFoundation.AVPlayerItem[])
-M:AVFoundation.AVQueuePlayer.InsertItem(AVFoundation.AVPlayerItem,AVFoundation.AVPlayerItem)
-M:AVFoundation.AVQueuePlayer.RemoveAllItems
-M:AVFoundation.AVQueuePlayer.RemoveItem(AVFoundation.AVPlayerItem)
-M:AVFoundation.AVSampleBufferAudioRenderer.Enqueue(CoreMedia.CMSampleBuffer)
-M:AVFoundation.AVSampleBufferAudioRenderer.Flush
-M:AVFoundation.AVSampleBufferAudioRenderer.Flush(CoreMedia.CMTime,System.Action{System.Boolean})
M:AVFoundation.AVSampleBufferAudioRenderer.FlushAsync(CoreMedia.CMTime)
-M:AVFoundation.AVSampleBufferAudioRenderer.RequestMediaData(CoreFoundation.DispatchQueue,System.Action)
-M:AVFoundation.AVSampleBufferAudioRenderer.StopRequestingMediaData
M:AVFoundation.AVSampleBufferDisplayLayer_ProtectedContent.GetOutputObscuredDueToInsufficientExternalProtection(AVFoundation.AVSampleBufferDisplayLayer)
-M:AVFoundation.AVSampleBufferDisplayLayer.Enqueue(CoreMedia.CMSampleBuffer)
-M:AVFoundation.AVSampleBufferDisplayLayer.Flush
-M:AVFoundation.AVSampleBufferDisplayLayer.FlushAndRemoveImage
-M:AVFoundation.AVSampleBufferDisplayLayer.RequestMediaData(CoreFoundation.DispatchQueue,System.Action)
-M:AVFoundation.AVSampleBufferDisplayLayer.StopRequestingMediaData
-M:AVFoundation.AVSampleBufferGenerator.#ctor(AVFoundation.AVAsset,CoreMedia.CMTimebase)
-M:AVFoundation.AVSampleBufferGenerator.CreateSampleBuffer(AVFoundation.AVSampleBufferRequest,AVFoundation.AVSampleBufferGeneratorBatch,Foundation.NSError@)
-M:AVFoundation.AVSampleBufferGenerator.CreateSampleBuffer(AVFoundation.AVSampleBufferRequest,Foundation.NSError@)
-M:AVFoundation.AVSampleBufferGenerator.CreateSampleBuffer(AVFoundation.AVSampleBufferRequest)
-M:AVFoundation.AVSampleBufferGenerator.MakeBatch
-M:AVFoundation.AVSampleBufferGenerator.NotifyOfDataReady(CoreMedia.CMSampleBuffer,System.Action{System.Boolean,Foundation.NSError})
M:AVFoundation.AVSampleBufferGenerator.NotifyOfDataReadyAsync(CoreMedia.CMSampleBuffer)
-M:AVFoundation.AVSampleBufferGeneratorBatch.Cancel
-M:AVFoundation.AVSampleBufferGeneratorBatch.MakeDataReady(AVFoundation.AVSampleBufferGeneratorBatchMakeReadyCallback)
M:AVFoundation.AVSampleBufferGeneratorBatch.MakeDataReadyAsync
-M:AVFoundation.AVSampleBufferRenderSynchronizer.Add(AVFoundation.IAVQueuedSampleBufferRendering)
-M:AVFoundation.AVSampleBufferRenderSynchronizer.AddBoundaryTimeObserver(Foundation.NSValue[],CoreFoundation.DispatchQueue,System.Action)
-M:AVFoundation.AVSampleBufferRenderSynchronizer.AddPeriodicTimeObserver(CoreMedia.CMTime,CoreFoundation.DispatchQueue,System.Action{CoreMedia.CMTime})
-M:AVFoundation.AVSampleBufferRenderSynchronizer.Remove(AVFoundation.IAVQueuedSampleBufferRendering,CoreMedia.CMTime,System.Action{System.Boolean})
M:AVFoundation.AVSampleBufferRenderSynchronizer.RemoveAsync(AVFoundation.IAVQueuedSampleBufferRendering,CoreMedia.CMTime)
-M:AVFoundation.AVSampleBufferRenderSynchronizer.RemoveTimeObserver(Foundation.NSObject)
-M:AVFoundation.AVSampleBufferRenderSynchronizer.SetRate(System.Single,CoreMedia.CMTime,CoreMedia.CMTime)
-M:AVFoundation.AVSampleBufferRenderSynchronizer.SetRate(System.Single,CoreMedia.CMTime)
-M:AVFoundation.AVSampleBufferRequest.#ctor(AVFoundation.AVSampleCursor)
-M:AVFoundation.AVSampleBufferVideoRenderer.CopyDisplayedPixelBuffer
-M:AVFoundation.AVSampleBufferVideoRenderer.Enqueue(CoreMedia.CMSampleBuffer)
-M:AVFoundation.AVSampleBufferVideoRenderer.ExpectMinimumUpcomingSampleBufferPresentationTime(CoreMedia.CMTime)
-M:AVFoundation.AVSampleBufferVideoRenderer.ExpectMonotonicallyIncreasingUpcomingSampleBufferPresentationTimes
-M:AVFoundation.AVSampleBufferVideoRenderer.Flush
-M:AVFoundation.AVSampleBufferVideoRenderer.FlushWithRemovalOfDisplayedImage(System.Boolean,System.Action)
-M:AVFoundation.AVSampleBufferVideoRenderer.LoadVideoPerformanceMetrics(AVFoundation.AVSampleBufferVideoRendererLoadVideoPerformanceMetricsCallback)
M:AVFoundation.AVSampleBufferVideoRenderer.LoadVideoPerformanceMetricsAsync
-M:AVFoundation.AVSampleBufferVideoRenderer.RequestMediaData(CoreFoundation.DispatchQueue,System.Action)
-M:AVFoundation.AVSampleBufferVideoRenderer.ResetUpcomingSampleBufferPresentationTimeExpectations
-M:AVFoundation.AVSampleBufferVideoRenderer.StopRequestingMediaData
-M:AVFoundation.AVSampleCursor.ComparePositionInDecodeOrder(AVFoundation.AVSampleCursor)
-M:AVFoundation.AVSampleCursor.Copy(Foundation.NSZone)
-M:AVFoundation.AVSampleCursor.CopyCurrentSampleFormatDescription
-M:AVFoundation.AVSampleCursor.SamplesWithEarlierDecodeTimeStampsMayHaveLaterPresentationTimeStampsThan(AVFoundation.AVSampleCursor)
-M:AVFoundation.AVSampleCursor.SamplesWithLaterDecodeTimeStampsMayHaveEarlierPresentationTimeStampsThan(AVFoundation.AVSampleCursor)
-M:AVFoundation.AVSampleCursor.StepByDecodeTime(CoreMedia.CMTime,System.Boolean@)
-M:AVFoundation.AVSampleCursor.StepByPresentationTime(CoreMedia.CMTime,System.Boolean@)
-M:AVFoundation.AVSampleCursor.StepInDecodeOrder(System.Int64)
-M:AVFoundation.AVSampleCursor.StepInPresentationOrder(System.Int64)
M:AVFoundation.AVSampleRateEventArgs.#ctor(System.Double)
-M:AVFoundation.AVSemanticSegmentationMatte.ApplyExifOrientation(ImageIO.CGImagePropertyOrientation)
-M:AVFoundation.AVSemanticSegmentationMatte.Create(Foundation.NSString,Foundation.NSDictionary,Foundation.NSError@)
-M:AVFoundation.AVSemanticSegmentationMatte.GetDictionaryRepresentation(System.String@)
-M:AVFoundation.AVSemanticSegmentationMatte.ReplaceSemanticSegmentationMatte(CoreVideo.CVPixelBuffer,Foundation.NSError@)
M:AVFoundation.AVSpeechSynthesisMarker.#ctor(AVFoundation.AVSpeechSynthesisMarkerMark,Foundation.NSRange,System.UIntPtr)
-M:AVFoundation.AVSpeechSynthesisMarker.Copy(Foundation.NSZone)
-M:AVFoundation.AVSpeechSynthesisMarker.EncodeTo(Foundation.NSCoder)
M:AVFoundation.AVSpeechSynthesisProviderAudioUnit.CancelSpeechRequest
M:AVFoundation.AVSpeechSynthesisProviderAudioUnit.SynthesizeSpeechRequest(AVFoundation.AVSpeechSynthesisProviderRequest)
M:AVFoundation.AVSpeechSynthesisProviderRequest.#ctor(System.String,AVFoundation.AVSpeechSynthesisProviderVoice)
-M:AVFoundation.AVSpeechSynthesisProviderRequest.Copy(Foundation.NSZone)
-M:AVFoundation.AVSpeechSynthesisProviderRequest.EncodeTo(Foundation.NSCoder)
M:AVFoundation.AVSpeechSynthesisProviderVoice.#ctor(System.String,System.String,System.String[],System.String[])
-M:AVFoundation.AVSpeechSynthesisProviderVoice.Copy(Foundation.NSZone)
-M:AVFoundation.AVSpeechSynthesisProviderVoice.EncodeTo(Foundation.NSCoder)
M:AVFoundation.AVSpeechSynthesisProviderVoice.UpdateSpeechVoices
-M:AVFoundation.AVSpeechSynthesisVoice.EncodeTo(Foundation.NSCoder)
M:AVFoundation.AVSpeechSynthesisVoice.FromIdentifier(System.String)
M:AVFoundation.AVSpeechSynthesisVoice.FromLanguage(System.String)
M:AVFoundation.AVSpeechSynthesisVoice.GetSpeechVoices
@@ -31875,37 +23458,19 @@ M:AVFoundation.AVSpeechSynthesizerUteranceEventArgs.#ctor(AVFoundation.AVSpeechU
M:AVFoundation.AVSpeechSynthesizerWillSpeakEventArgs.#ctor(Foundation.NSRange,AVFoundation.AVSpeechUtterance)
M:AVFoundation.AVSpeechSynthesizerWillSpeakMarkerEventArgs.#ctor(AVFoundation.AVSpeechSynthesisMarker,AVFoundation.AVSpeechUtterance)
M:AVFoundation.AVSpeechUtterance.#ctor(Foundation.NSAttributedString)
-M:AVFoundation.AVSpeechUtterance.Copy(Foundation.NSZone)
-M:AVFoundation.AVSpeechUtterance.EncodeTo(Foundation.NSCoder)
M:AVFoundation.AVSpeechUtterance.FromSsmlRepresentation(System.String)
M:AVFoundation.AVSpeechUtterance.FromString(Foundation.NSAttributedString)
M:AVFoundation.AVSpeechUtterance.FromString(System.String)
M:AVFoundation.AVStatusEventArgs.#ctor(System.Boolean)
-M:AVFoundation.AVSynchronizedLayer.FromPlayerItem(AVFoundation.AVPlayerItem)
M:AVFoundation.AVTextStyleRule.#ctor(CoreMedia.CMTextMarkupAttributes,System.String)
M:AVFoundation.AVTextStyleRule.#ctor(CoreMedia.CMTextMarkupAttributes)
-M:AVFoundation.AVTextStyleRule.#ctor(Foundation.NSDictionary,System.String)
-M:AVFoundation.AVTextStyleRule.#ctor(Foundation.NSDictionary)
-M:AVFoundation.AVTextStyleRule.Copy(Foundation.NSZone)
-M:AVFoundation.AVTextStyleRule.FromPropertyList(Foundation.NSObject)
M:AVFoundation.AVTextStyleRule.FromTextMarkupAttributes(CoreMedia.CMTextMarkupAttributes,System.String)
M:AVFoundation.AVTextStyleRule.FromTextMarkupAttributes(CoreMedia.CMTextMarkupAttributes)
-M:AVFoundation.AVTextStyleRule.ToPropertyList(AVFoundation.AVTextStyleRule[])
-M:AVFoundation.AVTimedMetadataGroup.#ctor(AVFoundation.AVMetadataItem[],CoreMedia.CMTimeRange)
-M:AVFoundation.AVTimedMetadataGroup.#ctor(CoreMedia.CMSampleBuffer)
-M:AVFoundation.AVTimedMetadataGroup.Copy(Foundation.NSZone)
-M:AVFoundation.AVTimedMetadataGroup.CopyFormatDescription
-M:AVFoundation.AVTimedMetadataGroup.MutableCopy(Foundation.NSZone)
M:AVFoundation.AVUrlAsset.#ctor(Foundation.NSUrl,AVFoundation.AVUrlAssetOptions)
-M:AVFoundation.AVUrlAsset.#ctor(Foundation.NSUrl,Foundation.NSDictionary)
M:AVFoundation.AVUrlAsset.#ctor(Foundation.NSUrl)
-M:AVFoundation.AVUrlAsset.CompatibleTrack(AVFoundation.AVCompositionTrack)
M:AVFoundation.AVUrlAsset.Create(Foundation.NSUrl,AVFoundation.AVUrlAssetOptions)
M:AVFoundation.AVUrlAsset.Create(Foundation.NSUrl)
-M:AVFoundation.AVUrlAsset.DidProvideContentKey(AVFoundation.AVContentKeySession,AVFoundation.AVContentKey)
-M:AVFoundation.AVUrlAsset.FindCompatibleTrack(AVFoundation.AVCompositionTrack,System.Action{AVFoundation.AVAssetTrack,Foundation.NSError})
M:AVFoundation.AVUrlAsset.FindCompatibleTrackAsync(AVFoundation.AVCompositionTrack)
-M:AVFoundation.AVUrlAsset.IsPlayable(System.String)
M:AVFoundation.AVUrlAssetOptions.#ctor
M:AVFoundation.AVUrlAssetOptions.#ctor(Foundation.NSDictionary)
M:AVFoundation.AVUtilities.WithAspectRatio(CoreGraphics.CGRect,CoreGraphics.CGSize)
@@ -31919,56 +23484,19 @@ M:AVFoundation.AVVideoCompositing_Extensions.GetCanConformColorOfSourceFrames(AV
M:AVFoundation.AVVideoCompositing_Extensions.GetSupportsHdrSourceFrames(AVFoundation.IAVVideoCompositing)
M:AVFoundation.AVVideoCompositing_Extensions.GetSupportsWideColorSourceFrames(AVFoundation.IAVVideoCompositing)
M:AVFoundation.AVVideoCompositing_Extensions.PrerollForRendering(AVFoundation.IAVVideoCompositing,AVFoundation.AVVideoCompositionRenderHint)
-M:AVFoundation.AVVideoCompositing.AnticipateRendering(AVFoundation.AVVideoCompositionRenderHint)
-M:AVFoundation.AVVideoCompositing.CancelAllPendingVideoCompositionRequests
-M:AVFoundation.AVVideoCompositing.PrerollForRendering(AVFoundation.AVVideoCompositionRenderHint)
-M:AVFoundation.AVVideoCompositing.RenderContextChanged(AVFoundation.AVVideoCompositionRenderContext)
-M:AVFoundation.AVVideoCompositing.RequiredPixelBufferAttributesForRenderContext
-M:AVFoundation.AVVideoCompositing.SourcePixelBufferAttributes
-M:AVFoundation.AVVideoCompositing.StartVideoCompositionRequest(AVFoundation.AVAsynchronousVideoCompositionRequest)
-M:AVFoundation.AVVideoComposition.Copy(Foundation.NSZone)
-M:AVFoundation.AVVideoComposition.Create(AVFoundation.AVAsset,AVFoundation.AVVideoCompositionCreateApplier,AVFoundation.AVVideoCompositionCreateCallback)
-M:AVFoundation.AVVideoComposition.Create(AVFoundation.AVAsset,AVFoundation.AVVideoCompositionCreateCallback)
M:AVFoundation.AVVideoComposition.CreateAsync(AVFoundation.AVAsset,AVFoundation.AVVideoCompositionCreateApplier)
M:AVFoundation.AVVideoComposition.CreateAsync(AVFoundation.AVAsset)
-M:AVFoundation.AVVideoComposition.CreateVideoComposition(AVFoundation.AVAsset,System.Action{AVFoundation.AVAsynchronousCIImageFilteringRequest})
-M:AVFoundation.AVVideoComposition.DetermineValidity(AVFoundation.AVAsset,CoreMedia.CMTimeRange,AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoCompositionDetermineValidityCallback)
M:AVFoundation.AVVideoComposition.DetermineValidityAsync(AVFoundation.AVAsset,CoreMedia.CMTimeRange,AVFoundation.IAVVideoCompositionValidationHandling)
-M:AVFoundation.AVVideoComposition.FromAssetProperties(AVFoundation.AVAsset)
-M:AVFoundation.AVVideoComposition.IsValid(AVFoundation.AVAssetTrack[],CoreMedia.CMTime,CoreMedia.CMTimeRange,AVFoundation.IAVVideoCompositionValidationHandling)
-M:AVFoundation.AVVideoComposition.IsValidForAsset(AVFoundation.AVAsset,CoreMedia.CMTimeRange,AVFoundation.IAVVideoCompositionValidationHandling)
-M:AVFoundation.AVVideoComposition.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVVideoCompositionCoreAnimationTool.FromComposedVideoFrames(CoreAnimation.CALayer[],CoreAnimation.CALayer)
-M:AVFoundation.AVVideoCompositionCoreAnimationTool.FromLayer(CoreAnimation.CALayer,CoreAnimation.CALayer)
-M:AVFoundation.AVVideoCompositionCoreAnimationTool.FromLayer(CoreAnimation.CALayer,System.Int32)
-M:AVFoundation.AVVideoCompositionInstruction.Copy(Foundation.NSZone)
-M:AVFoundation.AVVideoCompositionInstruction.EncodeTo(Foundation.NSCoder)
-M:AVFoundation.AVVideoCompositionInstruction.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVVideoCompositionLayerInstruction.Copy(Foundation.NSZone)
-M:AVFoundation.AVVideoCompositionLayerInstruction.EncodeTo(Foundation.NSCoder)
-M:AVFoundation.AVVideoCompositionLayerInstruction.GetCrop(CoreMedia.CMTime,CoreGraphics.CGRect@,CoreGraphics.CGRect@,CoreMedia.CMTimeRange@)
-M:AVFoundation.AVVideoCompositionLayerInstruction.GetOpacityRamp(CoreMedia.CMTime,System.Single@,System.Single@,CoreMedia.CMTimeRange@)
-M:AVFoundation.AVVideoCompositionLayerInstruction.GetTransformRamp(CoreMedia.CMTime,CoreGraphics.CGAffineTransform@,CoreGraphics.CGAffineTransform@,CoreMedia.CMTimeRange@)
-M:AVFoundation.AVVideoCompositionLayerInstruction.MutableCopy(Foundation.NSZone)
-M:AVFoundation.AVVideoCompositionRenderContext.CreatePixelBuffer
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)
M:AVFoundation.AVVideoCompositionValidationHandling_Extensions.ShouldContinueValidatingAfterFindingInvalidValueForKey(AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoComposition,System.String)
-M:AVFoundation.AVVideoCompositionValidationHandling.ShouldContinueValidatingAfterFindingEmptyTimeRange(AVFoundation.AVVideoComposition,CoreMedia.CMTimeRange)
-M:AVFoundation.AVVideoCompositionValidationHandling.ShouldContinueValidatingAfterFindingInvalidTimeRangeInInstruction(AVFoundation.AVVideoComposition,AVFoundation.AVVideoCompositionInstruction)
-M:AVFoundation.AVVideoCompositionValidationHandling.ShouldContinueValidatingAfterFindingInvalidTrackIDInInstruction(AVFoundation.AVVideoComposition,AVFoundation.AVVideoCompositionInstruction,AVFoundation.AVVideoCompositionLayerInstruction,AVFoundation.AVAsset)
-M:AVFoundation.AVVideoCompositionValidationHandling.ShouldContinueValidatingAfterFindingInvalidValueForKey(AVFoundation.AVVideoComposition,System.String)
-M:AVFoundation.AVVideoOutputSpecification.#ctor(Foundation.NSObject[])
-M:AVFoundation.AVVideoOutputSpecification.Copy(Foundation.NSZone)
-M:AVFoundation.AVVideoOutputSpecification.SetOutputSettings(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},CoreMedia.CMTagCollection)
M:AVFoundation.AVVideoPixelAspectRatioSettings.#ctor
M:AVFoundation.AVVideoPixelAspectRatioSettings.#ctor(Foundation.NSDictionary)
M:AVFoundation.AVVideoSettingsCompressed.#ctor
M:AVFoundation.AVVideoSettingsCompressed.#ctor(Foundation.NSDictionary)
M:AVFoundation.AVVideoSettingsUncompressed.#ctor
M:AVFoundation.AVVideoSettingsUncompressed.#ctor(Foundation.NSDictionary)
-M:AVFoundation.AVZoomRange.ContainsZoomFactor(System.Runtime.InteropServices.NFloat)
M:AVFoundation.IAVAssetDownloadDelegate.DidCompleteForMediaSelection(Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,AVFoundation.AVMediaSelection)
M:AVFoundation.IAVAssetDownloadDelegate.DidFinishDownloadingToUrl(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl)
M:AVFoundation.IAVAssetDownloadDelegate.DidLoadTimeRange(Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,CoreMedia.CMTimeRange,Foundation.NSValue[],CoreMedia.CMTimeRange,AVFoundation.AVMediaSelection)
@@ -32092,44 +23620,22 @@ M:AVFoundation.RenderingModeChangeNotificationEventArgs.#ctor(Foundation.NSNotif
M:AVFoundation.SpatialPlaybackCapabilitiesChangedEventArgs.#ctor(Foundation.NSNotification)
M:AVKit.AVAudioSession_AVPlaybackRouteSelecting.PrepareRouteSelectionForPlayback(AVFoundation.AVAudioSession,System.Action{System.Boolean,AVKit.AVAudioSessionRouteSelection})
M:AVKit.AVAudioSession_AVPlaybackRouteSelecting.PrepareRouteSelectionForPlaybackAsync(AVFoundation.AVAudioSession)
-M:AVKit.AVCaptureEventInteraction.#ctor(System.Action{AVKit.AVCaptureEvent},System.Action{AVKit.AVCaptureEvent})
-M:AVKit.AVCaptureEventInteraction.#ctor(System.Action{AVKit.AVCaptureEvent})
M:AVKit.AVCaptureEventInteraction.DidMoveToView(UIKit.UIView)
M:AVKit.AVCaptureEventInteraction.Dispose(System.Boolean)
M:AVKit.AVCaptureEventInteraction.WillMoveToView(UIKit.UIView)
M:AVKit.AVCaptureView.#ctor(CoreGraphics.CGRect)
M:AVKit.AVCaptureView.Dispose(System.Boolean)
-M:AVKit.AVCaptureView.SetSession(AVFoundation.AVCaptureSession,System.Boolean,System.Boolean)
-M:AVKit.AVCaptureViewDelegate.StartRecording(AVKit.AVCaptureView,AVFoundation.AVCaptureFileOutput)
M:AVKit.AVContentProposalViewController.#ctor(System.String,Foundation.NSBundle)
-M:AVKit.AVContentProposalViewController.DismissContentProposal(AVFoundation.AVContentProposalAction,System.Boolean,System.Action)
M:AVKit.AVContentProposalViewController.Dispose(System.Boolean)
M:AVKit.AVContinuityDevicePickerViewController.Dispose(System.Boolean)
-M:AVKit.AVContinuityDevicePickerViewControllerDelegate.DidCancel(AVKit.AVContinuityDevicePickerViewController)
-M:AVKit.AVContinuityDevicePickerViewControllerDelegate.DidConnectDevice(AVKit.AVContinuityDevicePickerViewController,AVFoundation.AVContinuityDevice)
-M:AVKit.AVContinuityDevicePickerViewControllerDelegate.DidEndPresenting(AVKit.AVContinuityDevicePickerViewController)
-M:AVKit.AVContinuityDevicePickerViewControllerDelegate.WillBeginPresenting(AVKit.AVContinuityDevicePickerViewController)
M:AVKit.AVCustomRoutingControllerDelegate_Extensions.DidSelectItem(AVKit.IAVCustomRoutingControllerDelegate,AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingActionItem)
M:AVKit.AVCustomRoutingControllerDelegate_Extensions.EventDidTimeOut(AVKit.IAVCustomRoutingControllerDelegate,AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingEvent)
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(CoreMedia.CMTimeRange)
M:AVKit.AVInterstitialTimeRange.Copy(Foundation.NSZone)
M:AVKit.AVInterstitialTimeRange.EncodeTo(Foundation.NSCoder)
-M:AVKit.AVNavigationMarkersGroup.#ctor(System.String,AVFoundation.AVDateRangeMetadataGroup[])
-M:AVKit.AVNavigationMarkersGroup.#ctor(System.String,AVFoundation.AVTimedMetadataGroup[])
-M:AVKit.AVPictureInPictureController.#ctor(AVFoundation.AVPlayerLayer)
-M:AVKit.AVPictureInPictureController.#ctor(AVKit.AVPictureInPictureControllerContentSource)
-M:AVKit.AVPictureInPictureController.CreateStartButton(UIKit.UITraitCollection)
-M:AVKit.AVPictureInPictureController.CreateStopButton(UIKit.UITraitCollection)
M:AVKit.AVPictureInPictureController.Dispose(System.Boolean)
-M:AVKit.AVPictureInPictureController.InvalidatePlaybackState
-M:AVKit.AVPictureInPictureController.StartPictureInPicture
-M:AVKit.AVPictureInPictureController.StopPictureInPicture
-M:AVKit.AVPictureInPictureControllerContentSource.#ctor(AVFoundation.AVPlayerLayer)
-M:AVKit.AVPictureInPictureControllerContentSource.#ctor(AVFoundation.AVSampleBufferDisplayLayer,AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate)
-M:AVKit.AVPictureInPictureControllerContentSource.#ctor(UIKit.UIView,AVKit.AVPictureInPictureVideoCallViewController)
M:AVKit.AVPictureInPictureControllerContentSource.Dispose(System.Boolean)
M:AVKit.AVPictureInPictureControllerDelegate_Extensions.DidStartPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController)
M:AVKit.AVPictureInPictureControllerDelegate_Extensions.DidStopPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController)
@@ -32137,30 +23643,12 @@ M:AVKit.AVPictureInPictureControllerDelegate_Extensions.FailedToStartPictureInPi
M:AVKit.AVPictureInPictureControllerDelegate_Extensions.RestoreUserInterfaceForPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController,System.Action{System.Boolean})
M:AVKit.AVPictureInPictureControllerDelegate_Extensions.WillStartPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController)
M:AVKit.AVPictureInPictureControllerDelegate_Extensions.WillStopPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController)
-M:AVKit.AVPictureInPictureControllerDelegate.DidStartPictureInPicture(AVKit.AVPictureInPictureController)
-M:AVKit.AVPictureInPictureControllerDelegate.DidStopPictureInPicture(AVKit.AVPictureInPictureController)
-M:AVKit.AVPictureInPictureControllerDelegate.FailedToStartPictureInPicture(AVKit.AVPictureInPictureController,Foundation.NSError)
-M:AVKit.AVPictureInPictureControllerDelegate.RestoreUserInterfaceForPictureInPicture(AVKit.AVPictureInPictureController,System.Action{System.Boolean})
-M:AVKit.AVPictureInPictureControllerDelegate.WillStartPictureInPicture(AVKit.AVPictureInPictureController)
-M:AVKit.AVPictureInPictureControllerDelegate.WillStopPictureInPicture(AVKit.AVPictureInPictureController)
M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate_Extensions.ShouldProhibitBackgroundAudioPlayback(AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate,AVKit.AVPictureInPictureController)
-M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate.DidTransitionToRenderSize(AVKit.AVPictureInPictureController,CoreMedia.CMVideoDimensions)
-M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate.GetTimeRange(AVKit.AVPictureInPictureController)
-M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate.IsPlaybackPaused(AVKit.AVPictureInPictureController)
-M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate.SetPlaying(AVKit.AVPictureInPictureController,System.Boolean)
-M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate.ShouldProhibitBackgroundAudioPlayback(AVKit.AVPictureInPictureController)
-M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate.SkipByInterval(AVKit.AVPictureInPictureController,CoreMedia.CMTime,System.Action)
M:AVKit.AVPictureInPictureVideoCallViewController.#ctor(System.String,Foundation.NSBundle)
-M:AVKit.AVPlaybackSpeed.#ctor(System.Single,System.String)
M:AVKit.AVPlayerView.#ctor(CoreGraphics.CGRect)
-M:AVKit.AVPlayerView.BeginTrimming(System.Action{AVKit.AVPlayerViewTrimResult})
M:AVKit.AVPlayerView.Dispose(System.Boolean)
-M:AVKit.AVPlayerView.FlashChapter(System.UIntPtr,System.String)
-M:AVKit.AVPlayerView.SelectSpeed(AVKit.AVPlaybackSpeed)
-M:AVKit.AVPlayerView.SetMagnification(System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint)
M:AVKit.AVPlayerViewController.#ctor(System.String,Foundation.NSBundle)
M:AVKit.AVPlayerViewController.Dispose(System.Boolean)
-M:AVKit.AVPlayerViewController.SelectSpeed(AVKit.AVPlaybackSpeed)
M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidAcceptContentProposal(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,AVFoundation.AVContentProposal)
M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidEndDismissalTransition(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController)
M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidPresentInterstitialTimeRange(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,AVKit.AVInterstitialTimeRange)
@@ -32190,45 +23678,11 @@ M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillResumePlaybackAfterUserNav
M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillStartPictureInPicture(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController)
M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillStopPictureInPicture(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController)
M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillTransitionToVisibilityOfTransportBar(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,System.Boolean,AVKit.IAVPlayerViewControllerAnimationCoordinator)
-M:AVKit.AVPlayerViewControllerDelegate.DidAcceptContentProposal(AVKit.AVPlayerViewController,AVFoundation.AVContentProposal)
-M:AVKit.AVPlayerViewControllerDelegate.DidEndDismissalTransition(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.DidPresentInterstitialTimeRange(AVKit.AVPlayerViewController,AVKit.AVInterstitialTimeRange)
-M:AVKit.AVPlayerViewControllerDelegate.DidRejectContentProposal(AVKit.AVPlayerViewController,AVFoundation.AVContentProposal)
-M:AVKit.AVPlayerViewControllerDelegate.DidSelectExternalSubtitleOptionLanguage(AVKit.AVPlayerViewController,System.String)
-M:AVKit.AVPlayerViewControllerDelegate.DidSelectMediaSelectionOption(AVKit.AVPlayerViewController,AVFoundation.AVMediaSelectionOption,AVFoundation.AVMediaSelectionGroup)
-M:AVKit.AVPlayerViewControllerDelegate.DidStartPictureInPicture(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.DidStopPictureInPicture(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.FailedToStartPictureInPicture(AVKit.AVPlayerViewController,Foundation.NSError)
-M:AVKit.AVPlayerViewControllerDelegate.GetNextChannelInterstitialViewController(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.GetPreviousChannelInterstitialViewController(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.GetTimeToSeekAfterUserNavigated(AVKit.AVPlayerViewController,CoreMedia.CMTime,CoreMedia.CMTime)
-M:AVKit.AVPlayerViewControllerDelegate.RestoreUserInterfaceForFullScreenExit(AVKit.AVPlayerViewController,System.Action{System.Boolean})
-M:AVKit.AVPlayerViewControllerDelegate.RestoreUserInterfaceForPictureInPicture(AVKit.AVPlayerViewController,System.Action{System.Boolean})
-M:AVKit.AVPlayerViewControllerDelegate.ShouldAutomaticallyDismissAtPictureInPictureStart(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.ShouldDismiss(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.ShouldPresentContentProposal(AVKit.AVPlayerViewController,AVFoundation.AVContentProposal)
-M:AVKit.AVPlayerViewControllerDelegate.SkipToNextChannel(AVKit.AVPlayerViewController,System.Action{System.Boolean})
-M:AVKit.AVPlayerViewControllerDelegate.SkipToNextItem(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.SkipToPreviousChannel(AVKit.AVPlayerViewController,System.Action{System.Boolean})
-M:AVKit.AVPlayerViewControllerDelegate.SkipToPreviousItem(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.WillBeginDismissalTransition(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.WillBeginFullScreenPresentation(AVKit.AVPlayerViewController,UIKit.IUIViewControllerTransitionCoordinator)
-M:AVKit.AVPlayerViewControllerDelegate.WillEndFullScreenPresentation(AVKit.AVPlayerViewController,UIKit.IUIViewControllerTransitionCoordinator)
-M:AVKit.AVPlayerViewControllerDelegate.WillPresentInterstitialTimeRange(AVKit.AVPlayerViewController,AVKit.AVInterstitialTimeRange)
-M:AVKit.AVPlayerViewControllerDelegate.WillResumePlaybackAfterUserNavigatedFromTime(AVKit.AVPlayerViewController,CoreMedia.CMTime,CoreMedia.CMTime)
-M:AVKit.AVPlayerViewControllerDelegate.WillStartPictureInPicture(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.WillStopPictureInPicture(AVKit.AVPlayerViewController)
-M:AVKit.AVPlayerViewControllerDelegate.WillTransitionToVisibilityOfTransportBar(AVKit.AVPlayerViewController,System.Boolean,AVKit.IAVPlayerViewControllerAnimationCoordinator)
M:AVKit.AVPlayerViewDelegate_Extensions.DidEnterFullScreen(AVKit.IAVPlayerViewDelegate,AVKit.AVPlayerView)
M:AVKit.AVPlayerViewDelegate_Extensions.DidExitFullScreen(AVKit.IAVPlayerViewDelegate,AVKit.AVPlayerView)
M:AVKit.AVPlayerViewDelegate_Extensions.RestoreUserInterfaceForFullScreenExit(AVKit.IAVPlayerViewDelegate,AVKit.AVPlayerView,System.Action{System.Boolean})
M:AVKit.AVPlayerViewDelegate_Extensions.WillEnterFullScreen(AVKit.IAVPlayerViewDelegate,AVKit.AVPlayerView)
M:AVKit.AVPlayerViewDelegate_Extensions.WillExitFullScreen(AVKit.IAVPlayerViewDelegate,AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewDelegate.DidEnterFullScreen(AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewDelegate.DidExitFullScreen(AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewDelegate.RestoreUserInterfaceForFullScreenExit(AVKit.AVPlayerView,System.Action{System.Boolean})
-M:AVKit.AVPlayerViewDelegate.WillEnterFullScreen(AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewDelegate.WillExitFullScreen(AVKit.AVPlayerView)
M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.DidStart(AVKit.IAVPlayerViewPictureInPictureDelegate,AVKit.AVPlayerView)
M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.DidStop(AVKit.IAVPlayerViewPictureInPictureDelegate,AVKit.AVPlayerView)
M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.FailedToStart(AVKit.IAVPlayerViewPictureInPictureDelegate,AVKit.AVPlayerView,Foundation.NSError)
@@ -32236,22 +23690,11 @@ M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.RestoreUserInterface(AVK
M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.ShouldAutomaticallyDismiss(AVKit.IAVPlayerViewPictureInPictureDelegate,AVKit.AVPlayerView)
M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.WillStart(AVKit.IAVPlayerViewPictureInPictureDelegate,AVKit.AVPlayerView)
M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.WillStop(AVKit.IAVPlayerViewPictureInPictureDelegate,AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewPictureInPictureDelegate.DidStart(AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewPictureInPictureDelegate.DidStop(AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewPictureInPictureDelegate.FailedToStart(AVKit.AVPlayerView,Foundation.NSError)
-M:AVKit.AVPlayerViewPictureInPictureDelegate.RestoreUserInterface(AVKit.AVPlayerView,System.Action{System.Boolean})
-M:AVKit.AVPlayerViewPictureInPictureDelegate.ShouldAutomaticallyDismiss(AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewPictureInPictureDelegate.WillStart(AVKit.AVPlayerView)
-M:AVKit.AVPlayerViewPictureInPictureDelegate.WillStop(AVKit.AVPlayerView)
M:AVKit.AVRoutePickerView.#ctor(CoreGraphics.CGRect)
M:AVKit.AVRoutePickerView.AVRoutePickerViewAppearance.#ctor(System.IntPtr)
M:AVKit.AVRoutePickerView.Dispose(System.Boolean)
-M:AVKit.AVRoutePickerView.GetRoutePickerButtonColor(AVKit.AVRoutePickerViewButtonState)
-M:AVKit.AVRoutePickerView.SetRoutePickerButtonColor(AppKit.NSColor,AVKit.AVRoutePickerViewButtonState)
M:AVKit.AVRoutePickerViewDelegate_Extensions.DidEndPresentingRoutes(AVKit.IAVRoutePickerViewDelegate,AVKit.AVRoutePickerView)
M:AVKit.AVRoutePickerViewDelegate_Extensions.WillBeginPresentingRoutes(AVKit.IAVRoutePickerViewDelegate,AVKit.AVRoutePickerView)
-M:AVKit.AVRoutePickerViewDelegate.DidEndPresentingRoutes(AVKit.AVRoutePickerView)
-M:AVKit.AVRoutePickerViewDelegate.WillBeginPresentingRoutes(AVKit.AVRoutePickerView)
M:AVKit.IAVCaptureViewDelegate.StartRecording(AVKit.AVCaptureView,AVFoundation.AVCaptureFileOutput)
M:AVKit.IAVContinuityDevicePickerViewControllerDelegate.DidCancel(AVKit.AVContinuityDevicePickerViewController)
M:AVKit.IAVContinuityDevicePickerViewControllerDelegate.DidConnectDevice(AVKit.AVContinuityDevicePickerViewController,AVFoundation.AVContinuityDevice)
@@ -32319,10 +23762,6 @@ M:AVKit.IAVRoutePickerViewDelegate.WillBeginPresentingRoutes(AVKit.AVRoutePicker
M:AVKit.PreparingRouteSelectionForPlayback.#ctor(System.Boolean,AVKit.AVAudioSessionRouteSelection)
M:AVKit.UIWindow_AVAdditions.GetAVDisplayManager(UIKit.UIWindow)
M:AVRouting.AVCustomRoutingController.Dispose(System.Boolean)
-M:AVRouting.AVCustomRoutingController.InvalidateAuthorization(AVRouting.AVCustomDeviceRoute)
-M:AVRouting.AVCustomRoutingController.IsRouteActive(AVRouting.AVCustomDeviceRoute)
-M:AVRouting.AVCustomRoutingController.SetActive(System.Boolean,AVRouting.AVCustomDeviceRoute)
-M:AVRouting.AVCustomRoutingPartialIP.#ctor(Foundation.NSData,Foundation.NSData)
M:BackgroundAssets.BAAppExtensionInfo.EncodeTo(Foundation.NSCoder)
M:BackgroundAssets.BADownload.Copy(Foundation.NSZone)
M:BackgroundAssets.BADownload.CopyAsNonEssential
@@ -32382,103 +23821,22 @@ M:BrowserEngineKit.BEAccessibilityTextMarker.Copy(Foundation.NSZone)
M:BrowserEngineKit.BEAccessibilityTextMarker.EncodeTo(Foundation.NSCoder)
M:BrowserEngineKit.BEAccessibilityTextMarkerRange.Copy(Foundation.NSZone)
M:BrowserEngineKit.BEAccessibilityTextMarkerRange.EncodeTo(Foundation.NSCoder)
-M:BrowserEngineKit.BEContextMenuConfiguration.#ctor
-M:BrowserEngineKit.BEContextMenuConfiguration.Fulfill(UIKit.UIContextMenuConfiguration)
-M:BrowserEngineKit.BEDownloadMonitor.#ctor(Foundation.NSUrl,Foundation.NSUrl,Foundation.NSProgress,Foundation.NSData)
-M:BrowserEngineKit.BEDownloadMonitor.BeginMonitoring(BrowserEngineKit.BEDownloadMonitorBeginMonitoringCallback)
M:BrowserEngineKit.BEDownloadMonitor.BeginMonitoringAsync
-M:BrowserEngineKit.BEDownloadMonitor.CreateAccessToken
-M:BrowserEngineKit.BEDownloadMonitor.ResumeMonitoring(Foundation.NSUrl,BrowserEngineKit.BEDownloadMonitorResumeMonitoringCallback)
M:BrowserEngineKit.BEDownloadMonitor.ResumeMonitoringAsync(Foundation.NSUrl)
-M:BrowserEngineKit.BEDownloadMonitor.UseDownloadsFolder(UniformTypeIdentifiers.UTType,BrowserEngineKit.BEDownloadMonitorUseDownloadsFolderCallback)
-M:BrowserEngineKit.BEDragInteraction.#ctor(BrowserEngineKit.IBEDragInteractionDelegate)
M:BrowserEngineKit.BEDragInteraction.Dispose(System.Boolean)
-M:BrowserEngineKit.BEDragInteractionDelegate.GetDragItems(BrowserEngineKit.BEDragInteraction,UIKit.IUIDragSession,CoreGraphics.CGPoint,BrowserEngineKit.BEDragInteractionDelegateGetDragItemsCallback)
-M:BrowserEngineKit.BEDragInteractionDelegate.PrepareDragSession(BrowserEngineKit.BEDragInteraction,UIKit.IUIDragSession,System.Func{System.Boolean})
-M:BrowserEngineKit.BEKeyEntryContext.#ctor(BrowserEngineKit.BEKeyEntry)
-M:BrowserEngineKit.BELayerHierarchy.Create(Foundation.NSError@)
-M:BrowserEngineKit.BELayerHierarchy.Invalidate
-M:BrowserEngineKit.BELayerHierarchyHandle.Create(Foundation.NSObject,Foundation.NSError@)
-M:BrowserEngineKit.BELayerHierarchyHandle.CreateXpcRepresentation
M:BrowserEngineKit.BELayerHierarchyHandle.EncodeTo(Foundation.NSCoder)
-M:BrowserEngineKit.BELayerHierarchyHostingTransactionCoordinator.Add(BrowserEngineKit.BELayerHierarchy)
-M:BrowserEngineKit.BELayerHierarchyHostingTransactionCoordinator.Add(BrowserEngineKit.BELayerHierarchyHostingView)
-M:BrowserEngineKit.BELayerHierarchyHostingTransactionCoordinator.Commit
-M:BrowserEngineKit.BELayerHierarchyHostingTransactionCoordinator.Create(Foundation.NSError@)
-M:BrowserEngineKit.BELayerHierarchyHostingTransactionCoordinator.Create(Foundation.NSObject,Foundation.NSError@)
-M:BrowserEngineKit.BELayerHierarchyHostingTransactionCoordinator.CreateXpcRepresentation
M:BrowserEngineKit.BELayerHierarchyHostingTransactionCoordinator.EncodeTo(Foundation.NSCoder)
M:BrowserEngineKit.BELayerHierarchyHostingView.BELayerHierarchyHostingViewAppearance.#ctor(System.IntPtr)
-M:BrowserEngineKit.BEMediaEnvironment.#ctor(Foundation.NSObject,Foundation.NSError@)
-M:BrowserEngineKit.BEMediaEnvironment.#ctor(Foundation.NSUrl)
-M:BrowserEngineKit.BEMediaEnvironment.Activate(Foundation.NSError@)
-M:BrowserEngineKit.BEMediaEnvironment.CreateXpcRepresentation
-M:BrowserEngineKit.BEMediaEnvironment.MakeCaptureSession(Foundation.NSError@)
-M:BrowserEngineKit.BEMediaEnvironment.Suspend(Foundation.NSError@)
-M:BrowserEngineKit.BENetworkingProcess.Create(System.Action,BrowserEngineKit.BENetworkingProcessCreateCallback)
-M:BrowserEngineKit.BENetworkingProcess.Create(System.String,System.Action,BrowserEngineKit.BENetworkingProcessCreateCallback)
M:BrowserEngineKit.BENetworkingProcess.CreateAsync(System.Action)
-M:BrowserEngineKit.BENetworkingProcess.GrantCapability(BrowserEngineKit.BEProcessCapability,Foundation.NSError@,System.Action)
-M:BrowserEngineKit.BENetworkingProcess.GrantCapability(BrowserEngineKit.BEProcessCapability,Foundation.NSError@)
-M:BrowserEngineKit.BENetworkingProcess.Invalidate
-M:BrowserEngineKit.BENetworkingProcess.MakeLibXpcConnection(Foundation.NSError@)
-M:BrowserEngineKit.BEProcessCapability.CreateBackground
-M:BrowserEngineKit.BEProcessCapability.CreateForeground
-M:BrowserEngineKit.BEProcessCapability.CreateMediaPlaybackAndCaptureProcess(BrowserEngineKit.BEMediaEnvironment)
-M:BrowserEngineKit.BEProcessCapability.CreateSuspended
-M:BrowserEngineKit.BEProcessCapability.Request(Foundation.NSError@)
-M:BrowserEngineKit.BERenderingProcess.Create(System.Action,BrowserEngineKit.BERenderingProcessCreateCallback)
-M:BrowserEngineKit.BERenderingProcess.Create(System.String,System.Action,BrowserEngineKit.BERenderingProcessCreateCallback)
M:BrowserEngineKit.BERenderingProcess.CreateAsync(System.Action)
M:BrowserEngineKit.BERenderingProcess.CreateAsync(System.String,System.Action)
-M:BrowserEngineKit.BERenderingProcess.CreateVisibilityPropagationInteraction
-M:BrowserEngineKit.BERenderingProcess.GrantCapability(BrowserEngineKit.BEProcessCapability,Foundation.NSError@,System.Action)
-M:BrowserEngineKit.BERenderingProcess.GrantCapability(BrowserEngineKit.BEProcessCapability,Foundation.NSError@)
-M:BrowserEngineKit.BERenderingProcess.Invalidate
-M:BrowserEngineKit.BERenderingProcess.MakeLibXpcConnection(Foundation.NSError@)
M:BrowserEngineKit.BEScrollView.BEScrollViewAppearance.#ctor(System.IntPtr)
M:BrowserEngineKit.BEScrollView.Dispose(System.Boolean)
-M:BrowserEngineKit.BEScrollViewDelegate.GetParentScrollView(BrowserEngineKit.BEScrollView)
-M:BrowserEngineKit.BEScrollViewDelegate.HandleScrollUpdate(BrowserEngineKit.BEScrollView,BrowserEngineKit.BEScrollViewScrollUpdate,System.Action{System.Boolean})
-M:BrowserEngineKit.BEScrollViewScrollUpdate.GetLocation(UIKit.UIView)
-M:BrowserEngineKit.BEScrollViewScrollUpdate.GetTranslation(UIKit.UIView)
-M:BrowserEngineKit.BETextDocumentContext.#ctor(Foundation.NSAttributedString,Foundation.NSAttributedString,Foundation.NSAttributedString,Foundation.NSAttributedString,Foundation.NSRange)
-M:BrowserEngineKit.BETextDocumentContext.#ctor(System.String,System.String,System.String,System.String,Foundation.NSRange)
-M:BrowserEngineKit.BETextDocumentContext.AddTextRect(CoreGraphics.CGRect,Foundation.NSRange)
-M:BrowserEngineKit.BETextInputDelegate.DeferReplaceTextActionToSystem(BrowserEngineKit.IBETextInput,Foundation.NSObject)
-M:BrowserEngineKit.BETextInputDelegate.InvalidateTextEntryContext(BrowserEngineKit.IBETextInput)
-M:BrowserEngineKit.BETextInputDelegate.SelectionDidChange(BrowserEngineKit.IBETextInput)
-M:BrowserEngineKit.BETextInputDelegate.SelectionWillChange(BrowserEngineKit.IBETextInput)
-M:BrowserEngineKit.BETextInputDelegate.SetCandidateSuggestions(BrowserEngineKit.IBETextInput,BrowserEngineKit.BETextSuggestion[])
-M:BrowserEngineKit.BETextInputDelegate.ShouldDeferEventHandlingToSystem(BrowserEngineKit.IBETextInput,BrowserEngineKit.BEKeyEntryContext)
-M:BrowserEngineKit.BETextInteraction.AddShortcut(System.String,CoreGraphics.CGRect)
M:BrowserEngineKit.BETextInteraction.DidMoveToView(UIKit.UIView)
-M:BrowserEngineKit.BETextInteraction.DismissEditMenuForSelection
M:BrowserEngineKit.BETextInteraction.Dispose(System.Boolean)
-M:BrowserEngineKit.BETextInteraction.EditabilityChanged
-M:BrowserEngineKit.BETextInteraction.PresentEditMenuForSelection
-M:BrowserEngineKit.BETextInteraction.RefreshKeyboardUI
-M:BrowserEngineKit.BETextInteraction.SelectionBoundaryAdjusted(CoreGraphics.CGPoint,BrowserEngineKit.BESelectionTouchPhase,BrowserEngineKit.BESelectionFlags)
-M:BrowserEngineKit.BETextInteraction.SelectionChangedWithGesture(CoreGraphics.CGPoint,BrowserEngineKit.BEGestureType,UIKit.UIGestureRecognizerState,BrowserEngineKit.BESelectionFlags)
-M:BrowserEngineKit.BETextInteraction.Share(System.String,CoreGraphics.CGRect)
-M:BrowserEngineKit.BETextInteraction.ShowDictionary(System.String,Foundation.NSRange,CoreGraphics.CGRect)
-M:BrowserEngineKit.BETextInteraction.ShowReplacements(System.String)
-M:BrowserEngineKit.BETextInteraction.Translate(System.String,CoreGraphics.CGRect)
-M:BrowserEngineKit.BETextInteraction.TransliterateChinese(System.String)
M:BrowserEngineKit.BETextInteraction.WillMoveToView(UIKit.UIView)
-M:BrowserEngineKit.BETextInteractionDelegate.SystemDidChangeSelection(BrowserEngineKit.BETextInteraction)
-M:BrowserEngineKit.BETextInteractionDelegate.SystemWillChangeSelection(BrowserEngineKit.BETextInteraction)
-M:BrowserEngineKit.BETextSuggestion.#ctor(System.String)
-M:BrowserEngineKit.BEWebAppManifest.#ctor(Foundation.NSData,Foundation.NSUrl)
-M:BrowserEngineKit.BEWebContentProcess.Create(System.Action,BrowserEngineKit.BEWebContentProcessCreateCallback)
-M:BrowserEngineKit.BEWebContentProcess.Create(System.String,System.Action,BrowserEngineKit.BEWebContentProcessCreateCallback)
M:BrowserEngineKit.BEWebContentProcess.CreateAsync(System.Action)
M:BrowserEngineKit.BEWebContentProcess.CreateAsync(System.String,System.Action)
-M:BrowserEngineKit.BEWebContentProcess.CreateVisibilityPropagationInteraction
-M:BrowserEngineKit.BEWebContentProcess.GrantCapability(BrowserEngineKit.BEProcessCapability,Foundation.NSError@,System.Action)
-M:BrowserEngineKit.BEWebContentProcess.GrantCapability(BrowserEngineKit.BEProcessCapability,Foundation.NSError@)
-M:BrowserEngineKit.BEWebContentProcess.Invalidate
-M:BrowserEngineKit.BEWebContentProcess.MakeLibXpcConnection(Foundation.NSError@)
M:BrowserEngineKit.IBEAccessibilityTextMarkerSupport.GetAccessibilityBounds(BrowserEngineKit.BEAccessibilityTextMarkerRange)
M:BrowserEngineKit.IBEAccessibilityTextMarkerSupport.GetAccessibilityContent(BrowserEngineKit.BEAccessibilityTextMarkerRange)
M:BrowserEngineKit.IBEAccessibilityTextMarkerSupport.GetAccessibilityLineEndMarker(BrowserEngineKit.BEAccessibilityTextMarker)
@@ -32591,64 +23949,22 @@ M:BrowserEngineKit.NSObject_BEAccessibility.SetBrowserAccessibilitySortDirection
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)
@@ -32662,28 +23978,6 @@ M:CallKit.CXProviderDelegate_Extensions.PerformSetHeldCallAction(CallKit.ICXProv
M:CallKit.CXProviderDelegate_Extensions.PerformSetMutedCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXSetMutedCallAction)
M:CallKit.CXProviderDelegate_Extensions.PerformStartCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXStartCallAction)
M:CallKit.CXProviderDelegate_Extensions.TimedOutPerformingAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXAction)
-M:CallKit.CXProviderDelegate.DidActivateAudioSession(CallKit.CXProvider,AVFoundation.AVAudioSession)
-M:CallKit.CXProviderDelegate.DidBegin(CallKit.CXProvider)
-M:CallKit.CXProviderDelegate.DidDeactivateAudioSession(CallKit.CXProvider,AVFoundation.AVAudioSession)
-M:CallKit.CXProviderDelegate.DidReset(CallKit.CXProvider)
-M:CallKit.CXProviderDelegate.ExecuteTransaction(CallKit.CXProvider,CallKit.CXTransaction)
-M:CallKit.CXProviderDelegate.PerformAnswerCallAction(CallKit.CXProvider,CallKit.CXAnswerCallAction)
-M:CallKit.CXProviderDelegate.PerformEndCallAction(CallKit.CXProvider,CallKit.CXEndCallAction)
-M:CallKit.CXProviderDelegate.PerformPlayDtmfCallAction(CallKit.CXProvider,CallKit.CXPlayDtmfCallAction)
-M:CallKit.CXProviderDelegate.PerformSetGroupCallAction(CallKit.CXProvider,CallKit.CXSetGroupCallAction)
-M:CallKit.CXProviderDelegate.PerformSetHeldCallAction(CallKit.CXProvider,CallKit.CXSetHeldCallAction)
-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)
@@ -32701,11 +23995,7 @@ M:CallKit.ICXProviderDelegate.PerformSetHeldCallAction(CallKit.CXProvider,CallKi
M:CallKit.ICXProviderDelegate.PerformSetMutedCallAction(CallKit.CXProvider,CallKit.CXSetMutedCallAction)
M:CallKit.ICXProviderDelegate.PerformStartCallAction(CallKit.CXProvider,CallKit.CXStartCallAction)
M:CallKit.ICXProviderDelegate.TimedOutPerformingAction(CallKit.CXProvider,CallKit.CXAction)
-M:CarPlay.CPActionSheetTemplate.#ctor(System.String,System.String,CarPlay.CPAlertAction[])
-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.CPAlertTemplate.#ctor(System.String[],CarPlay.CPAlertAction[])
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
@@ -32713,16 +24003,12 @@ M:CarPlay.CPApplicationDelegate.ApplicationSignificantTimeChange(UIKit.UIApplica
M:CarPlay.CPApplicationDelegate.ChangedStatusBarFrame(UIKit.UIApplication,CoreGraphics.CGRect)
M:CarPlay.CPApplicationDelegate.ContinueUserActivity(UIKit.UIApplication,Foundation.NSUserActivity,UIKit.UIApplicationRestorationHandler)
M:CarPlay.CPApplicationDelegate.DidChangeStatusBarOrientation(UIKit.UIApplication,UIKit.UIInterfaceOrientation)
-M:CarPlay.CPApplicationDelegate.DidConnectCarInterfaceController(UIKit.UIApplication,CarPlay.CPInterfaceController,CarPlay.CPWindow)
M:CarPlay.CPApplicationDelegate.DidDecodeRestorableState(UIKit.UIApplication,Foundation.NSCoder)
M:CarPlay.CPApplicationDelegate.DidDiscardSceneSessions(UIKit.UIApplication,Foundation.NSSet{UIKit.UISceneSession})
-M:CarPlay.CPApplicationDelegate.DidDisconnectCarInterfaceController(UIKit.UIApplication,CarPlay.CPInterfaceController,CarPlay.CPWindow)
M:CarPlay.CPApplicationDelegate.DidEnterBackground(UIKit.UIApplication)
M:CarPlay.CPApplicationDelegate.DidFailToContinueUserActivity(UIKit.UIApplication,System.String,Foundation.NSError)
M:CarPlay.CPApplicationDelegate.DidReceiveRemoteNotification(UIKit.UIApplication,Foundation.NSDictionary,System.Action{UIKit.UIBackgroundFetchResult})
M:CarPlay.CPApplicationDelegate.DidRegisterUserNotificationSettings(UIKit.UIApplication,UIKit.UIUserNotificationSettings)
-M:CarPlay.CPApplicationDelegate.DidSelectManeuver(UIKit.UIApplication,CarPlay.CPManeuver)
-M:CarPlay.CPApplicationDelegate.DidSelectNavigationAlert(UIKit.UIApplication,CarPlay.CPNavigationAlert)
M:CarPlay.CPApplicationDelegate.FailedToRegisterForRemoteNotifications(UIKit.UIApplication,Foundation.NSError)
M:CarPlay.CPApplicationDelegate.FinishedLaunching(UIKit.UIApplication,Foundation.NSDictionary)
M:CarPlay.CPApplicationDelegate.FinishedLaunching(UIKit.UIApplication)
@@ -32767,125 +24053,43 @@ 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.EncodeTo(Foundation.NSCoder)
-M:CarPlay.CPBarButton.#ctor(CarPlay.CPBarButtonType,System.Action{CarPlay.CPBarButton})
-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(System.String,UIKit.UIImage)
M:CarPlay.CPContact.EncodeTo(Foundation.NSCoder)
-M:CarPlay.CPContactCallButton.#ctor(System.Action{CarPlay.CPButton})
-M:CarPlay.CPContactCallButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton})
-M:CarPlay.CPContactDirectionsButton.#ctor(System.Action{CarPlay.CPButton})
-M:CarPlay.CPContactDirectionsButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton})
-M:CarPlay.CPContactMessageButton.#ctor(System.String)
-M:CarPlay.CPContactMessageButton.#ctor(UIKit.UIImage,System.Action{CarPlay.CPButton})
-M:CarPlay.CPContactTemplate.#ctor(CarPlay.CPContact)
-M:CarPlay.CPDashboardButton.#ctor(System.String[],System.String[],UIKit.UIImage,System.Action{CarPlay.CPDashboardButton})
M:CarPlay.CPDashboardButton.EncodeTo(Foundation.NSCoder)
-M:CarPlay.CPGridButton.#ctor(System.String[],UIKit.UIImage,System.Action{CarPlay.CPGridButton})
M:CarPlay.CPGridButton.EncodeTo(Foundation.NSCoder)
-M:CarPlay.CPGridTemplate.#ctor(System.String,CarPlay.CPGridButton[])
-M:CarPlay.CPGridTemplate.UpdateGridButtons(CarPlay.CPGridButton[])
-M:CarPlay.CPGridTemplate.UpdateTitle(System.String)
-M:CarPlay.CPImageSet.#ctor(UIKit.UIImage,UIKit.UIImage)
M:CarPlay.CPImageSet.EncodeTo(Foundation.NSCoder)
-M:CarPlay.CPInformationItem.#ctor(System.String,System.String)
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.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)
M:CarPlay.CPInstrumentClusterControllerDelegate_Extensions.DidZoomOut(CarPlay.ICPInstrumentClusterControllerDelegate,CarPlay.CPInstrumentClusterController)
-M:CarPlay.CPInstrumentClusterControllerDelegate.DidChangeCompassSetting(CarPlay.CPInstrumentClusterController,CarPlay.CPInstrumentClusterSetting)
-M:CarPlay.CPInstrumentClusterControllerDelegate.DidChangeSpeedLimitSetting(CarPlay.CPInstrumentClusterController,CarPlay.CPInstrumentClusterSetting)
-M:CarPlay.CPInstrumentClusterControllerDelegate.DidConnectWindow(UIKit.UIWindow)
-M:CarPlay.CPInstrumentClusterControllerDelegate.DidDisconnectWindow(UIKit.UIWindow)
-M:CarPlay.CPInstrumentClusterControllerDelegate.DidZoomIn(CarPlay.CPInstrumentClusterController)
-M:CarPlay.CPInstrumentClusterControllerDelegate.DidZoomOut(CarPlay.CPInstrumentClusterController)
-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.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.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)
M:CarPlay.CPInterfaceControllerDelegate_Extensions.TemplateWillAppear(CarPlay.ICPInterfaceControllerDelegate,CarPlay.CPTemplate,System.Boolean)
M:CarPlay.CPInterfaceControllerDelegate_Extensions.TemplateWillDisappear(CarPlay.ICPInterfaceControllerDelegate,CarPlay.CPTemplate,System.Boolean)
-M:CarPlay.CPInterfaceControllerDelegate.TemplateDidAppear(CarPlay.CPTemplate,System.Boolean)
-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.#ctor(Foundation.NSMeasurement{Foundation.NSUnitAngle}[],Foundation.NSMeasurement{Foundation.NSUnitAngle}[],System.Boolean)
-M:CarPlay.CPLane.#ctor(Foundation.NSMeasurement{Foundation.NSUnitAngle}[])
M:CarPlay.CPLane.Copy(Foundation.NSZone)
M:CarPlay.CPLane.EncodeTo(Foundation.NSCoder)
M:CarPlay.CPLaneGuidance.Copy(Foundation.NSZone)
M:CarPlay.CPLaneGuidance.EncodeTo(Foundation.NSCoder)
-M:CarPlay.CPListImageRowItem.#ctor(System.String,UIKit.UIImage[],System.String[])
-M:CarPlay.CPListImageRowItem.#ctor(System.String,UIKit.UIImage[])
-M:CarPlay.CPListImageRowItem.UpdateImages(UIKit.UIImage[])
-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.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.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.EncodeTo(Foundation.NSCoder)
-M:CarPlay.CPListSection.GetIndex(CarPlay.ICPListTemplateItem)
-M:CarPlay.CPListSection.GetItem(System.UIntPtr)
-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.GetIndexPath(CarPlay.ICPListTemplateItem)
-M:CarPlay.CPListTemplate.UpdateSections(CarPlay.CPListSection[])
-M:CarPlay.CPListTemplateDelegate.DidSelectListItem(CarPlay.CPListTemplate,CarPlay.CPListItem,System.Action)
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.CPMapTemplate.DismissNavigationAlertAsync(System.Boolean)
-M:CarPlay.CPMapTemplate.DismissPanningInterface(System.Boolean)
M:CarPlay.CPMapTemplate.Dispose(System.Boolean)
-M:CarPlay.CPMapTemplate.HideTripPreviews
-M:CarPlay.CPMapTemplate.PresentNavigationAlert(CarPlay.CPNavigationAlert,System.Boolean)
-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)
@@ -32907,98 +24111,30 @@ M:CarPlay.CPMapTemplateDelegate_Extensions.StartedTrip(CarPlay.ICPMapTemplateDel
M:CarPlay.CPMapTemplateDelegate_Extensions.WillDismissNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext)
M:CarPlay.CPMapTemplateDelegate_Extensions.WillDismissPanningInterface(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate)
M:CarPlay.CPMapTemplateDelegate_Extensions.WillShowNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert)
-M:CarPlay.CPMapTemplateDelegate.DidBeginPanGesture(CarPlay.CPMapTemplate)
-M:CarPlay.CPMapTemplateDelegate.DidCancelNavigation(CarPlay.CPMapTemplate)
-M:CarPlay.CPMapTemplateDelegate.DidDismissNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext)
-M:CarPlay.CPMapTemplateDelegate.DidDismissPanningInterface(CarPlay.CPMapTemplate)
-M:CarPlay.CPMapTemplateDelegate.DidEndPanGesture(CarPlay.CPMapTemplate,CoreGraphics.CGPoint)
-M:CarPlay.CPMapTemplateDelegate.DidShowNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert)
-M:CarPlay.CPMapTemplateDelegate.DidShowPanningInterface(CarPlay.CPMapTemplate)
-M:CarPlay.CPMapTemplateDelegate.DidUpdatePanGesture(CarPlay.CPMapTemplate,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:CarPlay.CPMapTemplateDelegate.GetDisplayStyle(CarPlay.CPMapTemplate,CarPlay.CPManeuver)
-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)
-M:CarPlay.CPMapTemplateDelegate.StartedTrip(CarPlay.CPMapTemplate,CarPlay.CPTrip,CarPlay.CPRouteChoice)
-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(UIKit.UIImage)
-M:CarPlay.CPMessageComposeBarButton.Create
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)
-M:CarPlay.CPMessageListItemTrailingConfiguration.#ctor(CarPlay.CPMessageTrailingItem,UIKit.UIImage)
-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.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.PauseTrip(CarPlay.CPTripPauseReason,System.String,UIKit.UIColor)
-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(System.Action{CarPlay.CPNowPlayingButton})
-M:CarPlay.CPNowPlayingButton.#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(System.Action{CarPlay.CPNowPlayingButton})
-M:CarPlay.CPNowPlayingPlaybackRateButton.#ctor(System.Action{CarPlay.CPNowPlayingButton})
-M:CarPlay.CPNowPlayingRepeatButton.#ctor(System.Action{CarPlay.CPNowPlayingButton})
-M:CarPlay.CPNowPlayingShuffleButton.#ctor(System.Action{CarPlay.CPNowPlayingButton})
-M:CarPlay.CPNowPlayingTemplate.AddObserver(CarPlay.ICPNowPlayingTemplateObserver)
-M:CarPlay.CPNowPlayingTemplate.RemoveObserver(CarPlay.ICPNowPlayingTemplateObserver)
-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(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.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.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)
-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.Dispose(System.Boolean)
M:CarPlay.CPSearchTemplateDelegate_Extensions.SearchButtonPressed(CarPlay.ICPSearchTemplateDelegate,CarPlay.CPSearchTemplate)
-M:CarPlay.CPSearchTemplateDelegate.SearchButtonPressed(CarPlay.CPSearchTemplate)
-M:CarPlay.CPSearchTemplateDelegate.SelectedResult(CarPlay.CPSearchTemplate,CarPlay.CPListItem,System.Action)
-M:CarPlay.CPSearchTemplateDelegate.UpdatedSearchText(CarPlay.CPSearchTemplate,System.String,CarPlay.CPSearchTemplateDelegateUpdateHandler)
-M:CarPlay.CPSessionConfiguration.#ctor(CarPlay.ICPSessionConfigurationDelegate)
M:CarPlay.CPSessionConfiguration.Dispose(System.Boolean)
M:CarPlay.CPSessionConfigurationDelegate_Extensions.ContentStyleChanged(CarPlay.ICPSessionConfigurationDelegate,CarPlay.CPSessionConfiguration,CarPlay.CPContentStyle)
M:CarPlay.CPSessionConfigurationDelegate_Extensions.LimitedUserInterfacesChanged(CarPlay.ICPSessionConfigurationDelegate,CarPlay.CPSessionConfiguration,CarPlay.CPLimitableUserInterface)
-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.Dispose(System.Boolean)
-M:CarPlay.CPTabBarTemplate.SelectTemplate(CarPlay.CPTemplate)
-M:CarPlay.CPTabBarTemplate.SelectTemplate(System.IntPtr)
-M:CarPlay.CPTabBarTemplate.UpdateTemplates(CarPlay.CPTemplate[])
-M:CarPlay.CPTabBarTemplateDelegate.DidSelectTemplate(CarPlay.CPTabBarTemplate,CarPlay.CPTemplate)
M:CarPlay.CPTemplate.EncodeTo(Foundation.NSCoder)
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)
M:CarPlay.CPTemplateApplicationDashboardSceneDelegate.ContinueUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
M:CarPlay.CPTemplateApplicationDashboardSceneDelegate.DidBecomeActive(UIKit.UIScene)
-M:CarPlay.CPTemplateApplicationDashboardSceneDelegate.DidConnectDashboardController(CarPlay.CPTemplateApplicationDashboardScene,CarPlay.CPDashboardController,UIKit.UIWindow)
M:CarPlay.CPTemplateApplicationDashboardSceneDelegate.DidDisconnect(UIKit.UIScene)
-M:CarPlay.CPTemplateApplicationDashboardSceneDelegate.DidDisconnectDashboardController(CarPlay.CPTemplateApplicationDashboardScene,CarPlay.CPDashboardController,UIKit.UIWindow)
M:CarPlay.CPTemplateApplicationDashboardSceneDelegate.DidEnterBackground(UIKit.UIScene)
M:CarPlay.CPTemplateApplicationDashboardSceneDelegate.DidFailToContinueUserActivity(UIKit.UIScene,System.String,Foundation.NSError)
M:CarPlay.CPTemplateApplicationDashboardSceneDelegate.DidUpdateUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
@@ -33013,12 +24149,9 @@ M:CarPlay.CPTemplateApplicationInstrumentClusterScene.#ctor(UIKit.UISceneSession
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate_Extensions.ContentStyleDidChange(CarPlay.ICPTemplateApplicationInstrumentClusterSceneDelegate,UIKit.UIUserInterfaceStyle)
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate_Extensions.DidConnectInstrumentClusterController(CarPlay.ICPTemplateApplicationInstrumentClusterSceneDelegate,CarPlay.CPTemplateApplicationInstrumentClusterScene,CarPlay.CPInstrumentClusterController)
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate_Extensions.DidDisconnectInstrumentClusterController(CarPlay.ICPTemplateApplicationInstrumentClusterSceneDelegate,CarPlay.CPTemplateApplicationInstrumentClusterScene,CarPlay.CPInstrumentClusterController)
-M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.ContentStyleDidChange(UIKit.UIUserInterfaceStyle)
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.ContinueUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.DidBecomeActive(UIKit.UIScene)
-M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.DidConnectInstrumentClusterController(CarPlay.CPTemplateApplicationInstrumentClusterScene,CarPlay.CPInstrumentClusterController)
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.DidDisconnect(UIKit.UIScene)
-M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.DidDisconnectInstrumentClusterController(CarPlay.CPTemplateApplicationInstrumentClusterScene,CarPlay.CPInstrumentClusterController)
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.DidEnterBackground(UIKit.UIScene)
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.DidFailToContinueUserActivity(UIKit.UIScene,System.String,Foundation.NSError)
M:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate.DidUpdateUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
@@ -33037,18 +24170,11 @@ M:CarPlay.CPTemplateApplicationSceneDelegate_Extensions.DidDisconnect(CarPlay.IC
M:CarPlay.CPTemplateApplicationSceneDelegate_Extensions.DidDisconnect(CarPlay.ICPTemplateApplicationSceneDelegate,CarPlay.CPTemplateApplicationScene,CarPlay.CPInterfaceController)
M:CarPlay.CPTemplateApplicationSceneDelegate_Extensions.DidSelect(CarPlay.ICPTemplateApplicationSceneDelegate,CarPlay.CPTemplateApplicationScene,CarPlay.CPManeuver)
M:CarPlay.CPTemplateApplicationSceneDelegate_Extensions.DidSelect(CarPlay.ICPTemplateApplicationSceneDelegate,CarPlay.CPTemplateApplicationScene,CarPlay.CPNavigationAlert)
-M:CarPlay.CPTemplateApplicationSceneDelegate.ContentStyleDidChange(UIKit.UIUserInterfaceStyle)
M:CarPlay.CPTemplateApplicationSceneDelegate.ContinueUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
M:CarPlay.CPTemplateApplicationSceneDelegate.DidBecomeActive(UIKit.UIScene)
-M:CarPlay.CPTemplateApplicationSceneDelegate.DidConnect(CarPlay.CPTemplateApplicationScene,CarPlay.CPInterfaceController,CarPlay.CPWindow)
-M:CarPlay.CPTemplateApplicationSceneDelegate.DidConnect(CarPlay.CPTemplateApplicationScene,CarPlay.CPInterfaceController)
-M:CarPlay.CPTemplateApplicationSceneDelegate.DidDisconnect(CarPlay.CPTemplateApplicationScene,CarPlay.CPInterfaceController,CarPlay.CPWindow)
-M:CarPlay.CPTemplateApplicationSceneDelegate.DidDisconnect(CarPlay.CPTemplateApplicationScene,CarPlay.CPInterfaceController)
M:CarPlay.CPTemplateApplicationSceneDelegate.DidDisconnect(UIKit.UIScene)
M:CarPlay.CPTemplateApplicationSceneDelegate.DidEnterBackground(UIKit.UIScene)
M:CarPlay.CPTemplateApplicationSceneDelegate.DidFailToContinueUserActivity(UIKit.UIScene,System.String,Foundation.NSError)
-M:CarPlay.CPTemplateApplicationSceneDelegate.DidSelect(CarPlay.CPTemplateApplicationScene,CarPlay.CPManeuver)
-M:CarPlay.CPTemplateApplicationSceneDelegate.DidSelect(CarPlay.CPTemplateApplicationScene,CarPlay.CPNavigationAlert)
M:CarPlay.CPTemplateApplicationSceneDelegate.DidUpdateUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
M:CarPlay.CPTemplateApplicationSceneDelegate.GetStateRestorationActivity(UIKit.UIScene)
M:CarPlay.CPTemplateApplicationSceneDelegate.OpenUrlContexts(UIKit.UIScene,Foundation.NSSet{UIKit.UIOpenUrlContext})
@@ -33057,18 +24183,10 @@ M:CarPlay.CPTemplateApplicationSceneDelegate.WillConnect(UIKit.UIScene,UIKit.UIS
M:CarPlay.CPTemplateApplicationSceneDelegate.WillContinueUserActivity(UIKit.UIScene,System.String)
M:CarPlay.CPTemplateApplicationSceneDelegate.WillEnterForeground(UIKit.UIScene)
M:CarPlay.CPTemplateApplicationSceneDelegate.WillResignActive(UIKit.UIScene)
-M:CarPlay.CPTextButton.#ctor(System.String,CarPlay.CPTextButtonStyle,System.Action{CarPlay.CPTextButton})
-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.CPTrip.#ctor(MapKit.MKMapItem,MapKit.MKMapItem,CarPlay.CPRouteChoice[])
M:CarPlay.CPTrip.EncodeTo(Foundation.NSCoder)
-M:CarPlay.CPTripPreviewTextConfiguration.#ctor(System.String,System.String,System.String)
M:CarPlay.CPTripPreviewTextConfiguration.EncodeTo(Foundation.NSCoder)
-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(CoreGraphics.CGRect)
M:CarPlay.CPWindow.CPWindowAppearance.#ctor(System.IntPtr)
M:CarPlay.CPWindow.Dispose(System.Boolean)
@@ -33150,208 +24268,68 @@ M:CFNetwork.CFHTTPMessage.SetHeaderFieldValue(System.String,System.String)
M:CFNetwork.CFHTTPStream.GetFinalRequest
M:CFNetwork.CFHTTPStream.GetResponseHeader
M:CFNetwork.CFHTTPStream.SetProxy(CoreFoundation.CFProxySettings)
-M:Cinematic.CNAssetInfo.CheckIfCinematic(AVFoundation.AVAsset,System.Action{System.Boolean})
M:Cinematic.CNAssetInfo.CheckIfCinematicAsync(AVFoundation.AVAsset)
-M:Cinematic.CNAssetInfo.LoadFromAsset(AVFoundation.AVAsset,System.Action{Cinematic.CNAssetInfo,Foundation.NSError})
M:Cinematic.CNAssetInfo.LoadFromAssetAsync(AVFoundation.AVAsset)
M:Cinematic.CNBoundsPrediction.Copy(Foundation.NSZone)
M:Cinematic.CNBoundsPrediction.MutableCopy(Foundation.NSZone)
-M:Cinematic.CNCompositionInfo.InsertTimeRange(CoreMedia.CMTimeRange,Cinematic.CNAssetInfo,CoreMedia.CMTime,Foundation.NSError@)
-M:Cinematic.CNCustomDetectionTrack.#ctor(Cinematic.CNDetection[],System.Boolean)
M:Cinematic.CNDecision.#ctor(CoreMedia.CMTime,System.Int64,System.Boolean,Cinematic.CNDecisionIdentifierType)
M:Cinematic.CNDecision.Copy(Foundation.NSZone)
-M:Cinematic.CNDetection.#ctor(CoreMedia.CMTime,Cinematic.CNDetectionType,CoreGraphics.CGRect,System.Single)
-M:Cinematic.CNDetection.AccessibilityLabelForDetectionType(Cinematic.CNDetectionType)
M:Cinematic.CNDetection.Copy(Foundation.NSZone)
-M:Cinematic.CNDetection.DisparityInNormalizedRect(CoreGraphics.CGRect,CoreVideo.CVPixelBuffer,Cinematic.CNDetectionType,System.Single)
-M:Cinematic.CNDetection.IsValidDetectionGroupId(System.Int64)
-M:Cinematic.CNDetection.IsValidDetectionId(System.Int64)
M:Cinematic.CNDetectionTrack.Copy(Foundation.NSZone)
-M:Cinematic.CNDetectionTrack.GetDetectionAtOrBeforeTime(CoreMedia.CMTime)
-M:Cinematic.CNDetectionTrack.GetDetectionNearestTime(CoreMedia.CMTime)
-M:Cinematic.CNDetectionTrack.GetDetectionsInTimeRange(CoreMedia.CMTimeRange)
-M:Cinematic.CNFixedDetectionTrack.#ctor(Cinematic.CNDetection)
-M:Cinematic.CNFixedDetectionTrack.#ctor(System.Single)
-M:Cinematic.CNObjectTracker.#ctor(Metal.IMTLCommandQueue)
-M:Cinematic.CNObjectTracker.ContinueTracking(CoreMedia.CMTime,CoreVideo.CVPixelBuffer,CoreVideo.CVPixelBuffer)
-M:Cinematic.CNObjectTracker.FindObject(CoreGraphics.CGPoint,CoreVideo.CVPixelBuffer)
-M:Cinematic.CNObjectTracker.ResetDetectionTrack
-M:Cinematic.CNObjectTracker.StartTracking(CoreMedia.CMTime,CoreGraphics.CGRect,CoreVideo.CVPixelBuffer,CoreVideo.CVPixelBuffer)
-M:Cinematic.CNRenderingSession.#ctor(Metal.IMTLCommandQueue,Cinematic.CNRenderingSessionAttributes,CoreGraphics.CGAffineTransform,Cinematic.CNRenderingQuality)
-M:Cinematic.CNRenderingSession.EncodeRender(Metal.IMTLCommandBuffer,Cinematic.CNRenderingSessionFrameAttributes,CoreVideo.CVPixelBuffer,CoreVideo.CVPixelBuffer,CoreVideo.CVPixelBuffer)
-M:Cinematic.CNRenderingSession.EncodeRender(Metal.IMTLCommandBuffer,Cinematic.CNRenderingSessionFrameAttributes,CoreVideo.CVPixelBuffer,CoreVideo.CVPixelBuffer,Metal.IMTLTexture,Metal.IMTLTexture)
-M:Cinematic.CNRenderingSession.EncodeRender(Metal.IMTLCommandBuffer,Cinematic.CNRenderingSessionFrameAttributes,CoreVideo.CVPixelBuffer,CoreVideo.CVPixelBuffer,Metal.IMTLTexture)
-M:Cinematic.CNRenderingSessionAttributes.Load(AVFoundation.AVAsset,System.Action{Cinematic.CNRenderingSessionAttributes,Foundation.NSError})
M:Cinematic.CNRenderingSessionAttributes.LoadAsync(AVFoundation.AVAsset)
-M:Cinematic.CNRenderingSessionFrameAttributes.#ctor(AVFoundation.AVTimedMetadataGroup,Cinematic.CNRenderingSessionAttributes)
-M:Cinematic.CNRenderingSessionFrameAttributes.#ctor(CoreMedia.CMSampleBuffer,Cinematic.CNRenderingSessionAttributes)
M:Cinematic.CNRenderingSessionFrameAttributes.Copy(Foundation.NSZone)
M:Cinematic.CNRenderingSessionFrameAttributes.MutableCopy(Foundation.NSZone)
-M:Cinematic.CNScript.AddDetectionTrack(Cinematic.CNDetectionTrack)
-M:Cinematic.CNScript.AddUserDecision(Cinematic.CNDecision)
-M:Cinematic.CNScript.GetBaseDecisions(CoreMedia.CMTimeRange)
-M:Cinematic.CNScript.GetChangesTrimmed(CoreMedia.CMTimeRange)
-M:Cinematic.CNScript.GetDecision(CoreMedia.CMTime,CoreMedia.CMTime)
-M:Cinematic.CNScript.GetDecisionAfterTime(CoreMedia.CMTime)
-M:Cinematic.CNScript.GetDecisionBeforeTime(CoreMedia.CMTime)
-M:Cinematic.CNScript.GetDecisions(CoreMedia.CMTimeRange)
-M:Cinematic.CNScript.GetDetectionTrack(Cinematic.CNDecision)
-M:Cinematic.CNScript.GetDetectionTrackForId(System.Int64)
-M:Cinematic.CNScript.GetFrame(CoreMedia.CMTime,CoreMedia.CMTime)
-M:Cinematic.CNScript.GetFrames(CoreMedia.CMTimeRange)
-M:Cinematic.CNScript.GetPrimaryDecision(CoreMedia.CMTime)
-M:Cinematic.CNScript.GetSecondaryDecision(CoreMedia.CMTime)
-M:Cinematic.CNScript.GetTimeRangeOfTransitionAfterDecision(Cinematic.CNDecision)
-M:Cinematic.CNScript.GetTimeRangeOfTransitionBeforeDecision(Cinematic.CNDecision)
-M:Cinematic.CNScript.GetUserDecisions(CoreMedia.CMTimeRange)
-M:Cinematic.CNScript.Load(AVFoundation.AVAsset,Cinematic.CNScriptChanges,Foundation.NSProgress,System.Action{Cinematic.CNScript,Foundation.NSError})
M:Cinematic.CNScript.LoadAsync(AVFoundation.AVAsset,Cinematic.CNScriptChanges,Foundation.NSProgress)
-M:Cinematic.CNScript.Reload(Cinematic.CNScriptChanges)
-M:Cinematic.CNScript.RemoveAllUserDecisions
-M:Cinematic.CNScript.RemoveDetectionTrack(Cinematic.CNDetectionTrack)
-M:Cinematic.CNScript.RemoveUserDecision(Cinematic.CNDecision)
-M:Cinematic.CNScriptChanges.#ctor(Foundation.NSData)
M:Cinematic.CNScriptFrame.Copy(Foundation.NSZone)
-M:Cinematic.CNScriptFrame.GetBestDetectionForGroupId(System.Int64)
-M:Cinematic.CNScriptFrame.GetDetectionForId(System.Int64)
-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.CKAcceptSharesOperation.#ctor
-M:CloudKit.CKAcceptSharesOperation.#ctor(CloudKit.CKShareMetadata[])
-M:CloudKit.CKAllowedSharingOptions.#ctor(CloudKit.CKSharingParticipantPermissionOption,CloudKit.CKSharingParticipantAccessOption)
M:CloudKit.CKAllowedSharingOptions.Copy(Foundation.NSZone)
M:CloudKit.CKAllowedSharingOptions.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKAsset.#ctor(Foundation.NSUrl)
M:CloudKit.CKAsset.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKContainer.AcceptShareMetadata(CloudKit.CKShareMetadata,System.Action{CloudKit.CKShare,Foundation.NSError})
M:CloudKit.CKContainer.AcceptShareMetadataAsync(CloudKit.CKShareMetadata)
-M:CloudKit.CKContainer.AddOperation(CloudKit.CKOperation)
-M:CloudKit.CKContainer.DiscoverAllIdentities(System.Action{CloudKit.CKUserIdentity[],Foundation.NSError})
M:CloudKit.CKContainer.DiscoverAllIdentitiesAsync
-M:CloudKit.CKContainer.DiscoverUserIdentity(CloudKit.CKRecordID,System.Action{CloudKit.CKUserIdentity,Foundation.NSError})
M:CloudKit.CKContainer.DiscoverUserIdentityAsync(CloudKit.CKRecordID)
-M:CloudKit.CKContainer.DiscoverUserIdentityWithEmailAddress(System.String,System.Action{CloudKit.CKUserIdentity,Foundation.NSError})
M:CloudKit.CKContainer.DiscoverUserIdentityWithEmailAddressAsync(System.String)
-M:CloudKit.CKContainer.DiscoverUserIdentityWithPhoneNumber(System.String,System.Action{CloudKit.CKUserIdentity,Foundation.NSError})
M:CloudKit.CKContainer.DiscoverUserIdentityWithPhoneNumberAsync(System.String)
-M:CloudKit.CKContainer.FetchAllLongLivedOperationIDs(System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSOperation},Foundation.NSError})
M:CloudKit.CKContainer.FetchAllLongLivedOperationIDsAsync
-M:CloudKit.CKContainer.FetchLongLivedOperation(System.String[],System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSOperation},Foundation.NSError})
M:CloudKit.CKContainer.FetchLongLivedOperationAsync(System.String[])
-M:CloudKit.CKContainer.FetchShareMetadata(Foundation.NSUrl,System.Action{CloudKit.CKShareMetadata,Foundation.NSError})
M:CloudKit.CKContainer.FetchShareMetadataAsync(Foundation.NSUrl)
-M:CloudKit.CKContainer.FetchShareParticipant(CloudKit.CKRecordID,System.Action{CloudKit.CKShareParticipant,Foundation.NSError})
M:CloudKit.CKContainer.FetchShareParticipantAsync(CloudKit.CKRecordID)
-M:CloudKit.CKContainer.FetchShareParticipantWithEmailAddress(System.String,System.Action{CloudKit.CKShareParticipant,Foundation.NSError})
M:CloudKit.CKContainer.FetchShareParticipantWithEmailAddressAsync(System.String)
-M:CloudKit.CKContainer.FetchShareParticipantWithPhoneNumber(System.String,System.Action{CloudKit.CKShareParticipant,Foundation.NSError})
M:CloudKit.CKContainer.FetchShareParticipantWithPhoneNumberAsync(System.String)
-M:CloudKit.CKContainer.FetchUserRecordId(System.Action{CloudKit.CKRecordID,Foundation.NSError})
M:CloudKit.CKContainer.FetchUserRecordIdAsync
-M:CloudKit.CKContainer.FromIdentifier(System.String)
-M:CloudKit.CKContainer.GetAccountStatus(System.Action{CloudKit.CKAccountStatus,Foundation.NSError})
M:CloudKit.CKContainer.GetAccountStatusAsync
-M:CloudKit.CKContainer.GetDatabase(CloudKit.CKDatabaseScope)
-M:CloudKit.CKContainer.RequestApplicationPermission(CloudKit.CKApplicationPermissions,System.Action{CloudKit.CKApplicationPermissionStatus,Foundation.NSError})
M:CloudKit.CKContainer.RequestApplicationPermissionAsync(CloudKit.CKApplicationPermissions)
-M:CloudKit.CKContainer.StatusForApplicationPermission(CloudKit.CKApplicationPermissions,System.Action{CloudKit.CKApplicationPermissionStatus,Foundation.NSError})
M:CloudKit.CKContainer.StatusForApplicationPermissionAsync(CloudKit.CKApplicationPermissions)
-M:CloudKit.CKDatabase.AddOperation(CloudKit.CKDatabaseOperation)
-M:CloudKit.CKDatabase.DeleteRecord(CloudKit.CKRecordID,System.Action{CloudKit.CKRecordID,Foundation.NSError})
M:CloudKit.CKDatabase.DeleteRecordAsync(CloudKit.CKRecordID)
-M:CloudKit.CKDatabase.DeleteRecordZone(CloudKit.CKRecordZoneID,System.Action{CloudKit.CKRecordZoneID,Foundation.NSError})
M:CloudKit.CKDatabase.DeleteRecordZoneAsync(CloudKit.CKRecordZoneID)
-M:CloudKit.CKDatabase.DeleteSubscription(System.String,CloudKit.CKDatabaseDeleteSubscriptionHandler)
M:CloudKit.CKDatabase.DeleteSubscriptionAsync(System.String)
-M:CloudKit.CKDatabase.FetchAllRecordZones(System.Action{CloudKit.CKRecordZone[],Foundation.NSError})
M:CloudKit.CKDatabase.FetchAllRecordZonesAsync
-M:CloudKit.CKDatabase.FetchAllSubscriptions(System.Action{CloudKit.CKSubscription[],Foundation.NSError})
M:CloudKit.CKDatabase.FetchAllSubscriptionsAsync
-M:CloudKit.CKDatabase.FetchRecord(CloudKit.CKRecordID,System.Action{CloudKit.CKRecord,Foundation.NSError})
M:CloudKit.CKDatabase.FetchRecordAsync(CloudKit.CKRecordID)
-M:CloudKit.CKDatabase.FetchRecordZone(CloudKit.CKRecordZoneID,System.Action{CloudKit.CKRecordZone,Foundation.NSError})
M:CloudKit.CKDatabase.FetchRecordZoneAsync(CloudKit.CKRecordZoneID)
-M:CloudKit.CKDatabase.FetchSubscription(System.String,System.Action{CloudKit.CKSubscription,Foundation.NSError})
M:CloudKit.CKDatabase.FetchSubscriptionAsync(System.String)
-M:CloudKit.CKDatabase.PerformQuery(CloudKit.CKQuery,CloudKit.CKRecordZoneID,System.Action{CloudKit.CKRecord[],Foundation.NSError})
M:CloudKit.CKDatabase.PerformQueryAsync(CloudKit.CKQuery,CloudKit.CKRecordZoneID)
-M:CloudKit.CKDatabase.SaveRecord(CloudKit.CKRecord,System.Action{CloudKit.CKRecord,Foundation.NSError})
M:CloudKit.CKDatabase.SaveRecordAsync(CloudKit.CKRecord)
-M:CloudKit.CKDatabase.SaveRecordZone(CloudKit.CKRecordZone,System.Action{CloudKit.CKRecordZone,Foundation.NSError})
M:CloudKit.CKDatabase.SaveRecordZoneAsync(CloudKit.CKRecordZone)
-M:CloudKit.CKDatabase.SaveSubscription(CloudKit.CKSubscription,System.Action{CloudKit.CKSubscription,Foundation.NSError})
M:CloudKit.CKDatabase.SaveSubscriptionAsync(CloudKit.CKSubscription)
-M:CloudKit.CKDatabaseSubscription.#ctor
-M:CloudKit.CKDatabaseSubscription.#ctor(System.String)
M:CloudKit.CKDatabaseSubscription.Copy(Foundation.NSZone)
M:CloudKit.CKDatabaseSubscription.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKDiscoverAllUserIdentitiesOperation.#ctor
-M:CloudKit.CKDiscoverUserIdentitiesOperation.#ctor
-M:CloudKit.CKDiscoverUserIdentitiesOperation.#ctor(CloudKit.CKUserIdentityLookupInfo[])
-M:CloudKit.CKFetchDatabaseChangesOperation.#ctor
-M:CloudKit.CKFetchDatabaseChangesOperation.#ctor(CloudKit.CKServerChangeToken)
M:CloudKit.CKFetchNotificationChangesOperation.#ctor
M:CloudKit.CKFetchNotificationChangesOperation.#ctor(CloudKit.CKServerChangeToken)
M:CloudKit.CKFetchNotificationChangesOperation.#ctor(Foundation.NSObjectFlag)
M:CloudKit.CKFetchNotificationChangesOperation.#ctor(ObjCRuntime.NativeHandle)
-M:CloudKit.CKFetchRecordChangesOperation.#ctor
-M:CloudKit.CKFetchRecordChangesOperation.#ctor(CloudKit.CKRecordZoneID,CloudKit.CKServerChangeToken)
-M:CloudKit.CKFetchRecordsOperation.#ctor(CloudKit.CKRecordID[])
-M:CloudKit.CKFetchRecordsOperation.FetchCurrentUserRecordOperation
M:CloudKit.CKFetchRecordZoneChangesConfiguration.Copy(Foundation.NSZone)
M:CloudKit.CKFetchRecordZoneChangesConfiguration.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKFetchRecordZoneChangesOperation.#ctor
-M:CloudKit.CKFetchRecordZoneChangesOperation.#ctor(CloudKit.CKRecordZoneID[],Foundation.NSDictionary{CloudKit.CKRecordZoneID,CloudKit.CKFetchRecordZoneChangesConfiguration})
-M:CloudKit.CKFetchRecordZoneChangesOperation.#ctor(CloudKit.CKRecordZoneID[],Foundation.NSDictionary{CloudKit.CKRecordZoneID,CloudKit.CKFetchRecordZoneChangesOptions})
M:CloudKit.CKFetchRecordZoneChangesOptions.Copy(Foundation.NSZone)
M:CloudKit.CKFetchRecordZoneChangesOptions.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKFetchRecordZonesOperation.#ctor(CloudKit.CKRecordZoneID[])
-M:CloudKit.CKFetchRecordZonesOperation.FetchAllRecordZonesOperation
-M:CloudKit.CKFetchShareMetadataOperation.#ctor
-M:CloudKit.CKFetchShareMetadataOperation.#ctor(Foundation.NSUrl[])
-M:CloudKit.CKFetchShareParticipantsOperation.#ctor
-M:CloudKit.CKFetchShareParticipantsOperation.#ctor(CloudKit.CKUserIdentityLookupInfo[])
-M:CloudKit.CKFetchSubscriptionsOperation.#ctor
-M:CloudKit.CKFetchSubscriptionsOperation.#ctor(System.String[])
-M:CloudKit.CKFetchSubscriptionsOperation.FetchAllSubscriptionsOperation
-M:CloudKit.CKFetchWebAuthTokenOperation.#ctor
-M:CloudKit.CKFetchWebAuthTokenOperation.#ctor(System.String)
-M:CloudKit.CKLocationSortDescriptor.#ctor(System.String,CoreLocation.CLLocation)
M:CloudKit.CKLocationSortDescriptor.EncodeTo(Foundation.NSCoder)
M:CloudKit.CKMarkNotificationsReadOperation.#ctor(CloudKit.CKNotificationID[])
M:CloudKit.CKMarkNotificationsReadOperation.#ctor(Foundation.NSObjectFlag)
@@ -33360,127 +24338,62 @@ M:CloudKit.CKModifyBadgeOperation.#ctor
M:CloudKit.CKModifyBadgeOperation.#ctor(Foundation.NSObjectFlag)
M:CloudKit.CKModifyBadgeOperation.#ctor(ObjCRuntime.NativeHandle)
M:CloudKit.CKModifyBadgeOperation.#ctor(System.UIntPtr)
-M:CloudKit.CKModifyRecordsOperation.#ctor(CloudKit.CKRecord[],CloudKit.CKRecordID[])
-M:CloudKit.CKModifyRecordZonesOperation.#ctor(CloudKit.CKRecordZone[],CloudKit.CKRecordZoneID[])
-M:CloudKit.CKModifySubscriptionsOperation.#ctor
-M:CloudKit.CKModifySubscriptionsOperation.#ctor(CloudKit.CKSubscription[],System.String[])
M:CloudKit.CKNotification.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKNotification.FromRemoteNotificationDictionary(Foundation.NSDictionary)
M:CloudKit.CKNotificationID.Copy(Foundation.NSZone)
M:CloudKit.CKNotificationID.EncodeTo(Foundation.NSCoder)
M:CloudKit.CKNotificationInfo.Copy(Foundation.NSZone)
M:CloudKit.CKNotificationInfo.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKOperation.#ctor
M:CloudKit.CKOperationConfiguration.Copy(Foundation.NSZone)
M:CloudKit.CKOperationConfiguration.EncodeTo(Foundation.NSCoder)
M:CloudKit.CKOperationGroup.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKQuery.#ctor(System.String,Foundation.NSPredicate)
M:CloudKit.CKQuery.Copy(Foundation.NSZone)
M:CloudKit.CKQuery.EncodeTo(Foundation.NSCoder)
M:CloudKit.CKQueryCursor.Copy(Foundation.NSZone)
M:CloudKit.CKQueryCursor.EncodeTo(Foundation.NSCoder)
M:CloudKit.CKQueryNotification.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKQueryOperation.#ctor(CloudKit.CKQuery)
-M:CloudKit.CKQueryOperation.#ctor(CloudKit.CKQueryCursor)
-M:CloudKit.CKQuerySubscription.#ctor(System.String,Foundation.NSPredicate,CloudKit.CKQuerySubscriptionOptions)
-M:CloudKit.CKQuerySubscription.#ctor(System.String,Foundation.NSPredicate,System.String,CloudKit.CKQuerySubscriptionOptions)
M:CloudKit.CKQuerySubscription.Copy(Foundation.NSZone)
M:CloudKit.CKQuerySubscription.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKRecord.#ctor(System.String,CloudKit.CKRecordID)
-M:CloudKit.CKRecord.#ctor(System.String,CloudKit.CKRecordZoneID)
-M:CloudKit.CKRecord.#ctor(System.String)
-M:CloudKit.CKRecord.AllKeys
-M:CloudKit.CKRecord.AllTokens
-M:CloudKit.CKRecord.ChangedKeys
M:CloudKit.CKRecord.Copy(Foundation.NSZone)
-M:CloudKit.CKRecord.EncodeSystemFields(Foundation.NSCoder)
M:CloudKit.CKRecord.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKRecord.SetParent(CloudKit.CKRecord)
-M:CloudKit.CKRecord.SetParent(CloudKit.CKRecordID)
-M:CloudKit.CKRecordID.#ctor(System.String,CloudKit.CKRecordZoneID)
-M:CloudKit.CKRecordID.#ctor(System.String)
M:CloudKit.CKRecordID.Copy(Foundation.NSZone)
M:CloudKit.CKRecordID.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKRecordZone.#ctor(CloudKit.CKRecordZoneID)
-M:CloudKit.CKRecordZone.#ctor(System.String)
M:CloudKit.CKRecordZone.Copy(Foundation.NSZone)
-M:CloudKit.CKRecordZone.DefaultRecordZone
M:CloudKit.CKRecordZone.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKRecordZoneID.#ctor(System.String,System.String)
M:CloudKit.CKRecordZoneID.Copy(Foundation.NSZone)
M:CloudKit.CKRecordZoneID.EncodeTo(Foundation.NSCoder)
M:CloudKit.CKRecordZoneNotification.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKRecordZoneSubscription.#ctor(CloudKit.CKRecordZoneID,System.String)
-M:CloudKit.CKRecordZoneSubscription.#ctor(CloudKit.CKRecordZoneID)
M:CloudKit.CKRecordZoneSubscription.Copy(Foundation.NSZone)
M:CloudKit.CKRecordZoneSubscription.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKReference.#ctor(CloudKit.CKRecord,CloudKit.CKReferenceAction)
-M:CloudKit.CKReference.#ctor(CloudKit.CKRecordID,CloudKit.CKReferenceAction)
M:CloudKit.CKReference.Copy(Foundation.NSZone)
M:CloudKit.CKReference.EncodeTo(Foundation.NSCoder)
M:CloudKit.CKServerChangeToken.Copy(Foundation.NSZone)
M:CloudKit.CKServerChangeToken.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKShare.#ctor(CloudKit.CKRecord,CloudKit.CKRecordID)
-M:CloudKit.CKShare.#ctor(CloudKit.CKRecord)
-M:CloudKit.CKShare.#ctor(CloudKit.CKRecordZoneID)
-M:CloudKit.CKShare.Add(CloudKit.CKShareParticipant)
-M:CloudKit.CKShare.Remove(CloudKit.CKShareParticipant)
M:CloudKit.CKShareMetadata.Copy(Foundation.NSZone)
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.CKSubscription.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKSyncEngine.#ctor(CloudKit.CKSyncEngineConfiguration)
-M:CloudKit.CKSyncEngine.CancelOperations(System.Action)
M:CloudKit.CKSyncEngine.CancelOperationsAsync
-M:CloudKit.CKSyncEngine.FetchChanges(CloudKit.CKSyncEngineFetchChangesOptions,System.Action{Foundation.NSError})
-M:CloudKit.CKSyncEngine.FetchChanges(System.Action{Foundation.NSError})
M:CloudKit.CKSyncEngine.FetchChangesAsync
M:CloudKit.CKSyncEngine.FetchChangesAsync(CloudKit.CKSyncEngineFetchChangesOptions)
-M:CloudKit.CKSyncEngine.SendChanges(CloudKit.CKSyncEngineSendChangesOptions,System.Action{Foundation.NSError})
-M:CloudKit.CKSyncEngine.SendChanges(System.Action{Foundation.NSError})
M:CloudKit.CKSyncEngine.SendChangesAsync
M:CloudKit.CKSyncEngine.SendChangesAsync(CloudKit.CKSyncEngineSendChangesOptions)
-M:CloudKit.CKSyncEngineConfiguration.#ctor(CloudKit.CKDatabase,CloudKit.CKSyncEngineStateSerialization,CloudKit.ICKSyncEngineDelegate)
M:CloudKit.CKSyncEngineConfiguration.Dispose(System.Boolean)
M:CloudKit.CKSyncEngineDelegate_Extensions.SyncEngine(CloudKit.ICKSyncEngineDelegate,CloudKit.CKSyncEngine,CloudKit.CKSyncEngineFetchChangesContext)
-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.CKSyncEngineFetchChangesOptions.#ctor(CloudKit.CKSyncEngineFetchChangesScope)
M:CloudKit.CKSyncEngineFetchChangesOptions.Copy(Foundation.NSZone)
M:CloudKit.CKSyncEngineFetchChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean)
-M:CloudKit.CKSyncEngineFetchChangesScope.Contains(CloudKit.CKRecordZoneID)
M:CloudKit.CKSyncEngineFetchChangesScope.Copy(Foundation.NSZone)
-M:CloudKit.CKSyncEnginePendingRecordZoneChange.#ctor(CloudKit.CKRecordID,CloudKit.CKSyncEnginePendingRecordZoneChangeType)
-M:CloudKit.CKSyncEnginePendingZoneDelete.#ctor(CloudKit.CKRecordZoneID)
-M:CloudKit.CKSyncEnginePendingZoneSave.#ctor(CloudKit.CKRecordZone)
-M:CloudKit.CKSyncEngineRecordZoneChangeBatch.#ctor(CloudKit.CKRecord[],CloudKit.CKRecordID[],System.Boolean)
-M:CloudKit.CKSyncEngineRecordZoneChangeBatch.#ctor(CloudKit.CKSyncEnginePendingRecordZoneChange[],System.Func{CloudKit.CKRecordID,CloudKit.CKRecord})
-M:CloudKit.CKSyncEngineSendChangesOptions.#ctor(CloudKit.CKSyncEngineSendChangesScope)
M:CloudKit.CKSyncEngineSendChangesOptions.Copy(Foundation.NSZone)
-M:CloudKit.CKSyncEngineSendChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordID})
M:CloudKit.CKSyncEngineSendChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean)
-M:CloudKit.CKSyncEngineSendChangesScope.ContainsPendingRecordZoneChange(CloudKit.CKSyncEnginePendingRecordZoneChange)
-M:CloudKit.CKSyncEngineSendChangesScope.ContainsRecordId(CloudKit.CKRecordID)
M:CloudKit.CKSyncEngineSendChangesScope.Copy(Foundation.NSZone)
-M:CloudKit.CKSyncEngineState.AddPendingDatabaseChanges(CloudKit.CKSyncEnginePendingDatabaseChange[])
-M:CloudKit.CKSyncEngineState.AddPendingRecordZoneChanges(CloudKit.CKSyncEnginePendingRecordZoneChange[])
-M:CloudKit.CKSyncEngineState.RemovePendingDatabaseChanges(CloudKit.CKSyncEnginePendingDatabaseChange[])
-M:CloudKit.CKSyncEngineState.RemovePendingRecordZoneChanges(CloudKit.CKSyncEnginePendingRecordZoneChange[])
M:CloudKit.CKSyncEngineStateSerialization.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKSystemSharingUIObserver.#ctor(CloudKit.CKContainer)
M:CloudKit.CKUserIdentity.Copy(Foundation.NSZone)
M:CloudKit.CKUserIdentity.EncodeTo(Foundation.NSCoder)
-M:CloudKit.CKUserIdentityLookupInfo.#ctor(CloudKit.CKRecordID)
M:CloudKit.CKUserIdentityLookupInfo.Copy(Foundation.NSZone)
M:CloudKit.CKUserIdentityLookupInfo.EncodeTo(Foundation.NSCoder)
M:CloudKit.CKUserIdentityLookupInfo.FromEmail(System.String)
M:CloudKit.CKUserIdentityLookupInfo.FromPhoneNumber(System.String)
-M:CloudKit.CKUserIdentityLookupInfo.GetLookupInfos(CloudKit.CKRecordID[])
-M:CloudKit.CKUserIdentityLookupInfo.GetLookupInfosWithEmails(System.String[])
-M:CloudKit.CKUserIdentityLookupInfo.GetLookupInfosWithPhoneNumbers(System.String[])
M:CloudKit.ICKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineEvent)
M:CloudKit.ICKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineFetchChangesContext)
M:CloudKit.ICKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineSendChangesContext)
@@ -33506,7 +24419,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.CNChangeHistoryEvent.AcceptEventVisitor(Contacts.ICNChangeHistoryEventVisitor)
M:Contacts.CNChangeHistoryEvent.Copy(Foundation.NSZone)
M:Contacts.CNChangeHistoryEvent.EncodeTo(Foundation.NSCoder)
M:Contacts.CNChangeHistoryEventVisitor_Extensions.AddGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryAddGroupEvent)
@@ -33518,123 +24430,52 @@ M:Contacts.CNChangeHistoryEventVisitor_Extensions.RemoveSubgroupFromGroup(Contac
M:Contacts.CNChangeHistoryEventVisitor_Extensions.UpdateGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryUpdateGroupEvent)
M:Contacts.CNChangeHistoryFetchRequest.EncodeTo(Foundation.NSCoder)
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.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.NSString[])
M:Contacts.CNContactFetchRequest.#ctor(ObjCRuntime.INativeObject[])
M:Contacts.CNContactFetchRequest.EncodeTo(Foundation.NSCoder)
M:Contacts.CNContactFormatter.EncodeTo(Foundation.NSCoder)
-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.CNContactProperty.Copy(Foundation.NSZone)
M:Contacts.CNContactProperty.EncodeTo(Foundation.NSCoder)
-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.EnumerateContacts(Contacts.CNContactFetchRequest,Foundation.NSError@,Contacts.CNContactStoreListContactsHandler)
-M:Contacts.CNContactStore.ExecuteSaveRequest(Contacts.CNSaveRequest,Foundation.NSError@)
-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.RequestAccess(Contacts.CNEntityType,Contacts.CNContactStoreRequestAccessHandler)
M:Contacts.CNContactStore.RequestAccessAsync(Contacts.CNEntityType)
-M:Contacts.CNContactsUserDefaults.GetSharedDefaults
-M:Contacts.CNContactVCardSerialization.GetContactsFromData(Foundation.NSData,Foundation.NSError@)
-M:Contacts.CNContactVCardSerialization.GetDataFromContacts(Contacts.CNContact[],Foundation.NSError@)
-M:Contacts.CNContactVCardSerialization.GetDescriptorFromRequiredKeys
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.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(System.String,System.String)
M:Contacts.CNInstantMessageAddress.Copy(Foundation.NSZone)
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(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.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.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.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.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.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.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(System.String,System.String,System.String,System.String)
M:Contacts.CNSocialProfile.Copy(Foundation.NSZone)
M:Contacts.CNSocialProfile.EncodeTo(Foundation.NSCoder)
M:Contacts.CNSocialProfile.LocalizeProperty(Contacts.CNPostalAddressKeyOption)
M:Contacts.CNSocialProfile.LocalizeProperty(Contacts.CNSocialProfileOption)
M:Contacts.CNSocialProfile.LocalizeService(Contacts.CNSocialProfileServiceOption)
-M:Contacts.CNSocialProfile.LocalizeService(Foundation.NSString)
M:Contacts.ICNChangeHistoryEventVisitor.AddContact(Contacts.CNChangeHistoryAddContactEvent)
M:Contacts.ICNChangeHistoryEventVisitor.AddGroup(Contacts.CNChangeHistoryAddGroupEvent)
M:Contacts.ICNChangeHistoryEventVisitor.AddMemberToGroup(Contacts.CNChangeHistoryAddMemberToGroupEvent)
@@ -33889,15 +24730,11 @@ M:CoreAnimation.ICALayerDelegate.DrawLayer(CoreAnimation.CALayer,CoreGraphics.CG
M:CoreAnimation.ICALayerDelegate.LayoutSublayersOfLayer(CoreAnimation.CALayer)
M:CoreAnimation.ICALayerDelegate.WillDrawLayer(CoreAnimation.CALayer)
M:CoreAnimation.ICAMetalDisplayLinkDelegate.NeedsUpdate(CoreAnimation.CAMetalDisplayLink,CoreAnimation.CAMetalDisplayLinkUpdate)
-M:CoreAudioKit.AUAudioUnitViewConfiguration.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)
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.#ctor(AudioUnit.AudioUnit,CoreAudioKit.AUGenericViewDisplayFlags)
-M:CoreAudioKit.AUGenericView.#ctor(AudioUnit.AudioUnit)
M:CoreAudioKit.AUGenericView.Dispose(System.Boolean)
M:CoreAudioKit.AUGenericViewController.#ctor(System.String,Foundation.NSBundle)
-M:CoreAudioKit.AUPannerView.Create(AudioUnit.AudioUnit)
M:CoreAudioKit.AUViewController.#ctor(System.String,Foundation.NSBundle)
M:CoreAudioKit.CABtleMidiWindowController.#ctor(AppKit.NSWindow)
M:CoreAudioKit.CABTMidiCentralViewController.#ctor(System.String,Foundation.NSBundle)
@@ -33905,11 +24742,8 @@ M:CoreAudioKit.CABTMidiCentralViewController.#ctor(UIKit.UITableViewStyle)
M:CoreAudioKit.CABTMidiLocalPeripheralViewController.#ctor(System.String,Foundation.NSBundle)
M:CoreAudioKit.CAInterAppAudioSwitcherView.#ctor(CoreGraphics.CGRect)
M:CoreAudioKit.CAInterAppAudioSwitcherView.CAInterAppAudioSwitcherViewAppearance.#ctor(System.IntPtr)
-M:CoreAudioKit.CAInterAppAudioSwitcherView.ContentWidth
-M:CoreAudioKit.CAInterAppAudioSwitcherView.SetOutputAudioUnit(AudioUnit.AudioUnit)
M:CoreAudioKit.CAInterAppAudioTransportView.#ctor(CoreGraphics.CGRect)
M:CoreAudioKit.CAInterAppAudioTransportView.CAInterAppAudioTransportViewAppearance.#ctor(System.IntPtr)
-M:CoreAudioKit.CAInterAppAudioTransportView.SetOutputAudioUnit(AudioUnit.AudioUnit)
M:CoreAudioKit.CAInterDeviceAudioViewController.#ctor(System.String,Foundation.NSBundle)
M:CoreAudioKit.CANetworkBrowserWindowController.#ctor(AppKit.NSWindow)
M:CoreBluetooth.AdvertisementData.#ctor
@@ -38615,35 +29449,11 @@ M:CryptoTokenKit.ITKTokenSessionDelegate.DecryptData(CryptoTokenKit.TKTokenSessi
M:CryptoTokenKit.ITKTokenSessionDelegate.PerformKeyExchange(CryptoTokenKit.TKTokenSession,Foundation.NSData,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm,CryptoTokenKit.TKTokenKeyExchangeParameters,Foundation.NSError@)
M:CryptoTokenKit.ITKTokenSessionDelegate.SignData(CryptoTokenKit.TKTokenSession,Foundation.NSData,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm,Foundation.NSError@)
M:CryptoTokenKit.ITKTokenSessionDelegate.SupportsOperation(CryptoTokenKit.TKTokenSession,CryptoTokenKit.TKTokenOperation,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm)
-M:CryptoTokenKit.TKBerTlvRecord.#ctor(System.UInt64,CryptoTokenKit.TKTlvRecord[])
-M:CryptoTokenKit.TKBerTlvRecord.#ctor(System.UInt64,Foundation.NSData)
-M:CryptoTokenKit.TKBerTlvRecord.GetData(System.UInt64)
-M:CryptoTokenKit.TKCompactTlvRecord.#ctor(System.Byte,Foundation.NSData)
-M:CryptoTokenKit.TKSimpleTlvRecord.#ctor(System.Byte,Foundation.NSData)
-M:CryptoTokenKit.TKSmartCard.BeginSession(System.Action{System.Boolean,Foundation.NSError})
M:CryptoTokenKit.TKSmartCard.BeginSessionAsync
-M:CryptoTokenKit.TKSmartCard.CreateUserInteractionForSecurePinChange(CryptoTokenKit.TKSmartCardPinFormat,Foundation.NSData,System.IntPtr,System.IntPtr)
-M:CryptoTokenKit.TKSmartCard.CreateUserInteractionForSecurePinVerification(CryptoTokenKit.TKSmartCardPinFormat,Foundation.NSData,System.IntPtr)
M:CryptoTokenKit.TKSmartCard.Dispose(System.Boolean)
-M:CryptoTokenKit.TKSmartCard.EndSession
-M:CryptoTokenKit.TKSmartCard.ExecuteBlock(Foundation.NSError@,CryptoTokenKit.TKSmartCardExecuteCallback)
-M:CryptoTokenKit.TKSmartCard.Send(System.Byte,System.Byte,System.Byte,Foundation.NSData,Foundation.NSNumber,CryptoTokenKit.TKSmartCardSendCallback)
-M:CryptoTokenKit.TKSmartCard.Send(System.Byte,System.Byte,System.Byte,Foundation.NSData,Foundation.NSNumber,System.UInt16@,Foundation.NSError@)
-M:CryptoTokenKit.TKSmartCard.TransmitRequest(Foundation.NSData,System.Action{Foundation.NSData,Foundation.NSError})
M:CryptoTokenKit.TKSmartCard.TransmitRequestAsync(Foundation.NSData)
-M:CryptoTokenKit.TKSmartCardAtr.#ctor(Foundation.NSData)
-M:CryptoTokenKit.TKSmartCardAtr.#ctor(System.Func{System.Int32})
-M:CryptoTokenKit.TKSmartCardAtr.GetInterfaceGroup(CryptoTokenKit.TKSmartCardProtocol)
-M:CryptoTokenKit.TKSmartCardAtr.GetInterfaceGroup(System.IntPtr)
-M:CryptoTokenKit.TKSmartCardSlot.MakeSmartCard
-M:CryptoTokenKit.TKSmartCardSlotManager.GetSlot(System.String,CryptoTokenKit.TKGetSlotCallback)
-M:CryptoTokenKit.TKSmartCardSlotManager.GetSlot(System.String)
M:CryptoTokenKit.TKSmartCardSlotManager.GetSlotAsync(System.String)
-M:CryptoTokenKit.TKSmartCardToken.#ctor(CryptoTokenKit.TKSmartCard,Foundation.NSData,System.String,CryptoTokenKit.TKSmartCardTokenDriver)
-M:CryptoTokenKit.TKSmartCardTokenSession.#ctor(CryptoTokenKit.TKToken)
-M:CryptoTokenKit.TKSmartCardUserInteraction.Cancel
M:CryptoTokenKit.TKSmartCardUserInteraction.Dispose(System.Boolean)
-M:CryptoTokenKit.TKSmartCardUserInteraction.Run(System.Action{System.Boolean,Foundation.NSError})
M:CryptoTokenKit.TKSmartCardUserInteraction.RunAsync
M:CryptoTokenKit.TKSmartCardUserInteractionDelegate_Extensions.CharacterEntered(CryptoTokenKit.ITKSmartCardUserInteractionDelegate,CryptoTokenKit.TKSmartCardUserInteraction)
M:CryptoTokenKit.TKSmartCardUserInteractionDelegate_Extensions.CorrectionKeyPressed(CryptoTokenKit.ITKSmartCardUserInteractionDelegate,CryptoTokenKit.TKSmartCardUserInteraction)
@@ -38653,50 +29463,20 @@ M:CryptoTokenKit.TKSmartCardUserInteractionDelegate_Extensions.NewPinRequested(C
M:CryptoTokenKit.TKSmartCardUserInteractionDelegate_Extensions.OldPinRequested(CryptoTokenKit.ITKSmartCardUserInteractionDelegate,CryptoTokenKit.TKSmartCardUserInteraction)
M:CryptoTokenKit.TKSmartCardUserInteractionDelegate_Extensions.ValidationKeyPressed(CryptoTokenKit.ITKSmartCardUserInteractionDelegate,CryptoTokenKit.TKSmartCardUserInteraction)
M:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation.Dispose(System.Boolean)
-M:CryptoTokenKit.TKTlvRecord.CreateRecord(Foundation.NSData)
-M:CryptoTokenKit.TKTlvRecord.CreateSequenceOfRecords(Foundation.NSData)
-M:CryptoTokenKit.TKToken.#ctor(CryptoTokenKit.TKTokenDriver,System.String)
M:CryptoTokenKit.TKToken.Dispose(System.Boolean)
M:CryptoTokenKit.TKTokenAuthOperation.EncodeTo(Foundation.NSCoder)
-M:CryptoTokenKit.TKTokenAuthOperation.Finish(Foundation.NSError@)
-M:CryptoTokenKit.TKTokenConfiguration.GetCertificate(Foundation.NSObject,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenConfiguration.GetKey(Foundation.NSObject,Foundation.NSError@)
M:CryptoTokenKit.TKTokenDelegate_Extensions.TerminateSession(CryptoTokenKit.ITKTokenDelegate,CryptoTokenKit.TKToken,CryptoTokenKit.TKTokenSession)
-M:CryptoTokenKit.TKTokenDelegate.CreateSession(CryptoTokenKit.TKToken,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenDelegate.TerminateSession(CryptoTokenKit.TKToken,CryptoTokenKit.TKTokenSession)
M:CryptoTokenKit.TKTokenDriver.Dispose(System.Boolean)
-M:CryptoTokenKit.TKTokenDriverConfiguration.AddTokenConfiguration(System.String)
-M:CryptoTokenKit.TKTokenDriverConfiguration.RemoveTokenConfiguration(System.String)
M:CryptoTokenKit.TKTokenDriverDelegate_Extensions.GetToken(CryptoTokenKit.ITKTokenDriverDelegate,CryptoTokenKit.TKTokenDriver,CryptoTokenKit.TKTokenConfiguration,Foundation.NSError@)
M:CryptoTokenKit.TKTokenDriverDelegate_Extensions.TerminateToken(CryptoTokenKit.ITKTokenDriverDelegate,CryptoTokenKit.TKTokenDriver,CryptoTokenKit.TKToken)
-M:CryptoTokenKit.TKTokenDriverDelegate.GetToken(CryptoTokenKit.TKTokenDriver,CryptoTokenKit.TKTokenConfiguration,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenDriverDelegate.TerminateToken(CryptoTokenKit.TKTokenDriver,CryptoTokenKit.TKToken)
-M:CryptoTokenKit.TKTokenKeyAlgorithm.IsAlgorithm(Security.SecKeyAlgorithm)
-M:CryptoTokenKit.TKTokenKeyAlgorithm.SupportsAlgorithm(Security.SecKeyAlgorithm)
-M:CryptoTokenKit.TKTokenKeychainCertificate.#ctor(Security.SecKeyAlgorithm,Foundation.NSObject)
-M:CryptoTokenKit.TKTokenKeychainContents.Fill(CryptoTokenKit.TKTokenKeychainItem[])
-M:CryptoTokenKit.TKTokenKeychainContents.GetCertificate(Foundation.NSObject,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenKeychainContents.GetKey(Foundation.NSObject,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenKeychainItem.#ctor(Foundation.NSObject)
M:CryptoTokenKit.TKTokenKeychainKey.#ctor(Security.SecCertificate,Foundation.NSObject)
-M:CryptoTokenKit.TKTokenKeychainKey.#ctor(System.IntPtr,Foundation.NSObject)
-M:CryptoTokenKit.TKTokenSession.#ctor(CryptoTokenKit.TKToken)
M:CryptoTokenKit.TKTokenSession.Dispose(System.Boolean)
M:CryptoTokenKit.TKTokenSessionDelegate_Extensions.BeginAuthentication(CryptoTokenKit.ITKTokenSessionDelegate,CryptoTokenKit.TKTokenSession,CryptoTokenKit.TKTokenOperation,Foundation.NSObject,Foundation.NSError@)
M:CryptoTokenKit.TKTokenSessionDelegate_Extensions.DecryptData(CryptoTokenKit.ITKTokenSessionDelegate,CryptoTokenKit.TKTokenSession,Foundation.NSData,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm,Foundation.NSError@)
M:CryptoTokenKit.TKTokenSessionDelegate_Extensions.PerformKeyExchange(CryptoTokenKit.ITKTokenSessionDelegate,CryptoTokenKit.TKTokenSession,Foundation.NSData,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm,CryptoTokenKit.TKTokenKeyExchangeParameters,Foundation.NSError@)
M:CryptoTokenKit.TKTokenSessionDelegate_Extensions.SignData(CryptoTokenKit.ITKTokenSessionDelegate,CryptoTokenKit.TKTokenSession,Foundation.NSData,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm,Foundation.NSError@)
M:CryptoTokenKit.TKTokenSessionDelegate_Extensions.SupportsOperation(CryptoTokenKit.ITKTokenSessionDelegate,CryptoTokenKit.TKTokenSession,CryptoTokenKit.TKTokenOperation,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm)
-M:CryptoTokenKit.TKTokenSessionDelegate.BeginAuthentication(CryptoTokenKit.TKTokenSession,CryptoTokenKit.TKTokenOperation,Foundation.NSObject,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenSessionDelegate.DecryptData(CryptoTokenKit.TKTokenSession,Foundation.NSData,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenSessionDelegate.PerformKeyExchange(CryptoTokenKit.TKTokenSession,Foundation.NSData,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm,CryptoTokenKit.TKTokenKeyExchangeParameters,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenSessionDelegate.SignData(CryptoTokenKit.TKTokenSession,Foundation.NSData,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm,Foundation.NSError@)
-M:CryptoTokenKit.TKTokenSessionDelegate.SupportsOperation(CryptoTokenKit.TKTokenSession,CryptoTokenKit.TKTokenOperation,Foundation.NSObject,CryptoTokenKit.TKTokenKeyAlgorithm)
M:CryptoTokenKit.TKTokenSmartCardPinAuthOperation.Dispose(System.Boolean)
-M:CryptoTokenKit.TKTokenWatcher.#ctor(System.Action{Foundation.NSString})
-M:CryptoTokenKit.TKTokenWatcher.AddRemovalHandler(System.Action{Foundation.NSString},System.String)
-M:CryptoTokenKit.TKTokenWatcher.GetTokenInfo(System.String)
-M:CryptoTokenKit.TKTokenWatcher.SetInsertionHandler(System.Action{Foundation.NSString})
M:Darwin.KernelQueue.#ctor
M:Darwin.KernelQueue.Dispose
M:Darwin.KernelQueue.Dispose(System.Boolean)
@@ -38718,97 +29498,27 @@ M:Darwin.SystemLog.Log(System.String)
M:Darwin.SystemLog.RemoveLogFile(System.Int32)
M:Darwin.SystemLog.Search(Darwin.Message)
M:Darwin.SystemLog.SetFilter(System.Int32)
-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.DCDevice.GenerateToken(DeviceCheck.DCDeviceGenerateTokenCompletionHandler)
M:DeviceCheck.DCDevice.GenerateTokenAsync
-M:DeviceDiscoveryExtension.DDDevice.#ctor(System.String,DeviceDiscoveryExtension.DDDeviceCategory,UniformTypeIdentifiers.UTType,System.String)
-M:DeviceDiscoveryExtension.DDDeviceEvent.#ctor(DeviceDiscoveryExtension.DDEventType,DeviceDiscoveryExtension.DDDevice)
-M:DeviceDiscoveryExtension.DDDiscoverySession.ReportEvent(DeviceDiscoveryExtension.DDDeviceEvent)
M:EventKit.EKAlarm.Copy(Foundation.NSZone)
-M:EventKit.EKAlarm.FromDate(Foundation.NSDate)
-M:EventKit.EKAlarm.FromTimeInterval(System.Double)
-M:EventKit.EKCalendar.Create(EventKit.EKEntityType,EventKit.EKEventStore)
-M:EventKit.EKCalendar.FromEventStore(EventKit.EKEventStore)
-M:EventKit.EKCalendarItem.AddAlarm(EventKit.EKAlarm)
-M:EventKit.EKCalendarItem.AddRecurrenceRule(EventKit.EKRecurrenceRule)
-M:EventKit.EKCalendarItem.RemoveAlarm(EventKit.EKAlarm)
-M:EventKit.EKCalendarItem.RemoveRecurrenceRule(EventKit.EKRecurrenceRule)
-M:EventKit.EKEvent.CompareStartDateWithEvent(EventKit.EKEvent)
-M:EventKit.EKEvent.FromStore(EventKit.EKEventStore)
-M:EventKit.EKEvent.Refresh
-M:EventKit.EKEventStore.#ctor(EventKit.EKEntityMask)
-M:EventKit.EKEventStore.#ctor(EventKit.EKSource[])
-M:EventKit.EKEventStore.CancelFetchRequest(System.IntPtr)
-M:EventKit.EKEventStore.Commit(Foundation.NSError@)
-M:EventKit.EKEventStore.EnumerateEvents(Foundation.NSPredicate,EventKit.EKEventSearchCallback)
-M:EventKit.EKEventStore.EventFromIdentifier(System.String)
-M:EventKit.EKEventStore.EventsMatching(Foundation.NSPredicate)
-M:EventKit.EKEventStore.FetchReminders(Foundation.NSPredicate,System.Action{EventKit.EKReminder[]})
M:EventKit.EKEventStore.FetchRemindersAsync(Foundation.NSPredicate,System.IntPtr@)
M:EventKit.EKEventStore.FetchRemindersAsync(Foundation.NSPredicate)
-M:EventKit.EKEventStore.GetAuthorizationStatus(EventKit.EKEntityType)
-M:EventKit.EKEventStore.GetCalendar(System.String)
-M:EventKit.EKEventStore.GetCalendarItem(System.String)
-M:EventKit.EKEventStore.GetCalendarItems(System.String)
-M:EventKit.EKEventStore.GetCalendars(EventKit.EKEntityType)
-M:EventKit.EKEventStore.GetSource(System.String)
-M:EventKit.EKEventStore.PredicateForCompleteReminders(Foundation.NSDate,Foundation.NSDate,EventKit.EKCalendar[])
-M:EventKit.EKEventStore.PredicateForEvents(Foundation.NSDate,Foundation.NSDate,EventKit.EKCalendar[])
-M:EventKit.EKEventStore.PredicateForIncompleteReminders(Foundation.NSDate,Foundation.NSDate,EventKit.EKCalendar[])
-M:EventKit.EKEventStore.PredicateForReminders(EventKit.EKCalendar[])
-M:EventKit.EKEventStore.RefreshSourcesIfNecessary
-M:EventKit.EKEventStore.RemoveCalendar(EventKit.EKCalendar,System.Boolean,Foundation.NSError@)
-M:EventKit.EKEventStore.RemoveEvent(EventKit.EKEvent,EventKit.EKSpan,System.Boolean,Foundation.NSError@)
-M:EventKit.EKEventStore.RemoveEvents(EventKit.EKEvent,EventKit.EKSpan,Foundation.NSError@)
-M:EventKit.EKEventStore.RemoveReminder(EventKit.EKReminder,System.Boolean,Foundation.NSError@)
-M:EventKit.EKEventStore.RequestAccess(EventKit.EKEntityType,System.Action{System.Boolean,Foundation.NSError})
M:EventKit.EKEventStore.RequestAccessAsync(EventKit.EKEntityType)
-M:EventKit.EKEventStore.RequestFullAccessToEvents(EventKit.EKEventStoreRequestAccessCompletionHandler)
M:EventKit.EKEventStore.RequestFullAccessToEventsAsync
-M:EventKit.EKEventStore.RequestFullAccessToReminders(EventKit.EKEventStoreRequestAccessCompletionHandler)
M:EventKit.EKEventStore.RequestFullAccessToRemindersAsync
-M:EventKit.EKEventStore.RequestWriteOnlyAccessToEvents(EventKit.EKEventStoreRequestAccessCompletionHandler)
M:EventKit.EKEventStore.RequestWriteOnlyAccessToEventsAsync
-M:EventKit.EKEventStore.Reset
-M:EventKit.EKEventStore.SaveCalendar(EventKit.EKCalendar,System.Boolean,Foundation.NSError@)
-M:EventKit.EKEventStore.SaveEvent(EventKit.EKEvent,EventKit.EKSpan,Foundation.NSError@)
-M:EventKit.EKEventStore.SaveEvent(EventKit.EKEvent,EventKit.EKSpan,System.Boolean,Foundation.NSError@)
-M:EventKit.EKEventStore.SaveReminder(EventKit.EKReminder,System.Boolean,Foundation.NSError@)
-M:EventKit.EKObject.Refresh
-M:EventKit.EKObject.Reset
-M:EventKit.EKObject.Rollback
M:EventKit.EKParticipant.Copy(Foundation.NSZone)
-M:EventKit.EKParticipant.GetRecord(AddressBook.ABAddressBook)
-M:EventKit.EKRecurrenceDayOfWeek.#ctor(EventKit.EKWeekday,System.IntPtr)
M:EventKit.EKRecurrenceDayOfWeek.Copy(Foundation.NSZone)
M:EventKit.EKRecurrenceDayOfWeek.EncodeTo(Foundation.NSCoder)
-M:EventKit.EKRecurrenceDayOfWeek.FromDay(EventKit.EKWeekday,System.IntPtr)
-M:EventKit.EKRecurrenceDayOfWeek.FromDay(EventKit.EKWeekday)
M:EventKit.EKRecurrenceEnd.Copy(Foundation.NSZone)
M:EventKit.EKRecurrenceEnd.EncodeTo(Foundation.NSCoder)
-M:EventKit.EKRecurrenceEnd.FromEndDate(Foundation.NSDate)
-M:EventKit.EKRecurrenceEnd.FromOccurrenceCount(System.IntPtr)
-M:EventKit.EKRecurrenceRule.#ctor(EventKit.EKRecurrenceFrequency,System.IntPtr,EventKit.EKRecurrenceDayOfWeek[],Foundation.NSNumber[],Foundation.NSNumber[],Foundation.NSNumber[],Foundation.NSNumber[],Foundation.NSNumber[],EventKit.EKRecurrenceEnd)
-M:EventKit.EKRecurrenceRule.#ctor(EventKit.EKRecurrenceFrequency,System.IntPtr,EventKit.EKRecurrenceEnd)
M:EventKit.EKRecurrenceRule.Copy(Foundation.NSZone)
-M:EventKit.EKReminder.Create(EventKit.EKEventStore)
-M:EventKit.EKSource.GetCalendars(EventKit.EKEntityType)
M:EventKit.EKStructuredLocation.Copy(Foundation.NSZone)
-M:EventKit.EKStructuredLocation.FromMapItem(MapKit.MKMapItem)
-M:EventKit.EKStructuredLocation.FromTitle(System.String)
-M:EventKit.EKVirtualConferenceDescriptor.#ctor(System.String,EventKit.EKVirtualConferenceUrlDescriptor[],System.String)
M:EventKit.EKVirtualConferenceProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
-M:EventKit.EKVirtualConferenceProvider.FetchAvailableRoomTypes(EventKit.VirtualConferenceRoomTypeHandler)
M:EventKit.EKVirtualConferenceProvider.FetchAvailableRoomTypesAsync
-M:EventKit.EKVirtualConferenceProvider.FetchVirtualConference(System.String,EventKit.VirtualConferenceHandler)
M:EventKit.EKVirtualConferenceProvider.FetchVirtualConferenceAsync(System.String)
-M:EventKit.EKVirtualConferenceRoomTypeDescriptor.#ctor(System.String,System.String)
-M:EventKit.EKVirtualConferenceUrlDescriptor.#ctor(System.String,Foundation.NSUrl)
M:EventKitUI.EKCalendarChooser.#ctor(EventKitUI.EKCalendarChooserSelectionStyle,EventKitUI.EKCalendarChooserDisplayStyle,EventKit.EKEntityType,EventKit.EKEventStore)
M:EventKitUI.EKCalendarChooser.#ctor(EventKitUI.EKCalendarChooserSelectionStyle,EventKitUI.EKCalendarChooserDisplayStyle,EventKit.EKEventStore)
M:EventKitUI.EKCalendarChooser.#ctor(System.String,Foundation.NSBundle)
@@ -38853,13 +29563,10 @@ M:ExecutionPolicy.EPExecutionPolicy.AddPolicyException(Foundation.NSUrl,Foundati
M:ExtensionKit.EXAppExtensionBrowserViewController.#ctor(System.String,Foundation.NSBundle)
M:ExtensionKit.EXHostViewController.#ctor(System.String,Foundation.NSBundle)
M:ExtensionKit.EXHostViewController.Dispose(System.Boolean)
-M:ExtensionKit.EXHostViewController.MakeXpcConnection(Foundation.NSError@)
M:ExtensionKit.EXHostViewControllerDelegate_Extensions.DidActivate(ExtensionKit.IEXHostViewControllerDelegate,ExtensionKit.EXHostViewController)
M:ExtensionKit.EXHostViewControllerDelegate_Extensions.ShouldAcceptXpcConnection(ExtensionKit.IEXHostViewControllerDelegate,Foundation.NSXpcConnection)
M:ExtensionKit.EXHostViewControllerDelegate_Extensions.WillDeactivate(ExtensionKit.IEXHostViewControllerDelegate,ExtensionKit.EXHostViewController,Foundation.NSError)
-M:ExtensionKit.EXHostViewControllerDelegate.DidActivate(ExtensionKit.EXHostViewController)
M:ExtensionKit.EXHostViewControllerDelegate.ShouldAcceptXpcConnection(Foundation.NSXpcConnection)
-M:ExtensionKit.EXHostViewControllerDelegate.WillDeactivate(ExtensionKit.EXHostViewController,Foundation.NSError)
M:ExtensionKit.IEXHostViewControllerDelegate.DidActivate(ExtensionKit.EXHostViewController)
M:ExtensionKit.IEXHostViewControllerDelegate.ShouldAcceptXpcConnection(Foundation.NSXpcConnection)
M:ExtensionKit.IEXHostViewControllerDelegate.WillDeactivate(ExtensionKit.EXHostViewController,Foundation.NSError)
@@ -39378,79 +30085,19 @@ M:Foundation.ModelAttribute.#ctor
M:Foundation.ModelNotImplementedException.#ctor
M:Foundation.NotImplementedAttribute.#ctor
M:Foundation.NotImplementedAttribute.#ctor(System.String)
-M:Foundation.NSAffineTransform.#ctor(Foundation.NSAffineTransform)
-M:Foundation.NSAffineTransform.AppendTransform(Foundation.NSAffineTransform)
M:Foundation.NSAffineTransform.Concat
-M:Foundation.NSAffineTransform.Copy(Foundation.NSZone)
-M:Foundation.NSAffineTransform.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSAffineTransform.Invert
-M:Foundation.NSAffineTransform.PrependTransform(Foundation.NSAffineTransform)
-M:Foundation.NSAffineTransform.RotateByDegrees(System.Runtime.InteropServices.NFloat)
-M:Foundation.NSAffineTransform.RotateByRadians(System.Runtime.InteropServices.NFloat)
-M:Foundation.NSAffineTransform.Scale(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:Foundation.NSAffineTransform.Scale(System.Runtime.InteropServices.NFloat)
-M:Foundation.NSAffineTransform.Set
M:Foundation.NSAffineTransform.TransformBezierPath(AppKit.NSBezierPath)
-M:Foundation.NSAffineTransform.TransformPoint(CoreGraphics.CGPoint)
-M:Foundation.NSAffineTransform.TransformSize(CoreGraphics.CGSize)
-M:Foundation.NSAffineTransform.Translate(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:Foundation.NSAppleEventDescriptor.#ctor(Foundation.NSAppleEventDescriptorType)
-M:Foundation.NSAppleEventDescriptor.AttributeDescriptorForKeyword(System.UInt32)
-M:Foundation.NSAppleEventDescriptor.Copy(Foundation.NSZone)
-M:Foundation.NSAppleEventDescriptor.DescriptorAtIndex(System.IntPtr)
-M:Foundation.NSAppleEventDescriptor.DescriptorForKeyword(System.UInt32)
-M:Foundation.NSAppleEventDescriptor.DescriptorWithBoolean(System.Boolean)
-M:Foundation.NSAppleEventDescriptor.DescriptorWithEnumCode(System.UInt32)
-M:Foundation.NSAppleEventDescriptor.DescriptorWithInt32(System.Int32)
-M:Foundation.NSAppleEventDescriptor.DescriptorWithString(System.String)
-M:Foundation.NSAppleEventDescriptor.DescriptorWithTypeCode(System.UInt32)
-M:Foundation.NSAppleEventDescriptor.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSAppleEventDescriptor.EnumCodeValue
-M:Foundation.NSAppleEventDescriptor.FromApplicationURL(Foundation.NSUrl)
-M:Foundation.NSAppleEventDescriptor.FromBundleIdentifier(System.String)
-M:Foundation.NSAppleEventDescriptor.FromDate(Foundation.NSDate)
-M:Foundation.NSAppleEventDescriptor.FromDouble(System.Double)
-M:Foundation.NSAppleEventDescriptor.FromFileURL(Foundation.NSUrl)
-M:Foundation.NSAppleEventDescriptor.FromProcessIdentifier(System.Int32)
-M:Foundation.NSAppleEventDescriptor.InsertDescriptoratIndex(Foundation.NSAppleEventDescriptor,System.IntPtr)
-M:Foundation.NSAppleEventDescriptor.KeywordForDescriptorAtIndex(System.IntPtr)
-M:Foundation.NSAppleEventDescriptor.ParamDescriptorForKeyword(System.UInt32)
-M:Foundation.NSAppleEventDescriptor.RemoveDescriptorAtIndex(System.IntPtr)
-M:Foundation.NSAppleEventDescriptor.RemoveDescriptorWithKeyword(System.UInt32)
-M:Foundation.NSAppleEventDescriptor.RemoveParamDescriptorWithKeyword(System.UInt32)
-M:Foundation.NSAppleEventDescriptor.SendEvent(Foundation.NSAppleEventSendOptions,System.Double,Foundation.NSError@)
-M:Foundation.NSAppleEventDescriptor.SetAttributeDescriptorforKeyword(Foundation.NSAppleEventDescriptor,System.UInt32)
-M:Foundation.NSAppleEventDescriptor.SetDescriptorforKeyword(Foundation.NSAppleEventDescriptor,System.UInt32)
-M:Foundation.NSAppleEventDescriptor.SetParamDescriptorforKeyword(Foundation.NSAppleEventDescriptor,System.UInt32)
-M:Foundation.NSAppleEventManager.AppleEventForSuspensionID(System.IntPtr)
-M:Foundation.NSAppleEventManager.RemoveEventHandler(Foundation.AEEventClass,Foundation.AEEventID)
-M:Foundation.NSAppleEventManager.ReplyAppleEventForSuspensionID(System.IntPtr)
-M:Foundation.NSAppleEventManager.ResumeWithSuspensionID(System.IntPtr)
-M:Foundation.NSAppleEventManager.SetCurrentAppleEventAndReplyEventWithSuspensionID(System.IntPtr)
-M:Foundation.NSAppleEventManager.SetEventHandler(Foundation.NSObject,ObjCRuntime.Selector,Foundation.AEEventClass,Foundation.AEEventID)
-M:Foundation.NSAppleEventManager.SuspendCurrentAppleEvent
-M:Foundation.NSAppleScript.#ctor(Foundation.NSUrl,Foundation.NSDictionary@)
-M:Foundation.NSAppleScript.#ctor(System.String)
-M:Foundation.NSAppleScript.CompileAndReturnError(Foundation.NSDictionary@)
-M:Foundation.NSAppleScript.Copy(Foundation.NSZone)
-M:Foundation.NSAppleScript.ExecuteAndReturnError(Foundation.NSDictionary@)
-M:Foundation.NSAppleScript.ExecuteAppleEvent(Foundation.NSAppleEventDescriptor,Foundation.NSDictionary@)
M:Foundation.NSArchiveReplaceEventArgs.#ctor(Foundation.NSObject,Foundation.NSObject)
-M:Foundation.NSArray.AddObserver(Foundation.NSObject,Foundation.NSIndexSet,System.String,Foundation.NSKeyValueObservingOptions,System.IntPtr)
M:Foundation.NSArray.ArrayFromHandle``1(ObjCRuntime.NativeHandle,System.Converter{ObjCRuntime.NativeHandle,``0},System.Boolean)
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.Contains(Foundation.NSObject)
-M:Foundation.NSArray.Copy(Foundation.NSZone)
-M:Foundation.NSArray.EncodeTo(Foundation.NSCoder)
M:Foundation.NSArray.EnumsFromHandle``1(ObjCRuntime.NativeHandle)
-M:Foundation.NSArray.Filter(Foundation.NSPredicate)
M:Foundation.NSArray.From(Foundation.NSObject[][])
M:Foundation.NSArray.FromArray``1(Foundation.NSArray)
M:Foundation.NSArray.FromArrayNative``1(Foundation.NSArray)
M:Foundation.NSArray.FromArrayOfArray(Foundation.NSArray)
-M:Foundation.NSArray.FromFile(System.String)
M:Foundation.NSArray.FromIntPtrs(ObjCRuntime.NativeHandle[])
M:Foundation.NSArray.FromNSObjects(Foundation.NSObject[])
M:Foundation.NSArray.FromNSObjects(ObjCRuntime.INativeObject[])
@@ -39465,26 +30112,14 @@ M:Foundation.NSArray.FromObjects(System.IntPtr,System.Object[])
M:Foundation.NSArray.FromObjects(System.Object[])
M:Foundation.NSArray.FromStrings(System.Collections.Generic.IReadOnlyList{System.String})
M:Foundation.NSArray.FromStrings(System.String[])
-M:Foundation.NSArray.FromUrl(Foundation.NSUrl,Foundation.NSError@)
M:Foundation.NSArray.GetItem``1(System.UIntPtr)
-M:Foundation.NSArray.IndexOf(Foundation.NSObject)
-M:Foundation.NSArray.MutableCopy(Foundation.NSZone)
-M:Foundation.NSArray.RemoveObserver(Foundation.NSObject,Foundation.NSIndexSet,System.String,System.IntPtr)
-M:Foundation.NSArray.RemoveObserver(Foundation.NSObject,Foundation.NSIndexSet,System.String)
-M:Foundation.NSArray.SetValueForKey(Foundation.NSObject,Foundation.NSString)
-M:Foundation.NSArray.Sort(Foundation.NSComparator)
M:Foundation.NSArray.ToArray
M:Foundation.NSArray.ToArray``1
-M:Foundation.NSArray.ValueAt(System.UIntPtr)
-M:Foundation.NSArray.ValueForKey(Foundation.NSString)
-M:Foundation.NSArray.Write(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSArray.WriteToFile(System.String,System.Boolean)
M:Foundation.NSArray`1.#ctor
M:Foundation.NSArray`1.#ctor(Foundation.NSCoder)
M:Foundation.NSArray`1.FromNSObjects(`0[])
M:Foundation.NSArray`1.FromNSObjects(System.Int32,`0[])
M:Foundation.NSArray`1.ToArray
-M:Foundation.NSAttributedString.#ctor(Foundation.NSAttributedString)
M:Foundation.NSAttributedString.#ctor(Foundation.NSData,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary@)
M:Foundation.NSAttributedString.#ctor(Foundation.NSData,Foundation.NSDictionary,Foundation.NSDictionary@)
M:Foundation.NSAttributedString.#ctor(Foundation.NSData,Foundation.NSDictionary@)
@@ -39497,10 +30132,8 @@ M:Foundation.NSAttributedString.#ctor(System.String,CoreText.CTStringAttributes)
M:Foundation.NSAttributedString.#ctor(System.String,Foundation.NSDictionary@)
M:Foundation.NSAttributedString.#ctor(System.String,UIKit.UIFont,UIKit.UIColor,UIKit.UIColor,UIKit.UIColor,UIKit.NSParagraphStyle,Foundation.NSLigatureType,System.Single,Foundation.NSUnderlineStyle,UIKit.NSShadow,System.Single,Foundation.NSUnderlineStyle)
M:Foundation.NSAttributedString.#ctor(System.String,UIKit.UIStringAttributes)
-M:Foundation.NSAttributedString.#ctor(System.String)
M:Foundation.NSAttributedString.BoundingRectWithSize(CoreGraphics.CGSize,Foundation.NSStringDrawingOptions)
M:Foundation.NSAttributedString.ContainsAttachmentsInRange(Foundation.NSRange)
-M:Foundation.NSAttributedString.Copy(Foundation.NSZone)
M:Foundation.NSAttributedString.Create(AppKit.NSAdaptiveImageGlyph,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:Foundation.NSAttributedString.Create(UIKit.NSAdaptiveImageGlyph,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:Foundation.NSAttributedString.CreateWithDocFormat(Foundation.NSData,Foundation.NSDictionary@)
@@ -39512,18 +30145,12 @@ M:Foundation.NSAttributedString.DrawString(CoreGraphics.CGPoint)
M:Foundation.NSAttributedString.DrawString(CoreGraphics.CGRect,Foundation.NSStringDrawingOptions,Foundation.NSStringDrawingContext)
M:Foundation.NSAttributedString.DrawString(CoreGraphics.CGRect,Foundation.NSStringDrawingOptions)
M:Foundation.NSAttributedString.DrawString(CoreGraphics.CGRect)
-M:Foundation.NSAttributedString.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSAttributedString.EnumerateAttribute(Foundation.NSString,Foundation.NSRange,Foundation.NSAttributedStringEnumeration,Foundation.NSAttributedStringCallback)
-M:Foundation.NSAttributedString.EnumerateAttributes(Foundation.NSRange,Foundation.NSAttributedStringEnumeration,Foundation.NSAttributedRangeCallback)
M:Foundation.NSAttributedString.FromAttachment(AppKit.NSTextAttachment,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:Foundation.NSAttributedString.FromAttachment(AppKit.NSTextAttachment)
M:Foundation.NSAttributedString.FromAttachment(UIKit.NSTextAttachment,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:Foundation.NSAttributedString.FromAttachment(UIKit.NSTextAttachment)
M:Foundation.NSAttributedString.GetAppKitAttributes(System.IntPtr,Foundation.NSRange@,Foundation.NSRange)
M:Foundation.NSAttributedString.GetAppKitAttributes(System.IntPtr,Foundation.NSRange@)
-M:Foundation.NSAttributedString.GetAttribute(System.String,System.IntPtr,Foundation.NSRange@,Foundation.NSRange)
-M:Foundation.NSAttributedString.GetAttribute(System.String,System.IntPtr,Foundation.NSRange@)
-M:Foundation.NSAttributedString.GetAttributes(System.IntPtr,Foundation.NSRange@,Foundation.NSRange)
M:Foundation.NSAttributedString.GetAttributes(System.IntPtr,Foundation.NSRange@)
M:Foundation.NSAttributedString.GetBoundingRect(CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,Foundation.NSStringDrawingContext)
M:Foundation.NSAttributedString.GetCoreTextAttributes(System.IntPtr,Foundation.NSRange@,Foundation.NSRange)
@@ -39536,11 +30163,9 @@ M:Foundation.NSAttributedString.GetFileWrapper(Foundation.NSRange,Foundation.NSA
M:Foundation.NSAttributedString.GetFileWrapper(Foundation.NSRange,Foundation.NSDictionary,Foundation.NSError@)
M:Foundation.NSAttributedString.GetFontAttributes(Foundation.NSRange)
M:Foundation.NSAttributedString.GetItemNumber(AppKit.NSTextList,System.UIntPtr)
-M:Foundation.NSAttributedString.GetItemProviderVisibilityForTypeIdentifier(System.String)
M:Foundation.NSAttributedString.GetLineBreak(System.UIntPtr,Foundation.NSRange)
M:Foundation.NSAttributedString.GetLineBreakByHyphenating(System.UIntPtr,Foundation.NSRange)
M:Foundation.NSAttributedString.GetNextWord(System.UIntPtr,System.Boolean)
-M:Foundation.NSAttributedString.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
M:Foundation.NSAttributedString.GetPasteboardPropertyListForType(System.String)
M:Foundation.NSAttributedString.GetRange(AppKit.NSTextBlock,System.UIntPtr)
M:Foundation.NSAttributedString.GetRange(AppKit.NSTextList,System.UIntPtr)
@@ -39559,8 +30184,6 @@ M:Foundation.NSAttributedString.GetUIKitAttributes(System.IntPtr,Foundation.NSRa
M:Foundation.NSAttributedString.GetUrl(System.UIntPtr,Foundation.NSRange@)
M:Foundation.NSAttributedString.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
M:Foundation.NSAttributedString.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
-M:Foundation.NSAttributedString.IsEqual(Foundation.NSAttributedString)
-M:Foundation.NSAttributedString.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:Foundation.NSAttributedString.LoadDataAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSAttributedString.LoadDataAsync(System.String)
M:Foundation.NSAttributedString.LoadFromHtml(Foundation.NSData,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSAttributedStringCompletionHandler)
@@ -39572,192 +30195,40 @@ M:Foundation.NSAttributedString.LoadFromHtmlAsync(Foundation.NSUrl,Foundation.NS
M:Foundation.NSAttributedString.LoadFromHtmlAsync(Foundation.NSUrlRequest,Foundation.NSAttributedStringDocumentAttributes)
M:Foundation.NSAttributedString.LoadFromHtmlAsync(System.String,Foundation.NSAttributedStringDocumentAttributes)
M:Foundation.NSAttributedString.LowLevelGetAttributes(System.IntPtr,Foundation.NSRange@)
-M:Foundation.NSAttributedString.LowLevelGetAttributes(System.IntPtr,System.IntPtr)
-M:Foundation.NSAttributedString.MutableCopy(Foundation.NSZone)
M:Foundation.NSAttributedString.PrefersRtfdInRange(Foundation.NSRange)
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(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:Foundation.NSAttributedStringMarkdownSourcePosition.Copy(Foundation.NSZone)
-M:Foundation.NSAttributedStringMarkdownSourcePosition.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSAttributedStringMarkdownSourcePosition.RangeInString(System.String)
-M:Foundation.NSBackgroundActivityScheduler.#ctor(System.String)
-M:Foundation.NSBackgroundActivityScheduler.Invalidate
-M:Foundation.NSBackgroundActivityScheduler.Schedule(Foundation.NSBackgroundActivityCompletionAction)
-M:Foundation.NSBindingSelectionMarker.Copy(Foundation.NSZone)
M:Foundation.NSBindingSelectionMarker.GetDefaultPlaceholder(Foundation.NSBindingSelectionMarker,ObjCRuntime.Class,System.String)
M:Foundation.NSBindingSelectionMarker.SetDefaultPlaceholder(Foundation.NSObject,Foundation.NSBindingSelectionMarker,ObjCRuntime.Class,System.String)
-M:Foundation.NSBlockOperation.AddExecutionBlock(System.Action)
-M:Foundation.NSBlockOperation.Create(System.Action)
-M:Foundation.NSBundle.#ctor(Foundation.NSUrl)
-M:Foundation.NSBundle.#ctor(System.String)
-M:Foundation.NSBundle.ClassNamed(System.String)
-M:Foundation.NSBundle.FromClass(ObjCRuntime.Class)
-M:Foundation.NSBundle.FromIdentifier(System.String)
-M:Foundation.NSBundle.FromPath(System.String)
-M:Foundation.NSBundle.FromUrl(Foundation.NSUrl)
M:Foundation.NSBundle.GetContextHelp(System.String)
-M:Foundation.NSBundle.GetLocalizedAttributedString(System.String,System.String,System.String)
-M:Foundation.NSBundle.GetLocalizedString(Foundation.NSString,Foundation.NSString,Foundation.NSString)
M:Foundation.NSBundle.GetLocalizedString(System.String,System.String,System.String)
-M:Foundation.NSBundle.GetPathsForResources(System.String,System.String)
-M:Foundation.NSBundle.GetPreservationPriority(Foundation.NSString)
M:Foundation.NSBundle.GetUrlForImageResource(System.String)
-M:Foundation.NSBundle.GetUrlForResource(System.String,System.String,System.String,Foundation.NSUrl)
-M:Foundation.NSBundle.GetUrlForResource(System.String,System.String,System.String,System.String)
-M:Foundation.NSBundle.GetUrlForResource(System.String,System.String,System.String)
-M:Foundation.NSBundle.GetUrlForResource(System.String,System.String)
-M:Foundation.NSBundle.GetUrlsForResourcesWithExtension(System.String,System.String,Foundation.NSUrl)
-M:Foundation.NSBundle.GetUrlsForResourcesWithExtension(System.String,System.String,System.String)
-M:Foundation.NSBundle.GetUrlsForResourcesWithExtension(System.String,System.String)
M:Foundation.NSBundle.ImageForResource(System.String)
-M:Foundation.NSBundle.Load
M:Foundation.NSBundle.LoadNib(System.String,Foundation.NSObject,Foundation.NSDictionary)
M:Foundation.NSBundle.LoadNib(System.String,Foundation.NSObject)
M:Foundation.NSBundle.LoadNibNamed(System.String,Foundation.NSObject,Foundation.NSArray@)
-M:Foundation.NSBundle.ObjectForInfoDictionary(System.String)
-M:Foundation.NSBundle.PathForAuxiliaryExecutable(System.String)
M:Foundation.NSBundle.PathForImageResource(System.String)
-M:Foundation.NSBundle.PathForResource(System.String,System.String,System.String,System.String)
-M:Foundation.NSBundle.PathForResource(System.String,System.String,System.String)
-M:Foundation.NSBundle.PathForResource(System.String,System.String)
-M:Foundation.NSBundle.PathForResourceAbsolute(System.String,System.String,System.String)
M:Foundation.NSBundle.PathForSoundResource(System.String)
-M:Foundation.NSBundle.PathsForResources(System.String,System.String,System.String)
-M:Foundation.NSBundle.PathsForResources(System.String,System.String)
M:Foundation.NSBundle.PathsForResources(System.String)
-M:Foundation.NSBundle.SetPreservationPriority(System.Double,Foundation.NSSet{Foundation.NSString})
-M:Foundation.NSBundle.Unload
-M:Foundation.NSBundle.UrlForAuxiliaryExecutable(System.String)
M:Foundation.NSBundleResourceRequest.#ctor(Foundation.NSBundle,Foundation.NSString[])
M:Foundation.NSBundleResourceRequest.#ctor(Foundation.NSBundle,System.String[])
-M:Foundation.NSBundleResourceRequest.#ctor(Foundation.NSSet{Foundation.NSString},Foundation.NSBundle)
-M:Foundation.NSBundleResourceRequest.#ctor(Foundation.NSSet{Foundation.NSString})
M:Foundation.NSBundleResourceRequest.#ctor(Foundation.NSString[])
M:Foundation.NSBundleResourceRequest.#ctor(System.String[])
-M:Foundation.NSBundleResourceRequest.BeginAccessingResources(System.Action{Foundation.NSError})
M:Foundation.NSBundleResourceRequest.BeginAccessingResourcesAsync
-M:Foundation.NSBundleResourceRequest.ConditionallyBeginAccessingResources(System.Action{System.Boolean})
M:Foundation.NSBundleResourceRequest.ConditionallyBeginAccessingResourcesAsync
-M:Foundation.NSBundleResourceRequest.EndAccessingResources
-M:Foundation.NSByteCountFormatter.Create(Foundation.NSUnitInformationStorage,Foundation.NSByteCountFormatterCountStyle)
-M:Foundation.NSByteCountFormatter.Create(Foundation.NSUnitInformationStorage)
-M:Foundation.NSByteCountFormatter.Format(System.Int64,Foundation.NSByteCountFormatterCountStyle)
-M:Foundation.NSByteCountFormatter.Format(System.Int64)
-M:Foundation.NSByteCountFormatter.GetString(Foundation.NSObject)
M:Foundation.NSCache.add_WillEvictObject(System.EventHandler{Foundation.NSObjectEventArgs})
M:Foundation.NSCache.Dispose(System.Boolean)
-M:Foundation.NSCache.ObjectForKey(Foundation.NSObject)
M:Foundation.NSCache.remove_WillEvictObject(System.EventHandler{Foundation.NSObjectEventArgs})
-M:Foundation.NSCache.RemoveAllObjects
-M:Foundation.NSCache.RemoveObjectForKey(Foundation.NSObject)
-M:Foundation.NSCache.SetCost(Foundation.NSObject,Foundation.NSObject,System.UIntPtr)
M:Foundation.NSCache.SetObjectForKey(Foundation.NSObject,Foundation.NSObject)
M:Foundation.NSCacheDelegate_Extensions.WillEvictObject(Foundation.INSCacheDelegate,Foundation.NSCache,Foundation.NSObject)
-M:Foundation.NSCacheDelegate.WillEvictObject(Foundation.NSCache,Foundation.NSObject)
-M:Foundation.NSCachedUrlResponse.#ctor(Foundation.NSUrlResponse,Foundation.NSData,Foundation.NSDictionary,Foundation.NSUrlCacheStoragePolicy)
-M:Foundation.NSCachedUrlResponse.#ctor(Foundation.NSUrlResponse,Foundation.NSData)
-M:Foundation.NSCachedUrlResponse.Copy(Foundation.NSZone)
-M:Foundation.NSCachedUrlResponse.EncodeTo(Foundation.NSCoder)
M:Foundation.NSCalendar.#ctor(Foundation.NSCalendarType)
-M:Foundation.NSCalendar.#ctor(Foundation.NSString)
-M:Foundation.NSCalendar.CompareDate(Foundation.NSDate,Foundation.NSDate,Foundation.NSCalendarUnit)
-M:Foundation.NSCalendar.Components(Foundation.NSCalendarUnit,Foundation.NSDate,Foundation.NSDate,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.Components(Foundation.NSCalendarUnit,Foundation.NSDate)
-M:Foundation.NSCalendar.ComponentsFromDateToDate(Foundation.NSCalendarUnit,Foundation.NSDateComponents,Foundation.NSDateComponents,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.ComponentsInTimeZone(Foundation.NSTimeZone,Foundation.NSDate)
-M:Foundation.NSCalendar.Copy(Foundation.NSZone)
-M:Foundation.NSCalendar.Date(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:Foundation.NSCalendar.DateByAddingComponents(Foundation.NSDateComponents,Foundation.NSDate,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.DateByAddingUnit(Foundation.NSCalendarUnit,System.IntPtr,Foundation.NSDate,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.DateBySettingsHour(System.IntPtr,System.IntPtr,System.IntPtr,Foundation.NSDate,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.DateBySettingUnit(Foundation.NSCalendarUnit,System.IntPtr,Foundation.NSDate,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.DateForWeekOfYear(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:Foundation.NSCalendar.DateFromComponents(Foundation.NSDateComponents)
-M:Foundation.NSCalendar.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSCalendar.EnumerateDatesStartingAfterDate(Foundation.NSDate,Foundation.NSDateComponents,Foundation.NSCalendarOptions,Foundation.EnumerateDatesCallback)
-M:Foundation.NSCalendar.FindNextDateAfterDateMatching(Foundation.NSDate,Foundation.NSCalendarUnit,System.IntPtr,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.FindNextDateAfterDateMatching(Foundation.NSDate,Foundation.NSDateComponents,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.FindNextDateAfterDateMatching(Foundation.NSDate,System.IntPtr,System.IntPtr,System.IntPtr,Foundation.NSCalendarOptions)
-M:Foundation.NSCalendar.FindNextWeekend(Foundation.NSDate@,System.Double@,Foundation.NSCalendarOptions,Foundation.NSDate)
-M:Foundation.NSCalendar.GetComponentFromDate(Foundation.NSCalendarUnit,Foundation.NSDate)
-M:Foundation.NSCalendar.GetComponentsFromDate(System.IntPtr@,System.IntPtr@,System.IntPtr@,System.IntPtr@,Foundation.NSDate)
-M:Foundation.NSCalendar.GetComponentsFromDateForWeekOfYear(System.IntPtr@,System.IntPtr@,System.IntPtr@,System.IntPtr@,Foundation.NSDate)
-M:Foundation.NSCalendar.GetHourComponentsFromDate(System.IntPtr@,System.IntPtr@,System.IntPtr@,System.IntPtr@,Foundation.NSDate)
-M:Foundation.NSCalendar.IsDateInToday(Foundation.NSDate)
-M:Foundation.NSCalendar.IsDateInTomorrow(Foundation.NSDate)
-M:Foundation.NSCalendar.IsDateInWeekend(Foundation.NSDate)
-M:Foundation.NSCalendar.IsDateInYesterday(Foundation.NSDate)
-M:Foundation.NSCalendar.IsEqualToUnitGranularity(Foundation.NSDate,Foundation.NSDate,Foundation.NSCalendarUnit)
-M:Foundation.NSCalendar.IsInSameDay(Foundation.NSDate,Foundation.NSDate)
-M:Foundation.NSCalendar.Matches(Foundation.NSDate,Foundation.NSDateComponents)
-M:Foundation.NSCalendar.MaximumRange(Foundation.NSCalendarUnit)
-M:Foundation.NSCalendar.MinimumRange(Foundation.NSCalendarUnit)
-M:Foundation.NSCalendar.Ordinality(Foundation.NSCalendarUnit,Foundation.NSCalendarUnit,Foundation.NSDate)
-M:Foundation.NSCalendar.Range(Foundation.NSCalendarUnit,Foundation.NSCalendarUnit,Foundation.NSDate)
-M:Foundation.NSCalendar.Range(Foundation.NSCalendarUnit,Foundation.NSDate@,System.Double@,Foundation.NSDate)
-M:Foundation.NSCalendar.RangeOfWeekendContainingDate(Foundation.NSDate@,System.Double@,Foundation.NSDate)
-M:Foundation.NSCalendar.StartOfDayForDate(Foundation.NSDate)
-M:Foundation.NSCalendarDate.#ctor(System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,Foundation.NSTimeZone)
-M:Foundation.NSCalendarDate.#ctor(System.String,System.String,Foundation.NSObject)
-M:Foundation.NSCalendarDate.#ctor(System.String,System.String)
-M:Foundation.NSCalendarDate.#ctor(System.String)
-M:Foundation.NSCalendarDate.DateByAddingYears(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:Foundation.NSCalendarDate.GetDescription(Foundation.NSLocale)
-M:Foundation.NSCalendarDate.GetDescription(System.String,Foundation.NSObject)
-M:Foundation.NSCalendarDate.GetDescription(System.String)
-M:Foundation.NSCharacterSet.Contains(System.Char)
-M:Foundation.NSCharacterSet.Contains(System.UInt32)
-M:Foundation.NSCharacterSet.Copy(Foundation.NSZone)
-M:Foundation.NSCharacterSet.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSCharacterSet.FromBitmap(Foundation.NSData)
-M:Foundation.NSCharacterSet.FromFile(System.String)
-M:Foundation.NSCharacterSet.FromRange(Foundation.NSRange)
-M:Foundation.NSCharacterSet.FromString(System.String)
-M:Foundation.NSCharacterSet.GetBitmapRepresentation
-M:Foundation.NSCharacterSet.HasMemberInPlane(System.Byte)
-M:Foundation.NSCharacterSet.IsSupersetOf(Foundation.NSCharacterSet)
-M:Foundation.NSCharacterSet.MutableCopy(Foundation.NSZone)
-M:Foundation.NSCoder.ContainsKey(System.String)
-M:Foundation.NSCoder.DecodeArrayOfObjects(Foundation.NSSet{ObjCRuntime.Class},System.String)
-M:Foundation.NSCoder.DecodeArrayOfObjects(ObjCRuntime.Class,System.String)
-M:Foundation.NSCoder.DecodeBool(System.String)
M:Foundation.NSCoder.DecodeBytes
-M:Foundation.NSCoder.DecodeBytes(System.String,System.UIntPtr@)
M:Foundation.NSCoder.DecodeBytes(System.String)
-M:Foundation.NSCoder.DecodeBytes(System.UIntPtr@)
-M:Foundation.NSCoder.DecodeDictionary(Foundation.NSSet{ObjCRuntime.Class},Foundation.NSSet{ObjCRuntime.Class},System.String)
-M:Foundation.NSCoder.DecodeDictionary(ObjCRuntime.Class,ObjCRuntime.Class,System.String)
-M:Foundation.NSCoder.DecodeDouble(System.String)
-M:Foundation.NSCoder.DecodeFloat(System.String)
-M:Foundation.NSCoder.DecodeInt(System.String)
-M:Foundation.NSCoder.DecodeLong(System.String)
-M:Foundation.NSCoder.DecodeNInt(System.String)
-M:Foundation.NSCoder.DecodeObject
-M:Foundation.NSCoder.DecodeObject(System.String)
-M:Foundation.NSCoder.DecodeTopLevelObject(Foundation.NSError@)
-M:Foundation.NSCoder.DecodeTopLevelObject(Foundation.NSSet{ObjCRuntime.Class},System.String,Foundation.NSError@)
-M:Foundation.NSCoder.DecodeTopLevelObject(ObjCRuntime.Class,System.String,Foundation.NSError@)
-M:Foundation.NSCoder.DecodeTopLevelObject(System.String,Foundation.NSError@)
M:Foundation.NSCoder.DecodeTopLevelObject(System.Type,System.String,Foundation.NSError@)
M:Foundation.NSCoder.DecodeTopLevelObject(System.Type[],System.String,Foundation.NSError@)
-M:Foundation.NSCoder.Encode(Foundation.NSObject,System.String)
-M:Foundation.NSCoder.Encode(Foundation.NSObject)
-M:Foundation.NSCoder.Encode(System.Boolean,System.String)
M:Foundation.NSCoder.Encode(System.Byte[],System.Int32,System.Int32,System.String)
M:Foundation.NSCoder.Encode(System.Byte[],System.String)
-M:Foundation.NSCoder.Encode(System.Double,System.String)
-M:Foundation.NSCoder.Encode(System.Int32,System.String)
-M:Foundation.NSCoder.Encode(System.Int64,System.String)
-M:Foundation.NSCoder.Encode(System.IntPtr,System.String)
-M:Foundation.NSCoder.Encode(System.Single,System.String)
-M:Foundation.NSCoder.EncodeBlock(System.IntPtr,System.IntPtr,System.String)
-M:Foundation.NSCoder.EncodeConditionalObject(Foundation.NSObject,System.String)
-M:Foundation.NSCoder.EncodeRoot(Foundation.NSObject)
-M:Foundation.NSCoder.Fail(Foundation.NSError)
-M:Foundation.NSCoder.RequiresSecureCoding
M:Foundation.NSCoder.TryDecode(System.String,Foundation.NSObject@)
M:Foundation.NSCoder.TryDecode(System.String,System.Boolean@)
M:Foundation.NSCoder.TryDecode(System.String,System.Byte[]@)
@@ -39766,151 +30237,35 @@ M:Foundation.NSCoder.TryDecode(System.String,System.Int32@)
M:Foundation.NSCoder.TryDecode(System.String,System.Int64@)
M:Foundation.NSCoder.TryDecode(System.String,System.IntPtr@)
M:Foundation.NSCoder.TryDecode(System.String,System.Single@)
-M:Foundation.NSCoding.#ctor(Foundation.NSCoder)
-M:Foundation.NSCoding.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSComparisonPredicate.#ctor(Foundation.NSExpression,Foundation.NSExpression,Foundation.NSComparisonPredicateModifier,Foundation.NSPredicateOperatorType,Foundation.NSComparisonPredicateOptions)
-M:Foundation.NSComparisonPredicate.#ctor(Foundation.NSExpression,Foundation.NSExpression,ObjCRuntime.Selector)
-M:Foundation.NSComparisonPredicate.Create(Foundation.NSExpression,Foundation.NSExpression,Foundation.NSComparisonPredicateModifier,Foundation.NSPredicateOperatorType,Foundation.NSComparisonPredicateOptions)
-M:Foundation.NSComparisonPredicate.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSComparisonPredicate.FromSelector(Foundation.NSExpression,Foundation.NSExpression,ObjCRuntime.Selector)
-M:Foundation.NSCompoundPredicate.#ctor(Foundation.NSCompoundPredicateType,Foundation.NSPredicate[])
-M:Foundation.NSCompoundPredicate.CreateAndPredicate(Foundation.NSPredicate[])
-M:Foundation.NSCompoundPredicate.CreateNotPredicate(Foundation.NSPredicate)
-M:Foundation.NSCompoundPredicate.CreateOrPredicate(Foundation.NSPredicate[])
-M:Foundation.NSCompoundPredicate.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSCondition.Broadcast
-M:Foundation.NSCondition.Lock
-M:Foundation.NSCondition.Signal
-M:Foundation.NSCondition.Unlock
-M:Foundation.NSCondition.Wait
-M:Foundation.NSCondition.WaitUntilDate(Foundation.NSDate)
-M:Foundation.NSConditionLock.#ctor(System.IntPtr)
-M:Foundation.NSConditionLock.Lock
-M:Foundation.NSConditionLock.LockBeforeDate(Foundation.NSDate)
-M:Foundation.NSConditionLock.LockWhenCondition(System.IntPtr,Foundation.NSDate)
-M:Foundation.NSConditionLock.LockWhenCondition(System.IntPtr)
-M:Foundation.NSConditionLock.TryLock
-M:Foundation.NSConditionLock.TryLockWhenCondition(System.IntPtr)
-M:Foundation.NSConditionLock.Unlock
-M:Foundation.NSConditionLock.UnlockWithCondition(System.IntPtr)
-M:Foundation.NSConnection.AddRequestMode(Foundation.NSString)
-M:Foundation.NSConnection.AddRunLoop(Foundation.NSRunLoop)
-M:Foundation.NSConnection.Create(Foundation.NSPort,Foundation.NSPort)
-M:Foundation.NSConnection.CreateService(System.String,Foundation.NSObject,Foundation.NSPortNameServer)
-M:Foundation.NSConnection.CreateService(System.String,Foundation.NSObject)
-M:Foundation.NSConnection.Dispatch(Foundation.NSArray)
M:Foundation.NSConnection.Dispose(System.Boolean)
M:Foundation.NSConnection.GetRootProxy``1
M:Foundation.NSConnection.GetRootProxy``1(System.String,System.String,Foundation.NSPortNameServer)
M:Foundation.NSConnection.GetRootProxy``1(System.String,System.String)
-M:Foundation.NSConnection.Invalidate
-M:Foundation.NSConnection.LookupService(System.String,System.String,Foundation.NSPortNameServer)
-M:Foundation.NSConnection.LookupService(System.String,System.String)
-M:Foundation.NSConnection.RegisterName(System.String,Foundation.NSPortNameServer)
-M:Foundation.NSConnection.RegisterName(System.String)
-M:Foundation.NSConnection.RemoveRequestMode(Foundation.NSString)
-M:Foundation.NSConnection.RemoveRunLoop(Foundation.NSRunLoop)
-M:Foundation.NSConnection.RunInNewThread
M:Foundation.NSConnectionDelegate_Extensions.AllowNewConnection(Foundation.INSConnectionDelegate,Foundation.NSConnection,Foundation.NSConnection)
M:Foundation.NSConnectionDelegate_Extensions.AuthenticateComponents(Foundation.INSConnectionDelegate,Foundation.NSArray,Foundation.NSData)
M:Foundation.NSConnectionDelegate_Extensions.CreateConversation(Foundation.INSConnectionDelegate,Foundation.NSConnection)
M:Foundation.NSConnectionDelegate_Extensions.GetAuthenticationData(Foundation.INSConnectionDelegate,Foundation.NSArray)
M:Foundation.NSConnectionDelegate_Extensions.HandleRequest(Foundation.INSConnectionDelegate,Foundation.NSConnection,Foundation.NSDistantObjectRequest)
M:Foundation.NSConnectionDelegate_Extensions.ShouldMakeNewConnection(Foundation.INSConnectionDelegate,Foundation.NSConnection,Foundation.NSConnection)
-M:Foundation.NSConnectionDelegate.AllowNewConnection(Foundation.NSConnection,Foundation.NSConnection)
-M:Foundation.NSConnectionDelegate.AuthenticateComponents(Foundation.NSArray,Foundation.NSData)
-M:Foundation.NSConnectionDelegate.CreateConversation(Foundation.NSConnection)
-M:Foundation.NSConnectionDelegate.GetAuthenticationData(Foundation.NSArray)
-M:Foundation.NSConnectionDelegate.HandleRequest(Foundation.NSConnection,Foundation.NSDistantObjectRequest)
-M:Foundation.NSConnectionDelegate.ShouldMakeNewConnection(Foundation.NSConnection,Foundation.NSConnection)
-M:Foundation.NSCopying.Copy(Foundation.NSZone)
-M:Foundation.NSData.#ctor(Foundation.NSData,Foundation.NSDataBase64DecodingOptions)
-M:Foundation.NSData.#ctor(System.IntPtr,System.UIntPtr,System.Action{System.IntPtr,System.UIntPtr})
-M:Foundation.NSData.#ctor(System.String,Foundation.NSDataBase64DecodingOptions)
M:Foundation.NSData.AsStream
-M:Foundation.NSData.Compress(Foundation.NSDataCompressionAlgorithm,Foundation.NSError@)
-M:Foundation.NSData.Copy(Foundation.NSZone)
-M:Foundation.NSData.Decompress(Foundation.NSDataCompressionAlgorithm,Foundation.NSError@)
-M:Foundation.NSData.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSData.EnumerateByteRange(Foundation.NSDataByteRangeEnumerator)
-M:Foundation.NSData.Find(Foundation.NSData,Foundation.NSDataSearchOptions,Foundation.NSRange)
M:Foundation.NSData.FromArray(System.Byte[])
-M:Foundation.NSData.FromBytes(System.IntPtr,System.UIntPtr)
-M:Foundation.NSData.FromBytesNoCopy(System.IntPtr,System.UIntPtr,System.Boolean)
-M:Foundation.NSData.FromBytesNoCopy(System.IntPtr,System.UIntPtr)
-M:Foundation.NSData.FromData(Foundation.NSData)
-M:Foundation.NSData.FromFile(System.String,Foundation.NSDataReadingOptions,Foundation.NSError@)
-M:Foundation.NSData.FromFile(System.String)
M:Foundation.NSData.FromStream(System.IO.Stream)
M:Foundation.NSData.FromString(System.String,Foundation.NSStringEncoding)
M:Foundation.NSData.FromString(System.String)
-M:Foundation.NSData.FromUrl(Foundation.NSUrl,Foundation.NSDataReadingOptions,Foundation.NSError@)
-M:Foundation.NSData.FromUrl(Foundation.NSUrl)
-M:Foundation.NSData.GetBase64EncodedData(Foundation.NSDataBase64EncodingOptions)
-M:Foundation.NSData.GetBase64EncodedString(Foundation.NSDataBase64EncodingOptions)
-M:Foundation.NSData.GetBytes(System.IntPtr,Foundation.NSRange)
-M:Foundation.NSData.GetBytes(System.IntPtr,System.UIntPtr)
-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@)
-M:Foundation.NSData.Save(Foundation.NSUrl,System.Boolean)
M:Foundation.NSData.Save(System.String,Foundation.NSDataWritingOptions,Foundation.NSError@)
M:Foundation.NSData.Save(System.String,System.Boolean,Foundation.NSError@)
-M:Foundation.NSData.Save(System.String,System.Boolean)
-M:Foundation.NSData.Subdata(Foundation.NSRange)
M:Foundation.NSData.ToArray
M:Foundation.NSData.ToString
M:Foundation.NSData.ToString(Foundation.NSStringEncoding)
M:Foundation.NSDataDetector.#ctor(Foundation.NSTextCheckingType,Foundation.NSError@)
-M:Foundation.NSDataDetector.#ctor(Foundation.NSTextCheckingTypes,Foundation.NSError@)
-M:Foundation.NSDataDetector.Copy(Foundation.NSZone)
M:Foundation.NSDataDetector.Create(Foundation.NSTextCheckingType,Foundation.NSError@)
-M:Foundation.NSDataDetector.Create(Foundation.NSTextCheckingTypes,Foundation.NSError@)
-M:Foundation.NSDataDetector.EncodeTo(Foundation.NSCoder)
M:Foundation.NSDate.#ctor(System.Double)
-M:Foundation.NSDate.AddSeconds(System.Double)
-M:Foundation.NSDate.Compare(Foundation.NSDate)
-M:Foundation.NSDate.Copy(Foundation.NSZone)
M:Foundation.NSDate.CreateFromSRAbsoluteTime(System.Double)
-M:Foundation.NSDate.DescriptionWithLocale(Foundation.NSLocale)
-M:Foundation.NSDate.EarlierDate(Foundation.NSDate)
-M:Foundation.NSDate.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSDate.FromTimeIntervalSince1970(System.Double)
-M:Foundation.NSDate.FromTimeIntervalSinceNow(System.Double)
-M:Foundation.NSDate.FromTimeIntervalSinceReferenceDate(System.Double)
-M:Foundation.NSDate.GetSecondsSince(Foundation.NSDate)
-M:Foundation.NSDate.IsEqualToDate(Foundation.NSDate)
-M:Foundation.NSDate.LaterDate(Foundation.NSDate)
M:Foundation.NSDate.op_Explicit(Foundation.NSDate)~System.DateTime
M:Foundation.NSDate.op_Explicit(System.DateTime)~Foundation.NSDate
-M:Foundation.NSDateComponents.Copy(Foundation.NSZone)
-M:Foundation.NSDateComponents.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSDateComponents.GetValueForComponent(Foundation.NSCalendarUnit)
-M:Foundation.NSDateComponents.IsValidDateInCalendar(Foundation.NSCalendar)
-M:Foundation.NSDateComponents.SetValueForComponent(System.IntPtr,Foundation.NSCalendarUnit)
-M:Foundation.NSDateComponentsFormatter.GetObjectValue(Foundation.NSObject@,System.String,System.String@)
-M:Foundation.NSDateComponentsFormatter.LocalizedStringFromDateComponents(Foundation.NSDateComponents,Foundation.NSDateComponentsFormatterUnitsStyle)
-M:Foundation.NSDateComponentsFormatter.StringForObjectValue(Foundation.NSObject)
-M:Foundation.NSDateComponentsFormatter.StringFromDate(Foundation.NSDate,Foundation.NSDate)
-M:Foundation.NSDateComponentsFormatter.StringFromDateComponents(Foundation.NSDateComponents)
-M:Foundation.NSDateComponentsFormatter.StringFromTimeInterval(System.Double)
-M:Foundation.NSDateFormatter.GetDateFormatFromTemplate(System.String,System.UIntPtr,Foundation.NSLocale)
-M:Foundation.NSDateFormatter.Parse(System.String)
-M:Foundation.NSDateFormatter.SetLocalizedDateFormatFromTemplate(System.String)
-M:Foundation.NSDateFormatter.ToLocalizedString(Foundation.NSDate,Foundation.NSDateFormatterStyle,Foundation.NSDateFormatterStyle)
-M:Foundation.NSDateFormatter.ToString(Foundation.NSDate)
-M:Foundation.NSDateInterval.#ctor(Foundation.NSDate,Foundation.NSDate)
-M:Foundation.NSDateInterval.#ctor(Foundation.NSDate,System.Double)
-M:Foundation.NSDateInterval.Compare(Foundation.NSDateInterval)
-M:Foundation.NSDateInterval.ContainsDate(Foundation.NSDate)
-M:Foundation.NSDateInterval.Copy(Foundation.NSZone)
-M:Foundation.NSDateInterval.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSDateInterval.GetIntersection(Foundation.NSDateInterval)
-M:Foundation.NSDateInterval.Intersects(Foundation.NSDateInterval)
-M:Foundation.NSDateInterval.IsEqualTo(Foundation.NSDateInterval)
-M:Foundation.NSDateIntervalFormatter.StringFromDate(Foundation.NSDate,Foundation.NSDate)
-M:Foundation.NSDateIntervalFormatter.ToString(Foundation.NSDateInterval)
M:Foundation.NSDecimal.Add(Foundation.NSDecimal@,Foundation.NSDecimal@,Foundation.NSDecimal@,Foundation.NSRoundingMode)
M:Foundation.NSDecimal.Compare(Foundation.NSDecimal@,Foundation.NSDecimal@)
M:Foundation.NSDecimal.Divide(Foundation.NSDecimal@,Foundation.NSDecimal@,Foundation.NSDecimal@,Foundation.NSRoundingMode)
@@ -39938,56 +30293,16 @@ M:Foundation.NSDecimal.Power(Foundation.NSDecimal@,Foundation.NSDecimal@,System.
M:Foundation.NSDecimal.Round(Foundation.NSDecimal@,Foundation.NSDecimal@,System.IntPtr,Foundation.NSRoundingMode)
M:Foundation.NSDecimal.Subtract(Foundation.NSDecimal@,Foundation.NSDecimal@,Foundation.NSDecimal@,Foundation.NSRoundingMode)
M:Foundation.NSDecimal.ToString
-M:Foundation.NSDecimalNumber.#ctor(Foundation.NSDecimal)
-M:Foundation.NSDecimalNumber.#ctor(System.Int64,System.Int16,System.Boolean)
-M:Foundation.NSDecimalNumber.#ctor(System.String,Foundation.NSObject)
-M:Foundation.NSDecimalNumber.#ctor(System.String)
-M:Foundation.NSDecimalNumber.Add(Foundation.NSDecimalNumber,Foundation.NSObject)
-M:Foundation.NSDecimalNumber.Add(Foundation.NSDecimalNumber)
-M:Foundation.NSDecimalNumber.Compare(Foundation.NSNumber)
-M:Foundation.NSDecimalNumber.DescriptionWithLocale(Foundation.NSLocale)
-M:Foundation.NSDecimalNumber.Divide(Foundation.NSDecimalNumber,Foundation.NSObject)
-M:Foundation.NSDecimalNumber.Divide(Foundation.NSDecimalNumber)
-M:Foundation.NSDecimalNumber.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSDecimalNumber.Multiply(Foundation.NSDecimalNumber,Foundation.NSObject)
-M:Foundation.NSDecimalNumber.Multiply(Foundation.NSDecimalNumber)
-M:Foundation.NSDecimalNumber.MultiplyPowerOf10(System.Int16,Foundation.NSObject)
-M:Foundation.NSDecimalNumber.MultiplyPowerOf10(System.Int16)
-M:Foundation.NSDecimalNumber.RaiseTo(System.UIntPtr,Foundation.NSObject)
-M:Foundation.NSDecimalNumber.RaiseTo(System.UIntPtr)
-M:Foundation.NSDecimalNumber.Rounding(Foundation.NSObject)
-M:Foundation.NSDecimalNumber.Subtract(Foundation.NSDecimalNumber,Foundation.NSObject)
-M:Foundation.NSDecimalNumber.Subtract(Foundation.NSDecimalNumber)
-M:Foundation.NSDictionary.#ctor(Foundation.NSDictionary,System.Boolean)
-M:Foundation.NSDictionary.#ctor(Foundation.NSDictionary)
M:Foundation.NSDictionary.#ctor(Foundation.NSObject,Foundation.NSObject,Foundation.NSObject[])
-M:Foundation.NSDictionary.#ctor(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSDictionary.#ctor(Foundation.NSUrl)
M:Foundation.NSDictionary.#ctor(System.Object,System.Object,System.Object[])
-M:Foundation.NSDictionary.#ctor(System.String)
M:Foundation.NSDictionary.ContainsKey(Foundation.NSObject)
-M:Foundation.NSDictionary.Copy(Foundation.NSZone)
-M:Foundation.NSDictionary.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSDictionary.FromDictionary(Foundation.NSDictionary)
-M:Foundation.NSDictionary.FromFile(System.String)
-M:Foundation.NSDictionary.FromObjectAndKey(Foundation.NSObject,Foundation.NSObject)
M:Foundation.NSDictionary.FromObjectsAndKeys(Foundation.NSObject[],Foundation.NSObject[],System.IntPtr)
M:Foundation.NSDictionary.FromObjectsAndKeys(Foundation.NSObject[],Foundation.NSObject[])
M:Foundation.NSDictionary.FromObjectsAndKeys(System.Object[],System.Object[],System.IntPtr)
M:Foundation.NSDictionary.FromObjectsAndKeys(System.Object[],System.Object[])
-M:Foundation.NSDictionary.FromUrl(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSDictionary.FromUrl(Foundation.NSUrl)
-M:Foundation.NSDictionary.GetSharedKeySetForKeys(Foundation.NSObject[])
-M:Foundation.NSDictionary.IsEqualToDictionary(Foundation.NSDictionary)
-M:Foundation.NSDictionary.KeysForObject(Foundation.NSObject)
M:Foundation.NSDictionary.LowlevelObjectForKey(System.IntPtr)
-M:Foundation.NSDictionary.MutableCopy(Foundation.NSZone)
-M:Foundation.NSDictionary.ObjectForKey(Foundation.NSObject)
-M:Foundation.NSDictionary.ObjectsForKeys(Foundation.NSArray,Foundation.NSObject)
M:Foundation.NSDictionary.ToFileAttributes
M:Foundation.NSDictionary.TryGetValue(Foundation.NSObject,Foundation.NSObject@)
-M:Foundation.NSDictionary.WriteToFile(System.String,System.Boolean)
-M:Foundation.NSDictionary.WriteToUrl(Foundation.NSUrl,System.Boolean)
M:Foundation.NSDictionary`2.#ctor
M:Foundation.NSDictionary`2.#ctor(`0,`1)
M:Foundation.NSDictionary`2.#ctor(`0[],`1[])
@@ -40005,211 +30320,49 @@ M:Foundation.NSDictionary`2.KeysForObject(`1)
M:Foundation.NSDictionary`2.ObjectForKey(`0)
M:Foundation.NSDictionary`2.ObjectsForKeys(`0[],`1)
M:Foundation.NSDictionary`2.TryGetValue(`0,.TValue@)
-M:Foundation.NSDimension.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSDimension.#ctor(System.String)
-M:Foundation.NSDimension.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSDirectoryEnumerator.SkipDescendents
-M:Foundation.NSDistantObjectRequest.Reply(Foundation.NSException)
-M:Foundation.NSDistributedLock.#ctor(System.String)
-M:Foundation.NSDistributedLock.BreakLock
-M:Foundation.NSDistributedLock.FromPath(System.String)
-M:Foundation.NSDistributedLock.TryLock
-M:Foundation.NSDistributedLock.Unlock
-M:Foundation.NSDistributedNotificationCenter.AddObserver(Foundation.NSObject,ObjCRuntime.Selector,System.String,Foundation.NSObject)
-M:Foundation.NSDistributedNotificationCenter.AddObserver(Foundation.NSObject,ObjCRuntime.Selector,System.String,System.String,Foundation.NSNotificationSuspensionBehavior)
-M:Foundation.NSDistributedNotificationCenter.PostNotificationName(System.String,System.String,Foundation.NSDictionary,Foundation.NSNotificationFlags)
-M:Foundation.NSDistributedNotificationCenter.PostNotificationName(System.String,System.String,Foundation.NSDictionary,System.Boolean)
-M:Foundation.NSDistributedNotificationCenter.PostNotificationName(System.String,System.String,Foundation.NSDictionary)
-M:Foundation.NSDistributedNotificationCenter.PostNotificationName(System.String,System.String)
-M:Foundation.NSDistributedNotificationCenter.RemoveObserver(Foundation.NSObject,System.String,Foundation.NSObject)
-M:Foundation.NSEnergyFormatter.GetObjectValue(Foundation.NSObject@,System.String,System.String@)
-M:Foundation.NSEnergyFormatter.StringFromJoules(System.Double)
-M:Foundation.NSEnergyFormatter.StringFromValue(System.Double,Foundation.NSEnergyFormatterUnit)
-M:Foundation.NSEnergyFormatter.UnitStringFromJoules(System.Double,Foundation.NSEnergyFormatterUnit@)
-M:Foundation.NSEnergyFormatter.UnitStringFromValue(System.Double,Foundation.NSEnergyFormatterUnit)
-M:Foundation.NSEnumerator.NextObject
M:Foundation.NSEnumerator`1.NextObject
M:Foundation.NSError.#ctor
-M:Foundation.NSError.#ctor(Foundation.NSString,System.IntPtr,Foundation.NSDictionary)
M:Foundation.NSError.#ctor(Foundation.NSString,System.IntPtr)
-M:Foundation.NSError.Copy(Foundation.NSZone)
-M:Foundation.NSError.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSError.FromDomain(Foundation.NSString,System.IntPtr,Foundation.NSDictionary)
M:Foundation.NSError.FromDomain(Foundation.NSString,System.IntPtr)
M:Foundation.NSError.GetFileProviderError(FileProvider.INSFileProviderItem)
M:Foundation.NSError.GetFileProviderError(System.String)
M:Foundation.NSError.GetFileProviderErrorForRejectedDeletion(FileProvider.INSFileProviderItem)
-M:Foundation.NSError.GetUserInfoValueProvider(System.String)
-M:Foundation.NSError.SetUserInfoValueProvider(System.String,Foundation.NSErrorUserInfoValueProvider)
M:Foundation.NSError.ToString
M:Foundation.NSErrorEventArgs.#ctor(Foundation.NSError)
M:Foundation.NSErrorException.#ctor(Foundation.NSError)
-M:Foundation.NSException.#ctor(System.String,System.String,Foundation.NSDictionary)
-M:Foundation.NSException.Copy(Foundation.NSZone)
-M:Foundation.NSException.EncodeTo(Foundation.NSCoder)
M:Foundation.NSExceptionError.#ctor(System.Exception)
-M:Foundation.NSExpression.#ctor(Foundation.NSExpressionType)
-M:Foundation.NSExpression.AllowEvaluation
-M:Foundation.NSExpression.Copy(Foundation.NSZone)
-M:Foundation.NSExpression.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSExpression.EvaluateWith(Foundation.NSObject,Foundation.NSMutableDictionary)
-M:Foundation.NSExpression.FromAggregate(Foundation.NSExpression[])
-M:Foundation.NSExpression.FromAnyKey
-M:Foundation.NSExpression.FromConditional(Foundation.NSPredicate,Foundation.NSExpression,Foundation.NSExpression)
-M:Foundation.NSExpression.FromConstant(Foundation.NSObject)
-M:Foundation.NSExpression.FromFormat(System.String,Foundation.NSObject[])
-M:Foundation.NSExpression.FromFormat(System.String)
-M:Foundation.NSExpression.FromFunction(Foundation.NSExpression,System.String,Foundation.NSExpression[])
-M:Foundation.NSExpression.FromFunction(Foundation.NSExpressionCallbackHandler,Foundation.NSExpression[])
-M:Foundation.NSExpression.FromFunction(System.String,Foundation.NSExpression[])
-M:Foundation.NSExpression.FromIntersectSet(Foundation.NSExpression,Foundation.NSExpression)
-M:Foundation.NSExpression.FromKeyPath(System.String)
-M:Foundation.NSExpression.FromMinusSet(Foundation.NSExpression,Foundation.NSExpression)
-M:Foundation.NSExpression.FromSubquery(Foundation.NSExpression,System.String,Foundation.NSObject)
-M:Foundation.NSExpression.FromUnionSet(Foundation.NSExpression,Foundation.NSExpression)
-M:Foundation.NSExpression.FromVariable(System.String)
-M:Foundation.NSExtensionContext.CancelRequest(Foundation.NSError)
-M:Foundation.NSExtensionContext.CompleteRequest(Foundation.NSExtensionItem[],System.Action{System.Boolean})
M:Foundation.NSExtensionContext.CompleteRequestAsync(Foundation.NSExtensionItem[])
-M:Foundation.NSExtensionContext.OpenUrl(Foundation.NSUrl,System.Action{System.Boolean})
M:Foundation.NSExtensionContext.OpenUrlAsync(Foundation.NSUrl)
-M:Foundation.NSExtensionItem.Copy(Foundation.NSZone)
-M:Foundation.NSExtensionItem.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSExtensionRequestHandling.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
-M:Foundation.NSFileAccessIntent.CreateReadingIntent(Foundation.NSUrl,Foundation.NSFileCoordinatorReadingOptions)
-M:Foundation.NSFileAccessIntent.CreateWritingIntent(Foundation.NSUrl,Foundation.NSFileCoordinatorWritingOptions)
M:Foundation.NSFileAttributes.#ctor
M:Foundation.NSFileAttributes.FromDictionary(Foundation.NSDictionary)
-M:Foundation.NSFileCoordinator.#ctor(Foundation.INSFilePresenter)
-M:Foundation.NSFileCoordinator.AddFilePresenter(Foundation.INSFilePresenter)
-M:Foundation.NSFileCoordinator.Cancel
-M:Foundation.NSFileCoordinator.CoordinateAccess(Foundation.NSFileAccessIntent[],Foundation.NSOperationQueue,System.Action{Foundation.NSError})
-M:Foundation.NSFileCoordinator.CoordinateBatch(Foundation.NSUrl[],Foundation.NSFileCoordinatorReadingOptions,Foundation.NSUrl[],Foundation.NSFileCoordinatorWritingOptions,Foundation.NSError@,System.Action)
-M:Foundation.NSFileCoordinator.CoordinateRead(Foundation.NSUrl,Foundation.NSFileCoordinatorReadingOptions,Foundation.NSError@,System.Action{Foundation.NSUrl})
-M:Foundation.NSFileCoordinator.CoordinateReadWrite(Foundation.NSUrl,Foundation.NSFileCoordinatorReadingOptions,Foundation.NSUrl,Foundation.NSFileCoordinatorWritingOptions,Foundation.NSError@,Foundation.NSFileCoordinatorWorkerRW)
-M:Foundation.NSFileCoordinator.CoordinateWrite(Foundation.NSUrl,Foundation.NSFileCoordinatorWritingOptions,Foundation.NSError@,System.Action{Foundation.NSUrl})
-M:Foundation.NSFileCoordinator.CoordinateWriteWrite(Foundation.NSUrl,Foundation.NSFileCoordinatorWritingOptions,Foundation.NSUrl,Foundation.NSFileCoordinatorWritingOptions,Foundation.NSError@,Foundation.NSFileCoordinatorWorkerRW)
-M:Foundation.NSFileCoordinator.ItemMoved(Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFileCoordinator.ItemUbiquityAttributesChanged(Foundation.NSUrl,Foundation.NSSet{Foundation.NSString})
-M:Foundation.NSFileCoordinator.RemoveFilePresenter(Foundation.INSFilePresenter)
-M:Foundation.NSFileCoordinator.WillMove(Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFileHandle.#ctor(System.Int32,System.Boolean)
-M:Foundation.NSFileHandle.#ctor(System.Int32)
-M:Foundation.NSFileHandle.AcceptConnectionInBackground
M:Foundation.NSFileHandle.AcceptConnectionInBackground(Foundation.NSRunLoopMode[])
-M:Foundation.NSFileHandle.AcceptConnectionInBackground(Foundation.NSString[])
-M:Foundation.NSFileHandle.AvailableData
-M:Foundation.NSFileHandle.Close(Foundation.NSError@)
-M:Foundation.NSFileHandle.CloseFile
-M:Foundation.NSFileHandle.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSFileHandle.FromNullDevice
-M:Foundation.NSFileHandle.FromStandardError
-M:Foundation.NSFileHandle.FromStandardInput
-M:Foundation.NSFileHandle.FromStandardOutput
-M:Foundation.NSFileHandle.GetOffset(System.UInt64@,Foundation.NSError@)
-M:Foundation.NSFileHandle.OffsetInFile
-M:Foundation.NSFileHandle.OpenRead(System.String)
-M:Foundation.NSFileHandle.OpenReadUrl(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileHandle.OpenUpdate(System.String)
-M:Foundation.NSFileHandle.OpenUpdateUrl(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileHandle.OpenWrite(System.String)
-M:Foundation.NSFileHandle.OpenWriteUrl(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileHandle.Read(System.UIntPtr,Foundation.NSError@)
-M:Foundation.NSFileHandle.ReadDataOfLength(System.UIntPtr)
-M:Foundation.NSFileHandle.ReadDataToEndOfFile
-M:Foundation.NSFileHandle.ReadInBackground
M:Foundation.NSFileHandle.ReadInBackground(Foundation.NSRunLoopMode[])
-M:Foundation.NSFileHandle.ReadInBackground(Foundation.NSString[])
-M:Foundation.NSFileHandle.ReadToEnd(Foundation.NSError@)
-M:Foundation.NSFileHandle.ReadToEndOfFileInBackground
M:Foundation.NSFileHandle.ReadToEndOfFileInBackground(Foundation.NSRunLoopMode[])
-M:Foundation.NSFileHandle.ReadToEndOfFileInBackground(Foundation.NSString[])
-M:Foundation.NSFileHandle.Seek(System.UInt64,Foundation.NSError@)
-M:Foundation.NSFileHandle.SeekToEnd(System.UInt64@,Foundation.NSError@)
-M:Foundation.NSFileHandle.SeekToEndOfFile
-M:Foundation.NSFileHandle.SeekToFileOffset(System.UInt64)
M:Foundation.NSFileHandle.SetReadabilityHandler(System.Action{Foundation.NSFileHandle})
M:Foundation.NSFileHandle.SetWriteabilityHandle(System.Action{Foundation.NSFileHandle})
-M:Foundation.NSFileHandle.Synchronize(Foundation.NSError@)
-M:Foundation.NSFileHandle.SynchronizeFile
-M:Foundation.NSFileHandle.Truncate(System.UInt64,Foundation.NSError@)
-M:Foundation.NSFileHandle.TruncateFileAtOffset(System.UInt64)
-M:Foundation.NSFileHandle.WaitForDataInBackground
M:Foundation.NSFileHandle.WaitForDataInBackground(Foundation.NSRunLoopMode[])
-M:Foundation.NSFileHandle.WaitForDataInBackground(Foundation.NSString[])
-M:Foundation.NSFileHandle.Write(Foundation.NSData,Foundation.NSError@)
-M:Foundation.NSFileHandle.WriteData(Foundation.NSData)
M:Foundation.NSFileHandleConnectionAcceptedEventArgs.#ctor(Foundation.NSNotification)
M:Foundation.NSFileHandleReadEventArgs.#ctor(Foundation.NSNotification)
M:Foundation.NSFileManager_NSUserInformation.GetHomeDirectory(Foundation.NSFileManager,System.String)
M:Foundation.NSFileManager_NSUserInformation.GetHomeDirectoryForCurrentUser(Foundation.NSFileManager)
M:Foundation.NSFileManager_NSUserInformation.GetTemporaryDirectory(Foundation.NSFileManager)
-M:Foundation.NSFileManager.ChangeCurrentDirectory(System.String)
-M:Foundation.NSFileManager.ComponentsToDisplay(System.String)
-M:Foundation.NSFileManager.Contents(System.String)
-M:Foundation.NSFileManager.ContentsEqual(System.String,System.String)
-M:Foundation.NSFileManager.Copy(Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.Copy(System.String,System.String,Foundation.NSError@)
-M:Foundation.NSFileManager.CreateDirectory(Foundation.NSUrl,System.Boolean,Foundation.NSDictionary,Foundation.NSError@)
-M:Foundation.NSFileManager.CreateDirectory(System.String,System.Boolean,Foundation.NSDictionary,Foundation.NSError@)
M:Foundation.NSFileManager.CreateDirectory(System.String,System.Boolean,Foundation.NSFileAttributes,Foundation.NSError@)
M:Foundation.NSFileManager.CreateDirectory(System.String,System.Boolean,Foundation.NSFileAttributes)
-M:Foundation.NSFileManager.CreateFile(System.String,Foundation.NSData,Foundation.NSDictionary)
M:Foundation.NSFileManager.CreateFile(System.String,Foundation.NSData,Foundation.NSFileAttributes)
-M:Foundation.NSFileManager.CreateSymbolicLink(Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.CreateSymbolicLink(System.String,System.String,Foundation.NSError@)
-M:Foundation.NSFileManager.DisplayName(System.String)
M:Foundation.NSFileManager.Dispose(System.Boolean)
-M:Foundation.NSFileManager.EvictUbiquitous(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.FileExists(System.String,System.Boolean@)
-M:Foundation.NSFileManager.FileExists(System.String)
M:Foundation.NSFileManager.FromAuthorization(AppKit.NSWorkspaceAuthorization)
M:Foundation.NSFileManager.GetAttributes(System.String,Foundation.NSError@)
M:Foundation.NSFileManager.GetAttributes(System.String)
-M:Foundation.NSFileManager.GetContainerUrl(System.String)
-M:Foundation.NSFileManager.GetCurrentDirectory
-M:Foundation.NSFileManager.GetDirectoryContent(Foundation.NSUrl,Foundation.NSArray,Foundation.NSDirectoryEnumerationOptions,Foundation.NSError@)
-M:Foundation.NSFileManager.GetDirectoryContent(System.String,Foundation.NSError@)
-M:Foundation.NSFileManager.GetDirectoryContentRecursive(System.String,Foundation.NSError@)
-M:Foundation.NSFileManager.GetEnumerator(Foundation.NSUrl,Foundation.NSString[],Foundation.NSDirectoryEnumerationOptions,Foundation.NSEnumerateErrorHandler)
-M:Foundation.NSFileManager.GetEnumerator(System.String)
-M:Foundation.NSFileManager.GetFileProviderServices(Foundation.NSUrl,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSFileProviderService},Foundation.NSError})
M:Foundation.NSFileManager.GetFileProviderServicesAsync(Foundation.NSUrl)
M:Foundation.NSFileManager.GetFileSystemAttributes(System.String,Foundation.NSError@)
M:Foundation.NSFileManager.GetFileSystemAttributes(System.String)
M:Foundation.NSFileManager.GetHomeDirectory(System.String)
-M:Foundation.NSFileManager.GetMountedVolumes(Foundation.NSArray,Foundation.NSVolumeEnumerationOptions)
M:Foundation.NSFileManager.GetMountedVolumes(Foundation.NSString[],Foundation.NSVolumeEnumerationOptions)
-M:Foundation.NSFileManager.GetRelationship(Foundation.NSUrlRelationship@,Foundation.NSSearchPathDirectory,Foundation.NSSearchPathDomain,Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.GetRelationship(Foundation.NSUrlRelationship@,Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@)
M:Foundation.NSFileManager.GetSkipBackupAttribute(System.String,Foundation.NSError@)
M:Foundation.NSFileManager.GetSkipBackupAttribute(System.String)
-M:Foundation.NSFileManager.GetSymbolicLinkDestination(System.String,Foundation.NSError@)
-M:Foundation.NSFileManager.GetUrl(Foundation.NSSearchPathDirectory,Foundation.NSSearchPathDomain,Foundation.NSUrl,System.Boolean,Foundation.NSError@)
-M:Foundation.NSFileManager.GetUrlForPublishingUbiquitousItem(Foundation.NSUrl,Foundation.NSDate@,Foundation.NSError@)
-M:Foundation.NSFileManager.GetUrlForUbiquityContainer(System.String)
-M:Foundation.NSFileManager.GetUrls(Foundation.NSSearchPathDirectory,Foundation.NSSearchPathDomain)
-M:Foundation.NSFileManager.IsDeletableFile(System.String)
-M:Foundation.NSFileManager.IsExecutableFile(System.String)
-M:Foundation.NSFileManager.IsReadableFile(System.String)
-M:Foundation.NSFileManager.IsUbiquitous(Foundation.NSUrl)
-M:Foundation.NSFileManager.IsWritableFile(System.String)
-M:Foundation.NSFileManager.Link(Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.Link(System.String,System.String,Foundation.NSError@)
-M:Foundation.NSFileManager.Move(Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.Move(System.String,System.String,Foundation.NSError@)
-M:Foundation.NSFileManager.Remove(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.Remove(System.String,Foundation.NSError@)
-M:Foundation.NSFileManager.Replace(Foundation.NSUrl,Foundation.NSUrl,System.String,Foundation.NSFileManagerItemReplacementOptions,Foundation.NSUrl@,Foundation.NSError@)
-M:Foundation.NSFileManager.SetAttributes(Foundation.NSDictionary,System.String,Foundation.NSError@)
M:Foundation.NSFileManager.SetAttributes(Foundation.NSFileAttributes,System.String,Foundation.NSError@)
M:Foundation.NSFileManager.SetAttributes(Foundation.NSFileAttributes,System.String)
M:Foundation.NSFileManager.SetSkipBackupAttribute(System.String,System.Boolean)
-M:Foundation.NSFileManager.SetUbiquitous(System.Boolean,Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.StartDownloadingUbiquitous(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileManager.Subpaths(System.String)
-M:Foundation.NSFileManager.TrashItem(Foundation.NSUrl,Foundation.NSUrl@,Foundation.NSError@)
-M:Foundation.NSFileManager.UnmountVolume(Foundation.NSUrl,Foundation.NSFileManagerUnmountOptions,System.Action{Foundation.NSError})
M:Foundation.NSFileManager.UnmountVolumeAsync(Foundation.NSUrl,Foundation.NSFileManagerUnmountOptions)
M:Foundation.NSFileManagerDelegate_Extensions.ShouldCopyItemAtPath(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSString,Foundation.NSString)
M:Foundation.NSFileManagerDelegate_Extensions.ShouldCopyItemAtPath(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,System.String,System.String)
@@ -40228,23 +30381,7 @@ M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorRemovingIte
M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorRemovingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,System.String)
M:Foundation.NSFileManagerDelegate_Extensions.ShouldRemoveItemAtPath(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,System.String)
M:Foundation.NSFileManagerDelegate_Extensions.ShouldRemoveItemAtUrl(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSUrl)
-M:Foundation.NSFileManagerDelegate.ShouldCopyItemAtPath(Foundation.NSFileManager,Foundation.NSString,Foundation.NSString)
M:Foundation.NSFileManagerDelegate.ShouldCopyItemAtPath(Foundation.NSFileManager,System.String,System.String)
-M:Foundation.NSFileManagerDelegate.ShouldCopyItemAtUrl(Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFileManagerDelegate.ShouldLinkItemAtPath(Foundation.NSFileManager,System.String,System.String)
-M:Foundation.NSFileManagerDelegate.ShouldLinkItemAtUrl(Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFileManagerDelegate.ShouldMoveItemAtPath(Foundation.NSFileManager,System.String,System.String)
-M:Foundation.NSFileManagerDelegate.ShouldMoveItemAtUrl(Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorCopyingItem(Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorCopyingItem(Foundation.NSFileManager,Foundation.NSError,System.String,System.String)
-M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorLinkingItem(Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorLinkingItem(Foundation.NSFileManager,Foundation.NSError,System.String,System.String)
-M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorMovingItem(Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorMovingItem(Foundation.NSFileManager,Foundation.NSError,System.String,System.String)
-M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorRemovingItem(Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl)
-M:Foundation.NSFileManagerDelegate.ShouldProceedAfterErrorRemovingItem(Foundation.NSFileManager,Foundation.NSError,System.String)
-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})
@@ -40265,63 +30402,11 @@ M:Foundation.NSFilePresenter_Extensions.PresentedSubitemResolvedConflictVersion(
M:Foundation.NSFilePresenter_Extensions.RelinquishPresentedItemToReader(Foundation.INSFilePresenter,Foundation.NSFilePresenterReacquirer)
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})
-M:Foundation.NSFilePresenter.PresentedItemGainedVersion(Foundation.NSFileVersion)
-M:Foundation.NSFilePresenter.PresentedItemLostVersion(Foundation.NSFileVersion)
-M:Foundation.NSFilePresenter.PresentedItemMoved(Foundation.NSUrl)
-M:Foundation.NSFilePresenter.PresentedItemResolveConflictVersion(Foundation.NSFileVersion)
-M:Foundation.NSFilePresenter.PresentedSubitemAppeared(Foundation.NSUrl)
-M:Foundation.NSFilePresenter.PresentedSubitemChanged(Foundation.NSUrl)
-M:Foundation.NSFilePresenter.PresentedSubitemGainedVersion(Foundation.NSUrl,Foundation.NSFileVersion)
-M:Foundation.NSFilePresenter.PresentedSubitemLostVersion(Foundation.NSUrl,Foundation.NSFileVersion)
-M:Foundation.NSFilePresenter.PresentedSubitemMoved(Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSFilePresenter.PresentedSubitemResolvedConflictVersion(Foundation.NSUrl,Foundation.NSFileVersion)
-M:Foundation.NSFilePresenter.RelinquishPresentedItemToReader(Foundation.NSFilePresenterReacquirer)
-M:Foundation.NSFilePresenter.RelinquishPresentedItemToWriter(Foundation.NSFilePresenterReacquirer)
-M:Foundation.NSFilePresenter.SavePresentedItemChanges(System.Action{Foundation.NSError})
-M:Foundation.NSFileProviderService.GetFileProviderConnection(System.Action{Foundation.NSXpcConnection,Foundation.NSError})
M:Foundation.NSFileProviderService.GetFileProviderConnectionAsync
M:Foundation.NSFileSystemAttributes.op_Implicit(Foundation.NSFileSystemAttributes)~Foundation.NSDictionary
-M:Foundation.NSFileVersion.AddVersion(Foundation.NSUrl,Foundation.NSUrl,Foundation.NSFileVersionAddingOptions,Foundation.NSError@)
-M:Foundation.NSFileVersion.GetCurrentVersion(Foundation.NSUrl)
-M:Foundation.NSFileVersion.GetNonlocalVersions(Foundation.NSUrl,Foundation.NSFileVersionNonlocalVersionsCompletionHandler)
M:Foundation.NSFileVersion.GetNonlocalVersionsAsync(Foundation.NSUrl)
-M:Foundation.NSFileVersion.GetOtherVersions(Foundation.NSUrl)
-M:Foundation.NSFileVersion.GetSpecificVersion(Foundation.NSUrl,Foundation.NSObject)
-M:Foundation.NSFileVersion.GetUnresolvedConflictVersions(Foundation.NSUrl)
-M:Foundation.NSFileVersion.Remove(Foundation.NSError@)
-M:Foundation.NSFileVersion.RemoveOtherVersions(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFileVersion.ReplaceItem(Foundation.NSUrl,Foundation.NSFileVersionReplacingOptions,Foundation.NSError@)
-M:Foundation.NSFileVersion.TemporaryDirectoryForItem(Foundation.NSUrl)
-M:Foundation.NSFileWrapper.#ctor(Foundation.NSData)
-M:Foundation.NSFileWrapper.#ctor(Foundation.NSDictionary)
-M:Foundation.NSFileWrapper.#ctor(Foundation.NSUrl,Foundation.NSFileWrapperReadingOptions,Foundation.NSError@)
-M:Foundation.NSFileWrapper.#ctor(Foundation.NSUrl)
-M:Foundation.NSFileWrapper.AddFileWrapper(Foundation.NSFileWrapper)
-M:Foundation.NSFileWrapper.AddRegularFile(Foundation.NSData,System.String)
-M:Foundation.NSFileWrapper.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSFileWrapper.GetRegularFileContents
-M:Foundation.NSFileWrapper.GetSerializedRepresentation
-M:Foundation.NSFileWrapper.KeyForFileWrapper(Foundation.NSFileWrapper)
-M:Foundation.NSFileWrapper.MatchesContentsOfURL(Foundation.NSUrl)
-M:Foundation.NSFileWrapper.Read(Foundation.NSUrl,Foundation.NSFileWrapperReadingOptions,Foundation.NSError@)
-M:Foundation.NSFileWrapper.RemoveFileWrapper(Foundation.NSFileWrapper)
-M:Foundation.NSFileWrapper.Write(Foundation.NSUrl,Foundation.NSFileWrapperWritingOptions,Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSFormatter.Copy(Foundation.NSZone)
-M:Foundation.NSFormatter.EditingStringFor(Foundation.NSObject)
-M:Foundation.NSFormatter.EncodeTo(Foundation.NSCoder)
M:Foundation.NSFormatter.GetAttributedString(Foundation.NSObject,AppKit.NSStringAttributes)
-M:Foundation.NSFormatter.GetAttributedString(Foundation.NSObject,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:Foundation.NSFormatter.GetAttributedString(Foundation.NSObject,UIKit.UIStringAttributes)
-M:Foundation.NSFormatter.GetObjectValue(Foundation.NSObject@,System.String,Foundation.NSString@)
-M:Foundation.NSFormatter.IsPartialStringValid(System.String,System.String@,Foundation.NSString@)
-M:Foundation.NSFormatter.IsPartialStringValid(System.String@,Foundation.NSRange@,System.String,Foundation.NSRange,System.String@)
-M:Foundation.NSFormatter.StringFor(Foundation.NSObject)
-M:Foundation.NSHost.Equals(Foundation.NSHost)
M:Foundation.NSHost.Equals(System.Object)
M:Foundation.NSHost.FromAddress(System.Net.IPAddress)
M:Foundation.NSHost.FromAddress(System.String)
@@ -40334,196 +30419,83 @@ M:Foundation.NSHost.op_Explicit(Foundation.NSHost)~System.Net.IPHostEntry
M:Foundation.NSHost.op_Explicit(System.Net.IPAddress)~Foundation.NSHost
M:Foundation.NSHost.op_Explicit(System.Net.IPHostEntry)~Foundation.NSHost
M:Foundation.NSHost.ToIPHostEntry
-M:Foundation.NSHttpCookie.#ctor(Foundation.NSDictionary)
M:Foundation.NSHttpCookie.#ctor(System.Net.Cookie)
M:Foundation.NSHttpCookie.#ctor(System.String,System.String,System.String,System.String)
M:Foundation.NSHttpCookie.#ctor(System.String,System.String,System.String)
M:Foundation.NSHttpCookie.#ctor(System.String,System.String)
-M:Foundation.NSHttpCookie.CookieFromProperties(Foundation.NSDictionary)
-M:Foundation.NSHttpCookie.CookiesWithResponseHeaderFields(Foundation.NSDictionary,Foundation.NSUrl)
-M:Foundation.NSHttpCookie.RequestHeaderFieldsWithCookies(Foundation.NSHttpCookie[])
-M:Foundation.NSHttpCookieStorage.CookiesForUrl(Foundation.NSUrl)
-M:Foundation.NSHttpCookieStorage.DeleteCookie(Foundation.NSHttpCookie)
-M:Foundation.NSHttpCookieStorage.GetCookiesForTask(Foundation.NSUrlSessionTask,System.Action{Foundation.NSHttpCookie[]})
M:Foundation.NSHttpCookieStorage.GetCookiesForTaskAsync(Foundation.NSUrlSessionTask)
-M:Foundation.NSHttpCookieStorage.GetSharedCookieStorage(System.String)
-M:Foundation.NSHttpCookieStorage.GetSortedCookies(Foundation.NSSortDescriptor[])
-M:Foundation.NSHttpCookieStorage.RemoveCookiesSinceDate(Foundation.NSDate)
-M:Foundation.NSHttpCookieStorage.SetCookie(Foundation.NSHttpCookie)
-M:Foundation.NSHttpCookieStorage.SetCookies(Foundation.NSHttpCookie[],Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSHttpCookieStorage.StoreCookies(Foundation.NSHttpCookie[],Foundation.NSUrlSessionTask)
-M:Foundation.NSHttpUrlResponse.#ctor(Foundation.NSUrl,System.IntPtr,System.String,Foundation.NSDictionary)
-M:Foundation.NSHttpUrlResponse.#ctor(Foundation.NSUrl,System.String,System.IntPtr,System.String)
-M:Foundation.NSHttpUrlResponse.GetHttpHeaderValue(System.String)
-M:Foundation.NSHttpUrlResponse.LocalizedStringForStatusCode(System.IntPtr)
-M:Foundation.NSIndexPath.Compare(Foundation.NSIndexPath)
-M:Foundation.NSIndexPath.Copy(Foundation.NSZone)
M:Foundation.NSIndexPath.Create(System.Int32[])
M:Foundation.NSIndexPath.Create(System.IntPtr[])
M:Foundation.NSIndexPath.Create(System.UInt32[])
M:Foundation.NSIndexPath.Create(System.UIntPtr[])
-M:Foundation.NSIndexPath.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSIndexPath.FromIndex(System.UIntPtr)
M:Foundation.NSIndexPath.FromItemSection(System.IntPtr,System.IntPtr)
M:Foundation.NSIndexPath.FromRowSection(System.IntPtr,System.IntPtr)
M:Foundation.NSIndexPath.GetIndexes
M:Foundation.NSIndexPath.GetIndexes(Foundation.NSRange)
-M:Foundation.NSIndexPath.IndexAtPosition(System.IntPtr)
-M:Foundation.NSIndexPath.IndexPathByAddingIndex(System.UIntPtr)
-M:Foundation.NSIndexPath.IndexPathByRemovingLastIndex
-M:Foundation.NSIndexSet.#ctor(Foundation.NSIndexSet)
M:Foundation.NSIndexSet.#ctor(System.Int32)
M:Foundation.NSIndexSet.#ctor(System.IntPtr)
M:Foundation.NSIndexSet.#ctor(System.UInt32)
-M:Foundation.NSIndexSet.#ctor(System.UIntPtr)
-M:Foundation.NSIndexSet.Contains(Foundation.NSIndexSet)
-M:Foundation.NSIndexSet.Contains(System.UIntPtr)
-M:Foundation.NSIndexSet.Copy(Foundation.NSZone)
-M:Foundation.NSIndexSet.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSIndexSet.EnumerateIndexes(Foundation.EnumerateIndexSetCallback)
-M:Foundation.NSIndexSet.EnumerateIndexes(Foundation.NSEnumerationOptions,Foundation.EnumerateIndexSetCallback)
-M:Foundation.NSIndexSet.EnumerateIndexes(Foundation.NSRange,Foundation.NSEnumerationOptions,Foundation.EnumerateIndexSetCallback)
-M:Foundation.NSIndexSet.EnumerateRanges(Foundation.NSEnumerationOptions,Foundation.NSRangeIterator)
-M:Foundation.NSIndexSet.EnumerateRanges(Foundation.NSRange,Foundation.NSEnumerationOptions,Foundation.NSRangeIterator)
-M:Foundation.NSIndexSet.EnumerateRanges(Foundation.NSRangeIterator)
M:Foundation.NSIndexSet.FromArray(System.Int32[])
M:Foundation.NSIndexSet.FromArray(System.UInt32[])
M:Foundation.NSIndexSet.FromArray(System.UIntPtr[])
-M:Foundation.NSIndexSet.FromIndex(System.IntPtr)
-M:Foundation.NSIndexSet.FromNSRange(Foundation.NSRange)
-M:Foundation.NSIndexSet.IndexGreaterThan(System.UIntPtr)
-M:Foundation.NSIndexSet.IndexGreaterThanOrEqual(System.UIntPtr)
-M:Foundation.NSIndexSet.IndexLessThan(System.UIntPtr)
-M:Foundation.NSIndexSet.IndexLessThanOrEqual(System.UIntPtr)
-M:Foundation.NSIndexSet.IsEqual(Foundation.NSIndexSet)
-M:Foundation.NSIndexSet.MutableCopy(Foundation.NSZone)
M:Foundation.NSIndexSet.ToArray
-M:Foundation.NSInflectionRule.CanInflectLanguage(System.String)
-M:Foundation.NSInflectionRule.Copy(Foundation.NSZone)
-M:Foundation.NSInflectionRule.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSInflectionRuleExplicit.#ctor(Foundation.NSMorphology)
-M:Foundation.NSInputStream.#ctor(Foundation.NSData)
-M:Foundation.NSInputStream.#ctor(Foundation.NSUrl)
-M:Foundation.NSInputStream.#ctor(System.String)
M:Foundation.NSInputStream.Dispose(System.Boolean)
-M:Foundation.NSInputStream.FromData(Foundation.NSData)
-M:Foundation.NSInputStream.FromFile(System.String)
-M:Foundation.NSInputStream.FromUrl(Foundation.NSUrl)
-M:Foundation.NSInputStream.GetBuffer(System.IntPtr@,System.UIntPtr@)
-M:Foundation.NSInputStream.GetProperty(Foundation.NSString)
-M:Foundation.NSInputStream.HasBytesAvailable
M:Foundation.NSInputStream.Notify(CoreFoundation.CFStreamEventType)
M:Foundation.NSInputStream.Read(System.Byte[],System.Int32,System.UIntPtr)
M:Foundation.NSInputStream.Read(System.Byte[],System.UIntPtr)
-M:Foundation.NSInputStream.Read(System.IntPtr,System.UIntPtr)
M:Foundation.NSInputStream.SetCFClientFlags(CoreFoundation.CFStreamEventType,System.IntPtr,System.IntPtr)
-M:Foundation.NSInputStream.SetProperty(Foundation.NSObject,Foundation.NSString)
M:Foundation.NSInvocation.Dispose(System.Boolean)
-M:Foundation.NSInvocation.Invoke
-M:Foundation.NSInvocation.Invoke(Foundation.NSObject)
-M:Foundation.NSIso8601DateFormatter.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSIso8601DateFormatter.Format(Foundation.NSDate,Foundation.NSTimeZone,Foundation.NSIso8601DateFormatOptions)
-M:Foundation.NSIso8601DateFormatter.ToDate(System.String)
-M:Foundation.NSIso8601DateFormatter.ToString(Foundation.NSDate)
-M:Foundation.NSItemProvider.#ctor(Foundation.INSItemProviderWriting)
-M:Foundation.NSItemProvider.#ctor(Foundation.NSObject,System.String)
M:Foundation.NSItemProvider.#ctor(Foundation.NSUrl,UniformTypeIdentifiers.UTType,System.Boolean,System.Boolean,Foundation.NSItemProviderRepresentationVisibility)
-M:Foundation.NSItemProvider.#ctor(Foundation.NSUrl)
-M:Foundation.NSItemProvider.CanLoadObject(ObjCRuntime.Class)
M:Foundation.NSItemProvider.CanLoadObject(System.Type)
-M:Foundation.NSItemProvider.Copy(Foundation.NSZone)
-M:Foundation.NSItemProvider.GetRegisteredTypeIdentifiers(Foundation.NSItemProviderFileOptions)
-M:Foundation.NSItemProvider.HasConformingRepresentation(System.String,Foundation.NSItemProviderFileOptions)
-M:Foundation.NSItemProvider.HasItemConformingTo(System.String)
-M:Foundation.NSItemProvider.LoadDataRepresentation(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:Foundation.NSItemProvider.LoadDataRepresentation(UniformTypeIdentifiers.UTType,Foundation.ItemProviderDataCompletionHandler)
M:Foundation.NSItemProvider.LoadDataRepresentationAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSItemProvider.LoadDataRepresentationAsync(System.String)
-M:Foundation.NSItemProvider.LoadFileRepresentation(System.String,System.Action{Foundation.NSUrl,Foundation.NSError})
M:Foundation.NSItemProvider.LoadFileRepresentation(UniformTypeIdentifiers.UTType,System.Boolean,Foundation.LoadFileRepresentationHandler)
M:Foundation.NSItemProvider.LoadFileRepresentationAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSItemProvider.LoadFileRepresentationAsync(System.String)
-M:Foundation.NSItemProvider.LoadInPlaceFileRepresentation(System.String,Foundation.LoadInPlaceFileRepresentationHandler)
M:Foundation.NSItemProvider.LoadInPlaceFileRepresentationAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSItemProvider.LoadInPlaceFileRepresentationAsync(System.String)
-M:Foundation.NSItemProvider.LoadItem(System.String,Foundation.NSDictionary,System.Action{Foundation.NSObject,Foundation.NSError})
M:Foundation.NSItemProvider.LoadItemAsync(System.String,Foundation.NSDictionary)
-M:Foundation.NSItemProvider.LoadObject(ObjCRuntime.Class,System.Action{Foundation.INSItemProviderReading,Foundation.NSError})
M:Foundation.NSItemProvider.LoadObject``1(System.Action{``0,Foundation.NSError})
M:Foundation.NSItemProvider.LoadObjectAsync(ObjCRuntime.Class,Foundation.NSProgress@)
M:Foundation.NSItemProvider.LoadObjectAsync(ObjCRuntime.Class)
M:Foundation.NSItemProvider.LoadObjectAsync``1
M:Foundation.NSItemProvider.LoadObjectAsync``1(Foundation.NSProgress@)
-M:Foundation.NSItemProvider.LoadPreviewImage(Foundation.NSDictionary,System.Action{Foundation.NSObject,Foundation.NSError})
M:Foundation.NSItemProvider.LoadPreviewImageAsync(Foundation.NSDictionary)
M:Foundation.NSItemProvider.RegisterCKShare(CloudKit.CKContainer,CloudKit.CKAllowedSharingOptions,System.Action)
M:Foundation.NSItemProvider.RegisterCKShare(CloudKit.CKShare,CloudKit.CKContainer,CloudKit.CKAllowedSharingOptions)
M:Foundation.NSItemProvider.RegisterCloudKitShare(CloudKit.CKShare,CloudKit.CKContainer)
M:Foundation.NSItemProvider.RegisterCloudKitShare(Foundation.CloudKitRegistrationPreparationAction)
M:Foundation.NSItemProvider.RegisterCloudKitShareAsync
-M:Foundation.NSItemProvider.RegisterDataRepresentation(System.String,Foundation.NSItemProviderRepresentationVisibility,Foundation.RegisterDataRepresentationLoadHandler)
M:Foundation.NSItemProvider.RegisterDataRepresentation(UniformTypeIdentifiers.UTType,Foundation.NSItemProviderRepresentationVisibility,Foundation.NSItemProviderUTTypeLoadDelegate)
M:Foundation.NSItemProvider.RegisteredContentTypesConforming(UniformTypeIdentifiers.UTType)
-M:Foundation.NSItemProvider.RegisterFileRepresentation(System.String,Foundation.NSItemProviderFileOptions,Foundation.NSItemProviderRepresentationVisibility,Foundation.RegisterFileRepresentationLoadHandler)
M:Foundation.NSItemProvider.RegisterFileRepresentation(UniformTypeIdentifiers.UTType,Foundation.NSItemProviderRepresentationVisibility,System.Boolean,Foundation.NSItemProviderUTTypeLoadDelegate)
-M:Foundation.NSItemProvider.RegisterItemForTypeIdentifier(System.String,Foundation.NSItemProviderLoadHandler)
-M:Foundation.NSItemProvider.RegisterObject(Foundation.INSItemProviderWriting,Foundation.NSItemProviderRepresentationVisibility)
-M:Foundation.NSItemProvider.RegisterObject(ObjCRuntime.Class,Foundation.NSItemProviderRepresentationVisibility,Foundation.RegisterObjectRepresentationLoadHandler)
M:Foundation.NSItemProvider.RegisterObject(System.Type,Foundation.NSItemProviderRepresentationVisibility,Foundation.RegisterObjectRepresentationLoadHandler)
M:Foundation.NSItemProvider.SetPreviewImageHandler(Foundation.NSItemProviderLoadHandler)
M:Foundation.NSItemProviderWriting_Extensions.GetItemProviderVisibilityForTypeIdentifier(Foundation.INSItemProviderWriting,System.String)
M:Foundation.NSItemProviderWriting_Extensions.GetWritableTypeIdentifiersForItemProvider(Foundation.INSItemProviderWriting)
M:Foundation.NSItemProviderWriting_Extensions.LoadDataAsync(Foundation.INSItemProviderWriting,System.String,Foundation.NSProgress@)
M:Foundation.NSItemProviderWriting_Extensions.LoadDataAsync(Foundation.INSItemProviderWriting,System.String)
-M:Foundation.NSJsonSerialization.Deserialize(Foundation.NSData,Foundation.NSJsonReadingOptions,Foundation.NSError@)
-M:Foundation.NSJsonSerialization.Deserialize(Foundation.NSInputStream,Foundation.NSJsonReadingOptions,Foundation.NSError@)
-M:Foundation.NSJsonSerialization.IsValidJSONObject(Foundation.NSObject)
-M:Foundation.NSJsonSerialization.Serialize(Foundation.NSObject,Foundation.NSJsonWritingOptions,Foundation.NSError@)
-M:Foundation.NSJsonSerialization.Serialize(Foundation.NSObject,Foundation.NSOutputStream,Foundation.NSJsonWritingOptions,Foundation.NSError@)
-M:Foundation.NSKeyedArchiver.#ctor
-M:Foundation.NSKeyedArchiver.#ctor(Foundation.NSMutableData)
-M:Foundation.NSKeyedArchiver.#ctor(System.Boolean)
M:Foundation.NSKeyedArchiver.add_EncodedObject(System.EventHandler{Foundation.NSObjectEventArgs})
M:Foundation.NSKeyedArchiver.add_Finished(System.EventHandler)
M:Foundation.NSKeyedArchiver.add_Finishing(System.EventHandler)
M:Foundation.NSKeyedArchiver.add_ReplacingObject(System.EventHandler{Foundation.NSArchiveReplaceEventArgs})
-M:Foundation.NSKeyedArchiver.ArchiveRootObjectToFile(Foundation.NSObject,System.String)
M:Foundation.NSKeyedArchiver.Dispose(System.Boolean)
-M:Foundation.NSKeyedArchiver.FinishEncoding
-M:Foundation.NSKeyedArchiver.GetArchivedData(Foundation.NSObject,System.Boolean,Foundation.NSError@)
-M:Foundation.NSKeyedArchiver.GetArchivedData(Foundation.NSObject)
-M:Foundation.NSKeyedArchiver.GetClassName(ObjCRuntime.Class)
M:Foundation.NSKeyedArchiver.GlobalGetClassName(ObjCRuntime.Class)
M:Foundation.NSKeyedArchiver.GlobalSetClassName(System.String,ObjCRuntime.Class)
M:Foundation.NSKeyedArchiver.remove_EncodedObject(System.EventHandler{Foundation.NSObjectEventArgs})
M:Foundation.NSKeyedArchiver.remove_Finished(System.EventHandler)
M:Foundation.NSKeyedArchiver.remove_Finishing(System.EventHandler)
M:Foundation.NSKeyedArchiver.remove_ReplacingObject(System.EventHandler{Foundation.NSArchiveReplaceEventArgs})
-M:Foundation.NSKeyedArchiver.SetClassName(System.String,ObjCRuntime.Class)
M:Foundation.NSKeyedArchiverDelegate_Extensions.EncodedObject(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver,Foundation.NSObject)
M:Foundation.NSKeyedArchiverDelegate_Extensions.Finished(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver)
M:Foundation.NSKeyedArchiverDelegate_Extensions.Finishing(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver)
M:Foundation.NSKeyedArchiverDelegate_Extensions.ReplacingObject(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver,Foundation.NSObject,Foundation.NSObject)
M:Foundation.NSKeyedArchiverDelegate_Extensions.WillEncode(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver,Foundation.NSObject)
-M:Foundation.NSKeyedArchiverDelegate.EncodedObject(Foundation.NSKeyedArchiver,Foundation.NSObject)
-M:Foundation.NSKeyedArchiverDelegate.Finished(Foundation.NSKeyedArchiver)
-M:Foundation.NSKeyedArchiverDelegate.Finishing(Foundation.NSKeyedArchiver)
-M:Foundation.NSKeyedArchiverDelegate.ReplacingObject(Foundation.NSKeyedArchiver,Foundation.NSObject,Foundation.NSObject)
-M:Foundation.NSKeyedArchiverDelegate.WillEncode(Foundation.NSKeyedArchiver,Foundation.NSObject)
-M:Foundation.NSKeyedUnarchiver.#ctor(Foundation.NSData,Foundation.NSError@)
-M:Foundation.NSKeyedUnarchiver.#ctor(Foundation.NSData)
M:Foundation.NSKeyedUnarchiver.add_Finished(System.EventHandler)
M:Foundation.NSKeyedUnarchiver.add_Finishing(System.EventHandler)
M:Foundation.NSKeyedUnarchiver.add_ReplacingObject(System.EventHandler{Foundation.NSArchiveReplaceEventArgs})
M:Foundation.NSKeyedUnarchiver.Dispose(System.Boolean)
-M:Foundation.NSKeyedUnarchiver.FinishDecoding
-M:Foundation.NSKeyedUnarchiver.GetClass(System.String)
-M:Foundation.NSKeyedUnarchiver.GetUnarchivedArray(Foundation.NSSet{ObjCRuntime.Class},Foundation.NSData,Foundation.NSError@)
-M:Foundation.NSKeyedUnarchiver.GetUnarchivedArray(ObjCRuntime.Class,Foundation.NSData,Foundation.NSError@)
-M:Foundation.NSKeyedUnarchiver.GetUnarchivedDictionary(Foundation.NSSet{ObjCRuntime.Class},Foundation.NSSet{ObjCRuntime.Class},Foundation.NSData,Foundation.NSError@)
-M:Foundation.NSKeyedUnarchiver.GetUnarchivedDictionary(ObjCRuntime.Class,ObjCRuntime.Class,Foundation.NSData,Foundation.NSError@)
-M:Foundation.NSKeyedUnarchiver.GetUnarchivedObject(Foundation.NSSet{ObjCRuntime.Class},Foundation.NSData,Foundation.NSError@)
-M:Foundation.NSKeyedUnarchiver.GetUnarchivedObject(ObjCRuntime.Class,Foundation.NSData,Foundation.NSError@)
M:Foundation.NSKeyedUnarchiver.GetUnarchivedObject(System.Type,Foundation.NSData,Foundation.NSError@)
M:Foundation.NSKeyedUnarchiver.GetUnarchivedObject(System.Type[],Foundation.NSData,Foundation.NSError@)
M:Foundation.NSKeyedUnarchiver.GlobalGetClass(System.String)
@@ -40531,143 +30503,27 @@ M:Foundation.NSKeyedUnarchiver.GlobalSetClass(ObjCRuntime.Class,System.String)
M:Foundation.NSKeyedUnarchiver.remove_Finished(System.EventHandler)
M:Foundation.NSKeyedUnarchiver.remove_Finishing(System.EventHandler)
M:Foundation.NSKeyedUnarchiver.remove_ReplacingObject(System.EventHandler{Foundation.NSArchiveReplaceEventArgs})
-M:Foundation.NSKeyedUnarchiver.SetClass(ObjCRuntime.Class,System.String)
-M:Foundation.NSKeyedUnarchiver.UnarchiveFile(System.String)
-M:Foundation.NSKeyedUnarchiver.UnarchiveObject(Foundation.NSData)
-M:Foundation.NSKeyedUnarchiver.UnarchiveTopLevelObject(Foundation.NSData,Foundation.NSError@)
M:Foundation.NSKeyedUnarchiverDelegate_Extensions.CannotDecodeClass(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver,System.String,System.String[])
M:Foundation.NSKeyedUnarchiverDelegate_Extensions.DecodedObject(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver,Foundation.NSObject)
M:Foundation.NSKeyedUnarchiverDelegate_Extensions.Finished(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver)
M:Foundation.NSKeyedUnarchiverDelegate_Extensions.Finishing(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver)
M:Foundation.NSKeyedUnarchiverDelegate_Extensions.ReplacingObject(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver,Foundation.NSObject,Foundation.NSObject)
-M:Foundation.NSKeyedUnarchiverDelegate.CannotDecodeClass(Foundation.NSKeyedUnarchiver,System.String,System.String[])
-M:Foundation.NSKeyedUnarchiverDelegate.DecodedObject(Foundation.NSKeyedUnarchiver,Foundation.NSObject)
-M:Foundation.NSKeyedUnarchiverDelegate.Finished(Foundation.NSKeyedUnarchiver)
-M:Foundation.NSKeyedUnarchiverDelegate.Finishing(Foundation.NSKeyedUnarchiver)
-M:Foundation.NSKeyedUnarchiverDelegate.ReplacingObject(Foundation.NSKeyedUnarchiver,Foundation.NSObject,Foundation.NSObject)
M:Foundation.NSKeyValueSharedObserverRegistration_NSObject.SetSharedObservers(Foundation.NSObject,Foundation.NSKeyValueSharedObserversSnapshot)
-M:Foundation.NSKeyValueSharedObservers.#ctor(ObjCRuntime.Class)
M:Foundation.NSKeyValueSharedObservers.#ctor(System.Type)
-M:Foundation.NSKeyValueSharedObservers.AddSharedObserver(Foundation.NSObject,System.String,Foundation.NSKeyValueObservingOptions,System.IntPtr)
-M:Foundation.NSKeyValueSharedObservers.GetSnapshot
M:Foundation.NSKeyValueSorting_NSMutableOrderedSet.SortUsingDescriptors(Foundation.NSMutableOrderedSet,Foundation.NSSortDescriptor[])
M:Foundation.NSKeyValueSorting_NSOrderedSet.GetSortedArray(Foundation.NSOrderedSet,Foundation.NSSortDescriptor[])
-M:Foundation.NSLengthFormatter.GetObjectValue(Foundation.NSObject@,System.String,System.String@)
-M:Foundation.NSLengthFormatter.StringFromMeters(System.Double)
-M:Foundation.NSLengthFormatter.StringFromValue(System.Double,Foundation.NSLengthFormatterUnit)
-M:Foundation.NSLengthFormatter.UnitStringFromMeters(System.Double,Foundation.NSLengthFormatterUnit@)
-M:Foundation.NSLengthFormatter.UnitStringFromValue(System.Double,Foundation.NSLengthFormatterUnit)
M:Foundation.NSLinguisticAnalysis.EnumerateLinguisticTags(Foundation.NSString,Foundation.NSRange,Foundation.NSLinguisticTagScheme,Foundation.NSLinguisticTaggerOptions,Foundation.NSOrthography,Foundation.NSEnumerateLinguisticTagsEnumerator)
M:Foundation.NSLinguisticAnalysis.GetLinguisticTags(Foundation.NSString,Foundation.NSRange,Foundation.NSLinguisticTagScheme,Foundation.NSLinguisticTaggerOptions,Foundation.NSOrthography,Foundation.NSValue[]@)
-M:Foundation.NSLinguisticTagger.#ctor(Foundation.NSString[],Foundation.NSLinguisticTaggerOptions)
-M:Foundation.NSLinguisticTagger.EnumerateTags(Foundation.NSRange,Foundation.NSLinguisticTaggerUnit,System.String,Foundation.NSLinguisticTaggerOptions,Foundation.LinguisticTagEnumerator)
-M:Foundation.NSLinguisticTagger.EnumerateTags(System.String,Foundation.NSRange,Foundation.NSLinguisticTaggerUnit,System.String,Foundation.NSLinguisticTaggerOptions,Foundation.NSOrthography,Foundation.LinguisticTagEnumerator)
-M:Foundation.NSLinguisticTagger.EnumerateTagsInRange(Foundation.NSRange,Foundation.NSString,Foundation.NSLinguisticTaggerOptions,Foundation.NSLingusticEnumerator)
-M:Foundation.NSLinguisticTagger.GetAvailableTagSchemes(Foundation.NSLinguisticTaggerUnit,System.String)
-M:Foundation.NSLinguisticTagger.GetAvailableTagSchemesForLanguage(System.String)
-M:Foundation.NSLinguisticTagger.GetDominantLanguage(System.String)
-M:Foundation.NSLinguisticTagger.GetOrthography(System.IntPtr,Foundation.NSRange@)
-M:Foundation.NSLinguisticTagger.GetSentenceRangeForRange(Foundation.NSRange)
-M:Foundation.NSLinguisticTagger.GetTag(System.IntPtr,Foundation.NSString,Foundation.NSRange@,Foundation.NSRange@)
-M:Foundation.NSLinguisticTagger.GetTag(System.String,System.UIntPtr,Foundation.NSLinguisticTaggerUnit,System.String,Foundation.NSOrthography,Foundation.NSRange@)
-M:Foundation.NSLinguisticTagger.GetTag(System.UIntPtr,Foundation.NSLinguisticTaggerUnit,System.String,Foundation.NSRange@)
-M:Foundation.NSLinguisticTagger.GetTags(Foundation.NSRange,Foundation.NSLinguisticTaggerUnit,System.String,Foundation.NSLinguisticTaggerOptions,Foundation.NSValue[]@)
-M:Foundation.NSLinguisticTagger.GetTags(System.String,Foundation.NSRange,Foundation.NSLinguisticTaggerUnit,System.String,Foundation.NSLinguisticTaggerOptions,Foundation.NSOrthography,Foundation.NSValue[]@)
-M:Foundation.NSLinguisticTagger.GetTokenRange(System.UIntPtr,Foundation.NSLinguisticTaggerUnit)
-M:Foundation.NSLinguisticTagger.SetOrthographyrange(Foundation.NSOrthography,Foundation.NSRange)
-M:Foundation.NSLinguisticTagger.StringEditedInRange(Foundation.NSRange,System.IntPtr)
-M:Foundation.NSListFormatter.GetLocalizedString(Foundation.NSString[])
-M:Foundation.NSListFormatter.GetString(Foundation.NSObject)
-M:Foundation.NSListFormatter.GetString(Foundation.NSObject[])
M:Foundation.NSLoadFromHtmlResult.#ctor(Foundation.NSAttributedString,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:Foundation.NSLocale.#ctor(System.String)
-M:Foundation.NSLocale.CanonicalLanguageIdentifierFromString(System.String)
-M:Foundation.NSLocale.CanonicalLocaleIdentifierFromString(System.String)
-M:Foundation.NSLocale.ComponentsFromLocaleIdentifier(System.String)
-M:Foundation.NSLocale.Copy(Foundation.NSZone)
-M:Foundation.NSLocale.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSLocale.FromLocaleIdentifier(System.String)
-M:Foundation.NSLocale.GetCharacterDirection(System.String)
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.NSLocale.GetLineDirection(System.String)
-M:Foundation.NSLocale.GetLocalizedCalendarIdentifier(System.String)
-M:Foundation.NSLocale.LocaleIdentifierFromComponents(Foundation.NSDictionary)
-M:Foundation.NSLocalizedNumberFormatRule.Copy(Foundation.NSZone)
-M:Foundation.NSLocalizedNumberFormatRule.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSLock.Lock
-M:Foundation.NSLock.LockBeforeDate(Foundation.NSDate)
-M:Foundation.NSLock.TryLock
-M:Foundation.NSLock.Unlock
-M:Foundation.NSMachPort.#ctor(System.UInt32,Foundation.NSMachPortRights)
-M:Foundation.NSMachPort.#ctor(System.UInt32)
M:Foundation.NSMachPort.Dispose(System.Boolean)
-M:Foundation.NSMachPort.FromMachPort(System.UInt32,Foundation.NSMachPortRights)
-M:Foundation.NSMachPort.FromMachPort(System.UInt32)
-M:Foundation.NSMachPort.RemoveFromRunLoop(Foundation.NSRunLoop,Foundation.NSString)
-M:Foundation.NSMachPort.ScheduleInRunLoop(Foundation.NSRunLoop,Foundation.NSString)
M:Foundation.NSMachPortDelegate_Extensions.MachMessageReceived(Foundation.INSMachPortDelegate,System.IntPtr)
-M:Foundation.NSMachPortDelegate.MachMessageReceived(System.IntPtr)
-M:Foundation.NSMassFormatter.GetObjectValue(Foundation.NSObject@,System.String,System.String@)
-M:Foundation.NSMassFormatter.StringFromKilograms(System.Double)
-M:Foundation.NSMassFormatter.StringFromValue(System.Double,Foundation.NSMassFormatterUnit)
-M:Foundation.NSMassFormatter.UnitStringFromKilograms(System.Double,Foundation.NSMassFormatterUnit@)
-M:Foundation.NSMassFormatter.UnitStringFromValue(System.Double,Foundation.NSMassFormatterUnit)
-M:Foundation.NSMeasurement`1.#ctor(System.Double,Foundation.NSUnit)
-M:Foundation.NSMeasurement`1.CanBeConvertedTo(Foundation.NSUnit)
-M:Foundation.NSMeasurement`1.Copy(Foundation.NSZone)
-M:Foundation.NSMeasurement`1.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSMeasurement`1.GetMeasurementByAdding(Foundation.NSMeasurement{`0})
-M:Foundation.NSMeasurement`1.GetMeasurementByConverting(Foundation.NSUnit)
-M:Foundation.NSMeasurement`1.GetMeasurementBySubtracting(Foundation.NSMeasurement{`0})
-M:Foundation.NSMeasurementFormatter.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSMeasurementFormatter.ToString(Foundation.NSMeasurement{Foundation.NSUnit})
-M:Foundation.NSMeasurementFormatter.ToString(Foundation.NSUnit)
-M:Foundation.NSMetadataItem.#ctor(Foundation.NSUrl)
-M:Foundation.NSMetadataItem.ValueForAttribute(System.String)
-M:Foundation.NSMetadataItem.ValuesForAttributes(Foundation.NSArray)
-M:Foundation.NSMetadataQuery.DisableUpdates
M:Foundation.NSMetadataQuery.Dispose(System.Boolean)
-M:Foundation.NSMetadataQuery.EnableUpdates
-M:Foundation.NSMetadataQuery.EnumerateResultsUsingBlock(Foundation.NSMetadataQueryEnumerationCallback)
-M:Foundation.NSMetadataQuery.EnumerateResultsWithOptions(Foundation.NSEnumerationOptions,Foundation.NSMetadataQueryEnumerationCallback)
-M:Foundation.NSMetadataQuery.IndexOfResult(Foundation.NSObject)
-M:Foundation.NSMetadataQuery.ResultAtIndex(System.IntPtr)
-M:Foundation.NSMetadataQuery.StartQuery
-M:Foundation.NSMetadataQuery.StopQuery
-M:Foundation.NSMetadataQuery.ValueOfAttribute(System.String,System.IntPtr)
M:Foundation.NSMetadataQueryDelegate_Extensions.ReplacementObjectForResultObject(Foundation.INSMetadataQueryDelegate,Foundation.NSMetadataQuery,Foundation.NSMetadataItem)
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.ResultAtIndex(System.UIntPtr)
-M:Foundation.NSMethodSignature.FromObjcTypes(System.IntPtr)
-M:Foundation.NSMethodSignature.GetArgumentType(System.UIntPtr)
-M:Foundation.NSMorphology.Copy(Foundation.NSZone)
-M:Foundation.NSMorphology.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSMorphology.GetCustomPronoun(System.String)
-M:Foundation.NSMorphology.SetCustomPronoun(Foundation.NSMorphologyCustomPronoun,System.String,Foundation.NSError@)
-M:Foundation.NSMorphologyCustomPronoun.Copy(Foundation.NSZone)
-M:Foundation.NSMorphologyCustomPronoun.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSMorphologyCustomPronoun.GetRequiredKeysForLanguage(System.String)
-M:Foundation.NSMorphologyCustomPronoun.IsSupported(System.String)
-M:Foundation.NSMorphologyPronoun.#ctor(System.String,Foundation.NSMorphology,Foundation.NSMorphology)
-M:Foundation.NSMorphologyPronoun.Copy(Foundation.NSZone)
-M:Foundation.NSMorphologyPronoun.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSMutableArray.#ctor(System.UIntPtr)
-M:Foundation.NSMutableArray.Add(Foundation.NSObject)
-M:Foundation.NSMutableArray.AddObjects(Foundation.NSObject[])
-M:Foundation.NSMutableArray.FromFile(System.String)
-M:Foundation.NSMutableArray.FromUrl(Foundation.NSUrl)
-M:Foundation.NSMutableArray.Insert(Foundation.NSObject,System.IntPtr)
-M:Foundation.NSMutableArray.InsertObjects(Foundation.NSObject[],Foundation.NSIndexSet)
-M:Foundation.NSMutableArray.RemoveAllObjects
-M:Foundation.NSMutableArray.RemoveLastObject
-M:Foundation.NSMutableArray.RemoveObject(System.IntPtr)
-M:Foundation.NSMutableArray.RemoveObjectsAtIndexes(Foundation.NSIndexSet)
-M:Foundation.NSMutableArray.ReplaceObject(System.IntPtr,Foundation.NSObject)
M:Foundation.NSMutableArray`1.#ctor
M:Foundation.NSMutableArray`1.#ctor(`0[])
M:Foundation.NSMutableArray`1.#ctor(Foundation.NSCoder)
@@ -40679,80 +30535,30 @@ M:Foundation.NSMutableArray`1.IndexOf(`0)
M:Foundation.NSMutableArray`1.Insert(`0,System.IntPtr)
M:Foundation.NSMutableArray`1.InsertObjects(`0[],Foundation.NSIndexSet)
M:Foundation.NSMutableArray`1.ReplaceObject(System.IntPtr,`0)
-M:Foundation.NSMutableAttributedString.#ctor(Foundation.NSAttributedString)
M:Foundation.NSMutableAttributedString.#ctor(System.String,CoreText.CTStringAttributes)
-M:Foundation.NSMutableAttributedString.#ctor(System.String,Foundation.NSDictionary)
M:Foundation.NSMutableAttributedString.#ctor(System.String,UIKit.UIFont,UIKit.UIColor,UIKit.UIColor,UIKit.UIColor,UIKit.NSParagraphStyle,Foundation.NSLigatureType,System.Single,Foundation.NSUnderlineStyle,UIKit.NSShadow,System.Single,Foundation.NSUnderlineStyle)
M:Foundation.NSMutableAttributedString.#ctor(System.String,UIKit.UIStringAttributes)
-M:Foundation.NSMutableAttributedString.#ctor(System.String)
-M:Foundation.NSMutableAttributedString.AddAttribute(Foundation.NSString,Foundation.NSObject,Foundation.NSRange)
M:Foundation.NSMutableAttributedString.AddAttributes(AppKit.NSStringAttributes,Foundation.NSRange)
M:Foundation.NSMutableAttributedString.AddAttributes(CoreText.CTStringAttributes,Foundation.NSRange)
-M:Foundation.NSMutableAttributedString.AddAttributes(Foundation.NSDictionary,Foundation.NSRange)
M:Foundation.NSMutableAttributedString.AddAttributes(UIKit.UIStringAttributes,Foundation.NSRange)
M:Foundation.NSMutableAttributedString.Append(Foundation.NSAttributedString,System.Object[])
-M:Foundation.NSMutableAttributedString.Append(Foundation.NSAttributedString)
-M:Foundation.NSMutableAttributedString.BeginEditing
-M:Foundation.NSMutableAttributedString.DeleteRange(Foundation.NSRange)
-M:Foundation.NSMutableAttributedString.EndEditing
-M:Foundation.NSMutableAttributedString.Insert(Foundation.NSAttributedString,System.IntPtr)
-M:Foundation.NSMutableAttributedString.LowLevelSetAttributes(System.IntPtr,Foundation.NSRange)
M:Foundation.NSMutableAttributedString.ReadFromData(Foundation.NSData,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary@,Foundation.NSError@)
M:Foundation.NSMutableAttributedString.ReadFromData(Foundation.NSData,Foundation.NSDictionary,Foundation.NSDictionary@,Foundation.NSError@)
M:Foundation.NSMutableAttributedString.ReadFromFile(Foundation.NSUrl,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary@,Foundation.NSError@)
M:Foundation.NSMutableAttributedString.ReadFromFile(Foundation.NSUrl,Foundation.NSDictionary,Foundation.NSDictionary@,Foundation.NSError@)
M:Foundation.NSMutableAttributedString.ReadFromUrl(Foundation.NSUrl,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary`2@,Foundation.NSError@)
M:Foundation.NSMutableAttributedString.ReadFromUrl(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSDictionary`2@,Foundation.NSError@)
-M:Foundation.NSMutableAttributedString.RemoveAttribute(System.String,Foundation.NSRange)
-M:Foundation.NSMutableAttributedString.Replace(Foundation.NSRange,Foundation.NSAttributedString)
-M:Foundation.NSMutableAttributedString.Replace(Foundation.NSRange,System.String)
M:Foundation.NSMutableAttributedString.SetAttributes(CoreText.CTStringAttributes,Foundation.NSRange)
M:Foundation.NSMutableAttributedString.SetAttributes(Foundation.NSDictionary,Foundation.NSRange)
M:Foundation.NSMutableAttributedString.SetAttributes(UIKit.UIStringAttributes,Foundation.NSRange)
-M:Foundation.NSMutableAttributedString.SetString(Foundation.NSAttributedString)
-M:Foundation.NSMutableCharacterSet.AddCharacters(Foundation.NSRange)
-M:Foundation.NSMutableCharacterSet.AddCharacters(Foundation.NSString)
-M:Foundation.NSMutableCharacterSet.FromBitmapRepresentation(Foundation.NSData)
-M:Foundation.NSMutableCharacterSet.FromFile(System.String)
-M:Foundation.NSMutableCharacterSet.FromRange(Foundation.NSRange)
-M:Foundation.NSMutableCharacterSet.FromString(System.String)
-M:Foundation.NSMutableCharacterSet.IntersectWith(Foundation.NSCharacterSet)
-M:Foundation.NSMutableCharacterSet.Invert
-M:Foundation.NSMutableCharacterSet.RemoveCharacters(Foundation.NSRange)
-M:Foundation.NSMutableCharacterSet.RemoveCharacters(Foundation.NSString)
-M:Foundation.NSMutableCharacterSet.UnionWith(Foundation.NSCharacterSet)
-M:Foundation.NSMutableCopying.Copy(Foundation.NSZone)
-M:Foundation.NSMutableCopying.MutableCopy(Foundation.NSZone)
-M:Foundation.NSMutableData.#ctor(System.UIntPtr)
M:Foundation.NSMutableData.AppendBytes(System.Byte[],System.IntPtr,System.IntPtr)
M:Foundation.NSMutableData.AppendBytes(System.Byte[])
-M:Foundation.NSMutableData.AppendBytes(System.IntPtr,System.UIntPtr)
-M:Foundation.NSMutableData.AppendData(Foundation.NSData)
-M:Foundation.NSMutableData.Compress(Foundation.NSDataCompressionAlgorithm,Foundation.NSError@)
-M:Foundation.NSMutableData.Create
-M:Foundation.NSMutableData.Decompress(Foundation.NSDataCompressionAlgorithm,Foundation.NSError@)
-M:Foundation.NSMutableData.FromCapacity(System.IntPtr)
-M:Foundation.NSMutableData.FromLength(System.IntPtr)
-M:Foundation.NSMutableData.ReplaceBytes(Foundation.NSRange,System.IntPtr,System.UIntPtr)
-M:Foundation.NSMutableData.ReplaceBytes(Foundation.NSRange,System.IntPtr)
-M:Foundation.NSMutableData.ResetBytes(Foundation.NSRange)
-M:Foundation.NSMutableData.SetData(Foundation.NSData)
-M:Foundation.NSMutableDictionary.#ctor(Foundation.NSDictionary,System.Boolean)
-M:Foundation.NSMutableDictionary.#ctor(Foundation.NSDictionary)
-M:Foundation.NSMutableDictionary.#ctor(Foundation.NSUrl)
-M:Foundation.NSMutableDictionary.#ctor(System.String)
M:Foundation.NSMutableDictionary.Add(Foundation.NSObject,Foundation.NSObject)
-M:Foundation.NSMutableDictionary.AddEntries(Foundation.NSDictionary)
M:Foundation.NSMutableDictionary.Clear
-M:Foundation.NSMutableDictionary.FromDictionary(Foundation.NSDictionary)
-M:Foundation.NSMutableDictionary.FromFile(System.String)
-M:Foundation.NSMutableDictionary.FromObjectAndKey(Foundation.NSObject,Foundation.NSObject)
M:Foundation.NSMutableDictionary.FromObjectsAndKeys(Foundation.NSObject[],Foundation.NSObject[],System.IntPtr)
M:Foundation.NSMutableDictionary.FromObjectsAndKeys(Foundation.NSObject[],Foundation.NSObject[])
M:Foundation.NSMutableDictionary.FromObjectsAndKeys(System.Object[],System.Object[],System.IntPtr)
M:Foundation.NSMutableDictionary.FromObjectsAndKeys(System.Object[],System.Object[])
-M:Foundation.NSMutableDictionary.FromSharedKeySet(Foundation.NSObject)
-M:Foundation.NSMutableDictionary.FromUrl(Foundation.NSUrl)
M:Foundation.NSMutableDictionary.LowlevelFromObjectAndKey(System.IntPtr,System.IntPtr)
M:Foundation.NSMutableDictionary.LowlevelSetObject(Foundation.NSObject,System.IntPtr)
M:Foundation.NSMutableDictionary.LowlevelSetObject(System.IntPtr,System.IntPtr)
@@ -40777,44 +30583,9 @@ M:Foundation.NSMutableDictionary`2.ObjectForKey(`0)
M:Foundation.NSMutableDictionary`2.ObjectsForKeys(`0[],`1)
M:Foundation.NSMutableDictionary`2.Remove(`0)
M:Foundation.NSMutableDictionary`2.TryGetValue(`0,.TValue@)
-M:Foundation.NSMutableIndexSet.#ctor(Foundation.NSIndexSet)
-M:Foundation.NSMutableIndexSet.#ctor(System.UIntPtr)
-M:Foundation.NSMutableIndexSet.Add(Foundation.NSIndexSet)
-M:Foundation.NSMutableIndexSet.Add(System.UIntPtr)
-M:Foundation.NSMutableIndexSet.AddIndexesInRange(Foundation.NSRange)
-M:Foundation.NSMutableIndexSet.Clear
-M:Foundation.NSMutableIndexSet.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSMutableIndexSet.Remove(Foundation.NSIndexSet)
-M:Foundation.NSMutableIndexSet.Remove(System.UIntPtr)
-M:Foundation.NSMutableIndexSet.RemoveIndexesInRange(Foundation.NSRange)
-M:Foundation.NSMutableIndexSet.ShiftIndexes(System.UIntPtr,System.IntPtr)
-M:Foundation.NSMutableOrderedSet.#ctor(Foundation.NSObject)
M:Foundation.NSMutableOrderedSet.#ctor(Foundation.NSObject[])
-M:Foundation.NSMutableOrderedSet.#ctor(Foundation.NSOrderedSet)
-M:Foundation.NSMutableOrderedSet.#ctor(Foundation.NSSet)
-M:Foundation.NSMutableOrderedSet.#ctor(System.IntPtr)
M:Foundation.NSMutableOrderedSet.#ctor(System.Object[])
M:Foundation.NSMutableOrderedSet.#ctor(System.String[])
-M:Foundation.NSMutableOrderedSet.Add(Foundation.NSObject)
-M:Foundation.NSMutableOrderedSet.AddObjects(Foundation.NSObject[])
-M:Foundation.NSMutableOrderedSet.ExchangeObject(System.IntPtr,System.IntPtr)
-M:Foundation.NSMutableOrderedSet.Insert(Foundation.NSObject,System.IntPtr)
-M:Foundation.NSMutableOrderedSet.InsertObjects(Foundation.NSObject[],Foundation.NSIndexSet)
-M:Foundation.NSMutableOrderedSet.Intersect(Foundation.NSOrderedSet)
-M:Foundation.NSMutableOrderedSet.Intersect(Foundation.NSSet)
-M:Foundation.NSMutableOrderedSet.MoveObjects(Foundation.NSIndexSet,System.IntPtr)
-M:Foundation.NSMutableOrderedSet.Remove(System.IntPtr)
-M:Foundation.NSMutableOrderedSet.RemoveAllObjects
-M:Foundation.NSMutableOrderedSet.RemoveObject(Foundation.NSObject)
-M:Foundation.NSMutableOrderedSet.RemoveObjects(Foundation.NSIndexSet)
-M:Foundation.NSMutableOrderedSet.RemoveObjects(Foundation.NSObject[])
-M:Foundation.NSMutableOrderedSet.RemoveObjects(Foundation.NSRange)
-M:Foundation.NSMutableOrderedSet.Replace(System.IntPtr,Foundation.NSObject)
-M:Foundation.NSMutableOrderedSet.ReplaceObjects(Foundation.NSIndexSet,Foundation.NSObject[])
-M:Foundation.NSMutableOrderedSet.SetObject(Foundation.NSObject,System.IntPtr)
-M:Foundation.NSMutableOrderedSet.Sort(Foundation.NSComparator)
-M:Foundation.NSMutableOrderedSet.Sort(Foundation.NSSortOptions,Foundation.NSComparator)
-M:Foundation.NSMutableOrderedSet.SortRange(Foundation.NSRange,Foundation.NSSortOptions,Foundation.NSComparator)
M:Foundation.NSMutableOrderedSet`1.#ctor
M:Foundation.NSMutableOrderedSet`1.#ctor(`0)
M:Foundation.NSMutableOrderedSet`1.#ctor(`0[])
@@ -40838,17 +30609,10 @@ M:Foundation.NSMutableOrderedSet`1.RemoveObject(`0)
M:Foundation.NSMutableOrderedSet`1.RemoveObjects(`0[])
M:Foundation.NSMutableOrderedSet`1.Replace(System.IntPtr,`0)
M:Foundation.NSMutableOrderedSet`1.ReplaceObjects(Foundation.NSIndexSet,`0[])
-M:Foundation.NSMutableSet.#ctor(Foundation.NSArray)
M:Foundation.NSMutableSet.#ctor(Foundation.NSObject[])
-M:Foundation.NSMutableSet.#ctor(Foundation.NSSet)
-M:Foundation.NSMutableSet.#ctor(System.IntPtr)
M:Foundation.NSMutableSet.#ctor(System.String[])
-M:Foundation.NSMutableSet.Add(Foundation.NSObject)
-M:Foundation.NSMutableSet.AddObjects(Foundation.NSObject[])
M:Foundation.NSMutableSet.op_Addition(Foundation.NSMutableSet,Foundation.NSMutableSet)
M:Foundation.NSMutableSet.op_Subtraction(Foundation.NSMutableSet,Foundation.NSMutableSet)
-M:Foundation.NSMutableSet.Remove(Foundation.NSObject)
-M:Foundation.NSMutableSet.RemoveAll
M:Foundation.NSMutableSet`1.#ctor
M:Foundation.NSMutableSet`1.#ctor(`0[])
M:Foundation.NSMutableSet`1.#ctor(Foundation.NSCoder)
@@ -40863,20 +30627,8 @@ M:Foundation.NSMutableSet`1.op_Addition(Foundation.NSMutableSet{`0},Foundation.N
M:Foundation.NSMutableSet`1.op_Subtraction(Foundation.NSMutableSet{`0},Foundation.NSMutableSet{`0})
M:Foundation.NSMutableSet`1.Remove(`0)
M:Foundation.NSMutableSet`1.ToArray
-M:Foundation.NSMutableString.#ctor(System.IntPtr)
-M:Foundation.NSMutableString.Append(Foundation.NSString)
M:Foundation.NSMutableString.ApplyTransform(Foundation.NSStringTransform,System.Boolean,Foundation.NSRange,Foundation.NSRange@)
-M:Foundation.NSMutableString.DeleteCharacters(Foundation.NSRange)
-M:Foundation.NSMutableString.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSMutableString.Insert(Foundation.NSString,System.IntPtr)
-M:Foundation.NSMutableString.ReplaceCharactersInRange(Foundation.NSRange,Foundation.NSString)
-M:Foundation.NSMutableString.ReplaceOcurrences(Foundation.NSString,Foundation.NSString,Foundation.NSStringCompareOptions,Foundation.NSRange)
-M:Foundation.NSMutableString.SetString(Foundation.NSString)
-M:Foundation.NSMutableUrlRequest.#ctor(Foundation.NSUrl,Foundation.NSUrlRequestCachePolicy,System.Double)
-M:Foundation.NSMutableUrlRequest.#ctor(Foundation.NSUrl)
M:Foundation.NSNetDomainEventArgs.#ctor(System.String,System.Boolean)
-M:Foundation.NSNetService.#ctor(System.String,System.String,System.String,System.Int32)
-M:Foundation.NSNetService.#ctor(System.String,System.String,System.String)
M:Foundation.NSNetService.add_AddressResolved(System.EventHandler)
M:Foundation.NSNetService.add_DidAcceptConnection(System.EventHandler{Foundation.NSNetServiceConnectionEventArgs})
M:Foundation.NSNetService.add_Published(System.EventHandler)
@@ -40886,13 +30638,7 @@ M:Foundation.NSNetService.add_Stopped(System.EventHandler)
M:Foundation.NSNetService.add_UpdatedTxtRecordData(System.EventHandler{Foundation.NSNetServiceDataEventArgs})
M:Foundation.NSNetService.add_WillPublish(System.EventHandler)
M:Foundation.NSNetService.add_WillResolve(System.EventHandler)
-M:Foundation.NSNetService.DataFromTxtRecord(Foundation.NSDictionary)
-M:Foundation.NSNetService.DictionaryFromTxtRecord(Foundation.NSData)
M:Foundation.NSNetService.Dispose(System.Boolean)
-M:Foundation.NSNetService.GetStreams(Foundation.NSInputStream@,Foundation.NSOutputStream@)
-M:Foundation.NSNetService.GetTxtRecordData
-M:Foundation.NSNetService.Publish
-M:Foundation.NSNetService.Publish(Foundation.NSNetServiceOptions)
M:Foundation.NSNetService.remove_AddressResolved(System.EventHandler)
M:Foundation.NSNetService.remove_DidAcceptConnection(System.EventHandler{Foundation.NSNetServiceConnectionEventArgs})
M:Foundation.NSNetService.remove_Published(System.EventHandler)
@@ -40902,16 +30648,8 @@ M:Foundation.NSNetService.remove_Stopped(System.EventHandler)
M:Foundation.NSNetService.remove_UpdatedTxtRecordData(System.EventHandler{Foundation.NSNetServiceDataEventArgs})
M:Foundation.NSNetService.remove_WillPublish(System.EventHandler)
M:Foundation.NSNetService.remove_WillResolve(System.EventHandler)
-M:Foundation.NSNetService.Resolve
-M:Foundation.NSNetService.Resolve(System.Double)
M:Foundation.NSNetService.Schedule(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSNetService.Schedule(Foundation.NSRunLoop,Foundation.NSString)
-M:Foundation.NSNetService.SetTxtRecordData(Foundation.NSData)
-M:Foundation.NSNetService.StartMonitoring
-M:Foundation.NSNetService.Stop
-M:Foundation.NSNetService.StopMonitoring
M:Foundation.NSNetService.Unschedule(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSNetService.Unschedule(Foundation.NSRunLoop,Foundation.NSString)
M:Foundation.NSNetServiceBrowser.add_DomainRemoved(System.EventHandler{Foundation.NSNetDomainEventArgs})
M:Foundation.NSNetServiceBrowser.add_FoundDomain(System.EventHandler{Foundation.NSNetDomainEventArgs})
M:Foundation.NSNetServiceBrowser.add_FoundService(System.EventHandler{Foundation.NSNetServiceEventArgs})
@@ -40928,13 +30666,7 @@ M:Foundation.NSNetServiceBrowser.remove_SearchStarted(System.EventHandler)
M:Foundation.NSNetServiceBrowser.remove_SearchStopped(System.EventHandler)
M:Foundation.NSNetServiceBrowser.remove_ServiceRemoved(System.EventHandler{Foundation.NSNetServiceEventArgs})
M:Foundation.NSNetServiceBrowser.Schedule(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSNetServiceBrowser.Schedule(Foundation.NSRunLoop,Foundation.NSString)
-M:Foundation.NSNetServiceBrowser.SearchForBrowsableDomains
-M:Foundation.NSNetServiceBrowser.SearchForRegistrationDomains
-M:Foundation.NSNetServiceBrowser.SearchForServices(System.String,System.String)
-M:Foundation.NSNetServiceBrowser.Stop
M:Foundation.NSNetServiceBrowser.Unschedule(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSNetServiceBrowser.Unschedule(Foundation.NSRunLoop,Foundation.NSString)
M:Foundation.NSNetServiceBrowserDelegate_Extensions.DomainRemoved(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,System.String,System.Boolean)
M:Foundation.NSNetServiceBrowserDelegate_Extensions.FoundDomain(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,System.String,System.Boolean)
M:Foundation.NSNetServiceBrowserDelegate_Extensions.FoundService(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,Foundation.NSNetService,System.Boolean)
@@ -40942,13 +30674,6 @@ M:Foundation.NSNetServiceBrowserDelegate_Extensions.NotSearched(Foundation.INSNe
M:Foundation.NSNetServiceBrowserDelegate_Extensions.SearchStarted(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser)
M:Foundation.NSNetServiceBrowserDelegate_Extensions.SearchStopped(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser)
M:Foundation.NSNetServiceBrowserDelegate_Extensions.ServiceRemoved(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,Foundation.NSNetService,System.Boolean)
-M:Foundation.NSNetServiceBrowserDelegate.DomainRemoved(Foundation.NSNetServiceBrowser,System.String,System.Boolean)
-M:Foundation.NSNetServiceBrowserDelegate.FoundDomain(Foundation.NSNetServiceBrowser,System.String,System.Boolean)
-M:Foundation.NSNetServiceBrowserDelegate.FoundService(Foundation.NSNetServiceBrowser,Foundation.NSNetService,System.Boolean)
-M:Foundation.NSNetServiceBrowserDelegate.NotSearched(Foundation.NSNetServiceBrowser,Foundation.NSDictionary)
-M:Foundation.NSNetServiceBrowserDelegate.SearchStarted(Foundation.NSNetServiceBrowser)
-M:Foundation.NSNetServiceBrowserDelegate.SearchStopped(Foundation.NSNetServiceBrowser)
-M:Foundation.NSNetServiceBrowserDelegate.ServiceRemoved(Foundation.NSNetServiceBrowser,Foundation.NSNetService,System.Boolean)
M:Foundation.NSNetServiceConnectionEventArgs.#ctor(Foundation.NSInputStream,Foundation.NSOutputStream)
M:Foundation.NSNetServiceDataEventArgs.#ctor(Foundation.NSData)
M:Foundation.NSNetServiceDelegate_Extensions.AddressResolved(Foundation.INSNetServiceDelegate,Foundation.NSNetService)
@@ -40960,80 +30685,23 @@ M:Foundation.NSNetServiceDelegate_Extensions.Stopped(Foundation.INSNetServiceDel
M:Foundation.NSNetServiceDelegate_Extensions.UpdatedTxtRecordData(Foundation.INSNetServiceDelegate,Foundation.NSNetService,Foundation.NSData)
M:Foundation.NSNetServiceDelegate_Extensions.WillPublish(Foundation.INSNetServiceDelegate,Foundation.NSNetService)
M:Foundation.NSNetServiceDelegate_Extensions.WillResolve(Foundation.INSNetServiceDelegate,Foundation.NSNetService)
-M:Foundation.NSNetServiceDelegate.AddressResolved(Foundation.NSNetService)
-M:Foundation.NSNetServiceDelegate.DidAcceptConnection(Foundation.NSNetService,Foundation.NSInputStream,Foundation.NSOutputStream)
-M:Foundation.NSNetServiceDelegate.Published(Foundation.NSNetService)
-M:Foundation.NSNetServiceDelegate.PublishFailure(Foundation.NSNetService,Foundation.NSDictionary)
-M:Foundation.NSNetServiceDelegate.ResolveFailure(Foundation.NSNetService,Foundation.NSDictionary)
-M:Foundation.NSNetServiceDelegate.Stopped(Foundation.NSNetService)
-M:Foundation.NSNetServiceDelegate.UpdatedTxtRecordData(Foundation.NSNetService,Foundation.NSData)
-M:Foundation.NSNetServiceDelegate.WillPublish(Foundation.NSNetService)
-M:Foundation.NSNetServiceDelegate.WillResolve(Foundation.NSNetService)
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.NSNotification.FromName(System.String,Foundation.NSObject,Foundation.NSDictionary)
-M:Foundation.NSNotification.FromName(System.String,Foundation.NSObject)
-M:Foundation.NSNotificationCenter.AddObserver(Foundation.NSObject,ObjCRuntime.Selector,Foundation.NSString,Foundation.NSObject)
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.AddObserver(System.String,Foundation.NSObject,Foundation.NSOperationQueue,System.Action{Foundation.NSNotification})
-M:Foundation.NSNotificationCenter.PostNotification(Foundation.NSNotification)
-M:Foundation.NSNotificationCenter.PostNotificationName(System.String,Foundation.NSObject,Foundation.NSDictionary)
-M:Foundation.NSNotificationCenter.PostNotificationName(System.String,Foundation.NSObject)
-M:Foundation.NSNotificationCenter.RemoveObserver(Foundation.NSObject,System.String,Foundation.NSObject)
-M:Foundation.NSNotificationCenter.RemoveObserver(Foundation.NSObject)
M:Foundation.NSNotificationCenter.RemoveObservers(System.Collections.Generic.IEnumerable{Foundation.NSObject})
M:Foundation.NSNotificationEventArgs.#ctor(Foundation.NSNotification)
-M:Foundation.NSNotificationQueue.#ctor(Foundation.NSNotificationCenter)
-M:Foundation.NSNotificationQueue.DequeueNotificationsMatchingcoalesceMask(Foundation.NSNotification,Foundation.NSNotificationCoalescing)
M:Foundation.NSNotificationQueue.EnqueueNotification(Foundation.NSNotification,Foundation.NSPostingStyle,Foundation.NSNotificationCoalescing,Foundation.NSRunLoopMode[])
-M:Foundation.NSNotificationQueue.EnqueueNotification(Foundation.NSNotification,Foundation.NSPostingStyle,Foundation.NSNotificationCoalescing,Foundation.NSString[])
-M:Foundation.NSNotificationQueue.EnqueueNotification(Foundation.NSNotification,Foundation.NSPostingStyle)
-M:Foundation.NSNull.Copy(Foundation.NSZone)
-M:Foundation.NSNull.EncodeTo(Foundation.NSCoder)
M:Foundation.NSNull.RunAction(System.String,Foundation.NSObject,Foundation.NSDictionary)
-M:Foundation.NSNumber.#ctor(System.Boolean)
-M:Foundation.NSNumber.#ctor(System.Byte)
-M:Foundation.NSNumber.#ctor(System.Double)
-M:Foundation.NSNumber.#ctor(System.Int16)
-M:Foundation.NSNumber.#ctor(System.Int32)
-M:Foundation.NSNumber.#ctor(System.Int64)
-M:Foundation.NSNumber.#ctor(System.IntPtr)
M:Foundation.NSNumber.#ctor(System.Runtime.InteropServices.NFloat)
-M:Foundation.NSNumber.#ctor(System.SByte)
-M:Foundation.NSNumber.#ctor(System.Single)
-M:Foundation.NSNumber.#ctor(System.UInt16)
-M:Foundation.NSNumber.#ctor(System.UInt32)
-M:Foundation.NSNumber.#ctor(System.UInt64)
-M:Foundation.NSNumber.#ctor(System.UIntPtr)
-M:Foundation.NSNumber.Compare(Foundation.NSNumber)
M:Foundation.NSNumber.CompareTo(Foundation.NSNumber)
M:Foundation.NSNumber.CompareTo(System.Object)
-M:Foundation.NSNumber.DescriptionWithLocale(Foundation.NSLocale)
M:Foundation.NSNumber.Equals(Foundation.NSNumber)
M:Foundation.NSNumber.Equals(System.Object)
-M:Foundation.NSNumber.FromBoolean(System.Boolean)
-M:Foundation.NSNumber.FromByte(System.Byte)
-M:Foundation.NSNumber.FromDouble(System.Double)
-M:Foundation.NSNumber.FromFloat(System.Single)
-M:Foundation.NSNumber.FromInt16(System.Int16)
-M:Foundation.NSNumber.FromInt32(System.Int32)
-M:Foundation.NSNumber.FromInt64(System.Int64)
-M:Foundation.NSNumber.FromLong(System.IntPtr)
M:Foundation.NSNumber.FromNFloat(System.Runtime.InteropServices.NFloat)
-M:Foundation.NSNumber.FromNInt(System.IntPtr)
-M:Foundation.NSNumber.FromNUInt(System.UIntPtr)
M:Foundation.NSNumber.FromObject(System.Object)
-M:Foundation.NSNumber.FromSByte(System.SByte)
-M:Foundation.NSNumber.FromUInt16(System.UInt16)
-M:Foundation.NSNumber.FromUInt32(System.UInt32)
-M:Foundation.NSNumber.FromUInt64(System.UInt64)
-M:Foundation.NSNumber.FromUnsignedLong(System.UIntPtr)
M:Foundation.NSNumber.GetHashCode
M:Foundation.NSNumber.IsEqualTo(Foundation.NSNumber)
-M:Foundation.NSNumber.IsEqualTo(System.IntPtr)
M:Foundation.NSNumber.op_Explicit(Foundation.NSNumber)~System.Boolean
M:Foundation.NSNumber.op_Explicit(Foundation.NSNumber)~System.Byte
M:Foundation.NSNumber.op_Explicit(Foundation.NSNumber)~System.Double
@@ -41057,29 +30725,17 @@ M:Foundation.NSNumber.op_Implicit(System.UInt16)~Foundation.NSNumber
M:Foundation.NSNumber.op_Implicit(System.UInt32)~Foundation.NSNumber
M:Foundation.NSNumber.op_Implicit(System.UInt64)~Foundation.NSNumber
M:Foundation.NSNumber.ToString
-M:Foundation.NSNumberFormatter.LocalizedStringFromNumbernumberStyle(Foundation.NSNumber,Foundation.NSNumberFormatterStyle)
-M:Foundation.NSNumberFormatter.NumberFromString(System.String)
-M:Foundation.NSNumberFormatter.StringFromNumber(Foundation.NSNumber)
-M:Foundation.NSObject.#ctor
M:Foundation.NSObject.#ctor(Foundation.NSObjectFlag)
-M:Foundation.NSObject.AddObserver(Foundation.NSObject,Foundation.NSString,Foundation.NSKeyValueObservingOptions,System.IntPtr)
M:Foundation.NSObject.AddObserver(Foundation.NSObject,System.String,Foundation.NSKeyValueObservingOptions,System.IntPtr)
M:Foundation.NSObject.AddObserver(Foundation.NSString,Foundation.NSKeyValueObservingOptions,System.Action{Foundation.NSObservedChange})
M:Foundation.NSObject.AddObserver(System.String,Foundation.NSKeyValueObservingOptions,System.Action{Foundation.NSObservedChange})
-M:Foundation.NSObject.AutomaticallyNotifiesObserversForKey(System.String)
M:Foundation.NSObject.AwakeFromNib
M:Foundation.NSObject.BeginInvokeOnMainThread(ObjCRuntime.Selector,Foundation.NSObject)
M:Foundation.NSObject.BeginInvokeOnMainThread(System.Action)
M:Foundation.NSObject.Bind(Foundation.NSString,Foundation.NSObject,System.String,Foundation.NSDictionary)
-M:Foundation.NSObject.CancelPreviousPerformRequest(Foundation.NSObject,ObjCRuntime.Selector,Foundation.NSObject)
-M:Foundation.NSObject.CancelPreviousPerformRequest(Foundation.NSObject)
M:Foundation.NSObject.CommitEditing
M:Foundation.NSObject.CommitEditing(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:Foundation.NSObject.ConformsToProtocol(ObjCRuntime.NativeHandle)
-M:Foundation.NSObject.Copy
-M:Foundation.NSObject.DidChange(Foundation.NSKeyValueChange,Foundation.NSIndexSet,Foundation.NSString)
-M:Foundation.NSObject.DidChange(Foundation.NSString,Foundation.NSKeyValueSetMutationKind,Foundation.NSSet)
-M:Foundation.NSObject.DidChangeValue(System.String)
M:Foundation.NSObject.Dispose
M:Foundation.NSObject.Dispose(System.Boolean)
M:Foundation.NSObject.DoesNotRecognizeSelector(ObjCRuntime.Selector)
@@ -41091,9 +30747,7 @@ M:Foundation.NSObject.GetBindingInfo(Foundation.NSString)
M:Foundation.NSObject.GetBindingOptionDescriptions(Foundation.NSString)
M:Foundation.NSObject.GetBindingValueClass(Foundation.NSString)
M:Foundation.NSObject.GetDefaultPlaceholder(Foundation.NSObject,Foundation.NSString)
-M:Foundation.NSObject.GetDictionaryOfValuesFromKeys(Foundation.NSString[])
M:Foundation.NSObject.GetHashCode
-M:Foundation.NSObject.GetKeyPathsForValuesAffecting(Foundation.NSString)
M:Foundation.NSObject.GetMethodForSelector(ObjCRuntime.Selector)
M:Foundation.NSObject.Invoke(System.Action,System.Double)
M:Foundation.NSObject.Invoke(System.Action,System.TimeSpan)
@@ -41102,34 +30756,16 @@ M:Foundation.NSObject.InvokeOnMainThread(ObjCRuntime.Selector,Foundation.NSObjec
M:Foundation.NSObject.InvokeOnMainThread(System.Action)
M:Foundation.NSObject.MutableCopy
M:Foundation.NSObject.ObjectDidEndEditing(Foundation.NSObject)
-M:Foundation.NSObject.ObserveValue(Foundation.NSString,Foundation.NSObject,Foundation.NSDictionary,System.IntPtr)
M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject,Foundation.NSObject)
-M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject,System.Double,Foundation.NSString[])
-M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject,System.Double)
M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject)
-M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector,Foundation.NSThread,Foundation.NSObject,System.Boolean,Foundation.NSString[])
-M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector,Foundation.NSThread,Foundation.NSObject,System.Boolean)
M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector)
M:Foundation.NSObject.PrepareForInterfaceBuilder
-M:Foundation.NSObject.RemoveObserver(Foundation.NSObject,Foundation.NSString,System.IntPtr)
-M:Foundation.NSObject.RemoveObserver(Foundation.NSObject,Foundation.NSString)
M:Foundation.NSObject.RemoveObserver(Foundation.NSObject,System.String,System.IntPtr)
M:Foundation.NSObject.RemoveObserver(Foundation.NSObject,System.String)
M:Foundation.NSObject.SetDefaultPlaceholder(Foundation.NSObject,Foundation.NSObject,Foundation.NSString)
-M:Foundation.NSObject.SetNilValueForKey(Foundation.NSString)
-M:Foundation.NSObject.SetValueForKey(Foundation.NSObject,Foundation.NSString)
-M:Foundation.NSObject.SetValueForKeyPath(Foundation.NSObject,Foundation.NSString)
M:Foundation.NSObject.SetValueForKeyPath(ObjCRuntime.NativeHandle,Foundation.NSString)
-M:Foundation.NSObject.SetValueForUndefinedKey(Foundation.NSObject,Foundation.NSString)
-M:Foundation.NSObject.SetValuesForKeysWithDictionary(Foundation.NSDictionary)
M:Foundation.NSObject.ToString
M:Foundation.NSObject.Unbind(Foundation.NSString)
-M:Foundation.NSObject.ValueForKey(Foundation.NSString)
-M:Foundation.NSObject.ValueForKeyPath(Foundation.NSString)
-M:Foundation.NSObject.ValueForUndefinedKey(Foundation.NSString)
-M:Foundation.NSObject.WillChange(Foundation.NSKeyValueChange,Foundation.NSIndexSet,Foundation.NSString)
-M:Foundation.NSObject.WillChange(Foundation.NSString,Foundation.NSKeyValueSetMutationKind,Foundation.NSSet)
-M:Foundation.NSObject.WillChangeValue(System.String)
M:Foundation.NSObjectEventArgs.#ctor(Foundation.NSObject)
M:Foundation.NSObjectProtocol_Extensions.GetDebugDescription(Foundation.INSObjectProtocol)
M:Foundation.NSObservedChange.#ctor(Foundation.NSDictionary)
@@ -41144,42 +30780,13 @@ M:Foundation.NSOperatingSystemVersion.GetHashCode
M:Foundation.NSOperatingSystemVersion.op_Equality(Foundation.NSOperatingSystemVersion,Foundation.NSOperatingSystemVersion)
M:Foundation.NSOperatingSystemVersion.op_Inequality(Foundation.NSOperatingSystemVersion,Foundation.NSOperatingSystemVersion)
M:Foundation.NSOperatingSystemVersion.ToString
-M:Foundation.NSOperation.AddDependency(Foundation.NSOperation)
-M:Foundation.NSOperation.Cancel
-M:Foundation.NSOperation.Main
-M:Foundation.NSOperation.RemoveDependency(Foundation.NSOperation)
-M:Foundation.NSOperation.Start
-M:Foundation.NSOperation.WaitUntilFinished
-M:Foundation.NSOperationQueue.AddBarrier(System.Action)
-M:Foundation.NSOperationQueue.AddOperation(Foundation.NSOperation)
-M:Foundation.NSOperationQueue.AddOperation(System.Action)
-M:Foundation.NSOperationQueue.AddOperations(Foundation.NSOperation[],System.Boolean)
-M:Foundation.NSOperationQueue.CancelAllOperations
-M:Foundation.NSOperationQueue.WaitUntilAllOperationsAreFinished
-M:Foundation.NSOrderedSet.#ctor(Foundation.NSObject)
M:Foundation.NSOrderedSet.#ctor(Foundation.NSObject[])
-M:Foundation.NSOrderedSet.#ctor(Foundation.NSOrderedSet)
-M:Foundation.NSOrderedSet.#ctor(Foundation.NSSet)
M:Foundation.NSOrderedSet.#ctor(System.Object[])
M:Foundation.NSOrderedSet.#ctor(System.String[])
-M:Foundation.NSOrderedSet.AsSet
-M:Foundation.NSOrderedSet.Contains(Foundation.NSObject)
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.FirstObject
M:Foundation.NSOrderedSet.GetHashCode
-M:Foundation.NSOrderedSet.GetReverseOrderedSet
-M:Foundation.NSOrderedSet.IndexOf(Foundation.NSObject)
-M:Foundation.NSOrderedSet.Intersects(Foundation.NSOrderedSet)
-M:Foundation.NSOrderedSet.Intersects(Foundation.NSSet)
-M:Foundation.NSOrderedSet.IsEqualToOrderedSet(Foundation.NSOrderedSet)
-M:Foundation.NSOrderedSet.IsSubset(Foundation.NSOrderedSet)
-M:Foundation.NSOrderedSet.IsSubset(Foundation.NSSet)
-M:Foundation.NSOrderedSet.LastObject
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)
@@ -41208,181 +30815,52 @@ M:Foundation.NSOrderedSet`1.op_Inequality(Foundation.NSOrderedSet{`0},Foundation
M:Foundation.NSOrderedSet`1.op_Subtraction(Foundation.NSOrderedSet{`0},Foundation.NSOrderedSet{`0})
M:Foundation.NSOrderedSet`1.op_Subtraction(Foundation.NSOrderedSet{`0},Foundation.NSSet{`0})
M:Foundation.NSOrderedSet`1.ToArray
-M:Foundation.NSOrthography.#ctor(System.String,Foundation.NSDictionary)
-M:Foundation.NSOrthography.Copy(Foundation.NSZone)
-M:Foundation.NSOrthography.DominantLanguageForScript(System.String)
-M:Foundation.NSOrthography.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSOrthography.LanguagesForScript(System.String)
-M:Foundation.NSOutputStream.#ctor
-M:Foundation.NSOutputStream.#ctor(System.String,System.Boolean)
-M:Foundation.NSOutputStream.CreateFile(System.String,System.Boolean)
-M:Foundation.NSOutputStream.GetProperty(Foundation.NSString)
-M:Foundation.NSOutputStream.HasSpaceAvailable
-M:Foundation.NSOutputStream.OutputStreamToMemory
-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.Copy(Foundation.NSZone)
-M:Foundation.NSPersonNameComponents.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSPersonNameComponentsFormatter.GetAnnotatedString(Foundation.NSPersonNameComponents)
-M:Foundation.NSPersonNameComponentsFormatter.GetComponents(System.String)
-M:Foundation.NSPersonNameComponentsFormatter.GetLocalizedString(Foundation.NSPersonNameComponents,Foundation.NSPersonNameComponentsFormatterStyle,Foundation.NSPersonNameComponentsFormatterOptions)
-M:Foundation.NSPersonNameComponentsFormatter.GetObjectValue(Foundation.NSObject@,System.String,System.String@)
-M:Foundation.NSPersonNameComponentsFormatter.GetString(Foundation.NSPersonNameComponents)
-M:Foundation.NSPipe.Create
-M:Foundation.NSPort.Copy(Foundation.NSZone)
-M:Foundation.NSPort.Create
M:Foundation.NSPort.Dispose(System.Boolean)
-M:Foundation.NSPort.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSPort.Invalidate
M:Foundation.NSPort.RemoveFromRunLoop(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSPort.RemoveFromRunLoop(Foundation.NSRunLoop,Foundation.NSString)
M:Foundation.NSPort.ScheduleInRunLoop(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSPort.ScheduleInRunLoop(Foundation.NSRunLoop,Foundation.NSString)
-M:Foundation.NSPort.SendBeforeDate(Foundation.NSDate,Foundation.NSMutableArray,Foundation.NSPort,System.UIntPtr)
-M:Foundation.NSPort.SendBeforeDate(Foundation.NSDate,System.UIntPtr,Foundation.NSMutableArray,Foundation.NSPort,System.UIntPtr)
M:Foundation.NSPortDelegate_Extensions.MessageReceived(Foundation.INSPortDelegate,Foundation.NSPortMessage)
-M:Foundation.NSPortDelegate.MessageReceived(Foundation.NSPortMessage)
-M:Foundation.NSPortMessage.#ctor(Foundation.NSPort,Foundation.NSPort,Foundation.NSArray)
-M:Foundation.NSPortMessage.SendBefore(Foundation.NSDate)
-M:Foundation.NSPortNameServer.GetPort(System.String,System.String)
-M:Foundation.NSPortNameServer.GetPort(System.String)
-M:Foundation.NSPortNameServer.RegisterPort(Foundation.NSPort,System.String)
-M:Foundation.NSPortNameServer.RemovePort(System.String)
-M:Foundation.NSPredicate.AllowEvaluation
-M:Foundation.NSPredicate.Copy(Foundation.NSZone)
-M:Foundation.NSPredicate.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSPredicate.EvaluateWithObject(Foundation.NSObject,Foundation.NSDictionary)
-M:Foundation.NSPredicate.EvaluateWithObject(Foundation.NSObject)
-M:Foundation.NSPredicate.FromExpression(Foundation.NSPredicateEvaluator)
M:Foundation.NSPredicate.FromFormat(System.String,Foundation.NSObject)
M:Foundation.NSPredicate.FromFormat(System.String,Foundation.NSObject[])
M:Foundation.NSPredicate.FromFormat(System.String)
-M:Foundation.NSPredicate.FromMetadataQueryString(System.String)
-M:Foundation.NSPredicate.FromValue(System.Boolean)
-M:Foundation.NSPredicate.PredicateWithSubstitutionVariables(Foundation.NSDictionary)
M:Foundation.NSPredicateSupport_NSArray.FilterUsingPredicate(Foundation.NSArray,Foundation.NSArray)
M:Foundation.NSPredicateSupport_NSMutableArray.FilterUsingPredicate(Foundation.NSMutableArray,Foundation.NSPredicate)
M:Foundation.NSPredicateSupport_NSMutableOrderedSet.FilterUsingPredicate(Foundation.NSMutableOrderedSet,Foundation.NSPredicate)
M:Foundation.NSPredicateSupport_NSMutableSet.FilterUsingPredicate(Foundation.NSMutableSet,Foundation.NSPredicate)
M:Foundation.NSPredicateSupport_NSOrderedSet.FilterUsingPredicate(Foundation.NSOrderedSet,Foundation.NSPredicate)
M:Foundation.NSPredicateSupport_NSSet.FilterUsingPredicate(Foundation.NSSet,Foundation.NSPredicate)
-M:Foundation.NSPresentationIntent.Copy(Foundation.NSZone)
-M:Foundation.NSPresentationIntent.CreateBlockQuoteIntent(System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateCodeBlockIntent(System.IntPtr,System.String,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateHeaderIntent(System.IntPtr,System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateListItemIntent(System.IntPtr,System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateOrderedListIntent(System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateParagraphIntent(System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateTableCellIntent(System.IntPtr,System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateTableHeaderRowIntent(System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateTableIntent(System.IntPtr,System.IntPtr,Foundation.NSNumber[],Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateTableRowIntent(System.IntPtr,System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateThematicBreakIntent(System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.CreateUnorderedListIntent(System.IntPtr,Foundation.NSPresentationIntent)
-M:Foundation.NSPresentationIntent.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSPresentationIntent.IsEquivalent(Foundation.NSPresentationIntent)
M:Foundation.NSProcessInfo_NSUserInformation.GetFullUserName(Foundation.NSProcessInfo)
M:Foundation.NSProcessInfo_NSUserInformation.GetUserName(Foundation.NSProcessInfo)
-M:Foundation.NSProcessInfo.BeginActivity(Foundation.NSActivityOptions,System.String)
-M:Foundation.NSProcessInfo.DisableAutomaticTermination(System.String)
-M:Foundation.NSProcessInfo.DisableSuddenTermination
-M:Foundation.NSProcessInfo.EnableAutomaticTermination(System.String)
-M:Foundation.NSProcessInfo.EnableSuddenTermination
-M:Foundation.NSProcessInfo.EndActivity(Foundation.NSObject)
-M:Foundation.NSProcessInfo.IsOperatingSystemAtLeastVersion(Foundation.NSOperatingSystemVersion)
-M:Foundation.NSProcessInfo.PerformActivity(Foundation.NSActivityOptions,System.String,System.Action)
-M:Foundation.NSProcessInfo.PerformExpiringActivity(System.String,System.Action{System.Boolean})
-M:Foundation.NSProgress.#ctor(Foundation.NSProgress,Foundation.NSDictionary)
M:Foundation.NSProgress.AcknowledgeWithSuccess(System.Boolean)
-M:Foundation.NSProgress.AddChild(Foundation.NSProgress,System.Int64)
-M:Foundation.NSProgress.AddSubscriberForFile(Foundation.NSUrl,System.Action{Foundation.NSProgress})
-M:Foundation.NSProgress.BecomeCurrent(System.Int64)
-M:Foundation.NSProgress.Cancel
-M:Foundation.NSProgress.FromTotalUnitCount(System.Int64,Foundation.NSProgress,System.Int64)
-M:Foundation.NSProgress.FromTotalUnitCount(System.Int64)
-M:Foundation.NSProgress.GetDiscreteProgress(System.Int64)
-M:Foundation.NSProgress.Pause
-M:Foundation.NSProgress.PerformAsCurrent(System.Int64,System.Action)
M:Foundation.NSProgress.PerformAsCurrentAsync(System.Int64)
-M:Foundation.NSProgress.Publish
-M:Foundation.NSProgress.RemoveSubscriber(Foundation.NSObject)
-M:Foundation.NSProgress.ResignCurrent
-M:Foundation.NSProgress.Resume
M:Foundation.NSProgress.SetAcknowledgementHandler(System.Action{System.Boolean},System.String)
M:Foundation.NSProgress.SetCancellationHandler(System.Action)
M:Foundation.NSProgress.SetPauseHandler(System.Action)
M:Foundation.NSProgress.SetResumingHandler(System.Action)
-M:Foundation.NSProgress.SetUserInfo(Foundation.NSObject,Foundation.NSString)
-M:Foundation.NSProgress.Unpublish
M:Foundation.NSPropertyListSerialization.DataWithPropertyList(Foundation.NSObject,Foundation.NSPropertyListFormat,Foundation.NSError@)
-M:Foundation.NSPropertyListSerialization.DataWithPropertyList(Foundation.NSObject,Foundation.NSPropertyListFormat,Foundation.NSPropertyListWriteOptions,Foundation.NSError@)
-M:Foundation.NSPropertyListSerialization.IsValidForFormat(Foundation.NSObject,Foundation.NSPropertyListFormat)
M:Foundation.NSPropertyListSerialization.PropertyListWithData(Foundation.NSData,Foundation.NSPropertyListFormat@,Foundation.NSError@)
-M:Foundation.NSPropertyListSerialization.PropertyListWithData(Foundation.NSData,Foundation.NSPropertyListReadOptions,Foundation.NSPropertyListFormat@,Foundation.NSError@)
M:Foundation.NSPropertyListSerialization.PropertyListWithStream(Foundation.NSInputStream,Foundation.NSPropertyListFormat@,Foundation.NSError@)
-M:Foundation.NSPropertyListSerialization.PropertyListWithStream(Foundation.NSInputStream,Foundation.NSPropertyListReadOptions,Foundation.NSPropertyListFormat@,Foundation.NSError@)
M:Foundation.NSPropertyListSerialization.WritePropertyList(Foundation.NSObject,Foundation.NSOutputStream,Foundation.NSPropertyListFormat,Foundation.NSError@)
-M:Foundation.NSPropertyListSerialization.WritePropertyList(Foundation.NSObject,Foundation.NSOutputStream,Foundation.NSPropertyListFormat,Foundation.NSPropertyListWriteOptions,Foundation.NSError@)
-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.MutableCopy(Foundation.NSZone)
M:Foundation.NSRange.#ctor(System.IntPtr,System.IntPtr)
M:Foundation.NSRange.Equals(Foundation.NSRange)
M:Foundation.NSRange.Equals(System.Object)
M:Foundation.NSRange.GetHashCode
M:Foundation.NSRange.ToString
-M:Foundation.NSRecursiveLock.Lock
-M:Foundation.NSRecursiveLock.LockBeforeDate(Foundation.NSDate)
-M:Foundation.NSRecursiveLock.TryLock
-M:Foundation.NSRecursiveLock.Unlock
-M:Foundation.NSRegularExpression.#ctor(Foundation.NSString,Foundation.NSRegularExpressionOptions,Foundation.NSError@)
-M:Foundation.NSRegularExpression.Copy(Foundation.NSZone)
-M:Foundation.NSRegularExpression.Create(Foundation.NSString,Foundation.NSRegularExpressionOptions,Foundation.NSError@)
-M:Foundation.NSRegularExpression.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSRegularExpression.EnumerateMatches(Foundation.NSString,Foundation.NSMatchingOptions,Foundation.NSRange,Foundation.NSMatchEnumerator)
-M:Foundation.NSRegularExpression.FindFirstMatch(System.String,Foundation.NSMatchingOptions,Foundation.NSRange)
-M:Foundation.NSRegularExpression.GetEscapedPattern(Foundation.NSString)
-M:Foundation.NSRegularExpression.GetEscapedTemplate(Foundation.NSString)
-M:Foundation.NSRegularExpression.GetMatches(Foundation.NSString,Foundation.NSMatchingOptions,Foundation.NSRange)
-M:Foundation.NSRegularExpression.GetNumberOfMatches(Foundation.NSString,Foundation.NSMatchingOptions,Foundation.NSRange)
-M:Foundation.NSRegularExpression.GetRangeOfFirstMatch(System.String,Foundation.NSMatchingOptions,Foundation.NSRange)
-M:Foundation.NSRegularExpression.GetReplacementString(Foundation.NSTextCheckingResult,Foundation.NSString,System.IntPtr,Foundation.NSString)
-M:Foundation.NSRegularExpression.ReplaceMatches(Foundation.NSMutableString,Foundation.NSMatchingOptions,Foundation.NSRange,Foundation.NSString)
-M:Foundation.NSRegularExpression.ReplaceMatches(System.String,Foundation.NSMatchingOptions,Foundation.NSRange,System.String)
-M:Foundation.NSRelativeDateTimeFormatter.GetLocalizedString(Foundation.NSDate,Foundation.NSDate)
-M:Foundation.NSRelativeDateTimeFormatter.GetLocalizedString(Foundation.NSDateComponents)
-M:Foundation.NSRelativeDateTimeFormatter.GetLocalizedString(System.Double)
-M:Foundation.NSRelativeDateTimeFormatter.GetString(Foundation.NSObject)
M:Foundation.NSRunLoop.AcceptInputForMode(Foundation.NSRunLoopMode,Foundation.NSDate)
-M:Foundation.NSRunLoop.AcceptInputForMode(Foundation.NSString,Foundation.NSDate)
M:Foundation.NSRunLoop.AddTimer(Foundation.NSTimer,Foundation.NSRunLoopMode)
-M:Foundation.NSRunLoop.AddTimer(Foundation.NSTimer,Foundation.NSString)
-M:Foundation.NSRunLoop.GetCFRunLoop
M:Foundation.NSRunLoop.LimitDateForMode(Foundation.NSRunLoopMode)
-M:Foundation.NSRunLoop.LimitDateForMode(Foundation.NSString)
M:Foundation.NSRunLoop.Perform(Foundation.NSRunLoopMode[],System.Action)
-M:Foundation.NSRunLoop.Perform(Foundation.NSString[],System.Action)
-M:Foundation.NSRunLoop.Perform(System.Action)
-M:Foundation.NSRunLoop.Run
-M:Foundation.NSRunLoop.RunUntil(Foundation.NSDate)
M:Foundation.NSRunLoop.RunUntil(Foundation.NSRunLoopMode,Foundation.NSDate)
-M:Foundation.NSRunLoop.RunUntil(Foundation.NSString,Foundation.NSDate)
M:Foundation.NSRunLoop.Stop
M:Foundation.NSRunLoop.WakeUp
M:Foundation.NSRunLoopModeExtensions.GetConstants(Foundation.NSRunLoopMode[])
-M:Foundation.NSScriptCommand.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSScriptCommand.Execute
M:Foundation.NSScriptCommandArgumentDescription.#ctor
M:Foundation.NSScriptCommandArgumentDescription.#ctor(Foundation.NSDictionary)
M:Foundation.NSScriptCommandArgumentDescription.#ctor(System.String,System.String,System.String,System.Boolean)
M:Foundation.NSScriptCommandDescription.Create(System.String,System.String,Foundation.NSScriptCommandDescriptionDictionary)
M:Foundation.NSScriptCommandDescription.CreateCommand
-M:Foundation.NSScriptCommandDescription.EncodeTo(Foundation.NSCoder)
M:Foundation.NSScriptCommandDescription.GetAppleEventCodeForArgument(System.String)
M:Foundation.NSScriptCommandDescription.GetTypeForArgument(System.String)
M:Foundation.NSScriptCommandDescription.IsOptionalArgument(System.String)
@@ -41393,23 +30871,11 @@ M:Foundation.NSScriptCommandDescriptionDictionary.Remove(Foundation.NSScriptComm
M:Foundation.NSSearchPath.GetDirectories(Foundation.NSSearchPathDirectory,Foundation.NSSearchPathDomain,System.Boolean)
M:Foundation.NSSecureCoding.SupportsSecureCoding(ObjCRuntime.Class)
M:Foundation.NSSecureCoding.SupportsSecureCoding(System.Type)
-M:Foundation.NSSet.#ctor(Foundation.NSArray)
M:Foundation.NSSet.#ctor(Foundation.NSObject[])
-M:Foundation.NSSet.#ctor(Foundation.NSSet)
M:Foundation.NSSet.#ctor(System.Object[])
M:Foundation.NSSet.#ctor(System.String[])
-M:Foundation.NSSet.Contains(Foundation.NSObject)
M:Foundation.NSSet.Contains(System.Object)
-M:Foundation.NSSet.Copy(Foundation.NSZone)
-M:Foundation.NSSet.CreateSet
-M:Foundation.NSSet.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSSet.Enumerate(Foundation.NSSetEnumerator)
-M:Foundation.NSSet.IntersectsSet(Foundation.NSSet)
-M:Foundation.NSSet.IsEqualToSet(Foundation.NSSet)
-M:Foundation.NSSet.IsSubsetOf(Foundation.NSSet)
-M:Foundation.NSSet.LookupMember(Foundation.NSObject)
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)
@@ -41425,197 +30891,73 @@ 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(System.String,System.Boolean,Foundation.NSComparator)
-M:Foundation.NSSortDescriptor.#ctor(System.String,System.Boolean,ObjCRuntime.Selector)
-M:Foundation.NSSortDescriptor.#ctor(System.String,System.Boolean)
-M:Foundation.NSSortDescriptor.AllowEvaluation
-M:Foundation.NSSortDescriptor.Compare(Foundation.NSObject,Foundation.NSObject)
-M:Foundation.NSSortDescriptor.Copy(Foundation.NSZone)
-M:Foundation.NSSortDescriptor.EncodeTo(Foundation.NSCoder)
M:Foundation.NSSortDescriptorSorting_NSMutableArray.SortUsingDescriptors(Foundation.NSMutableArray,Foundation.NSSortDescriptor[])
M:Foundation.NSStream.add_OnEvent(System.EventHandler{Foundation.NSStreamEventArgs})
-M:Foundation.NSStream.Close
M:Foundation.NSStream.CreateBoundPair(Foundation.NSInputStream@,Foundation.NSOutputStream@,System.IntPtr)
M:Foundation.NSStream.CreatePairWithPeerSocketSignature(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType,System.Net.IPEndPoint,Foundation.NSInputStream@,Foundation.NSOutputStream@)
M:Foundation.NSStream.CreatePairWithSocket(CoreFoundation.CFSocket,Foundation.NSInputStream@,Foundation.NSOutputStream@)
M:Foundation.NSStream.CreatePairWithSocketToHost(System.Net.IPEndPoint,Foundation.NSInputStream@,Foundation.NSOutputStream@)
M:Foundation.NSStream.Dispose(System.Boolean)
-M:Foundation.NSStream.GetBoundStreams(System.UIntPtr,Foundation.NSInputStream@,Foundation.NSOutputStream@)
-M:Foundation.NSStream.GetProperty(Foundation.NSString)
-M:Foundation.NSStream.GetStreamsToHost(System.String,System.IntPtr,Foundation.NSInputStream@,Foundation.NSOutputStream@)
-M:Foundation.NSStream.Open
M:Foundation.NSStream.remove_OnEvent(System.EventHandler{Foundation.NSStreamEventArgs})
M:Foundation.NSStream.Schedule(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSStream.Schedule(Foundation.NSRunLoop,Foundation.NSString)
-M:Foundation.NSStream.SetProperty(Foundation.NSObject,Foundation.NSString)
M:Foundation.NSStream.Unschedule(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSStream.Unschedule(Foundation.NSRunLoop,Foundation.NSString)
M:Foundation.NSStreamDelegate_Extensions.HandleEvent(Foundation.INSStreamDelegate,Foundation.NSStream,Foundation.NSStreamEvent)
-M:Foundation.NSStreamDelegate.HandleEvent(Foundation.NSStream,Foundation.NSStreamEvent)
M:Foundation.NSStreamEventArgs.#ctor(Foundation.NSStreamEvent)
M:Foundation.NSStreamSocksOptions.#ctor
-M:Foundation.NSString.#ctor(Foundation.NSData,Foundation.NSStringEncoding)
M:Foundation.NSString.#ctor(System.String,System.Int32,System.Int32)
M:Foundation.NSString.#ctor(System.String)
-M:Foundation.NSString.AbbreviateTildeInPath
-M:Foundation.NSString.AppendPathComponent(Foundation.NSString)
-M:Foundation.NSString.AppendPathExtension(Foundation.NSString)
-M:Foundation.NSString.AppendPaths(System.String[])
M:Foundation.NSString.BoundingRectWithSize(CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,Foundation.NSDictionary)
-M:Foundation.NSString.Capitalize(Foundation.NSLocale)
-M:Foundation.NSString.CommonPrefix(Foundation.NSString,Foundation.NSStringCompareOptions)
-M:Foundation.NSString.Compare(Foundation.NSString,Foundation.NSStringCompareOptions,Foundation.NSRange,Foundation.NSLocale)
-M:Foundation.NSString.Compare(Foundation.NSString,Foundation.NSStringCompareOptions,Foundation.NSRange)
-M:Foundation.NSString.Compare(Foundation.NSString,Foundation.NSStringCompareOptions)
-M:Foundation.NSString.Compare(Foundation.NSString)
M:Foundation.NSString.CompareTo(Foundation.NSString)
-M:Foundation.NSString.Contains(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)
-M:Foundation.NSString.DeleteLastPathComponent
-M:Foundation.NSString.DeletePathExtension
M:Foundation.NSString.DetectStringEncoding(Foundation.NSData,Foundation.EncodingDetectionOptions,System.String@,System.Boolean@)
M:Foundation.NSString.DrawString(CoreGraphics.CGPoint,Foundation.NSDictionary)
M:Foundation.NSString.DrawString(CoreGraphics.CGRect,Foundation.NSDictionary)
M:Foundation.NSString.DrawString(CoreGraphics.CGRect,Foundation.NSStringDrawingOptions,Foundation.NSDictionary)
M:Foundation.NSString.Encode(Foundation.NSStringEncoding,System.Boolean)
-M:Foundation.NSString.EncodeTo(Foundation.NSCoder)
M:Foundation.NSString.Equals(Foundation.NSString,Foundation.NSString)
M:Foundation.NSString.Equals(System.Object)
-M:Foundation.NSString.ExpandTildeInPath
M:Foundation.NSString.FromData(Foundation.NSData,Foundation.NSStringEncoding)
M:Foundation.NSString.GetHashCode
-M:Foundation.NSString.GetItemProviderVisibilityForTypeIdentifier(System.String)
-M:Foundation.NSString.GetLineStart(System.UIntPtr@,System.UIntPtr@,System.UIntPtr@,Foundation.NSRange)
M:Foundation.NSString.GetLocalizedUserNotificationString(Foundation.NSString,Foundation.NSObject[])
-M:Foundation.NSString.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
-M:Foundation.NSString.GetParagraphPositions(System.UIntPtr@,System.UIntPtr@,System.UIntPtr@,Foundation.NSRange)
-M:Foundation.NSString.GetParagraphRange(Foundation.NSRange)
M:Foundation.NSString.GetPasteboardPropertyListForType(System.String)
M:Foundation.NSString.GetReadableTypesForPasteboard(AppKit.NSPasteboard)
M:Foundation.NSString.GetReadingOptionsForType(System.String,AppKit.NSPasteboard)
-M:Foundation.NSString.GetVariantFittingPresentationWidth(System.IntPtr)
M:Foundation.NSString.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
M:Foundation.NSString.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
-M:Foundation.NSString.HasPrefix(Foundation.NSString)
-M:Foundation.NSString.HasSuffix(Foundation.NSString)
M:Foundation.NSString.IsEqualTo(System.IntPtr)
-M:Foundation.NSString.LineRangeForRange(Foundation.NSRange)
-M:Foundation.NSString.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:Foundation.NSString.LoadDataAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSString.LoadDataAsync(System.String)
-M:Foundation.NSString.LocalizedCaseInsensitiveContains(Foundation.NSString)
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.LocalizedStandardContainsString(Foundation.NSString)
-M:Foundation.NSString.LocalizedStandardRangeOfString(Foundation.NSString)
-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
M:Foundation.NSString.op_Inequality(Foundation.NSString,Foundation.NSString)
-M:Foundation.NSString.PathWithComponents(System.String[])
M:Foundation.NSString.ReleaseNative(ObjCRuntime.NativeHandle)
-M:Foundation.NSString.Replace(Foundation.NSRange,Foundation.NSString)
-M:Foundation.NSString.ResolveSymlinksInPath
-M:Foundation.NSString.SeparateComponents(Foundation.NSCharacterSet)
-M:Foundation.NSString.SeparateComponents(Foundation.NSString)
-M:Foundation.NSString.StandarizePath
M:Foundation.NSString.StringSize(Foundation.NSDictionary)
-M:Foundation.NSString.ToLower(Foundation.NSLocale)
M:Foundation.NSString.ToString
-M:Foundation.NSString.ToUpper(Foundation.NSLocale)
-M:Foundation.NSString.TransliterateString(Foundation.NSString,System.Boolean)
M:Foundation.NSString.TransliterateString(Foundation.NSStringTransform,System.Boolean)
-M:Foundation.NSTask.Interrupt
-M:Foundation.NSTask.Launch
-M:Foundation.NSTask.Launch(Foundation.NSError@)
-M:Foundation.NSTask.LaunchFromPath(System.String,System.String[])
-M:Foundation.NSTask.LaunchFromUrl(Foundation.NSUrl,System.String[],Foundation.NSError@,System.Action{Foundation.NSTask})
-M:Foundation.NSTask.Resume
-M:Foundation.NSTask.Suspend
-M:Foundation.NSTask.Terminate
-M:Foundation.NSTask.WaitUntilExit
-M:Foundation.NSTermOfAddress.Copy(Foundation.NSZone)
-M:Foundation.NSTermOfAddress.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSTermOfAddress.GetLocalized(System.String,Foundation.NSMorphologyPronoun[])
M:Foundation.NSTextCheckingAddressComponents.#ctor
M:Foundation.NSTextCheckingAddressComponents.#ctor(Foundation.NSDictionary)
M:Foundation.NSTextCheckingResult.AddressCheckingResult(Foundation.NSRange,Foundation.NSTextCheckingAddressComponents)
-M:Foundation.NSTextCheckingResult.Copy(Foundation.NSZone)
-M:Foundation.NSTextCheckingResult.CorrectionCheckingResult(Foundation.NSRange,System.String,System.String[])
-M:Foundation.NSTextCheckingResult.CorrectionCheckingResult(Foundation.NSRange,System.String)
-M:Foundation.NSTextCheckingResult.DashCheckingResult(Foundation.NSRange,System.String)
-M:Foundation.NSTextCheckingResult.DateCheckingResult(Foundation.NSRange,Foundation.NSDate,Foundation.NSTimeZone,System.Double)
-M:Foundation.NSTextCheckingResult.DateCheckingResult(Foundation.NSRange,Foundation.NSDate)
-M:Foundation.NSTextCheckingResult.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSTextCheckingResult.GetRange(System.String)
-M:Foundation.NSTextCheckingResult.GrammarCheckingResult(Foundation.NSRange,System.String[])
-M:Foundation.NSTextCheckingResult.LinkCheckingResult(Foundation.NSRange,Foundation.NSUrl)
-M:Foundation.NSTextCheckingResult.OrthographyCheckingResult(Foundation.NSRange,Foundation.NSOrthography)
-M:Foundation.NSTextCheckingResult.PhoneNumberCheckingResult(Foundation.NSRange,System.String)
-M:Foundation.NSTextCheckingResult.QuoteCheckingResult(Foundation.NSRange,Foundation.NSString)
-M:Foundation.NSTextCheckingResult.RangeAtIndex(System.UIntPtr)
-M:Foundation.NSTextCheckingResult.ReplacementCheckingResult(Foundation.NSRange,System.String)
-M:Foundation.NSTextCheckingResult.ResultByAdjustingRanges(System.IntPtr)
-M:Foundation.NSTextCheckingResult.SpellCheckingResult(Foundation.NSRange)
M:Foundation.NSTextCheckingResult.TransitInformationCheckingResult(Foundation.NSRange,Foundation.NSTextCheckingTransitComponents)
M:Foundation.NSTextCheckingTransitComponents.#ctor
M:Foundation.NSTextCheckingTransitComponents.#ctor(Foundation.NSDictionary)
-M:Foundation.NSThread.#ctor(Foundation.NSObject,ObjCRuntime.Selector,Foundation.NSObject)
-M:Foundation.NSThread.Cancel
-M:Foundation.NSThread.Exit
-M:Foundation.NSThread.Main
-M:Foundation.NSThread.SleepFor(System.Double)
-M:Foundation.NSThread.SleepUntil(Foundation.NSDate)
-M:Foundation.NSThread.Start
M:Foundation.NSThread.Start(System.Action)
-M:Foundation.NSTimer.#ctor(Foundation.NSDate,System.Double,Foundation.NSObject,ObjCRuntime.Selector,Foundation.NSObject,System.Boolean)
-M:Foundation.NSTimer.#ctor(Foundation.NSDate,System.Double,System.Boolean,System.Action{Foundation.NSTimer})
M:Foundation.NSTimer.#ctor(Foundation.NSDate,System.TimeSpan,System.Action{Foundation.NSTimer},System.Boolean)
M:Foundation.NSTimer.CreateRepeatingScheduledTimer(System.Double,System.Action{Foundation.NSTimer})
M:Foundation.NSTimer.CreateRepeatingScheduledTimer(System.TimeSpan,System.Action{Foundation.NSTimer})
M:Foundation.NSTimer.CreateRepeatingTimer(System.Double,System.Action{Foundation.NSTimer})
M:Foundation.NSTimer.CreateRepeatingTimer(System.TimeSpan,System.Action{Foundation.NSTimer})
-M:Foundation.NSTimer.CreateScheduledTimer(System.Double,Foundation.NSObject,ObjCRuntime.Selector,Foundation.NSObject,System.Boolean)
M:Foundation.NSTimer.CreateScheduledTimer(System.Double,System.Action{Foundation.NSTimer})
-M:Foundation.NSTimer.CreateScheduledTimer(System.Double,System.Boolean,System.Action{Foundation.NSTimer})
M:Foundation.NSTimer.CreateScheduledTimer(System.TimeSpan,System.Action{Foundation.NSTimer})
-M:Foundation.NSTimer.CreateTimer(System.Double,Foundation.NSObject,ObjCRuntime.Selector,Foundation.NSObject,System.Boolean)
M:Foundation.NSTimer.CreateTimer(System.Double,System.Action{Foundation.NSTimer})
-M:Foundation.NSTimer.CreateTimer(System.Double,System.Boolean,System.Action{Foundation.NSTimer})
M:Foundation.NSTimer.CreateTimer(System.TimeSpan,System.Action{Foundation.NSTimer})
M:Foundation.NSTimer.Dispose(System.Boolean)
-M:Foundation.NSTimer.Fire
-M:Foundation.NSTimer.Invalidate
-M:Foundation.NSTimeZone.#ctor(System.String,Foundation.NSData)
-M:Foundation.NSTimeZone.#ctor(System.String)
-M:Foundation.NSTimeZone.Abbreviation
-M:Foundation.NSTimeZone.Abbreviation(Foundation.NSDate)
-M:Foundation.NSTimeZone.Copy(Foundation.NSZone)
-M:Foundation.NSTimeZone.DaylightSavingTimeOffset(Foundation.NSDate)
-M:Foundation.NSTimeZone.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSTimeZone.FromAbbreviation(System.String)
-M:Foundation.NSTimeZone.FromGMT(System.IntPtr)
-M:Foundation.NSTimeZone.FromName(System.String,Foundation.NSData)
-M:Foundation.NSTimeZone.FromName(System.String)
-M:Foundation.NSTimeZone.GetLocalizedName(Foundation.NSTimeZoneNameStyle,Foundation.NSLocale)
-M:Foundation.NSTimeZone.IsDaylightSavingsTime(Foundation.NSDate)
-M:Foundation.NSTimeZone.NextDaylightSavingTimeTransitionAfter(Foundation.NSDate)
-M:Foundation.NSTimeZone.ResetSystemTimeZone
-M:Foundation.NSTimeZone.SecondsFromGMT(Foundation.NSDate)
M:Foundation.NSTimeZone.ToString
-M:Foundation.NSUbiquitousKeyValueStore.GetArray(System.String)
-M:Foundation.NSUbiquitousKeyValueStore.GetBool(System.String)
-M:Foundation.NSUbiquitousKeyValueStore.GetData(System.String)
-M:Foundation.NSUbiquitousKeyValueStore.GetDictionary(System.String)
-M:Foundation.NSUbiquitousKeyValueStore.GetDouble(System.String)
-M:Foundation.NSUbiquitousKeyValueStore.GetLong(System.String)
-M:Foundation.NSUbiquitousKeyValueStore.GetString(System.String)
-M:Foundation.NSUbiquitousKeyValueStore.Remove(System.String)
M:Foundation.NSUbiquitousKeyValueStore.SetArray(System.String,Foundation.NSObject[])
M:Foundation.NSUbiquitousKeyValueStore.SetBool(System.String,System.Boolean)
M:Foundation.NSUbiquitousKeyValueStore.SetData(System.String,Foundation.NSData)
@@ -41623,124 +30965,20 @@ M:Foundation.NSUbiquitousKeyValueStore.SetDictionary(System.String,Foundation.NS
M:Foundation.NSUbiquitousKeyValueStore.SetDouble(System.String,System.Double)
M:Foundation.NSUbiquitousKeyValueStore.SetLong(System.String,System.Int64)
M:Foundation.NSUbiquitousKeyValueStore.SetString(System.String,System.String)
-M:Foundation.NSUbiquitousKeyValueStore.Synchronize
-M:Foundation.NSUbiquitousKeyValueStore.ToDictionary
M:Foundation.NSUbiquitousKeyValueStoreChangeEventArgs.#ctor(Foundation.NSNotification)
-M:Foundation.NSUndoManager.BeginUndoGrouping
-M:Foundation.NSUndoManager.DisableUndoRegistration
-M:Foundation.NSUndoManager.EnableUndoRegistration
-M:Foundation.NSUndoManager.EndUndoGrouping
-M:Foundation.NSUndoManager.GetRedoActionUserInfoValue(System.String)
-M:Foundation.NSUndoManager.GetUndoActionUserInfoValue(System.String)
-M:Foundation.NSUndoManager.PrepareWithInvocationTarget(Foundation.NSObject)
-M:Foundation.NSUndoManager.Redo
-M:Foundation.NSUndoManager.RedoMenuTitleForUndoActionName(System.String)
-M:Foundation.NSUndoManager.RegisterUndo(Foundation.NSObject,System.Action{Foundation.NSObject})
-M:Foundation.NSUndoManager.RegisterUndoWithTarget(Foundation.NSObject,ObjCRuntime.Selector,Foundation.NSObject)
-M:Foundation.NSUndoManager.RemoveAllActions
-M:Foundation.NSUndoManager.RemoveAllActions(Foundation.NSObject)
-M:Foundation.NSUndoManager.SetActionIsDiscardable(System.Boolean)
-M:Foundation.NSUndoManager.SetActionName(System.String)
-M:Foundation.NSUndoManager.SetActionUserInfoValue(Foundation.NSObject,System.String)
-M:Foundation.NSUndoManager.Undo
-M:Foundation.NSUndoManager.UndoMenuTitleForUndoActionName(System.String)
-M:Foundation.NSUndoManager.UndoNestedGroup
M:Foundation.NSUndoManagerCloseUndoGroupEventArgs.#ctor(Foundation.NSNotification)
-M:Foundation.NSUnit.#ctor(System.String)
-M:Foundation.NSUnit.Copy(Foundation.NSZone)
-M:Foundation.NSUnit.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitAcceleration.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitAcceleration.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitAngle.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitAngle.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitArea.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitArea.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitConcentrationMass.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitConcentrationMass.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitConcentrationMass.GetMillimolesPerLiter(System.Double)
-M:Foundation.NSUnitConverter.GetBaseUnitValue(System.Double)
-M:Foundation.NSUnitConverter.GetValue(System.Double)
-M:Foundation.NSUnitConverterLinear.#ctor(System.Double,System.Double)
-M:Foundation.NSUnitConverterLinear.#ctor(System.Double)
-M:Foundation.NSUnitConverterLinear.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitDispersion.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitDispersion.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitDuration.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitDuration.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitElectricCharge.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitElectricCharge.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitElectricCurrent.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitElectricCurrent.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitElectricPotentialDifference.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitElectricPotentialDifference.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitElectricResistance.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitElectricResistance.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitEnergy.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitEnergy.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitFrequency.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitFrequency.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitFuelEfficiency.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitFuelEfficiency.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitIlluminance.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitIlluminance.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitInformationStorage.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitInformationStorage.#ctor(System.String)
-M:Foundation.NSUnitInformationStorage.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitLength.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitLength.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitMass.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitMass.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitPower.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitPower.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitPressure.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitPressure.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitSpeed.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitSpeed.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitTemperature.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitTemperature.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUnitVolume.#ctor(System.String,Foundation.NSUnitConverter)
-M:Foundation.NSUnitVolume.EncodeTo(Foundation.NSCoder)
M:Foundation.NSUrl_PromisedItems.CheckPromisedItemIsReachable(Foundation.NSUrl,Foundation.NSError@)
M:Foundation.NSUrl_PromisedItems.GetPromisedItemResourceValue(Foundation.NSUrl,Foundation.NSObject@,Foundation.NSString,Foundation.NSError@)
M:Foundation.NSUrl_PromisedItems.GetPromisedItemResourceValues(Foundation.NSUrl,Foundation.NSString[],Foundation.NSError@)
-M:Foundation.NSUrl.#ctor(Foundation.NSData,Foundation.NSUrlBookmarkResolutionOptions,Foundation.NSUrl,System.Boolean@,Foundation.NSError@)
-M:Foundation.NSUrl.#ctor(System.IntPtr,System.Boolean,Foundation.NSUrl)
-M:Foundation.NSUrl.#ctor(System.String,Foundation.NSUrl)
-M:Foundation.NSUrl.#ctor(System.String,System.Boolean,Foundation.NSUrl)
-M:Foundation.NSUrl.#ctor(System.String,System.Boolean)
-M:Foundation.NSUrl.#ctor(System.String,System.String,System.String)
M:Foundation.NSUrl.#ctor(System.String,System.String)
-M:Foundation.NSUrl.#ctor(System.String)
-M:Foundation.NSUrl.Append(System.String,System.Boolean)
-M:Foundation.NSUrl.AppendPathExtension(System.String)
-M:Foundation.NSUrl.Copy(Foundation.NSZone)
-M:Foundation.NSUrl.CreateAbsoluteUrlWithDataRepresentation(Foundation.NSData,Foundation.NSUrl)
-M:Foundation.NSUrl.CreateBookmarkData(Foundation.NSUrlBookmarkCreationOptions,System.String[],Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSUrl.CreateFileUrl(System.String,Foundation.NSUrl)
-M:Foundation.NSUrl.CreateFileUrl(System.String,System.Boolean,Foundation.NSUrl)
-M:Foundation.NSUrl.CreateFileUrl(System.String,System.Boolean)
-M:Foundation.NSUrl.CreateFileUrl(System.String)
-M:Foundation.NSUrl.CreateFileUrl(System.String[])
-M:Foundation.NSUrl.CreateWithDataRepresentation(Foundation.NSData,Foundation.NSUrl)
-M:Foundation.NSUrl.EncodeTo(Foundation.NSCoder)
M:Foundation.NSUrl.Equals(Foundation.NSUrl)
-M:Foundation.NSUrl.FromBookmarkData(Foundation.NSData,Foundation.NSUrlBookmarkResolutionOptions,Foundation.NSUrl,System.Boolean@,Foundation.NSError@)
M:Foundation.NSUrl.FromFilename(System.String)
M:Foundation.NSUrl.FromPasteboard(AppKit.NSPasteboard)
-M:Foundation.NSUrl.FromString(System.String,System.Boolean)
-M:Foundation.NSUrl.FromString(System.String)
-M:Foundation.NSUrl.FromUTF8Pointer(System.IntPtr,System.Boolean,Foundation.NSUrl)
-M:Foundation.NSUrl.GetBookmarkData(Foundation.NSUrl,Foundation.NSError@)
-M:Foundation.NSUrl.GetFileSystemRepresentation(System.IntPtr,System.IntPtr)
-M:Foundation.NSUrl.GetItemProviderVisibilityForTypeIdentifier(System.String)
-M:Foundation.NSUrl.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
M:Foundation.NSUrl.GetPasteboardPropertyListForType(System.String)
M:Foundation.NSUrl.GetReadableTypesForPasteboard(AppKit.NSPasteboard)
M:Foundation.NSUrl.GetReadingOptionsForType(System.String,AppKit.NSPasteboard)
-M:Foundation.NSUrl.GetResourceValues(Foundation.NSString[],Foundation.NSError@)
M:Foundation.NSUrl.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
M:Foundation.NSUrl.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
-M:Foundation.NSUrl.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:Foundation.NSUrl.LoadDataAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSUrl.LoadDataAsync(System.String)
M:Foundation.NSUrl.MakeRelative(System.String)
@@ -41748,65 +30986,19 @@ M:Foundation.NSUrl.op_Equality(Foundation.NSUrl,Foundation.NSUrl)
M:Foundation.NSUrl.op_Implicit(Foundation.NSUrl)~System.Uri
M:Foundation.NSUrl.op_Implicit(System.Uri)~Foundation.NSUrl
M:Foundation.NSUrl.op_Inequality(Foundation.NSUrl,Foundation.NSUrl)
-M:Foundation.NSUrl.RemoveAllCachedResourceValues
-M:Foundation.NSUrl.RemoveCachedResourceValueForKey(Foundation.NSString)
-M:Foundation.NSUrl.RemoveLastPathComponent
-M:Foundation.NSUrl.RemovePathExtension
-M:Foundation.NSUrl.ResolveAlias(Foundation.NSUrl,Foundation.NSUrlBookmarkResolutionOptions,Foundation.NSError@)
M:Foundation.NSUrl.SetResource(Foundation.NSString,Foundation.NSObject,Foundation.NSError@)
M:Foundation.NSUrl.SetResource(Foundation.NSString,Foundation.NSObject)
-M:Foundation.NSUrl.SetTemporaryResourceValue(Foundation.NSObject,Foundation.NSString)
-M:Foundation.NSUrl.StartAccessingSecurityScopedResource
-M:Foundation.NSUrl.StopAccessingSecurityScopedResource
M:Foundation.NSUrl.ToString
M:Foundation.NSUrl.TryGetResource(Foundation.NSString,Foundation.NSObject@,Foundation.NSError@)
M:Foundation.NSUrl.TryGetResource(Foundation.NSString,Foundation.NSObject@)
-M:Foundation.NSUrl.WriteBookmarkData(Foundation.NSData,Foundation.NSUrl,Foundation.NSUrlBookmarkCreationOptions,Foundation.NSError@)
M:Foundation.NSUrl.WriteToPasteboard(AppKit.NSPasteboard)
M:Foundation.NSUrlAsyncResult.#ctor(Foundation.NSUrlResponse,Foundation.NSData)
-M:Foundation.NSUrlAuthenticationChallenge.#ctor(Foundation.NSUrlAuthenticationChallenge,Foundation.NSUrlConnection)
-M:Foundation.NSUrlAuthenticationChallenge.#ctor(Foundation.NSUrlProtectionSpace,Foundation.NSUrlCredential,System.IntPtr,Foundation.NSUrlResponse,Foundation.NSError,Foundation.NSUrlConnection)
-M:Foundation.NSUrlAuthenticationChallenge.EncodeTo(Foundation.NSCoder)
M:Foundation.NSUrlAuthenticationChallengeSender_Extensions.PerformDefaultHandling(Foundation.INSUrlAuthenticationChallengeSender,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlAuthenticationChallengeSender_Extensions.RejectProtectionSpaceAndContinue(Foundation.INSUrlAuthenticationChallengeSender,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlCache.#ctor(System.UIntPtr,System.UIntPtr,Foundation.NSUrl)
-M:Foundation.NSUrlCache.#ctor(System.UIntPtr,System.UIntPtr,System.String)
-M:Foundation.NSUrlCache.CachedResponseForRequest(Foundation.NSUrlRequest)
-M:Foundation.NSUrlCache.GetCachedResponse(Foundation.NSUrlSessionDataTask,System.Action{Foundation.NSCachedUrlResponse})
M:Foundation.NSUrlCache.GetCachedResponseAsync(Foundation.NSUrlSessionDataTask)
-M:Foundation.NSUrlCache.RemoveAllCachedResponses
-M:Foundation.NSUrlCache.RemoveCachedResponse(Foundation.NSUrlRequest)
-M:Foundation.NSUrlCache.RemoveCachedResponse(Foundation.NSUrlSessionDataTask)
-M:Foundation.NSUrlCache.RemoveCachedResponsesSinceDate(Foundation.NSDate)
-M:Foundation.NSUrlCache.StoreCachedResponse(Foundation.NSCachedUrlResponse,Foundation.NSUrlRequest)
-M:Foundation.NSUrlCache.StoreCachedResponse(Foundation.NSCachedUrlResponse,Foundation.NSUrlSessionDataTask)
-M:Foundation.NSUrlComponents.#ctor(Foundation.NSUrl,System.Boolean)
-M:Foundation.NSUrlComponents.#ctor(System.String)
-M:Foundation.NSUrlComponents.AsString
-M:Foundation.NSUrlComponents.Copy(Foundation.NSZone)
-M:Foundation.NSUrlComponents.FromString(System.String,System.Boolean)
-M:Foundation.NSUrlComponents.FromString(System.String)
-M:Foundation.NSUrlComponents.FromUrl(Foundation.NSUrl,System.Boolean)
-M:Foundation.NSUrlComponents.GetRelativeUrl(Foundation.NSUrl)
-M:Foundation.NSUrlConnection.#ctor(Foundation.NSUrlRequest,Foundation.INSUrlConnectionDelegate,System.Boolean)
-M:Foundation.NSUrlConnection.#ctor(Foundation.NSUrlRequest,Foundation.INSUrlConnectionDelegate)
-M:Foundation.NSUrlConnection.Cancel
-M:Foundation.NSUrlConnection.CancelAuthenticationChallenge(Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlConnection.CanHandleRequest(Foundation.NSUrlRequest)
-M:Foundation.NSUrlConnection.ContinueWithoutCredential(Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlConnection.FromRequest(Foundation.NSUrlRequest,Foundation.INSUrlConnectionDelegate)
-M:Foundation.NSUrlConnection.PerformDefaultHandling(Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlConnection.RejectProtectionSpaceAndContinue(Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlConnection.Schedule(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSUrlConnection.Schedule(Foundation.NSRunLoop,Foundation.NSString)
-M:Foundation.NSUrlConnection.SendAsynchronousRequest(Foundation.NSUrlRequest,Foundation.NSOperationQueue,Foundation.NSUrlConnectionDataResponse)
M:Foundation.NSUrlConnection.SendRequestAsync(Foundation.NSUrlRequest,Foundation.NSOperationQueue)
-M:Foundation.NSUrlConnection.SendSynchronousRequest(Foundation.NSUrlRequest,Foundation.NSUrlResponse@,Foundation.NSError@)
-M:Foundation.NSUrlConnection.SetDelegateQueue(Foundation.NSOperationQueue)
-M:Foundation.NSUrlConnection.Start
M:Foundation.NSUrlConnection.Unschedule(Foundation.NSRunLoop,Foundation.NSRunLoopMode)
-M:Foundation.NSUrlConnection.Unschedule(Foundation.NSRunLoop,Foundation.NSString)
-M:Foundation.NSUrlConnection.UseCredential(Foundation.NSUrlCredential,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlConnectionDataDelegate_Extensions.FinishedLoading(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection)
M:Foundation.NSUrlConnectionDataDelegate_Extensions.NeedNewBodyStream(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSUrlRequest)
M:Foundation.NSUrlConnectionDataDelegate_Extensions.ReceivedData(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSData)
@@ -41814,56 +31006,19 @@ M:Foundation.NSUrlConnectionDataDelegate_Extensions.ReceivedResponse(Foundation.
M:Foundation.NSUrlConnectionDataDelegate_Extensions.SentBodyData(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,System.IntPtr,System.IntPtr,System.IntPtr)
M:Foundation.NSUrlConnectionDataDelegate_Extensions.WillCacheResponse(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSCachedUrlResponse)
M:Foundation.NSUrlConnectionDataDelegate_Extensions.WillSendRequest(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)
-M:Foundation.NSUrlConnectionDataDelegate.FinishedLoading(Foundation.NSUrlConnection)
-M:Foundation.NSUrlConnectionDataDelegate.NeedNewBodyStream(Foundation.NSUrlConnection,Foundation.NSUrlRequest)
-M:Foundation.NSUrlConnectionDataDelegate.ReceivedData(Foundation.NSUrlConnection,Foundation.NSData)
-M:Foundation.NSUrlConnectionDataDelegate.ReceivedResponse(Foundation.NSUrlConnection,Foundation.NSUrlResponse)
-M:Foundation.NSUrlConnectionDataDelegate.SentBodyData(Foundation.NSUrlConnection,System.IntPtr,System.IntPtr,System.IntPtr)
-M:Foundation.NSUrlConnectionDataDelegate.WillCacheResponse(Foundation.NSUrlConnection,Foundation.NSCachedUrlResponse)
-M:Foundation.NSUrlConnectionDataDelegate.WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse)
M:Foundation.NSUrlConnectionDelegate_Extensions.CanAuthenticateAgainstProtectionSpace(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSUrlProtectionSpace)
M:Foundation.NSUrlConnectionDelegate_Extensions.CanceledAuthenticationChallenge(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlConnectionDelegate_Extensions.ConnectionShouldUseCredentialStorage(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection)
M:Foundation.NSUrlConnectionDelegate_Extensions.FailedWithError(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSError)
M:Foundation.NSUrlConnectionDelegate_Extensions.ReceivedAuthenticationChallenge(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlConnectionDelegate_Extensions.WillSendRequestForAuthenticationChallenge(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlConnectionDelegate.CanAuthenticateAgainstProtectionSpace(Foundation.NSUrlConnection,Foundation.NSUrlProtectionSpace)
-M:Foundation.NSUrlConnectionDelegate.CanceledAuthenticationChallenge(Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlConnectionDelegate.ConnectionShouldUseCredentialStorage(Foundation.NSUrlConnection)
-M:Foundation.NSUrlConnectionDelegate.FailedWithError(Foundation.NSUrlConnection,Foundation.NSError)
-M:Foundation.NSUrlConnectionDelegate.ReceivedAuthenticationChallenge(Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlConnectionDelegate.WillSendRequestForAuthenticationChallenge(Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlConnectionDownloadDelegate_Extensions.ResumedDownloading(Foundation.INSUrlConnectionDownloadDelegate,Foundation.NSUrlConnection,System.Int64,System.Int64)
M:Foundation.NSUrlConnectionDownloadDelegate_Extensions.WroteData(Foundation.INSUrlConnectionDownloadDelegate,Foundation.NSUrlConnection,System.Int64,System.Int64,System.Int64)
-M:Foundation.NSUrlConnectionDownloadDelegate.FinishedDownloading(Foundation.NSUrlConnection,Foundation.NSUrl)
-M:Foundation.NSUrlConnectionDownloadDelegate.ResumedDownloading(Foundation.NSUrlConnection,System.Int64,System.Int64)
-M:Foundation.NSUrlConnectionDownloadDelegate.WroteData(Foundation.NSUrlConnection,System.Int64,System.Int64,System.Int64)
M:Foundation.NSUrlCredential.#ctor(Security.SecIdentity,Security.SecCertificate[],Foundation.NSUrlCredentialPersistence)
-M:Foundation.NSUrlCredential.#ctor(Security.SecTrust)
-M:Foundation.NSUrlCredential.#ctor(System.String,System.String,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)
-M:Foundation.NSUrlCredential.FromUserPasswordPersistance(System.String,System.String,Foundation.NSUrlCredentialPersistence)
-M:Foundation.NSUrlCredentialStorage.GetCredentials(Foundation.NSUrlProtectionSpace,Foundation.NSUrlSessionTask,System.Action{Foundation.NSDictionary})
-M:Foundation.NSUrlCredentialStorage.GetCredentials(Foundation.NSUrlProtectionSpace)
M:Foundation.NSUrlCredentialStorage.GetCredentialsAsync(Foundation.NSUrlProtectionSpace,Foundation.NSUrlSessionTask)
-M:Foundation.NSUrlCredentialStorage.GetDefaultCredential(Foundation.NSUrlProtectionSpace,Foundation.NSUrlSessionTask,System.Action{Foundation.NSUrlCredential})
-M:Foundation.NSUrlCredentialStorage.GetDefaultCredential(Foundation.NSUrlProtectionSpace)
M:Foundation.NSUrlCredentialStorage.GetDefaultCredentialAsync(Foundation.NSUrlProtectionSpace,Foundation.NSUrlSessionTask)
-M:Foundation.NSUrlCredentialStorage.RemoveCredential(Foundation.NSUrlCredential,Foundation.NSUrlProtectionSpace,Foundation.NSDictionary,Foundation.NSUrlSessionTask)
-M:Foundation.NSUrlCredentialStorage.RemoveCredential(Foundation.NSUrlCredential,Foundation.NSUrlProtectionSpace,Foundation.NSDictionary)
-M:Foundation.NSUrlCredentialStorage.RemoveCredential(Foundation.NSUrlCredential,Foundation.NSUrlProtectionSpace)
-M:Foundation.NSUrlCredentialStorage.SetCredential(Foundation.NSUrlCredential,Foundation.NSUrlProtectionSpace,Foundation.NSUrlSessionTask)
-M:Foundation.NSUrlCredentialStorage.SetCredential(Foundation.NSUrlCredential,Foundation.NSUrlProtectionSpace)
-M:Foundation.NSUrlCredentialStorage.SetDefaultCredential(Foundation.NSUrlCredential,Foundation.NSUrlProtectionSpace,Foundation.NSUrlSessionTask)
-M:Foundation.NSUrlCredentialStorage.SetDefaultCredential(Foundation.NSUrlCredential,Foundation.NSUrlProtectionSpace)
-M:Foundation.NSUrlDownload.#ctor(Foundation.NSData,Foundation.NSObject,System.String)
-M:Foundation.NSUrlDownload.#ctor(Foundation.NSUrlRequest,Foundation.NSObject)
-M:Foundation.NSUrlDownload.Cancel
-M:Foundation.NSUrlDownload.CanResumeDownloadDecodedWithEncodingMimeType(System.String)
-M:Foundation.NSUrlDownload.SetDestination(System.String,System.Boolean)
M:Foundation.NSUrlDownload.ToString
M:Foundation.NSUrlDownloadDelegate_Extensions.CanceledAuthenticationChallenge(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlDownloadDelegate_Extensions.CreatedDestination(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,System.String)
@@ -41877,101 +31032,33 @@ M:Foundation.NSUrlDownloadDelegate_Extensions.ReceivedData(Foundation.INSUrlDown
M:Foundation.NSUrlDownloadDelegate_Extensions.ReceivedResponse(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,Foundation.NSUrlResponse)
M:Foundation.NSUrlDownloadDelegate_Extensions.Resume(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,Foundation.NSUrlResponse,System.Int64)
M:Foundation.NSUrlDownloadDelegate_Extensions.WillSendRequest(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,Foundation.NSUrlRequest,Foundation.NSUrlResponse)
-M:Foundation.NSUrlDownloadDelegate.CanceledAuthenticationChallenge(Foundation.NSUrlDownload,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlDownloadDelegate.CreatedDestination(Foundation.NSUrlDownload,System.String)
-M:Foundation.NSUrlDownloadDelegate.DecideDestination(Foundation.NSUrlDownload,System.String)
-M:Foundation.NSUrlDownloadDelegate.DecodeSourceData(Foundation.NSUrlDownload,System.String)
-M:Foundation.NSUrlDownloadDelegate.DownloadBegan(Foundation.NSUrlDownload)
-M:Foundation.NSUrlDownloadDelegate.FailedWithError(Foundation.NSUrlDownload,Foundation.NSError)
-M:Foundation.NSUrlDownloadDelegate.Finished(Foundation.NSUrlDownload)
-M:Foundation.NSUrlDownloadDelegate.ReceivedAuthenticationChallenge(Foundation.NSUrlDownload,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlDownloadDelegate.ReceivedData(Foundation.NSUrlDownload,System.UIntPtr)
-M:Foundation.NSUrlDownloadDelegate.ReceivedResponse(Foundation.NSUrlDownload,Foundation.NSUrlResponse)
-M:Foundation.NSUrlDownloadDelegate.Resume(Foundation.NSUrlDownload,Foundation.NSUrlResponse,System.Int64)
-M:Foundation.NSUrlDownloadDelegate.WillSendRequest(Foundation.NSUrlDownload,Foundation.NSUrlRequest,Foundation.NSUrlResponse)
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.NSUrlProtocol.#ctor(Foundation.NSUrlRequest,Foundation.NSCachedUrlResponse,Foundation.INSUrlProtocolClient)
-M:Foundation.NSUrlProtocol.CanInitWithRequest(Foundation.NSUrlRequest)
-M:Foundation.NSUrlProtocol.GetCanonicalRequest(Foundation.NSUrlRequest)
-M:Foundation.NSUrlProtocol.GetProperty(System.String,Foundation.NSUrlRequest)
-M:Foundation.NSUrlProtocol.IsRequestCacheEquivalent(Foundation.NSUrlRequest,Foundation.NSUrlRequest)
-M:Foundation.NSUrlProtocol.RegisterClass(ObjCRuntime.Class)
-M:Foundation.NSUrlProtocol.RemoveProperty(System.String,Foundation.NSMutableUrlRequest)
-M:Foundation.NSUrlProtocol.SetProperty(Foundation.NSObject,System.String,Foundation.NSMutableUrlRequest)
-M:Foundation.NSUrlProtocol.StartLoading
-M:Foundation.NSUrlProtocol.StopLoading
-M:Foundation.NSUrlProtocol.UnregisterClass(ObjCRuntime.Class)
-M:Foundation.NSUrlQueryItem.#ctor(System.String,System.String)
-M:Foundation.NSUrlQueryItem.Copy(Foundation.NSZone)
-M:Foundation.NSUrlQueryItem.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUrlRequest.#ctor(Foundation.NSUrl,Foundation.NSUrlRequestCachePolicy,System.Double)
-M:Foundation.NSUrlRequest.#ctor(Foundation.NSUrl)
-M:Foundation.NSUrlRequest.Copy(Foundation.NSZone)
-M:Foundation.NSUrlRequest.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUrlRequest.FromUrl(Foundation.NSUrl)
-M:Foundation.NSUrlRequest.MutableCopy(Foundation.NSZone)
M:Foundation.NSUrlRequest.ToString
-M:Foundation.NSUrlResponse.#ctor(Foundation.NSUrl,System.String,System.IntPtr,System.String)
-M:Foundation.NSUrlResponse.Copy(Foundation.NSZone)
-M:Foundation.NSUrlResponse.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUrlSession.CreateBidirectionalStream(Foundation.NSNetService)
-M:Foundation.NSUrlSession.CreateBidirectionalStream(System.String,System.IntPtr)
-M:Foundation.NSUrlSession.CreateDataTask(Foundation.NSUrl,Foundation.NSUrlSessionResponse)
-M:Foundation.NSUrlSession.CreateDataTask(Foundation.NSUrl)
-M:Foundation.NSUrlSession.CreateDataTask(Foundation.NSUrlRequest,Foundation.NSUrlSessionResponse)
-M:Foundation.NSUrlSession.CreateDataTask(Foundation.NSUrlRequest)
M:Foundation.NSUrlSession.CreateDataTaskAsync(Foundation.NSUrl,Foundation.NSUrlSessionDataTask@)
M:Foundation.NSUrlSession.CreateDataTaskAsync(Foundation.NSUrl)
M:Foundation.NSUrlSession.CreateDataTaskAsync(Foundation.NSUrlRequest,Foundation.NSUrlSessionDataTask@)
M:Foundation.NSUrlSession.CreateDataTaskAsync(Foundation.NSUrlRequest)
-M:Foundation.NSUrlSession.CreateDownloadTask(Foundation.NSData)
-M:Foundation.NSUrlSession.CreateDownloadTask(Foundation.NSUrl,Foundation.NSUrlDownloadSessionResponse)
-M:Foundation.NSUrlSession.CreateDownloadTask(Foundation.NSUrl)
-M:Foundation.NSUrlSession.CreateDownloadTask(Foundation.NSUrlRequest,Foundation.NSUrlDownloadSessionResponse)
-M:Foundation.NSUrlSession.CreateDownloadTask(Foundation.NSUrlRequest)
M:Foundation.NSUrlSession.CreateDownloadTaskAsync(Foundation.NSUrl,Foundation.NSUrlSessionDownloadTask@)
M:Foundation.NSUrlSession.CreateDownloadTaskAsync(Foundation.NSUrl)
M:Foundation.NSUrlSession.CreateDownloadTaskAsync(Foundation.NSUrlRequest,Foundation.NSUrlSessionDownloadTask@)
M:Foundation.NSUrlSession.CreateDownloadTaskAsync(Foundation.NSUrlRequest)
-M:Foundation.NSUrlSession.CreateDownloadTaskFromResumeData(Foundation.NSData,Foundation.NSUrlDownloadSessionResponse)
M:Foundation.NSUrlSession.CreateDownloadTaskFromResumeDataAsync(Foundation.NSData,Foundation.NSUrlSessionDownloadTask@)
M:Foundation.NSUrlSession.CreateDownloadTaskFromResumeDataAsync(Foundation.NSData)
-M:Foundation.NSUrlSession.CreateUploadTask(Foundation.NSData,System.Action{Foundation.NSData,Foundation.NSUrlResponse,Foundation.NSError})
-M:Foundation.NSUrlSession.CreateUploadTask(Foundation.NSData)
-M:Foundation.NSUrlSession.CreateUploadTask(Foundation.NSUrlRequest,Foundation.NSData,Foundation.NSUrlSessionResponse)
-M:Foundation.NSUrlSession.CreateUploadTask(Foundation.NSUrlRequest,Foundation.NSData)
-M:Foundation.NSUrlSession.CreateUploadTask(Foundation.NSUrlRequest,Foundation.NSUrl,Foundation.NSUrlSessionResponse)
-M:Foundation.NSUrlSession.CreateUploadTask(Foundation.NSUrlRequest,Foundation.NSUrl)
-M:Foundation.NSUrlSession.CreateUploadTask(Foundation.NSUrlRequest)
M:Foundation.NSUrlSession.CreateUploadTaskAsync(Foundation.NSData,Foundation.NSUrlSessionUploadTask@)
M:Foundation.NSUrlSession.CreateUploadTaskAsync(Foundation.NSData)
M:Foundation.NSUrlSession.CreateUploadTaskAsync(Foundation.NSUrlRequest,Foundation.NSData,Foundation.NSUrlSessionUploadTask@)
M:Foundation.NSUrlSession.CreateUploadTaskAsync(Foundation.NSUrlRequest,Foundation.NSData)
M:Foundation.NSUrlSession.CreateUploadTaskAsync(Foundation.NSUrlRequest,Foundation.NSUrl,Foundation.NSUrlSessionUploadTask@)
M:Foundation.NSUrlSession.CreateUploadTaskAsync(Foundation.NSUrlRequest,Foundation.NSUrl)
-M:Foundation.NSUrlSession.CreateWebSocketTask(Foundation.NSUrl,System.String[])
-M:Foundation.NSUrlSession.CreateWebSocketTask(Foundation.NSUrl)
-M:Foundation.NSUrlSession.CreateWebSocketTask(Foundation.NSUrlRequest)
-M:Foundation.NSUrlSession.FinishTasksAndInvalidate
-M:Foundation.NSUrlSession.Flush(System.Action)
M:Foundation.NSUrlSession.FlushAsync
M:Foundation.NSUrlSession.FromConfiguration(Foundation.NSUrlSessionConfiguration,Foundation.INSUrlSessionDelegate,Foundation.NSOperationQueue)
-M:Foundation.NSUrlSession.FromConfiguration(Foundation.NSUrlSessionConfiguration)
-M:Foundation.NSUrlSession.FromWeakConfiguration(Foundation.NSUrlSessionConfiguration,Foundation.NSObject,Foundation.NSOperationQueue)
-M:Foundation.NSUrlSession.GetAllTasks(Foundation.NSUrlSessionAllPendingTasks)
M:Foundation.NSUrlSession.GetAllTasksAsync
-M:Foundation.NSUrlSession.GetTasks(Foundation.NSUrlSessionPendingTasks)
M:Foundation.NSUrlSession.GetTasksAsync
-M:Foundation.NSUrlSession.InvalidateAndCancel
-M:Foundation.NSUrlSession.Reset(System.Action)
M:Foundation.NSUrlSession.ResetAsync
M:Foundation.NSUrlSessionActiveTasks.#ctor(Foundation.NSUrlSessionTask[],Foundation.NSUrlSessionTask[],Foundation.NSUrlSessionTask[])
M:Foundation.NSUrlSessionCombinedTasks.#ctor(Foundation.NSUrlSessionTask[])
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.NSUrlSessionDataDelegate_Extensions.DidBecomeDownloadTask(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlSessionDownloadTask)
@@ -41979,26 +31066,12 @@ M:Foundation.NSUrlSessionDataDelegate_Extensions.DidBecomeStreamTask(Foundation.
M:Foundation.NSUrlSessionDataDelegate_Extensions.DidReceiveData(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSData)
M:Foundation.NSUrlSessionDataDelegate_Extensions.DidReceiveResponse(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlResponse,System.Action{Foundation.NSUrlSessionResponseDisposition})
M:Foundation.NSUrlSessionDataDelegate_Extensions.WillCacheResponse(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSCachedUrlResponse,System.Action{Foundation.NSCachedUrlResponse})
-M:Foundation.NSUrlSessionDataDelegate.DidBecomeDownloadTask(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlSessionDownloadTask)
-M:Foundation.NSUrlSessionDataDelegate.DidBecomeStreamTask(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlSessionStreamTask)
-M:Foundation.NSUrlSessionDataDelegate.DidReceiveData(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSData)
-M:Foundation.NSUrlSessionDataDelegate.DidReceiveResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlResponse,System.Action{Foundation.NSUrlSessionResponseDisposition})
-M:Foundation.NSUrlSessionDataDelegate.WillCacheResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSCachedUrlResponse,System.Action{Foundation.NSCachedUrlResponse})
-M:Foundation.NSUrlSessionDataTask.#ctor
M:Foundation.NSUrlSessionDataTaskRequest.#ctor(Foundation.NSData,Foundation.NSUrlResponse)
M:Foundation.NSUrlSessionDelegate_Extensions.DidBecomeInvalid(Foundation.INSUrlSessionDelegate,Foundation.NSUrlSession,Foundation.NSError)
M:Foundation.NSUrlSessionDelegate_Extensions.DidFinishEventsForBackgroundSession(Foundation.INSUrlSessionDelegate,Foundation.NSUrlSession)
M:Foundation.NSUrlSessionDelegate_Extensions.DidReceiveChallenge(Foundation.INSUrlSessionDelegate,Foundation.NSUrlSession,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential})
-M:Foundation.NSUrlSessionDelegate.DidBecomeInvalid(Foundation.NSUrlSession,Foundation.NSError)
-M:Foundation.NSUrlSessionDelegate.DidFinishEventsForBackgroundSession(Foundation.NSUrlSession)
-M:Foundation.NSUrlSessionDelegate.DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential})
M:Foundation.NSUrlSessionDownloadDelegate_Extensions.DidResume(Foundation.INSUrlSessionDownloadDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,System.Int64,System.Int64)
M:Foundation.NSUrlSessionDownloadDelegate_Extensions.DidWriteData(Foundation.INSUrlSessionDownloadDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,System.Int64,System.Int64,System.Int64)
-M:Foundation.NSUrlSessionDownloadDelegate.DidFinishDownloading(Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,Foundation.NSUrl)
-M:Foundation.NSUrlSessionDownloadDelegate.DidResume(Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,System.Int64,System.Int64)
-M:Foundation.NSUrlSessionDownloadDelegate.DidWriteData(Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,System.Int64,System.Int64,System.Int64)
-M:Foundation.NSUrlSessionDownloadTask.#ctor
-M:Foundation.NSUrlSessionDownloadTask.Cancel(System.Action{Foundation.NSData})
M:Foundation.NSUrlSessionDownloadTaskRequest.#ctor(Foundation.NSUrl,Foundation.NSUrlResponse)
M:Foundation.NSUrlSessionDownloadTaskRequest.Dispose
M:Foundation.NSUrlSessionDownloadTaskRequest.Dispose(System.Boolean)
@@ -42012,24 +31085,8 @@ M:Foundation.NSUrlSessionStreamDelegate_Extensions.BetterRouteDiscovered(Foundat
M:Foundation.NSUrlSessionStreamDelegate_Extensions.CompletedTaskCaptureStreams(Foundation.INSUrlSessionStreamDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask,Foundation.NSInputStream,Foundation.NSOutputStream)
M:Foundation.NSUrlSessionStreamDelegate_Extensions.ReadClosed(Foundation.INSUrlSessionStreamDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask)
M:Foundation.NSUrlSessionStreamDelegate_Extensions.WriteClosed(Foundation.INSUrlSessionStreamDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask)
-M:Foundation.NSUrlSessionStreamDelegate.BetterRouteDiscovered(Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask)
-M:Foundation.NSUrlSessionStreamDelegate.CompletedTaskCaptureStreams(Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask,Foundation.NSInputStream,Foundation.NSOutputStream)
-M:Foundation.NSUrlSessionStreamDelegate.ReadClosed(Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask)
-M:Foundation.NSUrlSessionStreamDelegate.WriteClosed(Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask)
-M:Foundation.NSUrlSessionStreamTask.CaptureStreams
-M:Foundation.NSUrlSessionStreamTask.CloseRead
-M:Foundation.NSUrlSessionStreamTask.CloseWrite
-M:Foundation.NSUrlSessionStreamTask.ReadData(System.UIntPtr,System.UIntPtr,System.Double,Foundation.NSUrlSessionDataRead)
M:Foundation.NSUrlSessionStreamTask.ReadDataAsync(System.UIntPtr,System.UIntPtr,System.Double)
-M:Foundation.NSUrlSessionStreamTask.StartSecureConnection
-M:Foundation.NSUrlSessionStreamTask.StopSecureConnection
-M:Foundation.NSUrlSessionStreamTask.WriteData(Foundation.NSData,System.Double,System.Action{Foundation.NSError})
M:Foundation.NSUrlSessionStreamTask.WriteDataAsync(Foundation.NSData,System.Double)
-M:Foundation.NSUrlSessionTask.#ctor
-M:Foundation.NSUrlSessionTask.Cancel
-M:Foundation.NSUrlSessionTask.Copy(Foundation.NSZone)
-M:Foundation.NSUrlSessionTask.Resume
-M:Foundation.NSUrlSessionTask.Suspend
M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidCompleteWithError(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSError)
M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidCreateTask(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask)
M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidFinishCollectingMetrics(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlSessionTaskMetrics)
@@ -42041,133 +31098,42 @@ M:Foundation.NSUrlSessionTaskDelegate_Extensions.NeedNewBodyStream(Foundation.IN
M:Foundation.NSUrlSessionTaskDelegate_Extensions.TaskIsWaitingForConnectivity(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask)
M:Foundation.NSUrlSessionTaskDelegate_Extensions.WillBeginDelayedRequest(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlSessionDelayedRequestDisposition,Foundation.NSUrlRequest})
M:Foundation.NSUrlSessionTaskDelegate_Extensions.WillPerformHttpRedirection(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlRequest})
-M:Foundation.NSUrlSessionTaskDelegate.DidCompleteWithError(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSError)
-M:Foundation.NSUrlSessionTaskDelegate.DidCreateTask(Foundation.NSUrlSession,Foundation.NSUrlSessionTask)
-M:Foundation.NSUrlSessionTaskDelegate.DidFinishCollectingMetrics(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlSessionTaskMetrics)
-M:Foundation.NSUrlSessionTaskDelegate.DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential})
-M:Foundation.NSUrlSessionTaskDelegate.DidReceiveInformationalResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse)
-M:Foundation.NSUrlSessionTaskDelegate.DidSendBodyData(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Int64,System.Int64)
-M:Foundation.NSUrlSessionTaskDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action{Foundation.NSInputStream})
-M:Foundation.NSUrlSessionTaskDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action{Foundation.NSInputStream})
-M:Foundation.NSUrlSessionTaskDelegate.TaskIsWaitingForConnectivity(Foundation.NSUrlSession,Foundation.NSUrlSessionTask)
-M:Foundation.NSUrlSessionTaskDelegate.WillBeginDelayedRequest(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlSessionDelayedRequestDisposition,Foundation.NSUrlRequest})
-M:Foundation.NSUrlSessionTaskDelegate.WillPerformHttpRedirection(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlRequest})
-M:Foundation.NSUrlSessionTaskMetrics.#ctor
-M:Foundation.NSUrlSessionTaskTransactionMetrics.#ctor
-M:Foundation.NSUrlSessionUploadTask.#ctor
-M:Foundation.NSUrlSessionUploadTask.CancelByProducingResumeData(System.Action{Foundation.NSData})
M:Foundation.NSUrlSessionUploadTask.CancelByProducingResumeDataAsync
M:Foundation.NSUrlSessionUploadTaskResumeRequest.#ctor(Foundation.NSData,Foundation.NSUrlResponse)
M:Foundation.NSUrlSessionWebSocketDelegate_Extensions.DidClose(Foundation.INSUrlSessionWebSocketDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,Foundation.NSUrlSessionWebSocketCloseCode,Foundation.NSData)
M:Foundation.NSUrlSessionWebSocketDelegate_Extensions.DidOpen(Foundation.INSUrlSessionWebSocketDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,System.String)
-M:Foundation.NSUrlSessionWebSocketDelegate.DidClose(Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,Foundation.NSUrlSessionWebSocketCloseCode,Foundation.NSData)
-M:Foundation.NSUrlSessionWebSocketDelegate.DidOpen(Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,System.String)
-M:Foundation.NSUrlSessionWebSocketMessage.#ctor(Foundation.NSData)
-M:Foundation.NSUrlSessionWebSocketMessage.#ctor(System.String)
-M:Foundation.NSUrlSessionWebSocketTask.Cancel(Foundation.NSUrlSessionWebSocketCloseCode,Foundation.NSData)
-M:Foundation.NSUrlSessionWebSocketTask.ReceiveMessage(System.Action{Foundation.NSUrlSessionWebSocketMessage,Foundation.NSError})
M:Foundation.NSUrlSessionWebSocketTask.ReceiveMessageAsync
-M:Foundation.NSUrlSessionWebSocketTask.SendMessage(Foundation.NSUrlSessionWebSocketMessage,System.Action{Foundation.NSError})
M:Foundation.NSUrlSessionWebSocketTask.SendMessageAsync(Foundation.NSUrlSessionWebSocketMessage)
-M:Foundation.NSUrlSessionWebSocketTask.SendPing(System.Action{Foundation.NSError})
M:Foundation.NSUrlSessionWebSocketTask.SendPingAsync
M:Foundation.NSUrlUtilities_NSString.CreateStringByAddingPercentEncoding(Foundation.NSString,Foundation.NSCharacterSet)
M:Foundation.NSUrlUtilities_NSString.CreateStringByAddingPercentEscapes(Foundation.NSString,Foundation.NSStringEncoding)
M:Foundation.NSUrlUtilities_NSString.CreateStringByRemovingPercentEncoding(Foundation.NSString)
M:Foundation.NSUrlUtilities_NSString.CreateStringByReplacingPercentEscapes(Foundation.NSString,Foundation.NSStringEncoding)
-M:Foundation.NSUserActivity.#ctor(System.String)
-M:Foundation.NSUserActivity.AddUserInfoEntries(Foundation.NSDictionary)
-M:Foundation.NSUserActivity.BecomeCurrent
-M:Foundation.NSUserActivity.DeleteAllSavedUserActivities(System.Action)
M:Foundation.NSUserActivity.DeleteAllSavedUserActivitiesAsync
-M:Foundation.NSUserActivity.DeleteSavedUserActivities(System.String[],System.Action)
M:Foundation.NSUserActivity.DeleteSavedUserActivitiesAsync(System.String[])
M:Foundation.NSUserActivity.Dispose(System.Boolean)
-M:Foundation.NSUserActivity.GetContinuationStreams(System.Action{Foundation.NSInputStream,Foundation.NSOutputStream,Foundation.NSError})
M:Foundation.NSUserActivity.GetContinuationStreamsAsync
-M:Foundation.NSUserActivity.GetItemProviderVisibilityForTypeIdentifier(System.String)
-M:Foundation.NSUserActivity.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
-M:Foundation.NSUserActivity.Invalidate
-M:Foundation.NSUserActivity.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:Foundation.NSUserActivity.LoadDataAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSUserActivity.LoadDataAsync(System.String)
-M:Foundation.NSUserActivity.ResignCurrent
M:Foundation.NSUserActivityContinuation.#ctor(Foundation.NSInputStream,Foundation.NSOutputStream)
M:Foundation.NSUserActivityDelegate_Extensions.UserActivityReceivedData(Foundation.INSUserActivityDelegate,Foundation.NSUserActivity,Foundation.NSInputStream,Foundation.NSOutputStream)
M:Foundation.NSUserActivityDelegate_Extensions.UserActivityWasContinued(Foundation.INSUserActivityDelegate,Foundation.NSUserActivity)
M:Foundation.NSUserActivityDelegate_Extensions.UserActivityWillSave(Foundation.INSUserActivityDelegate,Foundation.NSUserActivity)
-M:Foundation.NSUserActivityDelegate.UserActivityReceivedData(Foundation.NSUserActivity,Foundation.NSInputStream,Foundation.NSOutputStream)
-M:Foundation.NSUserActivityDelegate.UserActivityWasContinued(Foundation.NSUserActivity)
-M:Foundation.NSUserActivityDelegate.UserActivityWillSave(Foundation.NSUserActivity)
M:Foundation.NSUserDefaults.#ctor(System.String,Foundation.NSUserDefaultsType)
M:Foundation.NSUserDefaults.#ctor(System.String)
-M:Foundation.NSUserDefaults.AddSuite(System.String)
-M:Foundation.NSUserDefaults.ArrayForKey(System.String)
-M:Foundation.NSUserDefaults.BoolForKey(System.String)
-M:Foundation.NSUserDefaults.DataForKey(System.String)
-M:Foundation.NSUserDefaults.DictionaryForKey(System.String)
-M:Foundation.NSUserDefaults.DoubleForKey(System.String)
-M:Foundation.NSUserDefaults.FloatForKey(System.String)
-M:Foundation.NSUserDefaults.GetVolatileDomain(System.String)
-M:Foundation.NSUserDefaults.IntForKey(System.String)
-M:Foundation.NSUserDefaults.ObjectIsForced(System.String,System.String)
-M:Foundation.NSUserDefaults.ObjectIsForced(System.String)
-M:Foundation.NSUserDefaults.PersistentDomainForName(System.String)
-M:Foundation.NSUserDefaults.PersistentDomainNames
-M:Foundation.NSUserDefaults.RegisterDefaults(Foundation.NSDictionary)
-M:Foundation.NSUserDefaults.RemoveObject(System.String)
-M:Foundation.NSUserDefaults.RemovePersistentDomain(System.String)
-M:Foundation.NSUserDefaults.RemoveSuite(System.String)
-M:Foundation.NSUserDefaults.RemoveVolatileDomain(System.String)
-M:Foundation.NSUserDefaults.ResetStandardUserDefaults
-M:Foundation.NSUserDefaults.SetBool(System.Boolean,System.String)
-M:Foundation.NSUserDefaults.SetDouble(System.Double,System.String)
-M:Foundation.NSUserDefaults.SetFloat(System.Single,System.String)
-M:Foundation.NSUserDefaults.SetInt(System.IntPtr,System.String)
-M:Foundation.NSUserDefaults.SetPersistentDomain(Foundation.NSDictionary,System.String)
M:Foundation.NSUserDefaults.SetString(System.String,System.String)
-M:Foundation.NSUserDefaults.SetURL(Foundation.NSUrl,System.String)
-M:Foundation.NSUserDefaults.SetVolatileDomain(Foundation.NSDictionary,System.String)
-M:Foundation.NSUserDefaults.StringArrayForKey(System.String)
-M:Foundation.NSUserDefaults.StringForKey(System.String)
-M:Foundation.NSUserDefaults.Synchronize
-M:Foundation.NSUserDefaults.ToDictionary
-M:Foundation.NSUserDefaults.URLForKey(System.String)
-M:Foundation.NSUserDefaults.VolatileDomainNames
-M:Foundation.NSUserNotification.Copy(Foundation.NSZone)
-M:Foundation.NSUserNotification.EncodeTo(Foundation.NSCoder)
-M:Foundation.NSUserNotificationAction.Copy(Foundation.NSZone)
-M:Foundation.NSUserNotificationAction.GetAction(System.String,System.String)
M:Foundation.NSUserNotificationCenter.add_DidActivateNotification(System.EventHandler{Foundation.UNCDidActivateNotificationEventArgs})
M:Foundation.NSUserNotificationCenter.add_DidDeliverNotification(System.EventHandler{Foundation.UNCDidDeliverNotificationEventArgs})
-M:Foundation.NSUserNotificationCenter.DeliverNotification(Foundation.NSUserNotification)
M:Foundation.NSUserNotificationCenter.Dispose(System.Boolean)
M:Foundation.NSUserNotificationCenter.remove_DidActivateNotification(System.EventHandler{Foundation.UNCDidActivateNotificationEventArgs})
M:Foundation.NSUserNotificationCenter.remove_DidDeliverNotification(System.EventHandler{Foundation.UNCDidDeliverNotificationEventArgs})
-M:Foundation.NSUserNotificationCenter.RemoveAllDeliveredNotifications
-M:Foundation.NSUserNotificationCenter.RemoveDeliveredNotification(Foundation.NSUserNotification)
-M:Foundation.NSUserNotificationCenter.RemoveScheduledNotification(Foundation.NSUserNotification)
-M:Foundation.NSUserNotificationCenter.ScheduleNotification(Foundation.NSUserNotification)
M:Foundation.NSUserNotificationCenterDelegate_Extensions.DidActivateNotification(Foundation.INSUserNotificationCenterDelegate,Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
M:Foundation.NSUserNotificationCenterDelegate_Extensions.DidDeliverNotification(Foundation.INSUserNotificationCenterDelegate,Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
M:Foundation.NSUserNotificationCenterDelegate_Extensions.ShouldPresentNotification(Foundation.INSUserNotificationCenterDelegate,Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
-M:Foundation.NSUserNotificationCenterDelegate.DidActivateNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
-M:Foundation.NSUserNotificationCenterDelegate.DidDeliverNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
-M:Foundation.NSUserNotificationCenterDelegate.ShouldPresentNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
M:Foundation.NSUuid.#ctor(System.Byte[])
-M:Foundation.NSUuid.#ctor(System.String)
-M:Foundation.NSUuid.AsString
-M:Foundation.NSUuid.Compare(Foundation.NSUuid)
-M:Foundation.NSUuid.Copy(Foundation.NSZone)
-M:Foundation.NSUuid.EncodeTo(Foundation.NSCoder)
M:Foundation.NSUuid.GetBytes
-M:Foundation.NSValue.Copy(Foundation.NSZone)
-M:Foundation.NSValue.EncodeTo(Foundation.NSCoder)
M:Foundation.NSValue.FromCATransform3D(CoreAnimation.CATransform3D)
M:Foundation.NSValue.FromCGAffineTransform(CoreGraphics.CGAffineTransform)
-M:Foundation.NSValue.FromCGPoint(CoreGraphics.CGPoint)
-M:Foundation.NSValue.FromCGRect(CoreGraphics.CGRect)
-M:Foundation.NSValue.FromCGSize(CoreGraphics.CGSize)
M:Foundation.NSValue.FromCGVector(CoreGraphics.CGVector)
M:Foundation.NSValue.FromCMTime(CoreMedia.CMTime)
M:Foundation.NSValue.FromCMTimeMapping(CoreMedia.CMTimeMapping)
@@ -42177,7 +31143,6 @@ M:Foundation.NSValue.FromDirectionalEdgeInsets(UIKit.NSDirectionalEdgeInsets)
M:Foundation.NSValue.FromMKCoordinate(CoreLocation.CLLocationCoordinate2D)
M:Foundation.NSValue.FromMKCoordinateSpan(MapKit.MKCoordinateSpan)
M:Foundation.NSValue.FromPointF(System.Drawing.PointF)
-M:Foundation.NSValue.FromRange(Foundation.NSRange)
M:Foundation.NSValue.FromRectangleF(System.Drawing.RectangleF)
M:Foundation.NSValue.FromSCNMatrix4(SceneKit.SCNMatrix4)
M:Foundation.NSValue.FromSizeF(System.Drawing.SizeF)
@@ -42185,43 +31150,14 @@ M:Foundation.NSValue.FromUIEdgeInsets(UIKit.UIEdgeInsets)
M:Foundation.NSValue.FromUIOffset(UIKit.UIOffset)
M:Foundation.NSValue.FromVector(SceneKit.SCNVector3)
M:Foundation.NSValue.FromVector(SceneKit.SCNVector4)
-M:Foundation.NSValue.IsEqualTo(Foundation.NSValue)
-M:Foundation.NSValue.StoreValueAtAddress(System.IntPtr,System.UIntPtr)
-M:Foundation.NSValue.StoreValueAtAddress(System.IntPtr)
-M:Foundation.NSValue.ValueFromNonretainedObject(Foundation.NSObject)
-M:Foundation.NSValue.ValueFromPointer(System.IntPtr)
-M:Foundation.NSValueTransformer.GetValueTransformer(System.String)
-M:Foundation.NSValueTransformer.ReverseTransformedValue(Foundation.NSObject)
-M:Foundation.NSValueTransformer.SetValueTransformer(Foundation.NSValueTransformer,System.String)
-M:Foundation.NSValueTransformer.TransformedValue(Foundation.NSObject)
-M:Foundation.NSXpcConnection.#ctor(Foundation.NSXpcListenerEndpoint)
-M:Foundation.NSXpcConnection.#ctor(System.String,Foundation.NSXpcConnectionOptions)
-M:Foundation.NSXpcConnection.#ctor(System.String)
-M:Foundation.NSXpcConnection.Activate
M:Foundation.NSXpcConnection.CreateRemoteObjectProxy``1
M:Foundation.NSXpcConnection.CreateRemoteObjectProxy``1(System.Action{Foundation.NSError})
M:Foundation.NSXpcConnection.CreateSynchronousRemoteObjectProxy``1(System.Action{Foundation.NSError})
-M:Foundation.NSXpcConnection.Invalidate
-M:Foundation.NSXpcConnection.Resume
-M:Foundation.NSXpcConnection.ScheduleSendBarrier(System.Action)
-M:Foundation.NSXpcConnection.SetCodeSigningRequirement(System.String)
-M:Foundation.NSXpcConnection.Suspend
-M:Foundation.NSXpcInterface.Create(ObjCRuntime.Protocol)
M:Foundation.NSXpcInterface.Create(System.Type)
-M:Foundation.NSXpcInterface.GetAllowedClasses(ObjCRuntime.Selector,System.UIntPtr,System.Boolean)
M:Foundation.NSXpcInterface.GetAllowedClasses(System.Reflection.MethodInfo,System.UIntPtr,System.Boolean)
-M:Foundation.NSXpcInterface.SetAllowedClasses(Foundation.NSSet{ObjCRuntime.Class},ObjCRuntime.Selector,System.UIntPtr,System.Boolean)
M:Foundation.NSXpcInterface.SetAllowedClasses(System.Reflection.MethodInfo,Foundation.NSSet{ObjCRuntime.Class},System.UIntPtr,System.Boolean)
-M:Foundation.NSXpcListener.#ctor(System.String)
-M:Foundation.NSXpcListener.Activate
M:Foundation.NSXpcListener.Dispose(System.Boolean)
-M:Foundation.NSXpcListener.Invalidate
-M:Foundation.NSXpcListener.Resume
-M:Foundation.NSXpcListener.SetConnectionCodeSigningRequirement(System.String)
-M:Foundation.NSXpcListener.Suspend
M:Foundation.NSXpcListenerDelegate_Extensions.ShouldAcceptConnection(Foundation.INSXpcListenerDelegate,Foundation.NSXpcListener,Foundation.NSXpcConnection)
-M:Foundation.NSXpcListenerDelegate.ShouldAcceptConnection(Foundation.NSXpcListener,Foundation.NSXpcConnection)
-M:Foundation.NSXpcListenerEndpoint.EncodeTo(Foundation.NSCoder)
M:Foundation.OptionalMemberAttribute.#ctor
M:Foundation.OutletAttribute.#ctor
M:Foundation.OutletAttribute.#ctor(System.String)
@@ -42325,55 +31261,30 @@ M:GameController.IGCDevicePhysicalInputStateDiff.GetChange(GameController.IGCPhy
M:GameController.IGCGameControllerSceneDelegate.DidActivateGameController(UIKit.UIScene,GameController.GCGameControllerActivationContext)
M:GameController.UISceneConnectionOptions_GameController.GetGameControllerActivationContext(UIKit.UISceneConnectionOptions)
M:GameKit.GKAccessPoint.Dispose(System.Boolean)
-M:GameKit.GKAccessPoint.TriggerAccessPoint(GameKit.GKGameCenterViewControllerState,System.Action)
-M:GameKit.GKAccessPoint.TriggerAccessPoint(GameKit.GKPlayer,System.Action)
-M:GameKit.GKAccessPoint.TriggerAccessPoint(System.Action)
-M:GameKit.GKAccessPoint.TriggerAccessPoint(System.String,GameKit.GKLeaderboardPlayerScope,GameKit.GKLeaderboardTimeScope,System.Action)
-M:GameKit.GKAccessPoint.TriggerAccessPointWithAchievementId(System.String,System.Action)
-M:GameKit.GKAccessPoint.TriggerAccessPointWithLeaderboardSetId(System.String,System.Action)
M:GameKit.GKAchievement.#ctor
-M:GameKit.GKAchievement.#ctor(System.String,GameKit.GKPlayer)
-M:GameKit.GKAchievement.#ctor(System.String,System.String)
-M:GameKit.GKAchievement.#ctor(System.String)
-M:GameKit.GKAchievement.ChallengeComposeController(GameKit.GKPlayer[],System.String,GameKit.GKChallengeComposeHandler)
-M:GameKit.GKAchievement.ChallengeComposeController(System.String,GameKit.GKPlayer[],GameKit.GKChallengeComposeHandler)
M:GameKit.GKAchievement.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[],AppKit.NSViewController@)
M:GameKit.GKAchievement.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[],UIKit.UIViewController@)
M:GameKit.GKAchievement.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[])
-M:GameKit.GKAchievement.ChallengeComposeControllerWithMessage(System.String,GameKit.GKPlayer[],GameKit.GKChallengeComposeHandler2)
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.IssueChallengeToPlayers(System.String[],System.String)
-M:GameKit.GKAchievement.LoadAchievements(GameKit.GKCompletionHandler)
M:GameKit.GKAchievement.LoadAchievementsAsync
-M:GameKit.GKAchievement.ReportAchievement(System.Action{Foundation.NSError})
M:GameKit.GKAchievement.ReportAchievementAsync
-M:GameKit.GKAchievement.ReportAchievements(GameKit.GKAchievement[],GameKit.GKChallenge[],System.Action{Foundation.NSError})
-M:GameKit.GKAchievement.ReportAchievements(GameKit.GKAchievement[],System.Action{Foundation.NSError})
M:GameKit.GKAchievement.ReportAchievementsAsync(GameKit.GKAchievement[],GameKit.GKChallenge[])
M:GameKit.GKAchievement.ReportAchievementsAsync(GameKit.GKAchievement[])
-M:GameKit.GKAchievement.ResetAchivements(System.Action{Foundation.NSError})
M:GameKit.GKAchievement.ResetAchivementsAsync
-M:GameKit.GKAchievement.SelectChallengeablePlayerIDs(System.String[],System.Action{System.String[],Foundation.NSError})
M:GameKit.GKAchievement.SelectChallengeablePlayerIDsAsync(System.String[])
-M:GameKit.GKAchievement.SelectChallengeablePlayers(GameKit.GKPlayer[],System.Action{GameKit.GKPlayer[],Foundation.NSError})
M:GameKit.GKAchievement.SelectChallengeablePlayersAsync(GameKit.GKPlayer[])
M:GameKit.GKAchievementDescription.EncodeTo(Foundation.NSCoder)
-M:GameKit.GKAchievementDescription.LoadAchievementDescriptions(GameKit.GKAchievementDescriptionHandler)
M:GameKit.GKAchievementDescription.LoadAchievementDescriptionsAsync
-M:GameKit.GKAchievementDescription.LoadImage(GameKit.GKImageLoadedHandler)
M:GameKit.GKAchievementDescription.LoadImageAsync
M:GameKit.GKAchievementViewController.add_DidFinish(System.EventHandler)
M:GameKit.GKAchievementViewController.Dispose(System.Boolean)
M:GameKit.GKAchievementViewController.GKAchievementViewControllerAppearance.#ctor(System.IntPtr)
M:GameKit.GKAchievementViewController.remove_DidFinish(System.EventHandler)
-M:GameKit.GKAchievementViewControllerDelegate.DidFinish(GameKit.GKAchievementViewController)
M:GameKit.GKCategoryResult.#ctor(System.String[],System.String[])
-M:GameKit.GKChallenge.Decline
M:GameKit.GKChallenge.EncodeTo(Foundation.NSCoder)
-M:GameKit.GKChallenge.LoadReceivedChallenges(System.Action{GameKit.GKChallenge[],Foundation.NSError})
M:GameKit.GKChallenge.LoadReceivedChallengesAsync
M:GameKit.GKChallenge.ToString
M:GameKit.GKChallengeComposeControllerResult.#ctor(AppKit.NSViewController,System.Boolean,GameKit.GKPlayer[])
@@ -42396,78 +31307,39 @@ M:GameKit.GKChallengeEventHandlerDelegate_Extensions.RemotePlayerCompletedChalle
M:GameKit.GKChallengeEventHandlerDelegate_Extensions.ShouldShowBannerForLocallyCompletedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge)
M:GameKit.GKChallengeEventHandlerDelegate_Extensions.ShouldShowBannerForLocallyReceivedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge)
M:GameKit.GKChallengeEventHandlerDelegate_Extensions.ShouldShowBannerForRemotelyCompletedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge)
-M:GameKit.GKChallengeEventHandlerDelegate.LocalPlayerCompletedChallenge(GameKit.GKChallenge)
-M:GameKit.GKChallengeEventHandlerDelegate.LocalPlayerReceivedChallenge(GameKit.GKChallenge)
-M:GameKit.GKChallengeEventHandlerDelegate.LocalPlayerSelectedChallenge(GameKit.GKChallenge)
-M:GameKit.GKChallengeEventHandlerDelegate.RemotePlayerCompletedChallenge(GameKit.GKChallenge)
-M:GameKit.GKChallengeEventHandlerDelegate.ShouldShowBannerForLocallyCompletedChallenge(GameKit.GKChallenge)
-M:GameKit.GKChallengeEventHandlerDelegate.ShouldShowBannerForLocallyReceivedChallenge(GameKit.GKChallenge)
-M:GameKit.GKChallengeEventHandlerDelegate.ShouldShowBannerForRemotelyCompletedChallenge(GameKit.GKChallenge)
M:GameKit.GKChallengeListener_Extensions.DidCompleteChallenge(GameKit.IGKChallengeListener,GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer)
M:GameKit.GKChallengeListener_Extensions.DidReceiveChallenge(GameKit.IGKChallengeListener,GameKit.GKPlayer,GameKit.GKChallenge)
M:GameKit.GKChallengeListener_Extensions.IssuedChallengeWasCompleted(GameKit.IGKChallengeListener,GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer)
M:GameKit.GKChallengeListener_Extensions.WantsToPlayChallenge(GameKit.IGKChallengeListener,GameKit.GKPlayer,GameKit.GKChallenge)
-M:GameKit.GKChallengeListener.DidCompleteChallenge(GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer)
-M:GameKit.GKChallengeListener.DidReceiveChallenge(GameKit.GKPlayer,GameKit.GKChallenge)
-M:GameKit.GKChallengeListener.IssuedChallengeWasCompleted(GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer)
-M:GameKit.GKChallengeListener.WantsToPlayChallenge(GameKit.GKPlayer,GameKit.GKChallenge)
M:GameKit.GKChallengesViewController.#ctor(System.String,Foundation.NSBundle)
M:GameKit.GKChallengesViewController.Dispose(System.Boolean)
-M:GameKit.GKChallengesViewControllerDelegate.DidFinish(GameKit.GKChallengesViewController)
-M:GameKit.GKCloudPlayer.GetCurrentSignedInPlayer(System.String,System.Action{GameKit.GKCloudPlayer,Foundation.NSError})
M:GameKit.GKDataEventArgs.#ctor(Foundation.NSData,System.String)
M:GameKit.GKDataReceivedEventArgs.#ctor(Foundation.NSData,System.String,GameKit.GKSession)
M:GameKit.GKDataReceivedForRecipientEventArgs.#ctor(Foundation.NSData,GameKit.GKPlayer,GameKit.GKPlayer)
-M:GameKit.GKDialogController.Dismiss(Foundation.NSObject)
M:GameKit.GKDialogController.Dispose(System.Boolean)
-M:GameKit.GKDialogController.PresentViewController(AppKit.NSViewController)
M:GameKit.GKEntriesForPlayerScopeResult.#ctor(GameKit.GKLeaderboardEntry,GameKit.GKLeaderboardEntry[],System.IntPtr)
M:GameKit.GKEntriesForPlayersResult.#ctor(GameKit.GKLeaderboardEntry,GameKit.GKLeaderboardEntry[])
M:GameKit.GKErrorEventArgs.#ctor(Foundation.NSError)
M:GameKit.GKFetchItemsForIdentityVerificationSignature.#ctor(Foundation.NSUrl,Foundation.NSData,Foundation.NSData,System.UInt64)
M:GameKit.GKFriendRequestComposeViewController.#ctor(System.String,Foundation.NSBundle)
M:GameKit.GKFriendRequestComposeViewController.add_DidFinish(System.EventHandler)
-M:GameKit.GKFriendRequestComposeViewController.AddRecipientPlayers(GameKit.GKPlayer[])
-M:GameKit.GKFriendRequestComposeViewController.AddRecipientsFromEmails(System.String[])
-M:GameKit.GKFriendRequestComposeViewController.AddRecipientsFromPlayerIDs(System.String[])
M:GameKit.GKFriendRequestComposeViewController.Dispose(System.Boolean)
M:GameKit.GKFriendRequestComposeViewController.GKFriendRequestComposeViewControllerAppearance.#ctor(System.IntPtr)
M:GameKit.GKFriendRequestComposeViewController.remove_DidFinish(System.EventHandler)
-M:GameKit.GKFriendRequestComposeViewController.SetMessage(System.String)
-M:GameKit.GKFriendRequestComposeViewControllerDelegate.DidFinish(GameKit.GKFriendRequestComposeViewController)
-M:GameKit.GKGameCenterControllerDelegate.Finished(GameKit.GKGameCenterViewController)
-M:GameKit.GKGameCenterViewController.#ctor(GameKit.GKGameCenterViewControllerState)
-M:GameKit.GKGameCenterViewController.#ctor(GameKit.GKLeaderboard,GameKit.GKLeaderboardPlayerScope)
-M:GameKit.GKGameCenterViewController.#ctor(GameKit.GKPlayer)
M:GameKit.GKGameCenterViewController.#ctor(System.String,Foundation.NSBundle)
-M:GameKit.GKGameCenterViewController.#ctor(System.String,GameKit.GKLeaderboardPlayerScope,GameKit.GKLeaderboardTimeScope)
M:GameKit.GKGameCenterViewController.add_Finished(System.EventHandler)
M:GameKit.GKGameCenterViewController.Dispose(System.Boolean)
M:GameKit.GKGameCenterViewController.remove_Finished(System.EventHandler)
-M:GameKit.GKGameSession.AddEventListener(GameKit.IGKGameSessionEventListener)
-M:GameKit.GKGameSession.ClearBadge(GameKit.GKCloudPlayer[],System.Action{Foundation.NSError})
M:GameKit.GKGameSession.ClearBadgeAsync(GameKit.GKCloudPlayer[])
-M:GameKit.GKGameSession.CreateSession(System.String,System.String,System.IntPtr,System.Action{GameKit.GKGameSession,Foundation.NSError})
M:GameKit.GKGameSession.CreateSessionAsync(System.String,System.String,System.IntPtr)
-M:GameKit.GKGameSession.GetPlayers(GameKit.GKConnectionState)
-M:GameKit.GKGameSession.GetShareUrl(System.Action{Foundation.NSUrl,Foundation.NSError})
M:GameKit.GKGameSession.GetShareUrlAsync
-M:GameKit.GKGameSession.LoadData(System.Action{Foundation.NSData,Foundation.NSError})
M:GameKit.GKGameSession.LoadDataAsync
-M:GameKit.GKGameSession.LoadSession(System.String,System.Action{GameKit.GKGameSession,Foundation.NSError})
M:GameKit.GKGameSession.LoadSessionAsync(System.String)
-M:GameKit.GKGameSession.LoadSessions(System.String,System.Action{GameKit.GKGameSession[],Foundation.NSError})
M:GameKit.GKGameSession.LoadSessionsAsync(System.String)
-M:GameKit.GKGameSession.RemoveEventListener(GameKit.IGKGameSessionEventListener)
-M:GameKit.GKGameSession.RemoveSession(System.String,System.Action{Foundation.NSError})
M:GameKit.GKGameSession.RemoveSessionAsync(System.String)
-M:GameKit.GKGameSession.SaveData(Foundation.NSData,System.Action{Foundation.NSData,Foundation.NSError})
M:GameKit.GKGameSession.SaveDataAsync(Foundation.NSData)
-M:GameKit.GKGameSession.SendData(Foundation.NSData,GameKit.GKTransportType,System.Action{Foundation.NSError})
M:GameKit.GKGameSession.SendDataAsync(Foundation.NSData,GameKit.GKTransportType)
-M:GameKit.GKGameSession.SendMessage(System.String,System.String[],Foundation.NSData,GameKit.GKCloudPlayer[],System.Boolean,System.Action{Foundation.NSError})
M:GameKit.GKGameSession.SendMessageAsync(System.String,System.String[],Foundation.NSData,GameKit.GKCloudPlayer[],System.Boolean)
-M:GameKit.GKGameSession.SetConnectionState(GameKit.GKConnectionState,System.Action{Foundation.NSError})
M:GameKit.GKGameSession.SetConnectionStateAsync(GameKit.GKConnectionState)
M:GameKit.GKGameSessionEventListener_Extensions.DidAddPlayer(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,GameKit.GKCloudPlayer)
M:GameKit.GKGameSessionEventListener_Extensions.DidChangeConnectionState(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,GameKit.GKCloudPlayer,GameKit.GKConnectionState)
@@ -42475,132 +31347,61 @@ M:GameKit.GKGameSessionEventListener_Extensions.DidReceiveData(GameKit.IGKGameSe
M:GameKit.GKGameSessionEventListener_Extensions.DidReceiveMessage(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,System.String,Foundation.NSData,GameKit.GKCloudPlayer)
M:GameKit.GKGameSessionEventListener_Extensions.DidRemovePlayer(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,GameKit.GKCloudPlayer)
M:GameKit.GKGameSessionEventListener_Extensions.DidSaveData(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,GameKit.GKCloudPlayer,Foundation.NSData)
-M:GameKit.GKGameSessionSharingViewController.#ctor(GameKit.GKGameSession)
M:GameKit.GKGameSessionSharingViewController.#ctor(System.String,Foundation.NSBundle)
M:GameKit.GKGameSessionSharingViewController.Dispose(System.Boolean)
-M:GameKit.GKGameSessionSharingViewControllerDelegate.DidFinish(GameKit.GKGameSessionSharingViewController,Foundation.NSError)
M:GameKit.GKIdentityVerificationSignatureResult.#ctor(Foundation.NSUrl,Foundation.NSData,Foundation.NSData,System.UInt64)
M:GameKit.GKInviteEventListener_Extensions.DidAcceptInvite(GameKit.IGKInviteEventListener,GameKit.GKPlayer,GameKit.GKInvite)
M:GameKit.GKInviteEventListener_Extensions.DidRequestMatch(GameKit.IGKInviteEventListener,GameKit.GKPlayer,GameKit.GKPlayer[])
M:GameKit.GKInviteEventListener_Extensions.DidRequestMatch(GameKit.IGKInviteEventListener,GameKit.GKPlayer,System.String[])
-M:GameKit.GKInviteEventListener.DidAcceptInvite(GameKit.GKPlayer,GameKit.GKInvite)
-M:GameKit.GKInviteEventListener.DidRequestMatch(GameKit.GKPlayer,GameKit.GKPlayer[])
-M:GameKit.GKInviteEventListener.DidRequestMatch(GameKit.GKPlayer,System.String[])
-M:GameKit.GKLeaderboard.#ctor
-M:GameKit.GKLeaderboard.#ctor(GameKit.GKPlayer[])
-M:GameKit.GKLeaderboard.#ctor(System.String[])
-M:GameKit.GKLeaderboard.LoadCategories(GameKit.GKCategoryHandler)
M:GameKit.GKLeaderboard.LoadCategoriesAsync
-M:GameKit.GKLeaderboard.LoadEntries(GameKit.GKLeaderboardPlayerScope,GameKit.GKLeaderboardTimeScope,Foundation.NSRange,GameKit.GKEntriesForPlayerScopeHandler)
-M:GameKit.GKLeaderboard.LoadEntries(GameKit.GKPlayer[],GameKit.GKLeaderboardTimeScope,GameKit.GKEntriesForPlayersHandler)
M:GameKit.GKLeaderboard.LoadEntriesAsync(GameKit.GKLeaderboardPlayerScope,GameKit.GKLeaderboardTimeScope,Foundation.NSRange)
M:GameKit.GKLeaderboard.LoadEntriesAsync(GameKit.GKPlayer[],GameKit.GKLeaderboardTimeScope)
-M:GameKit.GKLeaderboard.LoadImage(GameKit.GKImageLoadedHandler)
M:GameKit.GKLeaderboard.LoadImageAsync
-M:GameKit.GKLeaderboard.LoadLeaderboards(System.Action{GameKit.GKLeaderboard[],Foundation.NSError})
-M:GameKit.GKLeaderboard.LoadLeaderboards(System.String[],GameKit.GKLeaderboardsHandler)
M:GameKit.GKLeaderboard.LoadLeaderboardsAsync
M:GameKit.GKLeaderboard.LoadLeaderboardsAsync(System.String[])
-M:GameKit.GKLeaderboard.LoadPreviousOccurrence(GameKit.GKLeaderboardsHandler)
M:GameKit.GKLeaderboard.LoadPreviousOccurrenceAsync
-M:GameKit.GKLeaderboard.LoadScores(GameKit.GKScoresLoadedHandler)
M:GameKit.GKLeaderboard.LoadScoresAsync
-M:GameKit.GKLeaderboard.SetDefaultLeaderboard(System.String,System.Action{Foundation.NSError})
M:GameKit.GKLeaderboard.SetDefaultLeaderboardAsync(System.String)
-M:GameKit.GKLeaderboard.SubmitScore(System.IntPtr,System.UIntPtr,GameKit.GKPlayer,System.Action{Foundation.NSError})
-M:GameKit.GKLeaderboard.SubmitScore(System.IntPtr,System.UIntPtr,GameKit.GKPlayer,System.String[],System.Action{Foundation.NSError})
M:GameKit.GKLeaderboard.SubmitScoreAsync(System.IntPtr,System.UIntPtr,GameKit.GKPlayer,System.String[])
M:GameKit.GKLeaderboard.SubmitScoreAsync(System.IntPtr,System.UIntPtr,GameKit.GKPlayer)
-M:GameKit.GKLeaderboardEntry.ChallengeComposeController(System.String,GameKit.GKPlayer[],GameKit.GKChallengeComposeHandler)
M:GameKit.GKLeaderboardEntry.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[],AppKit.NSViewController@)
M:GameKit.GKLeaderboardEntry.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[],UIKit.UIViewController@)
M:GameKit.GKLeaderboardEntry.ChallengeComposeControllerAsync(System.String,GameKit.GKPlayer[])
-M:GameKit.GKLeaderboardEntry.ChallengeComposeControllerWithMessage(System.String,GameKit.GKPlayer[],GameKit.GKChallengeComposeHandler2)
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.GKLeaderboardSet.EncodeTo(Foundation.NSCoder)
-M:GameKit.GKLeaderboardSet.LoadImage(GameKit.GKImageLoadedHandler)
M:GameKit.GKLeaderboardSet.LoadImageAsync
-M:GameKit.GKLeaderboardSet.LoadLeaderboards(GameKit.GKLeaderboardsHandler)
M:GameKit.GKLeaderboardSet.LoadLeaderboardsAsync
-M:GameKit.GKLeaderboardSet.LoadLeaderboardSets(GameKit.GKLeaderboardSetsHandler)
M:GameKit.GKLeaderboardSet.LoadLeaderboardSetsAsync
-M:GameKit.GKLeaderboardSet.LoadLeaderboardsWithCompletionHandler(GameKit.GKLeaderboardsHandler)
M:GameKit.GKLeaderboardSet.LoadLeaderboardsWithCompletionHandlerAsync
M:GameKit.GKLeaderboardViewController.add_DidFinish(System.EventHandler)
M:GameKit.GKLeaderboardViewController.Dispose(System.Boolean)
M:GameKit.GKLeaderboardViewController.GKLeaderboardViewControllerAppearance.#ctor(System.IntPtr)
M:GameKit.GKLeaderboardViewController.remove_DidFinish(System.EventHandler)
-M:GameKit.GKLeaderboardViewControllerDelegate.DidFinish(GameKit.GKLeaderboardViewController)
-M:GameKit.GKLocalPlayer.Authenticate(System.Action{Foundation.NSError})
M:GameKit.GKLocalPlayer.AuthenticateAsync
-M:GameKit.GKLocalPlayer.DeleteSavedGames(System.String,System.Action{Foundation.NSError})
-M:GameKit.GKLocalPlayer.DidModifySavedGame(GameKit.GKPlayer,GameKit.GKSavedGame)
-M:GameKit.GKLocalPlayer.FetchItemsForIdentityVerificationSignature(GameKit.GKFetchItemsForIdentityVerificationSignatureCompletionHandler)
M:GameKit.GKLocalPlayer.FetchItemsForIdentityVerificationSignatureAsync
-M:GameKit.GKLocalPlayer.FetchSavedGames(System.Action{GameKit.GKSavedGame[],Foundation.NSError})
-M:GameKit.GKLocalPlayer.GenerateIdentityVerificationSignature(GameKit.GKIdentityVerificationSignatureHandler)
M:GameKit.GKLocalPlayer.GenerateIdentityVerificationSignatureAsync
-M:GameKit.GKLocalPlayer.HasConflictingSavedGames(GameKit.GKPlayer,GameKit.GKSavedGame[])
-M:GameKit.GKLocalPlayer.LoadChallengeableFriends(System.Action{GameKit.GKPlayer[],Foundation.NSError})
M:GameKit.GKLocalPlayer.LoadChallengeableFriendsAsync
-M:GameKit.GKLocalPlayer.LoadDefaultLeaderboardCategoryID(System.Action{System.String,Foundation.NSError})
M:GameKit.GKLocalPlayer.LoadDefaultLeaderboardCategoryIDAsync
-M:GameKit.GKLocalPlayer.LoadDefaultLeaderboardIdentifier(System.Action{System.String,Foundation.NSError})
M:GameKit.GKLocalPlayer.LoadDefaultLeaderboardIdentifierAsync
-M:GameKit.GKLocalPlayer.LoadFriendPlayers(System.Action{GameKit.GKPlayer[],Foundation.NSError})
M:GameKit.GKLocalPlayer.LoadFriendPlayersAsync
-M:GameKit.GKLocalPlayer.LoadFriends(GameKit.GKFriendsHandler)
M:GameKit.GKLocalPlayer.LoadFriendsAsync
-M:GameKit.GKLocalPlayer.LoadFriendsAuthorizationStatus(System.Action{GameKit.GKFriendsAuthorizationStatus,Foundation.NSError})
M:GameKit.GKLocalPlayer.LoadFriendsAuthorizationStatusAsync
-M:GameKit.GKLocalPlayer.LoadFriendsList(System.Action{GameKit.GKPlayer[],Foundation.NSError})
-M:GameKit.GKLocalPlayer.LoadFriendsList(System.String[],System.Action{GameKit.GKPlayer[],Foundation.NSError})
M:GameKit.GKLocalPlayer.LoadFriendsListAsync
M:GameKit.GKLocalPlayer.LoadFriendsListAsync(System.String[])
-M:GameKit.GKLocalPlayer.LoadRecentPlayers(System.Action{GameKit.GKPlayer[],Foundation.NSError})
M:GameKit.GKLocalPlayer.LoadRecentPlayersAsync
-M:GameKit.GKLocalPlayer.PresentFriendRequestCreator(AppKit.NSWindow,Foundation.NSError@)
-M:GameKit.GKLocalPlayer.PresentFriendRequestCreator(UIKit.UIViewController,Foundation.NSError@)
-M:GameKit.GKLocalPlayer.RegisterListener(GameKit.IGKLocalPlayerListener)
-M:GameKit.GKLocalPlayer.ResolveConflictingSavedGames(GameKit.GKSavedGame[],Foundation.NSData,System.Action{GameKit.GKSavedGame[],Foundation.NSError})
-M:GameKit.GKLocalPlayer.SaveGameData(Foundation.NSData,System.String,System.Action{GameKit.GKSavedGame,Foundation.NSError})
-M:GameKit.GKLocalPlayer.SetDefaultLeaderboardCategoryID(System.String,System.Action{Foundation.NSError})
M:GameKit.GKLocalPlayer.SetDefaultLeaderboardCategoryIDAsync(System.String)
-M:GameKit.GKLocalPlayer.SetDefaultLeaderboardIdentifier(System.String,System.Action{Foundation.NSError})
M:GameKit.GKLocalPlayer.SetDefaultLeaderboardIdentifierAsync(System.String)
-M:GameKit.GKLocalPlayer.UnregisterAllListeners
-M:GameKit.GKLocalPlayer.UnregisterListener(GameKit.IGKLocalPlayerListener)
-M:GameKit.GKLocalPlayerListener.DidAcceptInvite(GameKit.GKPlayer,GameKit.GKInvite)
-M:GameKit.GKLocalPlayerListener.DidCompleteChallenge(GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer)
-M:GameKit.GKLocalPlayerListener.DidModifySavedGame(GameKit.GKPlayer,GameKit.GKSavedGame)
-M:GameKit.GKLocalPlayerListener.DidReceiveChallenge(GameKit.GKPlayer,GameKit.GKChallenge)
-M:GameKit.GKLocalPlayerListener.DidRequestMatch(GameKit.GKPlayer,GameKit.GKPlayer[])
-M:GameKit.GKLocalPlayerListener.DidRequestMatch(GameKit.GKPlayer,System.String[])
-M:GameKit.GKLocalPlayerListener.DidRequestMatchWithOtherPlayers(GameKit.GKPlayer,GameKit.GKPlayer[])
-M:GameKit.GKLocalPlayerListener.HasConflictingSavedGames(GameKit.GKPlayer,GameKit.GKSavedGame[])
-M:GameKit.GKLocalPlayerListener.IssuedChallengeWasCompleted(GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer)
-M:GameKit.GKLocalPlayerListener.MatchEnded(GameKit.GKPlayer,GameKit.GKTurnBasedMatch)
-M:GameKit.GKLocalPlayerListener.ReceivedExchangeCancellation(GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch)
-M:GameKit.GKLocalPlayerListener.ReceivedExchangeReplies(GameKit.GKPlayer,GameKit.GKTurnBasedExchangeReply[],GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch)
-M:GameKit.GKLocalPlayerListener.ReceivedExchangeRequest(GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch)
-M:GameKit.GKLocalPlayerListener.ReceivedTurnEvent(GameKit.GKPlayer,GameKit.GKTurnBasedMatch,System.Boolean)
-M:GameKit.GKLocalPlayerListener.WantsToPlayChallenge(GameKit.GKPlayer,GameKit.GKChallenge)
-M:GameKit.GKLocalPlayerListener.WantsToQuitMatch(GameKit.GKPlayer,GameKit.GKTurnBasedMatch)
M:GameKit.GKMatch.add_DataReceived(System.EventHandler{GameKit.GKDataEventArgs})
M:GameKit.GKMatch.add_DataReceivedForRecipient(System.EventHandler{GameKit.GKDataReceivedForRecipientEventArgs})
M:GameKit.GKMatch.add_DataReceivedFromPlayer(System.EventHandler{GameKit.GKMatchReceivedDataFromRemotePlayerEventArgs})
M:GameKit.GKMatch.add_Failed(System.EventHandler{GameKit.GKErrorEventArgs})
M:GameKit.GKMatch.add_StateChanged(System.EventHandler{GameKit.GKStateEventArgs})
M:GameKit.GKMatch.add_StateChangedForPlayer(System.EventHandler{GameKit.GKMatchConnectionChangedEventArgs})
-M:GameKit.GKMatch.ChooseBestHostingPlayer(System.Action{GameKit.GKPlayer})
M:GameKit.GKMatch.ChooseBestHostingPlayerAsync
-M:GameKit.GKMatch.ChooseBestHostPlayer(System.Action{System.String})
M:GameKit.GKMatch.ChooseBestHostPlayerAsync
-M:GameKit.GKMatch.Disconnect
M:GameKit.GKMatch.Dispose(System.Boolean)
-M:GameKit.GKMatch.Rematch(System.Action{GameKit.GKMatch,Foundation.NSError})
M:GameKit.GKMatch.RematchAsync
M:GameKit.GKMatch.remove_DataReceived(System.EventHandler{GameKit.GKDataEventArgs})
M:GameKit.GKMatch.remove_DataReceivedForRecipient(System.EventHandler{GameKit.GKDataReceivedForRecipientEventArgs})
@@ -42608,10 +31409,6 @@ M:GameKit.GKMatch.remove_DataReceivedFromPlayer(System.EventHandler{GameKit.GKMa
M:GameKit.GKMatch.remove_Failed(System.EventHandler{GameKit.GKErrorEventArgs})
M:GameKit.GKMatch.remove_StateChanged(System.EventHandler{GameKit.GKStateEventArgs})
M:GameKit.GKMatch.remove_StateChangedForPlayer(System.EventHandler{GameKit.GKMatchConnectionChangedEventArgs})
-M:GameKit.GKMatch.SendData(Foundation.NSData,GameKit.GKPlayer[],GameKit.GKMatchSendDataMode,Foundation.NSError@)
-M:GameKit.GKMatch.SendData(Foundation.NSData,System.String[],GameKit.GKMatchSendDataMode,Foundation.NSError@)
-M:GameKit.GKMatch.SendDataToAllPlayers(Foundation.NSData,GameKit.GKMatchSendDataMode,Foundation.NSError@)
-M:GameKit.GKMatch.VoiceChatWithName(System.String)
M:GameKit.GKMatchConnectionChangedEventArgs.#ctor(GameKit.GKPlayer,GameKit.GKPlayerConnectionState)
M:GameKit.GKMatchDelegate_Extensions.DataReceived(GameKit.IGKMatchDelegate,GameKit.GKMatch,Foundation.NSData,System.String)
M:GameKit.GKMatchDelegate_Extensions.DataReceivedForRecipient(GameKit.IGKMatchDelegate,GameKit.GKMatch,Foundation.NSData,GameKit.GKPlayer,GameKit.GKPlayer)
@@ -42621,44 +31418,16 @@ M:GameKit.GKMatchDelegate_Extensions.ShouldReinviteDisconnectedPlayer(GameKit.IG
M:GameKit.GKMatchDelegate_Extensions.ShouldReinvitePlayer(GameKit.IGKMatchDelegate,GameKit.GKMatch,System.String)
M:GameKit.GKMatchDelegate_Extensions.StateChanged(GameKit.IGKMatchDelegate,GameKit.GKMatch,System.String,GameKit.GKPlayerConnectionState)
M:GameKit.GKMatchDelegate_Extensions.StateChangedForPlayer(GameKit.IGKMatchDelegate,GameKit.GKMatch,GameKit.GKPlayer,GameKit.GKPlayerConnectionState)
-M:GameKit.GKMatchDelegate.DataReceived(GameKit.GKMatch,Foundation.NSData,System.String)
-M:GameKit.GKMatchDelegate.DataReceivedForRecipient(GameKit.GKMatch,Foundation.NSData,GameKit.GKPlayer,GameKit.GKPlayer)
-M:GameKit.GKMatchDelegate.DataReceivedFromPlayer(GameKit.GKMatch,Foundation.NSData,GameKit.GKPlayer)
-M:GameKit.GKMatchDelegate.Failed(GameKit.GKMatch,Foundation.NSError)
-M:GameKit.GKMatchDelegate.ShouldReinviteDisconnectedPlayer(GameKit.GKMatch,GameKit.GKPlayer)
-M:GameKit.GKMatchDelegate.ShouldReinvitePlayer(GameKit.GKMatch,System.String)
-M:GameKit.GKMatchDelegate.StateChanged(GameKit.GKMatch,System.String,GameKit.GKPlayerConnectionState)
-M:GameKit.GKMatchDelegate.StateChangedForPlayer(GameKit.GKMatch,GameKit.GKPlayer,GameKit.GKPlayerConnectionState)
M:GameKit.GKMatchEventArgs.#ctor(GameKit.GKMatch)
-M:GameKit.GKMatchmaker.AddPlayers(GameKit.GKMatch,GameKit.GKMatchRequest,System.Action{Foundation.NSError})
M:GameKit.GKMatchmaker.AddPlayersAsync(GameKit.GKMatch,GameKit.GKMatchRequest)
-M:GameKit.GKMatchmaker.Cancel
-M:GameKit.GKMatchmaker.CancelInvite(System.String)
-M:GameKit.GKMatchmaker.CancelPendingInvite(GameKit.GKPlayer)
-M:GameKit.GKMatchmaker.FindMatch(GameKit.GKMatchRequest,GameKit.GKNotificationMatch)
M:GameKit.GKMatchmaker.FindMatchAsync(GameKit.GKMatchRequest)
-M:GameKit.GKMatchmaker.FindMatchedPlayers(GameKit.GKMatchRequest,System.Action{GameKit.GKMatchedPlayers,Foundation.NSError})
M:GameKit.GKMatchmaker.FindMatchedPlayersAsync(GameKit.GKMatchRequest)
-M:GameKit.GKMatchmaker.FindPlayers(GameKit.GKMatchRequest,GameKit.GKFriendsHandler)
M:GameKit.GKMatchmaker.FindPlayersAsync(GameKit.GKMatchRequest)
-M:GameKit.GKMatchmaker.FindPlayersForHostedRequest(GameKit.GKMatchRequest,System.Action{GameKit.GKPlayer[],Foundation.NSError})
M:GameKit.GKMatchmaker.FindPlayersForHostedRequestAsync(GameKit.GKMatchRequest)
-M:GameKit.GKMatchmaker.FinishMatchmaking(GameKit.GKMatch)
-M:GameKit.GKMatchmaker.Match(GameKit.GKInvite,System.Action{GameKit.GKMatch,Foundation.NSError})
M:GameKit.GKMatchmaker.MatchAsync(GameKit.GKInvite)
-M:GameKit.GKMatchmaker.QueryActivity(GameKit.GKQueryHandler)
M:GameKit.GKMatchmaker.QueryActivityAsync
-M:GameKit.GKMatchmaker.QueryPlayerGroupActivity(System.IntPtr,GameKit.GKQueryHandler)
M:GameKit.GKMatchmaker.QueryPlayerGroupActivityAsync(System.IntPtr)
-M:GameKit.GKMatchmaker.QueryQueueActivity(System.String,System.Action{System.IntPtr,Foundation.NSError})
M:GameKit.GKMatchmaker.QueryQueueActivityAsync(System.String)
-M:GameKit.GKMatchmaker.StartBrowsingForNearbyPlayers(System.Action{GameKit.GKPlayer,System.Boolean})
-M:GameKit.GKMatchmaker.StartBrowsingForNearbyPlayers(System.Action{System.String,System.Boolean})
-M:GameKit.GKMatchmaker.StartGroupActivity(System.Action{GameKit.GKPlayer})
-M:GameKit.GKMatchmaker.StopBrowsingForNearbyPlayers
-M:GameKit.GKMatchmaker.StopGroupActivity
-M:GameKit.GKMatchmakerViewController.#ctor(GameKit.GKInvite)
-M:GameKit.GKMatchmakerViewController.#ctor(GameKit.GKMatchRequest)
M:GameKit.GKMatchmakerViewController.#ctor(System.String,Foundation.NSBundle)
M:GameKit.GKMatchmakerViewController.add_DidFailWithError(System.EventHandler{GameKit.GKErrorEventArgs})
M:GameKit.GKMatchmakerViewController.add_DidFindHostedPlayers(System.EventHandler{GameKit.GKMatchmakingPlayersEventArgs})
@@ -42667,7 +31436,6 @@ M:GameKit.GKMatchmakerViewController.add_DidFindPlayers(System.EventHandler{Game
M:GameKit.GKMatchmakerViewController.add_HostedPlayerDidAccept(System.EventHandler{GameKit.GKMatchmakingPlayerEventArgs})
M:GameKit.GKMatchmakerViewController.add_ReceivedAcceptFromHostedPlayer(System.EventHandler{GameKit.GKPlayerEventArgs})
M:GameKit.GKMatchmakerViewController.add_WasCancelled(System.EventHandler)
-M:GameKit.GKMatchmakerViewController.AddPlayersToMatch(GameKit.GKMatch)
M:GameKit.GKMatchmakerViewController.Dispose(System.Boolean)
M:GameKit.GKMatchmakerViewController.remove_DidFailWithError(System.EventHandler{GameKit.GKErrorEventArgs})
M:GameKit.GKMatchmakerViewController.remove_DidFindHostedPlayers(System.EventHandler{GameKit.GKMatchmakingPlayersEventArgs})
@@ -42676,29 +31444,15 @@ M:GameKit.GKMatchmakerViewController.remove_DidFindPlayers(System.EventHandler{G
M:GameKit.GKMatchmakerViewController.remove_HostedPlayerDidAccept(System.EventHandler{GameKit.GKMatchmakingPlayerEventArgs})
M:GameKit.GKMatchmakerViewController.remove_ReceivedAcceptFromHostedPlayer(System.EventHandler{GameKit.GKPlayerEventArgs})
M:GameKit.GKMatchmakerViewController.remove_WasCancelled(System.EventHandler)
-M:GameKit.GKMatchmakerViewController.SetHostedPlayerConnected(GameKit.GKPlayer,System.Boolean)
-M:GameKit.GKMatchmakerViewController.SetHostedPlayerConnected(System.String,System.Boolean)
-M:GameKit.GKMatchmakerViewController.SetHostedPlayerReady(System.String)
M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.DidFindHostedPlayers(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,GameKit.GKPlayer[])
M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.DidFindMatch(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,GameKit.GKMatch)
M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.DidFindPlayers(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,System.String[])
M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.GetMatchProperties(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,GameKit.GKPlayer,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}})
M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.HostedPlayerDidAccept(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,GameKit.GKPlayer)
M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.ReceivedAcceptFromHostedPlayer(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,System.String)
-M:GameKit.GKMatchmakerViewControllerDelegate.DidFailWithError(GameKit.GKMatchmakerViewController,Foundation.NSError)
-M:GameKit.GKMatchmakerViewControllerDelegate.DidFindHostedPlayers(GameKit.GKMatchmakerViewController,GameKit.GKPlayer[])
-M:GameKit.GKMatchmakerViewControllerDelegate.DidFindMatch(GameKit.GKMatchmakerViewController,GameKit.GKMatch)
-M:GameKit.GKMatchmakerViewControllerDelegate.DidFindPlayers(GameKit.GKMatchmakerViewController,System.String[])
-M:GameKit.GKMatchmakerViewControllerDelegate.GetMatchProperties(GameKit.GKMatchmakerViewController,GameKit.GKPlayer,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}})
-M:GameKit.GKMatchmakerViewControllerDelegate.HostedPlayerDidAccept(GameKit.GKMatchmakerViewController,GameKit.GKPlayer)
-M:GameKit.GKMatchmakerViewControllerDelegate.ReceivedAcceptFromHostedPlayer(GameKit.GKMatchmakerViewController,System.String)
-M:GameKit.GKMatchmakerViewControllerDelegate.WasCancelled(GameKit.GKMatchmakerViewController)
M:GameKit.GKMatchmakingPlayerEventArgs.#ctor(GameKit.GKPlayer)
M:GameKit.GKMatchmakingPlayersEventArgs.#ctor(GameKit.GKPlayer[])
M:GameKit.GKMatchReceivedDataFromRemotePlayerEventArgs.#ctor(Foundation.NSData,GameKit.GKPlayer)
-M:GameKit.GKMatchRequest.GetMaxPlayersAllowed(GameKit.GKMatchType)
-M:GameKit.GKNotificationBanner.Show(System.String,System.String,System.Action)
-M:GameKit.GKNotificationBanner.Show(System.String,System.String,System.Double,System.Action)
M:GameKit.GKNotificationBanner.ShowAsync(System.String,System.String,System.Double)
M:GameKit.GKNotificationBanner.ShowAsync(System.String,System.String)
M:GameKit.GKPeerChangedStateEventArgs.#ctor(GameKit.GKSession,System.String,GameKit.GKPeerConnectionState)
@@ -42721,77 +31475,43 @@ M:GameKit.GKPeerPickerControllerDelegate.ControllerCancelled(GameKit.GKPeerPicke
M:GameKit.GKPeerPickerControllerDelegate.GetSession(GameKit.GKPeerPickerController,GameKit.GKPeerPickerConnectionType)
M:GameKit.GKPeerPickerControllerDelegate.PeerConnected(GameKit.GKPeerPickerController,System.String,GameKit.GKSession)
M:GameKit.GKPlayer.EncodeTo(Foundation.NSCoder)
-M:GameKit.GKPlayer.GetAnonymousGuestPlayer(System.String)
-M:GameKit.GKPlayer.LoadPhoto(GameKit.GKPhotoSize,GameKit.GKPlayerPhotoLoaded)
M:GameKit.GKPlayer.LoadPhotoAsync(GameKit.GKPhotoSize)
-M:GameKit.GKPlayer.LoadPlayersForIdentifiers(System.String[],GameKit.GKPlayersHandler)
M:GameKit.GKPlayer.LoadPlayersForIdentifiersAsync(System.String[])
M:GameKit.GKPlayerEventArgs.#ctor(System.String)
M:GameKit.GKPlayersEventArgs.#ctor(System.String[])
M:GameKit.GKSavedGame.Copy(Foundation.NSZone)
-M:GameKit.GKSavedGame.LoadData(System.Action{Foundation.NSData,Foundation.NSError})
M:GameKit.GKSavedGame.LoadDataAsync
M:GameKit.GKSavedGameListener_Extensions.DidModifySavedGame(GameKit.IGKSavedGameListener,GameKit.GKPlayer,GameKit.GKSavedGame)
M:GameKit.GKSavedGameListener_Extensions.HasConflictingSavedGames(GameKit.IGKSavedGameListener,GameKit.GKPlayer,GameKit.GKSavedGame[])
-M:GameKit.GKSavedGameListener.DidModifySavedGame(GameKit.GKPlayer,GameKit.GKSavedGame)
-M:GameKit.GKSavedGameListener.HasConflictingSavedGames(GameKit.GKPlayer,GameKit.GKSavedGame[])
-M:GameKit.GKScore.#ctor(System.String,GameKit.GKPlayer)
-M:GameKit.GKScore.#ctor(System.String,System.String)
M:GameKit.GKScore.#ctor(System.String)
-M:GameKit.GKScore.ChallengeComposeController(System.String,GameKit.GKPlayer[],GameKit.GKChallengeComposeHandler)
-M:GameKit.GKScore.ChallengeComposeController(System.String[],System.String,GameKit.GKChallengeComposeHandler)
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.IssueChallengeToPlayers(System.String[],System.String)
-M:GameKit.GKScore.ReportLeaderboardScores(GameKit.GKLeaderboardScore[],GameKit.GKChallenge[],System.Action{Foundation.NSError})
M:GameKit.GKScore.ReportLeaderboardScoresAsync(GameKit.GKLeaderboardScore[],GameKit.GKChallenge[])
-M:GameKit.GKScore.ReportScore(System.Action{Foundation.NSError})
M:GameKit.GKScore.ReportScoreAsync
-M:GameKit.GKScore.ReportScores(GameKit.GKScore[],GameKit.GKChallenge[],System.Action{Foundation.NSError})
-M:GameKit.GKScore.ReportScores(GameKit.GKScore[],System.Action{Foundation.NSError})
M:GameKit.GKScore.ReportScoresAsync(GameKit.GKScore[],GameKit.GKChallenge[])
M:GameKit.GKScore.ReportScoresAsync(GameKit.GKScore[])
-M:GameKit.GKSession.#ctor(System.String,System.String,GameKit.GKSessionMode)
-M:GameKit.GKSession.AcceptConnection(System.String,Foundation.NSError@)
M:GameKit.GKSession.add_ConnectionFailed(System.EventHandler{GameKit.GKPeerConnectionEventArgs})
M:GameKit.GKSession.add_ConnectionRequest(System.EventHandler{GameKit.GKPeerConnectionEventArgs})
M:GameKit.GKSession.add_Failed(System.EventHandler{GameKit.GKPeerConnectionEventArgs})
M:GameKit.GKSession.add_PeerChanged(System.EventHandler{GameKit.GKPeerChangedStateEventArgs})
M:GameKit.GKSession.add_ReceiveData(System.EventHandler{GameKit.GKDataReceivedEventArgs})
-M:GameKit.GKSession.CancelConnect(System.String)
-M:GameKit.GKSession.Connect(System.String,System.Double)
-M:GameKit.GKSession.DenyConnection(System.String)
-M:GameKit.GKSession.DisconnectFromAllPeers
-M:GameKit.GKSession.DisconnectPeerFromAllPeers(System.String)
-M:GameKit.GKSession.DisplayNameForPeer(System.String)
M:GameKit.GKSession.Dispose(System.Boolean)
-M:GameKit.GKSession.PeersWithConnectionState(GameKit.GKPeerConnectionState)
M:GameKit.GKSession.remove_ConnectionFailed(System.EventHandler{GameKit.GKPeerConnectionEventArgs})
M:GameKit.GKSession.remove_ConnectionRequest(System.EventHandler{GameKit.GKPeerConnectionEventArgs})
M:GameKit.GKSession.remove_Failed(System.EventHandler{GameKit.GKPeerConnectionEventArgs})
M:GameKit.GKSession.remove_PeerChanged(System.EventHandler{GameKit.GKPeerChangedStateEventArgs})
M:GameKit.GKSession.remove_ReceiveData(System.EventHandler{GameKit.GKDataReceivedEventArgs})
-M:GameKit.GKSession.SendData(Foundation.NSData,System.String[],GameKit.GKSendDataMode,Foundation.NSError@)
-M:GameKit.GKSession.SendDataToAllPeers(Foundation.NSData,GameKit.GKSendDataMode,Foundation.NSError@)
M:GameKit.GKSession.SetDataReceiveHandler(Foundation.NSObject,System.IntPtr)
M:GameKit.GKSessionDelegate_Extensions.FailedWithError(GameKit.IGKSessionDelegate,GameKit.GKSession,Foundation.NSError)
M:GameKit.GKSessionDelegate_Extensions.PeerChangedState(GameKit.IGKSessionDelegate,GameKit.GKSession,System.String,GameKit.GKPeerConnectionState)
M:GameKit.GKSessionDelegate_Extensions.PeerConnectionFailed(GameKit.IGKSessionDelegate,GameKit.GKSession,System.String,Foundation.NSError)
M:GameKit.GKSessionDelegate_Extensions.PeerConnectionRequest(GameKit.IGKSessionDelegate,GameKit.GKSession,System.String)
-M:GameKit.GKSessionDelegate.FailedWithError(GameKit.GKSession,Foundation.NSError)
-M:GameKit.GKSessionDelegate.PeerChangedState(GameKit.GKSession,System.String,GameKit.GKPeerConnectionState)
-M:GameKit.GKSessionDelegate.PeerConnectionFailed(GameKit.GKSession,System.String,Foundation.NSError)
-M:GameKit.GKSessionDelegate.PeerConnectionRequest(GameKit.GKSession,System.String)
M:GameKit.GKStateEventArgs.#ctor(System.String,GameKit.GKPlayerConnectionState)
M:GameKit.GKTurnBasedEventHandler.Dispose(System.Boolean)
M:GameKit.GKTurnBasedEventHandlerDelegate_Extensions.HandleMatchEnded(GameKit.IGKTurnBasedEventHandlerDelegate,GameKit.GKTurnBasedMatch)
M:GameKit.GKTurnBasedEventHandlerDelegate_Extensions.HandleTurnEventForMatch(GameKit.IGKTurnBasedEventHandlerDelegate,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedEventHandlerDelegate.HandleInviteFromGameCenter(Foundation.NSString[])
-M:GameKit.GKTurnBasedEventHandlerDelegate.HandleMatchEnded(GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedEventHandlerDelegate.HandleTurnEvent(GameKit.GKTurnBasedMatch,System.Boolean)
-M:GameKit.GKTurnBasedEventHandlerDelegate.HandleTurnEventForMatch(GameKit.GKTurnBasedMatch)
M:GameKit.GKTurnBasedEventListener_Extensions.DidRequestMatchWithOtherPlayers(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKPlayer[])
M:GameKit.GKTurnBasedEventListener_Extensions.DidRequestMatchWithPlayers(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,System.String[])
M:GameKit.GKTurnBasedEventListener_Extensions.MatchEnded(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedMatch)
@@ -42800,96 +31520,42 @@ M:GameKit.GKTurnBasedEventListener_Extensions.ReceivedExchangeReplies(GameKit.IG
M:GameKit.GKTurnBasedEventListener_Extensions.ReceivedExchangeRequest(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch)
M:GameKit.GKTurnBasedEventListener_Extensions.ReceivedTurnEvent(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedMatch,System.Boolean)
M:GameKit.GKTurnBasedEventListener_Extensions.WantsToQuitMatch(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedEventListener.DidRequestMatchWithOtherPlayers(GameKit.GKPlayer,GameKit.GKPlayer[])
-M:GameKit.GKTurnBasedEventListener.DidRequestMatchWithPlayers(GameKit.GKPlayer,System.String[])
-M:GameKit.GKTurnBasedEventListener.MatchEnded(GameKit.GKPlayer,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedEventListener.ReceivedExchangeCancellation(GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedEventListener.ReceivedExchangeReplies(GameKit.GKPlayer,GameKit.GKTurnBasedExchangeReply[],GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedEventListener.ReceivedExchangeRequest(GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedEventListener.ReceivedTurnEvent(GameKit.GKPlayer,GameKit.GKTurnBasedMatch,System.Boolean)
-M:GameKit.GKTurnBasedEventListener.WantsToQuitMatch(GameKit.GKPlayer,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedExchange.Cancel(System.String,Foundation.NSObject[],System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedExchange.CancelAsync(System.String,Foundation.NSObject[])
-M:GameKit.GKTurnBasedExchange.Reply(System.String,Foundation.NSObject[],Foundation.NSData,System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedExchange.ReplyAsync(System.String,Foundation.NSObject[],Foundation.NSData)
M:GameKit.GKTurnBasedExchange.ToString
M:GameKit.GKTurnBasedExchangeReply.ToString
-M:GameKit.GKTurnBasedMatch.AcceptInvite(System.Action{GameKit.GKTurnBasedMatch,Foundation.NSError})
M:GameKit.GKTurnBasedMatch.AcceptInviteAsync
-M:GameKit.GKTurnBasedMatch.DeclineInvite(System.Action{GameKit.GKTurnBasedMatch,Foundation.NSError})
M:GameKit.GKTurnBasedMatch.DeclineInviteAsync
-M:GameKit.GKTurnBasedMatch.EndMatchInTurn(Foundation.NSData,GameKit.GKLeaderboardScore[],Foundation.NSObject[],System.Action{Foundation.NSError})
-M:GameKit.GKTurnBasedMatch.EndMatchInTurn(Foundation.NSData,GameKit.GKScore[],GameKit.GKAchievement[],System.Action{Foundation.NSError})
-M:GameKit.GKTurnBasedMatch.EndMatchInTurn(Foundation.NSData,System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.EndMatchInTurnAsync(Foundation.NSData,GameKit.GKLeaderboardScore[],Foundation.NSObject[])
M:GameKit.GKTurnBasedMatch.EndMatchInTurnAsync(Foundation.NSData,GameKit.GKScore[],GameKit.GKAchievement[])
M:GameKit.GKTurnBasedMatch.EndMatchInTurnAsync(Foundation.NSData)
-M:GameKit.GKTurnBasedMatch.EndTurn(GameKit.GKTurnBasedParticipant[],System.Double,Foundation.NSData,System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.EndTurnAsync(GameKit.GKTurnBasedParticipant[],System.Double,Foundation.NSData)
-M:GameKit.GKTurnBasedMatch.EndTurnWithNextParticipant(GameKit.GKTurnBasedParticipant,Foundation.NSData,System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.EndTurnWithNextParticipantAsync(GameKit.GKTurnBasedParticipant,Foundation.NSData)
-M:GameKit.GKTurnBasedMatch.FindMatch(GameKit.GKMatchRequest,GameKit.GKTurnBasedMatchRequest)
M:GameKit.GKTurnBasedMatch.FindMatchAsync(GameKit.GKMatchRequest)
-M:GameKit.GKTurnBasedMatch.LoadMatch(System.String,System.Action{GameKit.GKTurnBasedMatch,Foundation.NSError})
M:GameKit.GKTurnBasedMatch.LoadMatchAsync(System.String)
-M:GameKit.GKTurnBasedMatch.LoadMatchData(GameKit.GKTurnBasedMatchData)
M:GameKit.GKTurnBasedMatch.LoadMatchDataAsync
-M:GameKit.GKTurnBasedMatch.LoadMatches(GameKit.GKTurnBasedMatchesRequest)
M:GameKit.GKTurnBasedMatch.LoadMatchesAsync
-M:GameKit.GKTurnBasedMatch.ParticipantQuitInTurn(GameKit.GKTurnBasedMatchOutcome,GameKit.GKTurnBasedParticipant,Foundation.NSData,System.Action{Foundation.NSError})
-M:GameKit.GKTurnBasedMatch.ParticipantQuitInTurn(GameKit.GKTurnBasedMatchOutcome,GameKit.GKTurnBasedParticipant[],System.Double,Foundation.NSData,System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.ParticipantQuitInTurnAsync(GameKit.GKTurnBasedMatchOutcome,GameKit.GKTurnBasedParticipant,Foundation.NSData)
M:GameKit.GKTurnBasedMatch.ParticipantQuitInTurnAsync(GameKit.GKTurnBasedMatchOutcome,GameKit.GKTurnBasedParticipant[],System.Double,Foundation.NSData)
-M:GameKit.GKTurnBasedMatch.ParticipantQuitOutOfTurn(GameKit.GKTurnBasedMatchOutcome,System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.ParticipantQuitOutOfTurnAsync(GameKit.GKTurnBasedMatchOutcome)
-M:GameKit.GKTurnBasedMatch.Rematch(System.Action{GameKit.GKTurnBasedMatch,Foundation.NSError})
M:GameKit.GKTurnBasedMatch.RematchAsync
-M:GameKit.GKTurnBasedMatch.Remove(System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.RemoveAsync
-M:GameKit.GKTurnBasedMatch.SaveCurrentTurn(Foundation.NSData,System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.SaveCurrentTurnAsync(Foundation.NSData)
-M:GameKit.GKTurnBasedMatch.SaveMergedMatchData(Foundation.NSData,GameKit.GKTurnBasedExchange[],System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.SaveMergedMatchDataAsync(Foundation.NSData,GameKit.GKTurnBasedExchange[])
-M:GameKit.GKTurnBasedMatch.SendExchange(GameKit.GKTurnBasedParticipant[],Foundation.NSData,System.String,Foundation.NSObject[],System.Double,System.Action{GameKit.GKTurnBasedExchange,Foundation.NSError})
M:GameKit.GKTurnBasedMatch.SendExchangeAsync(GameKit.GKTurnBasedParticipant[],Foundation.NSData,System.String,Foundation.NSObject[],System.Double)
-M:GameKit.GKTurnBasedMatch.SendReminder(GameKit.GKTurnBasedParticipant[],System.String,Foundation.NSObject[],System.Action{Foundation.NSError})
M:GameKit.GKTurnBasedMatch.SendReminderAsync(GameKit.GKTurnBasedParticipant[],System.String,Foundation.NSObject[])
-M:GameKit.GKTurnBasedMatch.SetMessage(System.String,Foundation.NSObject[])
-M:GameKit.GKTurnBasedMatchmakerViewController.#ctor(GameKit.GKMatchRequest)
M:GameKit.GKTurnBasedMatchmakerViewController.#ctor(System.String,Foundation.NSBundle)
M:GameKit.GKTurnBasedMatchmakerViewController.Dispose(System.Boolean)
M:GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance.#ctor(System.IntPtr)
M:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Extensions.FoundMatch(GameKit.IGKTurnBasedMatchmakerViewControllerDelegate,GameKit.GKTurnBasedMatchmakerViewController,GameKit.GKTurnBasedMatch)
M:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Extensions.PlayerQuitForMatch(GameKit.IGKTurnBasedMatchmakerViewControllerDelegate,GameKit.GKTurnBasedMatchmakerViewController,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedMatchmakerViewControllerDelegate.FailedWithError(GameKit.GKTurnBasedMatchmakerViewController,Foundation.NSError)
-M:GameKit.GKTurnBasedMatchmakerViewControllerDelegate.FoundMatch(GameKit.GKTurnBasedMatchmakerViewController,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedMatchmakerViewControllerDelegate.PlayerQuitForMatch(GameKit.GKTurnBasedMatchmakerViewController,GameKit.GKTurnBasedMatch)
-M:GameKit.GKTurnBasedMatchmakerViewControllerDelegate.WasCancelled(GameKit.GKTurnBasedMatchmakerViewController)
-M:GameKit.GKVoiceChat.IsVoIPAllowed
-M:GameKit.GKVoiceChat.SetMute(System.Boolean,System.String)
-M:GameKit.GKVoiceChat.SetMuteStatus(GameKit.GKPlayer,System.Boolean)
M:GameKit.GKVoiceChat.SetPlayerVoiceChatStateChangeHandler(System.Action{GameKit.GKPlayer,GameKit.GKVoiceChatPlayerState})
-M:GameKit.GKVoiceChat.Start
-M:GameKit.GKVoiceChat.Stop
M:GameKit.GKVoiceChatClient_Extensions.FailedToConnect(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String,Foundation.NSError)
M:GameKit.GKVoiceChatClient_Extensions.ReceivedInvitation(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String,System.IntPtr)
M:GameKit.GKVoiceChatClient_Extensions.SendRealTimeData(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,Foundation.NSData,System.String)
M:GameKit.GKVoiceChatClient_Extensions.Started(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String)
M:GameKit.GKVoiceChatClient_Extensions.Stopped(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String,Foundation.NSError)
-M:GameKit.GKVoiceChatClient.FailedToConnect(GameKit.GKVoiceChatService,System.String,Foundation.NSError)
-M:GameKit.GKVoiceChatClient.ParticipantID
-M:GameKit.GKVoiceChatClient.ReceivedInvitation(GameKit.GKVoiceChatService,System.String,System.IntPtr)
-M:GameKit.GKVoiceChatClient.SendData(GameKit.GKVoiceChatService,Foundation.NSData,System.String)
-M:GameKit.GKVoiceChatClient.SendRealTimeData(GameKit.GKVoiceChatService,Foundation.NSData,System.String)
-M:GameKit.GKVoiceChatClient.Started(GameKit.GKVoiceChatService,System.String)
-M:GameKit.GKVoiceChatClient.Stopped(GameKit.GKVoiceChatService,System.String,Foundation.NSError)
-M:GameKit.GKVoiceChatService.AcceptCall(System.IntPtr,Foundation.NSError@)
-M:GameKit.GKVoiceChatService.DenyCall(System.IntPtr)
M:GameKit.GKVoiceChatService.Dispose(System.Boolean)
-M:GameKit.GKVoiceChatService.ReceivedData(Foundation.NSData,System.String)
-M:GameKit.GKVoiceChatService.ReceivedRealTimeData(Foundation.NSData,System.String)
-M:GameKit.GKVoiceChatService.StartVoiceChat(System.String,Foundation.NSError@)
-M:GameKit.GKVoiceChatService.StopVoiceChat(System.String)
M:GameKit.IGKAchievementViewControllerDelegate.DidFinish(GameKit.GKAchievementViewController)
M:GameKit.IGKChallengeEventHandlerDelegate.LocalPlayerCompletedChallenge(GameKit.GKChallenge)
M:GameKit.IGKChallengeEventHandlerDelegate.LocalPlayerReceivedChallenge(GameKit.GKChallenge)
@@ -42964,313 +31630,66 @@ M:GameKit.IGKVoiceChatClient.Stopped(GameKit.GKVoiceChatService,System.String,Fo
M:GameplayKit.GKAgent.Dispose(System.Boolean)
M:GameplayKit.GKAgent.EncodeTo(Foundation.NSCoder)
M:GameplayKit.GKAgent2D.EncodeTo(Foundation.NSCoder)
-M:GameplayKit.GKAgent2D.Update(System.Double)
-M:GameplayKit.GKAgent3D.Update(System.Double)
M:GameplayKit.GKAgentDelegate_Extensions.AgentDidUpdate(GameplayKit.IGKAgentDelegate,GameplayKit.GKAgent)
M:GameplayKit.GKAgentDelegate_Extensions.AgentWillUpdate(GameplayKit.IGKAgentDelegate,GameplayKit.GKAgent)
-M:GameplayKit.GKAgentDelegate.AgentDidUpdate(GameplayKit.GKAgent)
-M:GameplayKit.GKAgentDelegate.AgentWillUpdate(GameplayKit.GKAgent)
-M:GameplayKit.GKARC4RandomSource.#ctor(Foundation.NSData)
-M:GameplayKit.GKARC4RandomSource.DropValues(System.UIntPtr)
M:GameplayKit.GKBehavior.Copy(Foundation.NSZone)
-M:GameplayKit.GKBehavior.FromGoal(GameplayKit.GKGoal,System.Single)
-M:GameplayKit.GKBehavior.FromGoals(Foundation.NSDictionary{GameplayKit.GKGoal,Foundation.NSNumber})
-M:GameplayKit.GKBehavior.FromGoals(GameplayKit.GKGoal[],Foundation.NSNumber[])
-M:GameplayKit.GKBehavior.FromGoals(GameplayKit.GKGoal[])
-M:GameplayKit.GKBehavior.GetWeight(GameplayKit.GKGoal)
-M:GameplayKit.GKBehavior.RemoveAllGoals
-M:GameplayKit.GKBehavior.RemoveGoal(GameplayKit.GKGoal)
-M:GameplayKit.GKBehavior.SetWeight(System.Single,GameplayKit.GKGoal)
-M:GameplayKit.GKBillowNoiseSource.#ctor(System.Double,System.IntPtr,System.Double,System.Double,System.Int32)
-M:GameplayKit.GKBillowNoiseSource.Create(System.Double,System.IntPtr,System.Double,System.Double,System.Int32)
-M:GameplayKit.GKCheckerboardNoiseSource.#ctor(System.Double)
-M:GameplayKit.GKCheckerboardNoiseSource.Create(System.Double)
-M:GameplayKit.GKCircleObstacle.#ctor(System.Single)
-M:GameplayKit.GKCircleObstacle.FromRadius(System.Single)
M:GameplayKit.GKComponent.Copy(Foundation.NSZone)
-M:GameplayKit.GKComponent.DidAddToEntity
M:GameplayKit.GKComponent.Dispose(System.Boolean)
M:GameplayKit.GKComponent.EncodeTo(Foundation.NSCoder)
-M:GameplayKit.GKComponent.Update(System.Double)
-M:GameplayKit.GKComponent.WillRemoveFromEntity
M:GameplayKit.GKComponentSystem`1.#ctor
-M:GameplayKit.GKComponentSystem`1.#ctor(ObjCRuntime.Class)
-M:GameplayKit.GKComponentSystem`1.AddComponent(`0)
-M:GameplayKit.GKComponentSystem`1.AddComponent(GameplayKit.GKEntity)
M:GameplayKit.GKComponentSystem`1.GetTypeForGenericArgument(System.UIntPtr)
-M:GameplayKit.GKComponentSystem`1.RemoveComponent(`0)
-M:GameplayKit.GKComponentSystem`1.RemoveComponent(GameplayKit.GKEntity)
-M:GameplayKit.GKComponentSystem`1.Update(System.Double)
-M:GameplayKit.GKCompositeBehavior.FromBehaviors(GameplayKit.GKBehavior[],Foundation.NSNumber[])
-M:GameplayKit.GKCompositeBehavior.FromBehaviors(GameplayKit.GKBehavior[])
-M:GameplayKit.GKCompositeBehavior.GetWeight(GameplayKit.GKBehavior)
-M:GameplayKit.GKCompositeBehavior.RemoveAllBehaviors
-M:GameplayKit.GKCompositeBehavior.RemoveBehavior(GameplayKit.GKBehavior)
-M:GameplayKit.GKCompositeBehavior.SetWeight(System.Single,GameplayKit.GKBehavior)
-M:GameplayKit.GKConstantNoiseSource.#ctor(System.Double)
-M:GameplayKit.GKConstantNoiseSource.Create(System.Double)
-M:GameplayKit.GKCylindersNoiseSource.#ctor(System.Double)
-M:GameplayKit.GKCylindersNoiseSource.Create(System.Double)
-M:GameplayKit.GKDecisionNode.CreateBranch(Foundation.NSNumber,Foundation.NSObject)
-M:GameplayKit.GKDecisionNode.CreateBranch(Foundation.NSPredicate,Foundation.NSObject)
-M:GameplayKit.GKDecisionNode.CreateBranch(System.IntPtr,Foundation.NSObject)
-M:GameplayKit.GKDecisionTree.#ctor(Foundation.NSArray{Foundation.NSObject}[],Foundation.NSObject[],Foundation.NSObject[])
-M:GameplayKit.GKDecisionTree.#ctor(Foundation.NSObject)
-M:GameplayKit.GKDecisionTree.#ctor(Foundation.NSUrl,Foundation.NSError)
M:GameplayKit.GKDecisionTree.EncodeTo(Foundation.NSCoder)
-M:GameplayKit.GKDecisionTree.Export(Foundation.NSUrl,Foundation.NSError)
-M:GameplayKit.GKDecisionTree.FindAction(Foundation.NSDictionary{Foundation.NSObject,Foundation.NSObject})
-M:GameplayKit.GKEntity.#ctor
-M:GameplayKit.GKEntity.AddComponent(GameplayKit.GKComponent)
M:GameplayKit.GKEntity.Copy(Foundation.NSZone)
M:GameplayKit.GKEntity.EncodeTo(Foundation.NSCoder)
-M:GameplayKit.GKEntity.GetComponent(ObjCRuntime.Class)
M:GameplayKit.GKEntity.GetComponent(System.Type)
-M:GameplayKit.GKEntity.GetEntity
-M:GameplayKit.GKEntity.RemoveComponent(ObjCRuntime.Class)
M:GameplayKit.GKEntity.RemoveComponent(System.Type)
-M:GameplayKit.GKEntity.Update(System.Double)
M:GameplayKit.GKGameModel_Extensions.GetScore(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelPlayer)
M:GameplayKit.GKGameModel_Extensions.IsLoss(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelPlayer)
M:GameplayKit.GKGameModel_Extensions.IsWin(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelPlayer)
M:GameplayKit.GKGameModel_Extensions.UnapplyGameModelUpdate(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelUpdate)
M:GameplayKit.GKGameModel.#ctor
-M:GameplayKit.GKGaussianDistribution.#ctor(GameplayKit.IGKRandom,System.IntPtr,System.IntPtr)
-M:GameplayKit.GKGaussianDistribution.#ctor(GameplayKit.IGKRandom,System.Single,System.Single)
M:GameplayKit.GKGoal.Copy(Foundation.NSZone)
-M:GameplayKit.GKGoal.GetGoalToAlign(GameplayKit.GKAgent[],System.Single,System.Single)
-M:GameplayKit.GKGoal.GetGoalToAvoidAgents(GameplayKit.GKAgent[],System.Double)
-M:GameplayKit.GKGoal.GetGoalToAvoidObstacles(GameplayKit.GKObstacle[],System.Double)
-M:GameplayKit.GKGoal.GetGoalToCohere(GameplayKit.GKAgent[],System.Single,System.Single)
-M:GameplayKit.GKGoal.GetGoalToFleeAgent(GameplayKit.GKAgent)
-M:GameplayKit.GKGoal.GetGoalToFollowPath(GameplayKit.GKPath,System.Double,System.Boolean)
-M:GameplayKit.GKGoal.GetGoalToInterceptAgent(GameplayKit.GKAgent,System.Double)
-M:GameplayKit.GKGoal.GetGoalToReachTargetSpeed(System.Single)
-M:GameplayKit.GKGoal.GetGoalToSeekAgent(GameplayKit.GKAgent)
-M:GameplayKit.GKGoal.GetGoalToSeparate(GameplayKit.GKAgent[],System.Single,System.Single)
-M:GameplayKit.GKGoal.GetGoalToStayOnPath(GameplayKit.GKPath,System.Double)
-M:GameplayKit.GKGoal.GetGoalToWander(System.Single)
-M:GameplayKit.GKGraph.#ctor(GameplayKit.GKGraphNode[])
-M:GameplayKit.GKGraph.AddNodes(GameplayKit.GKGraphNode[])
-M:GameplayKit.GKGraph.ConnectNodeToLowestCostNode(GameplayKit.GKGraphNode,System.Boolean)
M:GameplayKit.GKGraph.Copy(Foundation.NSZone)
M:GameplayKit.GKGraph.EncodeTo(Foundation.NSCoder)
-M:GameplayKit.GKGraph.FindPath(GameplayKit.GKGraphNode,GameplayKit.GKGraphNode)
-M:GameplayKit.GKGraph.FromNodes(GameplayKit.GKGraphNode[])
-M:GameplayKit.GKGraph.RemoveNodes(GameplayKit.GKGraphNode[])
-M:GameplayKit.GKGraphNode.AddConnections(GameplayKit.GKGraphNode[],System.Boolean)
M:GameplayKit.GKGraphNode.EncodeTo(Foundation.NSCoder)
-M:GameplayKit.GKGraphNode.FindPathFrom(GameplayKit.GKGraphNode)
-M:GameplayKit.GKGraphNode.FindPathTo(GameplayKit.GKGraphNode)
-M:GameplayKit.GKGraphNode.GetCost(GameplayKit.GKGraphNode)
-M:GameplayKit.GKGraphNode.GetEstimatedCost(GameplayKit.GKGraphNode)
-M:GameplayKit.GKGraphNode.RemoveConnections(GameplayKit.GKGraphNode[],System.Boolean)
-M:GameplayKit.GKGraphNode2D.#ctor(System.Numerics.Vector2)
-M:GameplayKit.GKGraphNode2D.FromPoint(System.Numerics.Vector2)
-M:GameplayKit.GKGraphNode3D.#ctor(System.Numerics.Vector3)
-M:GameplayKit.GKGraphNode3D.FromPoint(System.Numerics.Vector3)
-M:GameplayKit.GKGridGraph.#ctor(CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean,ObjCRuntime.Class)
M:GameplayKit.GKGridGraph.#ctor(CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean,System.Type)
-M:GameplayKit.GKGridGraph.#ctor(CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean)
-M:GameplayKit.GKGridGraph.ConnectNodeToAdjacentNodes(GameplayKit.GKGridGraphNode)
-M:GameplayKit.GKGridGraph.FromGridStartingAt(CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean,ObjCRuntime.Class)
M:GameplayKit.GKGridGraph.FromGridStartingAt(CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean,System.Type)
-M:GameplayKit.GKGridGraph.FromGridStartingAt(CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean)
M:GameplayKit.GKGridGraph.GetNodeAt``1(CoreGraphics.NVector2i)
M:GameplayKit.GKGridGraph.GetTypeForGenericArgument(System.UIntPtr)
-M:GameplayKit.GKGridGraphNode.#ctor(CoreGraphics.NVector2i)
-M:GameplayKit.GKGridGraphNode.FromGridPosition(CoreGraphics.NVector2i)
M:GameplayKit.GKHybridStrategist.#ctor
M:GameplayKit.GKHybridStrategist.GetBestMoveForActivePlayer
-M:GameplayKit.GKLinearCongruentialRandomSource.#ctor(System.UInt64)
-M:GameplayKit.GKMersenneTwisterRandomSource.#ctor(System.UInt64)
-M:GameplayKit.GKMeshGraph`1.#ctor(System.Single,System.Numerics.Vector2,System.Numerics.Vector2,ObjCRuntime.Class)
M:GameplayKit.GKMeshGraph`1.#ctor(System.Single,System.Numerics.Vector2,System.Numerics.Vector2,System.Type)
-M:GameplayKit.GKMeshGraph`1.#ctor(System.Single,System.Numerics.Vector2,System.Numerics.Vector2)
-M:GameplayKit.GKMeshGraph`1.AddObstacles(GameplayKit.GKPolygonObstacle[])
-M:GameplayKit.GKMeshGraph`1.ConnectNodeUsingObstacles(`0)
-M:GameplayKit.GKMeshGraph`1.FromBufferRadius(System.Single,System.Numerics.Vector2,System.Numerics.Vector2,ObjCRuntime.Class)
M:GameplayKit.GKMeshGraph`1.FromBufferRadius(System.Single,System.Numerics.Vector2,System.Numerics.Vector2,System.Type)
-M:GameplayKit.GKMeshGraph`1.FromBufferRadius(System.Single,System.Numerics.Vector2,System.Numerics.Vector2)
-M:GameplayKit.GKMeshGraph`1.GetTriangle(System.UIntPtr)
M:GameplayKit.GKMeshGraph`1.GetTypeForGenericArgument(System.UIntPtr)
-M:GameplayKit.GKMeshGraph`1.RemoveObstacles(GameplayKit.GKPolygonObstacle[])
-M:GameplayKit.GKMeshGraph`1.Triangulate
-M:GameplayKit.GKMinMaxStrategist.GetBestMove(GameplayKit.IGKGameModelPlayer)
-M:GameplayKit.GKMinMaxStrategist.GetBestMoveForActivePlayer
-M:GameplayKit.GKMinMaxStrategist.GetRandomMove(GameplayKit.IGKGameModelPlayer,System.IntPtr)
-M:GameplayKit.GKMonteCarloStrategist.GetBestMoveForActivePlayer
-M:GameplayKit.GKNoise.#ctor(GameplayKit.GKNoiseSource,Foundation.NSDictionary{Foundation.NSNumber,AppKit.NSColor})
-M:GameplayKit.GKNoise.#ctor(GameplayKit.GKNoiseSource,Foundation.NSDictionary{Foundation.NSNumber,UIKit.UIColor})
-M:GameplayKit.GKNoise.#ctor(GameplayKit.GKNoiseSource)
-M:GameplayKit.GKNoise.Add(GameplayKit.GKNoise)
-M:GameplayKit.GKNoise.ApplyAbsoluteValue
-M:GameplayKit.GKNoise.ApplyTurbulence(System.Double,System.Double,System.Int32,System.Int32)
-M:GameplayKit.GKNoise.Clamp(System.Double,System.Double)
-M:GameplayKit.GKNoise.Displace(GameplayKit.GKNoise,GameplayKit.GKNoise,GameplayKit.GKNoise)
-M:GameplayKit.GKNoise.FromComponentNoises(GameplayKit.GKNoise[],GameplayKit.GKNoise,Foundation.NSNumber[],Foundation.NSNumber[])
-M:GameplayKit.GKNoise.FromComponentNoises(GameplayKit.GKNoise[],GameplayKit.GKNoise)
-M:GameplayKit.GKNoise.FromNoiseSource(GameplayKit.GKNoiseSource,Foundation.NSDictionary{Foundation.NSNumber,AppKit.NSColor})
-M:GameplayKit.GKNoise.FromNoiseSource(GameplayKit.GKNoiseSource,Foundation.NSDictionary{Foundation.NSNumber,UIKit.UIColor})
-M:GameplayKit.GKNoise.FromNoiseSource(GameplayKit.GKNoiseSource)
-M:GameplayKit.GKNoise.GetMaximum(GameplayKit.GKNoise)
-M:GameplayKit.GKNoise.GetMinimum(GameplayKit.GKNoise)
-M:GameplayKit.GKNoise.GetValue(System.Numerics.Vector2)
-M:GameplayKit.GKNoise.Invert
-M:GameplayKit.GKNoise.Move(CoreGraphics.NVector3d)
-M:GameplayKit.GKNoise.Multiply(GameplayKit.GKNoise)
-M:GameplayKit.GKNoise.RaiseToPower(GameplayKit.GKNoise)
-M:GameplayKit.GKNoise.RaiseToPower(System.Double)
-M:GameplayKit.GKNoise.RemapValuesToCurve(Foundation.NSDictionary{Foundation.NSNumber,Foundation.NSNumber})
-M:GameplayKit.GKNoise.RemapValuesToTerraces(Foundation.NSNumber[],System.Boolean)
-M:GameplayKit.GKNoise.Rotate(CoreGraphics.NVector3d)
-M:GameplayKit.GKNoise.Scale(CoreGraphics.NVector3d)
-M:GameplayKit.GKNoiseMap.#ctor(GameplayKit.GKNoise,CoreGraphics.NVector2d,CoreGraphics.NVector2d,CoreGraphics.NVector2i,System.Boolean)
-M:GameplayKit.GKNoiseMap.#ctor(GameplayKit.GKNoise)
-M:GameplayKit.GKNoiseMap.FromNoise(GameplayKit.GKNoise,CoreGraphics.NVector2d,CoreGraphics.NVector2d,CoreGraphics.NVector2i,System.Boolean)
-M:GameplayKit.GKNoiseMap.FromNoise(GameplayKit.GKNoise)
-M:GameplayKit.GKNoiseMap.GetInterpolatedValue(System.Numerics.Vector2)
-M:GameplayKit.GKNoiseMap.GetValue(CoreGraphics.NVector2i)
-M:GameplayKit.GKNoiseMap.SetValue(System.Single,CoreGraphics.NVector2i)
-M:GameplayKit.GKNSPredicateRule.#ctor(Foundation.NSPredicate)
-M:GameplayKit.GKNSPredicateRule.EvaluatePredicate(GameplayKit.GKRuleSystem)
-M:GameplayKit.GKObstacleGraph.#ctor(GameplayKit.GKPolygonObstacle[],System.Single)
-M:GameplayKit.GKObstacleGraph.AddObstacles(GameplayKit.GKPolygonObstacle[])
-M:GameplayKit.GKObstacleGraph.ConnectNodeUsingObstacles(GameplayKit.GKGraphNode2D,GameplayKit.GKPolygonObstacle[])
-M:GameplayKit.GKObstacleGraph.ConnectNodeUsingObstacles(GameplayKit.GKGraphNode2D)
-M:GameplayKit.GKObstacleGraph.ConnectNodeUsingObstaclesIgnoringBufferRadius(GameplayKit.GKGraphNode2D,GameplayKit.GKPolygonObstacle[])
-M:GameplayKit.GKObstacleGraph.FromObstacles(GameplayKit.GKPolygonObstacle[],System.Single)
M:GameplayKit.GKObstacleGraph.GetNodes(GameplayKit.GKPolygonObstacle)
M:GameplayKit.GKObstacleGraph.GetTypeForGenericArgument(System.UIntPtr)
-M:GameplayKit.GKObstacleGraph.IsConnectionLocked(GameplayKit.GKGraphNode2D,GameplayKit.GKGraphNode2D)
-M:GameplayKit.GKObstacleGraph.LockConnection(GameplayKit.GKGraphNode2D,GameplayKit.GKGraphNode2D)
-M:GameplayKit.GKObstacleGraph.RemoveAllObstacles
-M:GameplayKit.GKObstacleGraph.RemoveObstacles(GameplayKit.GKPolygonObstacle[])
-M:GameplayKit.GKObstacleGraph.UnlockConnection(GameplayKit.GKGraphNode2D,GameplayKit.GKGraphNode2D)
M:GameplayKit.GKObstacleGraph`1.#ctor(Foundation.NSCoder)
M:GameplayKit.GKObstacleGraph`1.#ctor(GameplayKit.GKPolygonObstacle[],System.Single)
M:GameplayKit.GKObstacleGraph`1.FromObstacles(GameplayKit.GKPolygonObstacle[],System.Single)
M:GameplayKit.GKObstacleGraph`1.GetNodes(GameplayKit.GKPolygonObstacle)
-M:GameplayKit.GKOctree`1.#ctor(GameplayKit.GKBox,System.Single)
-M:GameplayKit.GKOctree`1.AddElement(`0,GameplayKit.GKBox)
-M:GameplayKit.GKOctree`1.AddElement(`0,System.Numerics.Vector3)
-M:GameplayKit.GKOctree`1.FromBoundingBox(GameplayKit.GKBox,System.Single)
-M:GameplayKit.GKOctree`1.GetElements(GameplayKit.GKBox)
-M:GameplayKit.GKOctree`1.GetElements(System.Numerics.Vector3)
-M:GameplayKit.GKOctree`1.RemoveElement(`0,GameplayKit.GKOctreeNode)
-M:GameplayKit.GKOctree`1.RemoveElement(`0)
-M:GameplayKit.GKPath.#ctor(GameplayKit.GKGraphNode[],System.Single)
M:GameplayKit.GKPath.#ctor(GameplayKit.GKGraphNode2D[],System.Single)
M:GameplayKit.GKPath.#ctor(System.Numerics.Vector2[],System.Single,System.Boolean)
M:GameplayKit.GKPath.#ctor(System.Numerics.Vector3[],System.Single,System.Boolean)
-M:GameplayKit.GKPath.FromGraphNodes(GameplayKit.GKGraphNode[],System.Single)
M:GameplayKit.GKPath.FromGraphNodes(GameplayKit.GKGraphNode2D[],System.Single)
M:GameplayKit.GKPath.FromPoints(System.Numerics.Vector2[],System.Single,System.Boolean)
M:GameplayKit.GKPath.FromPoints(System.Numerics.Vector3[],System.Single,System.Boolean)
-M:GameplayKit.GKPath.GetPoint(System.UIntPtr)
-M:GameplayKit.GKPath.GetVector2Point(System.UIntPtr)
-M:GameplayKit.GKPath.GetVector3Point(System.UIntPtr)
-M:GameplayKit.GKPerlinNoiseSource.#ctor(System.Double,System.IntPtr,System.Double,System.Double,System.Int32)
-M:GameplayKit.GKPerlinNoiseSource.Create(System.Double,System.IntPtr,System.Double,System.Double,System.Int32)
M:GameplayKit.GKPolygonObstacle.#ctor(System.Numerics.Vector2[])
M:GameplayKit.GKPolygonObstacle.EncodeTo(Foundation.NSCoder)
M:GameplayKit.GKPolygonObstacle.FromPoints(System.Numerics.Vector2[])
-M:GameplayKit.GKPolygonObstacle.GetVertex(System.UIntPtr)
-M:GameplayKit.GKQuadTree.#ctor(GameplayKit.GKQuad,System.Single)
-M:GameplayKit.GKQuadTree.AddElement(Foundation.NSObject,GameplayKit.GKQuad)
-M:GameplayKit.GKQuadTree.AddElement(Foundation.NSObject,System.Numerics.Vector2)
-M:GameplayKit.GKQuadTree.FromBoundingQuad(GameplayKit.GKQuad,System.Single)
-M:GameplayKit.GKQuadTree.GetElements(GameplayKit.GKQuad)
-M:GameplayKit.GKQuadTree.GetElements(System.Numerics.Vector2)
-M:GameplayKit.GKQuadTree.RemoveElement(Foundation.NSObject,GameplayKit.GKQuadTreeNode)
-M:GameplayKit.GKQuadTree.RemoveElement(Foundation.NSObject)
-M:GameplayKit.GKRandomDistribution.#ctor(GameplayKit.IGKRandom,System.IntPtr,System.IntPtr)
-M:GameplayKit.GKRandomDistribution.GetD20
-M:GameplayKit.GKRandomDistribution.GetD6
-M:GameplayKit.GKRandomDistribution.GetDie(System.IntPtr)
-M:GameplayKit.GKRandomDistribution.GetDistributionBetween(System.IntPtr,System.IntPtr)
-M:GameplayKit.GKRandomDistribution.GetNextBool
-M:GameplayKit.GKRandomDistribution.GetNextInt
-M:GameplayKit.GKRandomDistribution.GetNextInt(System.UIntPtr)
-M:GameplayKit.GKRandomDistribution.GetNextUniform
-M:GameplayKit.GKRandomSource.#ctor
M:GameplayKit.GKRandomSource.Copy(Foundation.NSZone)
M:GameplayKit.GKRandomSource.EncodeTo(Foundation.NSCoder)
-M:GameplayKit.GKRandomSource.GetNextBool
-M:GameplayKit.GKRandomSource.GetNextInt
-M:GameplayKit.GKRandomSource.GetNextInt(System.UIntPtr)
-M:GameplayKit.GKRandomSource.GetNextUniform
-M:GameplayKit.GKRandomSource.ShuffleObjects(Foundation.NSObject[])
-M:GameplayKit.GKRidgedNoiseSource.#ctor(System.Double,System.IntPtr,System.Double,System.Int32)
-M:GameplayKit.GKRidgedNoiseSource.Create(System.Double,System.IntPtr,System.Double,System.Int32)
-M:GameplayKit.GKRTree`1.#ctor(System.UIntPtr)
-M:GameplayKit.GKRTree`1.AddElement(`0,System.Numerics.Vector2,System.Numerics.Vector2,GameplayKit.GKRTreeSplitStrategy)
-M:GameplayKit.GKRTree`1.FromMaxNumberOfChildren(System.UIntPtr)
-M:GameplayKit.GKRTree`1.GetElements(System.Numerics.Vector2,System.Numerics.Vector2)
-M:GameplayKit.GKRTree`1.RemoveElement(`0,System.Numerics.Vector2,System.Numerics.Vector2)
-M:GameplayKit.GKRule.EvaluatePredicate(GameplayKit.GKRuleSystem)
-M:GameplayKit.GKRule.FromPredicate(System.Func{GameplayKit.GKRuleSystem,System.Boolean},System.Action{GameplayKit.GKRuleSystem})
-M:GameplayKit.GKRule.FromPredicateAssertingFact(Foundation.NSPredicate,Foundation.NSObject,System.Single)
-M:GameplayKit.GKRule.FromPredicateRetractingFact(Foundation.NSPredicate,Foundation.NSObject,System.Single)
-M:GameplayKit.GKRule.PerformAction(GameplayKit.GKRuleSystem)
-M:GameplayKit.GKRuleSystem.#ctor
-M:GameplayKit.GKRuleSystem.AddRule(GameplayKit.GKRule)
-M:GameplayKit.GKRuleSystem.AddRules(GameplayKit.GKRule[])
-M:GameplayKit.GKRuleSystem.AssertFact(Foundation.NSObject,System.Single)
-M:GameplayKit.GKRuleSystem.AssertFact(Foundation.NSObject)
-M:GameplayKit.GKRuleSystem.Evaluate
-M:GameplayKit.GKRuleSystem.GetGrade(Foundation.NSObject)
-M:GameplayKit.GKRuleSystem.GetMaximumGrade(Foundation.NSObject[])
-M:GameplayKit.GKRuleSystem.GetMinimumGrade(Foundation.NSObject[])
-M:GameplayKit.GKRuleSystem.RemoveAllRules
-M:GameplayKit.GKRuleSystem.Reset
-M:GameplayKit.GKRuleSystem.RetractFact(Foundation.NSObject,System.Single)
-M:GameplayKit.GKRuleSystem.RetractFact(Foundation.NSObject)
-M:GameplayKit.GKScene.AddEntity(GameplayKit.GKEntity)
-M:GameplayKit.GKScene.AddGraph(GameplayKit.GKGraph,System.String)
M:GameplayKit.GKScene.Copy(Foundation.NSZone)
M:GameplayKit.GKScene.Dispose(System.Boolean)
M:GameplayKit.GKScene.EncodeTo(Foundation.NSCoder)
-M:GameplayKit.GKScene.FromFile(System.String,GameplayKit.IGKSceneRootNodeType)
-M:GameplayKit.GKScene.FromFile(System.String)
-M:GameplayKit.GKScene.RemoveEntity(GameplayKit.GKEntity)
-M:GameplayKit.GKScene.RemoveGraph(System.String)
-M:GameplayKit.GKSCNNodeComponent.#ctor(SceneKit.SCNNode)
-M:GameplayKit.GKSCNNodeComponent.AgentDidUpdate(GameplayKit.GKAgent)
-M:GameplayKit.GKSCNNodeComponent.AgentWillUpdate(GameplayKit.GKAgent)
-M:GameplayKit.GKSCNNodeComponent.FromNode(SceneKit.SCNNode)
-M:GameplayKit.GKShuffledDistribution.#ctor(GameplayKit.IGKRandom,System.IntPtr,System.IntPtr)
-M:GameplayKit.GKSKNodeComponent.#ctor(SpriteKit.SKNode)
-M:GameplayKit.GKSKNodeComponent.AgentDidUpdate(GameplayKit.GKAgent)
-M:GameplayKit.GKSKNodeComponent.AgentWillUpdate(GameplayKit.GKAgent)
-M:GameplayKit.GKSKNodeComponent.FromNode(SpriteKit.SKNode)
-M:GameplayKit.GKSphereObstacle.#ctor(System.Single)
-M:GameplayKit.GKSphereObstacle.FromRadius(System.Single)
-M:GameplayKit.GKSpheresNoiseSource.#ctor(System.Double)
-M:GameplayKit.GKSpheresNoiseSource.Create(System.Double)
-M:GameplayKit.GKState.#ctor
-M:GameplayKit.GKState.DidEnter(GameplayKit.GKState)
M:GameplayKit.GKState.Dispose(System.Boolean)
-M:GameplayKit.GKState.GetState
M:GameplayKit.GKState.IsValidNextState(GameplayKit.GKState)
-M:GameplayKit.GKState.IsValidNextState(ObjCRuntime.Class)
M:GameplayKit.GKState.IsValidNextState(System.Type)
-M:GameplayKit.GKState.Update(System.Double)
-M:GameplayKit.GKState.WillExit(GameplayKit.GKState)
-M:GameplayKit.GKStateMachine.#ctor(GameplayKit.GKState[])
M:GameplayKit.GKStateMachine.CanEnterState(GameplayKit.GKState)
-M:GameplayKit.GKStateMachine.CanEnterState(ObjCRuntime.Class)
M:GameplayKit.GKStateMachine.CanEnterState(System.Type)
M:GameplayKit.GKStateMachine.EnterState(GameplayKit.GKState)
-M:GameplayKit.GKStateMachine.EnterState(ObjCRuntime.Class)
M:GameplayKit.GKStateMachine.EnterState(System.Type)
-M:GameplayKit.GKStateMachine.FromStates(GameplayKit.GKState[])
M:GameplayKit.GKStateMachine.GetState(GameplayKit.GKState)
-M:GameplayKit.GKStateMachine.GetState(ObjCRuntime.Class)
M:GameplayKit.GKStateMachine.GetState(System.Type)
-M:GameplayKit.GKStateMachine.Update(System.Double)
-M:GameplayKit.GKVoronoiNoiseSource.#ctor(System.Double,System.Double,System.Boolean,System.Int32)
-M:GameplayKit.GKVoronoiNoiseSource.Create(System.Double,System.Double,System.Boolean,System.Int32)
M:GameplayKit.IGKAgentDelegate.AgentDidUpdate(GameplayKit.GKAgent)
M:GameplayKit.IGKAgentDelegate.AgentWillUpdate(GameplayKit.GKAgent)
M:GameplayKit.IGKGameModel.ApplyGameModelUpdate(GameplayKit.IGKGameModelUpdate)
@@ -43293,8 +31712,6 @@ M:GameplayKit.SCNNode_GameplayKit.GetEntity(SceneKit.SCNNode)
M:GameplayKit.SCNNode_GameplayKit.SetEntity(SceneKit.SCNNode,GameplayKit.GKEntity)
M:GameplayKit.SKNode_GameplayKit.GetEntity(SpriteKit.SKNode)
M:GameplayKit.SKNode_GameplayKit.SetEntity(SpriteKit.SKNode,GameplayKit.GKEntity)
-M:GLKit.GLKBaseEffect.PrepareToDraw
-M:GLKit.GLKMesh.#ctor(ModelIO.MDLMesh,Foundation.NSError@)
M:GLKit.GLKMesh.FromAsset(ModelIO.MDLAsset,ModelIO.MDLMesh[]@,Foundation.NSError@)
M:GLKit.GLKMeshBuffer.Copy(Foundation.NSZone)
M:GLKit.GLKMeshBuffer.FillData(Foundation.NSData,System.UIntPtr)
@@ -43304,76 +31721,47 @@ 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.PrepareToDraw
-M:GLKit.GLKReflectionMapEffect.PrepareToDraw
-M:GLKit.GLKSkyboxEffect.Draw
-M:GLKit.GLKSkyboxEffect.PrepareToDraw
M:GLKit.GLKSubmesh.Dispose(System.Boolean)
M:GLKit.GLKTextureInfo.Copy(Foundation.NSZone)
-M:GLKit.GLKTextureLoader.#ctor(AppKit.NSOpenGLContext)
-M:GLKit.GLKTextureLoader.#ctor(OpenGLES.EAGLSharegroup)
-M:GLKit.GLKTextureLoader.BeginLoadCubeMap(Foundation.NSUrl,Foundation.NSDictionary,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
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)
-M:GLKit.GLKTextureLoader.BeginLoadCubeMap(System.String,Foundation.NSDictionary,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginLoadCubeMap(System.String,GLKit.GLKTextureOperations,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginLoadCubeMap(System.String[],Foundation.NSDictionary,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginLoadCubeMap(System.String[],GLKit.GLKTextureOperations,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginLoadCubeMapAsync(Foundation.NSUrl,Foundation.NSDictionary,CoreFoundation.DispatchQueue)
M:GLKit.GLKTextureLoader.BeginLoadCubeMapAsync(System.String,Foundation.NSDictionary,CoreFoundation.DispatchQueue)
-M:GLKit.GLKTextureLoader.BeginTextureLoad(CoreGraphics.CGImage,Foundation.NSDictionary,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginTextureLoad(CoreGraphics.CGImage,GLKit.GLKTextureOperations,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
-M:GLKit.GLKTextureLoader.BeginTextureLoad(Foundation.NSData,Foundation.NSDictionary,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginTextureLoad(Foundation.NSData,GLKit.GLKTextureOperations,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
-M:GLKit.GLKTextureLoader.BeginTextureLoad(Foundation.NSUrl,Foundation.NSDictionary,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginTextureLoad(Foundation.NSUrl,GLKit.GLKTextureOperations,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
-M:GLKit.GLKTextureLoader.BeginTextureLoad(System.String,Foundation.NSDictionary,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginTextureLoad(System.String,GLKit.GLKTextureOperations,CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
-M:GLKit.GLKTextureLoader.BeginTextureLoad(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary{Foundation.NSString,Foundation.NSNumber},CoreFoundation.DispatchQueue,GLKit.GLKTextureLoaderCallback)
M:GLKit.GLKTextureLoader.BeginTextureLoadAsync(CoreGraphics.CGImage,Foundation.NSDictionary,CoreFoundation.DispatchQueue)
M:GLKit.GLKTextureLoader.BeginTextureLoadAsync(Foundation.NSData,Foundation.NSDictionary,CoreFoundation.DispatchQueue)
M:GLKit.GLKTextureLoader.BeginTextureLoadAsync(Foundation.NSUrl,Foundation.NSDictionary,CoreFoundation.DispatchQueue)
M:GLKit.GLKTextureLoader.BeginTextureLoadAsync(System.String,Foundation.NSDictionary,CoreFoundation.DispatchQueue)
M:GLKit.GLKTextureLoader.BeginTextureLoadAsync(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary{Foundation.NSString,Foundation.NSNumber},CoreFoundation.DispatchQueue)
-M:GLKit.GLKTextureLoader.CubeMapFromFile(System.String,Foundation.NSDictionary,Foundation.NSError@)
M:GLKit.GLKTextureLoader.CubeMapFromFile(System.String,GLKit.GLKTextureOperations,Foundation.NSError@)
M:GLKit.GLKTextureLoader.CubeMapFromFiles(System.String[],Foundation.NSDictionary,Foundation.NSError@)
M:GLKit.GLKTextureLoader.CubeMapFromFiles(System.String[],GLKit.GLKTextureOperations,Foundation.NSError@)
-M:GLKit.GLKTextureLoader.CubeMapFromUrl(Foundation.NSUrl,Foundation.NSDictionary,Foundation.NSError@)
M:GLKit.GLKTextureLoader.CubeMapFromUrl(Foundation.NSUrl,GLKit.GLKTextureOperations,Foundation.NSError@)
M:GLKit.GLKTextureLoader.CubeMapFromUrls(Foundation.NSUrl[],Foundation.NSDictionary,Foundation.NSError@)
M:GLKit.GLKTextureLoader.CubeMapFromUrls(Foundation.NSUrl[],GLKit.GLKTextureOperations,Foundation.NSError@)
-M:GLKit.GLKTextureLoader.FromData(Foundation.NSData,Foundation.NSDictionary,Foundation.NSError@)
M:GLKit.GLKTextureLoader.FromData(Foundation.NSData,GLKit.GLKTextureOperations,Foundation.NSError@)
-M:GLKit.GLKTextureLoader.FromFile(System.String,Foundation.NSDictionary,Foundation.NSError@)
M:GLKit.GLKTextureLoader.FromFile(System.String,GLKit.GLKTextureOperations,Foundation.NSError@)
-M:GLKit.GLKTextureLoader.FromImage(CoreGraphics.CGImage,Foundation.NSDictionary,Foundation.NSError@)
M:GLKit.GLKTextureLoader.FromImage(CoreGraphics.CGImage,GLKit.GLKTextureOperations,Foundation.NSError@)
-M:GLKit.GLKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary{Foundation.NSString,Foundation.NSNumber},Foundation.NSError@)
-M:GLKit.GLKTextureLoader.FromUrl(Foundation.NSUrl,Foundation.NSDictionary,Foundation.NSError@)
M:GLKit.GLKTextureLoader.FromUrl(Foundation.NSUrl,GLKit.GLKTextureOperations,Foundation.NSError@)
M:GLKit.GLKTextureOperations.#ctor
M:GLKit.GLKTextureOperations.#ctor(Foundation.NSDictionary)
M:GLKit.GLKVertexAttributeParameters.FromVertexFormat(ModelIO.MDLVertexFormat)
-M:GLKit.GLKView.#ctor(CoreGraphics.CGRect,OpenGLES.EAGLContext)
M:GLKit.GLKView.#ctor(CoreGraphics.CGRect)
M:GLKit.GLKView.add_DrawInRect(System.EventHandler{GLKit.GLKViewDrawEventArgs})
-M:GLKit.GLKView.BindDrawable
-M:GLKit.GLKView.DeleteDrawable
-M:GLKit.GLKView.Display
M:GLKit.GLKView.Dispose(System.Boolean)
M:GLKit.GLKView.GLKViewAppearance.#ctor(System.IntPtr)
M:GLKit.GLKView.remove_DrawInRect(System.EventHandler{GLKit.GLKViewDrawEventArgs})
-M:GLKit.GLKView.Snapshot
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.Update
M:GLKit.GLKViewControllerDelegate_Extensions.WillPause(GLKit.IGLKViewControllerDelegate,GLKit.GLKViewController,System.Boolean)
-M:GLKit.GLKViewControllerDelegate.Update(GLKit.GLKViewController)
-M:GLKit.GLKViewControllerDelegate.WillPause(GLKit.GLKViewController,System.Boolean)
-M:GLKit.GLKViewDelegate.DrawInRect(GLKit.GLKView,CoreGraphics.CGRect)
M:GLKit.GLKViewDrawEventArgs.#ctor(CoreGraphics.CGRect)
M:GLKit.IGLKNamedEffect.PrepareToDraw
M:GLKit.IGLKViewControllerDelegate.Update(GLKit.GLKViewController)
@@ -43382,420 +31770,169 @@ M:GLKit.IGLKViewDelegate.DrawInRect(GLKit.GLKView,CoreGraphics.CGRect)
M:HealthKit.HKActivityMoveModeObject.Copy(Foundation.NSZone)
M:HealthKit.HKActivityMoveModeObject.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKActivitySummary.Copy(Foundation.NSZone)
-M:HealthKit.HKActivitySummary.DateComponentsForCalendar(Foundation.NSCalendar)
M:HealthKit.HKActivitySummary.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKActivitySummaryQuery.#ctor(Foundation.NSPredicate,System.Action{HealthKit.HKActivitySummaryQuery,HealthKit.HKActivitySummary[],Foundation.NSError})
-M:HealthKit.HKAnchoredObjectQuery.#ctor(HealthKit.HKQueryDescriptor[],HealthKit.HKQueryAnchor,System.IntPtr,HealthKit.HKAnchoredObjectUpdateHandler)
-M:HealthKit.HKAnchoredObjectQuery.#ctor(HealthKit.HKSampleType,Foundation.NSPredicate,HealthKit.HKQueryAnchor,System.UIntPtr,HealthKit.HKAnchoredObjectUpdateHandler)
-M:HealthKit.HKAnchoredObjectQuery.#ctor(HealthKit.HKSampleType,Foundation.NSPredicate,System.UIntPtr,System.UIntPtr,HealthKit.HKAnchoredObjectResultHandler)
M:HealthKit.HKAppleWalkingSteadiness.GetMaximumQuantity(HealthKit.HKAppleWalkingSteadinessClassification)
M:HealthKit.HKAppleWalkingSteadiness.GetMinimumQuantity(HealthKit.HKAppleWalkingSteadinessClassification)
M:HealthKit.HKAppleWalkingSteadiness.TryGetClassification(HealthKit.HKQuantity,System.Nullable`1@,Foundation.NSError@)
M:HealthKit.HKAttachment.Copy(Foundation.NSZone)
M:HealthKit.HKAttachment.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKAttachmentStore.#ctor(HealthKit.HKHealthStore)
-M:HealthKit.HKAttachmentStore.AddAttachment(HealthKit.HKObject,System.String,UniformTypeIdentifiers.UTType,Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Action{HealthKit.HKAttachment,Foundation.NSError})
M:HealthKit.HKAttachmentStore.AddAttachmentAsync(HealthKit.HKObject,System.String,UniformTypeIdentifiers.UTType,Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:HealthKit.HKAttachmentStore.GetAttachments(HealthKit.HKObject,HealthKit.HKAttachmentStoreGetAttachmentCompletionHandler)
M:HealthKit.HKAttachmentStore.GetAttachmentsAsync(HealthKit.HKObject)
-M:HealthKit.HKAttachmentStore.GetData(HealthKit.HKAttachment,System.Action{Foundation.NSData,Foundation.NSError})
M:HealthKit.HKAttachmentStore.GetDataAsync(HealthKit.HKAttachment,Foundation.NSProgress@)
M:HealthKit.HKAttachmentStore.GetDataAsync(HealthKit.HKAttachment)
-M:HealthKit.HKAttachmentStore.RemoveAttachment(HealthKit.HKAttachment,HealthKit.HKObject,HealthKit.HKAttachmentStoreCompletionHandler)
M:HealthKit.HKAttachmentStore.RemoveAttachmentAsync(HealthKit.HKAttachment,HealthKit.HKObject)
-M:HealthKit.HKAttachmentStore.StreamData(HealthKit.HKAttachment,HealthKit.HKAttachmentStoreDataHandler)
-M:HealthKit.HKAudiogramSample.GetAudiogramSample(HealthKit.HKAudiogramSensitivityPoint[],Foundation.NSDate,Foundation.NSDate,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:HealthKit.HKAudiogramSample.GetAudiogramSample(HealthKit.HKAudiogramSensitivityPoint[],Foundation.NSDate,Foundation.NSDate,HealthKit.HKDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKAudiogramSensitivityPoint.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKAudiogramSensitivityPoint.GetSensitivityPoint(HealthKit.HKQuantity,HealthKit.HKAudiogramSensitivityTest[],Foundation.NSError@)
-M:HealthKit.HKAudiogramSensitivityPoint.GetSensitivityPoint(HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,Foundation.NSError@)
M:HealthKit.HKAudiogramSensitivityPointClampingRange.Copy(Foundation.NSZone)
-M:HealthKit.HKAudiogramSensitivityPointClampingRange.Create(System.Nullable{System.Double},System.Nullable{System.Double},Foundation.NSError@)
M:HealthKit.HKAudiogramSensitivityPointClampingRange.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKAudiogramSensitivityTest.#ctor(HealthKit.HKQuantity,HealthKit.HKAudiogramConductionType,System.Boolean,HealthKit.HKAudiogramSensitivityTestSide,HealthKit.HKAudiogramSensitivityPointClampingRange,Foundation.NSError@)
M:HealthKit.HKAudiogramSensitivityTest.Copy(Foundation.NSZone)
M:HealthKit.HKAudiogramSensitivityTest.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKBiologicalSexObject.Copy(Foundation.NSZone)
M:HealthKit.HKBiologicalSexObject.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKBloodTypeObject.Copy(Foundation.NSZone)
M:HealthKit.HKBloodTypeObject.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKCategorySample.FromType(HealthKit.HKCategoryType,System.IntPtr,Foundation.NSDate,Foundation.NSDate,HealthKit.HKDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKCategorySample.FromType(HealthKit.HKCategoryType,System.IntPtr,Foundation.NSDate,Foundation.NSDate,HealthKit.HKMetadata)
-M:HealthKit.HKCategorySample.FromType(HealthKit.HKCategoryType,System.IntPtr,Foundation.NSDate,Foundation.NSDate)
M:HealthKit.HKCategoryType.Create(HealthKit.HKCategoryTypeIdentifier)
M:HealthKit.HKCategoryValueSleepAnalysisAsleep.#ctor
M:HealthKit.HKCategoryValueSleepAnalysisAsleep.GetAsleepValues
-M:HealthKit.HKCdaDocumentSample.Create(Foundation.NSData,Foundation.NSDate,Foundation.NSDate,Foundation.NSDictionary,Foundation.NSError@)
M:HealthKit.HKCdaDocumentSample.Create(Foundation.NSData,Foundation.NSDate,Foundation.NSDate,HealthKit.HKMetadata,Foundation.NSError@)
M:HealthKit.HKCharacteristicType.Create(HealthKit.HKCharacteristicTypeIdentifier)
M:HealthKit.HKClinicalRecord.Copy(Foundation.NSZone)
M:HealthKit.HKClinicalRecord.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKContactsLensSpecification.#ctor(HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity)
M:HealthKit.HKContactsLensSpecification.Copy(Foundation.NSZone)
M:HealthKit.HKContactsLensSpecification.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKContactsPrescription.Copy(Foundation.NSZone)
M:HealthKit.HKContactsPrescription.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKContactsPrescription.GetPrescription(HealthKit.HKContactsLensSpecification,HealthKit.HKContactsLensSpecification,System.String,Foundation.NSDate,Foundation.NSDate,HealthKit.HKDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKCorrelation.Create(HealthKit.HKCorrelationType,Foundation.NSDate,Foundation.NSDate,Foundation.NSSet,HealthKit.HKMetadata)
-M:HealthKit.HKCorrelation.Create(HealthKit.HKCorrelationType,Foundation.NSDate,Foundation.NSDate,Foundation.NSSet)
-M:HealthKit.HKCorrelation.Create(HealthKit.HKCorrelationType,Foundation.NSDate,Foundation.NSDate,Foundation.NSSet{HealthKit.HKSample},HealthKit.HKDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKCorrelation.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKCorrelation.GetObjects(HealthKit.HKObjectType)
-M:HealthKit.HKCorrelationQuery.#ctor(HealthKit.HKCorrelationType,Foundation.NSPredicate,Foundation.NSDictionary,HealthKit.HKCorrelationQueryResultHandler)
M:HealthKit.HKCorrelationType.Create(HealthKit.HKCorrelationTypeIdentifier)
M:HealthKit.HKDeletedObject.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKDetailedCdaErrors.#ctor
M:HealthKit.HKDetailedCdaErrors.#ctor(Foundation.NSDictionary)
-M:HealthKit.HKDevice.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)
M:HealthKit.HKDevice.Copy(Foundation.NSZone)
M:HealthKit.HKDevice.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKDocumentQuery.#ctor(HealthKit.HKDocumentType,Foundation.NSPredicate,System.UIntPtr,Foundation.NSSortDescriptor[],System.Boolean,System.Action{HealthKit.HKDocumentQuery,HealthKit.HKDocumentSample[],System.Boolean,Foundation.NSError})
M:HealthKit.HKDocumentType.Create(HealthKit.HKDocumentTypeIdentifier)
-M:HealthKit.HKElectrocardiogramQuery.#ctor(HealthKit.HKElectrocardiogram,HealthKit.HKElectrocardiogramQueryDataHandler)
M:HealthKit.HKElectrocardiogramVoltageMeasurement.Copy(Foundation.NSZone)
-M:HealthKit.HKElectrocardiogramVoltageMeasurement.GetQuantity(HealthKit.HKElectrocardiogramLead)
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.HKFhirVersion.GetVersion(System.String,Foundation.NSError@)
M:HealthKit.HKFitzpatrickSkinTypeObject.Copy(Foundation.NSZone)
M:HealthKit.HKFitzpatrickSkinTypeObject.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKGad7Assessment.Create(Foundation.NSDate,HealthKit.HKGad7AssessmentAnswer[],Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:HealthKit.HKGad7Assessment.Create(Foundation.NSDate,HealthKit.HKGad7AssessmentAnswer[])
-M:HealthKit.HKGlassesLensSpecification.#ctor(HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKVisionPrism,HealthKit.HKQuantity,HealthKit.HKQuantity)
M:HealthKit.HKGlassesLensSpecification.Copy(Foundation.NSZone)
M:HealthKit.HKGlassesLensSpecification.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKGlassesPrescription.Copy(Foundation.NSZone)
M:HealthKit.HKGlassesPrescription.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKGlassesPrescription.GetPrescription(HealthKit.HKGlassesLensSpecification,HealthKit.HKGlassesLensSpecification,Foundation.NSDate,Foundation.NSDate,HealthKit.HKDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKHealthStore_HKWorkoutRelationship.RelateWorkoutEffortSample(HealthKit.HKHealthStore,HealthKit.HKSample,HealthKit.HKWorkout,HealthKit.HKWorkoutActivity,HealthKit.HKWorkoutRelationshipCallback)
M:HealthKit.HKHealthStore_HKWorkoutRelationship.UnrelateWorkoutEffortSample(HealthKit.HKHealthStore,HealthKit.HKSample,HealthKit.HKWorkout,HealthKit.HKWorkoutActivity,HealthKit.HKWorkoutRelationshipCallback)
-M:HealthKit.HKHealthStore.AddSamples(HealthKit.HKSample[],HealthKit.HKWorkout,HealthKit.HKStoreSampleAddedCallback)
-M:HealthKit.HKHealthStore.DeleteObject(HealthKit.HKObject,System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.DeleteObjectAsync(HealthKit.HKObject)
-M:HealthKit.HKHealthStore.DeleteObjects(HealthKit.HKObject[],System.Action{System.Boolean,Foundation.NSError})
-M:HealthKit.HKHealthStore.DeleteObjects(HealthKit.HKObjectType,Foundation.NSPredicate,System.Action{System.Boolean,System.UIntPtr,Foundation.NSError})
M:HealthKit.HKHealthStore.DeleteObjectsAsync(HealthKit.HKObject[])
-M:HealthKit.HKHealthStore.DisableAllBackgroundDelivery(System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.DisableAllBackgroundDeliveryAsync
-M:HealthKit.HKHealthStore.DisableBackgroundDelivery(HealthKit.HKObjectType,System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.DisableBackgroundDeliveryAsync(HealthKit.HKObjectType)
-M:HealthKit.HKHealthStore.EnableBackgroundDelivery(HealthKit.HKObjectType,HealthKit.HKUpdateFrequency,System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.EnableBackgroundDeliveryAsync(HealthKit.HKObjectType,HealthKit.HKUpdateFrequency)
-M:HealthKit.HKHealthStore.EndWorkoutSession(HealthKit.HKWorkoutSession)
-M:HealthKit.HKHealthStore.ExecuteQuery(HealthKit.HKQuery)
-M:HealthKit.HKHealthStore.GetActivityMoveMode(Foundation.NSError@)
-M:HealthKit.HKHealthStore.GetAuthorizationStatus(HealthKit.HKObjectType)
-M:HealthKit.HKHealthStore.GetBiologicalSex(Foundation.NSError@)
-M:HealthKit.HKHealthStore.GetBloodType(Foundation.NSError@)
-M:HealthKit.HKHealthStore.GetDateOfBirth(Foundation.NSError@)
-M:HealthKit.HKHealthStore.GetDateOfBirthComponents(Foundation.NSError@)
-M:HealthKit.HKHealthStore.GetFitzpatrickSkinType(Foundation.NSError@)
-M:HealthKit.HKHealthStore.GetPreferredUnits(Foundation.NSSet,System.Action{Foundation.NSDictionary,Foundation.NSError})
M:HealthKit.HKHealthStore.GetPreferredUnitsAsync(Foundation.NSSet)
-M:HealthKit.HKHealthStore.GetRequestStatusForAuthorizationToShare(Foundation.NSSet{HealthKit.HKSampleType},Foundation.NSSet{HealthKit.HKObjectType},HealthKit.HKHealthStoreGetRequestStatusForAuthorizationToShareHandler)
M:HealthKit.HKHealthStore.GetRequestStatusForAuthorizationToShareAsync(Foundation.NSSet{HealthKit.HKSampleType},Foundation.NSSet{HealthKit.HKObjectType})
-M:HealthKit.HKHealthStore.GetWheelchairUse(Foundation.NSError@)
-M:HealthKit.HKHealthStore.HandleAuthorizationForExtension(System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.HandleAuthorizationForExtensionAsync
-M:HealthKit.HKHealthStore.PauseWorkoutSession(HealthKit.HKWorkoutSession)
-M:HealthKit.HKHealthStore.RecalibrateEstimates(HealthKit.HKSampleType,Foundation.NSDate,System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.RecalibrateEstimatesAsync(HealthKit.HKSampleType,Foundation.NSDate)
-M:HealthKit.HKHealthStore.RecoverActiveWorkoutSession(HealthKit.HKHealthStoreRecoverActiveWorkoutSessionHandler)
M:HealthKit.HKHealthStore.RecoverActiveWorkoutSessionAsync
-M:HealthKit.HKHealthStore.RequestAuthorizationToShare(Foundation.NSSet,Foundation.NSSet,System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.RequestAuthorizationToShareAsync(Foundation.NSSet,Foundation.NSSet)
-M:HealthKit.HKHealthStore.RequestPerObjectReadAuthorization(HealthKit.HKObjectType,Foundation.NSPredicate,HealthKit.HKHealthStoreCompletionHandler)
M:HealthKit.HKHealthStore.RequestPerObjectReadAuthorizationAsync(HealthKit.HKObjectType,Foundation.NSPredicate)
-M:HealthKit.HKHealthStore.ResumeWorkoutSession(HealthKit.HKWorkoutSession)
-M:HealthKit.HKHealthStore.SaveObject(HealthKit.HKObject,System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.SaveObjectAsync(HealthKit.HKObject)
-M:HealthKit.HKHealthStore.SaveObjects(HealthKit.HKObject[],System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.SaveObjectsAsync(HealthKit.HKObject[])
-M:HealthKit.HKHealthStore.SplitTotalEnergy(HealthKit.HKQuantity,Foundation.NSDate,Foundation.NSDate,System.Action{HealthKit.HKQuantity,HealthKit.HKQuantity,Foundation.NSError})
-M:HealthKit.HKHealthStore.StartWatchApp(HealthKit.HKWorkoutConfiguration,System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKHealthStore.StartWatchAppAsync(HealthKit.HKWorkoutConfiguration)
-M:HealthKit.HKHealthStore.StartWorkoutSession(HealthKit.HKWorkoutSession)
-M:HealthKit.HKHealthStore.StopQuery(HealthKit.HKQuery)
-M:HealthKit.HKHeartbeatSeriesBuilder.#ctor(HealthKit.HKHealthStore,HealthKit.HKDevice,Foundation.NSDate)
-M:HealthKit.HKHeartbeatSeriesBuilder.AddHeartbeat(System.Double,System.Boolean,HealthKit.HKHeartbeatSeriesBuilderCompletionHandler)
M:HealthKit.HKHeartbeatSeriesBuilder.AddHeartbeatAsync(System.Double,System.Boolean)
-M:HealthKit.HKHeartbeatSeriesBuilder.AddMetadata(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},HealthKit.HKHeartbeatSeriesBuilderCompletionHandler)
M:HealthKit.HKHeartbeatSeriesBuilder.AddMetadataAsync(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:HealthKit.HKHeartbeatSeriesBuilder.FinishSeries(System.Action{HealthKit.HKHeartbeatSeriesSample,Foundation.NSError})
M:HealthKit.HKHeartbeatSeriesBuilder.FinishSeriesAsync
-M:HealthKit.HKHeartbeatSeriesQuery.#ctor(HealthKit.HKHeartbeatSeriesSample,HealthKit.HKHeartbeatSeriesQueryDataHandler)
M:HealthKit.HKHeartbeatSeriesSample.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKLiveWorkoutBuilder.Dispose(System.Boolean)
M:HealthKit.HKLiveWorkoutBuilderDelegate_Extensions.DidBeginActivity(HealthKit.IHKLiveWorkoutBuilderDelegate,HealthKit.HKLiveWorkoutBuilder,HealthKit.HKWorkoutActivity)
M:HealthKit.HKLiveWorkoutBuilderDelegate_Extensions.DidEndActivity(HealthKit.IHKLiveWorkoutBuilderDelegate,HealthKit.HKLiveWorkoutBuilder,HealthKit.HKWorkoutActivity)
-M:HealthKit.HKLiveWorkoutBuilderDelegate.DidBeginActivity(HealthKit.HKLiveWorkoutBuilder,HealthKit.HKWorkoutActivity)
-M:HealthKit.HKLiveWorkoutBuilderDelegate.DidCollectData(HealthKit.HKLiveWorkoutBuilder,Foundation.NSSet{HealthKit.HKSampleType})
-M:HealthKit.HKLiveWorkoutBuilderDelegate.DidCollectEvent(HealthKit.HKLiveWorkoutBuilder)
-M:HealthKit.HKLiveWorkoutBuilderDelegate.DidEndActivity(HealthKit.HKLiveWorkoutBuilder,HealthKit.HKWorkoutActivity)
-M:HealthKit.HKLiveWorkoutDataSource.#ctor(HealthKit.HKHealthStore,HealthKit.HKWorkoutConfiguration)
-M:HealthKit.HKLiveWorkoutDataSource.DisableCollection(HealthKit.HKQuantityType)
-M:HealthKit.HKLiveWorkoutDataSource.EnableCollection(HealthKit.HKQuantityType,Foundation.NSPredicate)
M:HealthKit.HKMetadata.#ctor
M:HealthKit.HKMetadata.#ctor(Foundation.NSDictionary)
M:HealthKit.HKObject.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKObjectType.Copy(Foundation.NSZone)
M:HealthKit.HKObjectType.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKObjectType.GetClinicalType(HealthKit.HKClinicalTypeIdentifier)
-M:HealthKit.HKObjectType.GetScoredAssessmentType(HealthKit.HKScoredAssessmentTypeIdentifier)
-M:HealthKit.HKObjectType.GetSeriesType(System.String)
-M:HealthKit.HKObserverQuery.#ctor(HealthKit.HKQueryDescriptor[],HealthKit.HKObserverQueryDescriptorUpdateHandler)
-M:HealthKit.HKObserverQuery.#ctor(HealthKit.HKSampleType,Foundation.NSPredicate,HealthKit.HKObserverQueryUpdateHandler)
-M:HealthKit.HKPhq9Assessment.Create(Foundation.NSDate,HealthKit.HKPhq9AssessmentAnswer[],Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:HealthKit.HKPhq9Assessment.Create(Foundation.NSDate,HealthKit.HKPhq9AssessmentAnswer[])
-M:HealthKit.HKQuantity.Compare(HealthKit.HKQuantity)
M:HealthKit.HKQuantity.Copy(Foundation.NSZone)
M:HealthKit.HKQuantity.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKQuantity.FromQuantity(HealthKit.HKUnit,System.Double)
-M:HealthKit.HKQuantity.GetDoubleValue(HealthKit.HKUnit)
-M:HealthKit.HKQuantity.IsCompatible(HealthKit.HKUnit)
-M:HealthKit.HKQuantitySample.FromType(HealthKit.HKQuantityType,HealthKit.HKQuantity,Foundation.NSDate,Foundation.NSDate,HealthKit.HKDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKQuantitySample.FromType(HealthKit.HKQuantityType,HealthKit.HKQuantity,Foundation.NSDate,Foundation.NSDate,HealthKit.HKMetadata)
-M:HealthKit.HKQuantitySample.FromType(HealthKit.HKQuantityType,HealthKit.HKQuantity,Foundation.NSDate,Foundation.NSDate)
-M:HealthKit.HKQuantitySeriesSampleBuilder.#ctor(HealthKit.HKHealthStore,HealthKit.HKQuantityType,Foundation.NSDate,HealthKit.HKDevice)
-M:HealthKit.HKQuantitySeriesSampleBuilder.Discard
-M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeries(Foundation.NSDictionary,Foundation.NSDate,HealthKit.HKQuantitySeriesSampleBuilderFinishSeriesDelegate)
-M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeries(Foundation.NSDictionary,HealthKit.HKQuantitySeriesSampleBuilderFinishSeriesDelegate)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeries(HealthKit.HKMetadata,Foundation.NSDate,HealthKit.HKQuantitySeriesSampleBuilderFinishSeriesDelegate)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeries(HealthKit.HKMetadata,HealthKit.HKQuantitySeriesSampleBuilderFinishSeriesDelegate)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeriesAsync(Foundation.NSDictionary,Foundation.NSDate)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeriesAsync(Foundation.NSDictionary)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeriesAsync(HealthKit.HKMetadata,Foundation.NSDate)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeriesAsync(HealthKit.HKMetadata)
-M:HealthKit.HKQuantitySeriesSampleBuilder.Insert(HealthKit.HKQuantity,Foundation.NSDate,Foundation.NSError@)
-M:HealthKit.HKQuantitySeriesSampleBuilder.Insert(HealthKit.HKQuantity,Foundation.NSDateInterval,Foundation.NSError@)
-M:HealthKit.HKQuantitySeriesSampleQuery.#ctor(HealthKit.HKQuantitySample,HealthKit.HKQuantitySeriesSampleQueryQuantityDelegate)
-M:HealthKit.HKQuantitySeriesSampleQuery.#ctor(HealthKit.HKQuantityType,Foundation.NSPredicate,HealthKit.HKQuantitySeriesSampleQueryQuantityHandler)
M:HealthKit.HKQuantityType.Create(HealthKit.HKQuantityTypeIdentifier)
-M:HealthKit.HKQuantityType.IsCompatible(HealthKit.HKUnit)
-M:HealthKit.HKQuery.GetAverageQuantityPredicateForWorkoutActivities(Foundation.NSPredicateOperatorType,HealthKit.HKQuantityType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetAverageQuantityPredicateForWorkouts(Foundation.NSPredicateOperatorType,HealthKit.HKQuantityType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetMaximumQuantityPredicateForWorkoutActivities(Foundation.NSPredicateOperatorType,HealthKit.HKQuantityType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetMaximumQuantityPredicateForWorkouts(Foundation.NSPredicateOperatorType,HealthKit.HKQuantityType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetMinimumQuantityPredicateForWorkoutActivities(Foundation.NSPredicateOperatorType,HealthKit.HKQuantityType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetMinimumQuantityPredicateForWorkouts(Foundation.NSPredicateOperatorType,HealthKit.HKQuantityType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetPredicateForActivitySummariesBetween(Foundation.NSDateComponents,Foundation.NSDateComponents)
-M:HealthKit.HKQuery.GetPredicateForActivitySummary(Foundation.NSDateComponents)
-M:HealthKit.HKQuery.GetPredicateForCategorySamples(Foundation.NSPredicateOperatorType,System.IntPtr)
-M:HealthKit.HKQuery.GetPredicateForCategorySamples(Foundation.NSSet{Foundation.NSNumber})
M:HealthKit.HKQuery.GetPredicateForClinicalRecords(HealthKit.HKFhirResourceType)
M:HealthKit.HKQuery.GetPredicateForClinicalRecords(HealthKit.HKSource,HealthKit.HKFhirResourceType,System.String)
-M:HealthKit.HKQuery.GetPredicateForDuration(Foundation.NSPredicateOperatorType,System.Double)
-M:HealthKit.HKQuery.GetPredicateForElectrocardiograms(HealthKit.HKElectrocardiogramClassification)
-M:HealthKit.HKQuery.GetPredicateForElectrocardiograms(HealthKit.HKElectrocardiogramSymptomsStatus)
-M:HealthKit.HKQuery.GetPredicateForMetadataKey(Foundation.NSString,Foundation.NSObject[])
-M:HealthKit.HKQuery.GetPredicateForMetadataKey(Foundation.NSString,Foundation.NSPredicateOperatorType,Foundation.NSObject)
-M:HealthKit.HKQuery.GetPredicateForMetadataKey(Foundation.NSString)
-M:HealthKit.HKQuery.GetPredicateForObject(Foundation.NSUuid)
-M:HealthKit.HKQuery.GetPredicateForObjects(Foundation.NSSet)
-M:HealthKit.HKQuery.GetPredicateForObjects(HealthKit.HKElectrocardiogram)
-M:HealthKit.HKQuery.GetPredicateForObjectsFromDevices(Foundation.NSSet{HealthKit.HKDevice})
-M:HealthKit.HKQuery.GetPredicateForObjectsFromSource(HealthKit.HKSource)
-M:HealthKit.HKQuery.GetPredicateForObjectsFromSourceRevisions(Foundation.NSSet{HealthKit.HKSourceRevision})
-M:HealthKit.HKQuery.GetPredicateForObjectsFromSources(Foundation.NSSet)
-M:HealthKit.HKQuery.GetPredicateForObjectsFromWorkout(HealthKit.HKWorkout)
-M:HealthKit.HKQuery.GetPredicateForObjectsWithDeviceProperty(System.String,Foundation.NSSet{Foundation.NSString})
-M:HealthKit.HKQuery.GetPredicateForQuantitySamples(Foundation.NSPredicateOperatorType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetPredicateForSamples(Foundation.NSDate,Foundation.NSDate,HealthKit.HKQueryOptions)
-M:HealthKit.HKQuery.GetPredicateForStatesOfMind(HealthKit.HKStateOfMindAssociation)
-M:HealthKit.HKQuery.GetPredicateForStatesOfMind(HealthKit.HKStateOfMindKind)
-M:HealthKit.HKQuery.GetPredicateForStatesOfMind(HealthKit.HKStateOfMindLabel)
-M:HealthKit.HKQuery.GetPredicateForStatesOfMind(System.Double,Foundation.NSPredicateOperatorType)
-M:HealthKit.HKQuery.GetPredicateForTotalDistance(Foundation.NSPredicateOperatorType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetPredicateForTotalEnergyBurned(Foundation.NSPredicateOperatorType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetPredicateForTotalFlightsClimbed(Foundation.NSPredicateOperatorType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetPredicateForTotalSwimmingStrokeCount(Foundation.NSPredicateOperatorType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetPredicateForVerifiableClinicalRecords(Foundation.NSDateInterval)
-M:HealthKit.HKQuery.GetPredicateForWorkoutActivities(Foundation.NSDate,Foundation.NSDate,HealthKit.HKQueryOptions)
-M:HealthKit.HKQuery.GetPredicateForWorkoutActivities(Foundation.NSPredicateOperatorType,System.Double)
-M:HealthKit.HKQuery.GetPredicateForWorkoutActivities(HealthKit.HKWorkoutActivityType)
-M:HealthKit.HKQuery.GetPredicateForWorkoutEffortSamplesRelatedToWorkout(HealthKit.HKWorkout,HealthKit.HKWorkoutActivity)
-M:HealthKit.HKQuery.GetPredicateForWorkouts(Foundation.NSPredicate)
-M:HealthKit.HKQuery.GetPredicateForWorkouts(HealthKit.HKWorkoutActivityType)
-M:HealthKit.HKQuery.GetSumQuantityPredicateForWorkoutActivities(Foundation.NSPredicateOperatorType,HealthKit.HKQuantityType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.GetSumQuantityPredicateForWorkouts(Foundation.NSPredicateOperatorType,HealthKit.HKQuantityType,HealthKit.HKQuantity)
-M:HealthKit.HKQuery.PredicateForObjectsWithNoCorrelation
M:HealthKit.HKQueryAnchor.Copy(Foundation.NSZone)
-M:HealthKit.HKQueryAnchor.Create(System.UIntPtr)
M:HealthKit.HKQueryAnchor.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKQueryDescriptor.#ctor(HealthKit.HKSampleType,Foundation.NSPredicate)
M:HealthKit.HKQueryDescriptor.Copy(Foundation.NSZone)
M:HealthKit.HKQueryDescriptor.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKSampleQuery.#ctor(HealthKit.HKQueryDescriptor[],System.IntPtr,Foundation.NSSortDescriptor[],HealthKit.HKSampleQueryResultsHandler)
-M:HealthKit.HKSampleQuery.#ctor(HealthKit.HKQueryDescriptor[],System.IntPtr,HealthKit.HKSampleQueryResultsHandler)
-M:HealthKit.HKSampleQuery.#ctor(HealthKit.HKSampleType,Foundation.NSPredicate,System.UIntPtr,Foundation.NSSortDescriptor[],HealthKit.HKSampleQueryResultsHandler)
M:HealthKit.HKScoredAssessment.Copy(Foundation.NSZone)
M:HealthKit.HKScoredAssessment.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKSeriesBuilder.Discard
M:HealthKit.HKSeriesBuilder.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKSeriesSample.Copy(Foundation.NSZone)
M:HealthKit.HKSource.Copy(Foundation.NSZone)
M:HealthKit.HKSource.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKSourceQuery.#ctor(HealthKit.HKSampleType,Foundation.NSPredicate,HealthKit.HKSourceQueryCompletionHandler)
-M:HealthKit.HKSourceRevision.#ctor(HealthKit.HKSource,System.String,System.String,Foundation.NSOperatingSystemVersion)
-M:HealthKit.HKSourceRevision.#ctor(HealthKit.HKSource,System.String)
M:HealthKit.HKSourceRevision.Copy(Foundation.NSZone)
M:HealthKit.HKSourceRevision.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKStateOfMind.Copy(Foundation.NSZone)
-M:HealthKit.HKStateOfMind.Create(Foundation.NSDate,HealthKit.HKStateOfMindKind,System.Double,HealthKit.HKStateOfMindLabel[],HealthKit.HKStateOfMindAssociation[],Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:HealthKit.HKStateOfMind.Create(Foundation.NSDate,HealthKit.HKStateOfMindKind,System.Double,HealthKit.HKStateOfMindLabel[],HealthKit.HKStateOfMindAssociation[])
M:HealthKit.HKStateOfMind.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKStatistics.AverageQuantity
-M:HealthKit.HKStatistics.AverageQuantity(HealthKit.HKSource)
M:HealthKit.HKStatistics.Copy(Foundation.NSZone)
M:HealthKit.HKStatistics.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKStatistics.GetDuration(HealthKit.HKSource)
-M:HealthKit.HKStatistics.GetMostRecentQuantity(HealthKit.HKSource)
-M:HealthKit.HKStatistics.GetMostRecentQuantityDateInterval(HealthKit.HKSource)
-M:HealthKit.HKStatistics.MaximumQuantity
-M:HealthKit.HKStatistics.MaximumQuantity(HealthKit.HKSource)
-M:HealthKit.HKStatistics.MinimumQuantity
-M:HealthKit.HKStatistics.MinimumQuantity(HealthKit.HKSource)
-M:HealthKit.HKStatistics.SumQuantity
-M:HealthKit.HKStatistics.SumQuantity(HealthKit.HKSource)
-M:HealthKit.HKStatisticsCollection.EnumerateStatistics(Foundation.NSDate,Foundation.NSDate,HealthKit.HKStatisticsCollectionEnumerator)
-M:HealthKit.HKStatisticsCollection.GetStatistics(Foundation.NSDate)
-M:HealthKit.HKStatisticsCollectionQuery.#ctor(HealthKit.HKQuantityType,Foundation.NSPredicate,HealthKit.HKStatisticsOptions,Foundation.NSDate,Foundation.NSDateComponents)
-M:HealthKit.HKStatisticsQuery.#ctor(HealthKit.HKQuantityType,Foundation.NSPredicate,HealthKit.HKStatisticsOptions,HealthKit.HKStatisticsQueryHandler)
M:HealthKit.HKUnit.Copy(Foundation.NSZone)
-M:HealthKit.HKUnit.CreateJouleUnit(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.CreateLiterUnit(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.CreateLux(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.CreateMeterUnit(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.CreateMoleUnit(HealthKit.HKMetricPrefix,System.Double)
-M:HealthKit.HKUnit.CreateMoleUnit(System.Double)
-M:HealthKit.HKUnit.CreatePascalUnit(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.CreateRadianAngle(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.CreateSecondUnit(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.CreateSiemenUnit(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.CreateWatt(HealthKit.HKMetricPrefix)
M:HealthKit.HKUnit.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKUnit.FromEnergyFormatterUnit(Foundation.NSEnergyFormatterUnit)
-M:HealthKit.HKUnit.FromGramUnit(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.FromLengthFormatterUnit(Foundation.NSLengthFormatterUnit)
-M:HealthKit.HKUnit.FromMassFormatterUnit(Foundation.NSMassFormatterUnit)
-M:HealthKit.HKUnit.FromString(System.String)
-M:HealthKit.HKUnit.GetEnergyFormatterUnit(HealthKit.HKUnit)
-M:HealthKit.HKUnit.GetHertzUnit(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.GetLengthFormatterUnit(HealthKit.HKUnit)
-M:HealthKit.HKUnit.GetMassFormatterUnit(HealthKit.HKUnit)
-M:HealthKit.HKUnit.GetVolt(HealthKit.HKMetricPrefix)
-M:HealthKit.HKUnit.ReciprocalUnit
-M:HealthKit.HKUnit.UnitDividedBy(HealthKit.HKUnit)
-M:HealthKit.HKUnit.UnitMultipliedBy(HealthKit.HKUnit)
-M:HealthKit.HKUnit.UnitRaisedToPower(System.IntPtr)
-M:HealthKit.HKVerifiableClinicalRecordQuery.#ctor(System.String[],Foundation.NSPredicate,HealthKit.HKVerifiableClinicalRecordQueryResultHandler)
-M:HealthKit.HKVerifiableClinicalRecordQuery.#ctor(System.String[],HealthKit.HKVerifiableClinicalRecordSourceType[],Foundation.NSPredicate,System.Action{HealthKit.HKVerifiableClinicalRecordQuery,HealthKit.HKVerifiableClinicalRecord[],Foundation.NSError})
M:HealthKit.HKVerifiableClinicalRecordSubject.Copy(Foundation.NSZone)
M:HealthKit.HKVerifiableClinicalRecordSubject.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKVisionPrescription.Copy(Foundation.NSZone)
M:HealthKit.HKVisionPrescription.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKVisionPrescription.GetPrescription(HealthKit.HKVisionPrescriptionType,Foundation.NSDate,Foundation.NSDate,HealthKit.HKDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:HealthKit.HKVisionPrism.#ctor(HealthKit.HKQuantity,HealthKit.HKPrismBase,HealthKit.HKQuantity,HealthKit.HKPrismBase,HealthKit.HKVisionEye)
-M:HealthKit.HKVisionPrism.#ctor(HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKVisionEye)
M:HealthKit.HKVisionPrism.Copy(Foundation.NSZone)
M:HealthKit.HKVisionPrism.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKWheelchairUseObject.Copy(Foundation.NSZone)
M:HealthKit.HKWheelchairUseObject.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,HealthKit.HKWorkoutEvent[],HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKDevice,Foundation.NSDictionary)
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)
-M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,HealthKit.HKWorkoutEvent[],HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKDevice,Foundation.NSDictionary)
M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,HealthKit.HKWorkoutEvent[],HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKDevice,HealthKit.HKMetadata)
-M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,System.Double,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKDevice,Foundation.NSDictionary)
M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,System.Double,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKDevice,HealthKit.HKMetadata)
M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,System.Double,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKMetadata)
-M:HealthKit.HKWorkout.Create(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate)
-M:HealthKit.HKWorkout.CreateFlightsClimbedWorkout(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,HealthKit.HKWorkoutEvent[],HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKDevice,Foundation.NSDictionary)
M:HealthKit.HKWorkout.CreateFlightsClimbedWorkout(HealthKit.HKWorkoutActivityType,Foundation.NSDate,Foundation.NSDate,HealthKit.HKWorkoutEvent[],HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKQuantity,HealthKit.HKDevice,HealthKit.HKMetadata)
-M:HealthKit.HKWorkout.GetStatistics(HealthKit.HKQuantityType)
-M:HealthKit.HKWorkoutActivity.#ctor(HealthKit.HKWorkoutConfiguration,Foundation.NSDate,Foundation.NSDate,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKWorkoutActivity.Copy(Foundation.NSZone)
M:HealthKit.HKWorkoutActivity.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKWorkoutActivity.GetStatistics(HealthKit.HKQuantityType)
-M:HealthKit.HKWorkoutBuilder.#ctor(HealthKit.HKHealthStore,HealthKit.HKWorkoutConfiguration,HealthKit.HKDevice)
-M:HealthKit.HKWorkoutBuilder.Add(Foundation.NSDictionary,HealthKit.HKWorkoutBuilderCompletionHandler)
M:HealthKit.HKWorkoutBuilder.Add(HealthKit.HKMetadata,HealthKit.HKWorkoutBuilderCompletionHandler)
-M:HealthKit.HKWorkoutBuilder.Add(HealthKit.HKSample[],HealthKit.HKWorkoutBuilderCompletionHandler)
-M:HealthKit.HKWorkoutBuilder.Add(HealthKit.HKWorkoutEvent[],HealthKit.HKWorkoutBuilderCompletionHandler)
M:HealthKit.HKWorkoutBuilder.AddAsync(Foundation.NSDictionary)
M:HealthKit.HKWorkoutBuilder.AddAsync(HealthKit.HKMetadata)
M:HealthKit.HKWorkoutBuilder.AddAsync(HealthKit.HKSample[])
M:HealthKit.HKWorkoutBuilder.AddAsync(HealthKit.HKWorkoutEvent[])
-M:HealthKit.HKWorkoutBuilder.AddWorkoutActivity(HealthKit.HKWorkoutActivity,HealthKit.HKWorkoutBuilderCompletionHandler)
M:HealthKit.HKWorkoutBuilder.AddWorkoutActivityAsync(HealthKit.HKWorkoutActivity)
-M:HealthKit.HKWorkoutBuilder.BeginCollection(Foundation.NSDate,HealthKit.HKWorkoutBuilderCompletionHandler)
M:HealthKit.HKWorkoutBuilder.BeginCollectionAsync(Foundation.NSDate)
-M:HealthKit.HKWorkoutBuilder.DiscardWorkout
-M:HealthKit.HKWorkoutBuilder.EndCollection(Foundation.NSDate,HealthKit.HKWorkoutBuilderCompletionHandler)
M:HealthKit.HKWorkoutBuilder.EndCollectionAsync(Foundation.NSDate)
-M:HealthKit.HKWorkoutBuilder.FinishWorkout(HealthKit.HKWorkoutBuilderCompletionHandler)
M:HealthKit.HKWorkoutBuilder.FinishWorkoutAsync
-M:HealthKit.HKWorkoutBuilder.GetElapsedTime(Foundation.NSDate)
-M:HealthKit.HKWorkoutBuilder.GetSeriesBuilder(HealthKit.HKSeriesType)
-M:HealthKit.HKWorkoutBuilder.GetStatistics(HealthKit.HKQuantityType)
-M:HealthKit.HKWorkoutBuilder.UpdateActivity(Foundation.NSUuid,Foundation.NSDate,HealthKit.HKWorkoutBuilderCompletionHandler)
-M:HealthKit.HKWorkoutBuilder.UpdateActivity(Foundation.NSUuid,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},HealthKit.HKWorkoutBuilderCompletionHandler)
M:HealthKit.HKWorkoutBuilder.UpdateActivityAsync(Foundation.NSUuid,Foundation.NSDate)
M:HealthKit.HKWorkoutBuilder.UpdateActivityAsync(Foundation.NSUuid,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKWorkoutConfiguration.Copy(Foundation.NSZone)
M:HealthKit.HKWorkoutConfiguration.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKWorkoutEffortRelationship.Copy(Foundation.NSZone)
M:HealthKit.HKWorkoutEffortRelationship.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKWorkoutEffortRelationshipQuery.#ctor(Foundation.NSPredicate,HealthKit.HKQueryAnchor,HealthKit.HKWorkoutEffortRelationshipQueryOptions,HealthKit.HKWorkoutEffortRelationshipQueryResultsHandler)
M:HealthKit.HKWorkoutEvent.Copy(Foundation.NSZone)
M:HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType,Foundation.NSDate,HealthKit.HKMetadata)
-M:HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType,Foundation.NSDate)
-M:HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType,Foundation.NSDateInterval,Foundation.NSDictionary)
M:HealthKit.HKWorkoutEvent.Create(HealthKit.HKWorkoutEventType,Foundation.NSDateInterval,HealthKit.HKMetadata)
M:HealthKit.HKWorkoutEvent.EncodeTo(Foundation.NSCoder)
M:HealthKit.HKWorkoutRoute.Copy(Foundation.NSZone)
-M:HealthKit.HKWorkoutRouteBuilder.#ctor(HealthKit.HKHealthStore,HealthKit.HKDevice)
-M:HealthKit.HKWorkoutRouteBuilder.AddMetadata(Foundation.NSDictionary,HealthKit.HKWorkoutRouteBuilderAddMetadataHandler)
M:HealthKit.HKWorkoutRouteBuilder.AddMetadata(HealthKit.HKMetadata,HealthKit.HKWorkoutRouteBuilderAddMetadataHandler)
M:HealthKit.HKWorkoutRouteBuilder.AddMetadataAsync(Foundation.NSDictionary)
M:HealthKit.HKWorkoutRouteBuilder.AddMetadataAsync(HealthKit.HKMetadata)
-M:HealthKit.HKWorkoutRouteBuilder.FinishRoute(HealthKit.HKWorkout,Foundation.NSDictionary,System.Action{HealthKit.HKWorkoutRoute,Foundation.NSError})
M:HealthKit.HKWorkoutRouteBuilder.FinishRoute(HealthKit.HKWorkout,HealthKit.HKMetadata,System.Action{HealthKit.HKWorkoutRoute,Foundation.NSError})
M:HealthKit.HKWorkoutRouteBuilder.FinishRouteAsync(HealthKit.HKWorkout,Foundation.NSDictionary)
M:HealthKit.HKWorkoutRouteBuilder.FinishRouteAsync(HealthKit.HKWorkout,HealthKit.HKMetadata)
-M:HealthKit.HKWorkoutRouteBuilder.InsertRouteData(CoreLocation.CLLocation[],System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKWorkoutRouteBuilder.InsertRouteDataAsync(CoreLocation.CLLocation[])
-M:HealthKit.HKWorkoutRouteQuery.#ctor(HealthKit.HKWorkoutRoute,Foundation.NSDateInterval,HealthKit.HKWorkoutRouteQueryDataHandler)
-M:HealthKit.HKWorkoutRouteQuery.#ctor(HealthKit.HKWorkoutRoute,HealthKit.HKWorkoutRouteBuilderDataHandler)
-M:HealthKit.HKWorkoutSession.#ctor(HealthKit.HKHealthStore,HealthKit.HKWorkoutConfiguration,Foundation.NSError@)
-M:HealthKit.HKWorkoutSession.#ctor(HealthKit.HKWorkoutActivityType,HealthKit.HKWorkoutSessionLocationType)
-M:HealthKit.HKWorkoutSession.#ctor(HealthKit.HKWorkoutConfiguration,Foundation.NSError@)
-M:HealthKit.HKWorkoutSession.BeginNewActivity(HealthKit.HKWorkoutConfiguration,Foundation.NSDate,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKWorkoutSession.Dispose(System.Boolean)
M:HealthKit.HKWorkoutSession.EncodeTo(Foundation.NSCoder)
-M:HealthKit.HKWorkoutSession.End
-M:HealthKit.HKWorkoutSession.EndCurrentActivity(Foundation.NSDate)
-M:HealthKit.HKWorkoutSession.Pause
-M:HealthKit.HKWorkoutSession.Prepare
-M:HealthKit.HKWorkoutSession.Resume
-M:HealthKit.HKWorkoutSession.SendDataToRemoteWorkoutSession(Foundation.NSData,System.Action{System.Boolean,Foundation.NSError})
M:HealthKit.HKWorkoutSession.SendDataToRemoteWorkoutSessionAsync(Foundation.NSData)
-M:HealthKit.HKWorkoutSession.StartActivity(Foundation.NSDate)
-M:HealthKit.HKWorkoutSession.StopActivity(Foundation.NSDate)
M:HealthKit.HKWorkoutSessionDelegate_Extensions.DidBeginActivity(HealthKit.IHKWorkoutSessionDelegate,HealthKit.HKWorkoutSession,HealthKit.HKWorkoutConfiguration,Foundation.NSDate)
M:HealthKit.HKWorkoutSessionDelegate_Extensions.DidDisconnect(HealthKit.IHKWorkoutSessionDelegate,HealthKit.HKWorkoutSession,Foundation.NSError)
M:HealthKit.HKWorkoutSessionDelegate_Extensions.DidEndActivity(HealthKit.IHKWorkoutSessionDelegate,HealthKit.HKWorkoutSession,HealthKit.HKWorkoutConfiguration,Foundation.NSDate)
M:HealthKit.HKWorkoutSessionDelegate_Extensions.DidGenerateEvent(HealthKit.IHKWorkoutSessionDelegate,HealthKit.HKWorkoutSession,HealthKit.HKWorkoutEvent)
M:HealthKit.HKWorkoutSessionDelegate_Extensions.DidReceiveData(HealthKit.IHKWorkoutSessionDelegate,HealthKit.HKWorkoutSession,Foundation.NSData[])
-M:HealthKit.HKWorkoutSessionDelegate.DidBeginActivity(HealthKit.HKWorkoutSession,HealthKit.HKWorkoutConfiguration,Foundation.NSDate)
-M:HealthKit.HKWorkoutSessionDelegate.DidChangeToState(HealthKit.HKWorkoutSession,HealthKit.HKWorkoutSessionState,HealthKit.HKWorkoutSessionState,Foundation.NSDate)
-M:HealthKit.HKWorkoutSessionDelegate.DidDisconnect(HealthKit.HKWorkoutSession,Foundation.NSError)
-M:HealthKit.HKWorkoutSessionDelegate.DidEndActivity(HealthKit.HKWorkoutSession,HealthKit.HKWorkoutConfiguration,Foundation.NSDate)
-M:HealthKit.HKWorkoutSessionDelegate.DidFail(HealthKit.HKWorkoutSession,Foundation.NSError)
-M:HealthKit.HKWorkoutSessionDelegate.DidGenerateEvent(HealthKit.HKWorkoutSession,HealthKit.HKWorkoutEvent)
-M:HealthKit.HKWorkoutSessionDelegate.DidReceiveData(HealthKit.HKWorkoutSession,Foundation.NSData[])
M:HealthKit.IHKLiveWorkoutBuilderDelegate.DidBeginActivity(HealthKit.HKLiveWorkoutBuilder,HealthKit.HKWorkoutActivity)
M:HealthKit.IHKLiveWorkoutBuilderDelegate.DidCollectData(HealthKit.HKLiveWorkoutBuilder,Foundation.NSSet{HealthKit.HKSampleType})
M:HealthKit.IHKLiveWorkoutBuilderDelegate.DidCollectEvent(HealthKit.HKLiveWorkoutBuilder)
@@ -43810,7 +31947,6 @@ M:HealthKit.IHKWorkoutSessionDelegate.DidReceiveData(HealthKit.HKWorkoutSession,
M:HealthKitUI.HKActivityRingView.#ctor(CoreGraphics.CGRect)
M:HealthKitUI.HKActivityRingView.HKActivityRingViewAppearance.#ctor(System.IntPtr)
M:HealthKitUI.HKActivityRingView.SetActivitySummary(HealthKit.HKActivitySummary,System.Boolean)
-M:HomeKit.HMAccessory.#ctor
M:HomeKit.HMAccessory.add_DidAddProfile(System.EventHandler{HomeKit.HMAccessoryProfileEventArgs})
M:HomeKit.HMAccessory.add_DidRemoveProfile(System.EventHandler{HomeKit.HMAccessoryProfileEventArgs})
M:HomeKit.HMAccessory.add_DidUpdateAssociatedServiceType(System.EventHandler{HomeKit.HMAccessoryUpdateEventArgs})
@@ -43821,7 +31957,6 @@ M:HomeKit.HMAccessory.add_DidUpdateReachability(System.EventHandler)
M:HomeKit.HMAccessory.add_DidUpdateServices(System.EventHandler)
M:HomeKit.HMAccessory.add_DidUpdateValueForCharacteristic(System.EventHandler{HomeKit.HMAccessoryServiceUpdateCharacteristicEventArgs})
M:HomeKit.HMAccessory.Dispose(System.Boolean)
-M:HomeKit.HMAccessory.Identify(System.Action{Foundation.NSError})
M:HomeKit.HMAccessory.IdentifyAsync
M:HomeKit.HMAccessory.remove_DidAddProfile(System.EventHandler{HomeKit.HMAccessoryProfileEventArgs})
M:HomeKit.HMAccessory.remove_DidRemoveProfile(System.EventHandler{HomeKit.HMAccessoryProfileEventArgs})
@@ -43832,19 +31967,14 @@ M:HomeKit.HMAccessory.remove_DidUpdateNameForService(System.EventHandler{HomeKit
M:HomeKit.HMAccessory.remove_DidUpdateReachability(System.EventHandler)
M:HomeKit.HMAccessory.remove_DidUpdateServices(System.EventHandler)
M:HomeKit.HMAccessory.remove_DidUpdateValueForCharacteristic(System.EventHandler{HomeKit.HMAccessoryServiceUpdateCharacteristicEventArgs})
-M:HomeKit.HMAccessory.UpdateName(System.String,System.Action{Foundation.NSError})
M:HomeKit.HMAccessory.UpdateNameAsync(System.String)
M:HomeKit.HMAccessoryBrowser.add_DidFindNewAccessory(System.EventHandler{HomeKit.HMAccessoryBrowserEventArgs})
M:HomeKit.HMAccessoryBrowser.add_DidRemoveNewAccessory(System.EventHandler{HomeKit.HMAccessoryBrowserEventArgs})
M:HomeKit.HMAccessoryBrowser.Dispose(System.Boolean)
M:HomeKit.HMAccessoryBrowser.remove_DidFindNewAccessory(System.EventHandler{HomeKit.HMAccessoryBrowserEventArgs})
M:HomeKit.HMAccessoryBrowser.remove_DidRemoveNewAccessory(System.EventHandler{HomeKit.HMAccessoryBrowserEventArgs})
-M:HomeKit.HMAccessoryBrowser.StartSearchingForNewAccessories
-M:HomeKit.HMAccessoryBrowser.StopSearchingForNewAccessories
M:HomeKit.HMAccessoryBrowserDelegate_Extensions.DidFindNewAccessory(HomeKit.IHMAccessoryBrowserDelegate,HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
M:HomeKit.HMAccessoryBrowserDelegate_Extensions.DidRemoveNewAccessory(HomeKit.IHMAccessoryBrowserDelegate,HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
-M:HomeKit.HMAccessoryBrowserDelegate.DidFindNewAccessory(HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
-M:HomeKit.HMAccessoryBrowserDelegate.DidRemoveNewAccessory(HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
M:HomeKit.HMAccessoryBrowserEventArgs.#ctor(HomeKit.HMAccessory)
M:HomeKit.HMAccessoryDelegate_Extensions.DidAddProfile(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,HomeKit.HMAccessoryProfile)
M:HomeKit.HMAccessoryDelegate_Extensions.DidRemoveProfile(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,HomeKit.HMAccessoryProfile)
@@ -43855,115 +31985,50 @@ M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateNameForService(HomeKit.IHMAcce
M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateReachability(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory)
M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateServices(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory)
M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateValueForCharacteristic(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,HomeKit.HMService,HomeKit.HMCharacteristic)
-M:HomeKit.HMAccessoryDelegate.DidAddProfile(HomeKit.HMAccessory,HomeKit.HMAccessoryProfile)
-M:HomeKit.HMAccessoryDelegate.DidRemoveProfile(HomeKit.HMAccessory,HomeKit.HMAccessoryProfile)
-M:HomeKit.HMAccessoryDelegate.DidUpdateAssociatedServiceType(HomeKit.HMAccessory,HomeKit.HMService)
-M:HomeKit.HMAccessoryDelegate.DidUpdateFirmwareVersion(HomeKit.HMAccessory,System.String)
-M:HomeKit.HMAccessoryDelegate.DidUpdateName(HomeKit.HMAccessory)
-M:HomeKit.HMAccessoryDelegate.DidUpdateNameForService(HomeKit.HMAccessory,HomeKit.HMService)
-M:HomeKit.HMAccessoryDelegate.DidUpdateReachability(HomeKit.HMAccessory)
-M:HomeKit.HMAccessoryDelegate.DidUpdateServices(HomeKit.HMAccessory)
-M:HomeKit.HMAccessoryDelegate.DidUpdateValueForCharacteristic(HomeKit.HMAccessory,HomeKit.HMService,HomeKit.HMCharacteristic)
M:HomeKit.HMAccessoryFirmwareVersionEventArgs.#ctor(System.String)
-M:HomeKit.HMAccessoryOwnershipToken.#ctor(Foundation.NSData)
M:HomeKit.HMAccessoryProfile.Dispose(System.Boolean)
M:HomeKit.HMAccessoryProfileEventArgs.#ctor(HomeKit.HMAccessoryProfile)
M:HomeKit.HMAccessoryServiceUpdateCharacteristicEventArgs.#ctor(HomeKit.HMService,HomeKit.HMCharacteristic)
-M:HomeKit.HMAccessorySetupManager.PerformAccessorySetup(HomeKit.HMAccessorySetupRequest,System.Action{HomeKit.HMAccessorySetupResult,Foundation.NSError})
M:HomeKit.HMAccessorySetupManager.PerformAccessorySetupAsync(HomeKit.HMAccessorySetupRequest)
-M:HomeKit.HMAccessorySetupPayload.#ctor(Foundation.NSUrl,HomeKit.HMAccessoryOwnershipToken)
-M:HomeKit.HMAccessorySetupPayload.#ctor(Foundation.NSUrl)
M:HomeKit.HMAccessorySetupRequest.Copy(Foundation.NSZone)
M:HomeKit.HMAccessorySetupResult.Copy(Foundation.NSZone)
M:HomeKit.HMAccessoryUpdateEventArgs.#ctor(HomeKit.HMService)
-M:HomeKit.HMAction.#ctor
-M:HomeKit.HMActionSet.AddAction(HomeKit.HMAction,System.Action{Foundation.NSError})
M:HomeKit.HMActionSet.AddActionAsync(HomeKit.HMAction)
-M:HomeKit.HMActionSet.RemoveAction(HomeKit.HMAction,System.Action{Foundation.NSError})
M:HomeKit.HMActionSet.RemoveActionAsync(HomeKit.HMAction)
-M:HomeKit.HMActionSet.UpdateName(System.String,System.Action{Foundation.NSError})
M:HomeKit.HMActionSet.UpdateNameAsync(System.String)
-M:HomeKit.HMAddAccessoryRequest.GetPayload(Foundation.NSUrl,HomeKit.HMAccessoryOwnershipToken)
-M:HomeKit.HMAddAccessoryRequest.GetPayload(HomeKit.HMAccessoryOwnershipToken)
-M:HomeKit.HMCalendarEvent.#ctor(Foundation.NSDateComponents)
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.HMCameraSnapshotControl.TakeSnapshot
M:HomeKit.HMCameraSnapshotControlDelegate_Extensions.DidTakeSnapshot(HomeKit.IHMCameraSnapshotControlDelegate,HomeKit.HMCameraSnapshotControl,HomeKit.HMCameraSnapshot,Foundation.NSError)
M:HomeKit.HMCameraSnapshotControlDelegate_Extensions.DidUpdateMostRecentSnapshot(HomeKit.IHMCameraSnapshotControlDelegate,HomeKit.HMCameraSnapshotControl)
-M:HomeKit.HMCameraSnapshotControlDelegate.DidTakeSnapshot(HomeKit.HMCameraSnapshotControl,HomeKit.HMCameraSnapshot,Foundation.NSError)
-M:HomeKit.HMCameraSnapshotControlDelegate.DidUpdateMostRecentSnapshot(HomeKit.HMCameraSnapshotControl)
-M:HomeKit.HMCameraSource.#ctor
-M:HomeKit.HMCameraStream.#ctor
-M:HomeKit.HMCameraStream.UpdateAudioStreamSetting(HomeKit.HMCameraAudioStreamSetting,System.Action{Foundation.NSError})
M:HomeKit.HMCameraStream.UpdateAudioStreamSettingAsync(HomeKit.HMCameraAudioStreamSetting)
-M:HomeKit.HMCameraStreamControl.#ctor
M:HomeKit.HMCameraStreamControl.Dispose(System.Boolean)
-M:HomeKit.HMCameraStreamControl.StartStream
-M:HomeKit.HMCameraStreamControl.StopStream
M:HomeKit.HMCameraStreamControlDelegate_Extensions.DidStartStream(HomeKit.IHMCameraStreamControlDelegate,HomeKit.HMCameraStreamControl)
M:HomeKit.HMCameraStreamControlDelegate_Extensions.DidStopStream(HomeKit.IHMCameraStreamControlDelegate,HomeKit.HMCameraStreamControl,Foundation.NSError)
-M:HomeKit.HMCameraStreamControlDelegate.DidStartStream(HomeKit.HMCameraStreamControl)
-M:HomeKit.HMCameraStreamControlDelegate.DidStopStream(HomeKit.HMCameraStreamControl,Foundation.NSError)
M:HomeKit.HMCameraView.#ctor(CoreGraphics.CGRect)
M:HomeKit.HMCameraView.HMCameraViewAppearance.#ctor(System.IntPtr)
-M:HomeKit.HMCharacteristic.#ctor
M:HomeKit.HMCharacteristic.Dispose(System.Boolean)
-M:HomeKit.HMCharacteristic.EnableNotification(System.Boolean,System.Action{Foundation.NSError})
M:HomeKit.HMCharacteristic.EnableNotificationAsync(System.Boolean)
-M:HomeKit.HMCharacteristic.ReadValue(System.Action{Foundation.NSError})
M:HomeKit.HMCharacteristic.ReadValueAsync
-M:HomeKit.HMCharacteristic.UpdateAuthorizationData(Foundation.NSData,System.Action{Foundation.NSError})
M:HomeKit.HMCharacteristic.UpdateAuthorizationDataAsync(Foundation.NSData)
-M:HomeKit.HMCharacteristic.WriteValue(Foundation.NSObject,System.Action{Foundation.NSError})
M:HomeKit.HMCharacteristic.WriteValueAsync(Foundation.NSObject)
-M:HomeKit.HMCharacteristicEvent.#ctor(HomeKit.HMCharacteristic,Foundation.INSCopying)
M:HomeKit.HMCharacteristicEvent.Copy(Foundation.NSZone)
M:HomeKit.HMCharacteristicEvent.MutableCopy(Foundation.NSZone)
-M:HomeKit.HMCharacteristicEvent.UpdateTriggerValue(Foundation.INSCopying,System.Action{Foundation.NSError})
M:HomeKit.HMCharacteristicEvent.UpdateTriggerValueAsync(Foundation.INSCopying)
M:HomeKit.HMCharacteristicProperties.#ctor
-M:HomeKit.HMCharacteristicThresholdRangeEvent.#ctor(HomeKit.HMCharacteristic,HomeKit.HMNumberRange)
M:HomeKit.HMCharacteristicThresholdRangeEvent.Copy(Foundation.NSZone)
M:HomeKit.HMCharacteristicThresholdRangeEvent.MutableCopy(Foundation.NSZone)
-M:HomeKit.HMCharacteristicWriteAction.#ctor(HomeKit.HMCharacteristic,Foundation.INSCopying)
-M:HomeKit.HMCharacteristicWriteAction.UpdateTargetValue(Foundation.INSCopying,System.Action{Foundation.NSError})
M:HomeKit.HMCharacteristicWriteAction.UpdateTargetValueAsync(Foundation.INSCopying)
-M:HomeKit.HMDurationEvent.#ctor(System.Double)
M:HomeKit.HMDurationEvent.Copy(Foundation.NSZone)
M:HomeKit.HMDurationEvent.MutableCopy(Foundation.NSZone)
-M:HomeKit.HMEvent.#ctor
-M:HomeKit.HMEvent.IsSupported(HomeKit.HMHome)
-M:HomeKit.HMEventTrigger.#ctor(System.String,HomeKit.HMEvent[],Foundation.NSPredicate)
-M:HomeKit.HMEventTrigger.#ctor(System.String,HomeKit.HMEvent[],HomeKit.HMEvent[],Foundation.NSDateComponents[],Foundation.NSPredicate)
-M:HomeKit.HMEventTrigger.AddEvent(HomeKit.HMEvent,System.Action{Foundation.NSError})
M:HomeKit.HMEventTrigger.AddEventAsync(HomeKit.HMEvent)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTrigger(HomeKit.HMCharacteristic,Foundation.NSPredicateOperatorType,Foundation.NSObject)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTrigger(HomeKit.HMPresenceEvent)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringAfterDate(Foundation.NSDateComponents)
M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringAfterSignificantEvent(HomeKit.HMSignificantEvent,Foundation.NSDateComponents)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringAfterSignificantEvent(HomeKit.HMSignificantTimeEvent)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringBeforeDate(Foundation.NSDateComponents)
M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringBeforeSignificantEvent(HomeKit.HMSignificantEvent,Foundation.NSDateComponents)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringBeforeSignificantEvent(HomeKit.HMSignificantTimeEvent)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringBetweenDates(Foundation.NSDateComponents,Foundation.NSDateComponents)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringBetweenSignificantEvent(HomeKit.HMSignificantTimeEvent,HomeKit.HMSignificantTimeEvent)
-M:HomeKit.HMEventTrigger.CreatePredicateForEvaluatingTriggerOccurringOnDate(Foundation.NSDateComponents)
-M:HomeKit.HMEventTrigger.RemoveEvent(HomeKit.HMEvent,System.Action{Foundation.NSError})
M:HomeKit.HMEventTrigger.RemoveEventAsync(HomeKit.HMEvent)
-M:HomeKit.HMEventTrigger.UpdateEndEvents(HomeKit.HMEvent[],System.Action{Foundation.NSError})
M:HomeKit.HMEventTrigger.UpdateEndEventsAsync(HomeKit.HMEvent[])
-M:HomeKit.HMEventTrigger.UpdateEvents(HomeKit.HMEvent[],System.Action{Foundation.NSError})
M:HomeKit.HMEventTrigger.UpdateEventsAsync(HomeKit.HMEvent[])
-M:HomeKit.HMEventTrigger.UpdateExecuteOnce(System.Boolean,System.Action{Foundation.NSError})
M:HomeKit.HMEventTrigger.UpdateExecuteOnceAsync(System.Boolean)
-M:HomeKit.HMEventTrigger.UpdatePredicate(Foundation.NSPredicate,System.Action{Foundation.NSError})
M:HomeKit.HMEventTrigger.UpdatePredicateAsync(Foundation.NSPredicate)
-M:HomeKit.HMEventTrigger.UpdateRecurrences(Foundation.NSDateComponents[],System.Action{Foundation.NSError})
M:HomeKit.HMEventTrigger.UpdateRecurrencesAsync(Foundation.NSDateComponents[])
M:HomeKit.HMHome.add_DidAddAccessory(System.EventHandler{HomeKit.HMHomeAccessoryEventArgs})
M:HomeKit.HMHome.add_DidAddActionSet(System.EventHandler{HomeKit.HMHomeActionSetEventArgs})
@@ -43997,34 +32062,19 @@ M:HomeKit.HMHome.add_DidUpdateNameForZone(System.EventHandler{HomeKit.HMHomeZone
M:HomeKit.HMHome.add_DidUpdateRoom(System.EventHandler{HomeKit.HMHomeRoomAccessoryEventArgs})
M:HomeKit.HMHome.add_DidUpdateSupportedFeatures(System.EventHandler)
M:HomeKit.HMHome.add_DidUpdateTrigger(System.EventHandler{HomeKit.HMHomeTriggerEventArgs})
-M:HomeKit.HMHome.AddAccessory(HomeKit.HMAccessory,System.Action{Foundation.NSError})
M:HomeKit.HMHome.AddAccessoryAsync(HomeKit.HMAccessory)
-M:HomeKit.HMHome.AddActionSet(System.String,System.Action{HomeKit.HMActionSet,Foundation.NSError})
M:HomeKit.HMHome.AddActionSetAsync(System.String)
-M:HomeKit.HMHome.AddAndSetupAccessories(HomeKit.HMAccessorySetupPayload,System.Action{HomeKit.HMAccessory[],Foundation.NSError})
-M:HomeKit.HMHome.AddAndSetupAccessories(System.Action{Foundation.NSError})
M:HomeKit.HMHome.AddAndSetupAccessoriesAsync
M:HomeKit.HMHome.AddAndSetupAccessoriesAsync(HomeKit.HMAccessorySetupPayload)
-M:HomeKit.HMHome.AddRoom(System.String,System.Action{HomeKit.HMRoom,Foundation.NSError})
M:HomeKit.HMHome.AddRoomAsync(System.String)
-M:HomeKit.HMHome.AddServiceGroup(System.String,System.Action{HomeKit.HMServiceGroup,Foundation.NSError})
M:HomeKit.HMHome.AddServiceGroupAsync(System.String)
-M:HomeKit.HMHome.AddTrigger(HomeKit.HMTrigger,System.Action{Foundation.NSError})
M:HomeKit.HMHome.AddTriggerAsync(HomeKit.HMTrigger)
-M:HomeKit.HMHome.AddUser(System.Action{HomeKit.HMUser,Foundation.NSError})
M:HomeKit.HMHome.AddUserAsync
-M:HomeKit.HMHome.AddZone(System.String,System.Action{HomeKit.HMZone,Foundation.NSError})
M:HomeKit.HMHome.AddZoneAsync(System.String)
-M:HomeKit.HMHome.AssignAccessory(HomeKit.HMAccessory,HomeKit.HMRoom,System.Action{Foundation.NSError})
M:HomeKit.HMHome.AssignAccessoryAsync(HomeKit.HMAccessory,HomeKit.HMRoom)
M:HomeKit.HMHome.Dispose(System.Boolean)
-M:HomeKit.HMHome.ExecuteActionSet(HomeKit.HMActionSet,System.Action{Foundation.NSError})
M:HomeKit.HMHome.ExecuteActionSetAsync(HomeKit.HMActionSet)
-M:HomeKit.HMHome.GetBuiltinActionSet(System.String)
-M:HomeKit.HMHome.GetHomeAccessControl(HomeKit.HMUser)
-M:HomeKit.HMHome.GetRoomForEntireHome
M:HomeKit.HMHome.GetServices(HomeKit.HMServiceType)
-M:HomeKit.HMHome.ManageUsers(System.Action{Foundation.NSError})
M:HomeKit.HMHome.ManageUsersAsync
M:HomeKit.HMHome.remove_DidAddAccessory(System.EventHandler{HomeKit.HMHomeAccessoryEventArgs})
M:HomeKit.HMHome.remove_DidAddActionSet(System.EventHandler{HomeKit.HMHomeActionSetEventArgs})
@@ -44058,21 +32108,13 @@ M:HomeKit.HMHome.remove_DidUpdateNameForZone(System.EventHandler{HomeKit.HMHomeZ
M:HomeKit.HMHome.remove_DidUpdateRoom(System.EventHandler{HomeKit.HMHomeRoomAccessoryEventArgs})
M:HomeKit.HMHome.remove_DidUpdateSupportedFeatures(System.EventHandler)
M:HomeKit.HMHome.remove_DidUpdateTrigger(System.EventHandler{HomeKit.HMHomeTriggerEventArgs})
-M:HomeKit.HMHome.RemoveAccessory(HomeKit.HMAccessory,System.Action{Foundation.NSError})
M:HomeKit.HMHome.RemoveAccessoryAsync(HomeKit.HMAccessory)
-M:HomeKit.HMHome.RemoveActionSet(HomeKit.HMActionSet,System.Action{Foundation.NSError})
M:HomeKit.HMHome.RemoveActionSetAsync(HomeKit.HMActionSet)
-M:HomeKit.HMHome.RemoveRoom(HomeKit.HMRoom,System.Action{Foundation.NSError})
M:HomeKit.HMHome.RemoveRoomAsync(HomeKit.HMRoom)
-M:HomeKit.HMHome.RemoveServiceGroup(HomeKit.HMServiceGroup,System.Action{Foundation.NSError})
M:HomeKit.HMHome.RemoveServiceGroupAsync(HomeKit.HMServiceGroup)
-M:HomeKit.HMHome.RemoveTrigger(HomeKit.HMTrigger,System.Action{Foundation.NSError})
M:HomeKit.HMHome.RemoveTriggerAsync(HomeKit.HMTrigger)
-M:HomeKit.HMHome.RemoveZone(HomeKit.HMZone,System.Action{Foundation.NSError})
M:HomeKit.HMHome.RemoveZoneAsync(HomeKit.HMZone)
-M:HomeKit.HMHome.UnblockAccessory(HomeKit.HMAccessory,System.Action{Foundation.NSError})
M:HomeKit.HMHome.UnblockAccessoryAsync(HomeKit.HMAccessory)
-M:HomeKit.HMHome.UpdateName(System.String,System.Action{Foundation.NSError})
M:HomeKit.HMHome.UpdateNameAsync(System.String)
M:HomeKit.HMHomeAccessoryEventArgs.#ctor(HomeKit.HMAccessory)
M:HomeKit.HMHomeActionSetEventArgs.#ctor(HomeKit.HMActionSet)
@@ -44108,38 +32150,6 @@ M:HomeKit.HMHomeDelegate_Extensions.DidUpdateNameForZone(HomeKit.IHMHomeDelegate
M:HomeKit.HMHomeDelegate_Extensions.DidUpdateRoom(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMAccessory)
M:HomeKit.HMHomeDelegate_Extensions.DidUpdateSupportedFeatures(HomeKit.IHMHomeDelegate,HomeKit.HMHome)
M:HomeKit.HMHomeDelegate_Extensions.DidUpdateTrigger(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMTrigger)
-M:HomeKit.HMHomeDelegate.DidAddAccessory(HomeKit.HMHome,HomeKit.HMAccessory)
-M:HomeKit.HMHomeDelegate.DidAddActionSet(HomeKit.HMHome,HomeKit.HMActionSet)
-M:HomeKit.HMHomeDelegate.DidAddRoom(HomeKit.HMHome,HomeKit.HMRoom)
-M:HomeKit.HMHomeDelegate.DidAddRoomToZone(HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMZone)
-M:HomeKit.HMHomeDelegate.DidAddService(HomeKit.HMHome,HomeKit.HMService,HomeKit.HMServiceGroup)
-M:HomeKit.HMHomeDelegate.DidAddServiceGroup(HomeKit.HMHome,HomeKit.HMServiceGroup)
-M:HomeKit.HMHomeDelegate.DidAddTrigger(HomeKit.HMHome,HomeKit.HMTrigger)
-M:HomeKit.HMHomeDelegate.DidAddUser(HomeKit.HMHome,HomeKit.HMUser)
-M:HomeKit.HMHomeDelegate.DidAddZone(HomeKit.HMHome,HomeKit.HMZone)
-M:HomeKit.HMHomeDelegate.DidEncounterError(HomeKit.HMHome,Foundation.NSError,HomeKit.HMAccessory)
-M:HomeKit.HMHomeDelegate.DidRemoveAccessory(HomeKit.HMHome,HomeKit.HMAccessory)
-M:HomeKit.HMHomeDelegate.DidRemoveActionSet(HomeKit.HMHome,HomeKit.HMActionSet)
-M:HomeKit.HMHomeDelegate.DidRemoveRoom(HomeKit.HMHome,HomeKit.HMRoom)
-M:HomeKit.HMHomeDelegate.DidRemoveRoomFromZone(HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMZone)
-M:HomeKit.HMHomeDelegate.DidRemoveService(HomeKit.HMHome,HomeKit.HMService,HomeKit.HMServiceGroup)
-M:HomeKit.HMHomeDelegate.DidRemoveServiceGroup(HomeKit.HMHome,HomeKit.HMServiceGroup)
-M:HomeKit.HMHomeDelegate.DidRemoveTrigger(HomeKit.HMHome,HomeKit.HMTrigger)
-M:HomeKit.HMHomeDelegate.DidRemoveUser(HomeKit.HMHome,HomeKit.HMUser)
-M:HomeKit.HMHomeDelegate.DidRemoveZone(HomeKit.HMHome,HomeKit.HMZone)
-M:HomeKit.HMHomeDelegate.DidUnblockAccessory(HomeKit.HMHome,HomeKit.HMAccessory)
-M:HomeKit.HMHomeDelegate.DidUpdateAccessControlForCurrentUser(HomeKit.HMHome)
-M:HomeKit.HMHomeDelegate.DidUpdateActionsForActionSet(HomeKit.HMHome,HomeKit.HMActionSet)
-M:HomeKit.HMHomeDelegate.DidUpdateHomeHubState(HomeKit.HMHome,HomeKit.HMHomeHubState)
-M:HomeKit.HMHomeDelegate.DidUpdateNameForActionSet(HomeKit.HMHome,HomeKit.HMActionSet)
-M:HomeKit.HMHomeDelegate.DidUpdateNameForHome(HomeKit.HMHome)
-M:HomeKit.HMHomeDelegate.DidUpdateNameForRoom(HomeKit.HMHome,HomeKit.HMRoom)
-M:HomeKit.HMHomeDelegate.DidUpdateNameForServiceGroup(HomeKit.HMHome,HomeKit.HMServiceGroup)
-M:HomeKit.HMHomeDelegate.DidUpdateNameForTrigger(HomeKit.HMHome,HomeKit.HMTrigger)
-M:HomeKit.HMHomeDelegate.DidUpdateNameForZone(HomeKit.HMHome,HomeKit.HMZone)
-M:HomeKit.HMHomeDelegate.DidUpdateRoom(HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMAccessory)
-M:HomeKit.HMHomeDelegate.DidUpdateSupportedFeatures(HomeKit.HMHome)
-M:HomeKit.HMHomeDelegate.DidUpdateTrigger(HomeKit.HMHome,HomeKit.HMTrigger)
M:HomeKit.HMHomeErrorAccessoryEventArgs.#ctor(Foundation.NSError,HomeKit.HMAccessory)
M:HomeKit.HMHomeHubStateEventArgs.#ctor(HomeKit.HMHomeHubState)
M:HomeKit.HMHomeManager.add_DidAddHome(System.EventHandler{HomeKit.HMHomeManagerEventArgs})
@@ -44148,7 +32158,6 @@ M:HomeKit.HMHomeManager.add_DidRemoveHome(System.EventHandler{HomeKit.HMHomeMana
M:HomeKit.HMHomeManager.add_DidUpdateAuthorizationStatus(System.EventHandler{HomeKit.HMHomeManagerAuthorizationStatusEventArgs})
M:HomeKit.HMHomeManager.add_DidUpdateHomes(System.EventHandler)
M:HomeKit.HMHomeManager.add_DidUpdatePrimaryHome(System.EventHandler)
-M:HomeKit.HMHomeManager.AddHome(System.String,System.Action{HomeKit.HMHome,Foundation.NSError})
M:HomeKit.HMHomeManager.AddHomeAsync(System.String)
M:HomeKit.HMHomeManager.Dispose(System.Boolean)
M:HomeKit.HMHomeManager.remove_DidAddHome(System.EventHandler{HomeKit.HMHomeManagerEventArgs})
@@ -44157,9 +32166,7 @@ M:HomeKit.HMHomeManager.remove_DidRemoveHome(System.EventHandler{HomeKit.HMHomeM
M:HomeKit.HMHomeManager.remove_DidUpdateAuthorizationStatus(System.EventHandler{HomeKit.HMHomeManagerAuthorizationStatusEventArgs})
M:HomeKit.HMHomeManager.remove_DidUpdateHomes(System.EventHandler)
M:HomeKit.HMHomeManager.remove_DidUpdatePrimaryHome(System.EventHandler)
-M:HomeKit.HMHomeManager.RemoveHome(HomeKit.HMHome,System.Action{Foundation.NSError})
M:HomeKit.HMHomeManager.RemoveHomeAsync(HomeKit.HMHome)
-M:HomeKit.HMHomeManager.UpdatePrimaryHome(HomeKit.HMHome,System.Action{Foundation.NSError})
M:HomeKit.HMHomeManager.UpdatePrimaryHomeAsync(HomeKit.HMHome)
M:HomeKit.HMHomeManagerAddAccessoryRequestEventArgs.#ctor(HomeKit.HMAddAccessoryRequest)
M:HomeKit.HMHomeManagerAuthorizationStatusEventArgs.#ctor(HomeKit.HMHomeManagerAuthorizationStatus)
@@ -44169,12 +32176,6 @@ M:HomeKit.HMHomeManagerDelegate_Extensions.DidRemoveHome(HomeKit.IHMHomeManagerD
M:HomeKit.HMHomeManagerDelegate_Extensions.DidUpdateAuthorizationStatus(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager,HomeKit.HMHomeManagerAuthorizationStatus)
M:HomeKit.HMHomeManagerDelegate_Extensions.DidUpdateHomes(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager)
M:HomeKit.HMHomeManagerDelegate_Extensions.DidUpdatePrimaryHome(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager)
-M:HomeKit.HMHomeManagerDelegate.DidAddHome(HomeKit.HMHomeManager,HomeKit.HMHome)
-M:HomeKit.HMHomeManagerDelegate.DidReceiveAddAccessoryRequest(HomeKit.HMHomeManager,HomeKit.HMAddAccessoryRequest)
-M:HomeKit.HMHomeManagerDelegate.DidRemoveHome(HomeKit.HMHomeManager,HomeKit.HMHome)
-M:HomeKit.HMHomeManagerDelegate.DidUpdateAuthorizationStatus(HomeKit.HMHomeManager,HomeKit.HMHomeManagerAuthorizationStatus)
-M:HomeKit.HMHomeManagerDelegate.DidUpdateHomes(HomeKit.HMHomeManager)
-M:HomeKit.HMHomeManagerDelegate.DidUpdatePrimaryHome(HomeKit.HMHomeManager)
M:HomeKit.HMHomeManagerEventArgs.#ctor(HomeKit.HMHome)
M:HomeKit.HMHomeRoomAccessoryEventArgs.#ctor(HomeKit.HMRoom,HomeKit.HMAccessory)
M:HomeKit.HMHomeRoomEventArgs.#ctor(HomeKit.HMRoom)
@@ -44184,10 +32185,8 @@ M:HomeKit.HMHomeServiceServiceGroupEventArgs.#ctor(HomeKit.HMService,HomeKit.HMS
M:HomeKit.HMHomeTriggerEventArgs.#ctor(HomeKit.HMTrigger)
M:HomeKit.HMHomeUserEventArgs.#ctor(HomeKit.HMUser)
M:HomeKit.HMHomeZoneEventArgs.#ctor(HomeKit.HMZone)
-M:HomeKit.HMLocationEvent.#ctor(CoreLocation.CLRegion)
M:HomeKit.HMLocationEvent.Copy(Foundation.NSZone)
M:HomeKit.HMLocationEvent.MutableCopy(Foundation.NSZone)
-M:HomeKit.HMLocationEvent.UpdateRegion(CoreLocation.CLRegion,System.Action{Foundation.NSError})
M:HomeKit.HMLocationEvent.UpdateRegionAsync(CoreLocation.CLRegion)
M:HomeKit.HMMatterHome.#ctor(Foundation.NSCoder)
M:HomeKit.HMMatterHome.#ctor(Foundation.NSObjectFlag)
@@ -44217,62 +32216,34 @@ M:HomeKit.HMMatterTopology.#ctor(HomeKit.HMMatterHome[])
M:HomeKit.HMMatterTopology.#ctor(ObjCRuntime.NativeHandle)
M:HomeKit.HMMatterTopology.Copy(Foundation.NSZone)
M:HomeKit.HMMatterTopology.EncodeTo(Foundation.NSCoder)
-M:HomeKit.HMMutableCalendarEvent.#ctor(Foundation.NSDateComponents)
-M:HomeKit.HMMutableCharacteristicEvent.#ctor(HomeKit.HMCharacteristic,Foundation.INSCopying)
M:HomeKit.HMMutableCharacteristicEvent.Copy(Foundation.NSZone)
M:HomeKit.HMMutableCharacteristicEvent.MutableCopy(Foundation.NSZone)
-M:HomeKit.HMMutableCharacteristicThresholdRangeEvent.#ctor(HomeKit.HMCharacteristic,HomeKit.HMNumberRange)
-M:HomeKit.HMMutableDurationEvent.#ctor(System.Double)
-M:HomeKit.HMMutableLocationEvent.#ctor(CoreLocation.CLRegion)
M:HomeKit.HMMutableSignificantTimeEvent.#ctor(HomeKit.HMSignificantEvent,Foundation.NSDateComponents)
M:HomeKit.HMNetworkConfigurationProfile.Dispose(System.Boolean)
M:HomeKit.HMNetworkConfigurationProfileDelegate_Extensions.DidUpdateNetworkAccessMode(HomeKit.IHMNetworkConfigurationProfileDelegate,HomeKit.HMNetworkConfigurationProfile)
-M:HomeKit.HMNetworkConfigurationProfileDelegate.DidUpdateNetworkAccessMode(HomeKit.HMNetworkConfigurationProfile)
-M:HomeKit.HMNumberRange.FromMax(Foundation.NSNumber)
-M:HomeKit.HMNumberRange.FromMin(Foundation.NSNumber)
-M:HomeKit.HMNumberRange.FromRange(Foundation.NSNumber,Foundation.NSNumber)
-M:HomeKit.HMPresenceEvent.#ctor(HomeKit.HMPresenceEventType,HomeKit.HMPresenceEventUserType)
M:HomeKit.HMPresenceEvent.Copy(Foundation.NSZone)
M:HomeKit.HMPresenceEvent.MutableCopy(Foundation.NSZone)
-M:HomeKit.HMRoom.UpdateName(System.String,System.Action{Foundation.NSError})
M:HomeKit.HMRoom.UpdateNameAsync(System.String)
-M:HomeKit.HMService.#ctor
M:HomeKit.HMService.Dispose(System.Boolean)
M:HomeKit.HMService.UpdateAssociatedServiceType(HomeKit.HMServiceType,System.Action{Foundation.NSError})
M:HomeKit.HMService.UpdateAssociatedServiceTypeAsync(HomeKit.HMServiceType)
-M:HomeKit.HMService.UpdateName(System.String,System.Action{Foundation.NSError})
M:HomeKit.HMService.UpdateNameAsync(System.String)
-M:HomeKit.HMServiceGroup.AddService(HomeKit.HMService,System.Action{Foundation.NSError})
M:HomeKit.HMServiceGroup.AddServiceAsync(HomeKit.HMService)
-M:HomeKit.HMServiceGroup.RemoveService(HomeKit.HMService,System.Action{Foundation.NSError})
M:HomeKit.HMServiceGroup.RemoveServiceAsync(HomeKit.HMService)
-M:HomeKit.HMServiceGroup.UpdateName(System.String,System.Action{Foundation.NSError})
M:HomeKit.HMServiceGroup.UpdateNameAsync(System.String)
M:HomeKit.HMServiceTypeExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
M:HomeKit.HMSignificantTimeEvent.#ctor(HomeKit.HMSignificantEvent,Foundation.NSDateComponents)
M:HomeKit.HMSignificantTimeEvent.Copy(Foundation.NSZone)
M:HomeKit.HMSignificantTimeEvent.MutableCopy(Foundation.NSZone)
-M:HomeKit.HMTimerTrigger.#ctor(System.String,Foundation.NSDate,Foundation.NSDateComponents)
-M:HomeKit.HMTimerTrigger.#ctor(System.String,Foundation.NSDate,Foundation.NSTimeZone,Foundation.NSDateComponents,Foundation.NSCalendar)
-M:HomeKit.HMTimerTrigger.UpdateFireDate(Foundation.NSDate,System.Action{Foundation.NSError})
M:HomeKit.HMTimerTrigger.UpdateFireDateAsync(Foundation.NSDate)
-M:HomeKit.HMTimerTrigger.UpdateRecurrence(Foundation.NSDateComponents,System.Action{Foundation.NSError})
M:HomeKit.HMTimerTrigger.UpdateRecurrenceAsync(Foundation.NSDateComponents)
-M:HomeKit.HMTimerTrigger.UpdateTimeZone(Foundation.NSTimeZone,System.Action{Foundation.NSError})
M:HomeKit.HMTimerTrigger.UpdateTimeZoneAsync(Foundation.NSTimeZone)
-M:HomeKit.HMTrigger.AddActionSet(HomeKit.HMActionSet,System.Action{Foundation.NSError})
M:HomeKit.HMTrigger.AddActionSetAsync(HomeKit.HMActionSet)
-M:HomeKit.HMTrigger.Enable(System.Boolean,System.Action{Foundation.NSError})
M:HomeKit.HMTrigger.EnableAsync(System.Boolean)
-M:HomeKit.HMTrigger.RemoveActionSet(HomeKit.HMActionSet,System.Action{Foundation.NSError})
M:HomeKit.HMTrigger.RemoveActionSetAsync(HomeKit.HMActionSet)
-M:HomeKit.HMTrigger.UpdateName(System.String,System.Action{Foundation.NSError})
M:HomeKit.HMTrigger.UpdateNameAsync(System.String)
-M:HomeKit.HMZone.AddRoom(HomeKit.HMRoom,System.Action{Foundation.NSError})
M:HomeKit.HMZone.AddRoomAsync(HomeKit.HMRoom)
-M:HomeKit.HMZone.RemoveRoom(HomeKit.HMRoom,System.Action{Foundation.NSError})
M:HomeKit.HMZone.RemoveRoomAsync(HomeKit.HMRoom)
-M:HomeKit.HMZone.UpdateName(System.String,System.Action{Foundation.NSError})
M:HomeKit.HMZone.UpdateNameAsync(System.String)
M:HomeKit.IHMAccessoryBrowserDelegate.DidFindNewAccessory(HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
M:HomeKit.IHMAccessoryBrowserDelegate.DidRemoveNewAccessory(HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
@@ -44348,73 +32319,24 @@ M:IdentityLookup.ILMessageFilterQueryResponse.EncodeTo(Foundation.NSCoder)
M:IdentityLookup.ILNetworkResponse.EncodeTo(Foundation.NSCoder)
M:IdentityLookupUI.ILClassificationUIExtensionViewController.GetClassificationResponse(IdentityLookup.ILClassificationRequest)
M:IdentityLookupUI.ILClassificationUIExtensionViewController.Prepare(IdentityLookup.ILClassificationRequest)
-M:ImageCaptureCore.ICCameraDevice.CancelDelete
-M:ImageCaptureCore.ICCameraDevice.CancelDownload
-M:ImageCaptureCore.ICCameraDevice.GetFiles(System.String)
-M:ImageCaptureCore.ICCameraDevice.RequestDeleteFiles(ImageCaptureCore.ICCameraItem[])
-M:ImageCaptureCore.ICCameraDevice.RequestDisableTethering
M:ImageCaptureCore.ICCameraDevice.RequestDownloadFile(ImageCaptureCore.ICCameraFile,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},ImageCaptureCore.ICCameraDevice.DidDownloadDataDelegate)
-M:ImageCaptureCore.ICCameraDevice.RequestDownloadFile(ImageCaptureCore.ICCameraFile,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},ImageCaptureCore.IICCameraDeviceDownloadDelegate,ObjCRuntime.Selector,System.IntPtr)
-M:ImageCaptureCore.ICCameraDevice.RequestEnableTethering
-M:ImageCaptureCore.ICCameraDevice.RequestReadDataFromFile(ImageCaptureCore.ICCameraFile,System.Int64,System.Int64,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:ImageCaptureCore.ICCameraDevice.RequestReadDataFromFile(ImageCaptureCore.ICCameraFile,System.Int64,System.Int64,ImageCaptureCore.ICCameraDevice.DidReadDataDelegate)
-M:ImageCaptureCore.ICCameraDevice.RequestSendPtpCommand(Foundation.NSData,Foundation.NSData,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:ImageCaptureCore.ICCameraDevice.RequestSendPtpCommand(Foundation.NSData,Foundation.NSData,ImageCaptureCore.ICCameraDevice.DidSendPtpDelegate)
-M:ImageCaptureCore.ICCameraDevice.RequestSyncClock
-M:ImageCaptureCore.ICCameraDevice.RequestTakePicture
-M:ImageCaptureCore.ICCameraDevice.RequestUploadFile(Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
M:ImageCaptureCore.ICCameraDeviceDelegate_Extensions.DidAddItems(ImageCaptureCore.IICCameraDeviceDelegate,ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem[])
M:ImageCaptureCore.ICCameraDeviceDelegate_Extensions.DidReceiveThumbnailForItem(ImageCaptureCore.IICCameraDeviceDelegate,ImageCaptureCore.ICCameraDevice,System.IntPtr,ImageCaptureCore.ICCameraItem,Foundation.NSError)
M:ImageCaptureCore.ICCameraDeviceDelegate_Extensions.DidRemoveItems(ImageCaptureCore.IICCameraDeviceDelegate,ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem[])
M:ImageCaptureCore.ICCameraDeviceDelegate_Extensions.ShouldGetMetadata(ImageCaptureCore.IICCameraDeviceDelegate,ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
M:ImageCaptureCore.ICCameraDeviceDelegate_Extensions.ShouldGetThumbnail(ImageCaptureCore.IICCameraDeviceDelegate,ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidAddItem(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidAddItems(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem[])
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidBecomeReady(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidBecomeReadyWithCompleteContentCatalog(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidChangeCapability(ImageCaptureCore.ICCameraDevice)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidChangeName(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidChangeSharingState(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidCloseSession(ImageCaptureCore.ICDevice,Foundation.NSError)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidCompleteDeleteFiles(ImageCaptureCore.ICCameraDevice,Foundation.NSError)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidEncounterError(ImageCaptureCore.ICDevice,Foundation.NSError)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidOpenSession(ImageCaptureCore.ICDevice,Foundation.NSError)
M:ImageCaptureCore.ICCameraDeviceDelegate.DidReceiveButtonPress(ImageCaptureCore.ICDevice,Foundation.NSString)
M:ImageCaptureCore.ICCameraDeviceDelegate.DidReceiveCustomNotification(ImageCaptureCore.ICDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSData)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidReceiveMetadata(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidReceivePtpEvent(ImageCaptureCore.ICCameraDevice,Foundation.NSData)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidReceiveStatusInformation(ImageCaptureCore.ICDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidReceiveThumbnail(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidReceiveThumbnailForItem(ImageCaptureCore.ICCameraDevice,System.IntPtr,ImageCaptureCore.ICCameraItem,Foundation.NSError)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidRemoveDevice(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidRemoveItem(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidRemoveItems(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem[])
-M:ImageCaptureCore.ICCameraDeviceDelegate.DidRenameItems(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem[])
-M:ImageCaptureCore.ICCameraDeviceDelegate.ShouldGetMetadata(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
-M:ImageCaptureCore.ICCameraDeviceDelegate.ShouldGetThumbnail(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
M:ImageCaptureCore.ICCameraDeviceDownloadDelegate_Extensions.DidDownloadFile(ImageCaptureCore.IICCameraDeviceDownloadDelegate,ImageCaptureCore.ICCameraFile,Foundation.NSError,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr)
M:ImageCaptureCore.ICCameraDeviceDownloadDelegate_Extensions.DidReceiveDownloadProgress(ImageCaptureCore.IICCameraDeviceDownloadDelegate,ImageCaptureCore.ICCameraFile,System.Int64,System.Int64)
-M:ImageCaptureCore.ICCameraDeviceDownloadDelegate.DidDownloadFile(ImageCaptureCore.ICCameraFile,Foundation.NSError,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr)
-M:ImageCaptureCore.ICCameraDeviceDownloadDelegate.DidReceiveDownloadProgress(ImageCaptureCore.ICCameraFile,System.Int64,System.Int64)
M:ImageCaptureCore.ICDevice.Dispose(System.Boolean)
-M:ImageCaptureCore.ICDevice.RequestCloseSession
-M:ImageCaptureCore.ICDevice.RequestEjectOrDisconnect
-M:ImageCaptureCore.ICDevice.RequestOpenSession
-M:ImageCaptureCore.ICDevice.RequestSendMessage(System.UInt32,Foundation.NSData,System.UInt32,Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:ImageCaptureCore.ICDevice.RequestYield
M:ImageCaptureCore.ICDeviceBrowser.Dispose(System.Boolean)
-M:ImageCaptureCore.ICDeviceBrowser.Start
-M:ImageCaptureCore.ICDeviceBrowser.Stop
M:ImageCaptureCore.ICDeviceBrowserDelegate_Extensions.DeviceDidChangeName(ImageCaptureCore.IICDeviceBrowserDelegate,ImageCaptureCore.ICDeviceBrowser,ImageCaptureCore.ICDevice)
M:ImageCaptureCore.ICDeviceBrowserDelegate_Extensions.DeviceDidChangeSharingState(ImageCaptureCore.IICDeviceBrowserDelegate,ImageCaptureCore.ICDeviceBrowser,ImageCaptureCore.ICDevice)
M:ImageCaptureCore.ICDeviceBrowserDelegate_Extensions.DidEnumerateLocalDevices(ImageCaptureCore.IICDeviceBrowserDelegate,ImageCaptureCore.ICDeviceBrowser)
M:ImageCaptureCore.ICDeviceBrowserDelegate_Extensions.RequestsSelectDevice(ImageCaptureCore.IICDeviceBrowserDelegate,ImageCaptureCore.ICDeviceBrowser,ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICDeviceBrowserDelegate.DeviceDidChangeName(ImageCaptureCore.ICDeviceBrowser,ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICDeviceBrowserDelegate.DeviceDidChangeSharingState(ImageCaptureCore.ICDeviceBrowser,ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICDeviceBrowserDelegate.DidAddDevice(ImageCaptureCore.ICDeviceBrowser,ImageCaptureCore.ICDevice,System.Boolean)
-M:ImageCaptureCore.ICDeviceBrowserDelegate.DidEnumerateLocalDevices(ImageCaptureCore.ICDeviceBrowser)
-M:ImageCaptureCore.ICDeviceBrowserDelegate.DidRemoveDevice(ImageCaptureCore.ICDeviceBrowser,ImageCaptureCore.ICDevice,System.Boolean)
-M:ImageCaptureCore.ICDeviceBrowserDelegate.RequestsSelectDevice(ImageCaptureCore.ICDeviceBrowser,ImageCaptureCore.ICDevice)
M:ImageCaptureCore.ICDeviceDelegate_Extensions.DidBecomeReady(ImageCaptureCore.IICDeviceDelegate,ImageCaptureCore.ICDevice)
M:ImageCaptureCore.ICDeviceDelegate_Extensions.DidChangeName(ImageCaptureCore.IICDeviceDelegate,ImageCaptureCore.ICDevice)
M:ImageCaptureCore.ICDeviceDelegate_Extensions.DidChangeSharingState(ImageCaptureCore.IICDeviceDelegate,ImageCaptureCore.ICDevice)
@@ -44424,21 +32346,8 @@ M:ImageCaptureCore.ICDeviceDelegate_Extensions.DidOpenSession(ImageCaptureCore.I
M:ImageCaptureCore.ICDeviceDelegate_Extensions.DidReceiveButtonPress(ImageCaptureCore.IICDeviceDelegate,ImageCaptureCore.ICDevice,Foundation.NSString)
M:ImageCaptureCore.ICDeviceDelegate_Extensions.DidReceiveCustomNotification(ImageCaptureCore.IICDeviceDelegate,ImageCaptureCore.ICDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSData)
M:ImageCaptureCore.ICDeviceDelegate_Extensions.DidReceiveStatusInformation(ImageCaptureCore.IICDeviceDelegate,ImageCaptureCore.ICDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:ImageCaptureCore.ICDeviceDelegate.DidBecomeReady(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICDeviceDelegate.DidChangeName(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICDeviceDelegate.DidChangeSharingState(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICDeviceDelegate.DidCloseSession(ImageCaptureCore.ICDevice,Foundation.NSError)
-M:ImageCaptureCore.ICDeviceDelegate.DidEncounterError(ImageCaptureCore.ICDevice,Foundation.NSError)
-M:ImageCaptureCore.ICDeviceDelegate.DidOpenSession(ImageCaptureCore.ICDevice,Foundation.NSError)
M:ImageCaptureCore.ICDeviceDelegate.DidReceiveButtonPress(ImageCaptureCore.ICDevice,Foundation.NSString)
M:ImageCaptureCore.ICDeviceDelegate.DidReceiveCustomNotification(ImageCaptureCore.ICDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSData)
-M:ImageCaptureCore.ICDeviceDelegate.DidReceiveStatusInformation(ImageCaptureCore.ICDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:ImageCaptureCore.ICDeviceDelegate.DidRemoveDevice(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICScannerDevice.CancelScan
-M:ImageCaptureCore.ICScannerDevice.RequestOpenSession(System.String,System.String)
-M:ImageCaptureCore.ICScannerDevice.RequestOverviewScan
-M:ImageCaptureCore.ICScannerDevice.RequestScan
-M:ImageCaptureCore.ICScannerDevice.RequestSelectFunctionalUnit(ImageCaptureCore.ICScannerFunctionalUnitType)
M:ImageCaptureCore.ICScannerDeviceDelegate_Extensions.DidBecomeAvailable(ImageCaptureCore.IICScannerDeviceDelegate,ImageCaptureCore.ICScannerDevice)
M:ImageCaptureCore.ICScannerDeviceDelegate_Extensions.DidCompleteOverviewScan(ImageCaptureCore.IICScannerDeviceDelegate,ImageCaptureCore.ICScannerDevice,Foundation.NSError)
M:ImageCaptureCore.ICScannerDeviceDelegate_Extensions.DidCompleteScan(ImageCaptureCore.IICScannerDeviceDelegate,ImageCaptureCore.ICScannerDevice,Foundation.NSError)
@@ -44446,23 +32355,8 @@ M:ImageCaptureCore.ICScannerDeviceDelegate_Extensions.DidScanToBandData(ImageCap
M:ImageCaptureCore.ICScannerDeviceDelegate_Extensions.DidScanToUrl(ImageCaptureCore.IICScannerDeviceDelegate,ImageCaptureCore.ICScannerDevice,Foundation.NSUrl,Foundation.NSData)
M:ImageCaptureCore.ICScannerDeviceDelegate_Extensions.DidScanToUrl(ImageCaptureCore.IICScannerDeviceDelegate,ImageCaptureCore.ICScannerDevice,Foundation.NSUrl)
M:ImageCaptureCore.ICScannerDeviceDelegate_Extensions.DidSelectFunctionalUnit(ImageCaptureCore.IICScannerDeviceDelegate,ImageCaptureCore.ICScannerDevice,ImageCaptureCore.ICScannerFunctionalUnit,Foundation.NSError)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidBecomeAvailable(ImageCaptureCore.ICScannerDevice)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidBecomeReady(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidChangeName(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidChangeSharingState(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidCloseSession(ImageCaptureCore.ICDevice,Foundation.NSError)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidCompleteOverviewScan(ImageCaptureCore.ICScannerDevice,Foundation.NSError)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidCompleteScan(ImageCaptureCore.ICScannerDevice,Foundation.NSError)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidEncounterError(ImageCaptureCore.ICDevice,Foundation.NSError)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidOpenSession(ImageCaptureCore.ICDevice,Foundation.NSError)
M:ImageCaptureCore.ICScannerDeviceDelegate.DidReceiveButtonPress(ImageCaptureCore.ICDevice,Foundation.NSString)
M:ImageCaptureCore.ICScannerDeviceDelegate.DidReceiveCustomNotification(ImageCaptureCore.ICDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSData)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidReceiveStatusInformation(ImageCaptureCore.ICDevice,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidRemoveDevice(ImageCaptureCore.ICDevice)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidScanToBandData(ImageCaptureCore.ICScannerDevice,ImageCaptureCore.ICScannerBandData)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidScanToUrl(ImageCaptureCore.ICScannerDevice,Foundation.NSUrl,Foundation.NSData)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidScanToUrl(ImageCaptureCore.ICScannerDevice,Foundation.NSUrl)
-M:ImageCaptureCore.ICScannerDeviceDelegate.DidSelectFunctionalUnit(ImageCaptureCore.ICScannerDevice,ImageCaptureCore.ICScannerFunctionalUnit,Foundation.NSError)
M:ImageCaptureCore.ICScannerFeatureEnumeration.Dispose(System.Boolean)
M:ImageCaptureCore.IICCameraDeviceDelegate.DidAddItem(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem)
M:ImageCaptureCore.IICCameraDeviceDelegate.DidAddItems(ImageCaptureCore.ICCameraDevice,ImageCaptureCore.ICCameraItem[])
@@ -46329,22 +34223,9 @@ 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@)
@@ -46361,76 +34242,8 @@ 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.Compare(JavaScriptCore.JSValue)
-M:JavaScriptCore.JSValue.Compare(System.Double)
-M:JavaScriptCore.JSValue.Compare(System.Int64)
-M:JavaScriptCore.JSValue.Compare(System.UInt64)
-M:JavaScriptCore.JSValue.Construct(JavaScriptCore.JSValue[])
-M:JavaScriptCore.JSValue.CreateArray(JavaScriptCore.JSContext)
-M:JavaScriptCore.JSValue.CreateError(System.String,JavaScriptCore.JSContext)
-M:JavaScriptCore.JSValue.CreateNewBigInt(System.Double,JavaScriptCore.JSContext)
-M:JavaScriptCore.JSValue.CreateNewBigInt(System.Int64,JavaScriptCore.JSContext)
-M:JavaScriptCore.JSValue.CreateNewBigInt(System.String,JavaScriptCore.JSContext)
-M:JavaScriptCore.JSValue.CreateNewBigInt(System.UInt64,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.ToInt64
-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.ToUInt64
-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)
@@ -46511,49 +34324,29 @@ 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)
@@ -46597,33 +34390,17 @@ M:MapKit.IMKReverseGeocoderDelegate.FailedWithError(MapKit.MKReverseGeocoder,Fou
M:MapKit.IMKReverseGeocoderDelegate.FoundWithPlacemark(MapKit.MKReverseGeocoder,MapKit.MKPlacemark)
M:MapKit.MKAddressFilter.Copy(Foundation.NSZone)
M:MapKit.MKAddressFilter.EncodeTo(Foundation.NSCoder)
-M:MapKit.MKAddressFilter.Excludes(MapKit.MKAddressFilterOption)
-M:MapKit.MKAddressFilter.Includes(MapKit.MKAddressFilterOption)
M:MapKit.MKAnnotation_Extensions.GetSubtitle(MapKit.IMKAnnotation)
M:MapKit.MKAnnotation_Extensions.GetTitle(MapKit.IMKAnnotation)
M:MapKit.MKAnnotation_Extensions.SetCoordinate(MapKit.IMKAnnotation,CoreLocation.CLLocationCoordinate2D)
-M:MapKit.MKAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D)
M:MapKit.MKAnnotationEventArgs.#ctor(MapKit.IMKAnnotation)
M:MapKit.MKAnnotationView.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKAnnotationView.#ctor(MapKit.IMKAnnotation,System.String)
M:MapKit.MKAnnotationView.Dispose(System.Boolean)
M:MapKit.MKAnnotationView.MKAnnotationViewAppearance.#ctor(System.IntPtr)
-M:MapKit.MKAnnotationView.PrepareForDisplay
-M:MapKit.MKAnnotationView.PrepareForReuse
-M:MapKit.MKAnnotationView.SetDragState(MapKit.MKAnnotationViewDragState,System.Boolean)
-M:MapKit.MKAnnotationView.SetSelected(System.Boolean,System.Boolean)
M:MapKit.MKAnnotationViewEventArgs.#ctor(MapKit.MKAnnotationView)
-M:MapKit.MKCircle.Circle(CoreLocation.CLLocationCoordinate2D,System.Double)
-M:MapKit.MKCircle.CircleWithMapRect(MapKit.MKMapRect)
-M:MapKit.MKCircle.Intersects(MapKit.MKMapRect)
-M:MapKit.MKCircleRenderer.#ctor(MapKit.MKCircle)
M:MapKit.MKCircleView.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKCircleView.#ctor(MapKit.MKCircle)
M:MapKit.MKCircleView.MKCircleViewAppearance.#ctor(System.IntPtr)
-M:MapKit.MKClusterAnnotation.#ctor(MapKit.IMKAnnotation[])
-M:MapKit.MKClusterAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D)
M:MapKit.MKCompassButton.Dispose(System.Boolean)
-M:MapKit.MKCompassButton.FromMapView(MapKit.MKMapView)
M:MapKit.MKCompassButton.MKCompassButtonAppearance.#ctor(System.IntPtr)
M:MapKit.MKCoordinateRegion.#ctor(CoreLocation.CLLocationCoordinate2D,MapKit.MKCoordinateSpan)
M:MapKit.MKCoordinateRegion.FromDistance(CoreLocation.CLLocationCoordinate2D,System.Double,System.Double)
@@ -46633,58 +34410,24 @@ M:MapKit.MKCoordinateSpan.#ctor(System.Double,System.Double)
M:MapKit.MKCoordinateSpan.ToString
M:MapKit.MKDidAddOverlayRenderersEventArgs.#ctor(MapKit.MKOverlayRenderer[])
M:MapKit.MKDidFinishRenderingMapEventArgs.#ctor(System.Boolean)
-M:MapKit.MKDirections.#ctor(MapKit.MKDirectionsRequest)
-M:MapKit.MKDirections.CalculateDirections(MapKit.MKDirectionsHandler)
M:MapKit.MKDirections.CalculateDirectionsAsync
-M:MapKit.MKDirections.CalculateETA(MapKit.MKETAHandler)
M:MapKit.MKDirections.CalculateETAAsync
-M:MapKit.MKDirections.Cancel
-M:MapKit.MKDirectionsRequest.#ctor(Foundation.NSUrl)
-M:MapKit.MKDirectionsRequest.IsDirectionsRequestUrl(Foundation.NSUrl)
-M:MapKit.MKDistanceFormatter.DistanceFromString(System.String)
-M:MapKit.MKDistanceFormatter.StringFromDistance(System.Double)
M:MapKit.MKGeodesicPolyline.FromCoordinates(CoreLocation.CLLocationCoordinate2D[])
M:MapKit.MKGeodesicPolyline.FromPoints(MapKit.MKMapPoint[])
-M:MapKit.MKGeoJsonDecoder.GeoJsonObjects(Foundation.NSData,Foundation.NSError@)
M:MapKit.MKGeometry.MapPointsPerMeterAtLatitude(System.Double)
M:MapKit.MKGeometry.MetersBetweenMapPoints(MapKit.MKMapPoint,MapKit.MKMapPoint)
M:MapKit.MKGeometry.MetersPerMapPointAtLatitude(System.Double)
-M:MapKit.MKGradientPolylineRenderer.SetColors(AppKit.NSColor[],System.Runtime.InteropServices.NFloat[])
-M:MapKit.MKGradientPolylineRenderer.SetColors(UIKit.UIColor[],System.Runtime.InteropServices.NFloat[])
-M:MapKit.MKHybridMapConfiguration.#ctor(MapKit.MKMapElevationStyle)
-M:MapKit.MKImageryMapConfiguration.#ctor(MapKit.MKMapElevationStyle)
M:MapKit.MKLaunchOptions.#ctor
-M:MapKit.MKLocalPointsOfInterestRequest.#ctor(CoreLocation.CLLocationCoordinate2D,System.Double)
-M:MapKit.MKLocalPointsOfInterestRequest.#ctor(MapKit.MKCoordinateRegion)
M:MapKit.MKLocalPointsOfInterestRequest.Copy(Foundation.NSZone)
-M:MapKit.MKLocalSearch.#ctor(MapKit.MKLocalPointsOfInterestRequest)
-M:MapKit.MKLocalSearch.#ctor(MapKit.MKLocalSearchRequest)
-M:MapKit.MKLocalSearch.Cancel
-M:MapKit.MKLocalSearch.Start(MapKit.MKLocalSearchCompletionHandler)
M:MapKit.MKLocalSearch.StartAsync
M:MapKit.MKLocalSearch.StartAsync(System.Threading.CancellationToken)
-M:MapKit.MKLocalSearchCompleter.Cancel
M:MapKit.MKLocalSearchCompleter.Dispose(System.Boolean)
M:MapKit.MKLocalSearchCompleterDelegate_Extensions.DidFail(MapKit.IMKLocalSearchCompleterDelegate,MapKit.MKLocalSearchCompleter,Foundation.NSError)
M:MapKit.MKLocalSearchCompleterDelegate_Extensions.DidUpdateResults(MapKit.IMKLocalSearchCompleterDelegate,MapKit.MKLocalSearchCompleter)
-M:MapKit.MKLocalSearchCompleterDelegate.DidFail(MapKit.MKLocalSearchCompleter,Foundation.NSError)
-M:MapKit.MKLocalSearchCompleterDelegate.DidUpdateResults(MapKit.MKLocalSearchCompleter)
-M:MapKit.MKLocalSearchRequest.#ctor(MapKit.MKLocalSearchCompletion)
-M:MapKit.MKLocalSearchRequest.#ctor(System.String,MapKit.MKCoordinateRegion)
-M:MapKit.MKLocalSearchRequest.#ctor(System.String)
M:MapKit.MKLocalSearchRequest.Copy(Foundation.NSZone)
M:MapKit.MKLookAroundScene.Copy(Foundation.NSZone)
-M:MapKit.MKLookAroundSceneRequest.#ctor(CoreLocation.CLLocationCoordinate2D)
-M:MapKit.MKLookAroundSceneRequest.#ctor(MapKit.MKMapItem)
-M:MapKit.MKLookAroundSceneRequest.Cancel
-M:MapKit.MKLookAroundSceneRequest.GetScene(System.Action{MapKit.MKLookAroundScene,Foundation.NSError})
M:MapKit.MKLookAroundSceneRequest.GetSceneAsync
-M:MapKit.MKLookAroundSnapshotter.#ctor(MapKit.MKLookAroundScene,MapKit.MKLookAroundSnapshotOptions)
-M:MapKit.MKLookAroundSnapshotter.Cancel
-M:MapKit.MKLookAroundSnapshotter.GetSnapshot(System.Action{MapKit.MKLookAroundSnapshot,Foundation.NSError})
M:MapKit.MKLookAroundSnapshotter.GetSnapshotAsync
-M:MapKit.MKLookAroundViewController.#ctor(MapKit.MKLookAroundScene)
-M:MapKit.MKLookAroundViewController.#ctor(System.String,Foundation.NSBundle)
M:MapKit.MKLookAroundViewController.Dispose(System.Boolean)
M:MapKit.MKLookAroundViewController.EncodeTo(Foundation.NSCoder)
M:MapKit.MKLookAroundViewControllerDelegate_Extensions.DidDismissFullScreen(MapKit.IMKLookAroundViewControllerDelegate,MapKit.MKLookAroundViewController)
@@ -46693,65 +34436,31 @@ M:MapKit.MKLookAroundViewControllerDelegate_Extensions.DidUpdateScene(MapKit.IMK
M:MapKit.MKLookAroundViewControllerDelegate_Extensions.WillDismissFullScreen(MapKit.IMKLookAroundViewControllerDelegate,MapKit.MKLookAroundViewController)
M:MapKit.MKLookAroundViewControllerDelegate_Extensions.WillPresentFullScreen(MapKit.IMKLookAroundViewControllerDelegate,MapKit.MKLookAroundViewController)
M:MapKit.MKLookAroundViewControllerDelegate_Extensions.WillUpdateScene(MapKit.IMKLookAroundViewControllerDelegate,MapKit.MKLookAroundViewController)
-M:MapKit.MKLookAroundViewControllerDelegate.DidDismissFullScreen(MapKit.MKLookAroundViewController)
-M:MapKit.MKLookAroundViewControllerDelegate.DidPresentFullScreen(MapKit.MKLookAroundViewController)
-M:MapKit.MKLookAroundViewControllerDelegate.DidUpdateScene(MapKit.MKLookAroundViewController)
-M:MapKit.MKLookAroundViewControllerDelegate.WillDismissFullScreen(MapKit.MKLookAroundViewController)
-M:MapKit.MKLookAroundViewControllerDelegate.WillPresentFullScreen(MapKit.MKLookAroundViewController)
-M:MapKit.MKLookAroundViewControllerDelegate.WillUpdateScene(MapKit.MKLookAroundViewController)
-M:MapKit.MKMapCamera.CameraLookingAt(MapKit.MKMapItem,CoreGraphics.CGSize,System.Boolean)
-M:MapKit.MKMapCamera.CameraLookingAtCenterCoordinate(CoreLocation.CLLocationCoordinate2D,CoreLocation.CLLocationCoordinate2D,System.Double)
-M:MapKit.MKMapCamera.CameraLookingAtCenterCoordinate(CoreLocation.CLLocationCoordinate2D,System.Double,System.Runtime.InteropServices.NFloat,System.Double)
M:MapKit.MKMapCamera.Copy(Foundation.NSZone)
M:MapKit.MKMapCamera.EncodeTo(Foundation.NSCoder)
-M:MapKit.MKMapCameraBoundary.#ctor(MapKit.MKCoordinateRegion)
-M:MapKit.MKMapCameraBoundary.#ctor(MapKit.MKMapRect)
M:MapKit.MKMapCameraBoundary.Copy(Foundation.NSZone)
M:MapKit.MKMapCameraBoundary.EncodeTo(Foundation.NSCoder)
M:MapKit.MKMapCameraZoomRange.#ctor(System.Double,MapKit.MKMapCameraZoomRangeType)
-M:MapKit.MKMapCameraZoomRange.#ctor(System.Double,System.Double)
M:MapKit.MKMapCameraZoomRange.#ctor(System.Double)
M:MapKit.MKMapCameraZoomRange.Copy(Foundation.NSZone)
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(MapKit.MKPlacemark)
M:MapKit.MKMapItem.EncodeTo(Foundation.NSCoder)
M:MapKit.MKMapItem.GetItemProviderVisibilityForTypeIdentifier(System.String)
M:MapKit.MKMapItem.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
M:MapKit.MKMapItem.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:MapKit.MKMapItem.LoadDataAsync(System.String,Foundation.NSProgress@)
M:MapKit.MKMapItem.LoadDataAsync(System.String)
-M:MapKit.MKMapItem.MapItemForCurrentLocation
-M:MapKit.MKMapItem.OpenInMaps(Foundation.NSDictionary,System.Action{System.Boolean})
-M:MapKit.MKMapItem.OpenInMaps(Foundation.NSDictionary,UIKit.UIScene,System.Action{Foundation.NSError})
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[],Foundation.NSDictionary,System.Action{System.Boolean})
-M:MapKit.MKMapItem.OpenMaps(MapKit.MKMapItem[],Foundation.NSDictionary,UIKit.UIScene,System.Action{Foundation.NSError})
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.MKMapItemAnnotation.#ctor(MapKit.MKMapItem)
-M:MapKit.MKMapItemAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D)
-M:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle.CreateAutomatic(AppKit.NSViewController)
-M:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle.CreateAutomatic(UIKit.UIViewController)
-M:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle.CreateCallout(MapKit.MKMapItemDetailSelectionAccessoryCalloutStyle)
-M:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle.CreateSheet(AppKit.NSViewController)
-M:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle.CreateSheet(UIKit.UIViewController)
-M:MapKit.MKMapItemDetailViewController.#ctor(MapKit.MKMapItem,System.Boolean)
-M:MapKit.MKMapItemDetailViewController.#ctor(MapKit.MKMapItem)
M:MapKit.MKMapItemDetailViewController.Dispose(System.Boolean)
-M:MapKit.MKMapItemDetailViewControllerDelegate.DidFinish(MapKit.MKMapItemDetailViewController)
-M:MapKit.MKMapItemIdentifier.#ctor(System.String)
M:MapKit.MKMapItemIdentifier.Copy(Foundation.NSZone)
M:MapKit.MKMapItemIdentifier.EncodeTo(Foundation.NSCoder)
-M:MapKit.MKMapItemRequest.#ctor(MapKit.MKMapFeatureAnnotation)
-M:MapKit.MKMapItemRequest.#ctor(MapKit.MKMapItemIdentifier)
-M:MapKit.MKMapItemRequest.Cancel
-M:MapKit.MKMapItemRequest.GetMapItem(System.Action{MapKit.MKMapItem,Foundation.NSError})
M:MapKit.MKMapItemRequest.GetMapItemAsync
M:MapKit.MKMapPoint.#ctor(System.Double,System.Double)
M:MapKit.MKMapPoint.Equals(System.Object)
@@ -46783,12 +34492,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.PointForCoordinate(CoreLocation.CLLocationCoordinate2D)
M:MapKit.MKMapSnapshotOptions.Copy(Foundation.NSZone)
-M:MapKit.MKMapSnapshotter.#ctor(MapKit.MKMapSnapshotOptions)
-M:MapKit.MKMapSnapshotter.Cancel
-M:MapKit.MKMapSnapshotter.Start(CoreFoundation.DispatchQueue,MapKit.MKMapSnapshotCompletionHandler)
-M:MapKit.MKMapSnapshotter.Start(MapKit.MKMapSnapshotCompletionHandler)
M:MapKit.MKMapSnapshotter.StartAsync
M:MapKit.MKMapSnapshotter.StartAsync(CoreFoundation.DispatchQueue)
M:MapKit.MKMapView.#ctor(CoreGraphics.CGRect)
@@ -46814,38 +34518,8 @@ M:MapKit.MKMapView.add_RegionWillChange(System.EventHandler{MapKit.MKMapViewChan
M:MapKit.MKMapView.add_WillStartLoadingMap(System.EventHandler)
M:MapKit.MKMapView.add_WillStartLocatingUser(System.EventHandler)
M:MapKit.MKMapView.add_WillStartRenderingMap(System.EventHandler)
-M:MapKit.MKMapView.AddAnnotation(MapKit.IMKAnnotation)
-M:MapKit.MKMapView.AddAnnotations(MapKit.IMKAnnotation[])
-M:MapKit.MKMapView.AddOverlay(MapKit.IMKOverlay,MapKit.MKOverlayLevel)
-M:MapKit.MKMapView.AddOverlay(MapKit.IMKOverlay)
-M:MapKit.MKMapView.AddOverlays(MapKit.IMKOverlay[],MapKit.MKOverlayLevel)
-M:MapKit.MKMapView.AddOverlays(MapKit.IMKOverlay[])
-M:MapKit.MKMapView.ConvertCoordinate(CoreLocation.CLLocationCoordinate2D,AppKit.NSView)
-M:MapKit.MKMapView.ConvertCoordinate(CoreLocation.CLLocationCoordinate2D,UIKit.UIView)
-M:MapKit.MKMapView.ConvertPoint(CoreGraphics.CGPoint,AppKit.NSView)
-M:MapKit.MKMapView.ConvertPoint(CoreGraphics.CGPoint,UIKit.UIView)
-M:MapKit.MKMapView.ConvertRect(CoreGraphics.CGRect,AppKit.NSView)
-M:MapKit.MKMapView.ConvertRect(CoreGraphics.CGRect,UIKit.UIView)
-M:MapKit.MKMapView.ConvertRegion(MapKit.MKCoordinateRegion,AppKit.NSView)
-M:MapKit.MKMapView.ConvertRegion(MapKit.MKCoordinateRegion,UIKit.UIView)
-M:MapKit.MKMapView.DequeueReusableAnnotation(System.String,MapKit.IMKAnnotation)
-M:MapKit.MKMapView.DequeueReusableAnnotation(System.String)
-M:MapKit.MKMapView.DeselectAnnotation(MapKit.IMKAnnotation,System.Boolean)
M:MapKit.MKMapView.Dispose(System.Boolean)
-M:MapKit.MKMapView.ExchangeOverlay(MapKit.IMKOverlay,MapKit.IMKOverlay)
-M:MapKit.MKMapView.ExchangeOverlays(System.IntPtr,System.IntPtr)
-M:MapKit.MKMapView.GetAnnotations(MapKit.MKMapRect)
-M:MapKit.MKMapView.InsertOverlay(MapKit.IMKOverlay,System.IntPtr)
-M:MapKit.MKMapView.InsertOverlay(MapKit.IMKOverlay,System.UIntPtr,MapKit.MKOverlayLevel)
-M:MapKit.MKMapView.InsertOverlayAbove(MapKit.IMKOverlay,MapKit.IMKOverlay)
-M:MapKit.MKMapView.InsertOverlayBelow(MapKit.IMKOverlay,MapKit.IMKOverlay)
-M:MapKit.MKMapView.MapRectThatFits(MapKit.MKMapRect,AppKit.NSEdgeInsets)
-M:MapKit.MKMapView.MapRectThatFits(MapKit.MKMapRect,UIKit.UIEdgeInsets)
-M:MapKit.MKMapView.MapRectThatFits(MapKit.MKMapRect)
M:MapKit.MKMapView.MKMapViewAppearance.#ctor(System.IntPtr)
-M:MapKit.MKMapView.OverlaysInLevel(MapKit.MKOverlayLevel)
-M:MapKit.MKMapView.RegionThatFits(MapKit.MKCoordinateRegion)
-M:MapKit.MKMapView.Register(ObjCRuntime.Class,System.String)
M:MapKit.MKMapView.Register(System.Type,System.String)
M:MapKit.MKMapView.remove_CalloutAccessoryControlTapped(System.EventHandler{MapKit.MKMapViewAccessoryTappedEventArgs})
M:MapKit.MKMapView.remove_ChangedDragState(System.EventHandler{MapKit.MKMapViewDragStateEventArgs})
@@ -46869,24 +34543,6 @@ M:MapKit.MKMapView.remove_RegionWillChange(System.EventHandler{MapKit.MKMapViewC
M:MapKit.MKMapView.remove_WillStartLoadingMap(System.EventHandler)
M:MapKit.MKMapView.remove_WillStartLocatingUser(System.EventHandler)
M:MapKit.MKMapView.remove_WillStartRenderingMap(System.EventHandler)
-M:MapKit.MKMapView.RemoveAnnotation(MapKit.IMKAnnotation)
-M:MapKit.MKMapView.RemoveAnnotations(MapKit.IMKAnnotation[])
-M:MapKit.MKMapView.RemoveOverlay(MapKit.IMKOverlay)
-M:MapKit.MKMapView.RemoveOverlays(MapKit.IMKOverlay[])
-M:MapKit.MKMapView.RendererForOverlay(MapKit.IMKOverlay)
-M:MapKit.MKMapView.SelectAnnotation(MapKit.IMKAnnotation,System.Boolean)
-M:MapKit.MKMapView.SetCamera(MapKit.MKMapCamera,System.Boolean)
-M:MapKit.MKMapView.SetCameraBoundary(MapKit.MKMapCameraBoundary,System.Boolean)
-M:MapKit.MKMapView.SetCameraZoomRange(MapKit.MKMapCameraZoomRange,System.Boolean)
-M:MapKit.MKMapView.SetCenterCoordinate(CoreLocation.CLLocationCoordinate2D,System.Boolean)
-M:MapKit.MKMapView.SetRegion(MapKit.MKCoordinateRegion,System.Boolean)
-M:MapKit.MKMapView.SetUserTrackingMode(MapKit.MKUserTrackingMode,System.Boolean)
-M:MapKit.MKMapView.SetVisibleMapRect(MapKit.MKMapRect,AppKit.NSEdgeInsets,System.Boolean)
-M:MapKit.MKMapView.SetVisibleMapRect(MapKit.MKMapRect,System.Boolean)
-M:MapKit.MKMapView.SetVisibleMapRect(MapKit.MKMapRect,UIKit.UIEdgeInsets,System.Boolean)
-M:MapKit.MKMapView.ShowAnnotations(MapKit.IMKAnnotation[],System.Boolean)
-M:MapKit.MKMapView.ViewForAnnotation(MapKit.IMKAnnotation)
-M:MapKit.MKMapView.ViewForOverlay(MapKit.IMKOverlay)
M:MapKit.MKMapViewAccessoryTappedEventArgs.#ctor(MapKit.MKAnnotationView,UIKit.UIControl)
M:MapKit.MKMapViewAnnotationEventArgs.#ctor(MapKit.MKAnnotationView[])
M:MapKit.MKMapViewChangeEventArgs.#ctor(System.Boolean)
@@ -46917,158 +34573,51 @@ M:MapKit.MKMapViewDelegate_Extensions.RegionWillChange(MapKit.IMKMapViewDelegate
M:MapKit.MKMapViewDelegate_Extensions.WillStartLoadingMap(MapKit.IMKMapViewDelegate,MapKit.MKMapView)
M:MapKit.MKMapViewDelegate_Extensions.WillStartLocatingUser(MapKit.IMKMapViewDelegate,MapKit.MKMapView)
M:MapKit.MKMapViewDelegate_Extensions.WillStartRenderingMap(MapKit.IMKMapViewDelegate,MapKit.MKMapView)
-M:MapKit.MKMapViewDelegate.CalloutAccessoryControlTapped(MapKit.MKMapView,MapKit.MKAnnotationView,UIKit.UIControl)
-M:MapKit.MKMapViewDelegate.ChangedDragState(MapKit.MKMapView,MapKit.MKAnnotationView,MapKit.MKAnnotationViewDragState,MapKit.MKAnnotationViewDragState)
-M:MapKit.MKMapViewDelegate.CreateClusterAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation[])
-M:MapKit.MKMapViewDelegate.DidAddAnnotationViews(MapKit.MKMapView,MapKit.MKAnnotationView[])
-M:MapKit.MKMapViewDelegate.DidAddOverlayRenderers(MapKit.MKMapView,MapKit.MKOverlayRenderer[])
-M:MapKit.MKMapViewDelegate.DidAddOverlayViews(MapKit.MKMapView,MapKit.MKOverlayView)
-M:MapKit.MKMapViewDelegate.DidChangeUserTrackingMode(MapKit.MKMapView,MapKit.MKUserTrackingMode,System.Boolean)
-M:MapKit.MKMapViewDelegate.DidChangeVisibleRegion(MapKit.MKMapView)
-M:MapKit.MKMapViewDelegate.DidDeselectAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation)
-M:MapKit.MKMapViewDelegate.DidDeselectAnnotationView(MapKit.MKMapView,MapKit.MKAnnotationView)
-M:MapKit.MKMapViewDelegate.DidFailToLocateUser(MapKit.MKMapView,Foundation.NSError)
-M:MapKit.MKMapViewDelegate.DidFinishRenderingMap(MapKit.MKMapView,System.Boolean)
-M:MapKit.MKMapViewDelegate.DidSelectAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation)
-M:MapKit.MKMapViewDelegate.DidSelectAnnotationView(MapKit.MKMapView,MapKit.MKAnnotationView)
-M:MapKit.MKMapViewDelegate.DidStopLocatingUser(MapKit.MKMapView)
-M:MapKit.MKMapViewDelegate.DidUpdateUserLocation(MapKit.MKMapView,MapKit.MKUserLocation)
-M:MapKit.MKMapViewDelegate.GetSelectionAccessory(MapKit.MKMapView,MapKit.IMKAnnotation)
-M:MapKit.MKMapViewDelegate.GetViewForAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation)
-M:MapKit.MKMapViewDelegate.GetViewForOverlay(MapKit.MKMapView,MapKit.IMKOverlay)
-M:MapKit.MKMapViewDelegate.LoadingMapFailed(MapKit.MKMapView,Foundation.NSError)
-M:MapKit.MKMapViewDelegate.MapLoaded(MapKit.MKMapView)
-M:MapKit.MKMapViewDelegate.OverlayRenderer(MapKit.MKMapView,MapKit.IMKOverlay)
-M:MapKit.MKMapViewDelegate.RegionChanged(MapKit.MKMapView,System.Boolean)
-M:MapKit.MKMapViewDelegate.RegionWillChange(MapKit.MKMapView,System.Boolean)
-M:MapKit.MKMapViewDelegate.WillStartLoadingMap(MapKit.MKMapView)
-M:MapKit.MKMapViewDelegate.WillStartLocatingUser(MapKit.MKMapView)
-M:MapKit.MKMapViewDelegate.WillStartRenderingMap(MapKit.MKMapView)
M:MapKit.MKMapViewDragStateEventArgs.#ctor(MapKit.MKAnnotationView,MapKit.MKAnnotationViewDragState,MapKit.MKAnnotationViewDragState)
-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.MKMultiPoint.GetLocation(System.UIntPtr)
-M:MapKit.MKMultiPoint.GetLocations(Foundation.NSIndexSet)
-M:MapKit.MKMultiPolygon.#ctor(MapKit.MKPolygon[])
-M:MapKit.MKMultiPolygon.Intersects(MapKit.MKMapRect)
-M:MapKit.MKMultiPolygonRenderer.#ctor(MapKit.MKMultiPolygon)
-M:MapKit.MKMultiPolyline.#ctor(MapKit.MKPolyline[])
-M:MapKit.MKMultiPolyline.Intersects(MapKit.MKMapRect)
-M:MapKit.MKMultiPolylineRenderer.#ctor(MapKit.MKMultiPolyline)
M:MapKit.MKOverlay_Extensions.GetCanReplaceMapContent(MapKit.IMKOverlay)
M:MapKit.MKOverlay_Extensions.Intersects(MapKit.IMKOverlay,MapKit.MKMapRect)
-M:MapKit.MKOverlay.Intersects(MapKit.MKMapRect)
-M:MapKit.MKOverlayPathRenderer.#ctor(MapKit.IMKOverlay)
-M:MapKit.MKOverlayPathRenderer.ApplyFillPropertiesToContext(CoreGraphics.CGContext,System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayPathRenderer.ApplyStrokePropertiesToContext(CoreGraphics.CGContext,System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayPathRenderer.CreatePath
-M:MapKit.MKOverlayPathRenderer.FillPath(CoreGraphics.CGPath,CoreGraphics.CGContext)
-M:MapKit.MKOverlayPathRenderer.InvalidatePath
-M:MapKit.MKOverlayPathRenderer.StrokePath(CoreGraphics.CGPath,CoreGraphics.CGContext)
M:MapKit.MKOverlayPathView.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKOverlayPathView.#ctor(MapKit.IMKOverlay)
-M:MapKit.MKOverlayPathView.ApplyFillProperties(CoreGraphics.CGContext,System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayPathView.ApplyStrokeProperties(CoreGraphics.CGContext,System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayPathView.CreatePath
-M:MapKit.MKOverlayPathView.FillPath(CoreGraphics.CGPath,CoreGraphics.CGContext)
-M:MapKit.MKOverlayPathView.InvalidatePath
M:MapKit.MKOverlayPathView.MKOverlayPathViewAppearance.#ctor(System.IntPtr)
-M:MapKit.MKOverlayPathView.StrokePath(CoreGraphics.CGPath,CoreGraphics.CGContext)
-M:MapKit.MKOverlayRenderer.#ctor(MapKit.IMKOverlay)
-M:MapKit.MKOverlayRenderer.CanDrawMapRect(MapKit.MKMapRect,System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayRenderer.DrawMapRect(MapKit.MKMapRect,System.Runtime.InteropServices.NFloat,CoreGraphics.CGContext)
-M:MapKit.MKOverlayRenderer.MapPointForPoint(CoreGraphics.CGPoint)
-M:MapKit.MKOverlayRenderer.MapRectForRect(CoreGraphics.CGRect)
M:MapKit.MKOverlayRenderer.MKRoadWidthAtZoomScale(System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayRenderer.PointForMapPoint(MapKit.MKMapPoint)
-M:MapKit.MKOverlayRenderer.RectForMapRect(MapKit.MKMapRect)
-M:MapKit.MKOverlayRenderer.SetNeedsDisplay
-M:MapKit.MKOverlayRenderer.SetNeedsDisplay(MapKit.MKMapRect,System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayRenderer.SetNeedsDisplay(MapKit.MKMapRect)
M:MapKit.MKOverlayView.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKOverlayView.#ctor(MapKit.IMKOverlay)
-M:MapKit.MKOverlayView.CanDrawMapRect(MapKit.MKMapRect,System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayView.DrawMapRect(MapKit.MKMapRect,System.Runtime.InteropServices.NFloat,CoreGraphics.CGContext)
-M:MapKit.MKOverlayView.MapPointForPoint(CoreGraphics.CGPoint)
-M:MapKit.MKOverlayView.MapRectForRect(CoreGraphics.CGRect)
M:MapKit.MKOverlayView.MKOverlayViewAppearance.#ctor(System.IntPtr)
M:MapKit.MKOverlayView.MKRoadWidthAtZoomScale(System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayView.PointForMapPoint(MapKit.MKMapPoint)
-M:MapKit.MKOverlayView.RectForMapRect(MapKit.MKMapRect)
-M:MapKit.MKOverlayView.SetNeedsDisplay(MapKit.MKMapRect,System.Runtime.InteropServices.NFloat)
-M:MapKit.MKOverlayView.SetNeedsDisplay(MapKit.MKMapRect)
M:MapKit.MKOverlayViewsEventArgs.#ctor(MapKit.MKOverlayView)
M:MapKit.MKPinAnnotationView.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKPinAnnotationView.#ctor(MapKit.IMKAnnotation,System.String)
M:MapKit.MKPinAnnotationView.MKPinAnnotationViewAppearance.#ctor(System.IntPtr)
M:MapKit.MKPitchControl.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKPitchControl.Create(MapKit.MKMapView)
M:MapKit.MKPitchControl.Dispose(System.Boolean)
M:MapKit.MKPitchControl.MKPitchControlAppearance.#ctor(System.IntPtr)
-M:MapKit.MKPlacemark.#ctor(CoreLocation.CLLocationCoordinate2D,Contacts.CNPostalAddress)
-M:MapKit.MKPlacemark.#ctor(CoreLocation.CLLocationCoordinate2D,Foundation.NSDictionary)
M:MapKit.MKPlacemark.#ctor(CoreLocation.CLLocationCoordinate2D,MapKit.MKPlacemarkAddress)
-M:MapKit.MKPlacemark.#ctor(CoreLocation.CLLocationCoordinate2D)
M:MapKit.MKPlacemark.Copy(Foundation.NSZone)
-M:MapKit.MKPlacemark.SetCoordinate(CoreLocation.CLLocationCoordinate2D)
M:MapKit.MKPlacemarkAddress.#ctor
M:MapKit.MKPlacemarkAddress.#ctor(Foundation.NSDictionary)
-M:MapKit.MKPointAnnotation.#ctor(CoreLocation.CLLocationCoordinate2D,System.String,System.String)
-M:MapKit.MKPointAnnotation.#ctor(CoreLocation.CLLocationCoordinate2D)
M:MapKit.MKPointOfInterestFilter.#ctor(MapKit.MKPointOfInterestCategory[],MapKit.MKPointOfInterestFilterType)
M:MapKit.MKPointOfInterestFilter.#ctor(MapKit.MKPointOfInterestCategory[])
M:MapKit.MKPointOfInterestFilter.Copy(Foundation.NSZone)
M:MapKit.MKPointOfInterestFilter.EncodeTo(Foundation.NSCoder)
-M:MapKit.MKPointOfInterestFilter.ExcludesCategory(MapKit.MKPointOfInterestCategory)
-M:MapKit.MKPointOfInterestFilter.IncludesCategory(MapKit.MKPointOfInterestCategory)
M:MapKit.MKPolygon.FromCoordinates(CoreLocation.CLLocationCoordinate2D[],MapKit.MKPolygon[])
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(MapKit.MKPolygon)
M:MapKit.MKPolygonView.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKPolygonView.#ctor(MapKit.MKPolygon)
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(MapKit.MKPolyline)
M:MapKit.MKPolylineView.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKPolylineView.#ctor(MapKit.MKPolyline)
M:MapKit.MKPolylineView.MKPolylineViewAppearance.#ctor(System.IntPtr)
-M:MapKit.MKReverseGeocoder.#ctor(CoreLocation.CLLocationCoordinate2D)
-M:MapKit.MKReverseGeocoder.Cancel
M:MapKit.MKReverseGeocoder.Dispose(System.Boolean)
-M:MapKit.MKReverseGeocoder.Start
-M:MapKit.MKReverseGeocoderDelegate.FailedWithError(MapKit.MKReverseGeocoder,Foundation.NSError)
-M:MapKit.MKReverseGeocoderDelegate.FoundWithPlacemark(MapKit.MKReverseGeocoder,MapKit.MKPlacemark)
M:MapKit.MKScaleView.Dispose(System.Boolean)
-M:MapKit.MKScaleView.FromMapView(MapKit.MKMapView)
M:MapKit.MKScaleView.MKScaleViewAppearance.#ctor(System.IntPtr)
-M:MapKit.MKSelectionAccessory.Create(MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle)
-M:MapKit.MKShape.SetCoordinate(CoreLocation.CLLocationCoordinate2D)
-M:MapKit.MKStandardMapConfiguration.#ctor(MapKit.MKMapElevationStyle,MapKit.MKStandardMapEmphasisStyle)
-M:MapKit.MKStandardMapConfiguration.#ctor(MapKit.MKMapElevationStyle)
-M:MapKit.MKStandardMapConfiguration.#ctor(MapKit.MKStandardMapEmphasisStyle)
-M:MapKit.MKTileOverlay.#ctor(System.String)
-M:MapKit.MKTileOverlay.Intersects(MapKit.MKMapRect)
-M:MapKit.MKTileOverlay.LoadTileAtPath(MapKit.MKTileOverlayPath,MapKit.MKTileOverlayLoadTileCompletionHandler)
-M:MapKit.MKTileOverlay.URLForTilePath(MapKit.MKTileOverlayPath)
-M:MapKit.MKTileOverlayRenderer.#ctor(MapKit.MKTileOverlay)
-M:MapKit.MKTileOverlayRenderer.ReloadData
M:MapKit.MKUserLocationEventArgs.#ctor(MapKit.MKUserLocation)
M:MapKit.MKUserLocationView.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKUserLocationView.#ctor(MapKit.IMKAnnotation,System.String)
M:MapKit.MKUserLocationView.MKUserLocationViewAppearance.#ctor(System.IntPtr)
-M:MapKit.MKUserTrackingBarButtonItem.#ctor(MapKit.MKMapView)
M:MapKit.MKUserTrackingBarButtonItem.MKUserTrackingBarButtonItemAppearance.#ctor(System.IntPtr)
M:MapKit.MKUserTrackingButton.Dispose(System.Boolean)
-M:MapKit.MKUserTrackingButton.FromMapView(MapKit.MKMapView)
M:MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance.#ctor(System.IntPtr)
M:MapKit.MKZoomControl.#ctor(CoreGraphics.CGRect)
-M:MapKit.MKZoomControl.Create(MapKit.MKMapView)
M:MapKit.MKZoomControl.Dispose(System.Boolean)
M:MapKit.MKZoomControl.MKZoomControlAppearance.#ctor(System.IntPtr)
M:MapKit.MMapViewUserTrackingEventArgs.#ctor(MapKit.MKUserTrackingMode,System.Boolean)
@@ -47134,41 +34683,12 @@ M:MediaExtension.IMEVideoDecoder.CanAcceptFormatDescription(CoreMedia.CMFormatDe
M:MediaExtension.IMEVideoDecoder.DecodeFrame(CoreMedia.CMSampleBuffer,MediaExtension.MEDecodeFrameOptions,MediaExtension.MEVideoDecoderDecodeFrameCallback)
M:MediaExtension.IMEVideoDecoderExtension.CreateInstance``1
M:MediaExtension.IMEVideoDecoderExtension.CreateVideoDecoder(CoreMedia.CMVideoCodecType,CoreMedia.CMVideoFormatDescription,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},MediaExtension.MEVideoDecoderPixelBufferManager,Foundation.NSError@)
-M:MediaExtension.MEByteSource.GetAvailableLength(System.Int64)
-M:MediaExtension.MEByteSource.GetByteSource(System.String,Foundation.NSError@)
-M:MediaExtension.MEByteSource.ReadData(System.UIntPtr,System.Int64,MediaExtension.MEByteSourceReadDataCallback)
-M:MediaExtension.MEByteSource.ReadData(System.UIntPtr,System.Int64,System.Byte*,MediaExtension.MEByteSourceReadBytesCallback)
-M:MediaExtension.MEByteSource.ReadData(System.UIntPtr,System.Int64,System.Byte*,System.UIntPtr@,Foundation.NSError@)
-M:MediaExtension.MEEstimatedSampleLocation.#ctor(MediaExtension.MEByteSource,AVFoundation.AVSampleCursorStorageRange,AVFoundation.AVSampleCursorStorageRange)
M:MediaExtension.MEFileInfo.Copy(Foundation.NSZone)
M:MediaExtension.MEFormatReaderInstantiationOptions.Copy(Foundation.NSZone)
-M:MediaExtension.MERawProcessingBooleanParameter.#ctor(System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)
-M:MediaExtension.MERawProcessingBooleanParameter.#ctor(System.String,System.String,System.String,System.Boolean)
-M:MediaExtension.MERawProcessingBooleanParameter.HasCameraValue(System.Boolean@)
-M:MediaExtension.MERawProcessingBooleanParameter.HasNeutralValue(System.Boolean@)
-M:MediaExtension.MERawProcessingFloatParameter.#ctor(System.String,System.String,System.String,System.Single,System.Single,System.Single,System.Single,System.Single)
-M:MediaExtension.MERawProcessingFloatParameter.#ctor(System.String,System.String,System.String,System.Single,System.Single,System.Single)
-M:MediaExtension.MERawProcessingFloatParameter.HasCameraValue(System.Single@)
-M:MediaExtension.MERawProcessingFloatParameter.HasNeutralValue(System.Single@)
-M:MediaExtension.MERawProcessingIntegerParameter.#ctor(System.String,System.String,System.String,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:MediaExtension.MERawProcessingIntegerParameter.#ctor(System.String,System.String,System.String,System.IntPtr,System.IntPtr,System.IntPtr)
-M:MediaExtension.MERawProcessingIntegerParameter.HasCameraValue(System.IntPtr@)
-M:MediaExtension.MERawProcessingIntegerParameter.HasNeutralValue(System.IntPtr@)
-M:MediaExtension.MERawProcessingListElementParameter.#ctor(System.String,System.String,System.IntPtr)
-M:MediaExtension.MERawProcessingListParameter.#ctor(System.String,System.String,System.String,MediaExtension.MERawProcessingListElementParameter[],System.IntPtr,System.IntPtr,System.IntPtr)
-M:MediaExtension.MERawProcessingListParameter.#ctor(System.String,System.String,System.String,MediaExtension.MERawProcessingListElementParameter[],System.IntPtr)
-M:MediaExtension.MERawProcessingListParameter.HasCameraValue(System.IntPtr@)
-M:MediaExtension.MERawProcessingListParameter.HasNeutralValue(System.IntPtr@)
-M:MediaExtension.MERawProcessingSubGroupParameter.#ctor(System.String,System.String,MediaExtension.MERawProcessingParameter[])
-M:MediaExtension.MERawProcessorPixelBufferManager.CreatePixelBuffer(Foundation.NSError@)
M:MediaExtension.MESampleCursorChunk.#ctor(MediaExtension.MEByteSource,AVFoundation.AVSampleCursorStorageRange,AVFoundation.AVSampleCursorChunkInfo,System.IntPtr)
M:MediaExtension.MESampleCursorChunk.Copy(Foundation.NSZone)
-M:MediaExtension.MESampleLocation.#ctor(MediaExtension.MEByteSource,AVFoundation.AVSampleCursorStorageRange)
M:MediaExtension.MESampleLocation.Copy(Foundation.NSZone)
-M:MediaExtension.METrackInfo.#ctor(CoreMedia.CMMediaType,System.Int32,Foundation.NSObject[])
M:MediaExtension.METrackInfo.Copy(Foundation.NSZone)
-M:MediaExtension.MEVideoDecoderPixelBufferManager.CreatePixelBuffer(Foundation.NSError@)
-M:MediaExtension.MEVideoDecoderPixelBufferManager.RegisterCustomPixelFormat(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:MediaLibrary.MLMediaGroup.Dispose(System.Boolean)
M:MediaLibrary.MLMediaLibrary.#ctor(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:MediaLibrary.MLMediaObject.Dispose(System.Boolean)
@@ -47396,62 +34916,23 @@ 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.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(Messages.MSSession)
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(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.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.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(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(Messages.MSStickerSize)
-M:Messages.MSStickerBrowserViewController.GetNumberOfStickers(Messages.MSStickerBrowserView)
-M:Messages.MSStickerBrowserViewController.GetSticker(Messages.MSStickerBrowserView,System.IntPtr)
-M:Messages.MSStickerBrowserViewDataSource.GetNumberOfStickers(Messages.MSStickerBrowserView)
-M:Messages.MSStickerBrowserViewDataSource.GetSticker(Messages.MSStickerBrowserView,System.IntPtr)
-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:MessageUI.IMFMailComposeViewControllerDelegate.Finished(MessageUI.MFMailComposeViewController,MessageUI.MFMailComposeResult,Foundation.NSError)
M:MessageUI.IMFMessageComposeViewControllerDelegate.Finished(MessageUI.MFMessageComposeViewController,MessageUI.MessageComposeResult)
M:MessageUI.MFComposeResultEventArgs.#ctor(MessageUI.MFMailComposeViewController,MessageUI.MFMailComposeResult,Foundation.NSError)
@@ -47956,52 +35437,28 @@ M:Metal.IMTLTexture.ReplaceRegion(Metal.MTLRegion,System.UIntPtr,System.IntPtr,S
M:Metal.IMTLTexture.ReplaceRegion(Metal.MTLRegion,System.UIntPtr,System.UIntPtr,System.IntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLVisibleFunctionTable.SetFunction(Metal.IMTLFunctionHandle,System.UIntPtr)
M:Metal.IMTLVisibleFunctionTable.SetFunctions(Metal.IMTLFunctionHandle[],Foundation.NSRange)
-M:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor.Create
M:Metal.MTLAccelerationStructureCommandEncoder_Extensions.RefitAccelerationStructure(Metal.IMTLAccelerationStructureCommandEncoder,Metal.IMTLAccelerationStructure,Metal.MTLAccelerationStructureDescriptor,Metal.IMTLAccelerationStructure,Metal.IMTLBuffer,System.UIntPtr,Metal.MTLAccelerationStructureRefitOptions)
-M:Metal.MTLAccelerationStructureCurveGeometryDescriptor.GetDescriptor
M:Metal.MTLAccelerationStructureDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLAccelerationStructureGeometryDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor.Create
-M:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.GetDescriptor
-M:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.Create
M:Metal.MTLAccelerationStructurePassDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray.GetObject(System.UIntPtr)
-M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray.SetObject(Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor,System.UIntPtr)
-M:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.Create
M:Metal.MTLArchitecture.Copy(Foundation.NSZone)
M:Metal.MTLArgumentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLArgumentDescriptor.Create
M:Metal.MTLArgumentEncoder_Extensions.SetAccelerationStructure(Metal.IMTLArgumentEncoder,Metal.IMTLAccelerationStructure,System.UIntPtr)
M:Metal.MTLArgumentEncoder_Extensions.SetBuffers(Metal.IMTLArgumentEncoder,Metal.IMTLBuffer[],System.UIntPtr[],Foundation.NSRange)
M:Metal.MTLArgumentEncoder_Extensions.SetIntersectionFunctionTable(Metal.IMTLArgumentEncoder,Metal.IMTLIntersectionFunctionTable,System.UIntPtr)
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.ElementArrayType
-M:Metal.MTLArrayType.ElementStructType
M:Metal.MTLAttributeDescriptor.Copy(Foundation.NSZone)
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.Copy(Foundation.NSZone)
-M:Metal.MTLBlitPassDescriptor.Create
M:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray.GetObject(System.UIntPtr)
-M:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray.SetObject(Metal.MTLBlitPassSampleBufferAttachmentDescriptor,System.UIntPtr)
M:Metal.MTLBuffer_Extensions.GetGpuAddress(Metal.IMTLBuffer)
M:Metal.MTLBufferLayoutDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLCaptureDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLCaptureManager.CreateNewCaptureScope(Metal.IMTLCommandQueue)
-M:Metal.MTLCaptureManager.CreateNewCaptureScope(Metal.IMTLDevice)
-M:Metal.MTLCaptureManager.StartCapture(Metal.IMTLCaptureScope)
-M:Metal.MTLCaptureManager.StartCapture(Metal.IMTLCommandQueue)
-M:Metal.MTLCaptureManager.StartCapture(Metal.IMTLDevice)
-M:Metal.MTLCaptureManager.StartCapture(Metal.MTLCaptureDescriptor,Foundation.NSError@)
-M:Metal.MTLCaptureManager.StopCapture
-M:Metal.MTLCaptureManager.SupportsDestination(Metal.MTLCaptureDestination)
-M:Metal.MTLCaptureScope.BeginScope
-M:Metal.MTLCaptureScope.EndScope
M:Metal.MTLClearColor.#ctor(System.Double,System.Double,System.Double,System.Double)
M:Metal.MTLClearValue.#ctor(Metal.MTLClearColor)
M:Metal.MTLClearValue.#ctor(System.Double)
@@ -48023,12 +35480,8 @@ M:Metal.MTLComputeCommandEncoder_Extensions.SetIntersectionFunctionTables(Metal.
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.Copy(Foundation.NSZone)
-M:Metal.MTLComputePassDescriptor.Create
M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray.GetObject(System.UIntPtr)
-M:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray.SetObject(Metal.MTLComputePassSampleBufferAttachmentDescriptor,System.UIntPtr)
M:Metal.MTLComputePipelineDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLComputePipelineDescriptor.Reset
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)
@@ -48076,25 +35529,12 @@ M:Metal.MTLDevice.GetAllDevices
M:Metal.MTLDevice.GetAllDevices(Metal.MTLDeviceNotificationHandler,Foundation.NSObject@)
M:Metal.MTLDevice.RemoveObserver(Foundation.NSObject)
M:Metal.MTLDevice.TrampolineNotificationHandler(System.IntPtr,System.IntPtr,System.IntPtr)
-M:Metal.MTLDrawable.AddPresentedHandler(System.Action{Metal.IMTLDrawable})
-M:Metal.MTLDrawable.Present
-M:Metal.MTLDrawable.Present(System.Double)
-M:Metal.MTLDrawable.PresentAfter(System.Double)
M:Metal.MTLDrawPatchIndirectArguments.#ctor(System.UInt32,System.UInt32,System.UInt32,System.UInt32)
M:Metal.MTLFunction_Extensions.GetOptions(Metal.IMTLFunction)
-M:Metal.MTLFunctionConstantValues.#ctor
M:Metal.MTLFunctionConstantValues.Copy(Foundation.NSZone)
-M:Metal.MTLFunctionConstantValues.Reset
-M:Metal.MTLFunctionConstantValues.SetConstantValue(System.IntPtr,Metal.MTLDataType,System.String)
-M:Metal.MTLFunctionConstantValues.SetConstantValue(System.IntPtr,Metal.MTLDataType,System.UIntPtr)
-M:Metal.MTLFunctionConstantValues.SetConstantValues(System.IntPtr,Metal.MTLDataType,Foundation.NSRange)
M:Metal.MTLFunctionDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLFunctionDescriptor.Create
-M:Metal.MTLFunctionStitchingFunctionNode.#ctor(System.String,Metal.IMTLFunctionStitchingNode[],Metal.MTLFunctionStitchingFunctionNode[])
M:Metal.MTLFunctionStitchingFunctionNode.Copy(Foundation.NSZone)
-M:Metal.MTLFunctionStitchingGraph.#ctor(System.String,Metal.MTLFunctionStitchingFunctionNode[],Metal.MTLFunctionStitchingFunctionNode,Metal.IMTLFunctionStitchingAttribute[])
M:Metal.MTLFunctionStitchingGraph.Copy(Foundation.NSZone)
-M:Metal.MTLFunctionStitchingInputNode.#ctor(System.UIntPtr)
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)
@@ -48105,7 +35545,6 @@ M:Metal.MTLIndirectCommandBuffer_Extensions.GetGpuResourceID(Metal.IMTLIndirectC
M:Metal.MTLIndirectCommandBufferDescriptor.Copy(Foundation.NSZone)
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.MTLIndirectInstanceAccelerationStructureDescriptor.GetDescriptor
M:Metal.MTLIndirectRenderCommand_Extensions.ClearBarrier(Metal.IMTLIndirectRenderCommand)
M:Metal.MTLIndirectRenderCommand_Extensions.DrawMeshThreadgroups(Metal.IMTLIndirectRenderCommand,Metal.MTLSize,Metal.MTLSize,Metal.MTLSize)
M:Metal.MTLIndirectRenderCommand_Extensions.DrawMeshThreads(Metal.IMTLIndirectRenderCommand,Metal.MTLSize,Metal.MTLSize,Metal.MTLSize)
@@ -48114,13 +35553,11 @@ M:Metal.MTLIndirectRenderCommand_Extensions.SetMeshBuffer(Metal.IMTLIndirectRend
M:Metal.MTLIndirectRenderCommand_Extensions.SetObjectBuffer(Metal.IMTLIndirectRenderCommand,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.MTLIndirectRenderCommand_Extensions.SetObjectThreadgroupMemoryLength(Metal.IMTLIndirectRenderCommand,System.UIntPtr,System.UIntPtr)
M:Metal.MTLIndirectRenderCommand_Extensions.SetVertexBuffer(Metal.IMTLIndirectRenderCommand,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr)
-M:Metal.MTLInstanceAccelerationStructureDescriptor.Create
M:Metal.MTLIntersectionFunctionDescriptor.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.MTLIntersectionFunctionTableDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLIntersectionFunctionTableDescriptor.Create
M:Metal.MTLIntersectionFunctionTableExtensions.SetBuffers(Metal.IMTLIntersectionFunctionTable,Metal.IMTLBuffer[],System.UIntPtr[],Foundation.NSRange)
M:Metal.MTLIOCompressionContext.AppendData(Foundation.NSData)
M:Metal.MTLIOCompressionContext.AppendData(System.Byte[])
@@ -48132,29 +35569,15 @@ 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.MTLLinkedFunctions.Create
M:Metal.MTLLogStateDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLMeshRenderPipelineDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLMeshRenderPipelineDescriptor.Reset
-M:Metal.MTLMotionKeyframeData.Create
M:Metal.MTLOrigin.#ctor(System.IntPtr,System.IntPtr,System.IntPtr)
M:Metal.MTLOrigin.ToString
M:Metal.MTLPipelineBufferDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLPrimitiveAccelerationStructureDescriptor.Create
M:Metal.MTLQuadTessellationFactorsHalf.#ctor(System.UInt16[],System.UInt16[])
-M:Metal.MTLRasterizationRateLayerArray.GetObject(System.UIntPtr)
-M:Metal.MTLRasterizationRateLayerArray.SetObject(Metal.MTLRasterizationRateLayerDescriptor,System.UIntPtr)
-M:Metal.MTLRasterizationRateLayerDescriptor.#ctor(Metal.MTLSize)
M:Metal.MTLRasterizationRateLayerDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLRasterizationRateLayerDescriptor.Create(Metal.MTLSize,System.Single[],System.Single[])
M:Metal.MTLRasterizationRateMapDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRasterizationRateMapDescriptor.Create(Metal.MTLSize,Metal.MTLRasterizationRateLayerDescriptor)
-M:Metal.MTLRasterizationRateMapDescriptor.Create(Metal.MTLSize,System.UIntPtr,Metal.MTLRasterizationRateLayerDescriptor@)
-M:Metal.MTLRasterizationRateMapDescriptor.Create(Metal.MTLSize)
-M:Metal.MTLRasterizationRateMapDescriptor.GetLayer(System.UIntPtr)
-M:Metal.MTLRasterizationRateMapDescriptor.SetLayer(Metal.MTLRasterizationRateLayerDescriptor,System.UIntPtr)
-M:Metal.MTLRasterizationRateSampleArray.GetObject(System.UIntPtr)
-M:Metal.MTLRasterizationRateSampleArray.SetObject(Foundation.NSNumber,System.UIntPtr)
M:Metal.MTLRegion.#ctor(Metal.MTLOrigin,Metal.MTLSize)
M:Metal.MTLRegion.Create1D(System.IntPtr,System.IntPtr)
M:Metal.MTLRegion.Create1D(System.UIntPtr,System.UIntPtr)
@@ -48210,17 +35633,11 @@ M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexVisibleFunctionTable(Metal.I
M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexVisibleFunctionTables(Metal.IMTLRenderCommandEncoder,Metal.IMTLVisibleFunctionTable[],Foundation.NSRange)
M:Metal.MTLRenderPassAttachmentDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLRenderPassDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRenderPassDescriptor.CreateRenderPassDescriptor
M:Metal.MTLRenderPassDescriptor.GetSamplePositions(Metal.MTLSamplePosition[])
-M:Metal.MTLRenderPassDescriptor.GetSamplePositions(System.IntPtr,System.UIntPtr)
M:Metal.MTLRenderPassDescriptor.SetSamplePositions(Metal.MTLSamplePosition[])
-M:Metal.MTLRenderPassDescriptor.SetSamplePositions(System.IntPtr,System.UIntPtr)
M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray.GetObject(System.UIntPtr)
-M:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray.SetObject(Metal.MTLRenderPassSampleBufferAttachmentDescriptor,System.UIntPtr)
M:Metal.MTLRenderPipelineColorAttachmentDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLRenderPipelineDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRenderPipelineDescriptor.Reset
M:Metal.MTLRenderPipelineFunctionsDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLRenderPipelineState_Extensions.FunctionHandleWithFunction(Metal.IMTLRenderPipelineState,Metal.IMTLFunction,Metal.MTLRenderStages)
M:Metal.MTLRenderPipelineState_Extensions.GetMaxTotalThreadsPerMeshThreadgroup(Metal.IMTLRenderPipelineState)
@@ -48238,69 +35655,47 @@ 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.MTLResourceStatePassDescriptor.Create
M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray.GetObject(System.UIntPtr)
-M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray.SetObject(Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor,System.UIntPtr)
M:Metal.MTLSamplePosition.#ctor(System.Single,System.Single)
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.MTLSharedEventHandle.EncodeTo(Foundation.NSCoder)
-M:Metal.MTLSharedEventListener.#ctor(CoreFoundation.DispatchQueue)
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.Copy(Foundation.NSZone)
-M:Metal.MTLStageInputOutputDescriptor.Create
-M:Metal.MTLStageInputOutputDescriptor.Reset
M:Metal.MTLStencilDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLStitchedLibraryDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLStructType.Lookup(System.String)
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.Copy(Foundation.NSZone)
-M:Metal.MTLTextureDescriptor.CreateTexture2DDescriptor(Metal.MTLPixelFormat,System.UIntPtr,System.UIntPtr,System.Boolean)
-M:Metal.MTLTextureDescriptor.CreateTextureBufferDescriptor(Metal.MTLPixelFormat,System.UIntPtr,Metal.MTLResourceOptions,Metal.MTLTextureUsage)
-M:Metal.MTLTextureDescriptor.CreateTextureCubeDescriptor(Metal.MTLPixelFormat,System.UIntPtr,System.Boolean)
M:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLTileRenderPipelineDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLTileRenderPipelineDescriptor.Reset
M:Metal.MTLTriangleTessellationFactorsHalf.#ctor(System.UInt16[],System.UInt16)
M:Metal.MTLVertexAttributeDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLVertexBufferLayoutDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLVertexDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLVertexDescriptor.Create
M:Metal.MTLVertexDescriptor.FromModelIO(ModelIO.MDLVertexDescriptor,Foundation.NSError@)
M:Metal.MTLVertexDescriptor.FromModelIO(ModelIO.MDLVertexDescriptor)
-M:Metal.MTLVertexDescriptor.Reset
M:Metal.MTLVertexFormatExtensions.ToModelVertexFormat(Metal.MTLVertexFormat)
M:Metal.MTLViewport.#ctor(System.Double,System.Double,System.Double,System.Double,System.Double,System.Double)
M:Metal.MTLViewport.ToString
M:Metal.MTLVisibleFunctionTable_Extensions.GetGpuResourceId(Metal.IMTLVisibleFunctionTable)
M:Metal.MTLVisibleFunctionTableDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLVisibleFunctionTableDescriptor.Create
M:Metal.NSProcessInfo_NSDeviceCertification.HasPerformanceProfile(Foundation.NSProcessInfo,Metal.NSProcessPerformanceProfile)
M:Metal.NSProcessInfo_NSDeviceCertification.IsDeviceCertifiedFor(Foundation.NSProcessInfo,Metal.NSDeviceCertification)
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.MTLFXTemporalScalerDescriptor.Create(Metal.IMTLDevice)
-M:MetalFX.MTLFXTemporalScalerDescriptor.GetSupportedInputContentMaxScale(Metal.IMTLDevice)
-M:MetalFX.MTLFXTemporalScalerDescriptor.GetSupportedInputContentMinScale(Metal.IMTLDevice)
-M:MetalFX.MTLFXTemporalScalerDescriptor.SupportsDevice(Metal.IMTLDevice)
M:MetalKit.IMTKViewDelegate.Draw(MetalKit.MTKView)
M:MetalKit.IMTKViewDelegate.DrawableSizeWillChange(MetalKit.MTKView,CoreGraphics.CGSize)
-M:MetalKit.MTKMesh.#ctor(ModelIO.MDLMesh,Metal.IMTLDevice,Foundation.NSError@)
M:MetalKit.MTKMesh.FromAsset(ModelIO.MDLAsset,Metal.IMTLDevice,ModelIO.MDLMesh[]@,Foundation.NSError@)
M:MetalKit.MTKMeshBuffer.Copy(Foundation.NSZone)
M:MetalKit.MTKMeshBuffer.FillData(Foundation.NSData,System.UIntPtr)
-M:MetalKit.MTKMeshBufferAllocator.#ctor(Metal.IMTLDevice)
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)
@@ -48308,35 +35703,26 @@ M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(System.UIntPtr,ModelIO.MDLMeshBuf
M:MetalKit.MTKMeshBufferAllocator.CreateZone(Foundation.NSNumber[],Foundation.NSNumber[])
M:MetalKit.MTKMeshBufferAllocator.CreateZone(System.UIntPtr)
M:MetalKit.MTKSubmesh.Dispose(System.Boolean)
-M:MetalKit.MTKTextureLoader.#ctor(Metal.IMTLDevice)
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)
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)
@@ -48344,27 +35730,20 @@ 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.MTKTextureLoaderOptions.#ctor
M:MetalKit.MTKTextureLoaderOptions.#ctor(Foundation.NSDictionary)
-M:MetalKit.MTKView.#ctor(CoreGraphics.CGRect,Metal.IMTLDevice)
M:MetalKit.MTKView.ActionForLayer(CoreAnimation.CALayer,System.String)
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.LayoutSublayersOfLayer(CoreAnimation.CALayer)
M:MetalKit.MTKView.MTKViewAppearance.#ctor(System.IntPtr)
-M:MetalKit.MTKView.ReleaseDrawables
M:MetalKit.MTKView.WillDrawLayer(CoreAnimation.CALayer)
-M:MetalKit.MTKViewDelegate.Draw(MetalKit.MTKView)
-M:MetalKit.MTKViewDelegate.DrawableSizeWillChange(MetalKit.MTKView,CoreGraphics.CGSize)
M:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.Copy(Foundation.NSZone,Metal.IMTLDevice)
M:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.CreateInstance``1(Foundation.NSCoder)
M:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.Encode(Foundation.NSCoder)
@@ -50006,11 +37385,7 @@ 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)
@@ -51802,15 +39177,6 @@ M:OpenGLES.EAGLContext.RenderBufferStorage(System.UIntPtr,CoreAnimation.CAEAGLLa
M:OpenGLES.EAGLContext.SetCurrentContext(OpenGLES.EAGLContext)
M:OpenGLES.EAGLContext.TexImage(IOSurface.IOSurface,System.UIntPtr,System.UIntPtr,System.UInt32,System.UInt32,System.UIntPtr,System.UIntPtr,System.UInt32)
M:OSLog.OSLogMessageComponent.EncodeTo(Foundation.NSCoder)
-M:OSLog.OSLogStore.#ctor
-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.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.IPKAddPassesViewControllerDelegate.Finished(PassKit.PKAddPassesViewController)
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})
@@ -52427,12 +39793,7 @@ M:PencilKit.IPKToolPickerObserver.IsRulerActiveDidChange(PencilKit.PKToolPicker)
M:PencilKit.IPKToolPickerObserver.SelectedToolDidChange(PencilKit.PKToolPicker)
M:PencilKit.IPKToolPickerObserver.SelectedToolItemDidChange(PencilKit.PKToolPicker)
M:PencilKit.IPKToolPickerObserver.VisibilityDidChange(PencilKit.PKToolPicker)
-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.SelectedToolItemDidChange(PencilKit.PKToolPicker)
-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.DidRefineStrokes(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView,PencilKit.PKStroke[],PencilKit.PKStroke[])
@@ -52440,15 +39801,11 @@ M:PencilKit.PKCanvasViewDelegate_Extensions.DrawingDidChange(PencilKit.IPKCanvas
M:PencilKit.PKCanvasViewDelegate_Extensions.EndUsingTool(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView)
M:PencilKit.PKCanvasViewDelegate.DecelerationEnded(UIKit.UIScrollView)
M:PencilKit.PKCanvasViewDelegate.DecelerationStarted(UIKit.UIScrollView)
-M:PencilKit.PKCanvasViewDelegate.DidBeginUsingTool(PencilKit.PKCanvasView)
M:PencilKit.PKCanvasViewDelegate.DidChangeAdjustedContentInset(UIKit.UIScrollView)
-M:PencilKit.PKCanvasViewDelegate.DidFinishRendering(PencilKit.PKCanvasView)
M:PencilKit.PKCanvasViewDelegate.DidRefineStrokes(PencilKit.PKCanvasView,PencilKit.PKStroke[],PencilKit.PKStroke[])
M:PencilKit.PKCanvasViewDelegate.DidZoom(UIKit.UIScrollView)
M:PencilKit.PKCanvasViewDelegate.DraggingEnded(UIKit.UIScrollView,System.Boolean)
M:PencilKit.PKCanvasViewDelegate.DraggingStarted(UIKit.UIScrollView)
-M:PencilKit.PKCanvasViewDelegate.DrawingDidChange(PencilKit.PKCanvasView)
-M:PencilKit.PKCanvasViewDelegate.EndUsingTool(PencilKit.PKCanvasView)
M:PencilKit.PKCanvasViewDelegate.ScrollAnimationEnded(UIKit.UIScrollView)
M:PencilKit.PKCanvasViewDelegate.Scrolled(UIKit.UIScrollView)
M:PencilKit.PKCanvasViewDelegate.ScrolledToTop(UIKit.UIScrollView)
@@ -52457,72 +39814,18 @@ M:PencilKit.PKCanvasViewDelegate.ViewForZoomingInScrollView(UIKit.UIScrollView)
M:PencilKit.PKCanvasViewDelegate.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@)
M:PencilKit.PKCanvasViewDelegate.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)
M:PencilKit.PKCanvasViewDelegate.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)
-M:PencilKit.PKDrawing.#ctor(Foundation.NSData,Foundation.NSError@)
-M:PencilKit.PKDrawing.#ctor(PencilKit.PKStroke[])
M:PencilKit.PKDrawing.Copy(Foundation.NSZone)
M:PencilKit.PKDrawing.EncodeTo(Foundation.NSCoder)
-M:PencilKit.PKDrawing.GetDrawing(CoreGraphics.CGAffineTransform)
-M:PencilKit.PKDrawing.GetDrawing(PencilKit.PKDrawing)
-M:PencilKit.PKDrawing.GetDrawing(PencilKit.PKStroke[])
-M:PencilKit.PKDrawing.GetImage(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKEraserTool.#ctor(PencilKit.PKEraserType,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKEraserTool.#ctor(PencilKit.PKEraserType)
-M:PencilKit.PKEraserTool.GetDefaultWidth(PencilKit.PKEraserType)
-M:PencilKit.PKEraserTool.GetMaximumWidth(PencilKit.PKEraserType)
-M:PencilKit.PKEraserTool.GetMinimumWidth(PencilKit.PKEraserType)
-M:PencilKit.PKFloatRange.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:PencilKit.PKFloatRange.Copy(Foundation.NSZone)
M:PencilKit.PKInk.#ctor(PencilKit.PKInkType,AppKit.NSColor)
M:PencilKit.PKInk.#ctor(PencilKit.PKInkType,UIKit.UIColor)
M:PencilKit.PKInk.Copy(Foundation.NSZone)
-M:PencilKit.PKInkingTool.#ctor(PencilKit.PKInk,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKInkingTool.#ctor(PencilKit.PKInkType,AppKit.NSColor,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKInkingTool.#ctor(PencilKit.PKInkType,AppKit.NSColor)
-M:PencilKit.PKInkingTool.#ctor(PencilKit.PKInkType,UIKit.UIColor,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKInkingTool.#ctor(PencilKit.PKInkType,UIKit.UIColor)
-M:PencilKit.PKInkingTool.ConvertColor(UIKit.UIColor,UIKit.UIUserInterfaceStyle,UIKit.UIUserInterfaceStyle)
-M:PencilKit.PKInkingTool.GetDefaultWidth(PencilKit.PKInkType)
-M:PencilKit.PKInkingTool.GetMaximumWidth(PencilKit.PKInkType)
-M:PencilKit.PKInkingTool.GetMinimumWidth(PencilKit.PKInkType)
-M:PencilKit.PKStroke.#ctor(PencilKit.PKInk,PencilKit.PKStrokePath,CoreGraphics.CGAffineTransform,AppKit.NSBezierPath,System.UInt32)
-M:PencilKit.PKStroke.#ctor(PencilKit.PKInk,PencilKit.PKStrokePath,CoreGraphics.CGAffineTransform,AppKit.NSBezierPath)
-M:PencilKit.PKStroke.#ctor(PencilKit.PKInk,PencilKit.PKStrokePath,CoreGraphics.CGAffineTransform,UIKit.UIBezierPath,System.UInt32)
-M:PencilKit.PKStroke.#ctor(PencilKit.PKInk,PencilKit.PKStrokePath,CoreGraphics.CGAffineTransform,UIKit.UIBezierPath)
M:PencilKit.PKStroke.Copy(Foundation.NSZone)
-M:PencilKit.PKStrokePath.#ctor(PencilKit.PKStrokePoint[],Foundation.NSDate)
M:PencilKit.PKStrokePath.Copy(Foundation.NSZone)
-M:PencilKit.PKStrokePath.EnumerateInterpolatedPointsByDistanceStep(PencilKit.PKFloatRange,System.Runtime.InteropServices.NFloat,PencilKit.PKInterpolatedPointsEnumeratorHandler)
-M:PencilKit.PKStrokePath.EnumerateInterpolatedPointsByParametricStep(PencilKit.PKFloatRange,System.Runtime.InteropServices.NFloat,PencilKit.PKInterpolatedPointsEnumeratorHandler)
-M:PencilKit.PKStrokePath.EnumerateInterpolatedPointsByTimeStep(PencilKit.PKFloatRange,System.Double,PencilKit.PKInterpolatedPointsEnumeratorHandler)
-M:PencilKit.PKStrokePath.GetInterpolatedLocation(System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKStrokePath.GetInterpolatedPoint(System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKStrokePath.GetObject(System.UIntPtr)
-M:PencilKit.PKStrokePath.GetParametricValue(System.Runtime.InteropServices.NFloat,System.Double)
-M:PencilKit.PKStrokePath.GetParametricValue(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKStrokePath.GetPoint(System.UIntPtr)
-M:PencilKit.PKStrokePoint.#ctor(CoreGraphics.CGPoint,System.Double,CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKStrokePoint.#ctor(CoreGraphics.CGPoint,System.Double,CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:PencilKit.PKStrokePoint.Copy(Foundation.NSZone)
M:PencilKit.PKTool.Copy(Foundation.NSZone)
-M:PencilKit.PKToolPicker.#ctor
-M:PencilKit.PKToolPicker.#ctor(PencilKit.PKToolPickerItem[])
-M:PencilKit.PKToolPicker.AddObserver(PencilKit.IPKToolPickerObserver)
M:PencilKit.PKToolPicker.Dispose(System.Boolean)
-M:PencilKit.PKToolPicker.GetFrameObscured(UIKit.UIView)
-M:PencilKit.PKToolPicker.GetSharedToolPicker(UIKit.UIWindow)
-M:PencilKit.PKToolPicker.RemoveObserver(PencilKit.IPKToolPickerObserver)
-M:PencilKit.PKToolPicker.SetVisible(System.Boolean,UIKit.UIResponder)
-M:PencilKit.PKToolPickerCustomItem.#ctor(PencilKit.PKToolPickerCustomItemConfiguration)
-M:PencilKit.PKToolPickerCustomItem.ReloadImage
-M:PencilKit.PKToolPickerCustomItemConfiguration.#ctor(System.String,System.String)
M:PencilKit.PKToolPickerCustomItemConfiguration.Copy(Foundation.NSZone)
-M:PencilKit.PKToolPickerEraserItem.#ctor(PencilKit.PKEraserType,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKToolPickerEraserItem.#ctor(PencilKit.PKEraserType)
-M:PencilKit.PKToolPickerInkingItem.#ctor(PencilKit.PKInkType,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKToolPickerInkingItem.#ctor(PencilKit.PKInkType,UIKit.UIColor,System.Runtime.InteropServices.NFloat,System.String)
-M:PencilKit.PKToolPickerInkingItem.#ctor(PencilKit.PKInkType,UIKit.UIColor,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKToolPickerInkingItem.#ctor(PencilKit.PKInkType,UIKit.UIColor)
-M:PencilKit.PKToolPickerInkingItem.#ctor(PencilKit.PKInkType)
M:PencilKit.PKToolPickerItem.Copy(Foundation.NSZone)
M:PencilKit.PKToolPickerObserver_Extensions.FramesObscuredDidChange(PencilKit.IPKToolPickerObserver,PencilKit.PKToolPicker)
M:PencilKit.PKToolPickerObserver_Extensions.IsRulerActiveDidChange(PencilKit.IPKToolPickerObserver,PencilKit.PKToolPicker)
@@ -52932,16 +40235,10 @@ M:PushKit.IPKPushRegistryDelegate.DidInvalidatePushToken(PushKit.PKPushRegistry,
M:PushKit.IPKPushRegistryDelegate.DidReceiveIncomingPush(PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String,System.Action)
M:PushKit.IPKPushRegistryDelegate.DidReceiveIncomingPush(PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String)
M:PushKit.IPKPushRegistryDelegate.DidUpdatePushCredentials(PushKit.PKPushRegistry,PushKit.PKPushCredentials,System.String)
-M:PushKit.PKPushRegistry.#ctor(CoreFoundation.DispatchQueue)
M:PushKit.PKPushRegistry.Dispose(System.Boolean)
-M:PushKit.PKPushRegistry.PushToken(System.String)
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)
-M:PushKit.PKPushRegistryDelegate.DidInvalidatePushToken(PushKit.PKPushRegistry,System.String)
-M:PushKit.PKPushRegistryDelegate.DidReceiveIncomingPush(PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String,System.Action)
-M:PushKit.PKPushRegistryDelegate.DidReceiveIncomingPush(PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String)
-M:PushKit.PKPushRegistryDelegate.DidUpdatePushCredentials(PushKit.PKPushRegistry,PushKit.PKPushCredentials,System.String)
M:PushToTalk.IPTChannelManagerDelegate.DidActivateAudioSession(PushToTalk.PTChannelManager,AVFoundation.AVAudioSession)
M:PushToTalk.IPTChannelManagerDelegate.DidBeginTransmitting(PushToTalk.PTChannelManager,Foundation.NSUuid,PushToTalk.PTChannelTransmitRequestSource)
M:PushToTalk.IPTChannelManagerDelegate.DidDeactivateAudioSession(PushToTalk.PTChannelManager,AVFoundation.AVAudioSession)
@@ -53190,74 +40487,36 @@ M:ReplayKit.NSExtensionContext_RPBroadcastExtension.CompleteRequest(Foundation.N
M:ReplayKit.NSExtensionContext_RPBroadcastExtension.CompleteRequest(Foundation.NSExtensionContext,Foundation.NSUrl,ReplayKit.RPBroadcastConfiguration,Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding})
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.DidFinish(ReplayKit.RPBroadcastActivityController,ReplayKit.RPBroadcastController,Foundation.NSError)
M:ReplayKit.RPBroadcastActivityViewController.#ctor(System.String,Foundation.NSBundle)
M:ReplayKit.RPBroadcastActivityViewController.Dispose(System.Boolean)
-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.RPBroadcastActivityViewControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityViewController,ReplayKit.RPBroadcastController,Foundation.NSError)
M:ReplayKit.RPBroadcastConfiguration.EncodeTo(Foundation.NSCoder)
M:ReplayKit.RPBroadcastController.Dispose(System.Boolean)
-M:ReplayKit.RPBroadcastController.FinishBroadcast(System.Action{Foundation.NSError})
M:ReplayKit.RPBroadcastController.FinishBroadcastAsync
-M:ReplayKit.RPBroadcastController.PauseBroadcast
-M:ReplayKit.RPBroadcastController.ResumeBroadcast
-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)
M:ReplayKit.RPBroadcastControllerDelegate_Extensions.DidUpdateServiceInfo(ReplayKit.IRPBroadcastControllerDelegate,ReplayKit.RPBroadcastController,Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding})
-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.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
-M:ReplayKit.RPBroadcastHandler.UpdateBroadcastUrl(Foundation.NSUrl)
-M:ReplayKit.RPBroadcastHandler.UpdateServiceInfo(Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding})
-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.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.ProcessSampleBuffer(CoreMedia.CMSampleBuffer,ReplayKit.RPSampleBufferType)
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})
M:ReplayKit.RPPreviewViewControllerDelegate_Extensions.DidFinish(ReplayKit.IRPPreviewViewControllerDelegate,ReplayKit.RPPreviewViewController)
-M:ReplayKit.RPPreviewViewControllerDelegate.DidFinish(ReplayKit.RPPreviewViewController,Foundation.NSSet{Foundation.NSString})
-M:ReplayKit.RPPreviewViewControllerDelegate.DidFinish(ReplayKit.RPPreviewViewController)
-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.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)
M:ReplayKit.RPScreenRecorderDelegate_Extensions.DidStopRecording(ReplayKit.IRPScreenRecorderDelegate,ReplayKit.RPScreenRecorder,Foundation.NSError,ReplayKit.RPPreviewViewController)
M:ReplayKit.RPScreenRecorderDelegate_Extensions.DidStopRecording(ReplayKit.IRPScreenRecorderDelegate,ReplayKit.RPScreenRecorder,ReplayKit.RPPreviewViewController,Foundation.NSError)
-M:ReplayKit.RPScreenRecorderDelegate.DidChangeAvailability(ReplayKit.RPScreenRecorder)
-M:ReplayKit.RPScreenRecorderDelegate.DidStopRecording(ReplayKit.RPScreenRecorder,Foundation.NSError,ReplayKit.RPPreviewViewController)
-M:ReplayKit.RPScreenRecorderDelegate.DidStopRecording(ReplayKit.RPScreenRecorder,ReplayKit.RPPreviewViewController,Foundation.NSError)
M:ReplayKit.RPSystemBroadcastPickerView.#ctor(CoreGraphics.CGRect)
M:ReplayKit.RPSystemBroadcastPickerView.EncodeTo(Foundation.NSCoder)
M:ReplayKit.RPSystemBroadcastPickerView.RPSystemBroadcastPickerViewAppearance.#ctor(System.IntPtr)
@@ -53411,15 +40670,11 @@ M:SafariServices.SSReadingList.SupportsUrl(Foundation.NSUrl)
M:SafetyKit.ISACrashDetectionDelegate.DidDetectEvent(SafetyKit.SACrashDetectionManager,SafetyKit.SACrashDetectionEvent)
M:SafetyKit.ISAEmergencyResponseDelegate.DidUpdateVoiceCallStatus(SafetyKit.SAEmergencyResponseManager,SafetyKit.SAEmergencyResponseManagerVoiceCallStatus)
M:SafetyKit.SACrashDetectionDelegate_Extensions.DidDetectEvent(SafetyKit.ISACrashDetectionDelegate,SafetyKit.SACrashDetectionManager,SafetyKit.SACrashDetectionEvent)
-M:SafetyKit.SACrashDetectionDelegate.DidDetectEvent(SafetyKit.SACrashDetectionManager,SafetyKit.SACrashDetectionEvent)
M:SafetyKit.SACrashDetectionEvent.Copy(Foundation.NSZone)
M:SafetyKit.SACrashDetectionEvent.EncodeTo(Foundation.NSCoder)
M:SafetyKit.SACrashDetectionManager.Dispose(System.Boolean)
-M:SafetyKit.SACrashDetectionManager.RequestAuthorization(SafetyKit.SACrashDetectionManagerRequestAuthorizationCompletionHandler)
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.DialVoiceCall(System.String,SafetyKit.SAEmergencyResponseManagerDialVoiceCallCompletionHandler)
M:SafetyKit.SAEmergencyResponseManager.DialVoiceCallAsync(System.String)
M:SafetyKit.SAEmergencyResponseManager.Dispose(System.Boolean)
M:SceneKit.ISCNActionable.GetAction(System.String)
@@ -53479,206 +40734,30 @@ M:SceneKit.ISCNSceneRendererDelegate.Update(SceneKit.ISCNSceneRenderer,System.Do
M:SceneKit.ISCNSceneRendererDelegate.WillRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double)
M:SceneKit.ISCNShadable.HandleBinding(System.String,SceneKit.SCNBindingHandler)
M:SceneKit.ISCNShadable.HandleUnbinding(System.String,SceneKit.SCNBindingHandler)
-M:SceneKit.SCNAccelerationConstraint.Create
M:SceneKit.SCNAction.Copy(Foundation.NSZone)
-M:SceneKit.SCNAction.CustomAction(System.Double,SceneKit.SCNActionNodeWithElapsedTimeHandler)
M:SceneKit.SCNAction.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNAction.FadeIn(System.Double)
-M:SceneKit.SCNAction.FadeOpacityBy(System.Runtime.InteropServices.NFloat,System.Double)
-M:SceneKit.SCNAction.FadeOpacityTo(System.Runtime.InteropServices.NFloat,System.Double)
-M:SceneKit.SCNAction.FadeOut(System.Double)
-M:SceneKit.SCNAction.FromJavascript(System.String,System.Double)
-M:SceneKit.SCNAction.Group(SceneKit.SCNAction[])
-M:SceneKit.SCNAction.Hide
-M:SceneKit.SCNAction.MoveBy(SceneKit.SCNVector3,System.Double)
-M:SceneKit.SCNAction.MoveBy(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double)
-M:SceneKit.SCNAction.MoveTo(SceneKit.SCNVector3,System.Double)
-M:SceneKit.SCNAction.PlayAudioSource(SceneKit.SCNAudioSource,System.Boolean)
-M:SceneKit.SCNAction.RemoveFromParentNode
-M:SceneKit.SCNAction.RepeatAction(SceneKit.SCNAction,System.UIntPtr)
-M:SceneKit.SCNAction.RepeatActionForever(SceneKit.SCNAction)
-M:SceneKit.SCNAction.ReversedAction
-M:SceneKit.SCNAction.RotateBy(System.Runtime.InteropServices.NFloat,SceneKit.SCNVector3,System.Double)
-M:SceneKit.SCNAction.RotateBy(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double)
-M:SceneKit.SCNAction.RotateTo(SceneKit.SCNVector4,System.Double)
-M:SceneKit.SCNAction.RotateTo(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double,System.Boolean)
-M:SceneKit.SCNAction.RotateTo(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double)
-M:SceneKit.SCNAction.Run(System.Action{SceneKit.SCNNode},CoreFoundation.DispatchQueue)
-M:SceneKit.SCNAction.Run(System.Action{SceneKit.SCNNode})
-M:SceneKit.SCNAction.ScaleBy(System.Runtime.InteropServices.NFloat,System.Double)
-M:SceneKit.SCNAction.ScaleTo(System.Runtime.InteropServices.NFloat,System.Double)
-M:SceneKit.SCNAction.Sequence(SceneKit.SCNAction[])
-M:SceneKit.SCNAction.Unhide
-M:SceneKit.SCNAction.Wait(System.Double,System.Double)
-M:SceneKit.SCNAction.Wait(System.Double)
-M:SceneKit.SCNActionable.GetAction(System.String)
-M:SceneKit.SCNActionable.HasActions
-M:SceneKit.SCNActionable.RemoveAction(System.String)
-M:SceneKit.SCNActionable.RemoveAllActions
-M:SceneKit.SCNActionable.RunAction(SceneKit.SCNAction,System.Action)
-M:SceneKit.SCNActionable.RunAction(SceneKit.SCNAction,System.String,System.Action)
-M:SceneKit.SCNActionable.RunAction(SceneKit.SCNAction,System.String)
-M:SceneKit.SCNActionable.RunAction(SceneKit.SCNAction)
M:SceneKit.SCNAnimatable.AddAnimation(CoreAnimation.CAAnimation,System.String)
-M:SceneKit.SCNAnimatable.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String)
-M:SceneKit.SCNAnimatable.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString)
-M:SceneKit.SCNAnimatable.GetAnimation(Foundation.NSString)
-M:SceneKit.SCNAnimatable.GetAnimationKeys
-M:SceneKit.SCNAnimatable.GetAnimationPlayer(Foundation.NSString)
-M:SceneKit.SCNAnimatable.IsAnimationPaused(Foundation.NSString)
-M:SceneKit.SCNAnimatable.PauseAnimation(Foundation.NSString)
-M:SceneKit.SCNAnimatable.RemoveAllAnimations
-M:SceneKit.SCNAnimatable.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNAnimatable.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat)
-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.Copy(Foundation.NSZone)
M:SceneKit.SCNAnimation.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNAnimation.FromCAAnimation(CoreAnimation.CAAnimation)
-M:SceneKit.SCNAnimation.FromName(System.String)
-M:SceneKit.SCNAnimation.FromUrl(Foundation.NSUrl)
-M:SceneKit.SCNAnimationEvent.Create(System.Runtime.InteropServices.NFloat,SceneKit.SCNAnimationEventHandler)
-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.FromAnimation(SceneKit.SCNAnimation)
-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.Play
-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.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.SCNAnimationPlayer.Stop
-M:SceneKit.SCNAnimationPlayer.StopWithBlendOutDuration(System.Double)
-M:SceneKit.SCNAudioPlayer.#ctor(AVFoundation.AVAudioNode)
-M:SceneKit.SCNAudioPlayer.#ctor(SceneKit.SCNAudioSource)
-M:SceneKit.SCNAudioPlayer.AVAudioNode(AVFoundation.AVAudioNode)
-M:SceneKit.SCNAudioPlayer.FromSource(SceneKit.SCNAudioSource)
-M:SceneKit.SCNAudioSource.#ctor(Foundation.NSUrl)
-M:SceneKit.SCNAudioSource.#ctor(System.String)
M:SceneKit.SCNAudioSource.Copy(Foundation.NSZone)
M:SceneKit.SCNAudioSource.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNAudioSource.FromFile(System.String)
-M:SceneKit.SCNAudioSource.Load
M:SceneKit.SCNAvoidOccluderConstraint.Dispose(System.Boolean)
-M:SceneKit.SCNAvoidOccluderConstraint.FromTarget(SceneKit.SCNNode)
M:SceneKit.SCNAvoidOccluderConstraintDelegate_Extensions.DidAvoidOccluder(SceneKit.ISCNAvoidOccluderConstraintDelegate,SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode)
M:SceneKit.SCNAvoidOccluderConstraintDelegate_Extensions.ShouldAvoidOccluder(SceneKit.ISCNAvoidOccluderConstraintDelegate,SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode)
-M:SceneKit.SCNAvoidOccluderConstraintDelegate.DidAvoidOccluder(SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode)
-M:SceneKit.SCNAvoidOccluderConstraintDelegate.ShouldAvoidOccluder(SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode)
-M:SceneKit.SCNBillboardConstraint.Create
-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.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-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.Create
M:SceneKit.SCNCamera.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNCamera.FromModelCamera(ModelIO.MDLCamera)
-M:SceneKit.SCNCamera.GetAnimation(Foundation.NSString)
-M:SceneKit.SCNCamera.GetAnimationKeys
-M:SceneKit.SCNCamera.GetAnimationPlayer(Foundation.NSString)
-M:SceneKit.SCNCamera.GetProjectionTransform(CoreGraphics.CGSize)
-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.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.SCNCameraController.BeginInteraction(CoreGraphics.CGPoint,CoreGraphics.CGSize)
-M:SceneKit.SCNCameraController.ClearRoll
-M:SceneKit.SCNCameraController.ContinueInteraction(CoreGraphics.CGPoint,CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNCameraController.Dispose(System.Boolean)
-M:SceneKit.SCNCameraController.Dolly(System.Single,CoreGraphics.CGPoint,CoreGraphics.CGSize)
-M:SceneKit.SCNCameraController.DollyToTarget(System.Single)
-M:SceneKit.SCNCameraController.EndInteraction(CoreGraphics.CGPoint,CoreGraphics.CGSize,CoreGraphics.CGPoint)
-M:SceneKit.SCNCameraController.FrameNodes(SceneKit.SCNNode[])
-M:SceneKit.SCNCameraController.Roll(System.Single,CoreGraphics.CGPoint,CoreGraphics.CGSize)
-M:SceneKit.SCNCameraController.RollAroundTarget(System.Single)
-M:SceneKit.SCNCameraController.Rotate(System.Single,System.Single)
-M:SceneKit.SCNCameraController.StopInertia
-M:SceneKit.SCNCameraController.TranslateInCameraSpace(System.Single,System.Single,System.Single)
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.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNCone.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-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.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.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.SCNCylinder.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNDistanceConstraint.FromTarget(SceneKit.SCNNode)
-M:SceneKit.SCNFloor.Create
-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.Create
-M:SceneKit.SCNGeometry.Create(SceneKit.SCNGeometrySource[],SceneKit.SCNGeometryElement[],System.Int32[])
-M:SceneKit.SCNGeometry.Create(SceneKit.SCNGeometrySource[],SceneKit.SCNGeometryElement[])
M:SceneKit.SCNGeometry.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNGeometry.FromMesh(ModelIO.MDLMesh)
-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.GetGeometryElement(System.IntPtr)
-M:SceneKit.SCNGeometry.GetGeometrySourcesForSemantic(System.String)
-M:SceneKit.SCNGeometry.GetMaterial(System.String)
-M:SceneKit.SCNGeometry.HandleBinding(System.String,SceneKit.SCNBindingHandler)
-M:SceneKit.SCNGeometry.HandleUnbinding(System.String,SceneKit.SCNBindingHandler)
-M:SceneKit.SCNGeometry.InsertMaterial(SceneKit.SCNMaterial,System.IntPtr)
-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.RemoveMaterial(System.IntPtr)
-M:SceneKit.SCNGeometry.ReplaceMaterial(System.IntPtr,SceneKit.SCNMaterial)
-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.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNGeometryElement.FromBuffer(Metal.IMTLBuffer,SceneKit.SCNGeometryPrimitiveType,System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr)
-M:SceneKit.SCNGeometryElement.FromBuffer(Metal.IMTLBuffer,SceneKit.SCNGeometryPrimitiveType,System.IntPtr,System.IntPtr)
-M:SceneKit.SCNGeometryElement.FromData(Foundation.NSData,SceneKit.SCNGeometryPrimitiveType,System.IntPtr,System.IntPtr,System.Boolean,System.IntPtr)
-M:SceneKit.SCNGeometryElement.FromData(Foundation.NSData,SceneKit.SCNGeometryPrimitiveType,System.IntPtr,System.IntPtr)
-M:SceneKit.SCNGeometryElement.FromSubmesh(ModelIO.MDLSubmesh)
M:SceneKit.SCNGeometrySource.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNGeometrySource.FromData(Foundation.NSData,Foundation.NSString,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
M:SceneKit.SCNGeometrySource.FromData(Foundation.NSData,SceneKit.SCNGeometrySourceSemantics,System.IntPtr,System.Boolean,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:SceneKit.SCNGeometrySource.FromMetalBuffer(Metal.IMTLBuffer,Metal.MTLVertexFormat,Foundation.NSString,System.IntPtr,System.IntPtr,System.IntPtr)
M:SceneKit.SCNGeometrySource.FromMetalBuffer(Metal.IMTLBuffer,Metal.MTLVertexFormat,SceneKit.SCNGeometrySourceSemantics,System.IntPtr,System.IntPtr,System.IntPtr)
M:SceneKit.SCNGeometrySource.FromNormals(SceneKit.SCNVector3[])
M:SceneKit.SCNGeometrySource.FromTextureCoordinates(CoreGraphics.CGPoint[])
@@ -53687,253 +40766,59 @@ M:SceneKit.SCNGeometryTessellator.Copy(Foundation.NSZone)
M:SceneKit.SCNGeometryTessellator.EncodeTo(Foundation.NSCoder)
M:SceneKit.SCNHitTestOptions.#ctor
M:SceneKit.SCNHitTestOptions.#ctor(Foundation.NSDictionary)
-M:SceneKit.SCNHitTestResult.GetTextureCoordinatesWithMappingChannel(System.IntPtr)
-M:SceneKit.SCNIKConstraint.#ctor(SceneKit.SCNNode)
-M:SceneKit.SCNIKConstraint.Create(SceneKit.SCNNode)
-M:SceneKit.SCNIKConstraint.GetMaxAllowedRotationAngle(SceneKit.SCNNode)
-M:SceneKit.SCNIKConstraint.SetMaxAllowedRotationAnglet(System.Runtime.InteropServices.NFloat,SceneKit.SCNNode)
M:SceneKit.SCNJavaScript.ExportModule(JavaScriptCore.JSContext)
M:SceneKit.SCNLayer.Dispose(System.Boolean)
-M:SceneKit.SCNLayer.GetNodesInsideFrustum(SceneKit.SCNNode)
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.UnprojectPoint(SceneKit.SCNVector3)
M:SceneKit.SCNLevelOfDetail.Copy(Foundation.NSZone)
-M:SceneKit.SCNLevelOfDetail.CreateWithScreenSpaceRadius(SceneKit.SCNGeometry,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNLevelOfDetail.CreateWithWorldSpaceDistance(SceneKit.SCNGeometry,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNLevelOfDetail.EncodeTo(Foundation.NSCoder)
-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.Create
M:SceneKit.SCNLight.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNLight.FromModelLight(ModelIO.MDLLight)
-M:SceneKit.SCNLight.GetAnimation(Foundation.NSString)
-M:SceneKit.SCNLight.GetAnimationKeys
-M:SceneKit.SCNLight.GetAnimationPlayer(Foundation.NSString)
-M:SceneKit.SCNLight.GetAttribute(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.SetAttribute(Foundation.NSObject,Foundation.NSString)
-M:SceneKit.SCNLight.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.SCNLookAtConstraint.Create(SceneKit.SCNNode)
-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.Create
M:SceneKit.SCNMaterial.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNMaterial.FromMaterial(ModelIO.MDLMaterial)
-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.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.SCNMaterialProperty.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String)
-M:SceneKit.SCNMaterialProperty.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString)
-M:SceneKit.SCNMaterialProperty.Create(Foundation.NSObject)
M:SceneKit.SCNMaterialProperty.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNMaterialProperty.GetAnimation(Foundation.NSString)
-M:SceneKit.SCNMaterialProperty.GetAnimationKeys
-M:SceneKit.SCNMaterialProperty.GetAnimationPlayer(Foundation.NSString)
-M:SceneKit.SCNMaterialProperty.GetPrecomputedLightingEnvironmentContents(Foundation.NSData,Foundation.NSError@)
-M:SceneKit.SCNMaterialProperty.GetPrecomputedLightingEnvironmentContents(Foundation.NSUrl,Foundation.NSError@)
-M:SceneKit.SCNMaterialProperty.GetPrecomputedLightingEnvironmentData(Foundation.NSObject,Metal.IMTLDevice,Foundation.NSError@)
-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.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@)
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.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String)
-M:SceneKit.SCNMorpher.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString)
M:SceneKit.SCNMorpher.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNMorpher.GetAnimation(Foundation.NSString)
-M:SceneKit.SCNMorpher.GetAnimationKeys
-M:SceneKit.SCNMorpher.GetAnimationPlayer(Foundation.NSString)
-M:SceneKit.SCNMorpher.GetWeight(System.String)
-M:SceneKit.SCNMorpher.GetWeight(System.UIntPtr)
-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.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.SCNMorpher.SetWeight(System.Runtime.InteropServices.NFloat,System.String)
-M:SceneKit.SCNMorpher.SetWeight(System.Runtime.InteropServices.NFloat,System.UIntPtr)
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.AddAudioPlayer(SceneKit.SCNAudioPlayer)
-M:SceneKit.SCNNode.AddChildNode(SceneKit.SCNNode)
M:SceneKit.SCNNode.AddNodes(SceneKit.SCNNode[])
-M:SceneKit.SCNNode.AddParticleSystem(SceneKit.SCNParticleSystem)
-M:SceneKit.SCNNode.Clone
-M:SceneKit.SCNNode.ConvertPositionFromNode(SceneKit.SCNVector3,SceneKit.SCNNode)
-M:SceneKit.SCNNode.ConvertPositionToNode(SceneKit.SCNVector3,SceneKit.SCNNode)
-M:SceneKit.SCNNode.ConvertTransformFromNode(SceneKit.SCNMatrix4,SceneKit.SCNNode)
-M:SceneKit.SCNNode.ConvertTransformToNode(SceneKit.SCNMatrix4,SceneKit.SCNNode)
-M:SceneKit.SCNNode.ConvertVectorFromNode(SceneKit.SCNVector3,SceneKit.SCNNode)
-M:SceneKit.SCNNode.ConvertVectorToNode(SceneKit.SCNVector3,SceneKit.SCNNode)
M:SceneKit.SCNNode.Copy(Foundation.NSZone)
-M:SceneKit.SCNNode.Create
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.EnumerateChildNodes(SceneKit.SCNNodeHandler)
-M:SceneKit.SCNNode.EnumerateHierarchy(SceneKit.SCNNodeHandler)
-M:SceneKit.SCNNode.FindChildNode(System.String,System.Boolean)
-M:SceneKit.SCNNode.FindNodes(SceneKit.SCNNodePredicate)
-M:SceneKit.SCNNode.FlattenedClone
-M:SceneKit.SCNNode.FromGeometry(SceneKit.SCNGeometry)
-M:SceneKit.SCNNode.FromModelObject(ModelIO.MDLObject)
-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.InsertChildNode(SceneKit.SCNNode,System.IntPtr)
-M:SceneKit.SCNNode.IsAnimationPaused(Foundation.NSString)
M:SceneKit.SCNNode.IsAnimationPaused(System.String)
-M:SceneKit.SCNNode.LocalRotate(SceneKit.SCNQuaternion)
-M:SceneKit.SCNNode.LocalTranslate(SceneKit.SCNVector3)
-M:SceneKit.SCNNode.Look(SceneKit.SCNVector3,SceneKit.SCNVector3,SceneKit.SCNVector3)
-M:SceneKit.SCNNode.Look(SceneKit.SCNVector3)
-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.RemoveAllAudioPlayers
-M:SceneKit.SCNNode.RemoveAllParticleSystems
-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.RemoveAudioPlayer(SceneKit.SCNAudioPlayer)
-M:SceneKit.SCNNode.RemoveFromParentNode
-M:SceneKit.SCNNode.RemoveParticleSystem(SceneKit.SCNParticleSystem)
-M:SceneKit.SCNNode.ReplaceChildNode(SceneKit.SCNNode,SceneKit.SCNNode)
-M:SceneKit.SCNNode.ResumeAnimation(Foundation.NSString)
M:SceneKit.SCNNode.ResumeAnimation(System.String)
-M:SceneKit.SCNNode.Rotate(SceneKit.SCNQuaternion,SceneKit.SCNVector3)
-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.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.SCNNodeRendererDelegate_Extensions.Render(SceneKit.ISCNNodeRendererDelegate,SceneKit.SCNNode,SceneKit.SCNRenderer,Foundation.NSDictionary)
-M:SceneKit.SCNNodeRendererDelegate.Render(SceneKit.SCNNode,SceneKit.SCNRenderer,Foundation.NSDictionary)
M:SceneKit.SCNParticlePropertyController.Copy(Foundation.NSZone)
-M:SceneKit.SCNParticlePropertyController.Create(CoreAnimation.CAAnimation)
M:SceneKit.SCNParticlePropertyController.Dispose(System.Boolean)
M:SceneKit.SCNParticlePropertyController.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNParticleSystem.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String)
-M:SceneKit.SCNParticleSystem.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString)
-M:SceneKit.SCNParticleSystem.AddModifier(Foundation.NSString[],SceneKit.SCNParticleModifierStage,SceneKit.SCNParticleModifierHandler)
M:SceneKit.SCNParticleSystem.Copy(Foundation.NSZone)
-M:SceneKit.SCNParticleSystem.Create
-M:SceneKit.SCNParticleSystem.Create(System.String,System.String)
M:SceneKit.SCNParticleSystem.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNParticleSystem.GetAnimation(Foundation.NSString)
-M:SceneKit.SCNParticleSystem.GetAnimationKeys
-M:SceneKit.SCNParticleSystem.GetAnimationPlayer(Foundation.NSString)
-M:SceneKit.SCNParticleSystem.HandleEvent(SceneKit.SCNParticleEvent,Foundation.NSString[],SceneKit.SCNParticleEventHandler)
-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.RemoveAllModifiers
-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.RemoveModifiers(SceneKit.SCNParticleModifierStage)
-M:SceneKit.SCNParticleSystem.Reset
-M:SceneKit.SCNParticleSystem.ResumeAnimation(Foundation.NSString)
-M:SceneKit.SCNParticleSystem.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.SCNPhysicsBallSocketJoint.Create(SceneKit.SCNPhysicsBody,SceneKit.SCNVector3,SceneKit.SCNPhysicsBody,SceneKit.SCNVector3)
-M:SceneKit.SCNPhysicsBallSocketJoint.Create(SceneKit.SCNPhysicsBody,SceneKit.SCNVector3)
M:SceneKit.SCNPhysicsBehavior.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNPhysicsBody.ApplyForce(SceneKit.SCNVector3,SceneKit.SCNVector3,System.Boolean)
-M:SceneKit.SCNPhysicsBody.ApplyForce(SceneKit.SCNVector3,System.Boolean)
-M:SceneKit.SCNPhysicsBody.ApplyTorque(SceneKit.SCNVector4,System.Boolean)
-M:SceneKit.SCNPhysicsBody.ClearAllForces
M:SceneKit.SCNPhysicsBody.Copy(Foundation.NSZone)
-M:SceneKit.SCNPhysicsBody.CreateBody(SceneKit.SCNPhysicsBodyType,SceneKit.SCNPhysicsShape)
-M:SceneKit.SCNPhysicsBody.CreateDynamicBody
-M:SceneKit.SCNPhysicsBody.CreateKinematicBody
-M:SceneKit.SCNPhysicsBody.CreateStaticBody
M:SceneKit.SCNPhysicsBody.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNPhysicsBody.ResetTransform
-M:SceneKit.SCNPhysicsBody.SetResting(System.Boolean)
-M:SceneKit.SCNPhysicsConeTwistJoint.FromBodies(SceneKit.SCNPhysicsBody,SceneKit.SCNMatrix4,SceneKit.SCNPhysicsBody,SceneKit.SCNMatrix4)
-M:SceneKit.SCNPhysicsConeTwistJoint.FromBody(SceneKit.SCNPhysicsBody,SceneKit.SCNMatrix4)
M:SceneKit.SCNPhysicsContactDelegate_Extensions.DidBeginContact(SceneKit.ISCNPhysicsContactDelegate,SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact)
M:SceneKit.SCNPhysicsContactDelegate_Extensions.DidEndContact(SceneKit.ISCNPhysicsContactDelegate,SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact)
M:SceneKit.SCNPhysicsContactDelegate_Extensions.DidUpdateContact(SceneKit.ISCNPhysicsContactDelegate,SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact)
-M:SceneKit.SCNPhysicsContactDelegate.DidBeginContact(SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact)
-M:SceneKit.SCNPhysicsContactDelegate.DidEndContact(SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact)
-M:SceneKit.SCNPhysicsContactDelegate.DidUpdateContact(SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact)
M:SceneKit.SCNPhysicsContactEventArgs.#ctor(SceneKit.SCNPhysicsContact)
M:SceneKit.SCNPhysicsField.Copy(Foundation.NSZone)
-M:SceneKit.SCNPhysicsField.CreateDragField
-M:SceneKit.SCNPhysicsField.CreateElectricField
-M:SceneKit.SCNPhysicsField.CreateLinearGravityField
-M:SceneKit.SCNPhysicsField.CreateMagneticField
-M:SceneKit.SCNPhysicsField.CreateNoiseField(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNPhysicsField.CreateRadialGravityField
-M:SceneKit.SCNPhysicsField.CreateSpringField
-M:SceneKit.SCNPhysicsField.CreateTurbulenceField(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNPhysicsField.CreateVortexField
-M:SceneKit.SCNPhysicsField.CustomField(SceneKit.SCNFieldForceEvaluator)
M:SceneKit.SCNPhysicsField.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNPhysicsHingeJoint.Create(SceneKit.SCNPhysicsBody,SceneKit.SCNVector3,SceneKit.SCNVector3,SceneKit.SCNPhysicsBody,SceneKit.SCNVector3,SceneKit.SCNVector3)
-M:SceneKit.SCNPhysicsHingeJoint.Create(SceneKit.SCNPhysicsBody,SceneKit.SCNVector3,SceneKit.SCNVector3)
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})
@@ -53943,21 +40828,13 @@ M:SceneKit.SCNPhysicsShape.Create(SceneKit.SCNPhysicsShape[],SceneKit.SCNMatrix4
M:SceneKit.SCNPhysicsShape.EncodeTo(Foundation.NSCoder)
M:SceneKit.SCNPhysicsShapeOptions.#ctor
M:SceneKit.SCNPhysicsShapeOptions.ToDictionary
-M:SceneKit.SCNPhysicsSliderJoint.Create(SceneKit.SCNPhysicsBody,SceneKit.SCNVector3,SceneKit.SCNVector3,SceneKit.SCNPhysicsBody,SceneKit.SCNVector3,SceneKit.SCNVector3)
-M:SceneKit.SCNPhysicsSliderJoint.Create(SceneKit.SCNPhysicsBody,SceneKit.SCNVector3,SceneKit.SCNVector3)
M:SceneKit.SCNPhysicsTest.#ctor
M:SceneKit.SCNPhysicsTest.#ctor(Foundation.NSDictionary)
-M:SceneKit.SCNPhysicsVehicle.ApplyBrakingForce(System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:SceneKit.SCNPhysicsVehicle.ApplyEngineForce(System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:SceneKit.SCNPhysicsVehicle.Create(SceneKit.SCNPhysicsBody,SceneKit.SCNPhysicsVehicleWheel[])
-M:SceneKit.SCNPhysicsVehicle.SetSteeringAngle(System.Runtime.InteropServices.NFloat,System.IntPtr)
M:SceneKit.SCNPhysicsVehicleWheel.Copy(Foundation.NSZone)
-M:SceneKit.SCNPhysicsVehicleWheel.Create(SceneKit.SCNNode)
M:SceneKit.SCNPhysicsVehicleWheel.EncodeTo(Foundation.NSCoder)
M:SceneKit.SCNPhysicsWorld.add_DidBeginContact(System.EventHandler{SceneKit.SCNPhysicsContactEventArgs})
M:SceneKit.SCNPhysicsWorld.add_DidEndContact(System.EventHandler{SceneKit.SCNPhysicsContactEventArgs})
M:SceneKit.SCNPhysicsWorld.add_DidUpdateContact(System.EventHandler{SceneKit.SCNPhysicsContactEventArgs})
-M:SceneKit.SCNPhysicsWorld.AddBehavior(SceneKit.SCNPhysicsBehavior)
M:SceneKit.SCNPhysicsWorld.ContactTest(SceneKit.SCNPhysicsBody,SceneKit.SCNPhysicsBody,SceneKit.SCNPhysicsTest)
M:SceneKit.SCNPhysicsWorld.ContactTest(SceneKit.SCNPhysicsBody,SceneKit.SCNPhysicsTest)
M:SceneKit.SCNPhysicsWorld.ConvexSweepTest(SceneKit.SCNPhysicsShape,SceneKit.SCNMatrix4,SceneKit.SCNMatrix4,SceneKit.SCNPhysicsTest)
@@ -53967,114 +40844,54 @@ 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.SCNPhysicsWorld.RemoveAllBehaviors
-M:SceneKit.SCNPhysicsWorld.RemoveBehavior(SceneKit.SCNPhysicsBehavior)
-M:SceneKit.SCNPhysicsWorld.UpdateCollisionPairs
-M:SceneKit.SCNPlane.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNProgram.Copy(Foundation.NSZone)
-M:SceneKit.SCNProgram.Create
M:SceneKit.SCNProgram.Dispose(System.Boolean)
M:SceneKit.SCNProgram.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNProgram.GetSemantic(System.String)
-M:SceneKit.SCNProgram.HandleBinding(System.String,SceneKit.SCNBufferFrequency,SceneKit.SCNBufferBindingHandler)
M:SceneKit.SCNProgram.SetSemantic(Foundation.NSString,System.String,SceneKit.SCNProgramSemanticOptions)
M:SceneKit.SCNProgramDelegate_Extensions.BindValue(SceneKit.ISCNProgramDelegate,SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer)
M:SceneKit.SCNProgramDelegate_Extensions.HandleError(SceneKit.ISCNProgramDelegate,SceneKit.SCNProgram,Foundation.NSError)
M:SceneKit.SCNProgramDelegate_Extensions.IsProgramOpaque(SceneKit.ISCNProgramDelegate,SceneKit.SCNProgram)
M:SceneKit.SCNProgramDelegate_Extensions.UnbindValue(SceneKit.ISCNProgramDelegate,SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer)
-M:SceneKit.SCNProgramDelegate.BindValue(SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer)
-M:SceneKit.SCNProgramDelegate.HandleError(SceneKit.SCNProgram,Foundation.NSError)
-M:SceneKit.SCNProgramDelegate.IsProgramOpaque(SceneKit.SCNProgram)
-M:SceneKit.SCNProgramDelegate.UnbindValue(SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer)
M:SceneKit.SCNProgramSemanticOptions.#ctor
M:SceneKit.SCNProgramSemanticOptions.#ctor(Foundation.NSDictionary)
M:SceneKit.SCNPropertyControllers.#ctor
-M:SceneKit.SCNPyramid.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNQuaternion.#ctor(CoreGraphics.RMatrix3@)
M:SceneKit.SCNQuaternion.#ctor(System.Numerics.Quaternion)
-M:SceneKit.SCNReferenceNode.#ctor(Foundation.NSUrl)
-M:SceneKit.SCNReferenceNode.CreateFromUrl(Foundation.NSUrl)
M:SceneKit.SCNReferenceNode.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNReferenceNode.Load
-M:SceneKit.SCNReferenceNode.Unload
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.FromContext(System.IntPtr,Foundation.NSDictionary)
-M:SceneKit.SCNRenderer.FromDevice(Metal.IMTLDevice,Foundation.NSDictionary)
-M:SceneKit.SCNRenderer.GetNodesInsideFrustum(SceneKit.SCNNode)
-M:SceneKit.SCNRenderer.GetSnapshot(System.Double,CoreGraphics.CGSize,SceneKit.SCNAntialiasingMode)
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.Render
-M:SceneKit.SCNRenderer.Render(CoreGraphics.CGRect,Metal.IMTLCommandBuffer,Metal.MTLRenderPassDescriptor)
-M:SceneKit.SCNRenderer.Render(System.Double,CoreGraphics.CGRect,Metal.IMTLCommandBuffer,Metal.MTLRenderPassDescriptor)
-M:SceneKit.SCNRenderer.Render(System.Double)
-M:SceneKit.SCNRenderer.UnprojectPoint(SceneKit.SCNVector3)
-M:SceneKit.SCNRenderer.Update(SceneKit.SCNNode[],System.Double)
-M:SceneKit.SCNRenderer.Update(System.Double)
M:SceneKit.SCNRenderingOptions.#ctor
M:SceneKit.SCNRenderingOptions.#ctor(Foundation.NSDictionary)
-M:SceneKit.SCNReplicatorConstraint.FromTarget(SceneKit.SCNNode)
M:SceneKit.SCNScene.Add(SceneKit.SCNNode)
-M:SceneKit.SCNScene.AddParticleSystem(SceneKit.SCNParticleSystem,SceneKit.SCNMatrix4)
-M:SceneKit.SCNScene.Create
M:SceneKit.SCNScene.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNScene.FromAsset(ModelIO.MDLAsset)
M:SceneKit.SCNScene.FromFile(System.String,System.String,SceneKit.SCNSceneLoadingOptions)
-M:SceneKit.SCNScene.FromFile(System.String)
M:SceneKit.SCNScene.FromUrl(Foundation.NSUrl,SceneKit.SCNSceneLoadingOptions,Foundation.NSError@)
-M:SceneKit.SCNScene.GetAttribute(Foundation.NSString)
M:SceneKit.SCNScene.GetEnumerator
-M:SceneKit.SCNScene.RemoveAllParticleSystems
-M:SceneKit.SCNScene.RemoveParticleSystem(SceneKit.SCNParticleSystem)
-M:SceneKit.SCNScene.SetAttribute(Foundation.NSObject,Foundation.NSString)
M:SceneKit.SCNScene.WriteToUrl(Foundation.NSUrl,SceneKit.SCNSceneLoadingOptions,SceneKit.ISCNSceneExportDelegate,SceneKit.SCNSceneExportProgressHandler)
M:SceneKit.SCNSceneExportDelegate_Extensions.WriteImage(SceneKit.ISCNSceneExportDelegate,AppKit.NSImage,Foundation.NSUrl,Foundation.NSUrl)
M:SceneKit.SCNSceneExportDelegate_Extensions.WriteImage(SceneKit.ISCNSceneExportDelegate,UIKit.UIImage,Foundation.NSUrl,Foundation.NSUrl)
-M:SceneKit.SCNSceneExportDelegate.WriteImage(AppKit.NSImage,Foundation.NSUrl,Foundation.NSUrl)
-M:SceneKit.SCNSceneExportDelegate.WriteImage(UIKit.UIImage,Foundation.NSUrl,Foundation.NSUrl)
M:SceneKit.SCNSceneLoadingOptions.#ctor
M:SceneKit.SCNSceneLoadingOptions.#ctor(Foundation.NSDictionary)
M:SceneKit.SCNSceneRenderer_Extensions.GetWorkingColorSpace(SceneKit.ISCNSceneRenderer)
M:SceneKit.SCNSceneRenderer_Extensions.PrepareAsync(SceneKit.ISCNSceneRenderer,Foundation.NSObject[])
M:SceneKit.SCNSceneRenderer_Extensions.PresentSceneAsync(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode)
-M:SceneKit.SCNSceneRenderer.GetNodesInsideFrustum(SceneKit.SCNNode)
M:SceneKit.SCNSceneRenderer.HitTest(CoreGraphics.CGPoint,SceneKit.SCNHitTestOptions)
-M:SceneKit.SCNSceneRenderer.IsNodeInsideFrustum(SceneKit.SCNNode,SceneKit.SCNNode)
-M:SceneKit.SCNSceneRenderer.Prepare(Foundation.NSObject,System.Func{System.Boolean})
-M:SceneKit.SCNSceneRenderer.Prepare(Foundation.NSObject[],System.Action{System.Boolean})
-M:SceneKit.SCNSceneRenderer.PresentScene(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode,System.Action)
-M:SceneKit.SCNSceneRenderer.ProjectPoint(SceneKit.SCNVector3)
-M:SceneKit.SCNSceneRenderer.UnprojectPoint(SceneKit.SCNVector3)
M:SceneKit.SCNSceneRendererDelegate_Extensions.DidApplyAnimations(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,System.Double)
M:SceneKit.SCNSceneRendererDelegate_Extensions.DidApplyConstraints(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,System.Double)
M:SceneKit.SCNSceneRendererDelegate_Extensions.DidRenderScene(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double)
M:SceneKit.SCNSceneRendererDelegate_Extensions.DidSimulatePhysics(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,System.Double)
M:SceneKit.SCNSceneRendererDelegate_Extensions.Update(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,System.Double)
M:SceneKit.SCNSceneRendererDelegate_Extensions.WillRenderScene(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double)
-M:SceneKit.SCNSceneRendererDelegate.DidApplyAnimations(SceneKit.ISCNSceneRenderer,System.Double)
-M:SceneKit.SCNSceneRendererDelegate.DidApplyConstraints(SceneKit.ISCNSceneRenderer,System.Double)
-M:SceneKit.SCNSceneRendererDelegate.DidRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double)
-M:SceneKit.SCNSceneRendererDelegate.DidSimulatePhysics(SceneKit.ISCNSceneRenderer,System.Double)
-M:SceneKit.SCNSceneRendererDelegate.Update(SceneKit.ISCNSceneRenderer,System.Double)
-M:SceneKit.SCNSceneRendererDelegate.WillRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double)
M:SceneKit.SCNSceneSource.#ctor(Foundation.NSData,SceneKit.SCNSceneLoadingOptions)
M:SceneKit.SCNSceneSource.#ctor(Foundation.NSUrl,SceneKit.SCNSceneLoadingOptions)
-M:SceneKit.SCNSceneSource.EntriesPassingTest(SceneKit.SCNSceneSourceFilter)
M:SceneKit.SCNSceneSource.FromData(Foundation.NSData,SceneKit.SCNSceneLoadingOptions)
M:SceneKit.SCNSceneSource.FromUrl(Foundation.NSUrl,SceneKit.SCNSceneLoadingOptions)
-M:SceneKit.SCNSceneSource.GetEntryWithIdentifier(System.String,ObjCRuntime.Class)
M:SceneKit.SCNSceneSource.GetEntryWithIdentifier``1(System.String)
-M:SceneKit.SCNSceneSource.GetIdentifiersOfEntries(ObjCRuntime.Class)
M:SceneKit.SCNSceneSource.GetIdentifiersOfEntries``1
-M:SceneKit.SCNSceneSource.GetProperty(Foundation.NSString)
M:SceneKit.SCNSceneSource.SceneFromOptions(SceneKit.SCNSceneLoadingOptions,SceneKit.SCNSceneSourceStatusHandler)
M:SceneKit.SCNSceneSource.SceneWithOption(SceneKit.SCNSceneLoadingOptions,Foundation.NSError@)
M:SceneKit.SCNShadable_Extensions.GetMinimumLanguageVersion(SceneKit.ISCNShadable)
@@ -54085,55 +40902,16 @@ M:SceneKit.SCNShadable_Extensions.HandleUnbinding(SceneKit.ISCNShadable,System.S
M:SceneKit.SCNShadable_Extensions.SetMinimumLanguageVersion(SceneKit.ISCNShadable,Foundation.NSNumber)
M:SceneKit.SCNShadable_Extensions.SetProgram(SceneKit.ISCNShadable,SceneKit.SCNProgram)
M:SceneKit.SCNShadable_Extensions.SetWeakShaderModifiers(SceneKit.ISCNShadable,Foundation.NSDictionary)
-M:SceneKit.SCNShadable.HandleBinding(System.String,SceneKit.SCNBindingHandler)
-M:SceneKit.SCNShadable.HandleUnbinding(System.String,SceneKit.SCNBindingHandler)
M:SceneKit.SCNShaderModifiers.#ctor
M:SceneKit.SCNShaderModifiers.#ctor(Foundation.NSDictionary)
-M:SceneKit.SCNShape.Create(AppKit.NSBezierPath,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNShape.Create(UIKit.UIBezierPath,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNSkinner.Create(SceneKit.SCNGeometry,SceneKit.SCNNode[],SceneKit.SCNMatrix4[],SceneKit.SCNGeometrySource,SceneKit.SCNGeometrySource)
M:SceneKit.SCNSkinner.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNSliderConstraint.Create
-M:SceneKit.SCNSphere.Create(System.Runtime.InteropServices.NFloat)
-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.Create(Foundation.NSDictionary)
-M:SceneKit.SCNTechnique.Create(SceneKit.SCNTechnique[])
M:SceneKit.SCNTechnique.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNTechnique.GetAnimation(Foundation.NSString)
-M:SceneKit.SCNTechnique.GetAnimationKeys
-M:SceneKit.SCNTechnique.GetAnimationPlayer(Foundation.NSString)
-M:SceneKit.SCNTechnique.HandleBinding(System.String,SceneKit.SCNBindingHandler)
-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.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.SCNTechnique.ToDictionary
M:SceneKit.SCNText.Create(Foundation.NSAttributedString,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNText.Create(Foundation.NSObject,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNText.Create(System.String,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNTimingFunction.Create(CoreAnimation.CAMediaTimingFunction)
-M:SceneKit.SCNTimingFunction.Create(SceneKit.SCNActionTimingMode)
M:SceneKit.SCNTimingFunction.EncodeTo(Foundation.NSCoder)
-M:SceneKit.SCNTorus.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNTransaction.Begin
-M:SceneKit.SCNTransaction.Commit
-M:SceneKit.SCNTransaction.Flush
-M:SceneKit.SCNTransaction.Lock
M:SceneKit.SCNTransaction.SetCompletionBlock(System.Action)
-M:SceneKit.SCNTransaction.SetValueForKey(Foundation.NSObject,Foundation.NSString)
-M:SceneKit.SCNTransaction.Unlock
-M:SceneKit.SCNTransaction.ValueForKey(Foundation.NSString)
-M:SceneKit.SCNTransformConstraint.Create(System.Boolean,SceneKit.SCNTransformConstraintHandler)
-M:SceneKit.SCNTransformConstraint.CreateOrientationConstraint(System.Boolean,System.Func{SceneKit.SCNNode,SceneKit.SCNQuaternion,SceneKit.SCNQuaternion})
-M:SceneKit.SCNTransformConstraint.CreatePositionConstraint(System.Boolean,System.Func{SceneKit.SCNNode,SceneKit.SCNVector3,SceneKit.SCNVector3})
-M:SceneKit.SCNTube.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNVector3.#ctor(System.Numerics.Vector3)
M:SceneKit.SCNVector3.op_Explicit(SceneKit.SCNVector3)~System.Numerics.Vector3
M:SceneKit.SCNVector3.op_Implicit(System.Numerics.Vector3)~SceneKit.SCNVector3
@@ -54141,25 +40919,13 @@ M:SceneKit.SCNVector4.#ctor(System.Numerics.Vector3)
M:SceneKit.SCNVector4.#ctor(System.Numerics.Vector4)
M:SceneKit.SCNVector4.op_Explicit(SceneKit.SCNVector4)~System.Numerics.Vector4
M:SceneKit.SCNVector4.op_Implicit(System.Numerics.Vector4)~SceneKit.SCNVector4
-M:SceneKit.SCNView.#ctor(CoreGraphics.CGRect,Foundation.NSDictionary)
M:SceneKit.SCNView.#ctor(CoreGraphics.CGRect,SceneKit.SCNRenderingOptions)
M:SceneKit.SCNView.#ctor(CoreGraphics.CGRect)
M:SceneKit.SCNView.Dispose(System.Boolean)
-M:SceneKit.SCNView.GetNodesInsideFrustum(SceneKit.SCNNode)
M:SceneKit.SCNView.HitTest(CoreGraphics.CGPoint,SceneKit.SCNHitTestOptions)
-M:SceneKit.SCNView.IsNodeInsideFrustum(SceneKit.SCNNode,SceneKit.SCNNode)
-M:SceneKit.SCNView.Pause(Foundation.NSObject)
-M:SceneKit.SCNView.Play(Foundation.NSObject)
-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.Snapshot
-M:SceneKit.SCNView.Stop(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)
@@ -54172,61 +40938,22 @@ M:ScreenCaptureKit.ISCStreamDelegate.OutputVideoEffectDidStop(ScreenCaptureKit.S
M:ScreenCaptureKit.ISCStreamDelegate.StreamDidBecomeActive(ScreenCaptureKit.SCStream)
M:ScreenCaptureKit.ISCStreamDelegate.StreamDidBecomeInactive(ScreenCaptureKit.SCStream)
M:ScreenCaptureKit.ISCStreamOutput.DidOutputSampleBuffer(ScreenCaptureKit.SCStream,CoreMedia.CMSampleBuffer,ScreenCaptureKit.SCStreamOutputType)
-M:ScreenCaptureKit.SCContentFilter.#ctor(ScreenCaptureKit.SCWindow)
-M:ScreenCaptureKit.SCContentSharingPicker.AddObserver(ScreenCaptureKit.ISCContentSharingPickerObserver)
-M:ScreenCaptureKit.SCContentSharingPicker.Present
-M:ScreenCaptureKit.SCContentSharingPicker.Present(ScreenCaptureKit.SCShareableContentStyle)
-M:ScreenCaptureKit.SCContentSharingPicker.Present(ScreenCaptureKit.SCStream,ScreenCaptureKit.SCShareableContentStyle)
-M:ScreenCaptureKit.SCContentSharingPicker.Present(ScreenCaptureKit.SCStream)
-M:ScreenCaptureKit.SCContentSharingPicker.RemoveObserver(ScreenCaptureKit.ISCContentSharingPickerObserver)
-M:ScreenCaptureKit.SCContentSharingPicker.SetConfiguration(ScreenCaptureKit.SCContentSharingPickerConfiguration,ScreenCaptureKit.SCStream)
-M:ScreenCaptureKit.SCContentSharingPickerObserver.DidCancel(ScreenCaptureKit.SCContentSharingPicker,ScreenCaptureKit.SCStream)
-M:ScreenCaptureKit.SCContentSharingPickerObserver.DidFail(Foundation.NSError)
-M:ScreenCaptureKit.SCContentSharingPickerObserver.DidUpdate(ScreenCaptureKit.SCContentSharingPicker,ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStream)
-M:ScreenCaptureKit.SCRecordingOutput.#ctor(ScreenCaptureKit.SCRecordingOutputConfiguration,ScreenCaptureKit.ISCRecordingOutputDelegate)
-M:ScreenCaptureKit.SCRecordingOutputDelegate.DidFail(ScreenCaptureKit.SCRecordingOutput,Foundation.NSError)
-M:ScreenCaptureKit.SCRecordingOutputDelegate.DidFinishRecording(ScreenCaptureKit.SCRecordingOutput)
-M:ScreenCaptureKit.SCRecordingOutputDelegate.DidStartRecording(ScreenCaptureKit.SCRecordingOutput)
-M:ScreenCaptureKit.SCScreenshotManager.CaptureImage(CoreGraphics.CGRect,ScreenCaptureKit.SCScreenshotManagerCaptureImageCallback)
-M:ScreenCaptureKit.SCScreenshotManager.CaptureImage(ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStreamConfiguration,System.Action{CoreGraphics.CGImage,Foundation.NSError})
M:ScreenCaptureKit.SCScreenshotManager.CaptureImageAsync(CoreGraphics.CGRect)
M:ScreenCaptureKit.SCScreenshotManager.CaptureImageAsync(ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStreamConfiguration)
-M:ScreenCaptureKit.SCScreenshotManager.CaptureSampleBuffer(ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStreamConfiguration,System.Action{CoreMedia.CMSampleBuffer,Foundation.NSError})
M:ScreenCaptureKit.SCScreenshotManager.CaptureSampleBufferAsync(ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStreamConfiguration)
-M:ScreenCaptureKit.SCShareableContent.GetCurrentProcessShareableContent(System.Action{ScreenCaptureKit.SCShareableContent,Foundation.NSError})
M:ScreenCaptureKit.SCShareableContent.GetCurrentProcessShareableContentAsync
-M:ScreenCaptureKit.SCShareableContent.GetInfo(ScreenCaptureKit.SCContentFilter)
-M:ScreenCaptureKit.SCShareableContent.GetShareableContent(System.Action{ScreenCaptureKit.SCShareableContent,Foundation.NSError})
-M:ScreenCaptureKit.SCShareableContent.GetShareableContent(System.Boolean,System.Boolean,System.Action{ScreenCaptureKit.SCShareableContent,Foundation.NSError})
-M:ScreenCaptureKit.SCShareableContent.GetShareableContentAboveWindow(System.Boolean,ScreenCaptureKit.SCWindow,System.Action{ScreenCaptureKit.SCShareableContent,Foundation.NSError})
M:ScreenCaptureKit.SCShareableContent.GetShareableContentAboveWindowAsync(System.Boolean,ScreenCaptureKit.SCWindow)
M:ScreenCaptureKit.SCShareableContent.GetShareableContentAsync
M:ScreenCaptureKit.SCShareableContent.GetShareableContentAsync(System.Boolean,System.Boolean)
-M:ScreenCaptureKit.SCShareableContent.GetShareableContentBelowWindow(System.Boolean,ScreenCaptureKit.SCWindow,System.Action{ScreenCaptureKit.SCShareableContent,Foundation.NSError})
M:ScreenCaptureKit.SCShareableContent.GetShareableContentBelowWindowAsync(System.Boolean,ScreenCaptureKit.SCWindow)
-M:ScreenCaptureKit.SCStream.#ctor(ScreenCaptureKit.SCContentFilter,ScreenCaptureKit.SCStreamConfiguration,ScreenCaptureKit.ISCStreamDelegate)
-M:ScreenCaptureKit.SCStream.AddRecordingOutput(ScreenCaptureKit.SCRecordingOutput,Foundation.NSError@)
-M:ScreenCaptureKit.SCStream.AddStreamOutput(ScreenCaptureKit.ISCStreamOutput,ScreenCaptureKit.SCStreamOutputType,CoreFoundation.DispatchQueue,Foundation.NSError@)
-M:ScreenCaptureKit.SCStream.RemoveRecordingOutput(ScreenCaptureKit.SCRecordingOutput,Foundation.NSError@)
-M:ScreenCaptureKit.SCStream.RemoveStreamOutput(ScreenCaptureKit.ISCStreamOutput,ScreenCaptureKit.SCStreamOutputType,Foundation.NSError@)
-M:ScreenCaptureKit.SCStream.StartCapture(System.Action{Foundation.NSError})
-M:ScreenCaptureKit.SCStream.StopCapture(System.Action{Foundation.NSError})
-M:ScreenCaptureKit.SCStream.UpdateConfiguration(ScreenCaptureKit.SCStreamConfiguration,System.Action{Foundation.NSError})
M:ScreenCaptureKit.SCStream.UpdateConfigurationAsync(ScreenCaptureKit.SCStreamConfiguration)
-M:ScreenCaptureKit.SCStream.UpdateContentFilter(ScreenCaptureKit.SCContentFilter,System.Action{Foundation.NSError})
M:ScreenCaptureKit.SCStream.UpdateContentFilterAsync(ScreenCaptureKit.SCContentFilter)
-M:ScreenCaptureKit.SCStreamConfiguration.Create(ScreenCaptureKit.SCStreamConfigurationPreset)
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.StreamDidBecomeActive(ScreenCaptureKit.ISCStreamDelegate,ScreenCaptureKit.SCStream)
M:ScreenCaptureKit.SCStreamDelegate_Extensions.StreamDidBecomeInactive(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.StreamDidBecomeActive(ScreenCaptureKit.SCStream)
-M:ScreenCaptureKit.SCStreamDelegate.StreamDidBecomeInactive(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)
@@ -54513,11 +41240,8 @@ 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.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:SensorKit.ISRSensorReaderDelegate.DidChangeAuthorizationStatus(SensorKit.SRSensorReader,SensorKit.SRAuthorizationStatus)
@@ -54550,8 +41274,6 @@ 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.SRKeyboardMetrics.EmojiCount(SensorKit.SRKeyboardMetricsSentimentCategory)
-M:SensorKit.SRKeyboardMetrics.WordCount(SensorKit.SRKeyboardMetricsSentimentCategory)
M:SensorKit.SRMediaEvent.Copy(Foundation.NSZone)
M:SensorKit.SRMediaEvent.EncodeTo(Foundation.NSCoder)
M:SensorKit.SRPhotoplethysmogramAccelerometerSample.Copy(Foundation.NSZone)
@@ -54561,15 +41283,9 @@ 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(Foundation.NSString)
M:SensorKit.SRSensorReader.#ctor(SensorKit.SRSensor)
M:SensorKit.SRSensorReader.Dispose(System.Boolean)
-M:SensorKit.SRSensorReader.Fetch(SensorKit.SRFetchRequest)
-M:SensorKit.SRSensorReader.FetchDevices
-M:SensorKit.SRSensorReader.RequestAuthorization(Foundation.NSSet{Foundation.NSString},System.Action{Foundation.NSError})
M:SensorKit.SRSensorReader.RequestAuthorizationAsync(Foundation.NSSet{Foundation.NSString})
-M:SensorKit.SRSensorReader.StartRecording
-M:SensorKit.SRSensorReader.StopRecording
M:SensorKit.SRSensorReaderDelegate_Extensions.DidChangeAuthorizationStatus(SensorKit.ISRSensorReaderDelegate,SensorKit.SRSensorReader,SensorKit.SRAuthorizationStatus)
M:SensorKit.SRSensorReaderDelegate_Extensions.DidCompleteFetch(SensorKit.ISRSensorReaderDelegate,SensorKit.SRSensorReader,SensorKit.SRFetchRequest)
M:SensorKit.SRSensorReaderDelegate_Extensions.DidFetchDevices(SensorKit.ISRSensorReaderDelegate,SensorKit.SRSensorReader,SensorKit.SRDevice[])
@@ -54580,16 +41296,6 @@ M:SensorKit.SRSensorReaderDelegate_Extensions.FetchingRequestFailed(SensorKit.IS
M:SensorKit.SRSensorReaderDelegate_Extensions.StartRecordingFailed(SensorKit.ISRSensorReaderDelegate,SensorKit.SRSensorReader,Foundation.NSError)
M:SensorKit.SRSensorReaderDelegate_Extensions.StopRecordingFailed(SensorKit.ISRSensorReaderDelegate,SensorKit.SRSensorReader,Foundation.NSError)
M:SensorKit.SRSensorReaderDelegate_Extensions.WillStartRecording(SensorKit.ISRSensorReaderDelegate,SensorKit.SRSensorReader)
-M:SensorKit.SRSensorReaderDelegate.DidChangeAuthorizationStatus(SensorKit.SRSensorReader,SensorKit.SRAuthorizationStatus)
-M:SensorKit.SRSensorReaderDelegate.DidCompleteFetch(SensorKit.SRSensorReader,SensorKit.SRFetchRequest)
-M:SensorKit.SRSensorReaderDelegate.DidFetchDevices(SensorKit.SRSensorReader,SensorKit.SRDevice[])
-M:SensorKit.SRSensorReaderDelegate.DidFetchResult(SensorKit.SRSensorReader,SensorKit.SRFetchRequest,SensorKit.SRFetchResult{Foundation.NSObject})
-M:SensorKit.SRSensorReaderDelegate.DidStopRecording(SensorKit.SRSensorReader)
-M:SensorKit.SRSensorReaderDelegate.FetchDevicesFailed(SensorKit.SRSensorReader,Foundation.NSError)
-M:SensorKit.SRSensorReaderDelegate.FetchingRequestFailed(SensorKit.SRSensorReader,SensorKit.SRFetchRequest,Foundation.NSError)
-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)
@@ -54620,47 +41326,25 @@ M:SharedWithYou.SWAttributionView.SWAttributionViewAppearance.#ctor(System.IntPt
M:SharedWithYou.SWCollaborationHighlight.Copy(Foundation.NSZone)
M:SharedWithYou.SWCollaborationHighlight.EncodeTo(Foundation.NSCoder)
M:SharedWithYou.SWCollaborationView.#ctor(CoreGraphics.CGRect)
-M:SharedWithYou.SWCollaborationView.#ctor(Foundation.NSItemProvider)
-M:SharedWithYou.SWCollaborationView.DismissPopover(System.Action)
M:SharedWithYou.SWCollaborationView.Dispose(System.Boolean)
-M:SharedWithYou.SWCollaborationView.SetContentView(AppKit.NSView)
-M:SharedWithYou.SWCollaborationView.SetContentView(UIKit.UIView)
-M:SharedWithYou.SWCollaborationView.SetShowManageButton(System.Boolean)
M:SharedWithYou.SWCollaborationView.SWCollaborationViewAppearance.#ctor(System.IntPtr)
M:SharedWithYou.SWCollaborationViewDelegate_Extensions.DidDismissPopover(SharedWithYou.ISWCollaborationViewDelegate,SharedWithYou.SWCollaborationView)
M:SharedWithYou.SWCollaborationViewDelegate_Extensions.ShouldPresentPopover(SharedWithYou.ISWCollaborationViewDelegate,SharedWithYou.SWCollaborationView)
M:SharedWithYou.SWCollaborationViewDelegate_Extensions.WillPresentPopover(SharedWithYou.ISWCollaborationViewDelegate,SharedWithYou.SWCollaborationView)
-M:SharedWithYou.SWCollaborationViewDelegate.DidDismissPopover(SharedWithYou.SWCollaborationView)
-M:SharedWithYou.SWCollaborationViewDelegate.ShouldPresentPopover(SharedWithYou.SWCollaborationView)
-M:SharedWithYou.SWCollaborationViewDelegate.WillPresentPopover(SharedWithYou.SWCollaborationView)
M:SharedWithYou.SWHighlight.Copy(Foundation.NSZone)
M:SharedWithYou.SWHighlight.EncodeTo(Foundation.NSCoder)
-M:SharedWithYou.SWHighlightCenter.ClearNotices(SharedWithYou.SWCollaborationHighlight)
M:SharedWithYou.SWHighlightCenter.Dispose(System.Boolean)
-M:SharedWithYou.SWHighlightCenter.GetCollaborationHighlight(Foundation.NSUrl,System.Action{SharedWithYou.SWCollaborationHighlight,Foundation.NSError})
-M:SharedWithYou.SWHighlightCenter.GetCollaborationHighlight(System.String,Foundation.NSError@)
M:SharedWithYou.SWHighlightCenter.GetCollaborationHighlightAsync(Foundation.NSUrl)
-M:SharedWithYou.SWHighlightCenter.GetHighlight(Foundation.NSUrl,System.Action{SharedWithYou.SWHighlight,Foundation.NSError})
M:SharedWithYou.SWHighlightCenter.GetHighlightAsync(Foundation.NSUrl)
-M:SharedWithYou.SWHighlightCenter.GetSignedIdentityProof(SharedWithYou.SWCollaborationHighlight,Foundation.NSData,System.Action{SharedWithYouCore.SWSignedPersonIdentityProof,Foundation.NSError})
M:SharedWithYou.SWHighlightCenter.GetSignedIdentityProofAsync(SharedWithYou.SWCollaborationHighlight,Foundation.NSData)
-M:SharedWithYou.SWHighlightCenter.PostNotice(SharedWithYou.ISWHighlightEvent)
-M:SharedWithYou.SWHighlightCenterDelegate.HighlightsDidChange(SharedWithYou.SWHighlightCenter)
-M:SharedWithYou.SWHighlightChangeEvent.#ctor(SharedWithYou.SWHighlight,SharedWithYou.SWHighlightChangeEventTrigger)
M:SharedWithYou.SWHighlightChangeEvent.Copy(Foundation.NSZone)
M:SharedWithYou.SWHighlightChangeEvent.EncodeTo(Foundation.NSCoder)
-M:SharedWithYou.SWHighlightMembershipEvent.#ctor(SharedWithYou.SWHighlight,SharedWithYou.SWHighlightMembershipEventTrigger)
M:SharedWithYou.SWHighlightMembershipEvent.Copy(Foundation.NSZone)
M:SharedWithYou.SWHighlightMembershipEvent.EncodeTo(Foundation.NSCoder)
-M:SharedWithYou.SWHighlightMentionEvent.#ctor(SharedWithYou.SWHighlight,SharedWithYouCore.SWPersonIdentity)
-M:SharedWithYou.SWHighlightMentionEvent.#ctor(SharedWithYou.SWHighlight,System.String)
M:SharedWithYou.SWHighlightMentionEvent.Copy(Foundation.NSZone)
M:SharedWithYou.SWHighlightMentionEvent.EncodeTo(Foundation.NSCoder)
-M:SharedWithYou.SWHighlightPersistenceEvent.#ctor(SharedWithYou.SWHighlight,SharedWithYou.SWHighlightPersistenceEventTrigger)
M:SharedWithYou.SWHighlightPersistenceEvent.Copy(Foundation.NSZone)
M:SharedWithYou.SWHighlightPersistenceEvent.EncodeTo(Foundation.NSCoder)
-M:SharedWithYou.SWRemoveParticipantAlert.ShowAlert(SharedWithYouCore.SWPerson,SharedWithYou.SWCollaborationHighlight,AppKit.NSWindow)
-M:SharedWithYou.SWRemoveParticipantAlertController.Create(SharedWithYouCore.SWPerson,SharedWithYou.SWCollaborationHighlight)
M:SharedWithYouCore.ISWCollaborationActionHandler.HandleStartCollaborationAction(SharedWithYouCore.SWCollaborationCoordinator,SharedWithYouCore.SWStartCollaborationAction)
M:SharedWithYouCore.ISWCollaborationActionHandler.HandleUpdateCollaborationParticipantsAction(SharedWithYouCore.SWCollaborationCoordinator,SharedWithYouCore.SWUpdateCollaborationParticipantsAction)
M:SharedWithYouCore.SWAction.Copy(Foundation.NSZone)
@@ -54708,43 +41392,21 @@ 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.#ctor(Foundation.NSData,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
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)
@@ -54753,15 +41415,12 @@ M:Social.SLComposeServiceViewController.DidChangeSelection(Foundation.NSNotifica
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.DidEndFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController)
-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.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)
@@ -54770,14 +41429,8 @@ M:Social.SLComposeServiceViewController.GetUndoManager(AppKit.NSTextView)
M:Social.SLComposeServiceViewController.GetWritablePasteboardTypes(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr)
M:Social.SLComposeServiceViewController.GetWritingToolsIgnoredRangesInEnclosingRange(AppKit.NSTextView,Foundation.NSRange)
M:Social.SLComposeServiceViewController.GetWritingToolsIgnoredRangesInEnclosingRange(UIKit.UITextView,Foundation.NSRange)
-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.ShouldBeginEditing(UIKit.UITextView)
M:Social.SLComposeServiceViewController.ShouldChangeText(UIKit.UITextView,Foundation.NSRange,System.String)
@@ -54792,7 +41445,6 @@ M:Social.SLComposeServiceViewController.ShouldInteractWithUrl(UIKit.UITextView,F
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.WillBeginFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController)
M:Social.SLComposeServiceViewController.WillChangeSelection(AppKit.NSTextView,Foundation.NSRange,Foundation.NSRange)
M:Social.SLComposeServiceViewController.WillChangeSelectionFromRanges(AppKit.NSTextView,Foundation.NSValue[],Foundation.NSValue[])
@@ -54808,23 +41460,10 @@ M:Social.SLComposeServiceViewController.WritingToolsDidEnd(AppKit.NSTextView)
M:Social.SLComposeServiceViewController.WritingToolsDidEnd(UIKit.UITextView)
M:Social.SLComposeServiceViewController.WritingToolsWillBegin(AppKit.NSTextView)
M:Social.SLComposeServiceViewController.WritingToolsWillBegin(UIKit.UITextView)
-M:Social.SLComposeSheetConfigurationItem.#ctor
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.IsAvailable(Foundation.NSString)
M:Social.SLComposeViewController.IsAvailable(Social.SLServiceKind)
-M:Social.SLComposeViewController.RemoveAllImages
-M:Social.SLComposeViewController.RemoveAllUrls
-M:Social.SLComposeViewController.SetInitialText(System.String)
-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.GetPreparedUrlRequest
-M:Social.SLRequest.PerformRequest(System.Action{Foundation.NSData,Foundation.NSHttpUrlResponse,Foundation.NSError})
M:Social.SLRequest.PerformRequestAsync
M:Social.SLRequestResult.#ctor(Foundation.NSData,Foundation.NSHttpUrlResponse)
M:SoundAnalysis.ISNResultsObserving.DidComplete(SoundAnalysis.ISNRequest)
@@ -54862,22 +41501,13 @@ M:Speech.ISFSpeechRecognizerDelegate.AvailabilityDidChange(Speech.SFSpeechRecogn
M:Speech.SFAcousticFeature.Copy(Foundation.NSZone)
M:Speech.SFAcousticFeature.EncodeTo(Foundation.NSCoder)
M:Speech.SFAnalysisContextTag.#ctor
-M:Speech.SFSpeechAudioBufferRecognitionRequest.Append(AVFoundation.AVAudioPcmBuffer)
-M:Speech.SFSpeechAudioBufferRecognitionRequest.Append(CoreMedia.CMSampleBuffer)
-M:Speech.SFSpeechAudioBufferRecognitionRequest.EndAudio
-M:Speech.SFSpeechLanguageModel.PrepareCustomModel(Foundation.NSUrl,System.String,Speech.SFSpeechLanguageModelConfiguration,System.Action{Foundation.NSError})
-M:Speech.SFSpeechLanguageModel.PrepareCustomModel(Foundation.NSUrl,System.String,Speech.SFSpeechLanguageModelConfiguration,System.Boolean,System.Action{Foundation.NSError})
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(Foundation.NSUrl,Foundation.NSUrl)
-M:Speech.SFSpeechLanguageModelConfiguration.#ctor(Foundation.NSUrl)
M:Speech.SFSpeechLanguageModelConfiguration.Copy(Foundation.NSZone)
M:Speech.SFSpeechRecognitionMetadata.Copy(Foundation.NSZone)
M:Speech.SFSpeechRecognitionMetadata.EncodeTo(Foundation.NSCoder)
M:Speech.SFSpeechRecognitionResult.Copy(Foundation.NSZone)
M:Speech.SFSpeechRecognitionResult.EncodeTo(Foundation.NSCoder)
-M:Speech.SFSpeechRecognitionTask.Cancel
-M:Speech.SFSpeechRecognitionTask.Finish
M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidDetectSpeech(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask)
M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidFinishRecognition(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,Speech.SFSpeechRecognitionResult)
M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidFinishSuccessfully(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,System.Boolean)
@@ -54885,21 +41515,8 @@ M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidHypothesizeTranscription(
M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidProcessAudioDuration(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,System.Double)
M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.FinishedReadingAudio(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask)
M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.WasCancelled(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask)
-M:Speech.SFSpeechRecognitionTaskDelegate.DidDetectSpeech(Speech.SFSpeechRecognitionTask)
-M:Speech.SFSpeechRecognitionTaskDelegate.DidFinishRecognition(Speech.SFSpeechRecognitionTask,Speech.SFSpeechRecognitionResult)
-M:Speech.SFSpeechRecognitionTaskDelegate.DidFinishSuccessfully(Speech.SFSpeechRecognitionTask,System.Boolean)
-M:Speech.SFSpeechRecognitionTaskDelegate.DidHypothesizeTranscription(Speech.SFSpeechRecognitionTask,Speech.SFTranscription)
-M:Speech.SFSpeechRecognitionTaskDelegate.DidProcessAudioDuration(Speech.SFSpeechRecognitionTask,System.Double)
-M:Speech.SFSpeechRecognitionTaskDelegate.FinishedReadingAudio(Speech.SFSpeechRecognitionTask)
-M:Speech.SFSpeechRecognitionTaskDelegate.WasCancelled(Speech.SFSpeechRecognitionTask)
-M:Speech.SFSpeechRecognizer.#ctor(Foundation.NSLocale)
M:Speech.SFSpeechRecognizer.Dispose(System.Boolean)
-M:Speech.SFSpeechRecognizer.GetRecognitionTask(Speech.SFSpeechRecognitionRequest,Speech.ISFSpeechRecognitionTaskDelegate)
-M:Speech.SFSpeechRecognizer.GetRecognitionTask(Speech.SFSpeechRecognitionRequest,System.Action{Speech.SFSpeechRecognitionResult,Foundation.NSError})
-M:Speech.SFSpeechRecognizer.RequestAuthorization(System.Action{Speech.SFSpeechRecognizerAuthorizationStatus})
M:Speech.SFSpeechRecognizerDelegate_Extensions.AvailabilityDidChange(Speech.ISFSpeechRecognizerDelegate,Speech.SFSpeechRecognizer,System.Boolean)
-M:Speech.SFSpeechRecognizerDelegate.AvailabilityDidChange(Speech.SFSpeechRecognizer,System.Boolean)
-M:Speech.SFSpeechUrlRecognitionRequest.#ctor(Foundation.NSUrl)
M:Speech.SFTranscription.Copy(Foundation.NSZone)
M:Speech.SFTranscription.EncodeTo(Foundation.NSCoder)
M:Speech.SFTranscriptionSegment.Copy(Foundation.NSZone)
@@ -54914,532 +41531,120 @@ M:SpriteKit.ISKSceneDelegate.DidFinishUpdate(SpriteKit.SKScene)
M:SpriteKit.ISKSceneDelegate.DidSimulatePhysics(SpriteKit.SKScene)
M:SpriteKit.ISKSceneDelegate.Update(System.Double,SpriteKit.SKScene)
M:SpriteKit.ISKViewDelegate.ShouldRender(SpriteKit.SKView,System.Double)
-M:SpriteKit.SK3DNode.#ctor(CoreGraphics.CGSize)
-M:SpriteKit.SK3DNode.FromViewportSize(CoreGraphics.CGSize)
M:SpriteKit.SK3DNode.HitTest(CoreGraphics.CGPoint,SceneKit.SCNHitTestOptions)
-M:SpriteKit.SK3DNode.ProjectPoint(System.Numerics.Vector3)
-M:SpriteKit.SK3DNode.UnprojectPoint(System.Numerics.Vector3)
-M:SpriteKit.SKAction.Animate(SpriteKit.SKWarpGeometry[],Foundation.NSNumber[],System.Boolean)
-M:SpriteKit.SKAction.Animate(SpriteKit.SKWarpGeometry[],Foundation.NSNumber[])
-M:SpriteKit.SKAction.AnimateWithNormalTextures(SpriteKit.SKTexture[],System.Double,System.Boolean,System.Boolean)
-M:SpriteKit.SKAction.AnimateWithNormalTextures(SpriteKit.SKTexture[],System.Double)
-M:SpriteKit.SKAction.AnimateWithTextures(SpriteKit.SKTexture[],System.Double,System.Boolean,System.Boolean)
-M:SpriteKit.SKAction.AnimateWithTextures(SpriteKit.SKTexture[],System.Double)
-M:SpriteKit.SKAction.ColorizeWithColor(AppKit.NSColor,System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ColorizeWithColor(UIKit.UIColor,System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ColorizeWithColorBlendFactor(System.Runtime.InteropServices.NFloat,System.Double)
M:SpriteKit.SKAction.Copy(Foundation.NSZone)
-M:SpriteKit.SKAction.Create(System.String,Foundation.NSUrl,System.Double)
-M:SpriteKit.SKAction.Create(System.String,Foundation.NSUrl)
-M:SpriteKit.SKAction.Create(System.String,System.Double)
-M:SpriteKit.SKAction.Create(System.String)
-M:SpriteKit.SKAction.CreateApplyAngularImpulse(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.CreateApplyForce(CoreGraphics.CGVector,CoreGraphics.CGPoint,System.Double)
-M:SpriteKit.SKAction.CreateApplyForce(CoreGraphics.CGVector,System.Double)
-M:SpriteKit.SKAction.CreateApplyImpulse(CoreGraphics.CGVector,CoreGraphics.CGPoint,System.Double)
-M:SpriteKit.SKAction.CreateApplyImpulse(CoreGraphics.CGVector,System.Double)
-M:SpriteKit.SKAction.CreateApplyTorque(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.CreateChangeChargeBy(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeChargeTo(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeMassBy(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeMassTo(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeObstructionBy(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeObstructionTo(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeOcclusionBy(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeOcclusionTo(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangePlaybackRate(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangePlaybackRateBy(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeReverbBy(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeReverbTo(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeVolume(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateChangeVolumeBy(System.Single,System.Double)
-M:SpriteKit.SKAction.CreatePause
-M:SpriteKit.SKAction.CreatePlay
-M:SpriteKit.SKAction.CreateStereoPanBy(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateStereoPanTo(System.Single,System.Double)
-M:SpriteKit.SKAction.CreateStop
-M:SpriteKit.SKAction.CustomActionWithDuration(System.Double,SpriteKit.SKActionDurationHandler)
M:SpriteKit.SKAction.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKAction.FadeAlphaBy(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.FadeAlphaTo(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.FadeInWithDuration(System.Double)
-M:SpriteKit.SKAction.FadeOutWithDuration(System.Double)
-M:SpriteKit.SKAction.FalloffBy(System.Single,System.Double)
-M:SpriteKit.SKAction.FalloffTo(System.Single,System.Double)
-M:SpriteKit.SKAction.FollowPath(CoreGraphics.CGPath,System.Boolean,System.Boolean,System.Double)
-M:SpriteKit.SKAction.FollowPath(CoreGraphics.CGPath,System.Boolean,System.Boolean,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKAction.FollowPath(CoreGraphics.CGPath,System.Double)
-M:SpriteKit.SKAction.FollowPath(CoreGraphics.CGPath,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKAction.Group(SpriteKit.SKAction[])
-M:SpriteKit.SKAction.Hide
-M:SpriteKit.SKAction.MoveBy(CoreGraphics.CGVector,System.Double)
-M:SpriteKit.SKAction.MoveBy(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.MoveTo(CoreGraphics.CGPoint,System.Double)
-M:SpriteKit.SKAction.MoveToX(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.MoveToY(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject)
-M:SpriteKit.SKAction.PlaySoundFileNamed(System.String,System.Boolean)
-M:SpriteKit.SKAction.ReachTo(CoreGraphics.CGPoint,SpriteKit.SKNode,System.Double)
-M:SpriteKit.SKAction.ReachTo(CoreGraphics.CGPoint,SpriteKit.SKNode,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKAction.ReachToNode(SpriteKit.SKNode,SpriteKit.SKNode,System.Double)
-M:SpriteKit.SKAction.ReachToNode(SpriteKit.SKNode,SpriteKit.SKNode,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKAction.RemoveFromParent
-M:SpriteKit.SKAction.RepeatAction(SpriteKit.SKAction,System.UIntPtr)
-M:SpriteKit.SKAction.RepeatActionForever(SpriteKit.SKAction)
-M:SpriteKit.SKAction.ResizeByWidth(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double)
M:SpriteKit.SKAction.ResizeTo(CoreGraphics.CGSize,System.Double)
-M:SpriteKit.SKAction.ResizeTo(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ResizeToHeight(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ResizeToWidth(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.RotateByAngle(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.RotateToAngle(System.Runtime.InteropServices.NFloat,System.Double,System.Boolean)
-M:SpriteKit.SKAction.RotateToAngle(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.Run(System.Action,CoreFoundation.DispatchQueue)
-M:SpriteKit.SKAction.Run(System.Action)
-M:SpriteKit.SKAction.RunAction(SpriteKit.SKAction,System.String)
-M:SpriteKit.SKAction.ScaleBy(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ScaleBy(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ScaleTo(CoreGraphics.CGSize,System.Double)
-M:SpriteKit.SKAction.ScaleTo(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ScaleTo(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ScaleXTo(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.ScaleYTo(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.Sequence(SpriteKit.SKAction[])
-M:SpriteKit.SKAction.SetNormalTexture(SpriteKit.SKTexture,System.Boolean)
-M:SpriteKit.SKAction.SetNormalTexture(SpriteKit.SKTexture)
-M:SpriteKit.SKAction.SetTexture(SpriteKit.SKTexture,System.Boolean)
-M:SpriteKit.SKAction.SetTexture(SpriteKit.SKTexture)
-M:SpriteKit.SKAction.SpeedBy(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.SpeedTo(System.Runtime.InteropServices.NFloat,System.Double)
-M:SpriteKit.SKAction.StrengthBy(System.Single,System.Double)
-M:SpriteKit.SKAction.StrengthTo(System.Single,System.Double)
-M:SpriteKit.SKAction.Unhide
-M:SpriteKit.SKAction.WaitForDuration(System.Double,System.Double)
-M:SpriteKit.SKAction.WaitForDuration(System.Double)
-M:SpriteKit.SKAction.WarpTo(SpriteKit.SKWarpGeometry,System.Double)
-M:SpriteKit.SKAttribute.#ctor(System.String,SpriteKit.SKAttributeType)
-M:SpriteKit.SKAttribute.Create(System.String,SpriteKit.SKAttributeType)
M:SpriteKit.SKAttribute.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKAttributeValue.#ctor
-M:SpriteKit.SKAttributeValue.Create(System.Numerics.Vector2)
-M:SpriteKit.SKAttributeValue.Create(System.Numerics.Vector3)
-M:SpriteKit.SKAttributeValue.Create(System.Numerics.Vector4)
-M:SpriteKit.SKAttributeValue.Create(System.Single)
M:SpriteKit.SKAttributeValue.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKAudioNode.#ctor(AVFoundation.AVAudioNode)
-M:SpriteKit.SKAudioNode.#ctor(Foundation.NSUrl)
-M:SpriteKit.SKAudioNode.#ctor(System.String)
M:SpriteKit.SKAudioNode.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKCameraNode.Contains(SpriteKit.SKNode)
M:SpriteKit.SKConstraint.Copy(Foundation.NSZone)
-M:SpriteKit.SKConstraint.CreateDistance(SpriteKit.SKRange,CoreGraphics.CGPoint,SpriteKit.SKNode)
-M:SpriteKit.SKConstraint.CreateDistance(SpriteKit.SKRange,CoreGraphics.CGPoint)
-M:SpriteKit.SKConstraint.CreateDistance(SpriteKit.SKRange,SpriteKit.SKNode)
-M:SpriteKit.SKConstraint.CreateOrientToNode(SpriteKit.SKNode,SpriteKit.SKRange)
-M:SpriteKit.SKConstraint.CreateOrientToPoint(CoreGraphics.CGPoint,SpriteKit.SKNode,SpriteKit.SKRange)
-M:SpriteKit.SKConstraint.CreateOrientToPoint(CoreGraphics.CGPoint,SpriteKit.SKRange)
-M:SpriteKit.SKConstraint.CreateRestriction(SpriteKit.SKRange,SpriteKit.SKRange)
-M:SpriteKit.SKConstraint.CreateXRestriction(SpriteKit.SKRange)
-M:SpriteKit.SKConstraint.CreateYRestriction(SpriteKit.SKRange)
-M:SpriteKit.SKConstraint.CreateZRotation(SpriteKit.SKRange)
M:SpriteKit.SKConstraint.EncodeTo(Foundation.NSCoder)
M:SpriteKit.SKEffectNode.Dispose(System.Boolean)
-M:SpriteKit.SKEffectNode.GetValue(System.String)
-M:SpriteKit.SKEffectNode.SetValue(SpriteKit.SKAttributeValue,System.String)
-M:SpriteKit.SKEmitterNode.AdvanceSimulationTime(System.Double)
M:SpriteKit.SKEmitterNode.Dispose(System.Boolean)
-M:SpriteKit.SKEmitterNode.GetValue(System.String)
-M:SpriteKit.SKEmitterNode.ResetSimulation
-M:SpriteKit.SKEmitterNode.SetValue(SpriteKit.SKAttributeValue,System.String)
-M:SpriteKit.SKFieldNode.CreateCustomField(SpriteKit.SKFieldForceEvaluator)
-M:SpriteKit.SKFieldNode.CreateDragField
-M:SpriteKit.SKFieldNode.CreateElectricField
-M:SpriteKit.SKFieldNode.CreateLinearGravityField(System.Numerics.Vector4)
-M:SpriteKit.SKFieldNode.CreateMagneticField
-M:SpriteKit.SKFieldNode.CreateNoiseField(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKFieldNode.CreateRadialGravityField
-M:SpriteKit.SKFieldNode.CreateSpringField
-M:SpriteKit.SKFieldNode.CreateTurbulenceField(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKFieldNode.CreateVelocityField(SpriteKit.SKTexture)
-M:SpriteKit.SKFieldNode.CreateVelocityField(System.Numerics.Vector4)
-M:SpriteKit.SKFieldNode.CreateVortexField
M:SpriteKit.SKKeyframeSequence.#ctor(Foundation.NSObject[],Foundation.NSNumber[])
M:SpriteKit.SKKeyframeSequence.#ctor(Foundation.NSObject[],System.Double[])
M:SpriteKit.SKKeyframeSequence.#ctor(Foundation.NSObject[],System.Single[])
-M:SpriteKit.SKKeyframeSequence.#ctor(System.UIntPtr)
-M:SpriteKit.SKKeyframeSequence.AddKeyframeValue(Foundation.NSObject,System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKKeyframeSequence.Copy(Foundation.NSZone)
M:SpriteKit.SKKeyframeSequence.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKKeyframeSequence.GetKeyframeTime(System.UIntPtr)
-M:SpriteKit.SKKeyframeSequence.GetKeyframeValue(System.UIntPtr)
-M:SpriteKit.SKKeyframeSequence.RemoveKeyframe(System.UIntPtr)
-M:SpriteKit.SKKeyframeSequence.RemoveLastKeyframe
-M:SpriteKit.SKKeyframeSequence.SampleAtTime(System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKKeyframeSequence.SetKeyframeTime(System.Runtime.InteropServices.NFloat,System.UIntPtr)
-M:SpriteKit.SKKeyframeSequence.SetKeyframeValue(Foundation.NSObject,System.Runtime.InteropServices.NFloat,System.UIntPtr)
-M:SpriteKit.SKKeyframeSequence.SetKeyframeValue(Foundation.NSObject,System.UIntPtr)
-M:SpriteKit.SKLabelNode.#ctor(System.String)
-M:SpriteKit.SKLabelNode.FromFont(System.String)
-M:SpriteKit.SKLabelNode.FromText(Foundation.NSAttributedString)
-M:SpriteKit.SKLabelNode.FromText(System.String)
-M:SpriteKit.SKMutableTexture.#ctor(CoreGraphics.CGSize,CoreVideo.CVPixelFormatType)
-M:SpriteKit.SKMutableTexture.#ctor(CoreGraphics.CGSize)
-M:SpriteKit.SKMutableTexture.Create(CoreGraphics.CGSize)
-M:SpriteKit.SKMutableTexture.ModifyPixelData(SpriteKit.SKTextureModify)
-M:SpriteKit.SKNode.#ctor
M:SpriteKit.SKNode.Add(SpriteKit.SKNode)
-M:SpriteKit.SKNode.AddChild(SpriteKit.SKNode)
M:SpriteKit.SKNode.AddNodes(SpriteKit.SKNode[])
-M:SpriteKit.SKNode.CalculateAccumulatedFrame
-M:SpriteKit.SKNode.ContainsPoint(CoreGraphics.CGPoint)
M:SpriteKit.SKNode.ConvertPointFromCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:SpriteKit.SKNode.ConvertPointFromNode(CoreGraphics.CGPoint,SpriteKit.SKNode)
M:SpriteKit.SKNode.ConvertPointToCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:SpriteKit.SKNode.ConvertPointToNode(CoreGraphics.CGPoint,SpriteKit.SKNode)
M:SpriteKit.SKNode.ConvertRectFromCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace)
M:SpriteKit.SKNode.ConvertRectToCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace)
M:SpriteKit.SKNode.Copy(Foundation.NSZone)
-M:SpriteKit.SKNode.Create
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.Create(System.String)
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.EnumerateChildNodes(System.String,SpriteKit.SKNodeChildEnumeratorHandler)
M:SpriteKit.SKNode.FromFile``1(System.String)
-M:SpriteKit.SKNode.GetActionForKey(System.String)
-M:SpriteKit.SKNode.GetChildNode(System.String)
M:SpriteKit.SKNode.GetEnumerator
M:SpriteKit.SKNode.GetFocusItems(CoreGraphics.CGRect)
-M:SpriteKit.SKNode.GetNodeAtPoint(CoreGraphics.CGPoint)
-M:SpriteKit.SKNode.GetNodesAtPoint(CoreGraphics.CGPoint)
-M:SpriteKit.SKNode.GetObjectsMatching(System.String)
-M:SpriteKit.SKNode.GetObstaclesFromNodeBounds(SpriteKit.SKNode[])
-M:SpriteKit.SKNode.GetObstaclesFromNodePhysicsBodies(SpriteKit.SKNode[])
-M:SpriteKit.SKNode.GetObstaclesFromSpriteTextures(SpriteKit.SKNode[],System.Single)
M:SpriteKit.SKNode.GetSoundIdentifier(UIKit.UIFocusUpdateContext)
-M:SpriteKit.SKNode.InParentHierarchy(SpriteKit.SKNode)
-M:SpriteKit.SKNode.InsertChild(SpriteKit.SKNode,System.IntPtr)
-M:SpriteKit.SKNode.IntersectsNode(SpriteKit.SKNode)
-M:SpriteKit.SKNode.IsEqual(SpriteKit.SKNode)
-M:SpriteKit.SKNode.MoveToParent(SpriteKit.SKNode)
-M:SpriteKit.SKNode.ObstaclesFromNodeBounds(SpriteKit.SKNode[])
-M:SpriteKit.SKNode.ObstaclesFromNodePhysicsBodies(SpriteKit.SKNode[])
-M:SpriteKit.SKNode.ObstaclesFromSpriteTextures(SpriteKit.SKNode[],System.Single)
-M:SpriteKit.SKNode.RemoveActionForKey(System.String)
-M:SpriteKit.SKNode.RemoveAllActions
-M:SpriteKit.SKNode.RemoveAllChildren
-M:SpriteKit.SKNode.RemoveChildren(SpriteKit.SKNode[])
-M:SpriteKit.SKNode.RemoveFromParent
-M:SpriteKit.SKNode.RunAction(SpriteKit.SKAction,System.Action)
-M:SpriteKit.SKNode.RunAction(SpriteKit.SKAction,System.String)
-M:SpriteKit.SKNode.RunAction(SpriteKit.SKAction)
M:SpriteKit.SKNode.RunActionAsync(SpriteKit.SKAction)
M:SpriteKit.SKNode.SetNeedsFocusUpdate
-M:SpriteKit.SKNode.SetScale(System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKNode.ShouldUpdateFocus(UIKit.UIFocusUpdateContext)
M:SpriteKit.SKNode.UpdateFocusIfNeeded
M:SpriteKit.SKNodeEvent_NSEvent.LocationInNode(AppKit.NSEvent,SpriteKit.SKNode)
M:SpriteKit.SKNodeTouches_UITouch.LocationInNode(UIKit.UITouch,SpriteKit.SKNode)
M:SpriteKit.SKNodeTouches_UITouch.PreviousLocationInNode(UIKit.UITouch,SpriteKit.SKNode)
-M:SpriteKit.SKPhysicsBody.ApplyAngularImpulse(System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKPhysicsBody.ApplyForce(CoreGraphics.CGVector,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsBody.ApplyForce(CoreGraphics.CGVector)
-M:SpriteKit.SKPhysicsBody.ApplyImpulse(CoreGraphics.CGVector,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsBody.ApplyImpulse(CoreGraphics.CGVector)
-M:SpriteKit.SKPhysicsBody.ApplyTorque(System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKPhysicsBody.Copy(Foundation.NSZone)
-M:SpriteKit.SKPhysicsBody.Create(SpriteKit.SKTexture,CoreGraphics.CGSize)
-M:SpriteKit.SKPhysicsBody.Create(SpriteKit.SKTexture,System.Single,CoreGraphics.CGSize)
-M:SpriteKit.SKPhysicsBody.CreateBodyFromPath(CoreGraphics.CGPath)
-M:SpriteKit.SKPhysicsBody.CreateCircularBody(System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsBody.CreateCircularBody(System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKPhysicsBody.CreateEdge(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsBody.CreateEdgeChain(CoreGraphics.CGPath)
-M:SpriteKit.SKPhysicsBody.CreateEdgeLoop(CoreGraphics.CGPath)
-M:SpriteKit.SKPhysicsBody.CreateEdgeLoop(CoreGraphics.CGRect)
-M:SpriteKit.SKPhysicsBody.CreateRectangularBody(CoreGraphics.CGSize,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsBody.CreateRectangularBody(CoreGraphics.CGSize)
M:SpriteKit.SKPhysicsBody.Dispose(System.Boolean)
M:SpriteKit.SKPhysicsBody.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKPhysicsBody.FromBodies(SpriteKit.SKPhysicsBody[])
M:SpriteKit.SKPhysicsContactDelegate_Extensions.DidBeginContact(SpriteKit.ISKPhysicsContactDelegate,SpriteKit.SKPhysicsContact)
M:SpriteKit.SKPhysicsContactDelegate_Extensions.DidEndContact(SpriteKit.ISKPhysicsContactDelegate,SpriteKit.SKPhysicsContact)
-M:SpriteKit.SKPhysicsContactDelegate.DidBeginContact(SpriteKit.SKPhysicsContact)
-M:SpriteKit.SKPhysicsContactDelegate.DidEndContact(SpriteKit.SKPhysicsContact)
M:SpriteKit.SKPhysicsJoint.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKPhysicsJointFixed.Create(SpriteKit.SKPhysicsBody,SpriteKit.SKPhysicsBody,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsJointLimit.Create(SpriteKit.SKPhysicsBody,SpriteKit.SKPhysicsBody,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsJointPin.Create(SpriteKit.SKPhysicsBody,SpriteKit.SKPhysicsBody,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsJointSliding.Create(SpriteKit.SKPhysicsBody,SpriteKit.SKPhysicsBody,CoreGraphics.CGPoint,CoreGraphics.CGVector)
-M:SpriteKit.SKPhysicsJointSpring.Create(SpriteKit.SKPhysicsBody,SpriteKit.SKPhysicsBody,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
M:SpriteKit.SKPhysicsWorld.add_DidBeginContact(System.EventHandler)
M:SpriteKit.SKPhysicsWorld.add_DidEndContact(System.EventHandler)
-M:SpriteKit.SKPhysicsWorld.AddJoint(SpriteKit.SKPhysicsJoint)
M:SpriteKit.SKPhysicsWorld.Dispose(System.Boolean)
M:SpriteKit.SKPhysicsWorld.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKPhysicsWorld.EnumerateBodies(CoreGraphics.CGPoint,CoreGraphics.CGPoint,SpriteKit.SKPhysicsWorldBodiesAlongRayStartEnumeratorHandler)
-M:SpriteKit.SKPhysicsWorld.EnumerateBodies(CoreGraphics.CGPoint,SpriteKit.SKPhysicsWorldBodiesEnumeratorHandler)
-M:SpriteKit.SKPhysicsWorld.EnumerateBodies(CoreGraphics.CGRect,SpriteKit.SKPhysicsWorldBodiesEnumeratorHandler)
-M:SpriteKit.SKPhysicsWorld.GetBody(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsWorld.GetBody(CoreGraphics.CGPoint)
-M:SpriteKit.SKPhysicsWorld.GetBody(CoreGraphics.CGRect)
M:SpriteKit.SKPhysicsWorld.remove_DidBeginContact(System.EventHandler)
M:SpriteKit.SKPhysicsWorld.remove_DidEndContact(System.EventHandler)
-M:SpriteKit.SKPhysicsWorld.RemoveAllJoints
-M:SpriteKit.SKPhysicsWorld.RemoveJoint(SpriteKit.SKPhysicsJoint)
-M:SpriteKit.SKPhysicsWorld.SampleFields(System.Numerics.Vector3)
-M:SpriteKit.SKRange.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKRange.Copy(Foundation.NSZone)
-M:SpriteKit.SKRange.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKRange.CreateConstant(System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKRange.CreateUnlimited
-M:SpriteKit.SKRange.CreateWithLowerLimit(System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKRange.CreateWithUpperLimit(System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKRange.CreateWithVariance(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKRange.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKReachConstraints.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKReachConstraints.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKReferenceNode.#ctor(Foundation.NSUrl)
-M:SpriteKit.SKReferenceNode.#ctor(System.String)
-M:SpriteKit.SKReferenceNode.DidLoadReferenceNode(SpriteKit.SKNode)
-M:SpriteKit.SKReferenceNode.FromFile(System.String)
-M:SpriteKit.SKReferenceNode.FromUrl(Foundation.NSUrl)
-M:SpriteKit.SKReferenceNode.Resolve
-M:SpriteKit.SKRegion.#ctor(CoreGraphics.CGPath)
-M:SpriteKit.SKRegion.#ctor(CoreGraphics.CGSize)
-M:SpriteKit.SKRegion.#ctor(System.Single)
-M:SpriteKit.SKRegion.ContainsPoint(CoreGraphics.CGPoint)
M:SpriteKit.SKRegion.Copy(Foundation.NSZone)
-M:SpriteKit.SKRegion.CreateDifference(SpriteKit.SKRegion)
-M:SpriteKit.SKRegion.CreateIntersection(SpriteKit.SKRegion)
-M:SpriteKit.SKRegion.CreateUnion(SpriteKit.SKRegion)
M:SpriteKit.SKRegion.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKRegion.InverseRegion
M:SpriteKit.SKRenderer.Dispose(System.Boolean)
-M:SpriteKit.SKRenderer.FromDevice(Metal.IMTLDevice)
-M:SpriteKit.SKRenderer.Render(CoreGraphics.CGRect,Metal.IMTLCommandBuffer,Metal.MTLRenderPassDescriptor)
-M:SpriteKit.SKRenderer.Render(CoreGraphics.CGRect,Metal.IMTLRenderCommandEncoder,Metal.MTLRenderPassDescriptor,Metal.IMTLCommandQueue)
-M:SpriteKit.SKRenderer.Update(System.Double)
-M:SpriteKit.SKScene.#ctor(CoreGraphics.CGSize)
-M:SpriteKit.SKScene.ConvertPointFromView(CoreGraphics.CGPoint)
-M:SpriteKit.SKScene.ConvertPointToView(CoreGraphics.CGPoint)
-M:SpriteKit.SKScene.DidApplyConstraints
-M:SpriteKit.SKScene.DidChangeSize(CoreGraphics.CGSize)
-M:SpriteKit.SKScene.DidEvaluateActions
-M:SpriteKit.SKScene.DidFinishUpdate
-M:SpriteKit.SKScene.DidMoveToView(SpriteKit.SKView)
-M:SpriteKit.SKScene.DidSimulatePhysics
M:SpriteKit.SKScene.Dispose(System.Boolean)
-M:SpriteKit.SKScene.FromSize(CoreGraphics.CGSize)
-M:SpriteKit.SKScene.SceneDidLoad
-M:SpriteKit.SKScene.Update(System.Double)
-M:SpriteKit.SKScene.WillMoveFromView(SpriteKit.SKView)
M:SpriteKit.SKSceneDelegate_Extensions.DidApplyConstraints(SpriteKit.ISKSceneDelegate,SpriteKit.SKScene)
M:SpriteKit.SKSceneDelegate_Extensions.DidEvaluateActions(SpriteKit.ISKSceneDelegate,SpriteKit.SKScene)
M:SpriteKit.SKSceneDelegate_Extensions.DidFinishUpdate(SpriteKit.ISKSceneDelegate,SpriteKit.SKScene)
M:SpriteKit.SKSceneDelegate_Extensions.DidSimulatePhysics(SpriteKit.ISKSceneDelegate,SpriteKit.SKScene)
M:SpriteKit.SKSceneDelegate_Extensions.Update(SpriteKit.ISKSceneDelegate,System.Double,SpriteKit.SKScene)
-M:SpriteKit.SKSceneDelegate.DidApplyConstraints(SpriteKit.SKScene)
-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(System.String,SpriteKit.SKUniform[])
-M:SpriteKit.SKShader.#ctor(System.String)
-M:SpriteKit.SKShader.AddUniform(SpriteKit.SKUniform)
M:SpriteKit.SKShader.Copy(Foundation.NSZone)
-M:SpriteKit.SKShader.Create
M:SpriteKit.SKShader.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKShader.FromFile(System.String)
-M:SpriteKit.SKShader.FromShaderSourceCode(System.String,SpriteKit.SKUniform[])
-M:SpriteKit.SKShader.FromShaderSourceCode(System.String)
-M:SpriteKit.SKShader.GetUniform(System.String)
-M:SpriteKit.SKShader.RemoveUniform(System.String)
-M:SpriteKit.SKShapeNode.FromCircle(System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKShapeNode.FromEllipse(CoreGraphics.CGRect)
-M:SpriteKit.SKShapeNode.FromEllipse(CoreGraphics.CGSize)
-M:SpriteKit.SKShapeNode.FromPath(CoreGraphics.CGPath,System.Boolean)
-M:SpriteKit.SKShapeNode.FromPath(CoreGraphics.CGPath)
M:SpriteKit.SKShapeNode.FromPoints(CoreGraphics.CGPoint[],System.Int32,System.Int32)
M:SpriteKit.SKShapeNode.FromPoints(CoreGraphics.CGPoint[])
-M:SpriteKit.SKShapeNode.FromRect(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKShapeNode.FromRect(CoreGraphics.CGRect)
-M:SpriteKit.SKShapeNode.FromRect(CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKShapeNode.FromRect(CoreGraphics.CGSize)
M:SpriteKit.SKShapeNode.FromSplinePoints(CoreGraphics.CGPoint[],System.Int32,System.Int32)
M:SpriteKit.SKShapeNode.FromSplinePoints(CoreGraphics.CGPoint[])
-M:SpriteKit.SKShapeNode.GetValue(System.String)
-M:SpriteKit.SKShapeNode.SetValue(SpriteKit.SKAttributeValue,System.String)
-M:SpriteKit.SKSpriteNode.#ctor(AppKit.NSColor,CoreGraphics.CGSize)
-M:SpriteKit.SKSpriteNode.#ctor(SpriteKit.SKTexture,AppKit.NSColor,CoreGraphics.CGSize)
-M:SpriteKit.SKSpriteNode.#ctor(SpriteKit.SKTexture,UIKit.UIColor,CoreGraphics.CGSize)
-M:SpriteKit.SKSpriteNode.#ctor(SpriteKit.SKTexture)
-M:SpriteKit.SKSpriteNode.#ctor(System.String)
-M:SpriteKit.SKSpriteNode.#ctor(UIKit.UIColor,CoreGraphics.CGSize)
-M:SpriteKit.SKSpriteNode.Create(SpriteKit.SKTexture,SpriteKit.SKTexture)
-M:SpriteKit.SKSpriteNode.Create(System.String,System.Boolean)
M:SpriteKit.SKSpriteNode.Dispose(System.Boolean)
-M:SpriteKit.SKSpriteNode.FromColor(AppKit.NSColor,CoreGraphics.CGSize)
-M:SpriteKit.SKSpriteNode.FromColor(UIKit.UIColor,CoreGraphics.CGSize)
-M:SpriteKit.SKSpriteNode.FromImageNamed(System.String)
-M:SpriteKit.SKSpriteNode.FromTexture(SpriteKit.SKTexture,CoreGraphics.CGSize)
-M:SpriteKit.SKSpriteNode.FromTexture(SpriteKit.SKTexture)
-M:SpriteKit.SKSpriteNode.GetValue(System.String)
-M:SpriteKit.SKSpriteNode.ScaleTo(CoreGraphics.CGSize)
-M:SpriteKit.SKSpriteNode.SetValue(SpriteKit.SKAttributeValue,System.String)
M:SpriteKit.SKTexture.Copy(Foundation.NSZone)
-M:SpriteKit.SKTexture.CreateTextureByGeneratingNormalMap
-M:SpriteKit.SKTexture.CreateTextureByGeneratingNormalMap(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKTexture.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKTexture.FromData(Foundation.NSData,CoreGraphics.CGSize,System.Boolean)
-M:SpriteKit.SKTexture.FromData(Foundation.NSData,CoreGraphics.CGSize,System.UInt32,System.UInt32)
-M:SpriteKit.SKTexture.FromData(Foundation.NSData,CoreGraphics.CGSize)
-M:SpriteKit.SKTexture.FromImage(AppKit.NSImage)
-M:SpriteKit.SKTexture.FromImage(CoreGraphics.CGImage)
-M:SpriteKit.SKTexture.FromImage(UIKit.UIImage)
-M:SpriteKit.SKTexture.FromImageNamed(System.String)
-M:SpriteKit.SKTexture.FromNoiseMap(GameplayKit.GKNoiseMap)
-M:SpriteKit.SKTexture.FromRectangle(CoreGraphics.CGRect,SpriteKit.SKTexture)
-M:SpriteKit.SKTexture.FromTextureNoise(System.Runtime.InteropServices.NFloat,CoreGraphics.CGSize,System.Boolean)
-M:SpriteKit.SKTexture.FromTextureVectorNoise(System.Runtime.InteropServices.NFloat,CoreGraphics.CGSize)
-M:SpriteKit.SKTexture.Preload(System.Action)
M:SpriteKit.SKTexture.PreloadAsync
-M:SpriteKit.SKTexture.PreloadTextures(SpriteKit.SKTexture[],System.Action)
M:SpriteKit.SKTexture.PreloadTexturesAsync(SpriteKit.SKTexture[])
-M:SpriteKit.SKTexture.TextureByApplyingCIFilter(CoreImage.CIFilter)
M:SpriteKit.SKTextureAtlas.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKTextureAtlas.FromDictionary(Foundation.NSDictionary)
-M:SpriteKit.SKTextureAtlas.FromName(System.String)
-M:SpriteKit.SKTextureAtlas.Preload(System.Action)
M:SpriteKit.SKTextureAtlas.PreloadAsync
-M:SpriteKit.SKTextureAtlas.PreloadTextureAtlases(System.String[],SpriteKit.SKTextureAtlasLoadCallback)
M:SpriteKit.SKTextureAtlas.PreloadTextureAtlasesAsync(System.String[])
-M:SpriteKit.SKTextureAtlas.PreloadTextures(SpriteKit.SKTextureAtlas[],System.Action)
M:SpriteKit.SKTextureAtlas.PreloadTexturesAsync(SpriteKit.SKTextureAtlas[])
-M:SpriteKit.SKTextureAtlas.TextureNamed(System.String)
M:SpriteKit.SKTextureAtlasLoadResult.#ctor(Foundation.NSError,SpriteKit.SKTextureAtlas)
-M:SpriteKit.SKTileDefinition.#ctor(SpriteKit.SKTexture,CoreGraphics.CGSize)
-M:SpriteKit.SKTileDefinition.#ctor(SpriteKit.SKTexture,SpriteKit.SKTexture,CoreGraphics.CGSize)
-M:SpriteKit.SKTileDefinition.#ctor(SpriteKit.SKTexture)
-M:SpriteKit.SKTileDefinition.#ctor(SpriteKit.SKTexture[],CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKTileDefinition.#ctor(SpriteKit.SKTexture[],SpriteKit.SKTexture[],CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKTileDefinition.Copy(Foundation.NSZone)
-M:SpriteKit.SKTileDefinition.Create(SpriteKit.SKTexture,CoreGraphics.CGSize)
-M:SpriteKit.SKTileDefinition.Create(SpriteKit.SKTexture,SpriteKit.SKTexture,CoreGraphics.CGSize)
-M:SpriteKit.SKTileDefinition.Create(SpriteKit.SKTexture)
-M:SpriteKit.SKTileDefinition.Create(SpriteKit.SKTexture[],CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat)
-M:SpriteKit.SKTileDefinition.Create(SpriteKit.SKTexture[],SpriteKit.SKTexture[],CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat)
M:SpriteKit.SKTileDefinition.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKTileGroup.#ctor(SpriteKit.SKTileDefinition)
-M:SpriteKit.SKTileGroup.#ctor(SpriteKit.SKTileGroupRule[])
M:SpriteKit.SKTileGroup.Copy(Foundation.NSZone)
-M:SpriteKit.SKTileGroup.Create(SpriteKit.SKTileDefinition)
-M:SpriteKit.SKTileGroup.Create(SpriteKit.SKTileGroupRule[])
-M:SpriteKit.SKTileGroup.CreateEmpty
M:SpriteKit.SKTileGroup.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKTileGroupRule.#ctor(SpriteKit.SKTileAdjacencyMask,SpriteKit.SKTileDefinition[])
M:SpriteKit.SKTileGroupRule.Copy(Foundation.NSZone)
-M:SpriteKit.SKTileGroupRule.Create(SpriteKit.SKTileAdjacencyMask,SpriteKit.SKTileDefinition[])
M:SpriteKit.SKTileGroupRule.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKTileMapNode.#ctor(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize,SpriteKit.SKTileGroup)
-M:SpriteKit.SKTileMapNode.#ctor(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize,SpriteKit.SKTileGroup[])
-M:SpriteKit.SKTileMapNode.#ctor(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize)
M:SpriteKit.SKTileMapNode.Copy(Foundation.NSZone)
-M:SpriteKit.SKTileMapNode.Create(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize,SpriteKit.SKTileGroup)
-M:SpriteKit.SKTileMapNode.Create(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize,SpriteKit.SKTileGroup[])
-M:SpriteKit.SKTileMapNode.Create(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize)
M:SpriteKit.SKTileMapNode.Dispose(System.Boolean)
M:SpriteKit.SKTileMapNode.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKTileMapNode.Fill(SpriteKit.SKTileGroup)
-M:SpriteKit.SKTileMapNode.FromTileSet(SpriteKit.SKTileSet,System.UIntPtr,System.UIntPtr,CoreGraphics.CGSize,GameplayKit.GKNoiseMap,Foundation.NSNumber[])
-M:SpriteKit.SKTileMapNode.GetCenterOfTile(System.UIntPtr,System.UIntPtr)
-M:SpriteKit.SKTileMapNode.GetTileColumnIndex(CoreGraphics.CGPoint)
-M:SpriteKit.SKTileMapNode.GetTileDefinition(System.UIntPtr,System.UIntPtr)
-M:SpriteKit.SKTileMapNode.GetTileGroup(System.UIntPtr,System.UIntPtr)
-M:SpriteKit.SKTileMapNode.GetTileRowIndex(CoreGraphics.CGPoint)
-M:SpriteKit.SKTileMapNode.GetValue(System.String)
-M:SpriteKit.SKTileMapNode.SetTileGroup(SpriteKit.SKTileGroup,SpriteKit.SKTileDefinition,System.UIntPtr,System.UIntPtr)
-M:SpriteKit.SKTileMapNode.SetTileGroup(SpriteKit.SKTileGroup,System.UIntPtr,System.UIntPtr)
-M:SpriteKit.SKTileMapNode.SetValue(SpriteKit.SKAttributeValue,System.String)
-M:SpriteKit.SKTileSet.#ctor(SpriteKit.SKTileGroup[],SpriteKit.SKTileSetType)
-M:SpriteKit.SKTileSet.#ctor(SpriteKit.SKTileGroup[])
M:SpriteKit.SKTileSet.Copy(Foundation.NSZone)
-M:SpriteKit.SKTileSet.Create(SpriteKit.SKTileGroup[],SpriteKit.SKTileSetType)
-M:SpriteKit.SKTileSet.Create(SpriteKit.SKTileGroup[])
M:SpriteKit.SKTileSet.Dispose(System.Boolean)
M:SpriteKit.SKTileSet.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKTileSet.FromName(System.String)
-M:SpriteKit.SKTileSet.FromUrl(Foundation.NSUrl)
M:SpriteKit.SKTransition.Copy(Foundation.NSZone)
-M:SpriteKit.SKTransition.CrossFadeWithDuration(System.Double)
-M:SpriteKit.SKTransition.DoorsCloseHorizontalWithDuration(System.Double)
-M:SpriteKit.SKTransition.DoorsCloseVerticalWithDuration(System.Double)
-M:SpriteKit.SKTransition.DoorsOpenHorizontalWithDuration(System.Double)
-M:SpriteKit.SKTransition.DoorsOpenVerticalWithDuration(System.Double)
-M:SpriteKit.SKTransition.DoorwayWithDuration(System.Double)
-M:SpriteKit.SKTransition.FadeWithColor(AppKit.NSColor,System.Double)
-M:SpriteKit.SKTransition.FadeWithColor(UIKit.UIColor,System.Double)
-M:SpriteKit.SKTransition.FadeWithDuration(System.Double)
-M:SpriteKit.SKTransition.FlipHorizontalWithDuration(System.Double)
-M:SpriteKit.SKTransition.FlipVerticalWithDuration(System.Double)
-M:SpriteKit.SKTransition.MoveInWithDirection(SpriteKit.SKTransitionDirection,System.Double)
-M:SpriteKit.SKTransition.PushWithDirection(SpriteKit.SKTransitionDirection,System.Double)
-M:SpriteKit.SKTransition.RevealWithDirection(SpriteKit.SKTransitionDirection,System.Double)
-M:SpriteKit.SKTransition.TransitionWithCIFilter(CoreImage.CIFilter,System.Double)
-M:SpriteKit.SKUniform.#ctor(System.String,CoreGraphics.NMatrix2)
-M:SpriteKit.SKUniform.#ctor(System.String,CoreGraphics.NMatrix3)
-M:SpriteKit.SKUniform.#ctor(System.String,CoreGraphics.NMatrix4)
-M:SpriteKit.SKUniform.#ctor(System.String,SpriteKit.SKTexture)
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.#ctor(System.String,System.Single)
-M:SpriteKit.SKUniform.#ctor(System.String)
M:SpriteKit.SKUniform.Copy(Foundation.NSZone)
-M:SpriteKit.SKUniform.Create(System.String,CoreGraphics.NMatrix2)
-M:SpriteKit.SKUniform.Create(System.String,CoreGraphics.NMatrix3)
-M:SpriteKit.SKUniform.Create(System.String,CoreGraphics.NMatrix4)
-M:SpriteKit.SKUniform.Create(System.String,SpriteKit.SKTexture)
-M:SpriteKit.SKUniform.Create(System.String,System.Numerics.Vector2)
-M:SpriteKit.SKUniform.Create(System.String,System.Numerics.Vector3)
-M:SpriteKit.SKUniform.Create(System.String,System.Numerics.Vector4)
-M:SpriteKit.SKUniform.Create(System.String,System.Single)
-M:SpriteKit.SKUniform.Create(System.String)
M:SpriteKit.SKUniform.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKVideoNode.#ctor(AVFoundation.AVPlayer)
M:SpriteKit.SKVideoNode.#ctor(Foundation.NSUrl)
M:SpriteKit.SKVideoNode.#ctor(System.String)
M:SpriteKit.SKVideoNode.FromFile(System.String)
-M:SpriteKit.SKVideoNode.FromPlayer(AVFoundation.AVPlayer)
M:SpriteKit.SKVideoNode.FromUrl(Foundation.NSUrl)
-M:SpriteKit.SKVideoNode.Pause
-M:SpriteKit.SKVideoNode.Play
M:SpriteKit.SKView.#ctor(CoreGraphics.CGRect)
-M:SpriteKit.SKView.ConvertPointFromScene(CoreGraphics.CGPoint,SpriteKit.SKScene)
-M:SpriteKit.SKView.ConvertPointToScene(CoreGraphics.CGPoint,SpriteKit.SKScene)
M:SpriteKit.SKView.Dispose(System.Boolean)
M:SpriteKit.SKView.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKView.PresentScene(SpriteKit.SKScene,SpriteKit.SKTransition)
-M:SpriteKit.SKView.PresentScene(SpriteKit.SKScene)
M:SpriteKit.SKView.SKViewAppearance.#ctor(System.IntPtr)
-M:SpriteKit.SKView.TextureFromNode(SpriteKit.SKNode,CoreGraphics.CGRect)
-M:SpriteKit.SKView.TextureFromNode(SpriteKit.SKNode)
M:SpriteKit.SKViewDelegate_Extensions.ShouldRender(SpriteKit.ISKViewDelegate,SpriteKit.SKView,System.Double)
-M:SpriteKit.SKViewDelegate.ShouldRender(SpriteKit.SKView,System.Double)
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[])
M:SpriteKit.SKWarpGeometryGrid.Create(System.IntPtr,System.IntPtr,System.Numerics.Vector2[],System.Numerics.Vector2[])
-M:SpriteKit.SKWarpGeometryGrid.Create(System.IntPtr,System.IntPtr)
M:SpriteKit.SKWarpGeometryGrid.EncodeTo(Foundation.NSCoder)
-M:SpriteKit.SKWarpGeometryGrid.GetDestPosition(System.IntPtr)
-M:SpriteKit.SKWarpGeometryGrid.GetGrid
M:SpriteKit.SKWarpGeometryGrid.GetGridByReplacingDestPositions(System.Numerics.Vector2[])
M:SpriteKit.SKWarpGeometryGrid.GetGridByReplacingSourcePositions(System.Numerics.Vector2[])
-M:SpriteKit.SKWarpGeometryGrid.GetSourcePosition(System.IntPtr)
M:StoreKit.ISKCloudServiceSetupViewControllerDelegate.DidDismiss(StoreKit.SKCloudServiceSetupViewController)
M:StoreKit.ISKOverlayDelegate.DidFailToLoad(StoreKit.SKOverlay,Foundation.NSError)
M:StoreKit.ISKOverlayDelegate.DidFinishDismissal(StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
@@ -55460,91 +41665,35 @@ M:StoreKit.ISKProductsRequestDelegate.ReceivedResponse(StoreKit.SKProductsReques
M:StoreKit.ISKRequestDelegate.RequestFailed(StoreKit.SKRequest,Foundation.NSError)
M:StoreKit.ISKRequestDelegate.RequestFinished(StoreKit.SKRequest)
M:StoreKit.ISKStoreProductViewControllerDelegate.Finished(StoreKit.SKStoreProductViewController)
-M:StoreKit.SKAdImpression.#ctor(Foundation.NSNumber,Foundation.NSNumber,System.String,Foundation.NSNumber,System.String,Foundation.NSNumber,System.String,System.String)
-M:StoreKit.SKAdNetwork.EndImpression(StoreKit.SKAdImpression,System.Action{Foundation.NSError})
M:StoreKit.SKAdNetwork.EndImpressionAsync(StoreKit.SKAdImpression)
-M:StoreKit.SKAdNetwork.RegisterAppForAdNetworkAttribution
-M:StoreKit.SKAdNetwork.StartImpression(StoreKit.SKAdImpression,System.Action{Foundation.NSError})
M:StoreKit.SKAdNetwork.StartImpressionAsync(StoreKit.SKAdImpression)
-M:StoreKit.SKAdNetwork.UpdateConversionValue(System.IntPtr)
-M:StoreKit.SKAdNetwork.UpdatePostback(System.IntPtr,StoreKit.SKAdNetworkCoarseConversionValue,System.Action{Foundation.NSError})
-M:StoreKit.SKAdNetwork.UpdatePostback(System.IntPtr,StoreKit.SKAdNetworkCoarseConversionValue,System.Boolean,System.Action{Foundation.NSError})
-M:StoreKit.SKAdNetwork.UpdatePostback(System.IntPtr,System.Action{Foundation.NSError})
M:StoreKit.SKAdNetwork.UpdatePostbackAsync(System.IntPtr,StoreKit.SKAdNetworkCoarseConversionValue,System.Boolean)
M:StoreKit.SKAdNetwork.UpdatePostbackAsync(System.IntPtr,StoreKit.SKAdNetworkCoarseConversionValue)
M:StoreKit.SKAdNetwork.UpdatePostbackAsync(System.IntPtr)
-M:StoreKit.SKArcadeService.GetSubscriptionStatus(System.UInt64,StoreKit.SKArcadeServiceSubscriptionHandler)
-M:StoreKit.SKArcadeService.Register(Foundation.NSData,System.UInt32,StoreKit.SKArcadeServiceRegisterHandler)
-M:StoreKit.SKArcadeService.Repair
-M:StoreKit.SKCloudServiceController.RequestAuthorization(System.Action{StoreKit.SKCloudServiceAuthorizationStatus})
M:StoreKit.SKCloudServiceController.RequestAuthorizationAsync
-M:StoreKit.SKCloudServiceController.RequestCapabilities(System.Action{StoreKit.SKCloudServiceCapability,Foundation.NSError})
M:StoreKit.SKCloudServiceController.RequestCapabilitiesAsync
-M:StoreKit.SKCloudServiceController.RequestPersonalizationToken(System.String,System.Action{Foundation.NSString,Foundation.NSError})
M:StoreKit.SKCloudServiceController.RequestPersonalizationTokenAsync(System.String)
-M:StoreKit.SKCloudServiceController.RequestStorefrontCountryCode(System.Action{Foundation.NSString,Foundation.NSError})
M:StoreKit.SKCloudServiceController.RequestStorefrontCountryCodeAsync
-M:StoreKit.SKCloudServiceController.RequestStorefrontIdentifier(System.Action{Foundation.NSString,Foundation.NSError})
M:StoreKit.SKCloudServiceController.RequestStorefrontIdentifierAsync
-M:StoreKit.SKCloudServiceController.RequestUserToken(System.String,System.Action{Foundation.NSString,Foundation.NSError})
M:StoreKit.SKCloudServiceController.RequestUserTokenAsync(System.String)
M:StoreKit.SKCloudServiceSetupOptions.#ctor
M:StoreKit.SKCloudServiceSetupOptions.#ctor(Foundation.NSDictionary)
M:StoreKit.SKCloudServiceSetupViewController.Dispose(System.Boolean)
-M:StoreKit.SKCloudServiceSetupViewController.Load(Foundation.NSDictionary,System.Action{System.Boolean,Foundation.NSError})
M:StoreKit.SKCloudServiceSetupViewController.Load(StoreKit.SKCloudServiceSetupOptions,System.Action{System.Boolean,Foundation.NSError})
M:StoreKit.SKCloudServiceSetupViewController.LoadAsync(Foundation.NSDictionary)
M:StoreKit.SKCloudServiceSetupViewController.LoadAsync(StoreKit.SKCloudServiceSetupOptions)
M:StoreKit.SKCloudServiceSetupViewControllerDelegate_Extensions.DidDismiss(StoreKit.ISKCloudServiceSetupViewControllerDelegate,StoreKit.SKCloudServiceSetupViewController)
-M:StoreKit.SKCloudServiceSetupViewControllerDelegate.DidDismiss(StoreKit.SKCloudServiceSetupViewController)
-M:StoreKit.SKDownload.DeleteContentForProduct(System.String)
-M:StoreKit.SKDownload.GetContentUrlForProduct(System.String)
-M:StoreKit.SKMutablePayment.PaymentWithProduct(StoreKit.SKProduct)
-M:StoreKit.SKMutablePayment.PaymentWithProduct(System.String)
-M:StoreKit.SKOverlay.#ctor(StoreKit.SKOverlayConfiguration)
-M:StoreKit.SKOverlay.DismissOverlayInScene(UIKit.UIWindowScene)
M:StoreKit.SKOverlay.Dispose(System.Boolean)
-M:StoreKit.SKOverlay.PresentInScene(UIKit.UIWindowScene)
-M:StoreKit.SKOverlayAppClipConfiguration.#ctor(StoreKit.SKOverlayPosition)
-M:StoreKit.SKOverlayAppClipConfiguration.GetAdditionalValue(System.String)
-M:StoreKit.SKOverlayAppClipConfiguration.SetAdditionalValue(Foundation.NSObject,System.String)
-M:StoreKit.SKOverlayAppConfiguration.#ctor(System.String,StoreKit.SKOverlayPosition)
-M:StoreKit.SKOverlayAppConfiguration.GetAdditionalValue(System.String)
-M:StoreKit.SKOverlayAppConfiguration.SetAdditionalValue(Foundation.NSObject,System.String)
-M:StoreKit.SKOverlayAppConfiguration.SetAdImpression(StoreKit.SKAdImpression)
M:StoreKit.SKOverlayDelegate_Extensions.DidFailToLoad(StoreKit.ISKOverlayDelegate,StoreKit.SKOverlay,Foundation.NSError)
M:StoreKit.SKOverlayDelegate_Extensions.DidFinishDismissal(StoreKit.ISKOverlayDelegate,StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
M:StoreKit.SKOverlayDelegate_Extensions.DidFinishPresentation(StoreKit.ISKOverlayDelegate,StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
M:StoreKit.SKOverlayDelegate_Extensions.WillStartDismissal(StoreKit.ISKOverlayDelegate,StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
M:StoreKit.SKOverlayDelegate_Extensions.WillStartPresentation(StoreKit.ISKOverlayDelegate,StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
-M:StoreKit.SKOverlayDelegate.DidFailToLoad(StoreKit.SKOverlay,Foundation.NSError)
-M:StoreKit.SKOverlayDelegate.DidFinishDismissal(StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
-M:StoreKit.SKOverlayDelegate.DidFinishPresentation(StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
-M:StoreKit.SKOverlayDelegate.WillStartDismissal(StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
-M:StoreKit.SKOverlayDelegate.WillStartPresentation(StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext)
-M:StoreKit.SKOverlayTransitionContext.AddAnimationBlock(System.Action)
M:StoreKit.SKPayment.Copy(Foundation.NSZone)
-M:StoreKit.SKPayment.CreateFrom(StoreKit.SKProduct)
-M:StoreKit.SKPayment.CreateFrom(System.String)
M:StoreKit.SKPayment.MutableCopy(Foundation.NSZone)
-M:StoreKit.SKPaymentDiscount.#ctor(System.String,System.String,Foundation.NSUuid,System.String,Foundation.NSNumber)
-M:StoreKit.SKPaymentQueue.AddPayment(StoreKit.SKPayment)
-M:StoreKit.SKPaymentQueue.AddTransactionObserver(StoreKit.ISKPaymentTransactionObserver)
-M:StoreKit.SKPaymentQueue.CancelDownloads(StoreKit.SKDownload[])
M:StoreKit.SKPaymentQueue.Dispose(System.Boolean)
-M:StoreKit.SKPaymentQueue.FinishTransaction(StoreKit.SKPaymentTransaction)
-M:StoreKit.SKPaymentQueue.PauseDownloads(StoreKit.SKDownload[])
-M:StoreKit.SKPaymentQueue.PresentCodeRedemptionSheet
-M:StoreKit.SKPaymentQueue.RemoveTransactionObserver(StoreKit.ISKPaymentTransactionObserver)
-M:StoreKit.SKPaymentQueue.RestoreCompletedTransactions
-M:StoreKit.SKPaymentQueue.RestoreCompletedTransactions(System.String)
-M:StoreKit.SKPaymentQueue.ResumeDownloads(StoreKit.SKDownload[])
-M:StoreKit.SKPaymentQueue.ShowPriceConsentIfNeeded
-M:StoreKit.SKPaymentQueue.StartDownloads(StoreKit.SKDownload[])
M:StoreKit.SKPaymentQueueDelegate_Extensions.ShouldContinueTransaction(StoreKit.ISKPaymentQueueDelegate,StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction,StoreKit.SKStorefront)
M:StoreKit.SKPaymentQueueDelegate_Extensions.ShouldShowPriceConsent(StoreKit.ISKPaymentQueueDelegate,StoreKit.SKPaymentQueue)
-M:StoreKit.SKPaymentQueueDelegate.ShouldContinueTransaction(StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction,StoreKit.SKStorefront)
-M:StoreKit.SKPaymentQueueDelegate.ShouldShowPriceConsent(StoreKit.SKPaymentQueue)
M:StoreKit.SKPaymentTransactionObserver_Extensions.DidChangeStorefront(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue)
M:StoreKit.SKPaymentTransactionObserver_Extensions.DidRevokeEntitlements(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,System.String[])
M:StoreKit.SKPaymentTransactionObserver_Extensions.RemovedTransactions(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction[])
@@ -55552,48 +41701,28 @@ M:StoreKit.SKPaymentTransactionObserver_Extensions.RestoreCompletedTransactionsF
M:StoreKit.SKPaymentTransactionObserver_Extensions.RestoreCompletedTransactionsFinished(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue)
M:StoreKit.SKPaymentTransactionObserver_Extensions.ShouldAddStorePayment(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,StoreKit.SKPayment,StoreKit.SKProduct)
M:StoreKit.SKPaymentTransactionObserver_Extensions.UpdatedDownloads(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,StoreKit.SKDownload[])
-M:StoreKit.SKPaymentTransactionObserver.DidChangeStorefront(StoreKit.SKPaymentQueue)
-M:StoreKit.SKPaymentTransactionObserver.DidRevokeEntitlements(StoreKit.SKPaymentQueue,System.String[])
-M:StoreKit.SKPaymentTransactionObserver.RemovedTransactions(StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction[])
-M:StoreKit.SKPaymentTransactionObserver.RestoreCompletedTransactionsFailedWithError(StoreKit.SKPaymentQueue,Foundation.NSError)
-M:StoreKit.SKPaymentTransactionObserver.RestoreCompletedTransactionsFinished(StoreKit.SKPaymentQueue)
-M:StoreKit.SKPaymentTransactionObserver.ShouldAddStorePayment(StoreKit.SKPaymentQueue,StoreKit.SKPayment,StoreKit.SKProduct)
-M:StoreKit.SKPaymentTransactionObserver.UpdatedDownloads(StoreKit.SKPaymentQueue,StoreKit.SKDownload[])
-M:StoreKit.SKPaymentTransactionObserver.UpdatedTransactions(StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction[])
-M:StoreKit.SKProductsRequest.#ctor(Foundation.NSSet)
M:StoreKit.SKProductsRequest.add_ReceivedResponse(System.EventHandler{StoreKit.SKProductsRequestResponseEventArgs})
M:StoreKit.SKProductsRequest.Dispose(System.Boolean)
M:StoreKit.SKProductsRequest.remove_ReceivedResponse(System.EventHandler{StoreKit.SKProductsRequestResponseEventArgs})
-M:StoreKit.SKProductsRequestDelegate.ReceivedResponse(StoreKit.SKProductsRequest,StoreKit.SKProductsResponse)
M:StoreKit.SKProductsRequestResponseEventArgs.#ctor(StoreKit.SKProductsResponse)
-M:StoreKit.SKProductStorePromotionController.FetchStorePromotionOrder(System.Action{StoreKit.SKProduct[],Foundation.NSError})
M:StoreKit.SKProductStorePromotionController.FetchStorePromotionOrderAsync
-M:StoreKit.SKProductStorePromotionController.FetchStorePromotionVisibility(StoreKit.SKProduct,System.Action{StoreKit.SKProductStorePromotionVisibility,Foundation.NSError})
M:StoreKit.SKProductStorePromotionController.FetchStorePromotionVisibilityAsync(StoreKit.SKProduct)
-M:StoreKit.SKProductStorePromotionController.Update(StoreKit.SKProduct[],System.Action{Foundation.NSError})
-M:StoreKit.SKProductStorePromotionController.Update(StoreKit.SKProductStorePromotionVisibility,StoreKit.SKProduct,System.Action{Foundation.NSError})
M:StoreKit.SKProductStorePromotionController.UpdateAsync(StoreKit.SKProduct[])
M:StoreKit.SKProductStorePromotionController.UpdateAsync(StoreKit.SKProductStorePromotionVisibility,StoreKit.SKProduct)
M:StoreKit.SKReceiptProperties.#ctor
M:StoreKit.SKReceiptProperties.#ctor(Foundation.NSDictionary)
-M:StoreKit.SKReceiptRefreshRequest.#ctor(Foundation.NSDictionary)
M:StoreKit.SKReceiptRefreshRequest.#ctor(StoreKit.SKReceiptProperties)
M:StoreKit.SKReceiptRefreshRequest.TerminateForInvalidReceipt
M:StoreKit.SKRequest.add_RequestFailed(System.EventHandler{StoreKit.SKRequestErrorEventArgs})
M:StoreKit.SKRequest.add_RequestFinished(System.EventHandler)
-M:StoreKit.SKRequest.Cancel
M:StoreKit.SKRequest.Dispose(System.Boolean)
M:StoreKit.SKRequest.remove_RequestFailed(System.EventHandler{StoreKit.SKRequestErrorEventArgs})
M:StoreKit.SKRequest.remove_RequestFinished(System.EventHandler)
-M:StoreKit.SKRequest.Start
M:StoreKit.SKRequestDelegate_Extensions.RequestFailed(StoreKit.ISKRequestDelegate,StoreKit.SKRequest,Foundation.NSError)
M:StoreKit.SKRequestDelegate_Extensions.RequestFinished(StoreKit.ISKRequestDelegate,StoreKit.SKRequest)
-M:StoreKit.SKRequestDelegate.RequestFailed(StoreKit.SKRequest,Foundation.NSError)
-M:StoreKit.SKRequestDelegate.RequestFinished(StoreKit.SKRequest)
M:StoreKit.SKRequestErrorEventArgs.#ctor(Foundation.NSError)
M:StoreKit.SKStoreProductViewController.add_Finished(System.EventHandler)
M:StoreKit.SKStoreProductViewController.Dispose(System.Boolean)
-M:StoreKit.SKStoreProductViewController.LoadProduct(Foundation.NSDictionary,StoreKit.SKAdImpression,System.Action{System.Boolean,Foundation.NSError})
M:StoreKit.SKStoreProductViewController.LoadProduct(StoreKit.StoreProductParameters,StoreKit.SKAdImpression,System.Action{System.Boolean,Foundation.NSError})
M:StoreKit.SKStoreProductViewController.LoadProduct(StoreKit.StoreProductParameters,System.Action{System.Boolean,Foundation.NSError})
M:StoreKit.SKStoreProductViewController.LoadProductAsync(Foundation.NSDictionary,StoreKit.SKAdImpression)
@@ -55601,72 +41730,17 @@ M:StoreKit.SKStoreProductViewController.LoadProductAsync(StoreKit.StoreProductPa
M:StoreKit.SKStoreProductViewController.LoadProductAsync(StoreKit.StoreProductParameters)
M:StoreKit.SKStoreProductViewController.remove_Finished(System.EventHandler)
M:StoreKit.SKStoreProductViewControllerDelegate_Extensions.Finished(StoreKit.ISKStoreProductViewControllerDelegate,StoreKit.SKStoreProductViewController)
-M:StoreKit.SKStoreProductViewControllerDelegate.Finished(StoreKit.SKStoreProductViewController)
-M:StoreKit.SKStoreReviewController.RequestReview
-M:StoreKit.SKStoreReviewController.RequestReview(UIKit.UIWindowScene)
M:StoreKit.StoreProductParameters.#ctor
M:StoreKit.StoreProductParameters.#ctor(Foundation.NSDictionary)
M:StoreKit.StoreProductParameters.#ctor(System.Int32)
-M:Symbols.NSSymbolAppearEffect.Create
-M:Symbols.NSSymbolAppearEffect.CreateAppearDownEffect
-M:Symbols.NSSymbolAppearEffect.CreateAppearUpEffect
-M:Symbols.NSSymbolAutomaticContentTransition.Create
-M:Symbols.NSSymbolBounceEffect.Create
-M:Symbols.NSSymbolBounceEffect.CreateBounceDownEffect
-M:Symbols.NSSymbolBounceEffect.CreateBounceUpEffect
-M:Symbols.NSSymbolBreatheEffect.Create
-M:Symbols.NSSymbolBreatheEffect.CreatePlainEffect
-M:Symbols.NSSymbolBreatheEffect.CreatePulseEffect
M:Symbols.NSSymbolContentTransition.Copy(Foundation.NSZone)
M:Symbols.NSSymbolContentTransition.EncodeTo(Foundation.NSCoder)
-M:Symbols.NSSymbolDisappearEffect.Create
-M:Symbols.NSSymbolDisappearEffect.CreateDisappearDownEffect
-M:Symbols.NSSymbolDisappearEffect.CreateDisappearUpEffect
M:Symbols.NSSymbolEffect.Copy(Foundation.NSZone)
M:Symbols.NSSymbolEffect.EncodeTo(Foundation.NSCoder)
M:Symbols.NSSymbolEffectOptions.Copy(Foundation.NSZone)
-M:Symbols.NSSymbolEffectOptions.Create
-M:Symbols.NSSymbolEffectOptions.Create(Symbols.NSSymbolEffectOptionsRepeatBehavior)
-M:Symbols.NSSymbolEffectOptions.Create(System.Double)
-M:Symbols.NSSymbolEffectOptions.Create(System.IntPtr)
-M:Symbols.NSSymbolEffectOptions.CreateNonRepeating
-M:Symbols.NSSymbolEffectOptions.CreateRepeating
M:Symbols.NSSymbolEffectOptions.EncodeTo(Foundation.NSCoder)
-M:Symbols.NSSymbolEffectOptions.Get(Symbols.NSSymbolEffectOptionsRepeatBehavior)
-M:Symbols.NSSymbolEffectOptions.Get(System.Double)
-M:Symbols.NSSymbolEffectOptions.Get(System.IntPtr)
-M:Symbols.NSSymbolEffectOptions.GetNonRepeating
-M:Symbols.NSSymbolEffectOptions.GetRepeating
M:Symbols.NSSymbolEffectOptionsRepeatBehavior.Copy(Foundation.NSZone)
-M:Symbols.NSSymbolEffectOptionsRepeatBehavior.CreateContinuous
-M:Symbols.NSSymbolEffectOptionsRepeatBehavior.CreatePeriodic
-M:Symbols.NSSymbolEffectOptionsRepeatBehavior.CreatePeriodic(System.Double)
-M:Symbols.NSSymbolEffectOptionsRepeatBehavior.CreatePeriodic(System.IntPtr,System.Double)
-M:Symbols.NSSymbolEffectOptionsRepeatBehavior.CreatePeriodic(System.IntPtr)
M:Symbols.NSSymbolEffectOptionsRepeatBehavior.EncodeTo(Foundation.NSCoder)
-M:Symbols.NSSymbolPulseEffect.Create
-M:Symbols.NSSymbolReplaceContentTransition.Create
-M:Symbols.NSSymbolReplaceContentTransition.CreateMagicTransition(Symbols.NSSymbolReplaceContentTransition)
-M:Symbols.NSSymbolReplaceContentTransition.CreateReplaceDownUpTransition
-M:Symbols.NSSymbolReplaceContentTransition.CreateReplaceOffUpTransition
-M:Symbols.NSSymbolReplaceContentTransition.CreateReplaceUpUpTransition
-M:Symbols.NSSymbolRotateEffect.Create
-M:Symbols.NSSymbolRotateEffect.CreateClockwiseEffect
-M:Symbols.NSSymbolRotateEffect.CreateCounterClockwiseEffect
-M:Symbols.NSSymbolScaleEffect.Create
-M:Symbols.NSSymbolScaleEffect.CreateScaleDownEffect
-M:Symbols.NSSymbolScaleEffect.CreateScaleUpEffect
-M:Symbols.NSSymbolVariableColorEffect.Create
-M:Symbols.NSSymbolWiggleEffect.Create
-M:Symbols.NSSymbolWiggleEffect.CreateBackwardEffect
-M:Symbols.NSSymbolWiggleEffect.CreateClockwiseEffect
-M:Symbols.NSSymbolWiggleEffect.CreateCounterClockwiseEffect
-M:Symbols.NSSymbolWiggleEffect.CreateCustomAngleEffect(System.Double)
-M:Symbols.NSSymbolWiggleEffect.CreateDownEffect
-M:Symbols.NSSymbolWiggleEffect.CreateForwardEffect
-M:Symbols.NSSymbolWiggleEffect.CreateLeftEffect
-M:Symbols.NSSymbolWiggleEffect.CreateRightEffect
-M:Symbols.NSSymbolWiggleEffect.CreateUpEffect
M:System.Net.Http.CFNetworkHandler.#ctor
M:System.Net.Http.CFNetworkHandler.Dispose(System.Boolean)
M:System.Net.Http.CFNetworkHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)
@@ -55692,23 +41766,14 @@ 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.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.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.EncodeTo(Foundation.NSCoder)
M:TVMLKit.ITVApplicationControllerDelegate.DidFail(TVMLKit.TVApplicationController,Foundation.NSError)
@@ -55731,85 +41796,42 @@ 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})
M:TVMLKit.TVApplicationControllerDelegate_Extensions.DidStop(TVMLKit.ITVApplicationControllerDelegate,TVMLKit.TVApplicationController,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:TVMLKit.TVApplicationControllerDelegate_Extensions.EvaluateAppJavaScript(TVMLKit.ITVApplicationControllerDelegate,TVMLKit.TVApplicationController,JavaScriptCore.JSContext)
M:TVMLKit.TVApplicationControllerDelegate_Extensions.GetPlayer(TVMLKit.ITVApplicationControllerDelegate,TVMLKit.TVApplicationController)
-M:TVMLKit.TVApplicationControllerDelegate.DidFail(TVMLKit.TVApplicationController,Foundation.NSError)
-M:TVMLKit.TVApplicationControllerDelegate.DidFinishLaunching(TVMLKit.TVApplicationController,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:TVMLKit.TVApplicationControllerDelegate.DidStop(TVMLKit.TVApplicationController,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:TVMLKit.TVApplicationControllerDelegate.EvaluateAppJavaScript(TVMLKit.TVApplicationController,JavaScriptCore.JSContext)
-M:TVMLKit.TVApplicationControllerDelegate.GetPlayer(TVMLKit.TVApplicationController)
M:TVMLKit.TVBrowserTransitionAnimator.AnimateTransition(UIKit.IUIViewControllerContextTransitioning)
M:TVMLKit.TVBrowserTransitionAnimator.AnimationEnded(System.Boolean)
M:TVMLKit.TVBrowserTransitionAnimator.GetInterruptibleAnimator(UIKit.IUIViewControllerContextTransitioning)
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)
M:TVMLKit.TVDocumentViewControllerDelegate_Extensions.HandleEvent(TVMLKit.ITVDocumentViewControllerDelegate,TVMLKit.TVDocumentViewController,Foundation.NSString,TVMLKit.TVViewElement)
M:TVMLKit.TVDocumentViewControllerDelegate_Extensions.WillUpdate(TVMLKit.ITVDocumentViewControllerDelegate,TVMLKit.TVDocumentViewController)
-M:TVMLKit.TVDocumentViewControllerDelegate.DidFailUpdate(TVMLKit.TVDocumentViewController,Foundation.NSError)
-M:TVMLKit.TVDocumentViewControllerDelegate.DidUpdate(TVMLKit.TVDocumentViewController,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-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)
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.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.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)
@@ -55850,54 +41872,39 @@ M:TVUIKit.TVCardView.#ctor(CoreGraphics.CGRect)
M:TVUIKit.TVCardView.TVCardViewAppearance.#ctor(System.IntPtr)
M:TVUIKit.TVCollectionViewDelegateFullScreenLayout_Extensions.DidCenterCell(TVUIKit.ITVCollectionViewDelegateFullScreenLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,Foundation.NSIndexPath)
M:TVUIKit.TVCollectionViewDelegateFullScreenLayout_Extensions.WillCenterCell(TVUIKit.ITVCollectionViewDelegateFullScreenLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,Foundation.NSIndexPath)
-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)
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)
@@ -56864,7 +42871,6 @@ M:UIKit.IUIWritingToolsCoordinatorDelegate.RequestsSingleContainerSubranges(UIKi
M:UIKit.IUIWritingToolsCoordinatorDelegate.RequestsUnderlinePaths(UIKit.UIWritingToolsCoordinator,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,UIKit.UIWritingToolsCoordinatorDelegateRequestsUnderlinePathsCallback)
M:UIKit.IUIWritingToolsCoordinatorDelegate.SelectRanges(UIKit.UIWritingToolsCoordinator,Foundation.NSValue[],UIKit.UIWritingToolsCoordinatorContext,System.Action)
M:UIKit.IUIWritingToolsCoordinatorDelegate.WillChangeToState(UIKit.UIWritingToolsCoordinator,UIKit.UIWritingToolsCoordinatorState,System.Action)
-M:UIKit.NSAdaptiveImageGlyph.#ctor(Foundation.NSData)
M:UIKit.NSAdaptiveImageGlyph.Copy(Foundation.NSZone)
M:UIKit.NSAdaptiveImageGlyph.EncodeTo(Foundation.NSCoder)
M:UIKit.NSAdaptiveImageGlyph.GetImage(CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint@,CoreGraphics.CGSize@)
@@ -56888,94 +42894,20 @@ M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,UIKit.NSDirectio
M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,UIKit.UIEdgeInsets,System.String)
M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,UIKit.UIOffset,System.String)
M:UIKit.NSCollectionLayoutAnchor.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutAnchor.Create(UIKit.NSDirectionalRectEdge)
-M:UIKit.NSCollectionLayoutAnchor.CreateFromAbsoluteOffset(UIKit.NSDirectionalRectEdge,CoreGraphics.CGPoint)
-M:UIKit.NSCollectionLayoutAnchor.CreateFromFractionalOffset(UIKit.NSDirectionalRectEdge,CoreGraphics.CGPoint)
M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.Create(UIKit.NSCollectionLayoutSize,System.String,UIKit.NSRectAlignment,CoreGraphics.CGPoint)
-M:UIKit.NSCollectionLayoutBoundarySupplementaryItem.Create(UIKit.NSCollectionLayoutSize,System.String,UIKit.NSRectAlignment)
M:UIKit.NSCollectionLayoutDecorationItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutDecorationItem.Create(System.String)
M:UIKit.NSCollectionLayoutDimension.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutDimension.CreateAbsolute(System.Runtime.InteropServices.NFloat)
-M:UIKit.NSCollectionLayoutDimension.CreateEstimated(System.Runtime.InteropServices.NFloat)
-M:UIKit.NSCollectionLayoutDimension.CreateFractionalHeight(System.Runtime.InteropServices.NFloat)
-M:UIKit.NSCollectionLayoutDimension.CreateFractionalWidth(System.Runtime.InteropServices.NFloat)
-M:UIKit.NSCollectionLayoutDimension.CreateUniformAcrossSiblings(System.Runtime.InteropServices.NFloat)
M:UIKit.NSCollectionLayoutEdgeSpacing.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutEdgeSpacing.Create(UIKit.NSCollectionLayoutSpacing,UIKit.NSCollectionLayoutSpacing,UIKit.NSCollectionLayoutSpacing,UIKit.NSCollectionLayoutSpacing)
M:UIKit.NSCollectionLayoutGroup.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutGroup.CreateCustom(UIKit.NSCollectionLayoutSize,UIKit.NSCollectionLayoutGroupCustomItemProvider)
-M:UIKit.NSCollectionLayoutGroup.CreateHorizontal(UIKit.NSCollectionLayoutSize,UIKit.NSCollectionLayoutItem,System.IntPtr)
-M:UIKit.NSCollectionLayoutGroup.CreateHorizontal(UIKit.NSCollectionLayoutSize,UIKit.NSCollectionLayoutItem[])
-M:UIKit.NSCollectionLayoutGroup.CreateVertical(UIKit.NSCollectionLayoutSize,UIKit.NSCollectionLayoutItem,System.IntPtr)
-M:UIKit.NSCollectionLayoutGroup.CreateVertical(UIKit.NSCollectionLayoutSize,UIKit.NSCollectionLayoutItem[])
-M:UIKit.NSCollectionLayoutGroup.GetHorizontalGroup(UIKit.NSCollectionLayoutSize,UIKit.NSCollectionLayoutItem,System.IntPtr)
-M:UIKit.NSCollectionLayoutGroup.GetVerticalGroup(UIKit.NSCollectionLayoutSize,UIKit.NSCollectionLayoutItem,System.IntPtr)
M:UIKit.NSCollectionLayoutGroupCustomItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutGroupCustomItem.Create(CoreGraphics.CGRect,System.IntPtr)
-M:UIKit.NSCollectionLayoutGroupCustomItem.Create(CoreGraphics.CGRect)
M:UIKit.NSCollectionLayoutItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutItem.Create(UIKit.NSCollectionLayoutSize,UIKit.NSCollectionLayoutSupplementaryItem[])
-M:UIKit.NSCollectionLayoutItem.Create(UIKit.NSCollectionLayoutSize)
M:UIKit.NSCollectionLayoutSection.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutSection.Create(UIKit.NSCollectionLayoutGroup)
-M:UIKit.NSCollectionLayoutSection.GetOrthogonalLayoutSectionForMediaItems
-M:UIKit.NSCollectionLayoutSection.GetSection(UIKit.UICollectionLayoutListConfiguration,UIKit.INSCollectionLayoutEnvironment)
M:UIKit.NSCollectionLayoutSize.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutSize.Create(UIKit.NSCollectionLayoutDimension,UIKit.NSCollectionLayoutDimension)
M:UIKit.NSCollectionLayoutSpacing.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutSpacing.CreateFixed(System.Runtime.InteropServices.NFloat)
-M:UIKit.NSCollectionLayoutSpacing.CreateFlexible(System.Runtime.InteropServices.NFloat)
M:UIKit.NSCollectionLayoutSupplementaryItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutSupplementaryItem.Create(UIKit.NSCollectionLayoutSize,System.String,UIKit.NSCollectionLayoutAnchor,UIKit.NSCollectionLayoutAnchor)
-M:UIKit.NSCollectionLayoutSupplementaryItem.Create(UIKit.NSCollectionLayoutSize,System.String,UIKit.NSCollectionLayoutAnchor)
-M:UIKit.NSDataAsset.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.NSDataAsset.#ctor(System.String)
M:UIKit.NSDataAsset.Copy(Foundation.NSZone)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.AppendItems(`0[],`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.AppendItems(`0[])
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.CollapseItems(`0[])
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.ContainsItem(`0)
M:UIKit.NSDiffableDataSourceSectionSnapshot`1.Copy(Foundation.NSZone)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.DeleteAllItems
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.DeleteItems(`0[])
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.ExpandItems(`0[])
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.GetIndex(`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.GetLevel(`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.GetParent(`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.GetSnapshot(`0,System.Boolean)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.GetSnapshot(`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.InsertItemsAfter(`0[],`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.InsertItemsBefore(`0[],`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.InsertSnapshotAfterItem(UIKit.NSDiffableDataSourceSectionSnapshot{`0},`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.InsertSnapshotBeforeItem(UIKit.NSDiffableDataSourceSectionSnapshot{`0},`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.IsExpanded(`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.IsVisible(`0)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.ReplaceChildren(`0,UIKit.NSDiffableDataSourceSectionSnapshot{`0})
-M:UIKit.NSDiffableDataSourceSnapshot`2.AppendItems(`1[],`0)
-M:UIKit.NSDiffableDataSourceSnapshot`2.AppendItems(`1[])
-M:UIKit.NSDiffableDataSourceSnapshot`2.AppendSections(`0[])
M:UIKit.NSDiffableDataSourceSnapshot`2.Copy(Foundation.NSZone)
-M:UIKit.NSDiffableDataSourceSnapshot`2.DeleteAllItems
-M:UIKit.NSDiffableDataSourceSnapshot`2.DeleteItems(`1[])
-M:UIKit.NSDiffableDataSourceSnapshot`2.DeleteSections(`0[])
-M:UIKit.NSDiffableDataSourceSnapshot`2.GetIndex(`0)
-M:UIKit.NSDiffableDataSourceSnapshot`2.GetIndex(`1)
-M:UIKit.NSDiffableDataSourceSnapshot`2.GetItemIdentifiersInSection(`0)
-M:UIKit.NSDiffableDataSourceSnapshot`2.GetNumberOfItems(`0)
-M:UIKit.NSDiffableDataSourceSnapshot`2.GetSectionIdentifierForSection(`1)
-M:UIKit.NSDiffableDataSourceSnapshot`2.InsertItemsAfter(`1[],`1)
-M:UIKit.NSDiffableDataSourceSnapshot`2.InsertItemsBefore(`1[],`1)
-M:UIKit.NSDiffableDataSourceSnapshot`2.InsertSectionsAfter(`0[],`0)
-M:UIKit.NSDiffableDataSourceSnapshot`2.InsertSectionsBefore(`0[],`0)
-M:UIKit.NSDiffableDataSourceSnapshot`2.MoveItemAfter(`1,`1)
-M:UIKit.NSDiffableDataSourceSnapshot`2.MoveItemBefore(`1,`1)
-M:UIKit.NSDiffableDataSourceSnapshot`2.MoveSectionAfter(`0,`0)
-M:UIKit.NSDiffableDataSourceSnapshot`2.MoveSectionBefore(`0,`0)
-M:UIKit.NSDiffableDataSourceSnapshot`2.ReconfigureItems(`1[])
-M:UIKit.NSDiffableDataSourceSnapshot`2.ReloadItems(`1[])
-M:UIKit.NSDiffableDataSourceSnapshot`2.ReloadSections(`0[])
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)
@@ -56990,129 +42922,42 @@ 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.ConstraintEqualTo(UIKit.NSLayoutAnchor{`0},System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutAnchor`1.ConstraintEqualTo(UIKit.NSLayoutAnchor{`0})
-M:UIKit.NSLayoutAnchor`1.ConstraintGreaterThanOrEqualTo(UIKit.NSLayoutAnchor{`0},System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutAnchor`1.ConstraintGreaterThanOrEqualTo(UIKit.NSLayoutAnchor{`0})
-M:UIKit.NSLayoutAnchor`1.ConstraintLessThanOrEqualTo(UIKit.NSLayoutAnchor{`0},System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutAnchor`1.ConstraintLessThanOrEqualTo(UIKit.NSLayoutAnchor{`0})
M:UIKit.NSLayoutAnchor`1.Copy(Foundation.NSZone)
M:UIKit.NSLayoutAnchor`1.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSLayoutConstraint.ActivateConstraints(UIKit.NSLayoutConstraint[])
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)
-M:UIKit.NSLayoutConstraint.Create(ObjCRuntime.INativeObject,UIKit.NSLayoutAttribute,UIKit.NSLayoutRelation,ObjCRuntime.INativeObject,UIKit.NSLayoutAttribute,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutConstraint.DeactivateConstraints(UIKit.NSLayoutConstraint[])
M:UIKit.NSLayoutConstraint.Dispose(System.Boolean)
M:UIKit.NSLayoutConstraint.FirstAnchor``1
-M:UIKit.NSLayoutConstraint.FromVisualFormat(System.String,UIKit.NSLayoutFormatOptions,Foundation.NSDictionary,Foundation.NSDictionary)
M:UIKit.NSLayoutConstraint.FromVisualFormat(System.String,UIKit.NSLayoutFormatOptions,System.Object[])
M:UIKit.NSLayoutConstraint.SecondAnchor``1
-M:UIKit.NSLayoutDimension.ConstraintEqualTo(System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutDimension.ConstraintEqualTo(UIKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutDimension.ConstraintEqualTo(UIKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutDimension.ConstraintGreaterThanOrEqualTo(System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutDimension.ConstraintGreaterThanOrEqualTo(UIKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutDimension.ConstraintGreaterThanOrEqualTo(UIKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutDimension.ConstraintLessThanOrEqualTo(System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutDimension.ConstraintLessThanOrEqualTo(UIKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutDimension.ConstraintLessThanOrEqualTo(UIKit.NSLayoutDimension,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutManager.AddTextContainer(UIKit.NSTextContainer)
M:UIKit.NSLayoutManager.Dispose(System.Boolean)
-M:UIKit.NSLayoutManager.DrawBackground(Foundation.NSRange,CoreGraphics.CGPoint)
-M:UIKit.NSLayoutManager.DrawGlyphs(Foundation.NSRange,CoreGraphics.CGPoint)
-M:UIKit.NSLayoutManager.DrawsOutsideLineFragmentForGlyph(System.UIntPtr)
-M:UIKit.NSLayoutManager.DrawStrikethrough(Foundation.NSRange,Foundation.NSUnderlineStyle,System.Runtime.InteropServices.NFloat,CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGPoint)
-M:UIKit.NSLayoutManager.DrawUnderline(Foundation.NSRange,Foundation.NSUnderlineStyle,System.Runtime.InteropServices.NFloat,CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGPoint)
M:UIKit.NSLayoutManager.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSLayoutManager.EnsureGlyphsForCharacterRange(Foundation.NSRange)
-M:UIKit.NSLayoutManager.EnsureGlyphsForGlyphRange(Foundation.NSRange)
-M:UIKit.NSLayoutManager.EnsureLayoutForBoundingRect(CoreGraphics.CGRect,UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.EnsureLayoutForCharacterRange(Foundation.NSRange)
-M:UIKit.NSLayoutManager.EnsureLayoutForGlyphRange(Foundation.NSRange)
-M:UIKit.NSLayoutManager.EnsureLayoutForTextContainer(UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.EnumerateEnclosingRects(Foundation.NSRange,Foundation.NSRange,UIKit.NSTextContainer,UIKit.NSTextLayoutEnumerateEnclosingRects)
-M:UIKit.NSLayoutManager.EnumerateLineFragments(Foundation.NSRange,UIKit.NSTextLayoutEnumerateLineFragments)
-M:UIKit.NSLayoutManager.FillBackground(System.IntPtr,System.UIntPtr,Foundation.NSRange,UIKit.UIColor)
-M:UIKit.NSLayoutManager.GetAttachmentSizeForGlyph(System.UIntPtr)
-M:UIKit.NSLayoutManager.GetBoundingRect(Foundation.NSRange,UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.GetCharacterIndex(CoreGraphics.CGPoint,UIKit.NSTextContainer,System.IntPtr)
M:UIKit.NSLayoutManager.GetCharacterIndex(CoreGraphics.CGPoint,UIKit.NSTextContainer,System.Runtime.InteropServices.NFloat@)
M:UIKit.NSLayoutManager.GetCharacterIndex(CoreGraphics.CGPoint,UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.GetCharacterIndex(System.UIntPtr)
M:UIKit.NSLayoutManager.GetCharacterRange(Foundation.NSRange,Foundation.NSRange@)
-M:UIKit.NSLayoutManager.GetCharacterRange(Foundation.NSRange,System.IntPtr)
M:UIKit.NSLayoutManager.GetCharacterRange(Foundation.NSRange)
-M:UIKit.NSLayoutManager.GetFirstUnlaidCharacterIndex(System.UIntPtr@,System.UIntPtr@)
-M:UIKit.NSLayoutManager.GetFractionOfDistanceThroughGlyph(CoreGraphics.CGPoint,UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.GetGlyph(System.UIntPtr,System.Boolean@)
-M:UIKit.NSLayoutManager.GetGlyph(System.UIntPtr)
-M:UIKit.NSLayoutManager.GetGlyphIndex(CoreGraphics.CGPoint,UIKit.NSTextContainer,System.Runtime.InteropServices.NFloat@)
-M:UIKit.NSLayoutManager.GetGlyphIndex(CoreGraphics.CGPoint,UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.GetGlyphIndex(System.UIntPtr)
M:UIKit.NSLayoutManager.GetGlyphRange(Foundation.NSRange,Foundation.NSRange@)
-M:UIKit.NSLayoutManager.GetGlyphRange(Foundation.NSRange,System.IntPtr)
M:UIKit.NSLayoutManager.GetGlyphRange(Foundation.NSRange)
-M:UIKit.NSLayoutManager.GetGlyphRange(UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.GetGlyphRangeForBoundingRect(CoreGraphics.CGRect,UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.GetGlyphRangeForBoundingRectWithoutAdditionalLayout(CoreGraphics.CGRect,UIKit.NSTextContainer)
M:UIKit.NSLayoutManager.GetGlyphs(Foundation.NSRange,System.Int16[],UIKit.NSGlyphProperty[],System.UIntPtr[],System.Byte[])
-M:UIKit.NSLayoutManager.GetGlyphs(Foundation.NSRange,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
-M:UIKit.NSLayoutManager.GetLineFragmentInsertionPoints(System.UIntPtr,System.Boolean,System.Boolean,System.IntPtr,System.IntPtr)
M:UIKit.NSLayoutManager.GetLineFragmentInsertionPoints(System.UIntPtr,System.Boolean,System.Boolean,System.Runtime.InteropServices.NFloat[],System.IntPtr[])
M:UIKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,Foundation.NSRange@,System.Boolean)
M:UIKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,Foundation.NSRange@)
M:UIKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,System.Boolean)
-M:UIKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,System.IntPtr,System.Boolean)
-M:UIKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr,System.IntPtr)
M:UIKit.NSLayoutManager.GetLineFragmentRect(System.UIntPtr)
M:UIKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,Foundation.NSRange@,System.Boolean)
M:UIKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,Foundation.NSRange@)
M:UIKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,System.Boolean)
-M:UIKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,System.IntPtr,System.Boolean)
-M:UIKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr,System.IntPtr)
M:UIKit.NSLayoutManager.GetLineFragmentUsedRect(System.UIntPtr)
-M:UIKit.NSLayoutManager.GetLocationForGlyph(System.UIntPtr)
-M:UIKit.NSLayoutManager.GetProperty(System.UIntPtr)
-M:UIKit.NSLayoutManager.GetRangeOfNominallySpacedGlyphsContainingIndex(System.UIntPtr)
M:UIKit.NSLayoutManager.GetTextContainer(System.UIntPtr,Foundation.NSRange@,System.Boolean)
M:UIKit.NSLayoutManager.GetTextContainer(System.UIntPtr,Foundation.NSRange@)
M:UIKit.NSLayoutManager.GetTextContainer(System.UIntPtr,System.Boolean)
-M:UIKit.NSLayoutManager.GetTextContainer(System.UIntPtr,System.IntPtr,System.Boolean)
-M:UIKit.NSLayoutManager.GetTextContainer(System.UIntPtr,System.IntPtr)
M:UIKit.NSLayoutManager.GetTextContainer(System.UIntPtr)
-M:UIKit.NSLayoutManager.GetTruncatedGlyphRangeInLineFragment(System.UIntPtr)
-M:UIKit.NSLayoutManager.GetUsedRect(UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.GlyphAtIndex(System.UIntPtr,System.Boolean@)
-M:UIKit.NSLayoutManager.GlyphAtIndex(System.UIntPtr)
-M:UIKit.NSLayoutManager.InsertTextContainer(UIKit.NSTextContainer,System.IntPtr)
-M:UIKit.NSLayoutManager.InvalidateDisplayForCharacterRange(Foundation.NSRange)
-M:UIKit.NSLayoutManager.InvalidateDisplayForGlyphRange(Foundation.NSRange)
M:UIKit.NSLayoutManager.InvalidateGlyphs(Foundation.NSRange,System.IntPtr,Foundation.NSRange@)
-M:UIKit.NSLayoutManager.InvalidateGlyphs(Foundation.NSRange,System.IntPtr,System.IntPtr)
M:UIKit.NSLayoutManager.InvalidateGlyphs(Foundation.NSRange,System.IntPtr)
M:UIKit.NSLayoutManager.InvalidateLayout(Foundation.NSRange,Foundation.NSRange@)
-M:UIKit.NSLayoutManager.InvalidateLayout(Foundation.NSRange,System.IntPtr)
M:UIKit.NSLayoutManager.InvalidateLayout(Foundation.NSRange)
-M:UIKit.NSLayoutManager.IsNotShownAttributeForGlyph(System.UIntPtr)
-M:UIKit.NSLayoutManager.IsValidGlyph(System.UIntPtr)
-M:UIKit.NSLayoutManager.ProcessEditing(UIKit.NSTextStorage,UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr,Foundation.NSRange)
-M:UIKit.NSLayoutManager.RemoveTextContainer(System.IntPtr)
-M:UIKit.NSLayoutManager.SetAttachmentSize(CoreGraphics.CGSize,Foundation.NSRange)
-M:UIKit.NSLayoutManager.SetDrawsOutsideLineFragment(System.Boolean,System.UIntPtr)
-M:UIKit.NSLayoutManager.SetExtraLineFragment(CoreGraphics.CGRect,CoreGraphics.CGRect,UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.SetGlyphs(System.IntPtr,System.IntPtr,System.IntPtr,UIKit.UIFont,Foundation.NSRange)
-M:UIKit.NSLayoutManager.SetLineFragment(CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGRect)
-M:UIKit.NSLayoutManager.SetLocation(CoreGraphics.CGPoint,Foundation.NSRange)
-M:UIKit.NSLayoutManager.SetNotShownAttribute(System.Boolean,System.UIntPtr)
-M:UIKit.NSLayoutManager.SetTextContainer(UIKit.NSTextContainer,Foundation.NSRange)
M:UIKit.NSLayoutManager.ShowGlyphs(System.Int16[],CoreGraphics.CGPoint[],System.IntPtr,UIKit.UIFont,CoreGraphics.CGAffineTransform,Foundation.NSDictionary,CoreGraphics.CGContext)
-M:UIKit.NSLayoutManager.ShowGlyphs(System.IntPtr,System.IntPtr,System.IntPtr,UIKit.UIFont,CoreGraphics.CGAffineTransform,Foundation.NSDictionary,CoreGraphics.CGContext)
-M:UIKit.NSLayoutManager.ShowGlyphs(System.IntPtr,System.IntPtr,System.UIntPtr,UIKit.UIFont,CoreGraphics.CGAffineTransform,Foundation.NSDictionary,CoreGraphics.CGContext)
-M:UIKit.NSLayoutManager.Strikethrough(Foundation.NSRange,Foundation.NSUnderlineStyle,CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGPoint)
-M:UIKit.NSLayoutManager.TextContainerChangedGeometry(UIKit.NSTextContainer)
-M:UIKit.NSLayoutManager.Underline(Foundation.NSRange,Foundation.NSUnderlineStyle,CoreGraphics.CGRect,Foundation.NSRange,CoreGraphics.CGPoint)
M:UIKit.NSLayoutManagerDelegate_Extensions.DidChangeGeometry(UIKit.INSLayoutManagerDelegate,UIKit.NSLayoutManager,UIKit.NSTextContainer,CoreGraphics.CGSize)
M:UIKit.NSLayoutManagerDelegate_Extensions.DidCompleteLayout(UIKit.INSLayoutManagerDelegate,UIKit.NSLayoutManager,UIKit.NSTextContainer,System.Boolean)
M:UIKit.NSLayoutManagerDelegate_Extensions.DidInvalidatedLayout(UIKit.INSLayoutManagerDelegate,UIKit.NSLayoutManager)
@@ -57125,30 +42970,7 @@ M:UIKit.NSLayoutManagerDelegate_Extensions.ShouldBreakLineByWordBeforeCharacter(
M:UIKit.NSLayoutManagerDelegate_Extensions.ShouldGenerateGlyphs(UIKit.INSLayoutManagerDelegate,UIKit.NSLayoutManager,System.IntPtr,System.IntPtr,System.IntPtr,UIKit.UIFont,Foundation.NSRange)
M:UIKit.NSLayoutManagerDelegate_Extensions.ShouldSetLineFragmentRect(UIKit.INSLayoutManagerDelegate,UIKit.NSLayoutManager,CoreGraphics.CGRect@,CoreGraphics.CGRect@,System.Runtime.InteropServices.NFloat@,UIKit.NSTextContainer,Foundation.NSRange)
M:UIKit.NSLayoutManagerDelegate_Extensions.ShouldUseAction(UIKit.INSLayoutManagerDelegate,UIKit.NSLayoutManager,UIKit.NSControlCharacterAction,System.UIntPtr)
-M:UIKit.NSLayoutManagerDelegate.DidChangeGeometry(UIKit.NSLayoutManager,UIKit.NSTextContainer,CoreGraphics.CGSize)
-M:UIKit.NSLayoutManagerDelegate.DidCompleteLayout(UIKit.NSLayoutManager,UIKit.NSTextContainer,System.Boolean)
-M:UIKit.NSLayoutManagerDelegate.DidInvalidatedLayout(UIKit.NSLayoutManager)
-M:UIKit.NSLayoutManagerDelegate.GetBoundingBox(UIKit.NSLayoutManager,System.UIntPtr,UIKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr)
-M:UIKit.NSLayoutManagerDelegate.GetLineSpacingAfterGlyph(UIKit.NSLayoutManager,System.UIntPtr,CoreGraphics.CGRect)
-M:UIKit.NSLayoutManagerDelegate.GetParagraphSpacingAfterGlyph(UIKit.NSLayoutManager,System.UIntPtr,CoreGraphics.CGRect)
-M:UIKit.NSLayoutManagerDelegate.GetParagraphSpacingBeforeGlyph(UIKit.NSLayoutManager,System.UIntPtr,CoreGraphics.CGRect)
-M:UIKit.NSLayoutManagerDelegate.ShouldBreakLineByHyphenatingBeforeCharacter(UIKit.NSLayoutManager,System.UIntPtr)
-M:UIKit.NSLayoutManagerDelegate.ShouldBreakLineByWordBeforeCharacter(UIKit.NSLayoutManager,System.UIntPtr)
-M:UIKit.NSLayoutManagerDelegate.ShouldGenerateGlyphs(UIKit.NSLayoutManager,System.IntPtr,System.IntPtr,System.IntPtr,UIKit.UIFont,Foundation.NSRange)
-M:UIKit.NSLayoutManagerDelegate.ShouldSetLineFragmentRect(UIKit.NSLayoutManager,CoreGraphics.CGRect@,CoreGraphics.CGRect@,System.Runtime.InteropServices.NFloat@,UIKit.NSTextContainer,Foundation.NSRange)
-M:UIKit.NSLayoutManagerDelegate.ShouldUseAction(UIKit.NSLayoutManager,UIKit.NSControlCharacterAction,System.UIntPtr)
-M:UIKit.NSLayoutXAxisAnchor.ConstraintEqualToSystemSpacingAfterAnchor(UIKit.NSLayoutXAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutXAxisAnchor.ConstraintGreaterThanOrEqualToSystemSpacingAfterAnchor(UIKit.NSLayoutXAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutXAxisAnchor.ConstraintLessThanOrEqualToSystemSpacingAfterAnchor(UIKit.NSLayoutXAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutXAxisAnchor.CreateAnchorWithOffset(UIKit.NSLayoutXAxisAnchor)
-M:UIKit.NSLayoutYAxisAnchor.ConstraintEqualToSystemSpacingBelowAnchor(UIKit.NSLayoutYAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutYAxisAnchor.ConstraintGreaterThanOrEqualToSystemSpacingBelowAnchor(UIKit.NSLayoutYAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutYAxisAnchor.ConstraintLessThanOrEqualToSystemSpacingBelowAnchor(UIKit.NSLayoutYAxisAnchor,System.Runtime.InteropServices.NFloat)
-M:UIKit.NSLayoutYAxisAnchor.CreateAnchorWithOffset(UIKit.NSLayoutYAxisAnchor)
M:UIKit.NSMutableAttributedStringKitAdditions.FixAttributesInRange(Foundation.NSMutableAttributedString,Foundation.NSRange)
-M:UIKit.NSMutableParagraphStyle.AddTabStop(UIKit.NSTextTab)
-M:UIKit.NSMutableParagraphStyle.RemoveTabStop(UIKit.NSTextTab)
-M:UIKit.NSMutableParagraphStyle.SetParagraphStyle(UIKit.NSParagraphStyle)
M:UIKit.NSObject_UIAccessibilityCustomRotor.GetAccessibilityCustomRotors(Foundation.NSObject)
M:UIKit.NSObject_UIAccessibilityCustomRotor.SetAccessibilityCustomRotors(Foundation.NSObject,UIKit.UIAccessibilityCustomRotor[])
M:UIKit.NSObject_UIAccessibilityHitTest.AccessibilityHitTest(Foundation.NSObject,CoreGraphics.CGPoint,UIKit.UIEvent)
@@ -57166,7 +42988,6 @@ M:UIKit.NSObject_UIAccessibilityTextOperations.SetAccessibilityTextInputResponde
M:UIKit.NSObject_UIAccessibilityTextOperations.SetAccessibilityTextInputResponderHandler(Foundation.NSObject,UIKit.UITextInputReturnHandler)
M:UIKit.NSParagraphStyle.Copy(Foundation.NSZone)
M:UIKit.NSParagraphStyle.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSParagraphStyle.GetDefaultWritingDirection(System.String)
M:UIKit.NSParagraphStyle.MutableCopy(Foundation.NSZone)
M:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.#ctor(System.Runtime.InteropServices.NFloat,System.Boolean)
M:UIKit.NSShadow.Copy(Foundation.NSZone)
@@ -57177,202 +42998,60 @@ M:UIKit.NSStringDrawing.GetSizeUsingAttributes(Foundation.NSString,UIKit.UIStrin
M:UIKit.NSStringDrawing.WeakDrawString(Foundation.NSString,CoreGraphics.CGPoint,Foundation.NSDictionary)
M:UIKit.NSStringDrawing.WeakDrawString(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSDictionary)
M:UIKit.NSStringDrawing.WeakGetSizeUsingAttributes(Foundation.NSString,Foundation.NSDictionary)
-M:UIKit.NSTextAttachment.#ctor(Foundation.NSData,System.String)
-M:UIKit.NSTextAttachment.Create(UIKit.UIImage)
M:UIKit.NSTextAttachment.EncodeTo(Foundation.NSCoder)
-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.GetTextAttachmentViewProviderClass(System.String)
-M:UIKit.NSTextAttachment.GetViewProvider(UIKit.UIView,UIKit.INSTextLocation,UIKit.NSTextContainer)
-M:UIKit.NSTextAttachment.RegisterViewProviderClass(ObjCRuntime.Class,System.String)
-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.#ctor(UIKit.NSTextAttachment,UIKit.UIView,UIKit.NSTextLayoutManager,UIKit.INSTextLocation)
M:UIKit.NSTextAttachmentViewProvider.Dispose(System.Boolean)
-M:UIKit.NSTextAttachmentViewProvider.GetAttachmentBounds(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},UIKit.INSTextLocation,UIKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint)
-M:UIKit.NSTextAttachmentViewProvider.LoadView
-M:UIKit.NSTextContainer.#ctor(CoreGraphics.CGSize)
M:UIKit.NSTextContainer.Dispose(System.Boolean)
M:UIKit.NSTextContainer.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSTextContainer.GetLineFragmentRect(CoreGraphics.CGRect,System.UIntPtr,Foundation.NSWritingDirection,CoreGraphics.CGRect@)
-M:UIKit.NSTextContainer.ReplaceLayoutManager(UIKit.NSLayoutManager)
-M:UIKit.NSTextContentManager.#ctor
-M:UIKit.NSTextContentManager.Add(UIKit.NSTextLayoutManager)
-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.GetLocation(UIKit.INSTextLocation,System.IntPtr)
-M:UIKit.NSTextContentManager.GetOffset(UIKit.INSTextLocation,UIKit.INSTextLocation)
-M:UIKit.NSTextContentManager.GetTextElements(UIKit.NSTextRange)
-M:UIKit.NSTextContentManager.PerformEditingTransaction(System.Action)
M:UIKit.NSTextContentManager.PerformEditingTransactionAsync
-M:UIKit.NSTextContentManager.RecordEditAction(UIKit.NSTextRange,UIKit.NSTextRange)
-M:UIKit.NSTextContentManager.Remove(UIKit.NSTextLayoutManager)
-M:UIKit.NSTextContentManager.ReplaceContents(UIKit.NSTextRange,UIKit.NSTextElement[])
-M:UIKit.NSTextContentManager.Synchronize(System.Action{Foundation.NSError})
-M:UIKit.NSTextContentManager.SynchronizeTextLayoutManagers(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)
-M:UIKit.NSTextContentManagerDelegate.GetTextContentManager(UIKit.NSTextContentManager,UIKit.INSTextLocation)
-M:UIKit.NSTextContentManagerDelegate.ShouldEnumerateTextElement(UIKit.NSTextContentManager,UIKit.NSTextElement,UIKit.NSTextContentManagerEnumerationOptions)
M:UIKit.NSTextContentStorage.Dispose(System.Boolean)
-M:UIKit.NSTextContentStorage.GetAdjustedRange(UIKit.NSTextRange,System.Boolean)
-M:UIKit.NSTextContentStorage.GetAttributedString(UIKit.NSTextElement)
-M:UIKit.NSTextContentStorage.GetLocation(UIKit.INSTextLocation,System.IntPtr)
-M:UIKit.NSTextContentStorage.GetOffset(UIKit.INSTextLocation,UIKit.INSTextLocation)
-M:UIKit.NSTextContentStorage.GetTextElement(Foundation.NSAttributedString)
-M:UIKit.NSTextContentStorage.PerformEditingTransaction(UIKit.NSTextStorage,System.Action)
-M:UIKit.NSTextContentStorage.ProcessEditing(UIKit.NSTextStorage,UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr,Foundation.NSRange)
M:UIKit.NSTextContentStorageDelegate_Extensions.GetTextParagraph(UIKit.INSTextContentStorageDelegate,UIKit.NSTextContentStorage,Foundation.NSRange)
-M:UIKit.NSTextContentStorageDelegate.GetTextContentManager(UIKit.NSTextContentManager,UIKit.INSTextLocation)
-M:UIKit.NSTextContentStorageDelegate.GetTextParagraph(UIKit.NSTextContentStorage,Foundation.NSRange)
-M:UIKit.NSTextContentStorageDelegate.ShouldEnumerateTextElement(UIKit.NSTextContentManager,UIKit.NSTextElement,UIKit.NSTextContentManagerEnumerationOptions)
-M:UIKit.NSTextElement.#ctor(UIKit.NSTextContentManager)
M:UIKit.NSTextElement.Dispose(System.Boolean)
M:UIKit.NSTextElementProvider_Extensions.AdjustedRange(UIKit.INSTextElementProvider,UIKit.NSTextRange,System.Boolean)
M:UIKit.NSTextElementProvider_Extensions.GetLocation(UIKit.INSTextElementProvider,UIKit.INSTextLocation,System.IntPtr)
M:UIKit.NSTextElementProvider_Extensions.GetOffset(UIKit.INSTextElementProvider,UIKit.INSTextLocation,UIKit.INSTextLocation)
-M:UIKit.NSTextLayoutFragment.#ctor(UIKit.NSTextElement,UIKit.NSTextRange)
M:UIKit.NSTextLayoutFragment.Dispose(System.Boolean)
-M:UIKit.NSTextLayoutFragment.Draw(CoreGraphics.CGPoint,CoreGraphics.CGContext)
M:UIKit.NSTextLayoutFragment.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSTextLayoutFragment.GetFrameForTextAttachment(UIKit.INSTextLocation)
-M:UIKit.NSTextLayoutFragment.GetTextLineFragment(System.Runtime.InteropServices.NFloat,System.Boolean)
-M:UIKit.NSTextLayoutFragment.GetTextLineFragment(UIKit.INSTextLocation,System.Boolean)
-M:UIKit.NSTextLayoutFragment.InvalidateLayout
-M:UIKit.NSTextLayoutManager.AddRenderingAttribute(System.String,Foundation.NSObject,UIKit.NSTextRange)
M:UIKit.NSTextLayoutManager.Dispose(System.Boolean)
M:UIKit.NSTextLayoutManager.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSTextLayoutManager.EnsureLayout(CoreGraphics.CGRect)
-M:UIKit.NSTextLayoutManager.EnsureLayout(UIKit.NSTextRange)
-M:UIKit.NSTextLayoutManager.EnumerateCaretOffsets(UIKit.INSTextLocation,UIKit.NSTextSelectionDataSourceEnumerateCaretOffsetsDelegate)
-M:UIKit.NSTextLayoutManager.EnumerateContainerBoundaries(UIKit.INSTextLocation,System.Boolean,UIKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate)
-M:UIKit.NSTextLayoutManager.EnumerateRenderingAttributes(UIKit.INSTextLocation,System.Boolean,UIKit.NSTextLayoutManagerEnumerateRenderingAttributesDelegate)
-M:UIKit.NSTextLayoutManager.EnumerateSubstrings(UIKit.INSTextLocation,Foundation.NSStringEnumerationOptions,UIKit.NSTextSelectionDataSourceEnumerateSubstringsDelegate)
-M:UIKit.NSTextLayoutManager.EnumerateTextLayoutFragments(UIKit.INSTextLocation,UIKit.NSTextLayoutFragmentEnumerationOptions,System.Func{UIKit.NSTextLayoutFragment,System.Boolean})
-M:UIKit.NSTextLayoutManager.EnumerateTextSegments(UIKit.NSTextRange,UIKit.NSTextLayoutManagerSegmentType,UIKit.NSTextLayoutManagerSegmentOptions,UIKit.NSTextLayoutManagerEnumerateTextSegmentsDelegate)
-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.GetRenderingAttributes(Foundation.NSObject,UIKit.INSTextLocation)
-M:UIKit.NSTextLayoutManager.GetTextLayoutFragment(CoreGraphics.CGPoint)
-M:UIKit.NSTextLayoutManager.GetTextLayoutFragment(UIKit.INSTextLocation)
-M:UIKit.NSTextLayoutManager.GetTextLayoutOrientation(UIKit.INSTextLocation)
-M:UIKit.NSTextLayoutManager.GetTextRange(UIKit.NSTextSelectionGranularity,UIKit.INSTextLocation)
-M:UIKit.NSTextLayoutManager.InvalidateLayout(UIKit.NSTextRange)
-M:UIKit.NSTextLayoutManager.InvalidateRenderingAttributes(UIKit.NSTextRange)
-M:UIKit.NSTextLayoutManager.RemoveRenderingAttribute(System.String,UIKit.NSTextRange)
-M:UIKit.NSTextLayoutManager.Replace(UIKit.NSTextContentManager)
-M:UIKit.NSTextLayoutManager.ReplaceContents(UIKit.NSTextRange,Foundation.NSAttributedString)
-M:UIKit.NSTextLayoutManager.ReplaceContents(UIKit.NSTextRange,UIKit.NSTextElement[])
-M:UIKit.NSTextLayoutManager.SetRenderingAttributes(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},UIKit.NSTextRange)
M:UIKit.NSTextLayoutManagerDelegate_Extensions.GetRenderingAttributes(UIKit.INSTextLayoutManagerDelegate,UIKit.NSTextLayoutManager,Foundation.NSObject,UIKit.INSTextLocation,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:UIKit.NSTextLayoutManagerDelegate_Extensions.GetTextLayoutFragment(UIKit.INSTextLayoutManagerDelegate,UIKit.NSTextLayoutManager,UIKit.INSTextLocation,UIKit.NSTextElement)
M:UIKit.NSTextLayoutManagerDelegate_Extensions.ShouldBreakLineBeforeLocation(UIKit.INSTextLayoutManagerDelegate,UIKit.NSTextLayoutManager,UIKit.INSTextLocation,System.Boolean)
-M:UIKit.NSTextLayoutManagerDelegate.GetRenderingAttributes(UIKit.NSTextLayoutManager,Foundation.NSObject,UIKit.INSTextLocation,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:UIKit.NSTextLayoutManagerDelegate.GetTextLayoutFragment(UIKit.NSTextLayoutManager,UIKit.INSTextLocation,UIKit.NSTextElement)
-M:UIKit.NSTextLayoutManagerDelegate.ShouldBreakLineBeforeLocation(UIKit.NSTextLayoutManager,UIKit.INSTextLocation,System.Boolean)
-M:UIKit.NSTextLineFragment.#ctor(Foundation.NSAttributedString,Foundation.NSRange)
-M:UIKit.NSTextLineFragment.#ctor(System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSRange)
-M:UIKit.NSTextLineFragment.Draw(CoreGraphics.CGPoint,CoreGraphics.CGContext)
M:UIKit.NSTextLineFragment.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSTextLineFragment.GetCharacterIndex(CoreGraphics.CGPoint)
-M:UIKit.NSTextLineFragment.GetFractionOfDistanceThroughGlyph(CoreGraphics.CGPoint)
-M:UIKit.NSTextLineFragment.GetLocation(System.IntPtr)
-M:UIKit.NSTextList.#ctor(System.String,UIKit.NSTextListOptions,System.IntPtr)
-M:UIKit.NSTextList.#ctor(System.String,UIKit.NSTextListOptions)
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.GetMarker(System.IntPtr)
-M:UIKit.NSTextListElement.#ctor(Foundation.NSAttributedString)
-M:UIKit.NSTextListElement.#ctor(UIKit.NSTextContentManager)
-M:UIKit.NSTextListElement.#ctor(UIKit.NSTextListElement,UIKit.NSTextList,Foundation.NSAttributedString,Foundation.NSDictionary,UIKit.NSTextListElement[])
-M:UIKit.NSTextListElement.Create(Foundation.NSAttributedString,Foundation.NSDictionary,UIKit.NSTextList,UIKit.NSTextListElement[])
-M:UIKit.NSTextListElement.Create(UIKit.NSTextListElement[],UIKit.NSTextList,System.IntPtr)
M:UIKit.NSTextListElement.Dispose(System.Boolean)
-M:UIKit.NSTextParagraph.#ctor(Foundation.NSAttributedString)
-M:UIKit.NSTextParagraph.#ctor(UIKit.NSTextContentManager)
-M:UIKit.NSTextRange.#ctor(UIKit.INSTextLocation,UIKit.INSTextLocation)
-M:UIKit.NSTextRange.#ctor(UIKit.INSTextLocation)
-M:UIKit.NSTextRange.Contains(UIKit.INSTextLocation)
-M:UIKit.NSTextRange.Contains(UIKit.NSTextRange)
-M:UIKit.NSTextRange.GetTextRangeByFormingUnion(UIKit.NSTextRange)
-M:UIKit.NSTextRange.GetTextRangeByIntersecting(UIKit.NSTextRange)
-M:UIKit.NSTextRange.Intersects(UIKit.NSTextRange)
-M:UIKit.NSTextRange.IsEqual(UIKit.NSTextRange)
-M:UIKit.NSTextSelection.#ctor(UIKit.INSTextLocation,UIKit.NSTextSelectionAffinity)
-M:UIKit.NSTextSelection.#ctor(UIKit.NSTextRange,UIKit.NSTextSelectionAffinity,UIKit.NSTextSelectionGranularity)
-M:UIKit.NSTextSelection.#ctor(UIKit.NSTextRange[],UIKit.NSTextSelectionAffinity,UIKit.NSTextSelectionGranularity)
M:UIKit.NSTextSelection.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSTextSelection.GetTextSelection(UIKit.NSTextRange[])
M:UIKit.NSTextSelectionDataSource_Extensions.EnumerateContainerBoundaries(UIKit.INSTextSelectionDataSource,UIKit.INSTextLocation,System.Boolean,UIKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate)
M:UIKit.NSTextSelectionDataSource_Extensions.GetTextLayoutOrientation(UIKit.INSTextSelectionDataSource,UIKit.INSTextLocation)
-M:UIKit.NSTextSelectionDataSource.EnumerateCaretOffsets(UIKit.INSTextLocation,UIKit.NSTextSelectionDataSourceEnumerateCaretOffsetsDelegate)
-M:UIKit.NSTextSelectionDataSource.EnumerateContainerBoundaries(UIKit.INSTextLocation,System.Boolean,UIKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate)
-M:UIKit.NSTextSelectionDataSource.EnumerateSubstrings(UIKit.INSTextLocation,Foundation.NSStringEnumerationOptions,UIKit.NSTextSelectionDataSourceEnumerateSubstringsDelegate)
-M:UIKit.NSTextSelectionDataSource.GetBaseWritingDirection(UIKit.INSTextLocation)
-M:UIKit.NSTextSelectionDataSource.GetLineFragmentRange(CoreGraphics.CGPoint,UIKit.INSTextLocation)
-M:UIKit.NSTextSelectionDataSource.GetLocation(UIKit.INSTextLocation,System.IntPtr)
-M:UIKit.NSTextSelectionDataSource.GetOffsetFromLocation(UIKit.INSTextLocation,UIKit.INSTextLocation)
-M:UIKit.NSTextSelectionDataSource.GetTextLayoutOrientation(UIKit.INSTextLocation)
-M:UIKit.NSTextSelectionDataSource.GetTextRange(UIKit.NSTextSelectionGranularity,UIKit.INSTextLocation)
-M:UIKit.NSTextSelectionNavigation.#ctor(UIKit.INSTextSelectionDataSource)
M:UIKit.NSTextSelectionNavigation.Dispose(System.Boolean)
-M:UIKit.NSTextSelectionNavigation.FlushLayoutCache
-M:UIKit.NSTextSelectionNavigation.GetDeletionRanges(UIKit.NSTextSelection,UIKit.NSTextSelectionNavigationDirection,UIKit.NSTextSelectionNavigationDestination,System.Boolean)
-M:UIKit.NSTextSelectionNavigation.GetDestinationSelection(UIKit.NSTextSelection,UIKit.NSTextSelectionNavigationDirection,UIKit.NSTextSelectionNavigationDestination,System.Boolean,System.Boolean)
-M:UIKit.NSTextSelectionNavigation.GetResolvedInsertionLocation(UIKit.NSTextSelection,UIKit.NSTextSelectionNavigationWritingDirection)
-M:UIKit.NSTextSelectionNavigation.GetTextSelection(UIKit.NSTextSelectionGranularity,CoreGraphics.CGPoint,UIKit.INSTextLocation)
-M:UIKit.NSTextSelectionNavigation.GetTextSelection(UIKit.NSTextSelectionGranularity,UIKit.NSTextSelection)
-M:UIKit.NSTextSelectionNavigation.GetTextSelectionsInteracting(CoreGraphics.CGPoint,UIKit.INSTextLocation,UIKit.NSTextSelection[],UIKit.NSTextSelectionNavigationModifier,System.Boolean,CoreGraphics.CGRect)
M:UIKit.NSTextStorage.#ctor(System.String)
M:UIKit.NSTextStorage.add_DidProcessEditing(System.EventHandler{UIKit.NSTextStorageEventArgs})
M:UIKit.NSTextStorage.add_WillProcessEditing(System.EventHandler{UIKit.NSTextStorageEventArgs})
-M:UIKit.NSTextStorage.AddLayoutManager(UIKit.NSLayoutManager)
M:UIKit.NSTextStorage.Dispose(System.Boolean)
-M:UIKit.NSTextStorage.Edited(UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
M:UIKit.NSTextStorage.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSTextStorage.EnsureAttributesAreFixed(Foundation.NSRange)
-M:UIKit.NSTextStorage.InvalidateAttributes(Foundation.NSRange)
-M:UIKit.NSTextStorage.ProcessEditing
M:UIKit.NSTextStorage.remove_DidProcessEditing(System.EventHandler{UIKit.NSTextStorageEventArgs})
M:UIKit.NSTextStorage.remove_WillProcessEditing(System.EventHandler{UIKit.NSTextStorageEventArgs})
-M:UIKit.NSTextStorage.RemoveLayoutManager(UIKit.NSLayoutManager)
M:UIKit.NSTextStorageDelegate_Extensions.DidProcessEditing(UIKit.INSTextStorageDelegate,UIKit.NSTextStorage,UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
M:UIKit.NSTextStorageDelegate_Extensions.WillProcessEditing(UIKit.INSTextStorageDelegate,UIKit.NSTextStorage,UIKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
-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(UIKit.UITextAlignment,System.Runtime.InteropServices.NFloat,Foundation.NSDictionary)
M:UIKit.NSTextTab.Copy(Foundation.NSZone)
M:UIKit.NSTextTab.EncodeTo(Foundation.NSCoder)
-M:UIKit.NSTextTab.GetColumnTerminators(Foundation.NSLocale)
-M:UIKit.NSTextViewportLayoutController.#ctor(UIKit.NSTextLayoutManager)
-M:UIKit.NSTextViewportLayoutController.AdjustViewport(System.Runtime.InteropServices.NFloat)
M:UIKit.NSTextViewportLayoutController.Dispose(System.Boolean)
-M:UIKit.NSTextViewportLayoutController.LayoutViewport
-M:UIKit.NSTextViewportLayoutController.RelocateViewport(UIKit.INSTextLocation)
M:UIKit.NSTextViewportLayoutControllerDelegate_Extensions.DidLayout(UIKit.INSTextViewportLayoutControllerDelegate,UIKit.NSTextViewportLayoutController)
M:UIKit.NSTextViewportLayoutControllerDelegate_Extensions.WillLayout(UIKit.INSTextViewportLayoutControllerDelegate,UIKit.NSTextViewportLayoutController)
-M:UIKit.NSTextViewportLayoutControllerDelegate.ConfigureRenderingSurface(UIKit.NSTextViewportLayoutController,UIKit.NSTextLayoutFragment)
-M:UIKit.NSTextViewportLayoutControllerDelegate.DidLayout(UIKit.NSTextViewportLayoutController)
-M:UIKit.NSTextViewportLayoutControllerDelegate.GetViewportBounds(UIKit.NSTextViewportLayoutController)
-M:UIKit.NSTextViewportLayoutControllerDelegate.WillLayout(UIKit.NSTextViewportLayoutController)
-M:UIKit.NSUIViewToolbarItem.#ctor(Foundation.NSString,UIKit.UIView)
M:UIKit.TransitionCoordinator_UIViewController.GetTransitionCoordinator(UIKit.UIViewController)
M:UIKit.UIAccelerometer.add_Acceleration(System.EventHandler{UIKit.UIAccelerometerEventArgs})
M:UIKit.UIAccelerometer.Dispose(System.Boolean)
M:UIKit.UIAccelerometer.remove_Acceleration(System.EventHandler{UIKit.UIAccelerometerEventArgs})
M:UIKit.UIAccelerometerDelegate_Extensions.DidAccelerate(UIKit.IUIAccelerometerDelegate,UIKit.UIAccelerometer,UIKit.UIAcceleration)
-M:UIKit.UIAccelerometerDelegate.DidAccelerate(UIKit.UIAccelerometer,UIKit.UIAcceleration)
M:UIKit.UIAccelerometerEventArgs.#ctor(UIKit.UIAcceleration)
M:UIKit.UIAccessibility.ConvertFrameToScreenCoordinates(CoreGraphics.CGRect,UIKit.UIView)
M:UIKit.UIAccessibility.ConvertPathToScreenCoordinates(UIKit.UIBezierPath,UIKit.UIView)
@@ -57393,37 +43072,13 @@ M:UIKit.UIAccessibilityContainer_Extensions.SetAccessibilityContainerType(UIKit.
M:UIKit.UIAccessibilityContainer_Extensions.SetAccessibilityElements(UIKit.IUIAccessibilityContainer,Foundation.NSObject)
M:UIKit.UIAccessibilityContainerDataTable_Extensions.GetAccessibilityHeaderElementsForColumn(UIKit.IUIAccessibilityContainerDataTable,System.UIntPtr)
M:UIKit.UIAccessibilityContainerDataTable_Extensions.GetAccessibilityHeaderElementsForRow(UIKit.IUIAccessibilityContainerDataTable,System.UIntPtr)
-M:UIKit.UIAccessibilityContainerDataTable.GetAccessibilityDataTableCellElement(System.UIntPtr,System.UIntPtr)
-M:UIKit.UIAccessibilityContainerDataTable.GetAccessibilityHeaderElementsForColumn(System.UIntPtr)
-M:UIKit.UIAccessibilityContainerDataTable.GetAccessibilityHeaderElementsForRow(System.UIntPtr)
-M:UIKit.UIAccessibilityCustomAction.#ctor(Foundation.NSAttributedString,Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIAccessibilityCustomAction.#ctor(Foundation.NSAttributedString,UIKit.UIAccessibilityCustomActionHandler)
-M:UIKit.UIAccessibilityCustomAction.#ctor(Foundation.NSAttributedString,UIKit.UIImage,Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIAccessibilityCustomAction.#ctor(Foundation.NSAttributedString,UIKit.UIImage,UIKit.UIAccessibilityCustomActionHandler)
-M:UIKit.UIAccessibilityCustomAction.#ctor(System.String,Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIAccessibilityCustomAction.#ctor(System.String,System.Func{UIKit.UIAccessibilityCustomAction,System.Boolean})
-M:UIKit.UIAccessibilityCustomAction.#ctor(System.String,UIKit.UIAccessibilityCustomActionHandler)
-M:UIKit.UIAccessibilityCustomAction.#ctor(System.String,UIKit.UIImage,Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIAccessibilityCustomAction.#ctor(System.String,UIKit.UIImage,UIKit.UIAccessibilityCustomActionHandler)
M:UIKit.UIAccessibilityCustomAction.Dispose(System.Boolean)
-M:UIKit.UIAccessibilityCustomRotor.#ctor(Foundation.NSAttributedString,UIKit.UIAccessibilityCustomRotorSearch)
-M:UIKit.UIAccessibilityCustomRotor.#ctor(System.String,UIKit.UIAccessibilityCustomRotorSearch)
-M:UIKit.UIAccessibilityCustomRotor.#ctor(UIKit.UIAccessibilityCustomSystemRotorType,UIKit.UIAccessibilityCustomRotorSearch)
-M:UIKit.UIAccessibilityCustomRotorItemResult.#ctor(Foundation.NSObject,UIKit.UITextRange)
M:UIKit.UIAccessibilityCustomRotorItemResult.Dispose(System.Boolean)
-M:UIKit.UIAccessibilityElement.#ctor(Foundation.NSObject)
M:UIKit.UIAccessibilityElement.Dispose(System.Boolean)
-M:UIKit.UIAccessibilityLocationDescriptor.#ctor(Foundation.NSAttributedString,CoreGraphics.CGPoint,UIKit.UIView)
-M:UIKit.UIAccessibilityLocationDescriptor.#ctor(System.String,CoreGraphics.CGPoint,UIKit.UIView)
-M:UIKit.UIAccessibilityLocationDescriptor.#ctor(System.String,UIKit.UIView)
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.CaptureTextFromCameraAction(UIKit.IUIKeyInput,System.String)
-M:UIKit.UIAction.Create(System.String,UIKit.UIImage,System.String,UIKit.UIActionHandler)
-M:UIKit.UIAction.Create(UIKit.UIActionHandler)
-M:UIKit.UIAction.Target(Foundation.NSObject,Foundation.NSObject)
-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)
M:UIKit.UIActionSheet.#ctor(System.String)
@@ -57434,9 +43089,6 @@ M:UIKit.UIActionSheet.add_Presented(System.EventHandler)
M:UIKit.UIActionSheet.add_WillDismiss(System.EventHandler{UIKit.UIButtonEventArgs})
M:UIKit.UIActionSheet.add_WillPresent(System.EventHandler)
M:UIKit.UIActionSheet.Add(System.String)
-M:UIKit.UIActionSheet.AddButton(System.String)
-M:UIKit.UIActionSheet.ButtonTitle(System.IntPtr)
-M:UIKit.UIActionSheet.DismissWithClickedButtonIndex(System.IntPtr,System.Boolean)
M:UIKit.UIActionSheet.Dispose(System.Boolean)
M:UIKit.UIActionSheet.GetEnumerator
M:UIKit.UIActionSheet.remove_Canceled(System.EventHandler)
@@ -57445,11 +43097,6 @@ M:UIKit.UIActionSheet.remove_Dismissed(System.EventHandler{UIKit.UIButtonEventAr
M:UIKit.UIActionSheet.remove_Presented(System.EventHandler)
M:UIKit.UIActionSheet.remove_WillDismiss(System.EventHandler{UIKit.UIButtonEventArgs})
M:UIKit.UIActionSheet.remove_WillPresent(System.EventHandler)
-M:UIKit.UIActionSheet.ShowFrom(CoreGraphics.CGRect,UIKit.UIView,System.Boolean)
-M:UIKit.UIActionSheet.ShowFrom(UIKit.UIBarButtonItem,System.Boolean)
-M:UIKit.UIActionSheet.ShowFromTabBar(UIKit.UITabBar)
-M:UIKit.UIActionSheet.ShowFromToolbar(UIKit.UIToolbar)
-M:UIKit.UIActionSheet.ShowInView(UIKit.UIView)
M:UIKit.UIActionSheet.UIActionSheetAppearance.#ctor(System.IntPtr)
M:UIKit.UIActionSheetDelegate_Extensions.Canceled(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet)
M:UIKit.UIActionSheetDelegate_Extensions.Clicked(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet,System.IntPtr)
@@ -57457,45 +43104,10 @@ M:UIKit.UIActionSheetDelegate_Extensions.Dismissed(UIKit.IUIActionSheetDelegate,
M:UIKit.UIActionSheetDelegate_Extensions.Presented(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet)
M:UIKit.UIActionSheetDelegate_Extensions.WillDismiss(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet,System.IntPtr)
M:UIKit.UIActionSheetDelegate_Extensions.WillPresent(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet)
-M:UIKit.UIActionSheetDelegate.Canceled(UIKit.UIActionSheet)
-M:UIKit.UIActionSheetDelegate.Clicked(UIKit.UIActionSheet,System.IntPtr)
-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.CanPerform(Foundation.NSObject[])
-M:UIKit.UIActivity.Finished(System.Boolean)
-M:UIKit.UIActivity.Perform
-M:UIKit.UIActivity.Prepare(Foundation.NSObject[])
-M:UIKit.UIActivityCollaborationModeRestriction.#ctor(UIKit.UIActivityCollaborationMode,System.String,System.String,System.String,System.String,Foundation.NSUrl)
-M:UIKit.UIActivityCollaborationModeRestriction.#ctor(UIKit.UIActivityCollaborationMode,System.String,System.String,System.String)
-M:UIKit.UIActivityCollaborationModeRestriction.#ctor(UIKit.UIActivityCollaborationMode,System.String,System.String)
-M:UIKit.UIActivityCollaborationModeRestriction.#ctor(UIKit.UIActivityCollaborationMode)
M:UIKit.UIActivityCollaborationModeRestriction.Copy(Foundation.NSZone)
M:UIKit.UIActivityCollaborationModeRestriction.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIActivityIndicatorView.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIActivityIndicatorView.#ctor(UIKit.UIActivityIndicatorViewStyle)
M:UIKit.UIActivityIndicatorView.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIActivityIndicatorView.StartAnimating
-M:UIKit.UIActivityIndicatorView.StopAnimating
M:UIKit.UIActivityIndicatorView.UIActivityIndicatorViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIActivityItemProvider.#ctor(Foundation.NSObject)
-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.GetShareRecipients(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.INSItemProviderWriting[])
-M:UIKit.UIActivityItemsConfiguration.#ctor(Foundation.NSItemProvider[])
-M:UIKit.UIActivityItemsConfiguration.Create(Foundation.INSItemProviderWriting[])
-M:UIKit.UIActivityItemsConfiguration.Create(Foundation.NSItemProvider[])
-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.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)
@@ -57506,15 +43118,6 @@ M:UIKit.UIActivityItemSource_Extensions.GetLinkMetadata(UIKit.IUIActivityItemSou
M:UIKit.UIActivityItemSource_Extensions.GetShareRecipients(UIKit.IUIActivityItemSource,UIKit.UIActivityViewController)
M:UIKit.UIActivityItemSource_Extensions.GetSubjectForActivity(UIKit.IUIActivityItemSource,UIKit.UIActivityViewController,Foundation.NSString)
M:UIKit.UIActivityItemSource_Extensions.GetThumbnailImageForActivity(UIKit.IUIActivityItemSource,UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize)
-M:UIKit.UIActivityItemSource.GetDataTypeIdentifierForActivity(UIKit.UIActivityViewController,Foundation.NSString)
-M:UIKit.UIActivityItemSource.GetItemForActivity(UIKit.UIActivityViewController,Foundation.NSString)
-M:UIKit.UIActivityItemSource.GetLinkMetadata(UIKit.UIActivityViewController)
-M:UIKit.UIActivityItemSource.GetPlaceholderData(UIKit.UIActivityViewController)
-M:UIKit.UIActivityItemSource.GetShareRecipients(UIKit.UIActivityViewController)
-M:UIKit.UIActivityItemSource.GetSubjectForActivity(UIKit.UIActivityViewController,Foundation.NSString)
-M:UIKit.UIActivityItemSource.GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize)
-M:UIKit.UIActivityViewController.#ctor(Foundation.NSObject[],UIKit.UIActivity[])
-M:UIKit.UIActivityViewController.#ctor(UIKit.IUIActivityItemsConfigurationReading)
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.DidAttemptToDismiss(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController)
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.DidDismiss(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController)
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.GetAdaptivePresentationStyle(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController,UIKit.UITraitCollection)
@@ -57524,22 +43127,7 @@ M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.PrepareAdaptivePrese
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.ShouldDismiss(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController)
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.WillDismiss(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController)
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.WillPresent(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController,UIKit.UIModalPresentationStyle,UIKit.IUIViewControllerTransitionCoordinator)
-M:UIKit.UIAdaptivePresentationControllerDelegate.DidAttemptToDismiss(UIKit.UIPresentationController)
-M:UIKit.UIAdaptivePresentationControllerDelegate.DidDismiss(UIKit.UIPresentationController)
-M:UIKit.UIAdaptivePresentationControllerDelegate.GetAdaptivePresentationStyle(UIKit.UIPresentationController,UIKit.UITraitCollection)
-M:UIKit.UIAdaptivePresentationControllerDelegate.GetAdaptivePresentationStyle(UIKit.UIPresentationController)
-M:UIKit.UIAdaptivePresentationControllerDelegate.GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)
-M:UIKit.UIAdaptivePresentationControllerDelegate.PrepareAdaptivePresentationController(UIKit.UIPresentationController,UIKit.UIPresentationController)
-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.Copy(Foundation.NSZone)
-M:UIKit.UIAlertAction.Create(System.String,UIKit.UIAlertActionStyle,System.Action{UIKit.UIAlertAction})
-M:UIKit.UIAlertController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UIAlertController.AddAction(UIKit.UIAlertAction)
-M:UIKit.UIAlertController.AddTextField(System.Action{UIKit.UITextField})
-M:UIKit.UIAlertController.Create(System.String,System.String,UIKit.UIAlertControllerStyle)
-M:UIKit.UIAlertView.#ctor(CoreGraphics.CGRect)
M:UIKit.UIAlertView.#ctor(System.String,System.String,UIKit.IUIAlertViewDelegate,System.String,System.String[])
M:UIKit.UIAlertView.add_Canceled(System.EventHandler)
M:UIKit.UIAlertView.add_Clicked(System.EventHandler{UIKit.UIButtonEventArgs})
@@ -57547,19 +43135,14 @@ M:UIKit.UIAlertView.add_Dismissed(System.EventHandler{UIKit.UIButtonEventArgs})
M:UIKit.UIAlertView.add_Presented(System.EventHandler)
M:UIKit.UIAlertView.add_WillDismiss(System.EventHandler{UIKit.UIButtonEventArgs})
M:UIKit.UIAlertView.add_WillPresent(System.EventHandler)
-M:UIKit.UIAlertView.AddButton(System.String)
-M:UIKit.UIAlertView.ButtonTitle(System.IntPtr)
-M:UIKit.UIAlertView.DismissWithClickedButtonIndex(System.IntPtr,System.Boolean)
M:UIKit.UIAlertView.Dispose(System.Boolean)
M:UIKit.UIAlertView.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIAlertView.GetTextField(System.IntPtr)
M:UIKit.UIAlertView.remove_Canceled(System.EventHandler)
M:UIKit.UIAlertView.remove_Clicked(System.EventHandler{UIKit.UIButtonEventArgs})
M:UIKit.UIAlertView.remove_Dismissed(System.EventHandler{UIKit.UIButtonEventArgs})
M:UIKit.UIAlertView.remove_Presented(System.EventHandler)
M:UIKit.UIAlertView.remove_WillDismiss(System.EventHandler{UIKit.UIButtonEventArgs})
M:UIKit.UIAlertView.remove_WillPresent(System.EventHandler)
-M:UIKit.UIAlertView.Show
M:UIKit.UIAlertView.UIAlertViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIAlertViewDelegate_Extensions.Canceled(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView)
M:UIKit.UIAlertViewDelegate_Extensions.Clicked(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView,System.IntPtr)
@@ -57568,13 +43151,6 @@ M:UIKit.UIAlertViewDelegate_Extensions.Presented(UIKit.IUIAlertViewDelegate,UIKi
M:UIKit.UIAlertViewDelegate_Extensions.ShouldEnableFirstOtherButton(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView)
M:UIKit.UIAlertViewDelegate_Extensions.WillDismiss(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView,System.IntPtr)
M:UIKit.UIAlertViewDelegate_Extensions.WillPresent(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView)
-M:UIKit.UIAlertViewDelegate.Canceled(UIKit.UIAlertView)
-M:UIKit.UIAlertViewDelegate.Clicked(UIKit.UIAlertView,System.IntPtr)
-M:UIKit.UIAlertViewDelegate.Dismissed(UIKit.UIAlertView,System.IntPtr)
-M:UIKit.UIAlertViewDelegate.Presented(UIKit.UIAlertView)
-M:UIKit.UIAlertViewDelegate.ShouldEnableFirstOtherButton(UIKit.UIAlertView)
-M:UIKit.UIAlertViewDelegate.WillDismiss(UIKit.UIAlertView,System.IntPtr)
-M:UIKit.UIAlertViewDelegate.WillPresent(UIKit.UIAlertView)
M:UIKit.UIAppearance.Equals(System.Object)
M:UIKit.UIAppearance.GetAppearance(System.IntPtr,System.Type[])
M:UIKit.UIAppearance.GetAppearance(System.IntPtr,UIKit.UITraitCollection,System.Type[])
@@ -57583,53 +43159,14 @@ M:UIKit.UIAppearance.GetHashCode
M:UIKit.UIAppearance.op_Equality(UIKit.UIAppearance,UIKit.UIAppearance)
M:UIKit.UIAppearance.op_Inequality(UIKit.UIAppearance,UIKit.UIAppearance)
M:UIKit.UIApplication_DefaultApplication.GetDefaultStatus(UIKit.UIApplication,UIKit.UIApplicationCategory,Foundation.NSError@)
-M:UIKit.UIApplication.AccessibilityActivate
-M:UIKit.UIApplication.ActivateSceneSession(UIKit.UISceneSessionActivationRequest,System.Action{Foundation.NSError})
-M:UIKit.UIApplication.BeginBackgroundTask(System.Action)
-M:UIKit.UIApplication.BeginBackgroundTask(System.String,System.Action)
-M:UIKit.UIApplication.BeginIgnoringInteractionEvents
-M:UIKit.UIApplication.BeginReceivingRemoteControlEvents
-M:UIKit.UIApplication.CancelAllLocalNotifications
-M:UIKit.UIApplication.CancelLocalNotification(UIKit.UILocalNotification)
-M:UIKit.UIApplication.CanOpenUrl(Foundation.NSUrl)
-M:UIKit.UIApplication.ClearKeepAliveTimeout
-M:UIKit.UIApplication.CompleteStateRestoration
M:UIKit.UIApplication.Dispose(System.Boolean)
-M:UIKit.UIApplication.EndBackgroundTask(System.IntPtr)
-M:UIKit.UIApplication.EndIgnoringInteractionEvents
-M:UIKit.UIApplication.EndReceivingRemoteControlEvents
M:UIKit.UIApplication.EnsureUIThread
-M:UIKit.UIApplication.ExtendStateRestoration
M:UIKit.UIApplication.GetPreferredContentSizeCategory
-M:UIKit.UIApplication.IgnoreSnapshotOnNextApplicationLaunch
M:UIKit.UIApplication.Main(System.String[],System.Type,System.Type)
M:UIKit.UIApplication.Main(System.String[])
-M:UIKit.UIApplication.OpenUrl(Foundation.NSUrl,Foundation.NSDictionary,System.Action{System.Boolean})
M:UIKit.UIApplication.OpenUrl(Foundation.NSUrl,UIKit.UIApplicationOpenUrlOptions,System.Action{System.Boolean})
-M:UIKit.UIApplication.OpenUrl(Foundation.NSUrl)
M:UIKit.UIApplication.OpenUrlAsync(Foundation.NSUrl,UIKit.UIApplicationOpenUrlOptions)
-M:UIKit.UIApplication.PresentLocalNotificationNow(UIKit.UILocalNotification)
-M:UIKit.UIApplication.RegisterForRemoteNotifications
-M:UIKit.UIApplication.RegisterForRemoteNotificationTypes(UIKit.UIRemoteNotificationType)
-M:UIKit.UIApplication.RegisterObjectForStateRestoration(UIKit.IUIStateRestoring,System.String)
-M:UIKit.UIApplication.RegisterUserNotificationSettings(UIKit.UIUserNotificationSettings)
-M:UIKit.UIApplication.RequestSceneSessionActivation(UIKit.UISceneSession,Foundation.NSUserActivity,UIKit.UISceneActivationRequestOptions,System.Action{Foundation.NSError})
-M:UIKit.UIApplication.RequestSceneSessionDestruction(UIKit.UISceneSession,UIKit.UISceneDestructionRequestOptions,System.Action{Foundation.NSError})
-M:UIKit.UIApplication.RequestSceneSessionRefresh(UIKit.UISceneSession)
-M:UIKit.UIApplication.ScheduleLocalNotification(UIKit.UILocalNotification)
-M:UIKit.UIApplication.SendAction(ObjCRuntime.Selector,Foundation.NSObject,Foundation.NSObject,UIKit.UIEvent)
-M:UIKit.UIApplication.SendEvent(UIKit.UIEvent)
-M:UIKit.UIApplication.SetAlternateIconName(System.String,System.Action{Foundation.NSError})
M:UIKit.UIApplication.SetAlternateIconNameAsync(System.String)
-M:UIKit.UIApplication.SetKeepAliveTimeout(System.Double,System.Action)
-M:UIKit.UIApplication.SetMinimumBackgroundFetchInterval(System.Double)
-M:UIKit.UIApplication.SetNewsstandIconImage(UIKit.UIImage)
-M:UIKit.UIApplication.SetStatusBarHidden(System.Boolean,System.Boolean)
-M:UIKit.UIApplication.SetStatusBarHidden(System.Boolean,UIKit.UIStatusBarAnimation)
-M:UIKit.UIApplication.SetStatusBarOrientation(UIKit.UIInterfaceOrientation,System.Boolean)
-M:UIKit.UIApplication.SetStatusBarStyle(UIKit.UIStatusBarStyle,System.Boolean)
-M:UIKit.UIApplication.SupportedInterfaceOrientationsForWindow(UIKit.UIWindow)
-M:UIKit.UIApplication.UnregisterForRemoteNotifications
M:UIKit.UIApplicationDelegate_Extensions.AccessibilityPerformMagicTap(UIKit.IUIApplicationDelegate)
M:UIKit.UIApplicationDelegate_Extensions.ApplicationSignificantTimeChange(UIKit.IUIApplicationDelegate,UIKit.UIApplication)
M:UIKit.UIApplicationDelegate_Extensions.ChangedStatusBarFrame(UIKit.IUIApplicationDelegate,UIKit.UIApplication,CoreGraphics.CGRect)
@@ -57686,148 +43223,26 @@ M:UIKit.UIApplicationDelegate_Extensions.WillEncodeRestorableState(UIKit.IUIAppl
M:UIKit.UIApplicationDelegate_Extensions.WillEnterForeground(UIKit.IUIApplicationDelegate,UIKit.UIApplication)
M:UIKit.UIApplicationDelegate_Extensions.WillFinishLaunching(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSDictionary)
M:UIKit.UIApplicationDelegate_Extensions.WillTerminate(UIKit.IUIApplicationDelegate,UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.AccessibilityPerformMagicTap
-M:UIKit.UIApplicationDelegate.ApplicationSignificantTimeChange(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.ChangedStatusBarFrame(UIKit.UIApplication,CoreGraphics.CGRect)
-M:UIKit.UIApplicationDelegate.ContinueUserActivity(UIKit.UIApplication,Foundation.NSUserActivity,UIKit.UIApplicationRestorationHandler)
-M:UIKit.UIApplicationDelegate.DidChangeStatusBarOrientation(UIKit.UIApplication,UIKit.UIInterfaceOrientation)
-M:UIKit.UIApplicationDelegate.DidDecodeRestorableState(UIKit.UIApplication,Foundation.NSCoder)
-M:UIKit.UIApplicationDelegate.DidDiscardSceneSessions(UIKit.UIApplication,Foundation.NSSet{UIKit.UISceneSession})
-M:UIKit.UIApplicationDelegate.DidEnterBackground(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.DidFailToContinueUserActivity(UIKit.UIApplication,System.String,Foundation.NSError)
-M:UIKit.UIApplicationDelegate.DidReceiveRemoteNotification(UIKit.UIApplication,Foundation.NSDictionary,System.Action{UIKit.UIBackgroundFetchResult})
-M:UIKit.UIApplicationDelegate.DidRegisterUserNotificationSettings(UIKit.UIApplication,UIKit.UIUserNotificationSettings)
-M:UIKit.UIApplicationDelegate.FailedToRegisterForRemoteNotifications(UIKit.UIApplication,Foundation.NSError)
-M:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication,Foundation.NSDictionary)
-M:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.GetConfiguration(UIKit.UIApplication,UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
-M:UIKit.UIApplicationDelegate.GetHandlerForIntent(UIKit.UIApplication,Intents.INIntent)
-M:UIKit.UIApplicationDelegate.GetSupportedInterfaceOrientations(UIKit.UIApplication,UIKit.UIWindow)
-M:UIKit.UIApplicationDelegate.GetViewController(UIKit.UIApplication,System.String[],Foundation.NSCoder)
-M:UIKit.UIApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,Foundation.NSDictionary,Foundation.NSDictionary,System.Action)
-M:UIKit.UIApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,Foundation.NSDictionary,System.Action)
-M:UIKit.UIApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,UIKit.UILocalNotification,Foundation.NSDictionary,System.Action)
-M:UIKit.UIApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,UIKit.UILocalNotification,System.Action)
-M:UIKit.UIApplicationDelegate.HandleEventsForBackgroundUrl(UIKit.UIApplication,System.String,System.Action)
-M:UIKit.UIApplicationDelegate.HandleIntent(UIKit.UIApplication,Intents.INIntent,System.Action{Intents.INIntentResponse})
-M:UIKit.UIApplicationDelegate.HandleOpenURL(UIKit.UIApplication,Foundation.NSUrl)
-M:UIKit.UIApplicationDelegate.HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action{Foundation.NSDictionary})
-M:UIKit.UIApplicationDelegate.OnActivated(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.OnResignActivation(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.OpenUrl(UIKit.UIApplication,Foundation.NSUrl,Foundation.NSDictionary)
-M:UIKit.UIApplicationDelegate.OpenUrl(UIKit.UIApplication,Foundation.NSUrl,System.String,Foundation.NSObject)
M:UIKit.UIApplicationDelegate.OpenUrl(UIKit.UIApplication,Foundation.NSUrl,UIKit.UIApplicationOpenUrlOptions)
-M:UIKit.UIApplicationDelegate.PerformActionForShortcutItem(UIKit.UIApplication,UIKit.UIApplicationShortcutItem,UIKit.UIOperationHandler)
-M:UIKit.UIApplicationDelegate.PerformFetch(UIKit.UIApplication,System.Action{UIKit.UIBackgroundFetchResult})
-M:UIKit.UIApplicationDelegate.ProtectedDataDidBecomeAvailable(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.ProtectedDataWillBecomeUnavailable(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.ReceivedLocalNotification(UIKit.UIApplication,UIKit.UILocalNotification)
-M:UIKit.UIApplicationDelegate.ReceivedRemoteNotification(UIKit.UIApplication,Foundation.NSDictionary)
-M:UIKit.UIApplicationDelegate.ReceiveMemoryWarning(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.RegisteredForRemoteNotifications(UIKit.UIApplication,Foundation.NSData)
-M:UIKit.UIApplicationDelegate.ShouldAllowExtensionPointIdentifier(UIKit.UIApplication,Foundation.NSString)
-M:UIKit.UIApplicationDelegate.ShouldAutomaticallyLocalizeKeyCommands(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.ShouldRequestHealthAuthorization(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.ShouldRestoreApplicationState(UIKit.UIApplication,Foundation.NSCoder)
-M:UIKit.UIApplicationDelegate.ShouldRestoreSecureApplicationState(UIKit.UIApplication,Foundation.NSCoder)
-M:UIKit.UIApplicationDelegate.ShouldSaveApplicationState(UIKit.UIApplication,Foundation.NSCoder)
-M:UIKit.UIApplicationDelegate.ShouldSaveSecureApplicationState(UIKit.UIApplication,Foundation.NSCoder)
-M:UIKit.UIApplicationDelegate.UserActivityUpdated(UIKit.UIApplication,Foundation.NSUserActivity)
-M:UIKit.UIApplicationDelegate.UserDidAcceptCloudKitShare(UIKit.UIApplication,CloudKit.CKShareMetadata)
-M:UIKit.UIApplicationDelegate.WillChangeStatusBarFrame(UIKit.UIApplication,CoreGraphics.CGRect)
-M:UIKit.UIApplicationDelegate.WillChangeStatusBarOrientation(UIKit.UIApplication,UIKit.UIInterfaceOrientation,System.Double)
-M:UIKit.UIApplicationDelegate.WillContinueUserActivity(UIKit.UIApplication,System.String)
-M:UIKit.UIApplicationDelegate.WillEncodeRestorableState(UIKit.UIApplication,Foundation.NSCoder)
-M:UIKit.UIApplicationDelegate.WillEnterForeground(UIKit.UIApplication)
-M:UIKit.UIApplicationDelegate.WillFinishLaunching(UIKit.UIApplication,Foundation.NSDictionary)
-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.Copy(Foundation.NSZone)
-M:UIKit.UIApplicationShortcutIcon.FromContact(Contacts.CNContact)
-M:UIKit.UIApplicationShortcutIcon.FromSystemImageName(System.String)
-M:UIKit.UIApplicationShortcutIcon.FromTemplateImageName(System.String)
-M:UIKit.UIApplicationShortcutIcon.FromType(UIKit.UIApplicationShortcutIconType)
-M:UIKit.UIApplicationShortcutItem.#ctor(System.String,System.String,System.String,UIKit.UIApplicationShortcutIcon,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:UIKit.UIApplicationShortcutItem.#ctor(System.String,System.String)
M:UIKit.UIApplicationShortcutItem.Copy(Foundation.NSZone)
M:UIKit.UIApplicationShortcutItem.MutableCopy(Foundation.NSZone)
-M:UIKit.UIAttachmentBehavior.#ctor(UIKit.IUIDynamicItem,CoreGraphics.CGPoint)
-M:UIKit.UIAttachmentBehavior.#ctor(UIKit.IUIDynamicItem,UIKit.IUIDynamicItem)
-M:UIKit.UIAttachmentBehavior.#ctor(UIKit.IUIDynamicItem,UIKit.UIOffset,CoreGraphics.CGPoint)
-M:UIKit.UIAttachmentBehavior.#ctor(UIKit.IUIDynamicItem,UIKit.UIOffset,UIKit.IUIDynamicItem,UIKit.UIOffset)
-M:UIKit.UIAttachmentBehavior.CreateFixedAttachment(UIKit.IUIDynamicItem,UIKit.IUIDynamicItem,CoreGraphics.CGPoint)
-M:UIKit.UIAttachmentBehavior.CreateLimitAttachment(UIKit.IUIDynamicItem,UIKit.UIOffset,UIKit.IUIDynamicItem,UIKit.UIOffset)
-M:UIKit.UIAttachmentBehavior.CreatePinAttachment(UIKit.IUIDynamicItem,UIKit.IUIDynamicItem,CoreGraphics.CGPoint)
-M:UIKit.UIAttachmentBehavior.CreateSlidingAttachment(UIKit.IUIDynamicItem,CoreGraphics.CGPoint,CoreGraphics.CGVector)
-M:UIKit.UIAttachmentBehavior.CreateSlidingAttachment(UIKit.IUIDynamicItem,UIKit.IUIDynamicItem,CoreGraphics.CGPoint,CoreGraphics.CGVector)
M:UIKit.UIBackgroundConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIBackgroundConfiguration.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIBackgroundConfiguration.GetResolvedBackgroundColor(UIKit.UIColor)
-M:UIKit.UIBackgroundConfiguration.GetResolvedStrokeColor(UIKit.UIColor)
-M:UIKit.UIBackgroundConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState)
-M:UIKit.UIBandSelectionInteraction.#ctor(System.Action{UIKit.UIBandSelectionInteraction})
-M:UIKit.UIBandSelectionInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UIBandSelectionInteraction.Dispose(System.Boolean)
-M:UIKit.UIBandSelectionInteraction.WillMoveToView(UIKit.UIView)
-M:UIKit.UIBarAppearance.#ctor(UIKit.UIBarAppearance)
-M:UIKit.UIBarAppearance.#ctor(UIKit.UIUserInterfaceIdiom)
-M:UIKit.UIBarAppearance.ConfigureWithDefaultBackground
-M:UIKit.UIBarAppearance.ConfigureWithOpaqueBackground
-M:UIKit.UIBarAppearance.ConfigureWithTransparentBackground
M:UIKit.UIBarAppearance.Copy(Foundation.NSZone)
M:UIKit.UIBarAppearance.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIBarButtonItem.#ctor(System.String,UIKit.UIBarButtonItemStyle,Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIBarButtonItem.#ctor(System.String,UIKit.UIBarButtonItemStyle,System.EventHandler)
-M:UIKit.UIBarButtonItem.#ctor(System.String,UIKit.UIImage,Foundation.NSObject,ObjCRuntime.Selector,UIKit.UIMenu)
-M:UIKit.UIBarButtonItem.#ctor(System.String,UIKit.UIMenu)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIAction,UIKit.UIMenu)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIAction)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIBarButtonSystemItem,Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIBarButtonItem.#ctor(UIKit.UIBarButtonSystemItem,System.EventHandler)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIBarButtonSystemItem,UIKit.UIAction,UIKit.UIMenu)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIBarButtonSystemItem,UIKit.UIAction)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIBarButtonSystemItem,UIKit.UIMenu)
M:UIKit.UIBarButtonItem.#ctor(UIKit.UIBarButtonSystemItem)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIImage,UIKit.UIBarButtonItemStyle,Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIBarButtonItem.#ctor(UIKit.UIImage,UIKit.UIBarButtonItemStyle,System.EventHandler)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIImage,UIKit.UIImage,UIKit.UIBarButtonItemStyle,Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIImage,UIKit.UIMenu)
-M:UIKit.UIBarButtonItem.#ctor(UIKit.UIView)
M:UIKit.UIBarButtonItem.add_Clicked(System.EventHandler)
-M:UIKit.UIBarButtonItem.AddSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
-M:UIKit.UIBarButtonItem.AddSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions)
-M:UIKit.UIBarButtonItem.AddSymbolEffect(Symbols.NSSymbolEffect)
-M:UIKit.UIBarButtonItem.CreatingMovableGroup(System.String)
-M:UIKit.UIBarButtonItem.CreatingOptionalGroup(System.String,System.Boolean)
M:UIKit.UIBarButtonItem.Dispose(System.Boolean)
M:UIKit.UIBarButtonItem.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIBarButtonItem.GetBackButtonBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.GetBackButtonBackgroundVerticalPositionAdjustment(UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.GetBackButtonTitlePositionAdjustment(UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarButtonItemStyle,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.GetBackgroundVerticalPositionAdjustment(UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.GetFixedSpaceItem(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIBarButtonItem.GetFrame(UIKit.UIView)
-M:UIKit.UIBarButtonItem.GetTitlePositionAdjustment(UIKit.UIBarMetrics)
M:UIKit.UIBarButtonItem.remove_Clicked(System.EventHandler)
-M:UIKit.UIBarButtonItem.RemoveAllSymbolEffects
-M:UIKit.UIBarButtonItem.RemoveAllSymbolEffects(Symbols.NSSymbolEffectOptions,System.Boolean)
-M:UIKit.UIBarButtonItem.RemoveAllSymbolEffects(Symbols.NSSymbolEffectOptions)
-M:UIKit.UIBarButtonItem.RemoveSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
-M:UIKit.UIBarButtonItem.RemoveSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions)
-M:UIKit.UIBarButtonItem.RemoveSymbolEffect(Symbols.NSSymbolEffect)
-M:UIKit.UIBarButtonItem.SetBackButtonBackgroundImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.SetBackButtonBackgroundVerticalPositionAdjustment(System.Runtime.InteropServices.NFloat,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.SetBackButtonTitlePositionAdjustment(UIKit.UIOffset,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.SetBackgroundImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIBarButtonItemStyle,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.SetBackgroundImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.SetBackgroundVerticalPositionAdjustment(System.Runtime.InteropServices.NFloat,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItem.SetSymbolImage(UIKit.UIImage,Symbols.NSSymbolContentTransition,Symbols.NSSymbolEffectOptions)
-M:UIKit.UIBarButtonItem.SetSymbolImage(UIKit.UIImage,Symbols.NSSymbolContentTransition)
-M:UIKit.UIBarButtonItem.SetTitlePositionAdjustment(UIKit.UIOffset,UIKit.UIBarMetrics)
M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.#ctor(System.IntPtr)
M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.GetBackButtonBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)
M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.GetBackButtonBackgroundVerticalPositionAdjustment(UIKit.UIBarMetrics)
@@ -57843,16 +43258,9 @@ M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.SetBackgroundImage(UIKit.UIIma
M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.SetBackgroundImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIBarMetrics)
M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.SetBackgroundVerticalPositionAdjustment(System.Runtime.InteropServices.NFloat,UIKit.UIBarMetrics)
M:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.SetTitlePositionAdjustment(UIKit.UIOffset,UIKit.UIBarMetrics)
-M:UIKit.UIBarButtonItemAppearance.#ctor(UIKit.UIBarButtonItemStyle)
-M:UIKit.UIBarButtonItemAppearance.ConfigureWithDefault(UIKit.UIBarButtonItemStyle)
M:UIKit.UIBarButtonItemAppearance.Copy(Foundation.NSZone)
M:UIKit.UIBarButtonItemAppearance.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIBarButtonItemGroup.#ctor(UIKit.UIBarButtonItem[],UIKit.UIBarButtonItem)
M:UIKit.UIBarButtonItemGroup.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIBarButtonItemGroup.GetFixedGroup(UIKit.UIBarButtonItem,UIKit.UIBarButtonItem[])
-M:UIKit.UIBarButtonItemGroup.GetMovableGroup(System.String,UIKit.UIBarButtonItem,UIKit.UIBarButtonItem[])
-M:UIKit.UIBarButtonItemGroup.GetOptionalGroup(System.String,System.Boolean,UIKit.UIBarButtonItem,UIKit.UIBarButtonItem[])
-M:UIKit.UIBarItem.AccessibilityActivate
M:UIKit.UIBarItem.EncodeTo(Foundation.NSCoder)
M:UIKit.UIBarItem.GetTitleTextAttributes(UIKit.UIControlState)
M:UIKit.UIBarItem.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState)
@@ -57860,64 +43268,12 @@ M:UIKit.UIBarItem.UIBarItemAppearance.#ctor(System.IntPtr)
M:UIKit.UIBarItem.UIBarItemAppearance.GetTitleTextAttributes(UIKit.UIControlState)
M:UIKit.UIBarItem.UIBarItemAppearance.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState)
M:UIKit.UIBarPositioningDelegate_Extensions.GetPositionForBar(UIKit.IUIBarPositioningDelegate,UIKit.IUIBarPositioning)
-M:UIKit.UIBarPositioningDelegate.GetPositionForBar(UIKit.IUIBarPositioning)
-M:UIKit.UIBezierPath.#ctor
-M:UIKit.UIBezierPath.AddArc(CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)
-M:UIKit.UIBezierPath.AddClip
-M:UIKit.UIBezierPath.AddCurveToPoint(CoreGraphics.CGPoint,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:UIKit.UIBezierPath.AddLineTo(CoreGraphics.CGPoint)
-M:UIKit.UIBezierPath.AddQuadCurveToPoint(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:UIKit.UIBezierPath.AppendPath(UIKit.UIBezierPath)
-M:UIKit.UIBezierPath.ApplyTransform(CoreGraphics.CGAffineTransform)
-M:UIKit.UIBezierPath.BezierPathByReversingPath
-M:UIKit.UIBezierPath.ClosePath
-M:UIKit.UIBezierPath.ContainsPoint(CoreGraphics.CGPoint)
M:UIKit.UIBezierPath.Copy(Foundation.NSZone)
-M:UIKit.UIBezierPath.Create
M:UIKit.UIBezierPath.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIBezierPath.Fill
-M:UIKit.UIBezierPath.Fill(CoreGraphics.CGBlendMode,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIBezierPath.FromArc(CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Boolean)
-M:UIKit.UIBezierPath.FromOval(CoreGraphics.CGRect)
-M:UIKit.UIBezierPath.FromPath(CoreGraphics.CGPath)
-M:UIKit.UIBezierPath.FromRect(CoreGraphics.CGRect)
-M:UIKit.UIBezierPath.FromRoundedRect(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIBezierPath.FromRoundedRect(CoreGraphics.CGRect,UIKit.UIRectCorner,CoreGraphics.CGSize)
M:UIKit.UIBezierPath.GetLineDash(System.Runtime.InteropServices.NFloat[]@,System.Runtime.InteropServices.NFloat@)
-M:UIKit.UIBezierPath.MoveTo(CoreGraphics.CGPoint)
-M:UIKit.UIBezierPath.RemoveAllPoints
M:UIKit.UIBezierPath.SetLineDash(System.Runtime.InteropServices.NFloat[],System.IntPtr,System.IntPtr,System.Runtime.InteropServices.NFloat)
M:UIKit.UIBezierPath.SetLineDash(System.Runtime.InteropServices.NFloat[],System.Runtime.InteropServices.NFloat)
-M:UIKit.UIBezierPath.Stroke
-M:UIKit.UIBezierPath.Stroke(CoreGraphics.CGBlendMode,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIBlurEffect.FromStyle(UIKit.UIBlurEffectStyle)
-M:UIKit.UIButton.#ctor(CoreGraphics.CGRect,UIKit.UIAction)
-M:UIKit.UIButton.#ctor(CoreGraphics.CGRect)
M:UIKit.UIButton.#ctor(UIKit.UIButtonType)
-M:UIKit.UIButton.BackgroundImageForState(UIKit.UIControlState)
-M:UIKit.UIButton.BackgroundRectForBounds(CoreGraphics.CGRect)
-M:UIKit.UIButton.ContentRectForBounds(CoreGraphics.CGRect)
-M:UIKit.UIButton.FromType(UIKit.UIButtonType,UIKit.UIAction)
-M:UIKit.UIButton.FromType(UIKit.UIButtonType)
-M:UIKit.UIButton.GetAttributedTitle(UIKit.UIControlState)
-M:UIKit.UIButton.GetButton(UIKit.UIButtonConfiguration,UIKit.UIAction)
-M:UIKit.UIButton.GetPreferredSymbolConfiguration(UIKit.UIControlState)
-M:UIKit.UIButton.GetSystemButton(UIKit.UIAction)
-M:UIKit.UIButton.GetSystemButton(UIKit.UIImage,Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIButton.ImageForState(UIKit.UIControlState)
-M:UIKit.UIButton.ImageRectForContentRect(CoreGraphics.CGRect)
-M:UIKit.UIButton.SetAttributedTitle(Foundation.NSAttributedString,UIKit.UIControlState)
-M:UIKit.UIButton.SetBackgroundImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UIButton.SetImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UIButton.SetNeedsUpdateConfiguration
-M:UIKit.UIButton.SetPreferredSymbolConfiguration(UIKit.UIImageSymbolConfiguration,UIKit.UIControlState)
-M:UIKit.UIButton.SetTitle(System.String,UIKit.UIControlState)
-M:UIKit.UIButton.SetTitleColor(UIKit.UIColor,UIKit.UIControlState)
-M:UIKit.UIButton.SetTitleShadowColor(UIKit.UIColor,UIKit.UIControlState)
-M:UIKit.UIButton.Title(UIKit.UIControlState)
-M:UIKit.UIButton.TitleColor(UIKit.UIControlState)
-M:UIKit.UIButton.TitleRectForContentRect(CoreGraphics.CGRect)
-M:UIKit.UIButton.TitleShadowColor(UIKit.UIControlState)
M:UIKit.UIButton.UIButtonAppearance.#ctor(System.IntPtr)
M:UIKit.UIButton.UIButtonAppearance.BackgroundImageForState(UIKit.UIControlState)
M:UIKit.UIButton.UIButtonAppearance.ImageForState(UIKit.UIControlState)
@@ -57928,246 +43284,63 @@ M:UIKit.UIButton.UIButtonAppearance.SetTitleColor(UIKit.UIColor,UIKit.UIControlS
M:UIKit.UIButton.UIButtonAppearance.SetTitleShadowColor(UIKit.UIColor,UIKit.UIControlState)
M:UIKit.UIButton.UIButtonAppearance.TitleColor(UIKit.UIControlState)
M:UIKit.UIButton.UIButtonAppearance.TitleShadowColor(UIKit.UIControlState)
-M:UIKit.UIButton.UpdateConfiguration
M:UIKit.UIButtonConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIButtonConfiguration.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIButtonConfiguration.GetUpdatedConfiguration(UIKit.UIButton)
-M:UIKit.UIButtonConfiguration.SetDefaultContentInsets
M:UIKit.UIButtonEventArgs.#ctor(System.IntPtr)
-M:UIKit.UICalendarSelection.UpdateSelectableDates
-M:UIKit.UICalendarSelectionMultiDate.#ctor(UIKit.IUICalendarSelectionMultiDateDelegate)
M:UIKit.UICalendarSelectionMultiDate.Dispose(System.Boolean)
-M:UIKit.UICalendarSelectionMultiDate.SetSelectedDates(Foundation.NSDateComponents[],System.Boolean)
M:UIKit.UICalendarSelectionMultiDateDelegate_Extensions.CanDeselectDate(UIKit.IUICalendarSelectionMultiDateDelegate,UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents)
M:UIKit.UICalendarSelectionMultiDateDelegate_Extensions.CanSelectDate(UIKit.IUICalendarSelectionMultiDateDelegate,UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionMultiDateDelegate.CanDeselectDate(UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionMultiDateDelegate.CanSelectDate(UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionMultiDateDelegate.DidDeselectDate(UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionMultiDateDelegate.DidSelectDate(UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionSingleDate.#ctor(UIKit.IUICalendarSelectionSingleDateDelegate)
M:UIKit.UICalendarSelectionSingleDate.Dispose(System.Boolean)
-M:UIKit.UICalendarSelectionSingleDate.SetSelectedDate(Foundation.NSDateComponents,System.Boolean)
M:UIKit.UICalendarSelectionSingleDateDelegate_Extensions.CanSelectDate(UIKit.IUICalendarSelectionSingleDateDelegate,UIKit.UICalendarSelectionSingleDate,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionSingleDateDelegate.CanSelectDate(UIKit.UICalendarSelectionSingleDate,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionSingleDateDelegate.DidSelectDate(UIKit.UICalendarSelectionSingleDate,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionWeekOfYear.#ctor(UIKit.IUICalendarSelectionWeekOfYearDelegate)
M:UIKit.UICalendarSelectionWeekOfYear.Dispose(System.Boolean)
-M:UIKit.UICalendarSelectionWeekOfYear.SetSelectedWeekOfYear(Foundation.NSDateComponents,System.Boolean)
-M:UIKit.UICalendarSelectionWeekOfYearDelegate.CanSelectWeekOfYear(UIKit.UICalendarSelectionWeekOfYear,Foundation.NSDateComponents)
-M:UIKit.UICalendarSelectionWeekOfYearDelegate.DidSelectWeekOfYear(UIKit.UICalendarSelectionWeekOfYear,Foundation.NSDateComponents)
-M:UIKit.UICalendarView.#ctor(CoreGraphics.CGRect)
M:UIKit.UICalendarView.Dispose(System.Boolean)
-M:UIKit.UICalendarView.ReloadDecorations(Foundation.NSDateComponents[],System.Boolean)
-M:UIKit.UICalendarView.SetVisibleDateComponents(Foundation.NSDateComponents,System.Boolean)
M:UIKit.UICalendarView.UICalendarViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UICalendarViewDecoration.#ctor(System.Func{UIKit.UIView})
-M:UIKit.UICalendarViewDecoration.#ctor(UIKit.UIImage,UIKit.UIColor,UIKit.UICalendarViewDecorationSize)
-M:UIKit.UICalendarViewDecoration.Create(System.Func{UIKit.UIView})
-M:UIKit.UICalendarViewDecoration.Create(UIKit.UIColor,UIKit.UICalendarViewDecorationSize)
-M:UIKit.UICalendarViewDecoration.Create(UIKit.UIImage,UIKit.UIColor,UIKit.UICalendarViewDecorationSize)
-M:UIKit.UICalendarViewDecoration.Create(UIKit.UIImage)
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.AlignmentOccurred(CoreGraphics.CGPoint)
-M:UIKit.UICanvasFeedbackGenerator.GetFeedbackGenerator(UIKit.UIView)
-M:UIKit.UICanvasFeedbackGenerator.PathCompleted(CoreGraphics.CGPoint)
M:UIKit.UICellAccessory.Copy(Foundation.NSZone)
M:UIKit.UICellAccessory.EncodeTo(Foundation.NSCoder)
M:UIKit.UICellAccessory.GetPositionAfterAccessory(ObjCRuntime.Class)
M:UIKit.UICellAccessory.GetPositionAfterAccessory(System.Type)
M:UIKit.UICellAccessory.GetPositionBeforeAccessory(ObjCRuntime.Class)
M:UIKit.UICellAccessory.GetPositionBeforeAccessory(System.Type)
-M:UIKit.UICellAccessoryCustomView.#ctor(UIKit.UIView,UIKit.UICellAccessoryPlacement)
-M:UIKit.UICellAccessoryLabel.#ctor(System.String)
-M:UIKit.UICellAccessoryPopUpMenu.#ctor(UIKit.UIMenu)
-M:UIKit.UICellConfigurationState.#ctor(UIKit.UITraitCollection)
-M:UIKit.UICloudSharingController.#ctor(CloudKit.CKShare,CloudKit.CKContainer)
-M:UIKit.UICloudSharingController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UICloudSharingController.#ctor(UIKit.UICloudSharingControllerPreparationHandler)
M:UIKit.UICloudSharingController.Dispose(System.Boolean)
M:UIKit.UICloudSharingControllerDelegate_Extensions.DidSaveShare(UIKit.IUICloudSharingControllerDelegate,UIKit.UICloudSharingController)
M:UIKit.UICloudSharingControllerDelegate_Extensions.DidStopSharing(UIKit.IUICloudSharingControllerDelegate,UIKit.UICloudSharingController)
M:UIKit.UICloudSharingControllerDelegate_Extensions.GetItemThumbnailData(UIKit.IUICloudSharingControllerDelegate,UIKit.UICloudSharingController)
M:UIKit.UICloudSharingControllerDelegate_Extensions.GetItemType(UIKit.IUICloudSharingControllerDelegate,UIKit.UICloudSharingController)
-M:UIKit.UICloudSharingControllerDelegate.DidSaveShare(UIKit.UICloudSharingController)
-M:UIKit.UICloudSharingControllerDelegate.DidStopSharing(UIKit.UICloudSharingController)
-M:UIKit.UICloudSharingControllerDelegate.FailedToSaveShare(UIKit.UICloudSharingController,Foundation.NSError)
-M:UIKit.UICloudSharingControllerDelegate.GetItemThumbnailData(UIKit.UICloudSharingController)
-M:UIKit.UICloudSharingControllerDelegate.GetItemTitle(UIKit.UICloudSharingController)
-M:UIKit.UICloudSharingControllerDelegate.GetItemType(UIKit.UICloudSharingController)
-M:UIKit.UICollectionLayoutListConfiguration.#ctor(UIKit.UICollectionLayoutListAppearance)
M:UIKit.UICollectionLayoutListConfiguration.Copy(Foundation.NSZone)
M:UIKit.UICollectionLayoutListConfiguration.Dispose(System.Boolean)
M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.Copy(Foundation.NSZone)
-M:UIKit.UICollectionReusableView.#ctor(CoreGraphics.CGRect)
-M:UIKit.UICollectionReusableView.ApplyLayoutAttributes(UIKit.UICollectionViewLayoutAttributes)
-M:UIKit.UICollectionReusableView.DidTransition(UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayout)
-M:UIKit.UICollectionReusableView.PreferredLayoutAttributesFittingAttributes(UIKit.UICollectionViewLayoutAttributes)
-M:UIKit.UICollectionReusableView.PrepareForReuse
M:UIKit.UICollectionReusableView.UICollectionReusableViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UICollectionReusableView.WillTransition(UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayout)
-M:UIKit.UICollectionView.#ctor(CoreGraphics.CGRect,UIKit.UICollectionViewLayout)
-M:UIKit.UICollectionView.BeginInteractiveMovementForItem(Foundation.NSIndexPath)
-M:UIKit.UICollectionView.CancelInteractiveMovement
-M:UIKit.UICollectionView.CancelInteractiveTransition
-M:UIKit.UICollectionView.CellForItem(Foundation.NSIndexPath)
-M:UIKit.UICollectionView.DeleteItems(Foundation.NSIndexPath[])
-M:UIKit.UICollectionView.DeleteSections(Foundation.NSIndexSet)
-M:UIKit.UICollectionView.DequeueConfiguredReusableCell(UIKit.UICollectionViewCellRegistration,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UICollectionView.DequeueConfiguredReusableSupplementaryView(UIKit.UICollectionViewSupplementaryRegistration,Foundation.NSIndexPath)
-M:UIKit.UICollectionView.DequeueReusableCell(Foundation.NSString,Foundation.NSIndexPath)
M:UIKit.UICollectionView.DequeueReusableCell(System.String,Foundation.NSIndexPath)
-M:UIKit.UICollectionView.DequeueReusableSupplementaryView(Foundation.NSString,Foundation.NSString,Foundation.NSIndexPath)
M:UIKit.UICollectionView.DequeueReusableSupplementaryView(Foundation.NSString,System.String,Foundation.NSIndexPath)
M:UIKit.UICollectionView.DequeueReusableSupplementaryView(UIKit.UICollectionElementKindSection,Foundation.NSString,Foundation.NSIndexPath)
M:UIKit.UICollectionView.DequeueReusableSupplementaryView(UIKit.UICollectionElementKindSection,System.String,Foundation.NSIndexPath)
-M:UIKit.UICollectionView.DeselectItem(Foundation.NSIndexPath,System.Boolean)
M:UIKit.UICollectionView.Dispose(System.Boolean)
M:UIKit.UICollectionView.EncodeTo(Foundation.NSCoder)
-M:UIKit.UICollectionView.EndInteractiveMovement
-M:UIKit.UICollectionView.FinishInteractiveTransition
-M:UIKit.UICollectionView.GetDataSourceIndexPath(Foundation.NSIndexPath)
-M:UIKit.UICollectionView.GetDataSourceSectionIndex(System.IntPtr)
-M:UIKit.UICollectionView.GetIndexPathForSupplementaryView(UIKit.UICollectionReusableView)
-M:UIKit.UICollectionView.GetIndexPathsForSelectedItems
-M:UIKit.UICollectionView.GetIndexPathsForVisibleSupplementaryElements(Foundation.NSString)
-M:UIKit.UICollectionView.GetLayoutAttributesForItem(Foundation.NSIndexPath)
-M:UIKit.UICollectionView.GetLayoutAttributesForSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionView.GetPresentationIndexPath(Foundation.NSIndexPath)
-M:UIKit.UICollectionView.GetPresentationSectionIndex(System.IntPtr)
-M:UIKit.UICollectionView.GetSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionView.GetVisibleSupplementaryViews(Foundation.NSString)
-M:UIKit.UICollectionView.IndexPathForCell(UIKit.UICollectionViewCell)
-M:UIKit.UICollectionView.IndexPathForItemAtPoint(CoreGraphics.CGPoint)
-M:UIKit.UICollectionView.InsertItems(Foundation.NSIndexPath[])
-M:UIKit.UICollectionView.InsertSections(Foundation.NSIndexSet)
-M:UIKit.UICollectionView.MoveItem(Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UICollectionView.MoveSection(System.IntPtr,System.IntPtr)
-M:UIKit.UICollectionView.NumberOfItemsInSection(System.IntPtr)
-M:UIKit.UICollectionView.NumberOfSections
-M:UIKit.UICollectionView.PerformBatchUpdates(System.Action,UIKit.UICompletionHandler)
M:UIKit.UICollectionView.PerformBatchUpdatesAsync(System.Action)
-M:UIKit.UICollectionView.PerformUsingPresentationValues(System.Action)
-M:UIKit.UICollectionView.ReconfigureItems(Foundation.NSIndexPath[])
M:UIKit.UICollectionView.RegisterClassForCell(System.Type,Foundation.NSString)
M:UIKit.UICollectionView.RegisterClassForCell(System.Type,System.String)
-M:UIKit.UICollectionView.RegisterClassForSupplementaryView(System.IntPtr,Foundation.NSString,Foundation.NSString)
M:UIKit.UICollectionView.RegisterClassForSupplementaryView(System.Type,Foundation.NSString,Foundation.NSString)
M:UIKit.UICollectionView.RegisterClassForSupplementaryView(System.Type,Foundation.NSString,System.String)
M:UIKit.UICollectionView.RegisterClassForSupplementaryView(System.Type,UIKit.UICollectionElementKindSection,Foundation.NSString)
M:UIKit.UICollectionView.RegisterClassForSupplementaryView(System.Type,UIKit.UICollectionElementKindSection,System.String)
-M:UIKit.UICollectionView.RegisterNibForCell(UIKit.UINib,Foundation.NSString)
M:UIKit.UICollectionView.RegisterNibForCell(UIKit.UINib,System.String)
-M:UIKit.UICollectionView.RegisterNibForSupplementaryView(UIKit.UINib,Foundation.NSString,Foundation.NSString)
M:UIKit.UICollectionView.RegisterNibForSupplementaryView(UIKit.UINib,UIKit.UICollectionElementKindSection,Foundation.NSString)
M:UIKit.UICollectionView.RegisterNibForSupplementaryView(UIKit.UINib,UIKit.UICollectionElementKindSection,System.String)
-M:UIKit.UICollectionView.ReloadData
-M:UIKit.UICollectionView.ReloadItems(Foundation.NSIndexPath[])
-M:UIKit.UICollectionView.ReloadSections(Foundation.NSIndexSet)
-M:UIKit.UICollectionView.ScrollToItem(Foundation.NSIndexPath,UIKit.UICollectionViewScrollPosition,System.Boolean)
-M:UIKit.UICollectionView.SelectItem(Foundation.NSIndexPath,System.Boolean,UIKit.UICollectionViewScrollPosition)
-M:UIKit.UICollectionView.SetCollectionViewLayout(UIKit.UICollectionViewLayout,System.Boolean,UIKit.UICompletionHandler)
-M:UIKit.UICollectionView.SetCollectionViewLayout(UIKit.UICollectionViewLayout,System.Boolean)
M:UIKit.UICollectionView.SetCollectionViewLayoutAsync(UIKit.UICollectionViewLayout,System.Boolean)
-M:UIKit.UICollectionView.StartInteractiveTransition(UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayoutInteractiveTransitionCompletion)
M:UIKit.UICollectionView.StartInteractiveTransitionAsync(UIKit.UICollectionViewLayout,UIKit.UICollectionViewTransitionLayout@)
M:UIKit.UICollectionView.StartInteractiveTransitionAsync(UIKit.UICollectionViewLayout)
M:UIKit.UICollectionView.UICollectionViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UICollectionView.UpdateInteractiveMovement(CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewCell.#ctor(CoreGraphics.CGRect)
-M:UIKit.UICollectionViewCell.DragStateDidChange(UIKit.UICollectionViewCellDragState)
-M:UIKit.UICollectionViewCell.SetNeedsUpdateConfiguration
M:UIKit.UICollectionViewCell.UICollectionViewCellAppearance.#ctor(System.IntPtr)
-M:UIKit.UICollectionViewCell.UpdateConfiguration(UIKit.UICellConfigurationState)
-M:UIKit.UICollectionViewCellRegistration.GetRegistration(ObjCRuntime.Class,UIKit.UICollectionViewCellRegistrationConfigurationHandler)
M:UIKit.UICollectionViewCellRegistration.GetRegistration(System.Type,UIKit.UICollectionViewCellRegistrationConfigurationHandler)
-M:UIKit.UICollectionViewCellRegistration.GetRegistration(UIKit.UINib,UIKit.UICollectionViewCellRegistrationConfigurationHandler)
-M:UIKit.UICollectionViewCompositionalLayout.#ctor(UIKit.NSCollectionLayoutSection,UIKit.UICollectionViewCompositionalLayoutConfiguration)
-M:UIKit.UICollectionViewCompositionalLayout.#ctor(UIKit.NSCollectionLayoutSection)
-M:UIKit.UICollectionViewCompositionalLayout.#ctor(UIKit.UICollectionViewCompositionalLayoutSectionProvider,UIKit.UICollectionViewCompositionalLayoutConfiguration)
-M:UIKit.UICollectionViewCompositionalLayout.#ctor(UIKit.UICollectionViewCompositionalLayoutSectionProvider)
-M:UIKit.UICollectionViewCompositionalLayout.GetLayout(UIKit.UICollectionLayoutListConfiguration)
M:UIKit.UICollectionViewCompositionalLayoutConfiguration.Copy(Foundation.NSZone)
-M:UIKit.UICollectionViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UICollectionViewController.#ctor(UIKit.UICollectionViewLayout)
-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.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)
-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)
M:UIKit.UICollectionViewDataSource_Extensions.GetIndexPath(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,System.String,System.IntPtr)
M:UIKit.UICollectionViewDataSource_Extensions.GetIndexTitles(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView)
M:UIKit.UICollectionViewDataSource_Extensions.GetViewForSupplementaryElement(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,Foundation.NSString,Foundation.NSIndexPath)
M:UIKit.UICollectionViewDataSource_Extensions.MoveItem(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath)
M:UIKit.UICollectionViewDataSource_Extensions.NumberOfSections(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView)
-M:UIKit.UICollectionViewDataSource.CanMoveItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDataSource.GetCell(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDataSource.GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)
-M:UIKit.UICollectionViewDataSource.GetIndexTitles(UIKit.UICollectionView)
-M:UIKit.UICollectionViewDataSource.GetItemsCount(UIKit.UICollectionView,System.IntPtr)
-M:UIKit.UICollectionViewDataSource.GetViewForSupplementaryElement(UIKit.UICollectionView,Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDataSource.MoveItem(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDataSource.NumberOfSections(UIKit.UICollectionView)
M:UIKit.UICollectionViewDataSourcePrefetching_Extensions.CancelPrefetching(UIKit.IUICollectionViewDataSourcePrefetching,UIKit.UICollectionView,Foundation.NSIndexPath[])
M:UIKit.UICollectionViewDelegate_Extensions.CanEditItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath)
M:UIKit.UICollectionViewDelegate_Extensions.CanFocusItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath)
@@ -58209,94 +43382,14 @@ M:UIKit.UICollectionViewDelegate_Extensions.WillDisplayContextMenu(UIKit.IUIColl
M:UIKit.UICollectionViewDelegate_Extensions.WillDisplaySupplementaryView(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UICollectionReusableView,System.String,Foundation.NSIndexPath)
M:UIKit.UICollectionViewDelegate_Extensions.WillEndContextMenuInteraction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
M:UIKit.UICollectionViewDelegate_Extensions.WillPerformPreviewAction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.UICollectionViewDelegate.CanEditItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.CanFocusItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.CanPerformAction(UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UICollectionViewDelegate.CanPerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.CellDisplayingEnded(UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.DecelerationEnded(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.DecelerationStarted(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.DidBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.DidChangeAdjustedContentInset(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.DidEndMultipleSelectionInteraction(UIKit.UICollectionView)
-M:UIKit.UICollectionViewDelegate.DidUpdateFocus(UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
-M:UIKit.UICollectionViewDelegate.DidZoom(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.DraggingEnded(UIKit.UIScrollView,System.Boolean)
-M:UIKit.UICollectionViewDelegate.DraggingStarted(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.GetContextMenuConfiguration(UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewDelegate.GetContextMenuConfiguration(UIKit.UICollectionView,Foundation.NSIndexPath[],CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewDelegate.GetContextMenuConfigurationDismissalPreview(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.GetContextMenuConfigurationHighlightPreview(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.GetIndexPathForPreferredFocusedView(UIKit.UICollectionView)
-M:UIKit.UICollectionViewDelegate.GetPreviewForDismissingContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration)
-M:UIKit.UICollectionViewDelegate.GetPreviewForHighlightingContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration)
-M:UIKit.UICollectionViewDelegate.GetSceneActivationConfigurationForItem(UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewDelegate.GetSelectionFollowsFocusForItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.GetTargetContentOffset(UIKit.UICollectionView,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewDelegate.GetTargetIndexPathForMove(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.GetTargetIndexPathForMoveOfItemFromOriginalIndexPath(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ItemDeselected(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ItemHighlighted(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ItemSelected(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ItemUnhighlighted(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.PerformAction(UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UICollectionViewDelegate.PerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ScrollAnimationEnded(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.Scrolled(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.ScrolledToTop(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.ShouldBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ShouldDeselectItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ShouldHighlightItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ShouldScrollToTop(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.ShouldSelectItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ShouldShowMenu(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.ShouldSpringLoadItem(UIKit.UICollectionView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext)
-M:UIKit.UICollectionViewDelegate.ShouldUpdateFocus(UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext)
-M:UIKit.UICollectionViewDelegate.SupplementaryViewDisplayingEnded(UIKit.UICollectionView,UIKit.UICollectionReusableView,Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.TransitionLayout(UIKit.UICollectionView,UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayout)
-M:UIKit.UICollectionViewDelegate.ViewForZoomingInScrollView(UIKit.UIScrollView)
-M:UIKit.UICollectionViewDelegate.WillDisplayCell(UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.WillDisplayContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UICollectionViewDelegate.WillDisplaySupplementaryView(UIKit.UICollectionView,UIKit.UICollectionReusableView,System.String,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegate.WillEndContextMenuInteraction(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UICollectionViewDelegate.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@)
-M:UIKit.UICollectionViewDelegate.WillPerformPreviewAction(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.UICollectionViewDelegate.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)
-M:UIKit.UICollectionViewDelegate.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)
M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetInsetForSection(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetMinimumInteritemSpacingForSection(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetMinimumLineSpacingForSection(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetReferenceSizeForFooter(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetReferenceSizeForHeader(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetSizeForItem(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDelegateFlowLayout.GetInsetForSection(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
-M:UIKit.UICollectionViewDelegateFlowLayout.GetMinimumInteritemSpacingForSection(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
-M:UIKit.UICollectionViewDelegateFlowLayout.GetMinimumLineSpacingForSection(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
-M:UIKit.UICollectionViewDelegateFlowLayout.GetReferenceSizeForFooter(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
-M:UIKit.UICollectionViewDelegateFlowLayout.GetReferenceSizeForHeader(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
-M:UIKit.UICollectionViewDelegateFlowLayout.GetSizeForItem(UIKit.UICollectionView,UIKit.UICollectionViewLayout,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDiffableDataSource`2.#ctor(UIKit.UICollectionView,UIKit.UICollectionViewDiffableDataSourceCellProvider)
-M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshot(UIKit.NSDiffableDataSourceSectionSnapshot{`1},`0,System.Boolean,System.Action)
-M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshot(UIKit.NSDiffableDataSourceSectionSnapshot{`1},`0,System.Boolean)
-M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshot(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean,System.Action)
-M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshot(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshotAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
-M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshotUsingReloadData(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Action)
-M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshotUsingReloadData(UIKit.NSDiffableDataSourceSnapshot{`0,`1})
M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshotUsingReloadDataAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1})
-M:UIKit.UICollectionViewDiffableDataSource`2.CanMoveItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetCell(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetIndex(`0)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetIndexPath(`1)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetIndexTitles(UIKit.UICollectionView)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetItemIdentifier(Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetItemsCount(UIKit.UICollectionView,System.IntPtr)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetSectionIdentifier(System.IntPtr)
-M:UIKit.UICollectionViewDiffableDataSource`2.GetSnapshot(`0)
-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.Copy(Foundation.NSZone)
M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.Copy(Foundation.NSZone)
M:UIKit.UICollectionViewDragDelegate_Extensions.DragSessionAllowsMoveOperation(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession)
@@ -58305,278 +43398,81 @@ M:UIKit.UICollectionViewDragDelegate_Extensions.DragSessionIsRestrictedToDraggin
M:UIKit.UICollectionViewDragDelegate_Extensions.DragSessionWillBegin(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession)
M:UIKit.UICollectionViewDragDelegate_Extensions.GetDragPreviewParameters(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,Foundation.NSIndexPath)
M:UIKit.UICollectionViewDragDelegate_Extensions.GetItemsForAddingToDragSession(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewDragDelegate.DragSessionAllowsMoveOperation(UIKit.UICollectionView,UIKit.IUIDragSession)
-M:UIKit.UICollectionViewDragDelegate.DragSessionDidEnd(UIKit.UICollectionView,UIKit.IUIDragSession)
-M:UIKit.UICollectionViewDragDelegate.DragSessionIsRestrictedToDraggingApplication(UIKit.UICollectionView,UIKit.IUIDragSession)
-M:UIKit.UICollectionViewDragDelegate.DragSessionWillBegin(UIKit.UICollectionView,UIKit.IUIDragSession)
-M:UIKit.UICollectionViewDragDelegate.GetDragPreviewParameters(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDragDelegate.GetItemsForAddingToDragSession(UIKit.UICollectionView,UIKit.IUIDragSession,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewDragDelegate.GetItemsForBeginningDragSession(UIKit.UICollectionView,UIKit.IUIDragSession,Foundation.NSIndexPath)
M:UIKit.UICollectionViewDropDelegate_Extensions.CanHandleDropSession(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession)
M:UIKit.UICollectionViewDropDelegate_Extensions.DropSessionDidEnd(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession)
M:UIKit.UICollectionViewDropDelegate_Extensions.DropSessionDidEnter(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession)
M:UIKit.UICollectionViewDropDelegate_Extensions.DropSessionDidExit(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession)
M:UIKit.UICollectionViewDropDelegate_Extensions.DropSessionDidUpdate(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession,Foundation.NSIndexPath)
M:UIKit.UICollectionViewDropDelegate_Extensions.GetDropPreviewParameters(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDropDelegate.CanHandleDropSession(UIKit.UICollectionView,UIKit.IUIDropSession)
-M:UIKit.UICollectionViewDropDelegate.DropSessionDidEnd(UIKit.UICollectionView,UIKit.IUIDropSession)
-M:UIKit.UICollectionViewDropDelegate.DropSessionDidEnter(UIKit.UICollectionView,UIKit.IUIDropSession)
-M:UIKit.UICollectionViewDropDelegate.DropSessionDidExit(UIKit.UICollectionView,UIKit.IUIDropSession)
-M:UIKit.UICollectionViewDropDelegate.DropSessionDidUpdate(UIKit.UICollectionView,UIKit.IUIDropSession,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDropDelegate.GetDropPreviewParameters(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewDropDelegate.PerformDrop(UIKit.UICollectionView,UIKit.IUICollectionViewDropCoordinator)
-M:UIKit.UICollectionViewDropPlaceholder.#ctor(Foundation.NSIndexPath,System.String)
-M:UIKit.UICollectionViewDropProposal.#ctor(UIKit.UIDropOperation,UIKit.UICollectionViewDropIntent)
-M:UIKit.UICollectionViewDropProposal.#ctor(UIKit.UIDropOperation)
M:UIKit.UICollectionViewLayout.EncodeTo(Foundation.NSCoder)
-M:UIKit.UICollectionViewLayout.FinalizeAnimatedBoundsChange
-M:UIKit.UICollectionViewLayout.FinalizeCollectionViewUpdates
-M:UIKit.UICollectionViewLayout.FinalizeLayoutTransition
-M:UIKit.UICollectionViewLayout.FinalLayoutAttributesForDisappearingDecorationElement(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.FinalLayoutAttributesForDisappearingItem(Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.FinalLayoutAttributesForDisappearingSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.GetIndexPathsToDeleteForDecorationViewOfKind(Foundation.NSString)
-M:UIKit.UICollectionViewLayout.GetIndexPathsToDeleteForSupplementaryView(Foundation.NSString)
-M:UIKit.UICollectionViewLayout.GetIndexPathsToInsertForDecorationView(Foundation.NSString)
-M:UIKit.UICollectionViewLayout.GetIndexPathsToInsertForSupplementaryView(Foundation.NSString)
-M:UIKit.UICollectionViewLayout.GetInvalidationContext(UIKit.UICollectionViewLayoutAttributes,UIKit.UICollectionViewLayoutAttributes)
-M:UIKit.UICollectionViewLayout.GetInvalidationContextForBoundsChange(CoreGraphics.CGRect)
-M:UIKit.UICollectionViewLayout.GetInvalidationContextForEndingInteractiveMovementOfItems(Foundation.NSIndexPath[],Foundation.NSIndexPath[],System.Boolean)
-M:UIKit.UICollectionViewLayout.GetInvalidationContextForInteractivelyMovingItems(Foundation.NSIndexPath[],CoreGraphics.CGPoint,Foundation.NSIndexPath[],CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewLayout.GetLayoutAttributesForInteractivelyMovingItem(Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewLayout.GetTargetIndexPathForInteractivelyMovingItem(Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewLayout.InitialLayoutAttributesForAppearingDecorationElement(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.InitialLayoutAttributesForAppearingItem(Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.InitialLayoutAttributesForAppearingSupplementaryElement(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.InvalidateLayout
-M:UIKit.UICollectionViewLayout.InvalidateLayout(UIKit.UICollectionViewLayoutInvalidationContext)
-M:UIKit.UICollectionViewLayout.InvalidationContextClass
-M:UIKit.UICollectionViewLayout.LayoutAttributesForDecorationView(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.LayoutAttributesForElementsInRect(CoreGraphics.CGRect)
-M:UIKit.UICollectionViewLayout.LayoutAttributesForItem(Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.LayoutAttributesForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)
M:UIKit.UICollectionViewLayout.LayoutAttributesForSupplementaryView(UIKit.UICollectionElementKindSection,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayout.PrepareForAnimatedBoundsChange(CoreGraphics.CGRect)
-M:UIKit.UICollectionViewLayout.PrepareForCollectionViewUpdates(UIKit.UICollectionViewUpdateItem[])
-M:UIKit.UICollectionViewLayout.PrepareForTransitionFromLayout(UIKit.UICollectionViewLayout)
-M:UIKit.UICollectionViewLayout.PrepareForTransitionToLayout(UIKit.UICollectionViewLayout)
-M:UIKit.UICollectionViewLayout.PrepareLayout
M:UIKit.UICollectionViewLayout.RegisterClassForDecorationView(System.Type,Foundation.NSString)
-M:UIKit.UICollectionViewLayout.RegisterNibForDecorationView(UIKit.UINib,Foundation.NSString)
-M:UIKit.UICollectionViewLayout.ShouldInvalidateLayout(UIKit.UICollectionViewLayoutAttributes,UIKit.UICollectionViewLayoutAttributes)
-M:UIKit.UICollectionViewLayout.ShouldInvalidateLayoutForBoundsChange(CoreGraphics.CGRect)
-M:UIKit.UICollectionViewLayout.TargetContentOffset(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewLayout.TargetContentOffsetForProposedContentOffset(CoreGraphics.CGPoint)
M:UIKit.UICollectionViewLayoutAttributes.Copy(Foundation.NSZone)
-M:UIKit.UICollectionViewLayoutAttributes.CreateForCell(Foundation.NSIndexPath)
M:UIKit.UICollectionViewLayoutAttributes.CreateForCell``1(Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayoutAttributes.CreateForDecorationView(Foundation.NSString,Foundation.NSIndexPath)
M:UIKit.UICollectionViewLayoutAttributes.CreateForDecorationView``1(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewLayoutAttributes.CreateForSupplementaryView(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.InvalidateDecorationElements(Foundation.NSString,Foundation.NSIndexPath[])
-M:UIKit.UICollectionViewLayoutInvalidationContext.InvalidateItems(Foundation.NSIndexPath[])
-M:UIKit.UICollectionViewLayoutInvalidationContext.InvalidateSupplementaryElements(Foundation.NSString,Foundation.NSIndexPath[])
-M:UIKit.UICollectionViewListCell.#ctor(CoreGraphics.CGRect)
M:UIKit.UICollectionViewListCell.UICollectionViewListCellAppearance.#ctor(System.IntPtr)
-M:UIKit.UICollectionViewPlaceholder.#ctor(Foundation.NSIndexPath,System.String)
-M:UIKit.UICollectionViewSource.CanEditItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.CanFocusItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.CanMoveItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.CanPerformAction(UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UICollectionViewSource.CanPerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.CellDisplayingEnded(UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.DecelerationEnded(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.DecelerationStarted(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.DidBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.DidChangeAdjustedContentInset(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.DidEndMultipleSelectionInteraction(UIKit.UICollectionView)
-M:UIKit.UICollectionViewSource.DidUpdateFocus(UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
-M:UIKit.UICollectionViewSource.DidZoom(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.DraggingEnded(UIKit.UIScrollView,System.Boolean)
-M:UIKit.UICollectionViewSource.DraggingStarted(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.GetCell(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.GetContextMenuConfiguration(UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewSource.GetContextMenuConfiguration(UIKit.UICollectionView,Foundation.NSIndexPath[],CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewSource.GetContextMenuConfigurationDismissalPreview(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.GetContextMenuConfigurationHighlightPreview(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)
-M:UIKit.UICollectionViewSource.GetIndexPathForPreferredFocusedView(UIKit.UICollectionView)
-M:UIKit.UICollectionViewSource.GetIndexTitles(UIKit.UICollectionView)
-M:UIKit.UICollectionViewSource.GetItemsCount(UIKit.UICollectionView,System.IntPtr)
-M:UIKit.UICollectionViewSource.GetPreviewForDismissingContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration)
-M:UIKit.UICollectionViewSource.GetPreviewForHighlightingContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration)
-M:UIKit.UICollectionViewSource.GetSceneActivationConfigurationForItem(UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewSource.GetSelectionFollowsFocusForItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.GetTargetContentOffset(UIKit.UICollectionView,CoreGraphics.CGPoint)
-M:UIKit.UICollectionViewSource.GetTargetIndexPathForMove(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.GetTargetIndexPathForMoveOfItemFromOriginalIndexPath(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.GetViewForSupplementaryElement(UIKit.UICollectionView,Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ItemDeselected(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ItemHighlighted(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ItemSelected(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ItemUnhighlighted(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.MoveItem(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.NumberOfSections(UIKit.UICollectionView)
-M:UIKit.UICollectionViewSource.PerformAction(UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UICollectionViewSource.PerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ScrollAnimationEnded(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.Scrolled(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.ScrolledToTop(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.ShouldBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ShouldDeselectItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ShouldHighlightItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ShouldScrollToTop(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.ShouldSelectItem(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ShouldShowMenu(UIKit.UICollectionView,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.ShouldSpringLoadItem(UIKit.UICollectionView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext)
-M:UIKit.UICollectionViewSource.ShouldUpdateFocus(UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext)
-M:UIKit.UICollectionViewSource.SupplementaryViewDisplayingEnded(UIKit.UICollectionView,UIKit.UICollectionReusableView,Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.TransitionLayout(UIKit.UICollectionView,UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayout)
-M:UIKit.UICollectionViewSource.ViewForZoomingInScrollView(UIKit.UIScrollView)
-M:UIKit.UICollectionViewSource.WillDisplayCell(UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.WillDisplayContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UICollectionViewSource.WillDisplaySupplementaryView(UIKit.UICollectionView,UIKit.UICollectionReusableView,System.String,Foundation.NSIndexPath)
-M:UIKit.UICollectionViewSource.WillEndContextMenuInteraction(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UICollectionViewSource.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@)
-M:UIKit.UICollectionViewSource.WillPerformPreviewAction(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.UICollectionViewSource.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)
-M:UIKit.UICollectionViewSource.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)
-M:UIKit.UICollectionViewSupplementaryRegistration.GetRegistration(ObjCRuntime.Class,System.String,UIKit.UICollectionViewSupplementaryRegistrationConfigurationHandler)
M:UIKit.UICollectionViewSupplementaryRegistration.GetRegistration(System.Type,System.String,UIKit.UICollectionViewSupplementaryRegistrationConfigurationHandler)
-M:UIKit.UICollectionViewSupplementaryRegistration.GetRegistration(UIKit.UINib,System.String,UIKit.UICollectionViewSupplementaryRegistrationConfigurationHandler)
-M:UIKit.UICollectionViewTransitionLayout.#ctor(UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayout)
M:UIKit.UICollectionViewTransitionLayout.EncodeTo(Foundation.NSCoder)
-M:UIKit.UICollectionViewTransitionLayout.GetValueForAnimatedKey(System.String)
-M:UIKit.UICollectionViewTransitionLayout.UpdateValue(System.Runtime.InteropServices.NFloat,System.String)
M:UIKit.UICollectionViewTransitionResult.#ctor(System.Boolean,System.Boolean)
M:UIKit.UICollisionBeganBoundaryContactEventArgs.#ctor(UIKit.IUIDynamicItem,Foundation.NSObject,CoreGraphics.CGPoint)
M:UIKit.UICollisionBeganContactEventArgs.#ctor(UIKit.IUIDynamicItem,UIKit.IUIDynamicItem,CoreGraphics.CGPoint)
-M:UIKit.UICollisionBehavior.#ctor(UIKit.IUIDynamicItem[])
M:UIKit.UICollisionBehavior.add_BeganBoundaryContact(System.EventHandler{UIKit.UICollisionBeganBoundaryContactEventArgs})
M:UIKit.UICollisionBehavior.add_BeganContact(System.EventHandler{UIKit.UICollisionBeganContactEventArgs})
M:UIKit.UICollisionBehavior.add_EndedBoundaryContact(System.EventHandler{UIKit.UICollisionEndedBoundaryContactEventArgs})
M:UIKit.UICollisionBehavior.add_EndedContact(System.EventHandler{UIKit.UICollisionEndedContactEventArgs})
-M:UIKit.UICollisionBehavior.AddBoundary(Foundation.NSObject,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:UIKit.UICollisionBehavior.AddBoundary(Foundation.NSObject,UIKit.UIBezierPath)
-M:UIKit.UICollisionBehavior.AddItem(UIKit.IUIDynamicItem)
M:UIKit.UICollisionBehavior.Dispose(System.Boolean)
-M:UIKit.UICollisionBehavior.GetBoundary(Foundation.NSObject)
M:UIKit.UICollisionBehavior.remove_BeganBoundaryContact(System.EventHandler{UIKit.UICollisionBeganBoundaryContactEventArgs})
M:UIKit.UICollisionBehavior.remove_BeganContact(System.EventHandler{UIKit.UICollisionBeganContactEventArgs})
M:UIKit.UICollisionBehavior.remove_EndedBoundaryContact(System.EventHandler{UIKit.UICollisionEndedBoundaryContactEventArgs})
M:UIKit.UICollisionBehavior.remove_EndedContact(System.EventHandler{UIKit.UICollisionEndedContactEventArgs})
-M:UIKit.UICollisionBehavior.RemoveAllBoundaries
-M:UIKit.UICollisionBehavior.RemoveBoundary(Foundation.NSObject)
-M:UIKit.UICollisionBehavior.RemoveItem(UIKit.IUIDynamicItem)
-M:UIKit.UICollisionBehavior.SetTranslatesReferenceBoundsIntoBoundaryWithInsets(UIKit.UIEdgeInsets)
M:UIKit.UICollisionBehaviorDelegate_Extensions.BeganBoundaryContact(UIKit.IUICollisionBehaviorDelegate,UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,Foundation.NSObject,CoreGraphics.CGPoint)
M:UIKit.UICollisionBehaviorDelegate_Extensions.BeganContact(UIKit.IUICollisionBehaviorDelegate,UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,UIKit.IUIDynamicItem,CoreGraphics.CGPoint)
M:UIKit.UICollisionBehaviorDelegate_Extensions.EndedBoundaryContact(UIKit.IUICollisionBehaviorDelegate,UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,Foundation.NSObject)
M:UIKit.UICollisionBehaviorDelegate_Extensions.EndedContact(UIKit.IUICollisionBehaviorDelegate,UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,UIKit.IUIDynamicItem)
-M:UIKit.UICollisionBehaviorDelegate.BeganBoundaryContact(UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,Foundation.NSObject,CoreGraphics.CGPoint)
-M:UIKit.UICollisionBehaviorDelegate.BeganContact(UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,UIKit.IUIDynamicItem,CoreGraphics.CGPoint)
-M:UIKit.UICollisionBehaviorDelegate.EndedBoundaryContact(UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,Foundation.NSObject)
-M:UIKit.UICollisionBehaviorDelegate.EndedContact(UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,UIKit.IUIDynamicItem)
M:UIKit.UICollisionEndedBoundaryContactEventArgs.#ctor(UIKit.IUIDynamicItem,Foundation.NSObject)
M:UIKit.UICollisionEndedContactEventArgs.#ctor(UIKit.IUIDynamicItem,UIKit.IUIDynamicItem)
-M:UIKit.UIColor.#ctor(CoreGraphics.CGColor)
-M:UIKit.UIColor.#ctor(CoreImage.CIColor)
-M:UIKit.UIColor.#ctor(System.Func{UIKit.UITraitCollection,UIKit.UIColor})
-M:UIKit.UIColor.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIColor.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIColor.#ctor(UIKit.UIImage)
-M:UIKit.UIColor.ApplyProminence(UIKit.UIColorProminence)
-M:UIKit.UIColor.ColorWithAlpha(System.Runtime.InteropServices.NFloat)
M:UIKit.UIColor.Copy(Foundation.NSZone)
M:UIKit.UIColor.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIColor.FromCGColor(CoreGraphics.CGColor)
-M:UIKit.UIColor.FromCIColor(CoreImage.CIColor)
-M:UIKit.UIColor.FromDisplayP3(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIColor.FromDynamicProvider(System.Func{UIKit.UITraitCollection,UIKit.UIColor})
M:UIKit.UIColor.FromHSB(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIColor.FromHSBA(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIColor.FromName(System.String,Foundation.NSBundle,UIKit.UITraitCollection)
-M:UIKit.UIColor.FromName(System.String)
-M:UIKit.UIColor.FromPatternImage(UIKit.UIImage)
M:UIKit.UIColor.FromRGB(System.Byte,System.Byte,System.Byte)
M:UIKit.UIColor.FromRGB(System.Int32,System.Int32,System.Int32)
M:UIKit.UIColor.FromRGB(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:UIKit.UIColor.FromRGBA(System.Byte,System.Byte,System.Byte,System.Byte)
M:UIKit.UIColor.FromRGBA(System.Int32,System.Int32,System.Int32,System.Int32)
-M:UIKit.UIColor.FromRGBA(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIColor.FromWhiteAlpha(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:UIKit.UIColor.GetHSBA(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@)
M:UIKit.UIColor.GetItemProviderVisibilityForTypeIdentifier(System.String)
M:UIKit.UIColor.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
-M:UIKit.UIColor.GetResolvedColor(UIKit.UITraitCollection)
M:UIKit.UIColor.GetRGBA(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@)
-M:UIKit.UIColor.GetWhite(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@)
M:UIKit.UIColor.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:UIKit.UIColor.LoadDataAsync(System.String,Foundation.NSProgress@)
M:UIKit.UIColor.LoadDataAsync(System.String)
-M:UIKit.UIColor.SetColor
-M:UIKit.UIColor.SetFill
-M:UIKit.UIColor.SetStroke
M:UIKit.UIColor.ToString
-M:UIKit.UIColorPickerViewController.#ctor(System.String,Foundation.NSBundle)
M:UIKit.UIColorPickerViewController.Dispose(System.Boolean)
M:UIKit.UIColorPickerViewControllerDelegate_Extensions.DidFinish(UIKit.IUIColorPickerViewControllerDelegate,UIKit.UIColorPickerViewController)
M:UIKit.UIColorPickerViewControllerDelegate_Extensions.DidSelectColor(UIKit.IUIColorPickerViewControllerDelegate,UIKit.UIColorPickerViewController,UIKit.UIColor,System.Boolean)
M:UIKit.UIColorPickerViewControllerDelegate_Extensions.DidSelectColor(UIKit.IUIColorPickerViewControllerDelegate,UIKit.UIColorPickerViewController)
-M:UIKit.UIColorPickerViewControllerDelegate.DidFinish(UIKit.UIColorPickerViewController)
-M:UIKit.UIColorPickerViewControllerDelegate.DidSelectColor(UIKit.UIColorPickerViewController,UIKit.UIColor,System.Boolean)
-M:UIKit.UIColorPickerViewControllerDelegate.DidSelectColor(UIKit.UIColorPickerViewController)
-M:UIKit.UIColorWell.#ctor(CoreGraphics.CGRect)
M:UIKit.UIColorWell.UIColorWellAppearance.#ctor(System.IntPtr)
-M:UIKit.UICommand.Create(System.String,UIKit.UIImage,ObjCRuntime.Selector,Foundation.NSObject,UIKit.UICommandAlternate[])
-M:UIKit.UICommand.Create(System.String,UIKit.UIImage,ObjCRuntime.Selector,Foundation.NSObject)
-M:UIKit.UICommand.Target(Foundation.NSObject,Foundation.NSObject)
M:UIKit.UICommandAlternate.Copy(Foundation.NSZone)
-M:UIKit.UICommandAlternate.Create(System.String,ObjCRuntime.Selector,UIKit.UIKeyModifierFlags)
M:UIKit.UICommandAlternate.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIContentContainer.GetSizeForChildContentContainer(UIKit.IUIContentContainer,CoreGraphics.CGSize)
-M:UIKit.UIContentContainer.PreferredContentSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer)
-M:UIKit.UIContentContainer.SystemLayoutFittingSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer)
-M:UIKit.UIContentContainer.ViewWillTransitionToSize(CoreGraphics.CGSize,UIKit.IUIViewControllerTransitionCoordinator)
-M:UIKit.UIContentContainer.WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)
M:UIKit.UIContentSizeCategoryChangedEventArgs.#ctor(Foundation.NSNotification)
M:UIKit.UIContentSizeCategoryExtensions.Compare(UIKit.UIContentSizeCategory,UIKit.UIContentSizeCategory)
M:UIKit.UIContentSizeCategoryExtensions.IsAccessibilityCategory(UIKit.UIContentSizeCategory)
M:UIKit.UIContentUnavailableButtonProperties.Copy(Foundation.NSZone)
M:UIKit.UIContentUnavailableButtonProperties.EncodeTo(Foundation.NSCoder)
M:UIKit.UIContentUnavailableConfiguration.Copy(Foundation.NSZone)
-M:UIKit.UIContentUnavailableConfiguration.CreateEmptyConfiguration
-M:UIKit.UIContentUnavailableConfiguration.CreateLoadingConfiguration
-M:UIKit.UIContentUnavailableConfiguration.CreateSearchConfiguration
M:UIKit.UIContentUnavailableConfiguration.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIContentUnavailableConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState)
-M:UIKit.UIContentUnavailableConfiguration.MakeContentView
-M:UIKit.UIContentUnavailableConfigurationState.#ctor(UIKit.UITraitCollection)
M:UIKit.UIContentUnavailableConfigurationState.Copy(Foundation.NSZone)
M:UIKit.UIContentUnavailableConfigurationState.EncodeTo(Foundation.NSCoder)
-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.Copy(Foundation.NSZone)
M:UIKit.UIContentUnavailableImageProperties.EncodeTo(Foundation.NSCoder)
M:UIKit.UIContentUnavailableTextProperties.Copy(Foundation.NSZone)
M:UIKit.UIContentUnavailableTextProperties.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIContentUnavailableView.#ctor(UIKit.UIContentUnavailableConfiguration)
-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.Create(Foundation.INSCopying,UIKit.UIContextMenuContentPreviewProvider,UIKit.UIContextMenuActionProvider)
-M:UIKit.UIContextMenuInteraction.#ctor(UIKit.IUIContextMenuInteractionDelegate)
-M:UIKit.UIContextMenuInteraction.DidMoveToView(UIKit.UIView)
-M:UIKit.UIContextMenuInteraction.DismissMenu
M:UIKit.UIContextMenuInteraction.Dispose(System.Boolean)
-M:UIKit.UIContextMenuInteraction.GetLocation(UIKit.UIView)
-M:UIKit.UIContextMenuInteraction.UpdateVisibleMenu(System.Func{UIKit.UIMenu,UIKit.UIMenu})
-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)
@@ -58584,17 +43480,6 @@ M:UIKit.UIContextMenuInteractionDelegate_Extensions.GetPreviewForHighlightingMen
M:UIKit.UIContextMenuInteractionDelegate_Extensions.WillDisplayMenu(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
M:UIKit.UIContextMenuInteractionDelegate_Extensions.WillEnd(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
M:UIKit.UIContextMenuInteractionDelegate_Extensions.WillPerformPreviewAction(UIKit.IUIContextMenuInteractionDelegate,UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.UIContextMenuInteractionDelegate.GetConfigurationForMenu(UIKit.UIContextMenuInteraction,CoreGraphics.CGPoint)
-M:UIKit.UIContextMenuInteractionDelegate.GetDismissalPreview(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,Foundation.INSCopying)
-M:UIKit.UIContextMenuInteractionDelegate.GetHighlightPreview(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,Foundation.INSCopying)
-M:UIKit.UIContextMenuInteractionDelegate.GetPreviewForDismissingMenu(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration)
-M:UIKit.UIContextMenuInteractionDelegate.GetPreviewForHighlightingMenu(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration)
-M:UIKit.UIContextMenuInteractionDelegate.WillDisplayMenu(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UIContextMenuInteractionDelegate.WillEnd(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UIContextMenuInteractionDelegate.WillPerformPreviewAction(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.UIContextualAction.FromContextualActionStyle(UIKit.UIContextualActionStyle,System.String,UIKit.UIContextualActionHandler)
-M:UIKit.UIControl.#ctor(CoreGraphics.CGRect,UIKit.UIAction)
-M:UIKit.UIControl.#ctor(CoreGraphics.CGRect)
M:UIKit.UIControl.add_AllEditingEvents(System.EventHandler)
M:UIKit.UIControl.add_AllEvents(System.EventHandler)
M:UIKit.UIControl.add_AllTouchEvents(System.EventHandler)
@@ -58613,22 +43498,7 @@ M:UIKit.UIControl.add_TouchDragOutside(System.EventHandler)
M:UIKit.UIControl.add_TouchUpInside(System.EventHandler)
M:UIKit.UIControl.add_TouchUpOutside(System.EventHandler)
M:UIKit.UIControl.add_ValueChanged(System.EventHandler)
-M:UIKit.UIControl.AddAction(UIKit.UIAction,UIKit.UIControlEvent)
-M:UIKit.UIControl.AddTarget(Foundation.NSObject,ObjCRuntime.Selector,UIKit.UIControlEvent)
M:UIKit.UIControl.AddTarget(System.EventHandler,UIKit.UIControlEvent)
-M:UIKit.UIControl.BeginTracking(UIKit.UITouch,UIKit.UIEvent)
-M:UIKit.UIControl.CancelTracking(UIKit.UIEvent)
-M:UIKit.UIControl.ContinueTracking(UIKit.UITouch,UIKit.UIEvent)
-M:UIKit.UIControl.EndTracking(UIKit.UITouch,UIKit.UIEvent)
-M:UIKit.UIControl.EnumerateEventHandlers(UIKit.UIControlEnumerateEventsIteratorHandler)
-M:UIKit.UIControl.GetActions(Foundation.NSObject,UIKit.UIControlEvent)
-M:UIKit.UIControl.GetConfigurationForMenu(UIKit.UIContextMenuInteraction,CoreGraphics.CGPoint)
-M:UIKit.UIControl.GetDismissalPreview(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,Foundation.INSCopying)
-M:UIKit.UIControl.GetHighlightPreview(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,Foundation.INSCopying)
-M:UIKit.UIControl.GetMenuAttachmentPoint(UIKit.UIContextMenuConfiguration)
-M:UIKit.UIControl.GetPreviewForDismissingMenu(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration)
-M:UIKit.UIControl.GetPreviewForHighlightingMenu(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration)
-M:UIKit.UIControl.PerformPrimaryAction
M:UIKit.UIControl.remove_AllEditingEvents(System.EventHandler)
M:UIKit.UIControl.remove_AllEvents(System.EventHandler)
M:UIKit.UIControl.remove_AllTouchEvents(System.EventHandler)
@@ -58647,57 +43517,21 @@ M:UIKit.UIControl.remove_TouchDragOutside(System.EventHandler)
M:UIKit.UIControl.remove_TouchUpInside(System.EventHandler)
M:UIKit.UIControl.remove_TouchUpOutside(System.EventHandler)
M:UIKit.UIControl.remove_ValueChanged(System.EventHandler)
-M:UIKit.UIControl.RemoveAction(System.String,UIKit.UIControlEvent)
-M:UIKit.UIControl.RemoveAction(UIKit.UIAction,UIKit.UIControlEvent)
-M:UIKit.UIControl.RemoveTarget(Foundation.NSObject,ObjCRuntime.Selector,UIKit.UIControlEvent)
M:UIKit.UIControl.RemoveTarget(System.EventHandler,UIKit.UIControlEvent)
-M:UIKit.UIControl.SendAction(ObjCRuntime.Selector,Foundation.NSObject,UIKit.UIEvent)
-M:UIKit.UIControl.SendAction(UIKit.UIAction)
-M:UIKit.UIControl.SendActionForControlEvents(UIKit.UIControlEvent)
M:UIKit.UIControl.UIControlAppearance.#ctor(System.IntPtr)
-M:UIKit.UIControl.WillDisplayMenu(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UIControl.WillEnd(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UIControl.WillPerformPreviewAction(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.UICoordinateSpace.ConvertPointFromCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:UIKit.UICoordinateSpace.ConvertPointToCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:UIKit.UICoordinateSpace.ConvertRectFromCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace)
-M:UIKit.UICoordinateSpace.ConvertRectToCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace)
-M:UIKit.UICubicTimingParameters.#ctor(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:UIKit.UICubicTimingParameters.#ctor(UIKit.UIViewAnimationCurve)
M:UIKit.UICubicTimingParameters.Copy(Foundation.NSZone)
M:UIKit.UICubicTimingParameters.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIDatePicker.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIDatePicker.SetDate(Foundation.NSDate,System.Boolean)
M:UIKit.UIDatePicker.UIDatePickerAppearance.#ctor(System.IntPtr)
-M:UIKit.UIDeferredMenuElement.Create(UIKit.UIDeferredMenuElementProviderHandler)
-M:UIKit.UIDeferredMenuElement.CreateUncached(UIKit.UIDeferredMenuElementProviderHandler)
-M:UIKit.UIDevice.BeginGeneratingDeviceOrientationNotifications
M:UIKit.UIDevice.CheckSystemVersion(System.Int32,System.Int32)
-M:UIKit.UIDevice.EndGeneratingDeviceOrientationNotifications
-M:UIKit.UIDevice.PlayInputClick
M:UIKit.UIDeviceOrientationExtensions.IsFlat(UIKit.UIDeviceOrientation)
M:UIKit.UIDeviceOrientationExtensions.IsLandscape(UIKit.UIDeviceOrientation)
M:UIKit.UIDeviceOrientationExtensions.IsPortrait(UIKit.UIDeviceOrientation)
-M:UIKit.UIDocument.#ctor(Foundation.NSUrl)
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.AutoSave(UIKit.UIOperationHandler)
M:UIKit.UIDocument.AutoSaveAsync
-M:UIKit.UIDocument.ChangeCountTokenForSaveOperation(UIKit.UIDocumentSaveOperation)
-M:UIKit.UIDocument.Close(UIKit.UIOperationHandler)
M:UIKit.UIDocument.CloseAsync
-M:UIKit.UIDocument.ContentsForType(System.String,Foundation.NSError@)
-M:UIKit.UIDocument.DisableEditing
-M:UIKit.UIDocument.EnableEditing
-M:UIKit.UIDocument.FinishedHandlingError(Foundation.NSError,System.Boolean)
-M:UIKit.UIDocument.GetFileAttributesToWrite(Foundation.NSUrl,UIKit.UIDocumentSaveOperation,Foundation.NSError@)
-M:UIKit.UIDocument.GetFileNameExtension(System.String,UIKit.UIDocumentSaveOperation)
-M:UIKit.UIDocument.HandleError(Foundation.NSError,System.Boolean)
-M:UIKit.UIDocument.LoadFromContents(Foundation.NSObject,System.String,Foundation.NSError@)
-M:UIKit.UIDocument.Open(UIKit.UIOperationHandler)
M:UIKit.UIDocument.OpenAsync
-M:UIKit.UIDocument.PerformAsynchronousFileAccess(System.Action)
M:UIKit.UIDocument.PerformAsynchronousFileAccessAsync
M:UIKit.UIDocument.PresentedItemChanged
M:UIKit.UIDocument.PresentedItemChangedUbiquityAttributes(Foundation.NSSet{Foundation.NSString})
@@ -58711,37 +43545,17 @@ M:UIKit.UIDocument.PresentedSubitemGainedVersion(Foundation.NSUrl,Foundation.NSF
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.Read(Foundation.NSUrl,Foundation.NSError@)
M:UIKit.UIDocument.RelinquishPresentedItemToReader(Foundation.NSFilePresenterReacquirer)
M:UIKit.UIDocument.RelinquishPresentedItemToWriter(Foundation.NSFilePresenterReacquirer)
-M:UIKit.UIDocument.RestoreUserActivityState(Foundation.NSUserActivity)
-M:UIKit.UIDocument.RevertToContentsOfUrl(Foundation.NSUrl,UIKit.UIOperationHandler)
M:UIKit.UIDocument.RevertToContentsOfUrlAsync(Foundation.NSUrl)
-M:UIKit.UIDocument.Save(Foundation.NSUrl,UIKit.UIDocumentSaveOperation,UIKit.UIOperationHandler)
M:UIKit.UIDocument.SaveAsync(Foundation.NSUrl,UIKit.UIDocumentSaveOperation)
M:UIKit.UIDocument.SavePresentedItemChanges(System.Action{Foundation.NSError})
-M:UIKit.UIDocument.UpdateChangeCount(Foundation.NSObject,UIKit.UIDocumentSaveOperation)
-M:UIKit.UIDocument.UpdateChangeCount(UIKit.UIDocumentChangeKind)
-M:UIKit.UIDocument.UpdateUserActivityState(Foundation.NSUserActivity)
-M:UIKit.UIDocument.UserInteractionNoLongerPermittedForError(Foundation.NSError)
-M:UIKit.UIDocument.WriteContents(Foundation.NSObject,Foundation.NSDictionary,Foundation.NSUrl,UIKit.UIDocumentSaveOperation,Foundation.NSError@)
-M:UIKit.UIDocument.WriteContents(Foundation.NSObject,Foundation.NSUrl,UIKit.UIDocumentSaveOperation,Foundation.NSUrl,Foundation.NSError@)
-M:UIKit.UIDocumentBrowserAction.#ctor(System.String,System.String,UIKit.UIDocumentBrowserActionAvailability,System.Action{Foundation.NSUrl[]})
-M:UIKit.UIDocumentBrowserTransitionController.AnimateTransition(UIKit.IUIViewControllerContextTransitioning)
-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(System.String[])
-M:UIKit.UIDocumentBrowserViewController.#ctor(UniformTypeIdentifiers.UTType[])
M:UIKit.UIDocumentBrowserViewController.Dispose(System.Boolean)
M:UIKit.UIDocumentBrowserViewController.EncodeTo(Foundation.NSCoder)
M:UIKit.UIDocumentBrowserViewController.GetTransitionController(Foundation.NSUrl)
-M:UIKit.UIDocumentBrowserViewController.ImportDocument(Foundation.NSUrl,Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode,System.Action{Foundation.NSUrl,Foundation.NSError})
M:UIKit.UIDocumentBrowserViewController.ImportDocumentAsync(Foundation.NSUrl,Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode)
-M:UIKit.UIDocumentBrowserViewController.RenameDocument(Foundation.NSUrl,System.String,System.Action{Foundation.NSUrl,Foundation.NSError})
M:UIKit.UIDocumentBrowserViewController.RenameDocumentAsync(Foundation.NSUrl,System.String)
-M:UIKit.UIDocumentBrowserViewController.RevealDocument(Foundation.NSUrl,System.Boolean,System.Action{Foundation.NSUrl,Foundation.NSError})
M:UIKit.UIDocumentBrowserViewController.RevealDocumentAsync(Foundation.NSUrl,System.Boolean)
M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.DidImportDocument(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl,Foundation.NSUrl)
M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.DidPickDocumentsAtUrls(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[])
@@ -58750,13 +43564,6 @@ M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.DidRequestDocumentCre
M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.FailedToImportDocument(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl,Foundation.NSError)
M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.GetApplicationActivities(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[])
M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.WillPresent(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,UIKit.UIActivityViewController)
-M:UIKit.UIDocumentBrowserViewControllerDelegate.DidImportDocument(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl,Foundation.NSUrl)
-M:UIKit.UIDocumentBrowserViewControllerDelegate.DidPickDocumentsAtUrls(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[])
-M:UIKit.UIDocumentBrowserViewControllerDelegate.DidPickDocumentUrls(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[])
-M:UIKit.UIDocumentBrowserViewControllerDelegate.DidRequestDocumentCreation(UIKit.UIDocumentBrowserViewController,System.Action{Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode})
-M:UIKit.UIDocumentBrowserViewControllerDelegate.FailedToImportDocument(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl,Foundation.NSError)
-M:UIKit.UIDocumentBrowserViewControllerDelegate.GetApplicationActivities(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[])
-M:UIKit.UIDocumentBrowserViewControllerDelegate.WillPresent(UIKit.UIDocumentBrowserViewController,UIKit.UIActivityViewController)
M:UIKit.UIDocumentInteractionController.add_DidDismissOpenInMenu(System.EventHandler)
M:UIKit.UIDocumentInteractionController.add_DidDismissOptionsMenu(System.EventHandler)
M:UIKit.UIDocumentInteractionController.add_DidEndPreview(System.EventHandler)
@@ -58765,15 +43572,7 @@ M:UIKit.UIDocumentInteractionController.add_WillBeginPreview(System.EventHandler
M:UIKit.UIDocumentInteractionController.add_WillBeginSendingToApplication(System.EventHandler{UIKit.UIDocumentSendingToApplicationEventArgs})
M:UIKit.UIDocumentInteractionController.add_WillPresentOpenInMenu(System.EventHandler)
M:UIKit.UIDocumentInteractionController.add_WillPresentOptionsMenu(System.EventHandler)
-M:UIKit.UIDocumentInteractionController.DismissMenu(System.Boolean)
-M:UIKit.UIDocumentInteractionController.DismissPreview(System.Boolean)
M:UIKit.UIDocumentInteractionController.Dispose(System.Boolean)
-M:UIKit.UIDocumentInteractionController.FromUrl(Foundation.NSUrl)
-M:UIKit.UIDocumentInteractionController.PresentOpenInMenu(CoreGraphics.CGRect,UIKit.UIView,System.Boolean)
-M:UIKit.UIDocumentInteractionController.PresentOpenInMenu(UIKit.UIBarButtonItem,System.Boolean)
-M:UIKit.UIDocumentInteractionController.PresentOptionsMenu(CoreGraphics.CGRect,UIKit.UIView,System.Boolean)
-M:UIKit.UIDocumentInteractionController.PresentOptionsMenu(UIKit.UIBarButtonItem,System.Boolean)
-M:UIKit.UIDocumentInteractionController.PresentPreview(System.Boolean)
M:UIKit.UIDocumentInteractionController.remove_DidDismissOpenInMenu(System.EventHandler)
M:UIKit.UIDocumentInteractionController.remove_DidDismissOptionsMenu(System.EventHandler)
M:UIKit.UIDocumentInteractionController.remove_DidEndPreview(System.EventHandler)
@@ -58795,28 +43594,10 @@ M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.WillBeginPreview(UIKi
M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.WillBeginSendingToApplication(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController,System.String)
M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.WillPresentOpenInMenu(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController)
M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.WillPresentOptionsMenu(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.CanPerformAction(UIKit.UIDocumentInteractionController,ObjCRuntime.Selector)
-M:UIKit.UIDocumentInteractionControllerDelegate.DidDismissOpenInMenu(UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.DidDismissOptionsMenu(UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.DidEndPreview(UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.DidEndSendingToApplication(UIKit.UIDocumentInteractionController,System.String)
-M:UIKit.UIDocumentInteractionControllerDelegate.PerformAction(UIKit.UIDocumentInteractionController,ObjCRuntime.Selector)
-M:UIKit.UIDocumentInteractionControllerDelegate.RectangleForPreview(UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.ViewControllerForPreview(UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.ViewForPreview(UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.WillBeginPreview(UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.WillBeginSendingToApplication(UIKit.UIDocumentInteractionController,System.String)
-M:UIKit.UIDocumentInteractionControllerDelegate.WillPresentOpenInMenu(UIKit.UIDocumentInteractionController)
-M:UIKit.UIDocumentInteractionControllerDelegate.WillPresentOptionsMenu(UIKit.UIDocumentInteractionController)
M:UIKit.UIDocumentMenuDelegate_Extensions.WasCancelled(UIKit.IUIDocumentMenuDelegate,UIKit.UIDocumentMenuViewController)
-M:UIKit.UIDocumentMenuDelegate.DidPickDocumentPicker(UIKit.UIDocumentMenuViewController,UIKit.UIDocumentPickerViewController)
-M:UIKit.UIDocumentMenuDelegate.WasCancelled(UIKit.UIDocumentMenuViewController)
M:UIKit.UIDocumentMenuDocumentPickedEventArgs.#ctor(UIKit.UIDocumentPickerViewController)
-M:UIKit.UIDocumentMenuViewController.#ctor(Foundation.NSUrl,UIKit.UIDocumentPickerMode)
-M:UIKit.UIDocumentMenuViewController.#ctor(System.String[],UIKit.UIDocumentPickerMode)
M:UIKit.UIDocumentMenuViewController.add_DidPickDocumentPicker(System.EventHandler{UIKit.UIDocumentMenuDocumentPickedEventArgs})
M:UIKit.UIDocumentMenuViewController.add_WasCancelled(System.EventHandler)
-M:UIKit.UIDocumentMenuViewController.AddOption(System.String,UIKit.UIImage,UIKit.UIDocumentMenuOrder,System.Action)
M:UIKit.UIDocumentMenuViewController.AddOptionAsync(System.String,UIKit.UIImage,UIKit.UIDocumentMenuOrder)
M:UIKit.UIDocumentMenuViewController.Dispose(System.Boolean)
M:UIKit.UIDocumentMenuViewController.EncodeTo(Foundation.NSCoder)
@@ -58827,19 +43608,6 @@ M:UIKit.UIDocumentPickedEventArgs.#ctor(Foundation.NSUrl)
M:UIKit.UIDocumentPickerDelegate_Extensions.DidPickDocument(UIKit.IUIDocumentPickerDelegate,UIKit.UIDocumentPickerViewController,Foundation.NSUrl)
M:UIKit.UIDocumentPickerDelegate_Extensions.DidPickDocument(UIKit.IUIDocumentPickerDelegate,UIKit.UIDocumentPickerViewController,Foundation.NSUrl[])
M:UIKit.UIDocumentPickerDelegate_Extensions.WasCancelled(UIKit.IUIDocumentPickerDelegate,UIKit.UIDocumentPickerViewController)
-M:UIKit.UIDocumentPickerDelegate.DidPickDocument(UIKit.UIDocumentPickerViewController,Foundation.NSUrl)
-M:UIKit.UIDocumentPickerDelegate.DidPickDocument(UIKit.UIDocumentPickerViewController,Foundation.NSUrl[])
-M:UIKit.UIDocumentPickerDelegate.WasCancelled(UIKit.UIDocumentPickerViewController)
-M:UIKit.UIDocumentPickerExtensionViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UIDocumentPickerExtensionViewController.DismissGrantingAccess(Foundation.NSUrl)
-M:UIKit.UIDocumentPickerExtensionViewController.PrepareForPresentation(UIKit.UIDocumentPickerMode)
-M:UIKit.UIDocumentPickerViewController.#ctor(Foundation.NSUrl,UIKit.UIDocumentPickerMode)
-M:UIKit.UIDocumentPickerViewController.#ctor(Foundation.NSUrl[],System.Boolean)
-M:UIKit.UIDocumentPickerViewController.#ctor(Foundation.NSUrl[],UIKit.UIDocumentPickerMode)
-M:UIKit.UIDocumentPickerViewController.#ctor(Foundation.NSUrl[])
-M:UIKit.UIDocumentPickerViewController.#ctor(System.String[],UIKit.UIDocumentPickerMode)
-M:UIKit.UIDocumentPickerViewController.#ctor(UniformTypeIdentifiers.UTType[],System.Boolean)
-M:UIKit.UIDocumentPickerViewController.#ctor(UniformTypeIdentifiers.UTType[])
M:UIKit.UIDocumentPickerViewController.add_DidPickDocument(System.EventHandler{UIKit.UIDocumentPickedEventArgs})
M:UIKit.UIDocumentPickerViewController.add_DidPickDocumentAtUrls(System.EventHandler{UIKit.UIDocumentPickedAtUrlsEventArgs})
M:UIKit.UIDocumentPickerViewController.add_WasCancelled(System.EventHandler)
@@ -58848,22 +43616,11 @@ M:UIKit.UIDocumentPickerViewController.EncodeTo(Foundation.NSCoder)
M:UIKit.UIDocumentPickerViewController.remove_DidPickDocument(System.EventHandler{UIKit.UIDocumentPickedEventArgs})
M:UIKit.UIDocumentPickerViewController.remove_DidPickDocumentAtUrls(System.EventHandler{UIKit.UIDocumentPickedAtUrlsEventArgs})
M:UIKit.UIDocumentPickerViewController.remove_WasCancelled(System.EventHandler)
-M:UIKit.UIDocumentProperties.#ctor(Foundation.NSUrl)
-M:UIKit.UIDocumentProperties.#ctor(LinkPresentation.LPLinkMetadata)
M:UIKit.UIDocumentSendingToApplicationEventArgs.#ctor(System.String)
-M:UIKit.UIDocumentViewControllerLaunchOptions.CreateDocumentAction(UIKit.UIDocumentCreationIntent)
-M:UIKit.UIDocViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UIDocViewController.#ctor(UIKit.UIDocument)
-M:UIKit.UIDocViewController.DocumentDidOpen
-M:UIKit.UIDocViewController.NavigationItemDidUpdate
-M:UIKit.UIDocViewController.OpenDocument(System.Action{System.Boolean})
M:UIKit.UIDocViewController.OpenDocumentAsync
M:UIKit.UIDragDropSessionExtensions.CanLoadObjects(UIKit.IUIDragDropSession,System.Type)
M:UIKit.UIDragDropSessionExtensions.LoadObjects``1(UIKit.IUIDropSession,System.Action{``0[]})
-M:UIKit.UIDragInteraction.#ctor(UIKit.IUIDragInteractionDelegate)
-M:UIKit.UIDragInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UIDragInteraction.Dispose(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)
@@ -58879,38 +43636,10 @@ M:UIKit.UIDragInteractionDelegate_Extensions.SessionWillEnd(UIKit.IUIDragInterac
M:UIKit.UIDragInteractionDelegate_Extensions.WillAddItems(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDragItem[],UIKit.UIDragInteraction)
M:UIKit.UIDragInteractionDelegate_Extensions.WillAnimateCancel(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating)
M:UIKit.UIDragInteractionDelegate_Extensions.WillAnimateLift(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragAnimating,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.GetItemsForAddingToSession(UIKit.UIDragInteraction,UIKit.IUIDragSession,CoreGraphics.CGPoint)
-M:UIKit.UIDragInteractionDelegate.GetItemsForBeginningSession(UIKit.UIDragInteraction,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.GetPreviewForCancellingItem(UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview)
-M:UIKit.UIDragInteractionDelegate.GetPreviewForLiftingItem(UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.GetSessionForAddingItems(UIKit.UIDragInteraction,UIKit.IUIDragSession[],CoreGraphics.CGPoint)
-M:UIKit.UIDragInteractionDelegate.PrefersFullSizePreviews(UIKit.UIDragInteraction,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.SessionAllowsMoveOperation(UIKit.UIDragInteraction,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.SessionDidEnd(UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDropOperation)
-M:UIKit.UIDragInteractionDelegate.SessionDidMove(UIKit.UIDragInteraction,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.SessionDidTransferItems(UIKit.UIDragInteraction,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.SessionIsRestrictedToDraggingApplication(UIKit.UIDragInteraction,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.SessionWillBegin(UIKit.UIDragInteraction,UIKit.IUIDragSession)
-M:UIKit.UIDragInteractionDelegate.SessionWillEnd(UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDropOperation)
-M:UIKit.UIDragInteractionDelegate.WillAddItems(UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDragItem[],UIKit.UIDragInteraction)
-M:UIKit.UIDragInteractionDelegate.WillAnimateCancel(UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating)
-M:UIKit.UIDragInteractionDelegate.WillAnimateLift(UIKit.UIDragInteraction,UIKit.IUIDragAnimating,UIKit.IUIDragSession)
-M:UIKit.UIDragItem.#ctor(Foundation.NSItemProvider)
-M:UIKit.UIDragItem.SetNeedsDropPreviewUpdate
-M:UIKit.UIDragPreview.#ctor(UIKit.UIView,UIKit.UIDragPreviewParameters)
-M:UIKit.UIDragPreview.#ctor(UIKit.UIView)
M:UIKit.UIDragPreview.Copy(Foundation.NSZone)
-M:UIKit.UIDragPreview.GetPreview(Foundation.NSUrl,System.String)
-M:UIKit.UIDragPreview.GetPreview(Foundation.NSUrl)
-M:UIKit.UIDragPreviewParameters.#ctor(Foundation.NSValue[])
M:UIKit.UIDragPreviewParameters.Copy(Foundation.NSZone)
-M:UIKit.UIDragPreviewTarget.#ctor(UIKit.UIView,CoreGraphics.CGPoint,CoreGraphics.CGAffineTransform)
-M:UIKit.UIDragPreviewTarget.#ctor(UIKit.UIView,CoreGraphics.CGPoint)
M:UIKit.UIDragPreviewTarget.Copy(Foundation.NSZone)
-M:UIKit.UIDropInteraction.#ctor(UIKit.IUIDropInteractionDelegate)
-M:UIKit.UIDropInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UIDropInteraction.Dispose(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)
@@ -58920,48 +43649,15 @@ M:UIKit.UIDropInteractionDelegate_Extensions.SessionDidEnter(UIKit.IUIDropIntera
M:UIKit.UIDropInteractionDelegate_Extensions.SessionDidExit(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession)
M:UIKit.UIDropInteractionDelegate_Extensions.SessionDidUpdate(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession)
M:UIKit.UIDropInteractionDelegate_Extensions.WillAnimateDrop(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating)
-M:UIKit.UIDropInteractionDelegate.CanHandleSession(UIKit.UIDropInteraction,UIKit.IUIDropSession)
-M:UIKit.UIDropInteractionDelegate.ConcludeDrop(UIKit.UIDropInteraction,UIKit.IUIDropSession)
-M:UIKit.UIDropInteractionDelegate.GetPreviewForDroppingItem(UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview)
-M:UIKit.UIDropInteractionDelegate.PerformDrop(UIKit.UIDropInteraction,UIKit.IUIDropSession)
-M:UIKit.UIDropInteractionDelegate.SessionDidEnd(UIKit.UIDropInteraction,UIKit.IUIDropSession)
-M:UIKit.UIDropInteractionDelegate.SessionDidEnter(UIKit.UIDropInteraction,UIKit.IUIDropSession)
-M:UIKit.UIDropInteractionDelegate.SessionDidExit(UIKit.UIDropInteraction,UIKit.IUIDropSession)
-M:UIKit.UIDropInteractionDelegate.SessionDidUpdate(UIKit.UIDropInteraction,UIKit.IUIDropSession)
-M:UIKit.UIDropInteractionDelegate.WillAnimateDrop(UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating)
-M:UIKit.UIDropProposal.#ctor(UIKit.UIDropOperation)
M:UIKit.UIDropProposal.Copy(Foundation.NSZone)
-M:UIKit.UIDynamicAnimator.#ctor(UIKit.UICollectionViewLayout)
-M:UIKit.UIDynamicAnimator.#ctor(UIKit.UIView)
M:UIKit.UIDynamicAnimator.Add(UIKit.UIDynamicBehavior)
-M:UIKit.UIDynamicAnimator.AddBehavior(UIKit.UIDynamicBehavior)
M:UIKit.UIDynamicAnimator.AddBehaviors(UIKit.UIDynamicBehavior[])
M:UIKit.UIDynamicAnimator.Dispose(System.Boolean)
-M:UIKit.UIDynamicAnimator.GetDynamicItems(CoreGraphics.CGRect)
-M:UIKit.UIDynamicAnimator.GetLayoutAttributesForCell(Foundation.NSIndexPath)
-M:UIKit.UIDynamicAnimator.GetLayoutAttributesForDecorationView(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UIDynamicAnimator.GetLayoutAttributesForSupplementaryView(Foundation.NSString,Foundation.NSIndexPath)
-M:UIKit.UIDynamicAnimator.RemoveAllBehaviors
-M:UIKit.UIDynamicAnimator.RemoveBehavior(UIKit.UIDynamicBehavior)
M:UIKit.UIDynamicAnimator.RemoveBehaviors(UIKit.UIDynamicBehavior[])
-M:UIKit.UIDynamicAnimator.UpdateItemUsingCurrentState(UIKit.IUIDynamicItem)
M:UIKit.UIDynamicAnimatorDelegate_Extensions.DidPause(UIKit.IUIDynamicAnimatorDelegate,UIKit.UIDynamicAnimator)
M:UIKit.UIDynamicAnimatorDelegate_Extensions.WillResume(UIKit.IUIDynamicAnimatorDelegate,UIKit.UIDynamicAnimator)
-M:UIKit.UIDynamicAnimatorDelegate.DidPause(UIKit.UIDynamicAnimator)
-M:UIKit.UIDynamicAnimatorDelegate.WillResume(UIKit.UIDynamicAnimator)
-M:UIKit.UIDynamicBehavior.AddChildBehavior(UIKit.UIDynamicBehavior)
-M:UIKit.UIDynamicBehavior.RemoveChildBehavior(UIKit.UIDynamicBehavior)
-M:UIKit.UIDynamicBehavior.WillMoveToAnimator(UIKit.UIDynamicAnimator)
M:UIKit.UIDynamicItem_Extensions.GetCollisionBoundingPath(UIKit.IUIDynamicItem)
M:UIKit.UIDynamicItem_Extensions.GetCollisionBoundsType(UIKit.IUIDynamicItem)
-M:UIKit.UIDynamicItemBehavior.#ctor(UIKit.IUIDynamicItem[])
-M:UIKit.UIDynamicItemBehavior.AddAngularVelocityForItem(System.Runtime.InteropServices.NFloat,UIKit.IUIDynamicItem)
-M:UIKit.UIDynamicItemBehavior.AddItem(UIKit.IUIDynamicItem)
-M:UIKit.UIDynamicItemBehavior.AddLinearVelocityForItem(CoreGraphics.CGPoint,UIKit.IUIDynamicItem)
-M:UIKit.UIDynamicItemBehavior.GetAngularVelocityForItem(UIKit.IUIDynamicItem)
-M:UIKit.UIDynamicItemBehavior.GetLinearVelocityForItem(UIKit.IUIDynamicItem)
-M:UIKit.UIDynamicItemBehavior.RemoveItem(UIKit.IUIDynamicItem)
-M:UIKit.UIDynamicItemGroup.#ctor(UIKit.IUIDynamicItem[])
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)
@@ -58971,96 +43667,32 @@ M:UIKit.UIEdgeInsets.InsetRect(CoreGraphics.CGRect)
M:UIKit.UIEdgeInsets.op_Equality(UIKit.UIEdgeInsets,UIKit.UIEdgeInsets)
M:UIKit.UIEdgeInsets.op_Inequality(UIKit.UIEdgeInsets,UIKit.UIEdgeInsets)
M:UIKit.UIEdgeInsets.ToString
-M:UIKit.UIEditMenuConfiguration.Create(Foundation.INSCopying,CoreGraphics.CGPoint)
-M:UIKit.UIEditMenuInteraction.#ctor(UIKit.IUIEditMenuInteractionDelegate)
-M:UIKit.UIEditMenuInteraction.DidMoveToView(UIKit.UIView)
-M:UIKit.UIEditMenuInteraction.DismissMenu
M:UIKit.UIEditMenuInteraction.Dispose(System.Boolean)
-M:UIKit.UIEditMenuInteraction.GetLocation(UIKit.UIView)
-M:UIKit.UIEditMenuInteraction.PresentEditMenu(UIKit.UIEditMenuConfiguration)
-M:UIKit.UIEditMenuInteraction.ReloadVisibleMenu
-M:UIKit.UIEditMenuInteraction.UpdateVisibleMenuPosition(System.Boolean)
-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)
M:UIKit.UIEditMenuInteractionDelegate_Extensions.WillPresentMenu(UIKit.IUIEditMenuInteractionDelegate,UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UIEditMenuInteractionDelegate.GetMenu(UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.UIMenuElement[])
-M:UIKit.UIEditMenuInteractionDelegate.GetTargetRect(UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration)
-M:UIKit.UIEditMenuInteractionDelegate.WillDismissMenu(UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UIEditMenuInteractionDelegate.WillPresentMenu(UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UIEvent.GetCoalescedTouches(UIKit.UITouch)
-M:UIKit.UIEvent.GetPredictedTouches(UIKit.UITouch)
M:UIKit.UIEvent.ToString
-M:UIKit.UIEvent.TouchesForGestureRecognizer(UIKit.UIGestureRecognizer)
-M:UIKit.UIEvent.TouchesForView(UIKit.UIView)
-M:UIKit.UIEvent.TouchesForWindow(UIKit.UIWindow)
-M:UIKit.UIEventAttribution.#ctor(System.Byte,Foundation.NSUrl,System.String,System.String)
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.GetFeedbackGenerator(UIKit.UIView)
-M:UIKit.UIFeedbackGenerator.Prepare
-M:UIKit.UIFeedbackGenerator.WillMoveToView(UIKit.UIView)
-M:UIKit.UIFieldBehavior.AddItem(UIKit.IUIDynamicItem)
-M:UIKit.UIFieldBehavior.CreateCustomField(UIKit.UIFieldCustomEvaluator)
-M:UIKit.UIFieldBehavior.CreateDragField
-M:UIKit.UIFieldBehavior.CreateElectricField
-M:UIKit.UIFieldBehavior.CreateLinearGravityField(CoreGraphics.CGVector)
-M:UIKit.UIFieldBehavior.CreateMagneticField
-M:UIKit.UIFieldBehavior.CreateNoiseField(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIFieldBehavior.CreateRadialGravityField(CoreGraphics.CGPoint)
-M:UIKit.UIFieldBehavior.CreateSpringField
-M:UIKit.UIFieldBehavior.CreateTurbulenceField(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIFieldBehavior.CreateVelocityField(CoreGraphics.CGVector)
-M:UIKit.UIFieldBehavior.CreateVortexField
-M:UIKit.UIFieldBehavior.RemoveItem(UIKit.IUIDynamicItem)
-M:UIKit.UIFindInteraction.#ctor(UIKit.IUIFindInteractionDelegate)
-M:UIKit.UIFindInteraction.DidMoveToView(UIKit.UIView)
-M:UIKit.UIFindInteraction.DismissFindNavigator
M:UIKit.UIFindInteraction.Dispose(System.Boolean)
-M:UIKit.UIFindInteraction.FindNext
-M:UIKit.UIFindInteraction.FindPrevious
-M:UIKit.UIFindInteraction.PresentFindNavigatorShowingReplace(System.Boolean)
-M:UIKit.UIFindInteraction.UpdateResultCount
-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.DidBeginFindSession(UIKit.UIFindInteraction,UIKit.UIFindSession)
-M:UIKit.UIFindInteractionDelegate.DidEndFindSession(UIKit.UIFindInteraction,UIKit.UIFindSession)
-M:UIKit.UIFindInteractionDelegate.GetSession(UIKit.UIFindInteraction,UIKit.UIView)
-M:UIKit.UIFindSession.HighlightNextResult(UIKit.UITextStorageDirection)
-M:UIKit.UIFindSession.InvalidateFoundResults
-M:UIKit.UIFindSession.PerformSearch(System.String,UIKit.UITextSearchOptions)
-M:UIKit.UIFindSession.PerformSingleReplacement(System.String,System.String,UIKit.UITextSearchOptions)
-M:UIKit.UIFindSession.ReplaceAllInstances(System.String,System.String,UIKit.UITextSearchOptions)
M:UIKit.UIFloatRange.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:UIKit.UIFloatRange.Equals(System.Object)
M:UIKit.UIFloatRange.Equals(UIKit.UIFloatRange)
M:UIKit.UIFloatRange.GetHashCode
-M:UIKit.UIFocusAnimationCoordinator.AddCoordinatedAnimations(System.Action,System.Action)
M:UIKit.UIFocusAnimationCoordinator.AddCoordinatedAnimationsAsync(System.Action)
-M:UIKit.UIFocusAnimationCoordinator.AddCoordinatedFocusingAnimations(System.Action{UIKit.IUIFocusAnimationContext},System.Action)
M:UIKit.UIFocusAnimationCoordinator.AddCoordinatedFocusingAnimationsAsync(System.Action{UIKit.IUIFocusAnimationContext})
-M:UIKit.UIFocusAnimationCoordinator.AddCoordinatedUnfocusingAnimations(System.Action{UIKit.IUIFocusAnimationContext},System.Action)
M:UIKit.UIFocusAnimationCoordinator.AddCoordinatedUnfocusingAnimationsAsync(System.Action{UIKit.IUIFocusAnimationContext})
-M:UIKit.UIFocusDebugger.CheckFocusability(UIKit.IUIFocusItem)
M:UIKit.UIFocusDebugger.CheckFocusGroupTree(UIKit.IUIFocusEnvironment)
-M:UIKit.UIFocusDebugger.GetFocusGroups(UIKit.IUIFocusEnvironment)
-M:UIKit.UIFocusDebugger.GetPreferredFocusEnvironments(UIKit.IUIFocusEnvironment)
-M:UIKit.UIFocusDebugger.SimulateFocusUpdateRequest(UIKit.IUIFocusEnvironment)
M:UIKit.UIFocusEffect.Copy(Foundation.NSZone)
-M:UIKit.UIFocusEffect.Create
M:UIKit.UIFocusEnvironment_Extensions.GetFocusGroupIdentifier(UIKit.IUIFocusEnvironment)
M:UIKit.UIFocusEnvironment_Extensions.GetPreferredFocusedView(UIKit.IUIFocusEnvironment)
M:UIKit.UIFocusEnvironment_Extensions.GetSoundIdentifier(UIKit.IUIFocusEnvironment,UIKit.UIFocusUpdateContext)
M:UIKit.UIFocusGuide.Dispose(System.Boolean)
-M:UIKit.UIFocusHaloEffect.Create(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat,System.String)
-M:UIKit.UIFocusHaloEffect.Create(CoreGraphics.CGRect)
-M:UIKit.UIFocusHaloEffect.Create(UIKit.UIBezierPath)
M:UIKit.UIFocusHaloEffect.Dispose(System.Boolean)
M:UIKit.UIFocusItem_Extensions.DidHintFocusMovement(UIKit.IUIFocusItem,UIKit.UIFocusMovementHint)
M:UIKit.UIFocusItem_Extensions.GetFocusEffect(UIKit.IUIFocusItem)
@@ -59068,18 +43700,12 @@ M:UIKit.UIFocusItem_Extensions.GetFocusGroupPriority(UIKit.IUIFocusItem)
M:UIKit.UIFocusItem_Extensions.GetFocusItemDeferralMode(UIKit.IUIFocusItem)
M:UIKit.UIFocusItem_Extensions.GetIsTransparentFocusItem(UIKit.IUIFocusItem)
M:UIKit.UIFocusMovementHint.Copy(Foundation.NSZone)
-M:UIKit.UIFocusSystem.Contains(UIKit.IUIFocusEnvironment,UIKit.IUIFocusEnvironment)
-M:UIKit.UIFocusSystem.Create(UIKit.IUIFocusEnvironment)
M:UIKit.UIFocusSystem.Dispose(System.Boolean)
-M:UIKit.UIFocusSystem.RegisterUrl(Foundation.NSUrl,Foundation.NSString)
-M:UIKit.UIFocusSystem.RequestFocusUpdate(UIKit.IUIFocusEnvironment)
-M:UIKit.UIFocusSystem.UpdateFocusIfNeeded
M:UIKit.UIFocusUpdateContext.Dispose(System.Boolean)
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.FontNamesForFamilyName(System.String)
M:UIKit.UIFont.FromDescriptor(UIKit.UIFontDescriptor,System.Runtime.InteropServices.NFloat)
M:UIKit.UIFont.FromName(System.String,System.Runtime.InteropServices.NFloat)
M:UIKit.UIFont.GetHashCode
@@ -59103,27 +43729,13 @@ M:UIKit.UIFont.WithSize(System.Runtime.InteropServices.NFloat)
M:UIKit.UIFontAttributes.#ctor
M:UIKit.UIFontAttributes.#ctor(Foundation.NSDictionary)
M:UIKit.UIFontAttributes.#ctor(UIKit.UIFontFeature[])
-M:UIKit.UIFontDescriptor.#ctor(Foundation.NSDictionary)
M:UIKit.UIFontDescriptor.#ctor(UIKit.UIFontAttributes)
M:UIKit.UIFontDescriptor.Copy(Foundation.NSZone)
-M:UIKit.UIFontDescriptor.CreateWithAttributes(Foundation.NSDictionary)
M:UIKit.UIFontDescriptor.CreateWithAttributes(UIKit.UIFontAttributes)
M:UIKit.UIFontDescriptor.CreateWithDesign(UIKit.UIFontDescriptorSystemDesign)
-M:UIKit.UIFontDescriptor.CreateWithFace(System.String)
-M:UIKit.UIFontDescriptor.CreateWithFamily(System.String)
-M:UIKit.UIFontDescriptor.CreateWithMatrix(CoreGraphics.CGAffineTransform)
-M:UIKit.UIFontDescriptor.CreateWithSize(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIFontDescriptor.CreateWithTraits(UIKit.UIFontDescriptorSymbolicTraits)
M:UIKit.UIFontDescriptor.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIFontDescriptor.FromAttributes(Foundation.NSDictionary)
M:UIKit.UIFontDescriptor.FromAttributes(UIKit.UIFontAttributes)
-M:UIKit.UIFontDescriptor.FromName(System.String,CoreGraphics.CGAffineTransform)
-M:UIKit.UIFontDescriptor.FromName(System.String,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIFontDescriptor.GetMatchingFontDescriptors(Foundation.NSSet)
M:UIKit.UIFontDescriptor.GetMatchingFontDescriptors(UIKit.UIFontDescriptorAttribute[])
-M:UIKit.UIFontDescriptor.GetObject(Foundation.NSString)
-M:UIKit.UIFontDescriptor.GetPreferredDescriptorForTextStyle(Foundation.NSString,UIKit.UITraitCollection)
-M:UIKit.UIFontDescriptor.GetPreferredDescriptorForTextStyle(Foundation.NSString)
M:UIKit.UIFontDescriptor.GetPreferredDescriptorForTextStyle(UIKit.UIFontTextStyle,UIKit.UITraitCollection)
M:UIKit.UIFontDescriptor.GetPreferredDescriptorForTextStyle(UIKit.UIFontTextStyle)
M:UIKit.UIFontFeature.#ctor(CoreText.CTFontFeatureAllTypographicFeatures.Selector)
@@ -59166,58 +43778,24 @@ M:UIKit.UIFontFeature.#ctor(CoreText.CTFontFeatureVerticalPosition.Selector)
M:UIKit.UIFontFeature.#ctor(CoreText.CTFontFeatureVerticalSubstitutionConnection.Selector)
M:UIKit.UIFontFeature.#ctor(System.Int32)
M:UIKit.UIFontFeature.ToString
-M:UIKit.UIFontMetrics.#ctor(System.String)
-M:UIKit.UIFontMetrics.GetMetrics(System.String)
-M:UIKit.UIFontMetrics.GetScaledFont(UIKit.UIFont,System.Runtime.InteropServices.NFloat,UIKit.UITraitCollection)
-M:UIKit.UIFontMetrics.GetScaledFont(UIKit.UIFont,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIFontMetrics.GetScaledFont(UIKit.UIFont,UIKit.UITraitCollection)
-M:UIKit.UIFontMetrics.GetScaledFont(UIKit.UIFont)
-M:UIKit.UIFontMetrics.GetScaledValue(System.Runtime.InteropServices.NFloat,UIKit.UITraitCollection)
-M:UIKit.UIFontMetrics.GetScaledValue(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIFontPickerViewController.#ctor(UIKit.UIFontPickerViewControllerConfiguration)
M:UIKit.UIFontPickerViewController.Dispose(System.Boolean)
M:UIKit.UIFontPickerViewControllerConfiguration.Copy(Foundation.NSZone)
-M:UIKit.UIFontPickerViewControllerConfiguration.FilterPredicate(System.String[])
M:UIKit.UIFontPickerViewControllerDelegate_Extensions.DidCancel(UIKit.IUIFontPickerViewControllerDelegate,UIKit.UIFontPickerViewController)
M:UIKit.UIFontPickerViewControllerDelegate_Extensions.DidPickFont(UIKit.IUIFontPickerViewControllerDelegate,UIKit.UIFontPickerViewController)
-M:UIKit.UIFontPickerViewControllerDelegate.DidCancel(UIKit.UIFontPickerViewController)
-M:UIKit.UIFontPickerViewControllerDelegate.DidPickFont(UIKit.UIFontPickerViewController)
M:UIKit.UIFontTraits.#ctor
M:UIKit.UIFontTraits.#ctor(Foundation.NSDictionary)
M:UIKit.UIFontWeightExtensions.GetWeight(UIKit.UIFontWeight)
-M:UIKit.UIGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIGestureRecognizer.#ctor(ObjCRuntime.Selector,UIKit.UIGestureRecognizer.Token)
M:UIKit.UIGestureRecognizer.#ctor(System.Action)
-M:UIKit.UIGestureRecognizer.AddTarget(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIGestureRecognizer.AddTarget(System.Action)
M:UIKit.UIGestureRecognizer.AddTarget(System.Action{Foundation.NSObject})
-M:UIKit.UIGestureRecognizer.CanBePreventedByGestureRecognizer(UIKit.UIGestureRecognizer)
-M:UIKit.UIGestureRecognizer.CanPreventGestureRecognizer(UIKit.UIGestureRecognizer)
M:UIKit.UIGestureRecognizer.Dispose(System.Boolean)
M:UIKit.UIGestureRecognizer.GetTargets
M:UIKit.UIGestureRecognizer.IgnorePress(UIKit.UIPress,UIKit.UIPressesEvent)
-M:UIKit.UIGestureRecognizer.IgnoreTouch(UIKit.UITouch,UIKit.UIEvent)
-M:UIKit.UIGestureRecognizer.LocationInView(UIKit.UIView)
-M:UIKit.UIGestureRecognizer.LocationOfTouch(System.IntPtr,UIKit.UIView)
M:UIKit.UIGestureRecognizer.ParameterlessDispatch.Activated
M:UIKit.UIGestureRecognizer.ParametrizedDispatch.Activated(UIKit.UIGestureRecognizer)
-M:UIKit.UIGestureRecognizer.PressesBegan(Foundation.NSSet{UIKit.UIPress},UIKit.UIPressesEvent)
-M:UIKit.UIGestureRecognizer.PressesCancelled(Foundation.NSSet{UIKit.UIPress},UIKit.UIPressesEvent)
-M:UIKit.UIGestureRecognizer.PressesChanged(Foundation.NSSet{UIKit.UIPress},UIKit.UIPressesEvent)
-M:UIKit.UIGestureRecognizer.PressesEnded(Foundation.NSSet{UIKit.UIPress},UIKit.UIPressesEvent)
-M:UIKit.UIGestureRecognizer.RemoveTarget(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIGestureRecognizer.RemoveTarget(UIKit.UIGestureRecognizer.Token)
-M:UIKit.UIGestureRecognizer.RequireGestureRecognizerToFail(UIKit.UIGestureRecognizer)
-M:UIKit.UIGestureRecognizer.Reset
-M:UIKit.UIGestureRecognizer.ShouldBeRequiredToFailByGestureRecognizer(UIKit.UIGestureRecognizer)
-M:UIKit.UIGestureRecognizer.ShouldReceive(UIKit.UIEvent)
-M:UIKit.UIGestureRecognizer.ShouldRequireFailureOfGestureRecognizer(UIKit.UIGestureRecognizer)
M:UIKit.UIGestureRecognizer.Token.#ctor
-M:UIKit.UIGestureRecognizer.TouchesBegan(Foundation.NSSet,UIKit.UIEvent)
-M:UIKit.UIGestureRecognizer.TouchesCancelled(Foundation.NSSet,UIKit.UIEvent)
-M:UIKit.UIGestureRecognizer.TouchesEnded(Foundation.NSSet,UIKit.UIEvent)
-M:UIKit.UIGestureRecognizer.TouchesEstimatedPropertiesUpdated(Foundation.NSSet)
-M:UIKit.UIGestureRecognizer.TouchesMoved(Foundation.NSSet,UIKit.UIEvent)
M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldBegin(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer)
M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldBeRequiredToFailBy(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer)
M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldReceiveEvent(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIEvent)
@@ -59225,13 +43803,6 @@ M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldReceivePress(UIKit.IUIGestu
M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldReceiveTouch(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UITouch)
M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldRecognizeSimultaneously(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer)
M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldRequireFailureOf(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer)
-M:UIKit.UIGestureRecognizerDelegate.ShouldBegin(UIKit.UIGestureRecognizer)
-M:UIKit.UIGestureRecognizerDelegate.ShouldBeRequiredToFailBy(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer)
-M:UIKit.UIGestureRecognizerDelegate.ShouldReceiveEvent(UIKit.UIGestureRecognizer,UIKit.UIEvent)
-M:UIKit.UIGestureRecognizerDelegate.ShouldReceivePress(UIKit.UIGestureRecognizer,UIKit.UIPress)
-M:UIKit.UIGestureRecognizerDelegate.ShouldReceiveTouch(UIKit.UIGestureRecognizer,UIKit.UITouch)
-M:UIKit.UIGestureRecognizerDelegate.ShouldRecognizeSimultaneously(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer)
-M:UIKit.UIGestureRecognizerDelegate.ShouldRequireFailureOf(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer)
M:UIKit.UIGraphics.AddPDFContextDestination(System.String,CoreGraphics.CGPoint)
M:UIKit.UIGraphics.BeginImageContext(CoreGraphics.CGSize)
M:UIKit.UIGraphics.BeginImageContextWithOptions(CoreGraphics.CGSize,System.Boolean,System.Runtime.InteropServices.NFloat)
@@ -59253,235 +43824,62 @@ 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(CoreGraphics.CGRect,UIKit.UIGraphicsImageRendererFormat)
-M:UIKit.UIGraphicsImageRenderer.#ctor(CoreGraphics.CGSize,UIKit.UIGraphicsImageRendererFormat)
-M:UIKit.UIGraphicsImageRenderer.#ctor(CoreGraphics.CGSize)
-M:UIKit.UIGraphicsImageRenderer.CreateImage(System.Action{UIKit.UIGraphicsImageRendererContext})
-M:UIKit.UIGraphicsImageRenderer.CreateJpeg(System.Runtime.InteropServices.NFloat,System.Action{UIKit.UIGraphicsImageRendererContext})
-M:UIKit.UIGraphicsImageRenderer.CreatePng(System.Action{UIKit.UIGraphicsImageRendererContext})
-M:UIKit.UIGraphicsImageRendererFormat.GetFormat(UIKit.UITraitCollection)
-M:UIKit.UIGraphicsPdfRenderer.#ctor(CoreGraphics.CGRect,UIKit.UIGraphicsPdfRendererFormat)
-M:UIKit.UIGraphicsPdfRenderer.CreatePdf(System.Action{UIKit.UIGraphicsPdfRendererContext})
-M:UIKit.UIGraphicsPdfRenderer.WritePdf(Foundation.NSUrl,System.Action{UIKit.UIGraphicsPdfRendererContext},Foundation.NSError@)
-M:UIKit.UIGraphicsPdfRendererContext.AddDestination(System.String,CoreGraphics.CGPoint)
-M:UIKit.UIGraphicsPdfRendererContext.BeginPage
-M:UIKit.UIGraphicsPdfRendererContext.BeginPage(CoreGraphics.CGRect,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:UIKit.UIGraphicsPdfRendererContext.SetDestination(System.String,CoreGraphics.CGRect)
-M:UIKit.UIGraphicsPdfRendererContext.SetUrl(Foundation.NSUrl,CoreGraphics.CGRect)
-M:UIKit.UIGraphicsRenderer.#ctor(CoreGraphics.CGRect,UIKit.UIGraphicsRendererFormat)
-M:UIKit.UIGraphicsRenderer.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIGraphicsRenderer.GetContext(UIKit.UIGraphicsRendererFormat)
-M:UIKit.UIGraphicsRenderer.PrepareContext(CoreGraphics.CGContext,UIKit.UIGraphicsRendererContext)
-M:UIKit.UIGraphicsRenderer.Run(System.Action{UIKit.UIGraphicsRendererContext},System.Action{UIKit.UIGraphicsRendererContext},Foundation.NSError@)
-M:UIKit.UIGraphicsRendererContext.ClipToRect(CoreGraphics.CGRect)
-M:UIKit.UIGraphicsRendererContext.FillRect(CoreGraphics.CGRect,CoreGraphics.CGBlendMode)
-M:UIKit.UIGraphicsRendererContext.FillRect(CoreGraphics.CGRect)
-M:UIKit.UIGraphicsRendererContext.StrokeRect(CoreGraphics.CGRect,CoreGraphics.CGBlendMode)
-M:UIKit.UIGraphicsRendererContext.StrokeRect(CoreGraphics.CGRect)
M:UIKit.UIGraphicsRendererFormat.Copy(Foundation.NSZone)
-M:UIKit.UIGravityBehavior.#ctor(UIKit.IUIDynamicItem[])
-M:UIKit.UIGravityBehavior.AddItem(UIKit.IUIDynamicItem)
-M:UIKit.UIGravityBehavior.RemoveItem(UIKit.IUIDynamicItem)
-M:UIKit.UIGravityBehavior.SetAngleAndMagnitude(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
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)
M:UIKit.UIGuidedAccessRestrictionDelegate_Extensions.GetDetailTextForGuidedAccessRestriction(UIKit.IUIGuidedAccessRestrictionDelegate,System.String)
M:UIKit.UIHoverAutomaticEffect.Copy(Foundation.NSZone)
-M:UIKit.UIHoverAutomaticEffect.Create
-M:UIKit.UIHoverGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIHoverGestureRecognizer.#ctor(System.Action)
M:UIKit.UIHoverGestureRecognizer.#ctor(System.Action{UIKit.UIHoverGestureRecognizer})
-M:UIKit.UIHoverGestureRecognizer.GetAzimuthAngle(UIKit.UIView)
-M:UIKit.UIHoverGestureRecognizer.GetAzimuthUnitVector(UIKit.UIView)
M:UIKit.UIHoverHighlightEffect.Copy(Foundation.NSZone)
-M:UIKit.UIHoverHighlightEffect.Create
M:UIKit.UIHoverLiftEffect.Copy(Foundation.NSZone)
-M:UIKit.UIHoverLiftEffect.Create
M:UIKit.UIHoverStyle.Copy(Foundation.NSZone)
-M:UIKit.UIHoverStyle.Create(UIKit.IUIHoverEffect,UIKit.UIShape)
-M:UIKit.UIHoverStyle.Create(UIKit.UIShape)
-M:UIKit.UIHoverStyle.CreateAutomatic
-M:UIKit.UIImage.#ctor(CoreGraphics.CGImage,System.Runtime.InteropServices.NFloat,UIKit.UIImageOrientation)
-M:UIKit.UIImage.#ctor(CoreGraphics.CGImage)
-M:UIKit.UIImage.#ctor(CoreImage.CIImage,System.Runtime.InteropServices.NFloat,UIKit.UIImageOrientation)
-M:UIKit.UIImage.#ctor(CoreImage.CIImage)
-M:UIKit.UIImage.#ctor(Foundation.NSData,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIImage.#ctor(Foundation.NSData)
-M:UIKit.UIImage.#ctor(System.String)
-M:UIKit.UIImage.AccessibilityActivate
-M:UIKit.UIImage.ApplyConfiguration(UIKit.UIImageConfiguration)
-M:UIKit.UIImage.ApplyConfiguration(UIKit.UIImageSymbolConfiguration)
-M:UIKit.UIImage.ApplyTintColor(UIKit.UIColor,UIKit.UIImageRenderingMode)
-M:UIKit.UIImage.ApplyTintColor(UIKit.UIColor)
M:UIKit.UIImage.AsJPEG
M:UIKit.UIImage.AsJPEG(System.Runtime.InteropServices.NFloat)
M:UIKit.UIImage.AsPNG
-M:UIKit.UIImage.CreateAnimatedImage(System.String,System.Double)
-M:UIKit.UIImage.CreateAnimatedImage(System.String,UIKit.UIEdgeInsets,System.Double)
-M:UIKit.UIImage.CreateAnimatedImage(System.String,UIKit.UIEdgeInsets,UIKit.UIImageResizingMode,System.Double)
-M:UIKit.UIImage.CreateAnimatedImage(UIKit.UIImage[],System.Double)
-M:UIKit.UIImage.CreateResizableImage(UIKit.UIEdgeInsets,UIKit.UIImageResizingMode)
-M:UIKit.UIImage.CreateResizableImage(UIKit.UIEdgeInsets)
-M:UIKit.UIImage.Draw(CoreGraphics.CGPoint,CoreGraphics.CGBlendMode,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIImage.Draw(CoreGraphics.CGPoint)
-M:UIKit.UIImage.Draw(CoreGraphics.CGRect,CoreGraphics.CGBlendMode,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIImage.Draw(CoreGraphics.CGRect)
-M:UIKit.UIImage.DrawAsPatternInRect(CoreGraphics.CGRect)
M:UIKit.UIImage.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIImage.FromBundle(System.String,Foundation.NSBundle,System.Double,UIKit.UIImageConfiguration)
-M:UIKit.UIImage.FromBundle(System.String,Foundation.NSBundle,UIKit.UIImageConfiguration)
-M:UIKit.UIImage.FromBundle(System.String,Foundation.NSBundle,UIKit.UITraitCollection)
-M:UIKit.UIImage.FromBundle(System.String)
-M:UIKit.UIImage.FromFile(System.String)
-M:UIKit.UIImage.FromImage(CoreGraphics.CGImage,System.Runtime.InteropServices.NFloat,UIKit.UIImageOrientation)
-M:UIKit.UIImage.FromImage(CoreGraphics.CGImage)
-M:UIKit.UIImage.FromImage(CoreImage.CIImage,System.Runtime.InteropServices.NFloat,UIKit.UIImageOrientation)
-M:UIKit.UIImage.FromImage(CoreImage.CIImage)
M:UIKit.UIImage.FromResource(System.Reflection.Assembly,System.String)
-M:UIKit.UIImage.GetImageByPreparingForDisplay
-M:UIKit.UIImage.GetImageByPreparingThumbnail(CoreGraphics.CGSize)
-M:UIKit.UIImage.GetImageFlippedForRightToLeftLayoutDirection
-M:UIKit.UIImage.GetImageFromBottom(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIImage.GetImageWithHorizontallyFlippedOrientation
-M:UIKit.UIImage.GetImageWithoutBaseline
M:UIKit.UIImage.GetItemProviderVisibilityForTypeIdentifier(System.String)
M:UIKit.UIImage.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
-M:UIKit.UIImage.GetSystemImage(System.String,System.Double,UIKit.UIImageConfiguration)
-M:UIKit.UIImage.GetSystemImage(System.String,UIKit.UIImageConfiguration)
-M:UIKit.UIImage.GetSystemImage(System.String,UIKit.UITraitCollection)
-M:UIKit.UIImage.GetSystemImage(System.String)
-M:UIKit.UIImage.ImageWithAlignmentRectInsets(UIKit.UIEdgeInsets)
-M:UIKit.UIImage.ImageWithRenderingMode(UIKit.UIImageRenderingMode)
M:UIKit.UIImage.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:UIKit.UIImage.LoadDataAsync(System.String,Foundation.NSProgress@)
M:UIKit.UIImage.LoadDataAsync(System.String)
-M:UIKit.UIImage.LoadFromData(Foundation.NSData,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIImage.LoadFromData(Foundation.NSData)
-M:UIKit.UIImage.PrepareForDisplay(System.Action{UIKit.UIImage})
M:UIKit.UIImage.PrepareForDisplayAsync
-M:UIKit.UIImage.PrepareThumbnail(CoreGraphics.CGSize,System.Action{UIKit.UIImage})
M:UIKit.UIImage.PrepareThumbnailAsync(CoreGraphics.CGSize)
M:UIKit.UIImage.SaveToPhotosAlbum(UIKit.UIImage.SaveStatus)
M:UIKit.UIImage.Scale(CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat)
M:UIKit.UIImage.Scale(CoreGraphics.CGSize)
-M:UIKit.UIImage.StretchableImage(System.IntPtr,System.IntPtr)
M:UIKit.UIImageAsset.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIImageAsset.FromConfiguration(UIKit.UIImageConfiguration)
-M:UIKit.UIImageAsset.FromTraitCollection(UIKit.UITraitCollection)
-M:UIKit.UIImageAsset.RegisterImage(UIKit.UIImage,UIKit.UIImageConfiguration)
-M:UIKit.UIImageAsset.RegisterImage(UIKit.UIImage,UIKit.UITraitCollection)
-M:UIKit.UIImageAsset.UnregisterImage(UIKit.UIImageConfiguration)
-M:UIKit.UIImageAsset.UnregisterImageWithTraitCollection(UIKit.UITraitCollection)
M:UIKit.UIImageConfiguration.Copy(Foundation.NSZone)
-M:UIKit.UIImageConfiguration.CreateConfiguration(Foundation.NSLocale)
-M:UIKit.UIImageConfiguration.CreateConfiguration(UIKit.UITraitCollection)
M:UIKit.UIImageConfiguration.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIImageConfiguration.GetConfiguration(Foundation.NSLocale)
-M:UIKit.UIImageConfiguration.GetConfiguration(UIKit.UIImageConfiguration)
-M:UIKit.UIImageConfiguration.GetConfiguration(UIKit.UITraitCollection)
M:UIKit.UIImagePickerController.add_Canceled(System.EventHandler)
M:UIKit.UIImagePickerController.add_FinishedPickingMedia(System.EventHandler{UIKit.UIImagePickerMediaPickedEventArgs})
-M:UIKit.UIImagePickerController.AvailableCaptureModesForCameraDevice(UIKit.UIImagePickerControllerCameraDevice)
-M:UIKit.UIImagePickerController.AvailableMediaTypes(UIKit.UIImagePickerControllerSourceType)
M:UIKit.UIImagePickerController.Dispose(System.Boolean)
-M:UIKit.UIImagePickerController.IsCameraDeviceAvailable(UIKit.UIImagePickerControllerCameraDevice)
-M:UIKit.UIImagePickerController.IsFlashAvailableForCameraDevice(UIKit.UIImagePickerControllerCameraDevice)
-M:UIKit.UIImagePickerController.IsSourceTypeAvailable(UIKit.UIImagePickerControllerSourceType)
M:UIKit.UIImagePickerController.remove_Canceled(System.EventHandler)
M:UIKit.UIImagePickerController.remove_FinishedPickingMedia(System.EventHandler{UIKit.UIImagePickerMediaPickedEventArgs})
-M:UIKit.UIImagePickerController.StartVideoCapture
-M:UIKit.UIImagePickerController.StopVideoCapture
-M:UIKit.UIImagePickerController.TakePicture
M:UIKit.UIImagePickerControllerDelegate_Extensions.Canceled(UIKit.IUIImagePickerControllerDelegate,UIKit.UIImagePickerController)
M:UIKit.UIImagePickerControllerDelegate_Extensions.FinishedPickingMedia(UIKit.IUIImagePickerControllerDelegate,UIKit.UIImagePickerController,Foundation.NSDictionary)
-M:UIKit.UIImagePickerControllerDelegate.Canceled(UIKit.UIImagePickerController)
-M:UIKit.UIImagePickerControllerDelegate.FinishedPickingMedia(UIKit.UIImagePickerController,Foundation.NSDictionary)
M:UIKit.UIImagePickerMediaPickedEventArgs.#ctor(Foundation.NSDictionary)
-M:UIKit.UIImageReader.CreateReader(UIKit.UIImageReaderConfiguration)
-M:UIKit.UIImageReader.GetImage(Foundation.NSData,System.Action{UIKit.UIImage})
-M:UIKit.UIImageReader.GetImage(Foundation.NSData)
-M:UIKit.UIImageReader.GetImage(Foundation.NSUrl,System.Action{UIKit.UIImage})
-M:UIKit.UIImageReader.GetImage(Foundation.NSUrl)
M:UIKit.UIImageReader.GetImageAsync(Foundation.NSData)
M:UIKit.UIImageReader.GetImageAsync(Foundation.NSUrl)
M:UIKit.UIImageReaderConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIImageResizingModeExtensions.ToManaged(System.IntPtr)
M:UIKit.UIImageResizingModeExtensions.ToNative(UIKit.UIImageResizingMode)
-M:UIKit.UIImageSymbolConfiguration.Create(System.Runtime.InteropServices.NFloat,UIKit.UIImageSymbolWeight,UIKit.UIImageSymbolScale)
-M:UIKit.UIImageSymbolConfiguration.Create(System.Runtime.InteropServices.NFloat,UIKit.UIImageSymbolWeight)
-M:UIKit.UIImageSymbolConfiguration.Create(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIImageSymbolConfiguration.Create(UIKit.UIColor)
-M:UIKit.UIImageSymbolConfiguration.Create(UIKit.UIColor[])
-M:UIKit.UIImageSymbolConfiguration.Create(UIKit.UIFont,UIKit.UIImageSymbolScale)
-M:UIKit.UIImageSymbolConfiguration.Create(UIKit.UIFont)
-M:UIKit.UIImageSymbolConfiguration.Create(UIKit.UIFontTextStyle,UIKit.UIImageSymbolScale)
-M:UIKit.UIImageSymbolConfiguration.Create(UIKit.UIFontTextStyle)
-M:UIKit.UIImageSymbolConfiguration.Create(UIKit.UIImageSymbolScale)
-M:UIKit.UIImageSymbolConfiguration.Create(UIKit.UIImageSymbolWeight)
-M:UIKit.UIImageSymbolConfiguration.GetConfigurationPreferringMonochrome
-M:UIKit.UIImageSymbolConfiguration.IsEqualTo(UIKit.UIImageSymbolConfiguration)
-M:UIKit.UIImageView.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIImageView.#ctor(UIKit.UIImage,UIKit.UIImage)
-M:UIKit.UIImageView.#ctor(UIKit.UIImage)
-M:UIKit.UIImageView.AddSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean,System.Action{UIKit.UISymbolEffectCompletionContext})
-M:UIKit.UIImageView.AddSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
-M:UIKit.UIImageView.AddSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions)
-M:UIKit.UIImageView.AddSymbolEffect(Symbols.NSSymbolEffect)
M:UIKit.UIImageView.AddSymbolEffectAsync(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
-M:UIKit.UIImageView.RemoveAllSymbolEffects
-M:UIKit.UIImageView.RemoveAllSymbolEffects(Symbols.NSSymbolEffectOptions,System.Boolean)
-M:UIKit.UIImageView.RemoveAllSymbolEffects(Symbols.NSSymbolEffectOptions)
-M:UIKit.UIImageView.RemoveSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean,System.Action{UIKit.UISymbolEffectCompletionContext})
-M:UIKit.UIImageView.RemoveSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
-M:UIKit.UIImageView.RemoveSymbolEffect(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions)
-M:UIKit.UIImageView.RemoveSymbolEffect(Symbols.NSSymbolEffect)
M:UIKit.UIImageView.RemoveSymbolEffectAsync(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
-M:UIKit.UIImageView.SetSymbolImage(UIKit.UIImage,Symbols.NSSymbolContentTransition,Symbols.NSSymbolEffectOptions,System.Action{UIKit.UISymbolEffectCompletionContext})
-M:UIKit.UIImageView.SetSymbolImage(UIKit.UIImage,Symbols.NSSymbolContentTransition,Symbols.NSSymbolEffectOptions)
-M:UIKit.UIImageView.SetSymbolImage(UIKit.UIImage,Symbols.NSSymbolContentTransition)
M:UIKit.UIImageView.SetSymbolImageAsync(UIKit.UIImage,Symbols.NSSymbolContentTransition,Symbols.NSSymbolEffectOptions)
-M:UIKit.UIImageView.StartAnimating
-M:UIKit.UIImageView.StopAnimating
M:UIKit.UIImageView.UIImageViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIImpactFeedbackGenerator.#ctor(UIKit.UIImpactFeedbackStyle)
-M:UIKit.UIImpactFeedbackGenerator.GetFeedbackGenerator(UIKit.UIImpactFeedbackStyle,UIKit.UIView)
-M:UIKit.UIImpactFeedbackGenerator.GetFeedbackGenerator(UIKit.UIView)
-M:UIKit.UIImpactFeedbackGenerator.ImpactOccurred
-M:UIKit.UIImpactFeedbackGenerator.ImpactOccurred(CoreGraphics.CGPoint)
-M:UIKit.UIImpactFeedbackGenerator.ImpactOccurred(System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint)
-M:UIKit.UIImpactFeedbackGenerator.ImpactOccurred(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIIndirectScribbleInteraction.#ctor(UIKit.IUIIndirectScribbleInteractionDelegate)
-M:UIKit.UIIndirectScribbleInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UIIndirectScribbleInteraction.Dispose(System.Boolean)
-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)
-M:UIKit.UIIndirectScribbleInteractionDelegate.DidFinishWriting(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
-M:UIKit.UIIndirectScribbleInteractionDelegate.FocusElementIfNeeded(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject,CoreGraphics.CGPoint,System.Action{UIKit.IUITextInput})
-M:UIKit.UIIndirectScribbleInteractionDelegate.GetFrameForElement(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
-M:UIKit.UIIndirectScribbleInteractionDelegate.IsElementFocused(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
-M:UIKit.UIIndirectScribbleInteractionDelegate.RequestElements(UIKit.UIIndirectScribbleInteraction,CoreGraphics.CGRect,System.Action{Foundation.NSObject[]})
-M:UIKit.UIIndirectScribbleInteractionDelegate.ShouldDelayFocus(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
-M:UIKit.UIIndirectScribbleInteractionDelegate.WillBeginWriting(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
-M:UIKit.UIInputView.#ctor(CoreGraphics.CGRect,UIKit.UIInputViewStyle)
M:UIKit.UIInputView.EncodeTo(Foundation.NSCoder)
M:UIKit.UIInputView.UIInputViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIInputViewAudioFeedback_Extensions.GetEnableInputClicksWhenVisible(UIKit.IUIInputViewAudioFeedback)
-M:UIKit.UIInputViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UIInputViewController.AdvanceToNextInputMode
-M:UIKit.UIInputViewController.DismissKeyboard
-M:UIKit.UIInputViewController.HandleInputModeList(UIKit.UIView,UIKit.UIEvent)
-M:UIKit.UIInputViewController.RequestSupplementaryLexicon(System.Action{UIKit.UILexicon})
M:UIKit.UIInputViewController.RequestSupplementaryLexiconAsync
-M:UIKit.UIInputViewController.SelectionDidChange(UIKit.IUITextInput)
-M:UIKit.UIInputViewController.SelectionWillChange(UIKit.IUITextInput)
-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(System.String,UIKit.UIInterpolatingMotionEffectType)
M:UIKit.UIInterpolatingMotionEffect.EncodeTo(Foundation.NSCoder)
M:UIKit.UIKey.Copy(Foundation.NSZone)
M:UIKit.UIKey.EncodeTo(Foundation.NSCoder)
@@ -59491,108 +43889,41 @@ M:UIKit.UIKeyboard.AnimationDurationFromNotification(Foundation.NSNotification)
M:UIKit.UIKeyboard.FrameBeginFromNotification(Foundation.NSNotification)
M:UIKit.UIKeyboard.FrameEndFromNotification(Foundation.NSNotification)
M:UIKit.UIKeyboardEventArgs.#ctor(Foundation.NSNotification)
-M:UIKit.UIKeyCommand.Create(Foundation.NSString,UIKit.UIKeyModifierFlags,ObjCRuntime.Selector,Foundation.NSString)
-M:UIKit.UIKeyCommand.Create(Foundation.NSString,UIKit.UIKeyModifierFlags,ObjCRuntime.Selector)
-M:UIKit.UIKeyCommand.Create(System.String,UIKit.UIImage,ObjCRuntime.Selector,System.String,UIKit.UIKeyModifierFlags,Foundation.NSObject,UIKit.UICommandAlternate[])
-M:UIKit.UIKeyCommand.Create(System.String,UIKit.UIImage,ObjCRuntime.Selector,System.String,UIKit.UIKeyModifierFlags,Foundation.NSObject)
M:UIKit.UIKitThreadAccessException.#ctor
-M:UIKit.UILabel.#ctor(CoreGraphics.CGRect)
-M:UIKit.UILabel.DrawText(CoreGraphics.CGRect)
-M:UIKit.UILabel.TextRectForBounds(CoreGraphics.CGRect,System.IntPtr)
M:UIKit.UILabel.UILabelAppearance.#ctor(System.IntPtr)
-M:UIKit.UILargeContentViewerInteraction.#ctor(UIKit.IUILargeContentViewerInteractionDelegate)
-M:UIKit.UILargeContentViewerInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UILargeContentViewerInteraction.Dispose(System.Boolean)
-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)
-M:UIKit.UILargeContentViewerInteractionDelegate.DidEnd(UIKit.UILargeContentViewerInteraction,UIKit.IUILargeContentViewerItem,CoreGraphics.CGPoint)
-M:UIKit.UILargeContentViewerInteractionDelegate.GetItem(UIKit.UILargeContentViewerInteraction,CoreGraphics.CGPoint)
-M:UIKit.UILargeContentViewerInteractionDelegate.GetViewController(UIKit.UILargeContentViewerInteraction)
M:UIKit.UILayoutGuide_UIConstraintBasedLayoutDebugging.GetConstraintsAffectingLayout(UIKit.UILayoutGuide,UIKit.UILayoutConstraintAxis)
M:UIKit.UILayoutGuide_UIConstraintBasedLayoutDebugging.GetHasAmbiguousLayout(UIKit.UILayoutGuide)
M:UIKit.UILayoutGuide.Dispose(System.Boolean)
M:UIKit.UILayoutGuide.EncodeTo(Foundation.NSCoder)
-M:UIKit.UILayoutGuide.GetFrame(UIKit.UIView)
M:UIKit.UILexicon.Copy(Foundation.NSZone)
M:UIKit.UILexiconEntry.Copy(Foundation.NSZone)
M:UIKit.UIListContentConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIListContentConfiguration.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIListContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState)
-M:UIKit.UIListContentConfiguration.MakeContentView
M:UIKit.UIListContentImageProperties.Copy(Foundation.NSZone)
M:UIKit.UIListContentImageProperties.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIListContentImageProperties.GetResolvedStrokeColor(UIKit.UIColor)
-M:UIKit.UIListContentImageProperties.GetResolvedTintColor(UIKit.UIColor)
M:UIKit.UIListContentTextProperties.Copy(Foundation.NSZone)
M:UIKit.UIListContentTextProperties.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIListContentView.#ctor(UIKit.UIListContentConfiguration)
-M:UIKit.UIListContentView.SupportsConfiguration(UIKit.IUIContentConfiguration)
M:UIKit.UIListContentView.UIListContentViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIListSeparatorConfiguration.#ctor(UIKit.UICollectionLayoutListAppearance)
M:UIKit.UIListSeparatorConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIListSeparatorConfiguration.EncodeTo(Foundation.NSCoder)
-M:UIKit.UILocalizedIndexedCollation.CurrentCollation
-M:UIKit.UILocalizedIndexedCollation.GetSectionForObject(Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UILocalizedIndexedCollation.GetSectionForSectionIndexTitle(System.IntPtr)
-M:UIKit.UILocalizedIndexedCollation.SortedArrayFromArraycollationStringSelector(Foundation.NSObject[],ObjCRuntime.Selector)
-M:UIKit.UILocalNotification.#ctor
M:UIKit.UILocalNotification.Copy(Foundation.NSZone)
M:UIKit.UILocalNotification.EncodeTo(Foundation.NSCoder)
-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.UIManagedDocument.AdditionalContent(Foundation.NSUrl,Foundation.NSError@)
-M:UIKit.UIManagedDocument.ConfigurePersistentStoreCoordinator(Foundation.NSUrl,System.String,System.String,Foundation.NSDictionary,Foundation.NSError)
-M:UIKit.UIManagedDocument.GetPersistentStoreType(System.String)
-M:UIKit.UIManagedDocument.ReadAdditionalContent(Foundation.NSUrl,Foundation.NSError@)
-M:UIKit.UIManagedDocument.WriteAdditionalContent(Foundation.NSObject,Foundation.NSUrl,Foundation.NSUrl,Foundation.NSError@)
-M:UIKit.UIMarkupTextPrintFormatter.#ctor(System.String)
-M:UIKit.UIMenu.Create(System.String,UIKit.UIImage,UIKit.UIMenuIdentifier,UIKit.UIMenuOptions,UIKit.UIMenuElement[])
-M:UIKit.UIMenu.Create(System.String,UIKit.UIMenuElement[])
-M:UIKit.UIMenu.Create(UIKit.UIMenuElement[])
-M:UIKit.UIMenu.GetMenuByReplacingChildren(UIKit.UIMenuElement[])
-M:UIKit.UIMenuController.HideMenu
-M:UIKit.UIMenuController.HideMenu(UIKit.UIView)
-M:UIKit.UIMenuController.SetMenuVisible(System.Boolean,System.Boolean)
-M:UIKit.UIMenuController.SetTargetRect(CoreGraphics.CGRect,UIKit.UIView)
-M:UIKit.UIMenuController.ShowMenu(UIKit.UIView,CoreGraphics.CGRect)
-M:UIKit.UIMenuController.Update
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.UIMenuItem.#ctor(System.String,ObjCRuntime.Selector)
M:UIKit.UIMenuLeaf_Extensions.GetSelectedImage(UIKit.IUIMenuLeaf)
M:UIKit.UIMenuLeaf_Extensions.SetSelectedImage(UIKit.IUIMenuLeaf,UIKit.UIImage)
-M:UIKit.UIMenuSystem.SetNeedsRebuild
-M:UIKit.UIMenuSystem.SetNeedsRevalidate
-M:UIKit.UIMotionEffect.ComputeKeyPathsAndRelativeValues(UIKit.UIOffset)
M:UIKit.UIMotionEffect.Copy(Foundation.NSZone)
M:UIKit.UIMotionEffect.EncodeTo(Foundation.NSCoder)
-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)
-M:UIKit.UIMutableTraits.GetValue(UIKit.IUICGFloatTraitDefinition)
-M:UIKit.UIMutableTraits.GetValue(UIKit.IUINSIntegerTraitDefinition)
-M:UIKit.UIMutableTraits.SetObject(Foundation.NSObject,UIKit.IUIObjectTraitDefinition)
-M:UIKit.UIMutableTraits.SetValue(System.IntPtr,UIKit.IUINSIntegerTraitDefinition)
-M:UIKit.UIMutableTraits.SetValue(System.Runtime.InteropServices.NFloat,UIKit.IUICGFloatTraitDefinition)
-M:UIKit.UIMutableUserNotificationCategory.SetActions(UIKit.UIUserNotificationAction[],UIKit.UIUserNotificationActionContext)
-M:UIKit.UINavigationBar.#ctor(CoreGraphics.CGRect)
M:UIKit.UINavigationBar.Dispose(System.Boolean)
M:UIKit.UINavigationBar.EncodeTo(Foundation.NSCoder)
-M:UIKit.UINavigationBar.GetBackgroundImage(UIKit.UIBarMetrics)
-M:UIKit.UINavigationBar.GetBackgroundImage(UIKit.UIBarPosition,UIKit.UIBarMetrics)
-M:UIKit.UINavigationBar.GetTitleVerticalPositionAdjustment(UIKit.UIBarMetrics)
-M:UIKit.UINavigationBar.PopNavigationItem(System.Boolean)
-M:UIKit.UINavigationBar.PushNavigationItem(UIKit.UINavigationItem,System.Boolean)
-M:UIKit.UINavigationBar.SetBackgroundImage(UIKit.UIImage,UIKit.UIBarMetrics)
-M:UIKit.UINavigationBar.SetBackgroundImage(UIKit.UIImage,UIKit.UIBarPosition,UIKit.UIBarMetrics)
-M:UIKit.UINavigationBar.SetItems(UIKit.UINavigationItem[],System.Boolean)
-M:UIKit.UINavigationBar.SetTitleVerticalPositionAdjustment(System.Runtime.InteropServices.NFloat,UIKit.UIBarMetrics)
M:UIKit.UINavigationBar.UINavigationBarAppearance.#ctor(System.IntPtr)
M:UIKit.UINavigationBar.UINavigationBarAppearance.GetBackgroundImage(UIKit.UIBarMetrics)
M:UIKit.UINavigationBar.UINavigationBarAppearance.GetBackgroundImage(UIKit.UIBarPosition,UIKit.UIBarMetrics)
@@ -59602,96 +43933,36 @@ M:UIKit.UINavigationBar.UINavigationBarAppearance.SetBackgroundImage(UIKit.UIIma
M:UIKit.UINavigationBar.UINavigationBarAppearance.SetBackgroundImage(UIKit.UIImage,UIKit.UIBarPosition,UIKit.UIBarMetrics)
M:UIKit.UINavigationBar.UINavigationBarAppearance.SetTitleTextAttributes(UIKit.UITextAttributes)
M:UIKit.UINavigationBar.UINavigationBarAppearance.SetTitleVerticalPositionAdjustment(System.Runtime.InteropServices.NFloat,UIKit.UIBarMetrics)
-M:UIKit.UINavigationBarAppearance.#ctor(UIKit.UIBarAppearance)
-M:UIKit.UINavigationBarAppearance.#ctor(UIKit.UIUserInterfaceIdiom)
-M:UIKit.UINavigationBarAppearance.SetBackIndicatorImage(UIKit.UIImage,UIKit.UIImage)
M:UIKit.UINavigationBarDelegate_Extensions.DidPopItem(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar,UIKit.UINavigationItem)
M:UIKit.UINavigationBarDelegate_Extensions.DidPushItem(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar,UIKit.UINavigationItem)
M:UIKit.UINavigationBarDelegate_Extensions.GetNSToolbarSection(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar)
M:UIKit.UINavigationBarDelegate_Extensions.ShouldPopItem(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar,UIKit.UINavigationItem)
M:UIKit.UINavigationBarDelegate_Extensions.ShouldPushItem(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar,UIKit.UINavigationItem)
-M:UIKit.UINavigationBarDelegate.DidPopItem(UIKit.UINavigationBar,UIKit.UINavigationItem)
-M:UIKit.UINavigationBarDelegate.DidPushItem(UIKit.UINavigationBar,UIKit.UINavigationItem)
-M:UIKit.UINavigationBarDelegate.GetNSToolbarSection(UIKit.UINavigationBar)
-M:UIKit.UINavigationBarDelegate.ShouldPopItem(UIKit.UINavigationBar,UIKit.UINavigationItem)
-M:UIKit.UINavigationBarDelegate.ShouldPushItem(UIKit.UINavigationBar,UIKit.UINavigationItem)
-M:UIKit.UINavigationController.#ctor(System.String,Foundation.NSBundle)
M:UIKit.UINavigationController.#ctor(System.Type,System.Type)
-M:UIKit.UINavigationController.#ctor(UIKit.UIViewController)
M:UIKit.UINavigationController.Dispose(System.Boolean)
-M:UIKit.UINavigationController.PopToRootViewController(System.Boolean)
-M:UIKit.UINavigationController.PopToViewController(UIKit.UIViewController,System.Boolean)
-M:UIKit.UINavigationController.PopViewController(System.Boolean)
-M:UIKit.UINavigationController.PushViewController(UIKit.UIViewController,System.Boolean)
-M:UIKit.UINavigationController.SetNavigationBarHidden(System.Boolean,System.Boolean)
-M:UIKit.UINavigationController.SetToolbarHidden(System.Boolean,System.Boolean)
-M:UIKit.UINavigationController.SetViewControllers(UIKit.UIViewController[],System.Boolean)
-M:UIKit.UINavigationController.ShowViewController(UIKit.UIViewController,Foundation.NSObject)
M:UIKit.UINavigationControllerDelegate_Extensions.DidShowViewController(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController,UIKit.UIViewController,System.Boolean)
M:UIKit.UINavigationControllerDelegate_Extensions.GetAnimationControllerForOperation(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)
M:UIKit.UINavigationControllerDelegate_Extensions.GetInteractionControllerForAnimationController(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)
M:UIKit.UINavigationControllerDelegate_Extensions.GetPreferredInterfaceOrientation(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController)
M:UIKit.UINavigationControllerDelegate_Extensions.SupportedInterfaceOrientations(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController)
M:UIKit.UINavigationControllerDelegate_Extensions.WillShowViewController(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController,UIKit.UIViewController,System.Boolean)
-M:UIKit.UINavigationControllerDelegate.DidShowViewController(UIKit.UINavigationController,UIKit.UIViewController,System.Boolean)
-M:UIKit.UINavigationControllerDelegate.GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UINavigationControllerDelegate.GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning)
-M:UIKit.UINavigationControllerDelegate.GetPreferredInterfaceOrientation(UIKit.UINavigationController)
-M:UIKit.UINavigationControllerDelegate.SupportedInterfaceOrientations(UIKit.UINavigationController)
-M:UIKit.UINavigationControllerDelegate.WillShowViewController(UIKit.UINavigationController,UIKit.UIViewController,System.Boolean)
-M:UIKit.UINavigationItem.#ctor(System.String)
M:UIKit.UINavigationItem.Dispose(System.Boolean)
M:UIKit.UINavigationItem.EncodeTo(Foundation.NSCoder)
-M:UIKit.UINavigationItem.SetHidesBackButton(System.Boolean,System.Boolean)
-M:UIKit.UINavigationItem.SetLeftBarButtonItem(UIKit.UIBarButtonItem,System.Boolean)
-M:UIKit.UINavigationItem.SetLeftBarButtonItems(UIKit.UIBarButtonItem[],System.Boolean)
-M:UIKit.UINavigationItem.SetRightBarButtonItem(UIKit.UIBarButtonItem,System.Boolean)
-M:UIKit.UINavigationItem.SetRightBarButtonItems(UIKit.UIBarButtonItem[],System.Boolean)
M:UIKit.UINavigationItemRenameDelegate_Extensions.ShouldBeginRenaming(UIKit.IUINavigationItemRenameDelegate,UIKit.UINavigationItem)
M:UIKit.UINavigationItemRenameDelegate_Extensions.ShouldEndRenaming(UIKit.IUINavigationItemRenameDelegate,UIKit.UINavigationItem,System.String)
M:UIKit.UINavigationItemRenameDelegate_Extensions.WillBeginRenaming(UIKit.IUINavigationItemRenameDelegate,UIKit.UINavigationItem,System.String,Foundation.NSRange)
-M:UIKit.UINavigationItemRenameDelegate.DidEndRenaming(UIKit.UINavigationItem,System.String)
-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.UINib.FromData(Foundation.NSData,Foundation.NSBundle)
-M:UIKit.UINib.FromName(System.String,Foundation.NSBundle)
-M:UIKit.UINib.Instantiate(Foundation.NSObject,Foundation.NSDictionary)
-M:UIKit.UINotificationFeedbackGenerator.GetFeedbackGenerator(UIKit.UIView)
-M:UIKit.UINotificationFeedbackGenerator.NotificationOccurred(UIKit.UINotificationFeedbackType,CoreGraphics.CGPoint)
-M:UIKit.UINotificationFeedbackGenerator.NotificationOccurred(UIKit.UINotificationFeedbackType)
M:UIKit.UIOffset.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:UIKit.UIOffset.Equals(System.Object)
M:UIKit.UIOffset.GetHashCode
M:UIKit.UIOffset.op_Equality(UIKit.UIOffset,UIKit.UIOffset)
M:UIKit.UIOffset.op_Inequality(UIKit.UIOffset,UIKit.UIOffset)
-M:UIKit.UIPageControl.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIPageControl.GetCurrentPageIndicatorImage(System.IntPtr)
-M:UIKit.UIPageControl.GetIndicatorImage(System.IntPtr)
-M:UIKit.UIPageControl.SetCurrentPageIndicatorImage(UIKit.UIImage,System.IntPtr)
-M:UIKit.UIPageControl.SetIndicatorImage(UIKit.UIImage,System.IntPtr)
-M:UIKit.UIPageControl.SizeForNumberOfPages(System.IntPtr)
M:UIKit.UIPageControl.UIPageControlAppearance.#ctor(System.IntPtr)
-M:UIKit.UIPageControl.UpdateCurrentPageDisplay
M:UIKit.UIPageControlProgress.Dispose(System.Boolean)
M:UIKit.UIPageControlProgressDelegate_Extensions.GetInitialProgressForPage(UIKit.IUIPageControlProgressDelegate,UIKit.UIPageControlProgress,System.IntPtr)
M:UIKit.UIPageControlProgressDelegate_Extensions.VisibilityDidChange(UIKit.IUIPageControlProgressDelegate,UIKit.UIPageControlProgress)
-M:UIKit.UIPageControlProgressDelegate.GetInitialProgressForPage(UIKit.UIPageControlProgress,System.IntPtr)
-M:UIKit.UIPageControlProgressDelegate.VisibilityDidChange(UIKit.UIPageControlProgress)
-M:UIKit.UIPageControlTimerProgress.#ctor(System.Double)
M:UIKit.UIPageControlTimerProgress.Dispose(System.Boolean)
-M:UIKit.UIPageControlTimerProgress.GetDuration(System.IntPtr)
-M:UIKit.UIPageControlTimerProgress.PauseTimer
-M:UIKit.UIPageControlTimerProgress.ResumeTimer
-M:UIKit.UIPageControlTimerProgress.SetDuration(System.Double,System.IntPtr)
M:UIKit.UIPageControlTimerProgressDelegate_Extensions.PageControlTimerProgressDidChange(UIKit.IUIPageControlTimerProgressDelegate,UIKit.UIPageControlTimerProgress)
M:UIKit.UIPageControlTimerProgressDelegate_Extensions.ShouldAdvanceToPage(UIKit.IUIPageControlTimerProgressDelegate,UIKit.UIPageControlTimerProgress,System.IntPtr)
-M:UIKit.UIPageControlTimerProgressDelegate.GetInitialProgressForPage(UIKit.UIPageControlProgress,System.IntPtr)
-M:UIKit.UIPageControlTimerProgressDelegate.PageControlTimerProgressDidChange(UIKit.UIPageControlTimerProgress)
-M:UIKit.UIPageControlTimerProgressDelegate.ShouldAdvanceToPage(UIKit.UIPageControlTimerProgress,System.IntPtr)
-M:UIKit.UIPageControlTimerProgressDelegate.VisibilityDidChange(UIKit.UIPageControlProgress)
-M:UIKit.UIPageViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UIPageViewController.#ctor(UIKit.UIPageViewControllerTransitionStyle,UIKit.UIPageViewControllerNavigationOrientation,Foundation.NSDictionary)
M:UIKit.UIPageViewController.#ctor(UIKit.UIPageViewControllerTransitionStyle,UIKit.UIPageViewControllerNavigationOrientation,UIKit.UIPageViewControllerSpineLocation,System.Single)
M:UIKit.UIPageViewController.#ctor(UIKit.UIPageViewControllerTransitionStyle,UIKit.UIPageViewControllerNavigationOrientation,UIKit.UIPageViewControllerSpineLocation)
M:UIKit.UIPageViewController.#ctor(UIKit.UIPageViewControllerTransitionStyle,UIKit.UIPageViewControllerNavigationOrientation)
@@ -59701,198 +43972,78 @@ M:UIKit.UIPageViewController.Dispose(System.Boolean)
M:UIKit.UIPageViewController.EncodeTo(Foundation.NSCoder)
M:UIKit.UIPageViewController.remove_DidFinishAnimating(System.EventHandler{UIKit.UIPageViewFinishedAnimationEventArgs})
M:UIKit.UIPageViewController.remove_WillTransition(System.EventHandler{UIKit.UIPageViewControllerTransitionEventArgs})
-M:UIKit.UIPageViewController.SetViewControllers(UIKit.UIViewController[],UIKit.UIPageViewControllerNavigationDirection,System.Boolean,UIKit.UICompletionHandler)
M:UIKit.UIPageViewController.SetViewControllersAsync(UIKit.UIViewController[],UIKit.UIPageViewControllerNavigationDirection,System.Boolean)
M:UIKit.UIPageViewControllerDataSource_Extensions.GetPresentationCount(UIKit.IUIPageViewControllerDataSource,UIKit.UIPageViewController)
M:UIKit.UIPageViewControllerDataSource_Extensions.GetPresentationIndex(UIKit.IUIPageViewControllerDataSource,UIKit.UIPageViewController)
-M:UIKit.UIPageViewControllerDataSource.GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)
-M:UIKit.UIPageViewControllerDataSource.GetPresentationCount(UIKit.UIPageViewController)
-M:UIKit.UIPageViewControllerDataSource.GetPresentationIndex(UIKit.UIPageViewController)
-M:UIKit.UIPageViewControllerDataSource.GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)
M:UIKit.UIPageViewControllerDelegate_Extensions.DidFinishAnimating(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController,System.Boolean,UIKit.UIViewController[],System.Boolean)
M:UIKit.UIPageViewControllerDelegate_Extensions.GetPreferredInterfaceOrientationForPresentation(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController)
M:UIKit.UIPageViewControllerDelegate_Extensions.GetSpineLocation(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController,UIKit.UIInterfaceOrientation)
M:UIKit.UIPageViewControllerDelegate_Extensions.SupportedInterfaceOrientations(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController)
M:UIKit.UIPageViewControllerDelegate_Extensions.WillTransition(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController,UIKit.UIViewController[])
-M:UIKit.UIPageViewControllerDelegate.DidFinishAnimating(UIKit.UIPageViewController,System.Boolean,UIKit.UIViewController[],System.Boolean)
-M:UIKit.UIPageViewControllerDelegate.GetPreferredInterfaceOrientationForPresentation(UIKit.UIPageViewController)
-M:UIKit.UIPageViewControllerDelegate.GetSpineLocation(UIKit.UIPageViewController,UIKit.UIInterfaceOrientation)
-M:UIKit.UIPageViewControllerDelegate.SupportedInterfaceOrientations(UIKit.UIPageViewController)
-M:UIKit.UIPageViewControllerDelegate.WillTransition(UIKit.UIPageViewController,UIKit.UIViewController[])
M:UIKit.UIPageViewControllerTransitionEventArgs.#ctor(UIKit.UIViewController[])
M:UIKit.UIPageViewFinishedAnimationEventArgs.#ctor(System.Boolean,UIKit.UIViewController[],System.Boolean)
-M:UIKit.UIPanGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIPanGestureRecognizer.#ctor(System.Action)
M:UIKit.UIPanGestureRecognizer.#ctor(System.Action{UIKit.UIPanGestureRecognizer})
-M:UIKit.UIPanGestureRecognizer.SetTranslation(CoreGraphics.CGPoint,UIKit.UIView)
-M:UIKit.UIPanGestureRecognizer.TranslationInView(UIKit.UIView)
-M:UIKit.UIPanGestureRecognizer.VelocityInView(UIKit.UIView)
-M:UIKit.UIPasteboard.AddItems(Foundation.NSDictionary[])
-M:UIKit.UIPasteboard.Contains(System.String[],Foundation.NSIndexSet)
-M:UIKit.UIPasteboard.Contains(System.String[])
-M:UIKit.UIPasteboard.DataForPasteboardType(System.String)
-M:UIKit.UIPasteboard.DetectPatterns(Foundation.NSSet{Foundation.NSString},Foundation.NSIndexSet,System.Action{Foundation.NSSet{Foundation.NSString}[],Foundation.NSError})
-M:UIKit.UIPasteboard.DetectPatterns(Foundation.NSSet{Foundation.NSString},System.Action{Foundation.NSSet{Foundation.NSString},Foundation.NSError})
M:UIKit.UIPasteboard.DetectPatternsAsync(Foundation.NSSet{Foundation.NSString},Foundation.NSIndexSet)
M:UIKit.UIPasteboard.DetectPatternsAsync(Foundation.NSSet{Foundation.NSString})
-M:UIKit.UIPasteboard.DetectValues(Foundation.NSSet{Foundation.NSString},Foundation.NSIndexSet,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}[],Foundation.NSError})
-M:UIKit.UIPasteboard.DetectValues(Foundation.NSSet{Foundation.NSString},System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError})
M:UIKit.UIPasteboard.DetectValuesAsync(Foundation.NSSet{Foundation.NSString},Foundation.NSIndexSet)
M:UIKit.UIPasteboard.DetectValuesAsync(Foundation.NSSet{Foundation.NSString})
-M:UIKit.UIPasteboard.FromName(System.String,System.Boolean)
-M:UIKit.UIPasteboard.GetDataForPasteboardType(System.String,Foundation.NSIndexSet)
-M:UIKit.UIPasteboard.GetPasteBoardTypes(Foundation.NSIndexSet)
-M:UIKit.UIPasteboard.GetUnique
-M:UIKit.UIPasteboard.GetValue(System.String)
-M:UIKit.UIPasteboard.GetValuesForPasteboardType(System.String,Foundation.NSIndexSet)
-M:UIKit.UIPasteboard.ItemSetWithPasteboardTypes(System.String[])
-M:UIKit.UIPasteboard.Remove(System.String)
-M:UIKit.UIPasteboard.SetData(Foundation.NSData,System.String)
-M:UIKit.UIPasteboard.SetItemProviders(Foundation.NSItemProvider[],System.Boolean,Foundation.NSDate)
-M:UIKit.UIPasteboard.SetItems(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}[],Foundation.NSDictionary)
M:UIKit.UIPasteboard.SetItems(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}[],UIKit.UIPasteboardOptions)
-M:UIKit.UIPasteboard.SetObjects(Foundation.INSItemProviderWriting[],System.Boolean,Foundation.NSDate)
-M:UIKit.UIPasteboard.SetObjects(Foundation.INSItemProviderWriting[])
-M:UIKit.UIPasteboard.SetValue(Foundation.NSObject,System.String)
M:UIKit.UIPasteboardChangeEventArgs.#ctor(Foundation.NSNotification)
M:UIKit.UIPasteboardOptions.#ctor
M:UIKit.UIPasteboardOptions.#ctor(Foundation.NSDictionary)
-M:UIKit.UIPasteConfiguration.#ctor(ObjCRuntime.Class)
-M:UIKit.UIPasteConfiguration.#ctor(System.String[])
M:UIKit.UIPasteConfiguration.#ctor(System.Type)
-M:UIKit.UIPasteConfiguration.AddAcceptableTypeIdentifiers(System.String[])
-M:UIKit.UIPasteConfiguration.AddTypeIdentifiers(ObjCRuntime.Class)
M:UIKit.UIPasteConfiguration.AddTypeIdentifiers(System.Type)
M:UIKit.UIPasteConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIPasteConfiguration.EncodeTo(Foundation.NSCoder)
M:UIKit.UIPasteConfigurationSupporting_Extensions.CanPaste(UIKit.IUIPasteConfigurationSupporting,Foundation.NSItemProvider[])
M:UIKit.UIPasteConfigurationSupporting_Extensions.Paste(UIKit.IUIPasteConfigurationSupporting,Foundation.NSItemProvider[])
-M:UIKit.UIPasteControl.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIPasteControl.#ctor(UIKit.UIPasteControlConfiguration)
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(UIKit.IUIPencilInteractionDelegate)
-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.CancelInteractiveTransition
-M:UIKit.UIPercentDrivenInteractiveTransition.FinishInteractiveTransition
-M:UIKit.UIPercentDrivenInteractiveTransition.PauseInteractiveTransition
-M:UIKit.UIPercentDrivenInteractiveTransition.StartInteractiveTransition(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.UIPercentDrivenInteractiveTransition.UpdateInteractiveTransition(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIPickerView.#ctor(CoreGraphics.CGRect)
M:UIKit.UIPickerView.Dispose(System.Boolean)
-M:UIKit.UIPickerView.GetCell(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UIPickerView.ReloadAllComponents
-M:UIKit.UIPickerView.ReloadComponent(System.IntPtr)
-M:UIKit.UIPickerView.RowsInComponent(System.IntPtr)
-M:UIKit.UIPickerView.RowsInSection(UIKit.UITableView,System.IntPtr)
-M:UIKit.UIPickerView.RowSizeForComponent(System.IntPtr)
-M:UIKit.UIPickerView.Select(System.IntPtr,System.IntPtr,System.Boolean)
-M:UIKit.UIPickerView.SelectedRowInComponent(System.IntPtr)
M:UIKit.UIPickerView.UIPickerViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIPickerView.ViewFor(System.IntPtr,System.IntPtr)
M:UIKit.UIPickerViewAccessibilityDelegate_Extensions.GetAccessibilityAttributedHint(UIKit.IUIPickerViewAccessibilityDelegate,UIKit.UIPickerView,System.IntPtr)
M:UIKit.UIPickerViewAccessibilityDelegate_Extensions.GetAccessibilityAttributedLabel(UIKit.IUIPickerViewAccessibilityDelegate,UIKit.UIPickerView,System.IntPtr)
M:UIKit.UIPickerViewAccessibilityDelegate_Extensions.GetAccessibilityAttributedUserInputLabels(UIKit.IUIPickerViewAccessibilityDelegate,UIKit.UIPickerView,System.IntPtr)
M:UIKit.UIPickerViewAccessibilityDelegate_Extensions.GetAccessibilityHint(UIKit.IUIPickerViewAccessibilityDelegate,UIKit.UIPickerView,System.IntPtr)
M:UIKit.UIPickerViewAccessibilityDelegate_Extensions.GetAccessibilityLabel(UIKit.IUIPickerViewAccessibilityDelegate,UIKit.UIPickerView,System.IntPtr)
M:UIKit.UIPickerViewAccessibilityDelegate_Extensions.GetAccessibilityUserInputLabels(UIKit.IUIPickerViewAccessibilityDelegate,UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewAccessibilityDelegate.GetAccessibilityAttributedHint(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewAccessibilityDelegate.GetAccessibilityAttributedLabel(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewAccessibilityDelegate.GetAccessibilityAttributedUserInputLabels(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewAccessibilityDelegate.GetAccessibilityHint(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewAccessibilityDelegate.GetAccessibilityLabel(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewAccessibilityDelegate.GetAccessibilityUserInputLabels(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewDataSource.GetComponentCount(UIKit.UIPickerView)
-M:UIKit.UIPickerViewDataSource.GetRowsInComponent(UIKit.UIPickerView,System.IntPtr)
M:UIKit.UIPickerViewDelegate_Extensions.GetAttributedTitle(UIKit.IUIPickerViewDelegate,UIKit.UIPickerView,System.IntPtr,System.IntPtr)
M:UIKit.UIPickerViewDelegate_Extensions.GetComponentWidth(UIKit.IUIPickerViewDelegate,UIKit.UIPickerView,System.IntPtr)
M:UIKit.UIPickerViewDelegate_Extensions.GetRowHeight(UIKit.IUIPickerViewDelegate,UIKit.UIPickerView,System.IntPtr)
M:UIKit.UIPickerViewDelegate_Extensions.GetTitle(UIKit.IUIPickerViewDelegate,UIKit.UIPickerView,System.IntPtr,System.IntPtr)
M:UIKit.UIPickerViewDelegate_Extensions.GetView(UIKit.IUIPickerViewDelegate,UIKit.UIPickerView,System.IntPtr,System.IntPtr,UIKit.UIView)
M:UIKit.UIPickerViewDelegate_Extensions.Selected(UIKit.IUIPickerViewDelegate,UIKit.UIPickerView,System.IntPtr,System.IntPtr)
-M:UIKit.UIPickerViewDelegate.GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)
-M:UIKit.UIPickerViewDelegate.GetComponentWidth(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewDelegate.GetRowHeight(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewDelegate.GetTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)
-M:UIKit.UIPickerViewDelegate.GetView(UIKit.UIPickerView,System.IntPtr,System.IntPtr,UIKit.UIView)
-M:UIKit.UIPickerViewDelegate.Selected(UIKit.UIPickerView,System.IntPtr,System.IntPtr)
-M:UIKit.UIPickerViewModel.GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)
-M:UIKit.UIPickerViewModel.GetComponentCount(UIKit.UIPickerView)
-M:UIKit.UIPickerViewModel.GetComponentWidth(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewModel.GetRowHeight(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewModel.GetRowsInComponent(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.UIPickerViewModel.GetTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)
-M:UIKit.UIPickerViewModel.GetView(UIKit.UIPickerView,System.IntPtr,System.IntPtr,UIKit.UIView)
-M:UIKit.UIPickerViewModel.Selected(UIKit.UIPickerView,System.IntPtr,System.IntPtr)
-M:UIKit.UIPinchGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIPinchGestureRecognizer.#ctor(System.Action)
M:UIKit.UIPinchGestureRecognizer.#ctor(System.Action{UIKit.UIPinchGestureRecognizer})
M:UIKit.UIPointerAccessory.Copy(Foundation.NSZone)
-M:UIKit.UIPointerAccessory.Create(UIKit.UIPointerShape,UIKit.UIPointerAccessoryPosition)
-M:UIKit.UIPointerAccessory.CreateArrow(UIKit.UIPointerAccessoryPosition)
M:UIKit.UIPointerAccessoryPosition.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:UIKit.UIPointerEffect.Copy(Foundation.NSZone)
-M:UIKit.UIPointerEffect.Create(UIKit.UITargetedPreview)
-M:UIKit.UIPointerInteraction.#ctor(UIKit.IUIPointerInteractionDelegate)
-M:UIKit.UIPointerInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UIPointerInteraction.Dispose(System.Boolean)
-M:UIKit.UIPointerInteraction.Invalidate
-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)
M:UIKit.UIPointerInteractionDelegate_Extensions.WillExitRegion(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegion,UIKit.IUIPointerInteractionAnimating)
-M:UIKit.UIPointerInteractionDelegate.GetRegionForRequest(UIKit.UIPointerInteraction,UIKit.UIPointerRegionRequest,UIKit.UIPointerRegion)
-M:UIKit.UIPointerInteractionDelegate.GetStyleForRegion(UIKit.UIPointerInteraction,UIKit.UIPointerRegion)
-M:UIKit.UIPointerInteractionDelegate.WillEnterRegion(UIKit.UIPointerInteraction,UIKit.UIPointerRegion,UIKit.IUIPointerInteractionAnimating)
-M:UIKit.UIPointerInteractionDelegate.WillExitRegion(UIKit.UIPointerInteraction,UIKit.UIPointerRegion,UIKit.IUIPointerInteractionAnimating)
M:UIKit.UIPointerLockStateDidChangeEventArgs.#ctor(Foundation.NSNotification)
M:UIKit.UIPointerRegion.Copy(Foundation.NSZone)
-M:UIKit.UIPointerRegion.Create(CoreGraphics.CGRect,Foundation.NSObject)
M:UIKit.UIPointerShape.Copy(Foundation.NSZone)
-M:UIKit.UIPointerShape.Create(UIKit.UIBezierPath)
-M:UIKit.UIPointerShape.CreateBeam(System.Runtime.InteropServices.NFloat,UIKit.UIAxis)
-M:UIKit.UIPointerShape.CreateRounded(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIPointerShape.CreateRounded(CoreGraphics.CGRect)
M:UIKit.UIPointerStyle.Copy(Foundation.NSZone)
-M:UIKit.UIPointerStyle.Create(UIKit.UIPointerEffect,UIKit.UIPointerShape)
-M:UIKit.UIPointerStyle.Create(UIKit.UIPointerShape,UIKit.UIAxis)
-M:UIKit.UIPointerStyle.CreateHiddenPointerStyle
-M:UIKit.UIPointerStyle.CreateSystemPointerStyle
-M:UIKit.UIPopoverBackgroundView.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIPopoverBackgroundView.GetArrowBase
-M:UIKit.UIPopoverBackgroundView.GetArrowHeight
-M:UIKit.UIPopoverBackgroundView.GetContentViewInsets
M:UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIPopoverController.#ctor(UIKit.UIViewController)
M:UIKit.UIPopoverController.add_DidDismiss(System.EventHandler)
M:UIKit.UIPopoverController.add_WillReposition(System.EventHandler{UIKit.UIPopoverControllerRepositionEventArgs})
-M:UIKit.UIPopoverController.Dismiss(System.Boolean)
M:UIKit.UIPopoverController.Dispose(System.Boolean)
-M:UIKit.UIPopoverController.PresentFromBarButtonItem(UIKit.UIBarButtonItem,UIKit.UIPopoverArrowDirection,System.Boolean)
-M:UIKit.UIPopoverController.PresentFromRect(CoreGraphics.CGRect,UIKit.UIView,UIKit.UIPopoverArrowDirection,System.Boolean)
M:UIKit.UIPopoverController.remove_DidDismiss(System.EventHandler)
M:UIKit.UIPopoverController.remove_WillReposition(System.EventHandler{UIKit.UIPopoverControllerRepositionEventArgs})
-M:UIKit.UIPopoverController.SetContentViewController(UIKit.UIViewController,System.Boolean)
-M:UIKit.UIPopoverController.SetPopoverContentSize(CoreGraphics.CGSize,System.Boolean)
M:UIKit.UIPopoverControllerDelegate_Extensions.DidDismiss(UIKit.IUIPopoverControllerDelegate,UIKit.UIPopoverController)
M:UIKit.UIPopoverControllerDelegate_Extensions.ShouldDismiss(UIKit.IUIPopoverControllerDelegate,UIKit.UIPopoverController)
M:UIKit.UIPopoverControllerDelegate_Extensions.WillReposition(UIKit.IUIPopoverControllerDelegate,UIKit.UIPopoverController,CoreGraphics.CGRect@,UIKit.UIView@)
-M:UIKit.UIPopoverControllerDelegate.DidDismiss(UIKit.UIPopoverController)
-M:UIKit.UIPopoverControllerDelegate.ShouldDismiss(UIKit.UIPopoverController)
-M:UIKit.UIPopoverControllerDelegate.WillReposition(UIKit.UIPopoverController,CoreGraphics.CGRect@,UIKit.UIView@)
M:UIKit.UIPopoverControllerRepositionEventArgs.#ctor(CoreGraphics.CGRect,UIKit.UIView)
-M:UIKit.UIPopoverPresentationController.#ctor(UIKit.UIViewController,UIKit.UIViewController)
M:UIKit.UIPopoverPresentationController.add_DidDismiss(System.EventHandler)
M:UIKit.UIPopoverPresentationController.add_PrepareForPresentation(System.EventHandler)
M:UIKit.UIPopoverPresentationController.add_WillReposition(System.EventHandler{UIKit.UIPopoverPresentationControllerRepositionEventArgs})
@@ -59904,79 +44055,30 @@ M:UIKit.UIPopoverPresentationControllerDelegate_Extensions.DidDismissPopover(UIK
M:UIKit.UIPopoverPresentationControllerDelegate_Extensions.PrepareForPopoverPresentation(UIKit.IUIPopoverPresentationControllerDelegate,UIKit.UIPopoverPresentationController)
M:UIKit.UIPopoverPresentationControllerDelegate_Extensions.ShouldDismissPopover(UIKit.IUIPopoverPresentationControllerDelegate,UIKit.UIPopoverPresentationController)
M:UIKit.UIPopoverPresentationControllerDelegate_Extensions.WillRepositionPopover(UIKit.IUIPopoverPresentationControllerDelegate,UIKit.UIPopoverPresentationController,CoreGraphics.CGRect@,UIKit.UIView@)
-M:UIKit.UIPopoverPresentationControllerDelegate.DidDismissPopover(UIKit.UIPopoverPresentationController)
-M:UIKit.UIPopoverPresentationControllerDelegate.PrepareForPopoverPresentation(UIKit.UIPopoverPresentationController)
-M:UIKit.UIPopoverPresentationControllerDelegate.ShouldDismissPopover(UIKit.UIPopoverPresentationController)
-M:UIKit.UIPopoverPresentationControllerDelegate.WillRepositionPopover(UIKit.UIPopoverPresentationController,CoreGraphics.CGRect@,UIKit.UIView@)
M:UIKit.UIPopoverPresentationControllerRepositionEventArgs.#ctor(CoreGraphics.CGRect,UIKit.UIView)
M:UIKit.UIPopoverPresentationControllerSourceItem_Extensions.GetFrame(UIKit.IUIPopoverPresentationControllerSourceItem,UIKit.UIView)
-M:UIKit.UIPresentationController.#ctor(UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UIPresentationController.AdaptivePresentationStyle
-M:UIKit.UIPresentationController.AdaptivePresentationStyle(UIKit.UITraitCollection)
-M:UIKit.UIPresentationController.ContainerViewDidLayoutSubviews
-M:UIKit.UIPresentationController.ContainerViewWillLayoutSubviews
-M:UIKit.UIPresentationController.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
-M:UIKit.UIPresentationController.DismissalTransitionDidEnd(System.Boolean)
-M:UIKit.UIPresentationController.DismissalTransitionWillBegin
M:UIKit.UIPresentationController.Dispose(System.Boolean)
-M:UIKit.UIPresentationController.GetSizeForChildContentContainer(UIKit.IUIContentContainer,CoreGraphics.CGSize)
-M:UIKit.UIPresentationController.GetSoundIdentifier(UIKit.UIFocusUpdateContext)
-M:UIKit.UIPresentationController.PreferredContentSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer)
-M:UIKit.UIPresentationController.PresentationTransitionDidEnd(System.Boolean)
-M:UIKit.UIPresentationController.PresentationTransitionWillBegin
-M:UIKit.UIPresentationController.RegisterForTraitChanges(ObjCRuntime.Class[],Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIPresentationController.RegisterForTraitChanges(ObjCRuntime.Class[],ObjCRuntime.Selector)
-M:UIKit.UIPresentationController.RegisterForTraitChanges(ObjCRuntime.Class[],System.Action{UIKit.IUITraitEnvironment,UIKit.UITraitCollection})
-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.UIPressesEvent.GetPresses(UIKit.UIGestureRecognizer)
M:UIKit.UIPreviewAction.Copy(Foundation.NSZone)
-M:UIKit.UIPreviewAction.Create(System.String,UIKit.UIPreviewActionStyle,UIKit.UIPreviewHandler)
M:UIKit.UIPreviewActionGroup.Copy(Foundation.NSZone)
-M:UIKit.UIPreviewActionGroup.Create(System.String,UIKit.UIPreviewActionStyle,UIKit.UIPreviewAction[])
-M:UIKit.UIPreviewInteraction.#ctor(UIKit.UIView)
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})
-M:UIKit.UIPreviewInteraction.CancelInteraction
M:UIKit.UIPreviewInteraction.Dispose(System.Boolean)
-M:UIKit.UIPreviewInteraction.GetLocationInCoordinateSpace(UIKit.IUICoordinateSpace)
M:UIKit.UIPreviewInteraction.remove_DidCancel(System.EventHandler)
M:UIKit.UIPreviewInteraction.remove_DidUpdateCommit(System.EventHandler{UIKit.NSPreviewInteractionPreviewUpdateEventArgs})
M:UIKit.UIPreviewInteraction.remove_DidUpdatePreviewTransition(System.EventHandler{UIKit.NSPreviewInteractionPreviewUpdateEventArgs})
M:UIKit.UIPreviewInteractionDelegate_Extensions.DidUpdateCommit(UIKit.IUIPreviewInteractionDelegate,UIKit.UIPreviewInteraction,System.Runtime.InteropServices.NFloat,System.Boolean)
M:UIKit.UIPreviewInteractionDelegate_Extensions.ShouldBegin(UIKit.IUIPreviewInteractionDelegate,UIKit.UIPreviewInteraction)
-M:UIKit.UIPreviewInteractionDelegate.DidCancel(UIKit.UIPreviewInteraction)
-M:UIKit.UIPreviewInteractionDelegate.DidUpdateCommit(UIKit.UIPreviewInteraction,System.Runtime.InteropServices.NFloat,System.Boolean)
-M:UIKit.UIPreviewInteractionDelegate.DidUpdatePreviewTransition(UIKit.UIPreviewInteraction,System.Runtime.InteropServices.NFloat,System.Boolean)
-M:UIKit.UIPreviewInteractionDelegate.ShouldBegin(UIKit.UIPreviewInteraction)
-M:UIKit.UIPreviewParameters.#ctor(Foundation.NSValue[])
M:UIKit.UIPreviewParameters.Copy(Foundation.NSZone)
-M:UIKit.UIPreviewTarget.#ctor(UIKit.UIView,CoreGraphics.CGPoint,CoreGraphics.CGAffineTransform)
-M:UIKit.UIPreviewTarget.#ctor(UIKit.UIView,CoreGraphics.CGPoint)
M:UIKit.UIPreviewTarget.Copy(Foundation.NSZone)
-M:UIKit.UIPrinter.ContactPrinter(UIKit.UIPrinterContactPrinterHandler)
M:UIKit.UIPrinter.ContactPrinterAsync
-M:UIKit.UIPrinter.FromUrl(Foundation.NSUrl)
-M:UIKit.UIPrinterDestination.#ctor(Foundation.NSUrl)
M:UIKit.UIPrinterDestination.EncodeTo(Foundation.NSCoder)
M:UIKit.UIPrinterPickerCompletionResult.#ctor(UIKit.UIPrinterPickerController,System.Boolean)
-M:UIKit.UIPrinterPickerController.Dismiss(System.Boolean)
M:UIKit.UIPrinterPickerController.Dispose(System.Boolean)
-M:UIKit.UIPrinterPickerController.FromPrinter(UIKit.UIPrinter)
-M:UIKit.UIPrinterPickerController.Present(System.Boolean,UIKit.UIPrinterPickerCompletionHandler)
M:UIKit.UIPrinterPickerController.PresentAsync(System.Boolean,System.Boolean@)
M:UIKit.UIPrinterPickerController.PresentAsync(System.Boolean)
-M:UIKit.UIPrinterPickerController.PresentFromBarButtonItem(UIKit.UIBarButtonItem,System.Boolean,UIKit.UIPrinterPickerCompletionHandler)
M:UIKit.UIPrinterPickerController.PresentFromBarButtonItemAsync(UIKit.UIBarButtonItem,System.Boolean,System.Boolean@)
M:UIKit.UIPrinterPickerController.PresentFromBarButtonItemAsync(UIKit.UIBarButtonItem,System.Boolean)
-M:UIKit.UIPrinterPickerController.PresentFromRect(CoreGraphics.CGRect,UIKit.UIView,System.Boolean,UIKit.UIPrinterPickerCompletionHandler)
M:UIKit.UIPrinterPickerController.PresentFromRectAsync(CoreGraphics.CGRect,UIKit.UIView,System.Boolean,System.Boolean@)
M:UIKit.UIPrinterPickerController.PresentFromRectAsync(CoreGraphics.CGRect,UIKit.UIView,System.Boolean)
M:UIKit.UIPrinterPickerControllerDelegate_Extensions.DidDismiss(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController)
@@ -59986,21 +44088,10 @@ M:UIKit.UIPrinterPickerControllerDelegate_Extensions.GetParentViewController(UIK
M:UIKit.UIPrinterPickerControllerDelegate_Extensions.ShouldShowPrinter(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController,UIKit.UIPrinter)
M:UIKit.UIPrinterPickerControllerDelegate_Extensions.WillDismiss(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController)
M:UIKit.UIPrinterPickerControllerDelegate_Extensions.WillPresent(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController)
-M:UIKit.UIPrinterPickerControllerDelegate.DidDismiss(UIKit.UIPrinterPickerController)
-M:UIKit.UIPrinterPickerControllerDelegate.DidPresent(UIKit.UIPrinterPickerController)
-M:UIKit.UIPrinterPickerControllerDelegate.DidSelectPrinter(UIKit.UIPrinterPickerController)
-M:UIKit.UIPrinterPickerControllerDelegate.GetParentViewController(UIKit.UIPrinterPickerController)
-M:UIKit.UIPrinterPickerControllerDelegate.ShouldShowPrinter(UIKit.UIPrinterPickerController,UIKit.UIPrinter)
-M:UIKit.UIPrinterPickerControllerDelegate.WillDismiss(UIKit.UIPrinterPickerController)
-M:UIKit.UIPrinterPickerControllerDelegate.WillPresent(UIKit.UIPrinterPickerController)
M:UIKit.UIPrintFormatter.Copy(Foundation.NSZone)
M:UIKit.UIPrintFormatter.Dispose(System.Boolean)
-M:UIKit.UIPrintFormatter.DrawRect(CoreGraphics.CGRect,System.IntPtr)
-M:UIKit.UIPrintFormatter.RectangleForPage(System.IntPtr)
-M:UIKit.UIPrintFormatter.RemoveFromPrintPageRenderer
M:UIKit.UIPrintInfo.Copy(Foundation.NSZone)
M:UIKit.UIPrintInfo.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIPrintInfo.FromDictionary(Foundation.NSDictionary)
M:UIKit.UIPrintInteractionCompletionResult.#ctor(UIKit.UIPrintInteractionController,System.Boolean)
M:UIKit.UIPrintInteractionController.add_DidDismissPrinterOptions(System.EventHandler)
M:UIKit.UIPrintInteractionController.add_DidFinishJob(System.EventHandler)
@@ -60008,20 +44099,13 @@ M:UIKit.UIPrintInteractionController.add_DidPresentPrinterOptions(System.EventHa
M:UIKit.UIPrintInteractionController.add_WillDismissPrinterOptions(System.EventHandler)
M:UIKit.UIPrintInteractionController.add_WillPresentPrinterOptions(System.EventHandler)
M:UIKit.UIPrintInteractionController.add_WillStartJob(System.EventHandler)
-M:UIKit.UIPrintInteractionController.CanPrint(Foundation.NSData)
-M:UIKit.UIPrintInteractionController.CanPrint(Foundation.NSUrl)
-M:UIKit.UIPrintInteractionController.Dismiss(System.Boolean)
M:UIKit.UIPrintInteractionController.Dispose(System.Boolean)
-M:UIKit.UIPrintInteractionController.Present(System.Boolean,UIKit.UIPrintInteractionCompletionHandler)
M:UIKit.UIPrintInteractionController.PresentAsync(System.Boolean,System.Boolean@)
M:UIKit.UIPrintInteractionController.PresentAsync(System.Boolean)
-M:UIKit.UIPrintInteractionController.PresentFromBarButtonItem(UIKit.UIBarButtonItem,System.Boolean,UIKit.UIPrintInteractionCompletionHandler)
M:UIKit.UIPrintInteractionController.PresentFromBarButtonItemAsync(UIKit.UIBarButtonItem,System.Boolean,System.Boolean@)
M:UIKit.UIPrintInteractionController.PresentFromBarButtonItemAsync(UIKit.UIBarButtonItem,System.Boolean)
-M:UIKit.UIPrintInteractionController.PresentFromRectInView(CoreGraphics.CGRect,UIKit.UIView,System.Boolean,UIKit.UIPrintInteractionCompletionHandler)
M:UIKit.UIPrintInteractionController.PresentFromRectInViewAsync(CoreGraphics.CGRect,UIKit.UIView,System.Boolean,System.Boolean@)
M:UIKit.UIPrintInteractionController.PresentFromRectInViewAsync(CoreGraphics.CGRect,UIKit.UIView,System.Boolean)
-M:UIKit.UIPrintInteractionController.PrintToPrinter(UIKit.UIPrinter,UIKit.UIPrintInteractionCompletionHandler)
M:UIKit.UIPrintInteractionController.PrintToPrinterAsync(UIKit.UIPrinter,System.Boolean@)
M:UIKit.UIPrintInteractionController.PrintToPrinterAsync(UIKit.UIPrinter)
M:UIKit.UIPrintInteractionController.remove_DidDismissPrinterOptions(System.EventHandler)
@@ -60040,122 +44124,15 @@ M:UIKit.UIPrintInteractionControllerDelegate_Extensions.GetViewController(UIKit.
M:UIKit.UIPrintInteractionControllerDelegate_Extensions.WillDismissPrinterOptions(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController)
M:UIKit.UIPrintInteractionControllerDelegate_Extensions.WillPresentPrinterOptions(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController)
M:UIKit.UIPrintInteractionControllerDelegate_Extensions.WillStartJob(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController)
-M:UIKit.UIPrintInteractionControllerDelegate.ChooseCutterBehavior(UIKit.UIPrintInteractionController,Foundation.NSNumber[])
-M:UIKit.UIPrintInteractionControllerDelegate.ChoosePaper(UIKit.UIPrintInteractionController,UIKit.UIPrintPaper[])
-M:UIKit.UIPrintInteractionControllerDelegate.CutLengthForPaper(UIKit.UIPrintInteractionController,UIKit.UIPrintPaper)
-M:UIKit.UIPrintInteractionControllerDelegate.DidDismissPrinterOptions(UIKit.UIPrintInteractionController)
-M:UIKit.UIPrintInteractionControllerDelegate.DidFinishJob(UIKit.UIPrintInteractionController)
-M:UIKit.UIPrintInteractionControllerDelegate.DidPresentPrinterOptions(UIKit.UIPrintInteractionController)
-M:UIKit.UIPrintInteractionControllerDelegate.GetViewController(UIKit.UIPrintInteractionController)
-M:UIKit.UIPrintInteractionControllerDelegate.WillDismissPrinterOptions(UIKit.UIPrintInteractionController)
-M:UIKit.UIPrintInteractionControllerDelegate.WillPresentPrinterOptions(UIKit.UIPrintInteractionController)
-M:UIKit.UIPrintInteractionControllerDelegate.WillStartJob(UIKit.UIPrintInteractionController)
M:UIKit.UIPrintInteractionResult.#ctor(UIKit.UIPrintInteractionController,System.Boolean)
-M:UIKit.UIPrintPageRenderer.AddPrintFormatter(UIKit.UIPrintFormatter,System.IntPtr)
-M:UIKit.UIPrintPageRenderer.DrawContentForPage(System.IntPtr,CoreGraphics.CGRect)
-M:UIKit.UIPrintPageRenderer.DrawFooterForPage(System.IntPtr,CoreGraphics.CGRect)
-M:UIKit.UIPrintPageRenderer.DrawHeaderForPage(System.IntPtr,CoreGraphics.CGRect)
-M:UIKit.UIPrintPageRenderer.DrawPage(System.IntPtr,CoreGraphics.CGRect)
-M:UIKit.UIPrintPageRenderer.DrawPrintFormatterForPage(UIKit.UIPrintFormatter,System.IntPtr)
-M:UIKit.UIPrintPageRenderer.GetCurrentRenderingQuality(UIKit.UIPrintRenderingQuality)
-M:UIKit.UIPrintPageRenderer.PrepareForDrawingPages(Foundation.NSRange)
-M:UIKit.UIPrintPageRenderer.PrintFormattersForPage(System.IntPtr)
-M:UIKit.UIPrintPaper.ForPageSize(CoreGraphics.CGSize,UIKit.UIPrintPaper[])
-M:UIKit.UIPrintServiceExtension.GetPrinterDestinations(UIKit.UIPrintInfo)
-M:UIKit.UIProgressView.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIProgressView.#ctor(UIKit.UIProgressViewStyle)
M:UIKit.UIProgressView.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIProgressView.SetProgress(System.Single,System.Boolean)
M:UIKit.UIProgressView.UIProgressViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIPushBehavior.#ctor(UIKit.IUIDynamicItem[],UIKit.UIPushBehaviorMode)
M:UIKit.UIPushBehavior.#ctor(UIKit.UIPushBehaviorMode,UIKit.IUIDynamicItem[])
-M:UIKit.UIPushBehavior.AddItem(UIKit.IUIDynamicItem)
-M:UIKit.UIPushBehavior.GetTargetOffsetFromCenter(UIKit.IUIDynamicItem)
-M:UIKit.UIPushBehavior.RemoveItem(UIKit.IUIDynamicItem)
-M:UIKit.UIPushBehavior.SetAngleAndMagnitude(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIPushBehavior.SetTargetOffset(UIKit.UIOffset,UIKit.IUIDynamicItem)
-M:UIKit.UIReferenceLibraryViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UIReferenceLibraryViewController.#ctor(System.String)
-M:UIKit.UIReferenceLibraryViewController.DictionaryHasDefinitionForTerm(System.String)
M:UIKit.UIReferenceLibraryViewController.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIRefreshControl.BeginRefreshing
-M:UIKit.UIRefreshControl.EndRefreshing
M:UIKit.UIRefreshControl.UIRefreshControlAppearance.#ctor(System.IntPtr)
-M:UIKit.UIRegion.#ctor(CoreGraphics.CGSize)
-M:UIKit.UIRegion.#ctor(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIRegion.Contains(CoreGraphics.CGPoint)
M:UIKit.UIRegion.Copy(Foundation.NSZone)
-M:UIKit.UIRegion.Difference(UIKit.UIRegion)
M:UIKit.UIRegion.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIRegion.Intersect(UIKit.UIRegion)
-M:UIKit.UIRegion.Inverse
-M:UIKit.UIRegion.Union(UIKit.UIRegion)
M:UIKit.UIResolvedShape.Copy(Foundation.NSZone)
-M:UIKit.UIResolvedShape.CreateShape(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIResolvedShape.CreateShape(UIKit.UIEdgeInsets)
-M:UIKit.UIResponder.AccessibilityDecrement
-M:UIKit.UIResponder.AccessibilityElementDidBecomeFocused
-M:UIKit.UIResponder.AccessibilityElementDidLoseFocus
-M:UIKit.UIResponder.AccessibilityElementIsFocused
-M:UIKit.UIResponder.AccessibilityIncrement
-M:UIKit.UIResponder.AccessibilityPerformEscape
-M:UIKit.UIResponder.AccessibilityPerformMagicTap
-M:UIKit.UIResponder.AccessibilityScroll(UIKit.UIAccessibilityScrollDirection)
-M:UIKit.UIResponder.BecomeFirstResponder
-M:UIKit.UIResponder.BuildMenu(UIKit.IUIMenuBuilder)
-M:UIKit.UIResponder.CanPaste(Foundation.NSItemProvider[])
-M:UIKit.UIResponder.CanPerform(ObjCRuntime.Selector,Foundation.NSObject)
-M:UIKit.UIResponder.CaptureTextFromCamera(Foundation.NSObject)
-M:UIKit.UIResponder.ClearTextInputContextIdentifier(Foundation.NSString)
-M:UIKit.UIResponder.Copy(Foundation.NSObject)
-M:UIKit.UIResponder.CreateTouchBar
-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.GetTargetForAction(ObjCRuntime.Selector,Foundation.NSObject)
-M:UIKit.UIResponder.IncreaseSize(Foundation.NSObject)
-M:UIKit.UIResponder.MakeTextWritingDirectionLeftToRight(Foundation.NSObject)
-M:UIKit.UIResponder.MakeTextWritingDirectionRightToLeft(Foundation.NSObject)
-M:UIKit.UIResponder.MotionBegan(UIKit.UIEventSubtype,UIKit.UIEvent)
-M:UIKit.UIResponder.MotionCancelled(UIKit.UIEventSubtype,UIKit.UIEvent)
-M:UIKit.UIResponder.MotionEnded(UIKit.UIEventSubtype,UIKit.UIEvent)
-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.PressesBegan(Foundation.NSSet{UIKit.UIPress},UIKit.UIPressesEvent)
-M:UIKit.UIResponder.PressesCancelled(Foundation.NSSet{UIKit.UIPress},UIKit.UIPressesEvent)
-M:UIKit.UIResponder.PressesChanged(Foundation.NSSet{UIKit.UIPress},UIKit.UIPressesEvent)
-M:UIKit.UIResponder.PressesEnded(Foundation.NSSet{UIKit.UIPress},UIKit.UIPressesEvent)
-M:UIKit.UIResponder.Print(Foundation.NSObject)
-M:UIKit.UIResponder.ReloadInputViews
-M:UIKit.UIResponder.RemoteControlReceived(UIKit.UIEvent)
-M:UIKit.UIResponder.Rename(Foundation.NSObject)
-M:UIKit.UIResponder.ResignFirstResponder
-M:UIKit.UIResponder.RestoreUserActivityState(Foundation.NSUserActivity)
-M:UIKit.UIResponder.Select(Foundation.NSObject)
-M:UIKit.UIResponder.SelectAll(Foundation.NSObject)
-M:UIKit.UIResponder.ShowWritingTools(Foundation.NSObject)
-M:UIKit.UIResponder.ToggleBoldface(Foundation.NSObject)
-M:UIKit.UIResponder.ToggleItalics(Foundation.NSObject)
-M:UIKit.UIResponder.ToggleUnderline(Foundation.NSObject)
-M:UIKit.UIResponder.TouchesBegan(Foundation.NSSet,UIKit.UIEvent)
-M:UIKit.UIResponder.TouchesCancelled(Foundation.NSSet,UIKit.UIEvent)
-M:UIKit.UIResponder.TouchesEnded(Foundation.NSSet,UIKit.UIEvent)
-M:UIKit.UIResponder.TouchesEstimatedPropertiesUpdated(Foundation.NSSet)
-M:UIKit.UIResponder.TouchesMoved(Foundation.NSSet,UIKit.UIEvent)
-M:UIKit.UIResponder.UpdateTextAttributes(UIKit.UITextAttributesConversionHandler)
-M:UIKit.UIResponder.UpdateUserActivityState(Foundation.NSUserActivity)
-M:UIKit.UIResponder.UseSelectionForFind(Foundation.NSObject)
-M:UIKit.UIResponder.ValidateCommand(UIKit.UICommand)
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)
@@ -60184,19 +44161,12 @@ M:UIKit.UIResponderStandardEditActions_Extensions.ToggleItalics(UIKit.IUIRespond
M:UIKit.UIResponderStandardEditActions_Extensions.ToggleUnderline(UIKit.IUIResponderStandardEditActions,Foundation.NSObject)
M:UIKit.UIResponderStandardEditActions_Extensions.UpdateTextAttributes(UIKit.IUIResponderStandardEditActions,UIKit.UITextAttributesConversionHandler)
M:UIKit.UIResponderStandardEditActions_Extensions.UseSelectionForFind(UIKit.IUIResponderStandardEditActions,Foundation.NSObject)
-M:UIKit.UIRotationGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIRotationGestureRecognizer.#ctor(System.Action)
M:UIKit.UIRotationGestureRecognizer.#ctor(System.Action{UIKit.UIRotationGestureRecognizer})
-M:UIKit.UIScene.#ctor(UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
-M:UIKit.UIScene.CompleteStateRestoration
-M:UIKit.UIScene.ExtendStateRestoration
-M:UIKit.UIScene.OpenUrl(Foundation.NSUrl,UIKit.UISceneOpenExternalUrlOptions,System.Action{System.Boolean})
M:UIKit.UIScene.OpenUrlAsync(Foundation.NSUrl,UIKit.UISceneOpenExternalUrlOptions)
M:UIKit.UISceneActivationConditions.EncodeTo(Foundation.NSCoder)
M:UIKit.UISceneActivationRequestOptions.Copy(Foundation.NSZone)
-M:UIKit.UISceneConfiguration.#ctor(System.String,UIKit.UIWindowSceneSessionRole)
M:UIKit.UISceneConfiguration.Copy(Foundation.NSZone)
-M:UIKit.UISceneConfiguration.Create(System.String,UIKit.UIWindowSceneSessionRole)
M:UIKit.UISceneConfiguration.EncodeTo(Foundation.NSCoder)
M:UIKit.UISceneDelegate_Extensions.ContinueUserActivity(UIKit.IUISceneDelegate,UIKit.UIScene,Foundation.NSUserActivity)
M:UIKit.UISceneDelegate_Extensions.DidBecomeActive(UIKit.IUISceneDelegate,UIKit.UIScene)
@@ -60211,49 +44181,20 @@ M:UIKit.UISceneDelegate_Extensions.WillConnect(UIKit.IUISceneDelegate,UIKit.UISc
M:UIKit.UISceneDelegate_Extensions.WillContinueUserActivity(UIKit.IUISceneDelegate,UIKit.UIScene,System.String)
M:UIKit.UISceneDelegate_Extensions.WillEnterForeground(UIKit.IUISceneDelegate,UIKit.UIScene)
M:UIKit.UISceneDelegate_Extensions.WillResignActive(UIKit.IUISceneDelegate,UIKit.UIScene)
-M:UIKit.UISceneDelegate.ContinueUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
-M:UIKit.UISceneDelegate.DidBecomeActive(UIKit.UIScene)
-M:UIKit.UISceneDelegate.DidDisconnect(UIKit.UIScene)
-M:UIKit.UISceneDelegate.DidEnterBackground(UIKit.UIScene)
-M:UIKit.UISceneDelegate.DidFailToContinueUserActivity(UIKit.UIScene,System.String,Foundation.NSError)
-M:UIKit.UISceneDelegate.DidUpdateUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
-M:UIKit.UISceneDelegate.GetStateRestorationActivity(UIKit.UIScene)
-M:UIKit.UISceneDelegate.OpenUrlContexts(UIKit.UIScene,Foundation.NSSet{UIKit.UIOpenUrlContext})
-M:UIKit.UISceneDelegate.RestoreInteractionState(UIKit.UIScene,Foundation.NSUserActivity)
-M:UIKit.UISceneDelegate.WillConnect(UIKit.UIScene,UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
-M:UIKit.UISceneDelegate.WillContinueUserActivity(UIKit.UIScene,System.String)
-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.UISceneSessionActivationRequest.Create
-M:UIKit.UISceneSessionActivationRequest.Create(System.String)
-M:UIKit.UISceneSessionActivationRequest.Create(UIKit.UISceneSession)
M:UIKit.UIScreen.Capture
-M:UIKit.UIScreen.CreateDisplayLink(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIScreen.CreateDisplayLink(System.Action)
M:UIKit.UIScreen.Dispose(System.Boolean)
-M:UIKit.UIScreen.SnapshotView(System.Boolean)
-M:UIKit.UIScreen.TraitCollectionDidChange(UIKit.UITraitCollection)
-M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor(System.Action)
M:UIKit.UIScreenEdgePanGestureRecognizer.#ctor(System.Action{UIKit.UIScreenEdgePanGestureRecognizer})
M:UIKit.UIScreenshotService.Dispose(System.Boolean)
M:UIKit.UIScreenshotServiceDelegate_Extensions.GeneratePdfRepresentation(UIKit.IUIScreenshotServiceDelegate,UIKit.UIScreenshotService,UIKit.UIScreenshotServiceDelegatePdfHandler)
-M:UIKit.UIScreenshotServiceDelegate.GeneratePdfRepresentation(UIKit.UIScreenshotService,UIKit.UIScreenshotServiceDelegatePdfHandler)
-M:UIKit.UIScribbleInteraction.#ctor(UIKit.IUIScribbleInteractionDelegate)
-M:UIKit.UIScribbleInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UIScribbleInteraction.Dispose(System.Boolean)
-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)
M:UIKit.UIScribbleInteractionDelegate_Extensions.WillBeginWriting(UIKit.IUIScribbleInteractionDelegate,UIKit.UIScribbleInteraction)
-M:UIKit.UIScribbleInteractionDelegate.DidFinishWriting(UIKit.UIScribbleInteraction)
-M:UIKit.UIScribbleInteractionDelegate.ShouldBegin(UIKit.UIScribbleInteraction,CoreGraphics.CGPoint)
-M:UIKit.UIScribbleInteractionDelegate.ShouldDelayFocus(UIKit.UIScribbleInteraction)
-M:UIKit.UIScribbleInteractionDelegate.WillBeginWriting(UIKit.UIScribbleInteraction)
-M:UIKit.UIScrollView.#ctor(CoreGraphics.CGRect)
M:UIKit.UIScrollView.add_DecelerationEnded(System.EventHandler)
M:UIKit.UIScrollView.add_DecelerationStarted(System.EventHandler)
M:UIKit.UIScrollView.add_DidChangeAdjustedContentInset(System.EventHandler)
@@ -60266,10 +44207,7 @@ M:UIKit.UIScrollView.add_ScrolledToTop(System.EventHandler)
M:UIKit.UIScrollView.add_WillEndDragging(System.EventHandler{UIKit.WillEndDraggingEventArgs})
M:UIKit.UIScrollView.add_ZoomingEnded(System.EventHandler{UIKit.ZoomingEndedEventArgs})
M:UIKit.UIScrollView.add_ZoomingStarted(System.EventHandler{UIKit.UIScrollViewZoomingEventArgs})
-M:UIKit.UIScrollView.AdjustedContentInsetDidChange
M:UIKit.UIScrollView.Dispose(System.Boolean)
-M:UIKit.UIScrollView.FlashScrollIndicators
-M:UIKit.UIScrollView.GetFocusItems(CoreGraphics.CGRect)
M:UIKit.UIScrollView.remove_DecelerationEnded(System.EventHandler)
M:UIKit.UIScrollView.remove_DecelerationStarted(System.EventHandler)
M:UIKit.UIScrollView.remove_DidChangeAdjustedContentInset(System.EventHandler)
@@ -60282,19 +44220,9 @@ M:UIKit.UIScrollView.remove_ScrolledToTop(System.EventHandler)
M:UIKit.UIScrollView.remove_WillEndDragging(System.EventHandler{UIKit.WillEndDraggingEventArgs})
M:UIKit.UIScrollView.remove_ZoomingEnded(System.EventHandler{UIKit.ZoomingEndedEventArgs})
M:UIKit.UIScrollView.remove_ZoomingStarted(System.EventHandler{UIKit.UIScrollViewZoomingEventArgs})
-M:UIKit.UIScrollView.ScrollRectToVisible(CoreGraphics.CGRect,System.Boolean)
-M:UIKit.UIScrollView.SetContentOffset(CoreGraphics.CGPoint,System.Boolean)
-M:UIKit.UIScrollView.SetZoomScale(System.Runtime.InteropServices.NFloat,System.Boolean)
-M:UIKit.UIScrollView.StopScrollingAndZooming
-M:UIKit.UIScrollView.TouchesShouldBegin(Foundation.NSSet,UIKit.UIEvent,UIKit.UIView)
-M:UIKit.UIScrollView.TouchesShouldCancelInContentView(UIKit.UIView)
M:UIKit.UIScrollView.UIScrollViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIScrollView.WithScrollIndicatorsShown(System.Action)
-M:UIKit.UIScrollView.ZoomToRect(CoreGraphics.CGRect,System.Boolean)
M:UIKit.UIScrollViewAccessibilityDelegate_Extensions.GetAccessibilityAttributedScrollStatus(UIKit.IUIScrollViewAccessibilityDelegate,UIKit.UIScrollView)
M:UIKit.UIScrollViewAccessibilityDelegate_Extensions.GetAccessibilityScrollStatus(UIKit.IUIScrollViewAccessibilityDelegate,UIKit.UIScrollView)
-M:UIKit.UIScrollViewAccessibilityDelegate.GetAccessibilityAttributedScrollStatus(UIKit.UIScrollView)
-M:UIKit.UIScrollViewAccessibilityDelegate.GetAccessibilityScrollStatus(UIKit.UIScrollView)
M:UIKit.UIScrollViewDelegate_Extensions.DecelerationEnded(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView)
M:UIKit.UIScrollViewDelegate_Extensions.DecelerationStarted(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView)
M:UIKit.UIScrollViewDelegate_Extensions.DidChangeAdjustedContentInset(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView)
@@ -60309,22 +44237,7 @@ M:UIKit.UIScrollViewDelegate_Extensions.ViewForZoomingInScrollView(UIKit.IUIScro
M:UIKit.UIScrollViewDelegate_Extensions.WillEndDragging(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@)
M:UIKit.UIScrollViewDelegate_Extensions.ZoomingEnded(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)
M:UIKit.UIScrollViewDelegate_Extensions.ZoomingStarted(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView,UIKit.UIView)
-M:UIKit.UIScrollViewDelegate.DecelerationEnded(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.DecelerationStarted(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.DidChangeAdjustedContentInset(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.DidZoom(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.DraggingEnded(UIKit.UIScrollView,System.Boolean)
-M:UIKit.UIScrollViewDelegate.DraggingStarted(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.ScrollAnimationEnded(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.Scrolled(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.ScrolledToTop(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.ShouldScrollToTop(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.ViewForZoomingInScrollView(UIKit.UIScrollView)
-M:UIKit.UIScrollViewDelegate.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@)
-M:UIKit.UIScrollViewDelegate.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIScrollViewDelegate.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView)
M:UIKit.UIScrollViewZoomingEventArgs.#ctor(UIKit.UIView)
-M:UIKit.UISearchBar.#ctor(CoreGraphics.CGRect)
M:UIKit.UISearchBar.add_BookmarkButtonClicked(System.EventHandler)
M:UIKit.UISearchBar.add_CancelButtonClicked(System.EventHandler)
M:UIKit.UISearchBar.add_ListButtonClicked(System.EventHandler)
@@ -60333,15 +44246,9 @@ M:UIKit.UISearchBar.add_OnEditingStopped(System.EventHandler)
M:UIKit.UISearchBar.add_SearchButtonClicked(System.EventHandler)
M:UIKit.UISearchBar.add_SelectedScopeButtonIndexChanged(System.EventHandler{UIKit.UISearchBarButtonIndexEventArgs})
M:UIKit.UISearchBar.add_TextChanged(System.EventHandler{UIKit.UISearchBarTextChangedEventArgs})
-M:UIKit.UISearchBar.BackgroundImageForBarPosition(UIKit.UIBarPosition,UIKit.UIBarMetrics)
M:UIKit.UISearchBar.Dispose(System.Boolean)
M:UIKit.UISearchBar.EncodeTo(Foundation.NSCoder)
-M:UIKit.UISearchBar.GetImageForSearchBarIcon(UIKit.UISearchBarIcon,UIKit.UIControlState)
-M:UIKit.UISearchBar.GetPositionAdjustmentForSearchBarIcon(UIKit.UISearchBarIcon)
-M:UIKit.UISearchBar.GetScopeBarButtonBackgroundImage(UIKit.UIControlState)
-M:UIKit.UISearchBar.GetScopeBarButtonDividerImage(UIKit.UIControlState,UIKit.UIControlState)
M:UIKit.UISearchBar.GetScopeBarButtonTitleTextAttributes(UIKit.UIControlState)
-M:UIKit.UISearchBar.GetSearchFieldBackgroundImage(UIKit.UIControlState)
M:UIKit.UISearchBar.remove_BookmarkButtonClicked(System.EventHandler)
M:UIKit.UISearchBar.remove_CancelButtonClicked(System.EventHandler)
M:UIKit.UISearchBar.remove_ListButtonClicked(System.EventHandler)
@@ -60350,15 +44257,7 @@ M:UIKit.UISearchBar.remove_OnEditingStopped(System.EventHandler)
M:UIKit.UISearchBar.remove_SearchButtonClicked(System.EventHandler)
M:UIKit.UISearchBar.remove_SelectedScopeButtonIndexChanged(System.EventHandler{UIKit.UISearchBarButtonIndexEventArgs})
M:UIKit.UISearchBar.remove_TextChanged(System.EventHandler{UIKit.UISearchBarTextChangedEventArgs})
-M:UIKit.UISearchBar.SetBackgroundImage(UIKit.UIImage,UIKit.UIBarPosition,UIKit.UIBarMetrics)
-M:UIKit.UISearchBar.SetImageforSearchBarIcon(UIKit.UIImage,UIKit.UISearchBarIcon,UIKit.UIControlState)
-M:UIKit.UISearchBar.SetPositionAdjustmentforSearchBarIcon(UIKit.UIOffset,UIKit.UISearchBarIcon)
-M:UIKit.UISearchBar.SetScopeBarButtonBackgroundImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UISearchBar.SetScopeBarButtonDividerImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIControlState)
M:UIKit.UISearchBar.SetScopeBarButtonTitle(UIKit.UIStringAttributes,UIKit.UIControlState)
-M:UIKit.UISearchBar.SetSearchFieldBackgroundImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UISearchBar.SetShowsCancelButton(System.Boolean,System.Boolean)
-M:UIKit.UISearchBar.SetShowsScopeBar(System.Boolean,System.Boolean)
M:UIKit.UISearchBar.UISearchBarAppearance.#ctor(System.IntPtr)
M:UIKit.UISearchBar.UISearchBarAppearance.BackgroundImageForBarPosition(UIKit.UIBarPosition,UIKit.UIBarMetrics)
M:UIKit.UISearchBar.UISearchBarAppearance.GetImageForSearchBarIcon(UIKit.UISearchBarIcon,UIKit.UIControlState)
@@ -60386,34 +44285,9 @@ M:UIKit.UISearchBarDelegate_Extensions.ShouldBeginEditing(UIKit.IUISearchBarDele
M:UIKit.UISearchBarDelegate_Extensions.ShouldChangeTextInRange(UIKit.IUISearchBarDelegate,UIKit.UISearchBar,Foundation.NSRange,System.String)
M:UIKit.UISearchBarDelegate_Extensions.ShouldEndEditing(UIKit.IUISearchBarDelegate,UIKit.UISearchBar)
M:UIKit.UISearchBarDelegate_Extensions.TextChanged(UIKit.IUISearchBarDelegate,UIKit.UISearchBar,System.String)
-M:UIKit.UISearchBarDelegate.BookmarkButtonClicked(UIKit.UISearchBar)
-M:UIKit.UISearchBarDelegate.CancelButtonClicked(UIKit.UISearchBar)
-M:UIKit.UISearchBarDelegate.ListButtonClicked(UIKit.UISearchBar)
-M:UIKit.UISearchBarDelegate.OnEditingStarted(UIKit.UISearchBar)
-M:UIKit.UISearchBarDelegate.OnEditingStopped(UIKit.UISearchBar)
-M:UIKit.UISearchBarDelegate.SearchButtonClicked(UIKit.UISearchBar)
-M:UIKit.UISearchBarDelegate.SelectedScopeButtonIndexChanged(UIKit.UISearchBar,System.IntPtr)
-M:UIKit.UISearchBarDelegate.ShouldBeginEditing(UIKit.UISearchBar)
-M:UIKit.UISearchBarDelegate.ShouldChangeTextInRange(UIKit.UISearchBar,Foundation.NSRange,System.String)
-M:UIKit.UISearchBarDelegate.ShouldEndEditing(UIKit.UISearchBar)
-M:UIKit.UISearchBarDelegate.TextChanged(UIKit.UISearchBar,System.String)
M:UIKit.UISearchBarTextChangedEventArgs.#ctor(System.String)
-M:UIKit.UISearchContainerViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UISearchContainerViewController.#ctor(UIKit.UISearchController)
-M:UIKit.UISearchController.#ctor
-M:UIKit.UISearchController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UISearchController.#ctor(UIKit.UIViewController)
-M:UIKit.UISearchController.AnimateTransition(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.UISearchController.AnimationEnded(System.Boolean)
M:UIKit.UISearchController.Dispose(System.Boolean)
-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.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)
@@ -60421,16 +44295,7 @@ M:UIKit.UISearchControllerDelegate_Extensions.PresentSearchController(UIKit.IUIS
M:UIKit.UISearchControllerDelegate_Extensions.WillChangeToSearchBarPlacement(UIKit.IUISearchControllerDelegate,UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement)
M:UIKit.UISearchControllerDelegate_Extensions.WillDismissSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController)
M:UIKit.UISearchControllerDelegate_Extensions.WillPresentSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController)
-M:UIKit.UISearchControllerDelegate.DidChangeFromSearchBarPlacement(UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement)
-M:UIKit.UISearchControllerDelegate.DidDismissSearchController(UIKit.UISearchController)
-M:UIKit.UISearchControllerDelegate.DidPresentSearchController(UIKit.UISearchController)
-M:UIKit.UISearchControllerDelegate.PresentSearchController(UIKit.UISearchController)
-M:UIKit.UISearchControllerDelegate.WillChangeToSearchBarPlacement(UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement)
-M:UIKit.UISearchControllerDelegate.WillDismissSearchController(UIKit.UISearchController)
-M:UIKit.UISearchControllerDelegate.WillPresentSearchController(UIKit.UISearchController)
-M:UIKit.UISearchDisplayController.#ctor(UIKit.UISearchBar,UIKit.UIViewController)
M:UIKit.UISearchDisplayController.Dispose(System.Boolean)
-M:UIKit.UISearchDisplayController.SetActive(System.Boolean,System.Boolean)
M:UIKit.UISearchDisplayDelegate_Extensions.DidBeginSearch(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController)
M:UIKit.UISearchDisplayDelegate_Extensions.DidEndSearch(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController)
M:UIKit.UISearchDisplayDelegate_Extensions.DidHideSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView)
@@ -60443,100 +44308,21 @@ M:UIKit.UISearchDisplayDelegate_Extensions.WillEndSearch(UIKit.IUISearchDisplayD
M:UIKit.UISearchDisplayDelegate_Extensions.WillHideSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView)
M:UIKit.UISearchDisplayDelegate_Extensions.WillShowSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView)
M:UIKit.UISearchDisplayDelegate_Extensions.WillUnloadSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView)
-M:UIKit.UISearchDisplayDelegate.DidBeginSearch(UIKit.UISearchDisplayController)
-M:UIKit.UISearchDisplayDelegate.DidEndSearch(UIKit.UISearchDisplayController)
-M:UIKit.UISearchDisplayDelegate.DidHideSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView)
-M:UIKit.UISearchDisplayDelegate.DidLoadSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView)
-M:UIKit.UISearchDisplayDelegate.DidShowSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView)
-M:UIKit.UISearchDisplayDelegate.ShouldReloadForSearchScope(UIKit.UISearchDisplayController,System.IntPtr)
-M:UIKit.UISearchDisplayDelegate.ShouldReloadForSearchString(UIKit.UISearchDisplayController,System.String)
-M:UIKit.UISearchDisplayDelegate.WillBeginSearch(UIKit.UISearchDisplayController)
-M:UIKit.UISearchDisplayDelegate.WillEndSearch(UIKit.UISearchDisplayController)
-M:UIKit.UISearchDisplayDelegate.WillHideSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView)
-M:UIKit.UISearchDisplayDelegate.WillShowSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView)
-M:UIKit.UISearchDisplayDelegate.WillUnloadSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView)
M:UIKit.UISearchResultsUpdating_Extensions.UpdateSearchResults(UIKit.IUISearchResultsUpdating,UIKit.UISearchController,UIKit.IUISearchSuggestion)
-M:UIKit.UISearchResultsUpdating.UpdateSearchResults(UIKit.UISearchController,UIKit.IUISearchSuggestion)
-M:UIKit.UISearchResultsUpdating.UpdateSearchResultsForSearchController(UIKit.UISearchController)
M:UIKit.UISearchSuggestion_Extensions.GetIconImage(UIKit.IUISearchSuggestion)
M:UIKit.UISearchSuggestion_Extensions.GetLocalizedAttributedSuggestion(UIKit.IUISearchSuggestion)
M:UIKit.UISearchSuggestion_Extensions.GetLocalizedDescription(UIKit.IUISearchSuggestion)
M:UIKit.UISearchSuggestion_Extensions.GetRepresentedObject(UIKit.IUISearchSuggestion)
M:UIKit.UISearchSuggestion_Extensions.SetRepresentedObject(UIKit.IUISearchSuggestion,Foundation.NSObject)
-M:UIKit.UISearchSuggestionItem.#ctor(Foundation.NSAttributedString,System.String,UIKit.UIImage)
-M:UIKit.UISearchSuggestionItem.#ctor(Foundation.NSAttributedString,System.String)
-M:UIKit.UISearchSuggestionItem.#ctor(Foundation.NSAttributedString)
-M:UIKit.UISearchSuggestionItem.#ctor(Foundation.NSString,System.String,UIKit.UIImage)
-M:UIKit.UISearchSuggestionItem.#ctor(Foundation.NSString,System.String)
-M:UIKit.UISearchSuggestionItem.#ctor(Foundation.NSString)
-M:UIKit.UISearchSuggestionItem.Create(Foundation.NSAttributedString,System.String,UIKit.UIImage)
-M:UIKit.UISearchSuggestionItem.Create(Foundation.NSAttributedString,System.String)
-M:UIKit.UISearchSuggestionItem.Create(Foundation.NSAttributedString)
-M:UIKit.UISearchSuggestionItem.Create(Foundation.NSString,System.String,UIKit.UIImage)
-M:UIKit.UISearchSuggestionItem.Create(Foundation.NSString,System.String)
-M:UIKit.UISearchSuggestionItem.Create(Foundation.NSString)
-M:UIKit.UISearchSuggestionItem.GetIconImage
-M:UIKit.UISearchSuggestionItem.GetLocalizedDescription
-M:UIKit.UISearchTab.#ctor(System.Func{UIKit.UITab,UIKit.UIViewController})
-M:UIKit.UISearchTextField.#ctor(CoreGraphics.CGRect)
-M:UIKit.UISearchTextField.GetPositionOfToken(System.IntPtr)
-M:UIKit.UISearchTextField.GetTokens(UIKit.UITextRange)
-M:UIKit.UISearchTextField.InsertToken(UIKit.UISearchToken,System.IntPtr)
-M:UIKit.UISearchTextField.RemoveToken(System.IntPtr)
-M:UIKit.UISearchTextField.ReplaceTextualPortion(UIKit.UITextRange,UIKit.UISearchToken,System.UIntPtr)
M:UIKit.UISearchTextField.UISearchTextFieldAppearance.#ctor(System.IntPtr)
M:UIKit.UISearchTextFieldDelegate_Extensions.DidSelectSuggestion(UIKit.IUISearchTextFieldDelegate,UIKit.UISearchTextField,UIKit.IUISearchSuggestion)
M:UIKit.UISearchTextFieldDelegate_Extensions.GetItemProvider(UIKit.IUISearchTextFieldDelegate,UIKit.UISearchTextField,UIKit.UISearchToken)
-M:UIKit.UISearchTextFieldDelegate.DidChangeSelection(UIKit.UITextField)
-M:UIKit.UISearchTextFieldDelegate.DidSelectSuggestion(UIKit.UISearchTextField,UIKit.IUISearchSuggestion)
-M:UIKit.UISearchTextFieldDelegate.EditingEnded(UIKit.UITextField,UIKit.UITextFieldDidEndEditingReason)
-M:UIKit.UISearchTextFieldDelegate.EditingEnded(UIKit.UITextField)
-M:UIKit.UISearchTextFieldDelegate.EditingStarted(UIKit.UITextField)
-M:UIKit.UISearchTextFieldDelegate.GetEditMenu(UIKit.UITextField,Foundation.NSRange,UIKit.UIMenuElement[])
-M:UIKit.UISearchTextFieldDelegate.GetItemProvider(UIKit.UISearchTextField,UIKit.UISearchToken)
-M:UIKit.UISearchTextFieldDelegate.ShouldBeginEditing(UIKit.UITextField)
-M:UIKit.UISearchTextFieldDelegate.ShouldChangeCharacters(UIKit.UITextField,Foundation.NSRange,System.String)
-M:UIKit.UISearchTextFieldDelegate.ShouldClear(UIKit.UITextField)
-M:UIKit.UISearchTextFieldDelegate.ShouldEndEditing(UIKit.UITextField)
-M:UIKit.UISearchTextFieldDelegate.ShouldReturn(UIKit.UITextField)
-M:UIKit.UISearchTextFieldDelegate.WillDismissEditMenu(UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UISearchTextFieldDelegate.WillPresentEditMenu(UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UISearchToken.Create(UIKit.UIImage,System.String)
-M:UIKit.UISegmentedControl.#ctor(CoreGraphics.CGRect,UIKit.UIAction[])
-M:UIKit.UISegmentedControl.#ctor(CoreGraphics.CGRect)
-M:UIKit.UISegmentedControl.#ctor(Foundation.NSArray)
M:UIKit.UISegmentedControl.#ctor(Foundation.NSString[])
M:UIKit.UISegmentedControl.#ctor(System.Object[])
M:UIKit.UISegmentedControl.#ctor(System.String[])
M:UIKit.UISegmentedControl.#ctor(UIKit.UIImage[])
-M:UIKit.UISegmentedControl.ContentPositionAdjustment(UIKit.UISegmentedControlSegment,UIKit.UIBarMetrics)
-M:UIKit.UISegmentedControl.GetAction(System.UIntPtr)
-M:UIKit.UISegmentedControl.GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)
-M:UIKit.UISegmentedControl.GetContentOffset(System.IntPtr)
-M:UIKit.UISegmentedControl.GetDividerImage(UIKit.UIControlState,UIKit.UIControlState,UIKit.UIBarMetrics)
-M:UIKit.UISegmentedControl.GetSegmentIndex(System.String)
M:UIKit.UISegmentedControl.GetTitleTextAttributes(UIKit.UIControlState)
-M:UIKit.UISegmentedControl.GetWeakTitleTextAttributes(UIKit.UIControlState)
-M:UIKit.UISegmentedControl.ImageAt(System.IntPtr)
-M:UIKit.UISegmentedControl.InsertSegment(System.String,System.IntPtr,System.Boolean)
-M:UIKit.UISegmentedControl.InsertSegment(UIKit.UIAction,System.UIntPtr,System.Boolean)
-M:UIKit.UISegmentedControl.InsertSegment(UIKit.UIImage,System.IntPtr,System.Boolean)
-M:UIKit.UISegmentedControl.IsEnabled(System.IntPtr)
-M:UIKit.UISegmentedControl.RemoveAllSegments
-M:UIKit.UISegmentedControl.RemoveSegmentAtIndex(System.IntPtr,System.Boolean)
-M:UIKit.UISegmentedControl.SegmentWidth(System.IntPtr)
-M:UIKit.UISegmentedControl.SetAction(UIKit.UIAction,System.UIntPtr)
-M:UIKit.UISegmentedControl.SetBackgroundImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIBarMetrics)
-M:UIKit.UISegmentedControl.SetContentOffset(CoreGraphics.CGSize,System.IntPtr)
-M:UIKit.UISegmentedControl.SetContentPositionAdjustment(UIKit.UIOffset,UIKit.UISegmentedControlSegment,UIKit.UIBarMetrics)
-M:UIKit.UISegmentedControl.SetDividerImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIControlState,UIKit.UIBarMetrics)
-M:UIKit.UISegmentedControl.SetEnabled(System.Boolean,System.IntPtr)
-M:UIKit.UISegmentedControl.SetImage(UIKit.UIImage,System.IntPtr)
-M:UIKit.UISegmentedControl.SetTitle(System.String,System.IntPtr)
-M:UIKit.UISegmentedControl.SetTitleTextAttributes(Foundation.NSDictionary,UIKit.UIControlState)
M:UIKit.UISegmentedControl.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState)
-M:UIKit.UISegmentedControl.SetWidth(System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:UIKit.UISegmentedControl.TitleAt(System.IntPtr)
M:UIKit.UISegmentedControl.UISegmentedControlAppearance.#ctor(System.IntPtr)
M:UIKit.UISegmentedControl.UISegmentedControlAppearance.ContentPositionAdjustment(UIKit.UISegmentedControlSegment,UIKit.UIBarMetrics)
M:UIKit.UISegmentedControl.UISegmentedControlAppearance.GetBackgroundImage(UIKit.UIControlState,UIKit.UIBarMetrics)
@@ -60548,59 +44334,11 @@ M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetContentPositionAdjust
M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetDividerImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIControlState,UIKit.UIBarMetrics)
M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetTitleTextAttributes(Foundation.NSDictionary,UIKit.UIControlState)
M:UIKit.UISegmentedControl.UISegmentedControlAppearance.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState)
-M:UIKit.UISelectionFeedbackGenerator.GetFeedbackGenerator(UIKit.UIView)
-M:UIKit.UISelectionFeedbackGenerator.SelectionChanged
-M:UIKit.UISelectionFeedbackGenerator.SelectionChanged(CoreGraphics.CGPoint)
M:UIKit.UIShadowProperties.Copy(Foundation.NSZone)
M:UIKit.UIShadowProperties.EncodeTo(Foundation.NSCoder)
M:UIKit.UIShape.Copy(Foundation.NSZone)
-M:UIKit.UIShape.CreateCapsuleShape
-M:UIKit.UIShape.CreateCircleShape
-M:UIKit.UIShape.CreateFixedRectShape(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat,UIKit.UICornerCurve,UIKit.UIRectCorner)
-M:UIKit.UIShape.CreateFixedRectShape(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIShape.CreateFixedRectShape(CoreGraphics.CGRect)
-M:UIKit.UIShape.CreateRectShape
-M:UIKit.UIShape.CreateRectShape(System.Runtime.InteropServices.NFloat,UIKit.UICornerCurve,UIKit.UIRectCorner)
-M:UIKit.UIShape.CreateRectShape(System.Runtime.InteropServices.NFloat,UIKit.UICornerCurve)
-M:UIKit.UIShape.CreateRectShape(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIShape.CreateResolvedShape(UIKit.UIShapeResolutionContext)
-M:UIKit.UIShape.CreateShape(UIKit.IUIShapeProvider)
-M:UIKit.UIShape.CreateShape(UIKit.UIBezierPath)
-M:UIKit.UIShape.CreateShape(UIKit.UIEdgeInsets)
-M:UIKit.UIShape.CreateShapeByApplyingInset(System.Runtime.InteropServices.NFloat)
-M:UIKit.UISheetPresentationController.#ctor(UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UISheetPresentationController.AnimateChanges(System.Action)
M:UIKit.UISheetPresentationController.Dispose(System.Boolean)
-M:UIKit.UISheetPresentationController.InvalidateDetents
M:UIKit.UISheetPresentationControllerDelegate_Extensions.DidChangeSelectedDetentIdentifier(UIKit.IUISheetPresentationControllerDelegate,UIKit.UISheetPresentationController)
-M:UIKit.UISheetPresentationControllerDelegate.DidAttemptToDismiss(UIKit.UIPresentationController)
-M:UIKit.UISheetPresentationControllerDelegate.DidChangeSelectedDetentIdentifier(UIKit.UISheetPresentationController)
-M:UIKit.UISheetPresentationControllerDelegate.DidDismiss(UIKit.UIPresentationController)
-M:UIKit.UISheetPresentationControllerDelegate.GetAdaptivePresentationStyle(UIKit.UIPresentationController,UIKit.UITraitCollection)
-M:UIKit.UISheetPresentationControllerDelegate.GetAdaptivePresentationStyle(UIKit.UIPresentationController)
-M:UIKit.UISheetPresentationControllerDelegate.GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle)
-M:UIKit.UISheetPresentationControllerDelegate.PrepareAdaptivePresentationController(UIKit.UIPresentationController,UIKit.UIPresentationController)
-M:UIKit.UISheetPresentationControllerDelegate.ShouldDismiss(UIKit.UIPresentationController)
-M:UIKit.UISheetPresentationControllerDelegate.WillDismiss(UIKit.UIPresentationController)
-M:UIKit.UISheetPresentationControllerDelegate.WillPresent(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle,UIKit.IUIViewControllerTransitionCoordinator)
-M:UIKit.UISheetPresentationControllerDetent.Create(System.String,System.Func{UIKit.IUISheetPresentationControllerDetentResolutionContext,System.Runtime.InteropServices.NFloat})
-M:UIKit.UISheetPresentationControllerDetent.CreateLargeDetent
-M:UIKit.UISheetPresentationControllerDetent.CreateMediumDetent
-M:UIKit.UISheetPresentationControllerDetent.GetResolvedValue(UIKit.IUISheetPresentationControllerDetentResolutionContext)
-M:UIKit.UISimpleTextPrintFormatter.#ctor(Foundation.NSAttributedString)
-M:UIKit.UISimpleTextPrintFormatter.#ctor(System.String)
-M:UIKit.UISlider.#ctor(CoreGraphics.CGRect)
-M:UIKit.UISlider.MaxTrackImage(UIKit.UIControlState)
-M:UIKit.UISlider.MaxValueImageRectForBounds(CoreGraphics.CGRect)
-M:UIKit.UISlider.MinTrackImage(UIKit.UIControlState)
-M:UIKit.UISlider.MinValueImageRectForBounds(CoreGraphics.CGRect)
-M:UIKit.UISlider.SetMaxTrackImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UISlider.SetMinTrackImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UISlider.SetThumbImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UISlider.SetValue(System.Single,System.Boolean)
-M:UIKit.UISlider.ThumbImage(UIKit.UIControlState)
-M:UIKit.UISlider.ThumbRectForBounds(CoreGraphics.CGRect,CoreGraphics.CGRect,System.Single)
-M:UIKit.UISlider.TrackRectForBounds(CoreGraphics.CGRect)
M:UIKit.UISlider.UISliderAppearance.#ctor(System.IntPtr)
M:UIKit.UISlider.UISliderAppearance.MaxTrackImage(UIKit.UIControlState)
M:UIKit.UISlider.UISliderAppearance.MinTrackImage(UIKit.UIControlState)
@@ -60608,12 +44346,9 @@ M:UIKit.UISlider.UISliderAppearance.SetMaxTrackImage(UIKit.UIImage,UIKit.UIContr
M:UIKit.UISlider.UISliderAppearance.SetMinTrackImage(UIKit.UIImage,UIKit.UIControlState)
M:UIKit.UISlider.UISliderAppearance.SetThumbImage(UIKit.UIImage,UIKit.UIControlState)
M:UIKit.UISlider.UISliderAppearance.ThumbImage(UIKit.UIControlState)
-M:UIKit.UISnapBehavior.#ctor(UIKit.IUIDynamicItem,CoreGraphics.CGPoint)
M:UIKit.UISplitViewController_UIViewController.CollapseSecondaryViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UISplitViewController)
M:UIKit.UISplitViewController_UIViewController.GetSplitViewController(UIKit.UIViewController)
M:UIKit.UISplitViewController_UIViewController.SeparateSecondaryViewControllerForSplitViewController(UIKit.UIViewController,UIKit.UISplitViewController)
-M:UIKit.UISplitViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UISplitViewController.#ctor(UIKit.UISplitViewControllerStyle)
M:UIKit.UISplitViewController.add_DidCollapse(System.EventHandler)
M:UIKit.UISplitViewController.add_DidExpand(System.EventHandler)
M:UIKit.UISplitViewController.add_InteractivePresentationGestureDidEnd(System.EventHandler)
@@ -60625,8 +44360,6 @@ M:UIKit.UISplitViewController.add_WillPresentViewController(System.EventHandler{
M:UIKit.UISplitViewController.add_WillShowColumn(System.EventHandler{UIKit.UISplitViewControllerWillShowHideColumnEventArgs})
M:UIKit.UISplitViewController.add_WillShowViewController(System.EventHandler{UIKit.UISplitViewShowEventArgs})
M:UIKit.UISplitViewController.Dispose(System.Boolean)
-M:UIKit.UISplitViewController.GetViewController(UIKit.UISplitViewControllerColumn)
-M:UIKit.UISplitViewController.HideColumn(UIKit.UISplitViewControllerColumn)
M:UIKit.UISplitViewController.remove_DidCollapse(System.EventHandler)
M:UIKit.UISplitViewController.remove_DidExpand(System.EventHandler)
M:UIKit.UISplitViewController.remove_InteractivePresentationGestureDidEnd(System.EventHandler)
@@ -60637,10 +44370,6 @@ M:UIKit.UISplitViewController.remove_WillHideViewController(System.EventHandler{
M:UIKit.UISplitViewController.remove_WillPresentViewController(System.EventHandler{UIKit.UISplitViewPresentEventArgs})
M:UIKit.UISplitViewController.remove_WillShowColumn(System.EventHandler{UIKit.UISplitViewControllerWillShowHideColumnEventArgs})
M:UIKit.UISplitViewController.remove_WillShowViewController(System.EventHandler{UIKit.UISplitViewShowEventArgs})
-M:UIKit.UISplitViewController.SetViewController(UIKit.UIViewController,UIKit.UISplitViewControllerColumn)
-M:UIKit.UISplitViewController.ShowColumn(UIKit.UISplitViewControllerColumn)
-M:UIKit.UISplitViewController.ShowDetailViewController(UIKit.UIViewController,Foundation.NSObject)
-M:UIKit.UISplitViewController.ShowViewController(UIKit.UIViewController,Foundation.NSObject)
M:UIKit.UISplitViewControllerDelegate_Extensions.CollapseSecondViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIViewController)
M:UIKit.UISplitViewControllerDelegate_Extensions.DidCollapse(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController)
M:UIKit.UISplitViewControllerDelegate_Extensions.DidExpand(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController)
@@ -60663,81 +44392,24 @@ M:UIKit.UISplitViewControllerDelegate_Extensions.WillHideViewController(UIKit.IU
M:UIKit.UISplitViewControllerDelegate_Extensions.WillPresentViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIPopoverController,UIKit.UIViewController)
M:UIKit.UISplitViewControllerDelegate_Extensions.WillShowColumn(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn)
M:UIKit.UISplitViewControllerDelegate_Extensions.WillShowViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIBarButtonItem)
-M:UIKit.UISplitViewControllerDelegate.CollapseSecondViewController(UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UISplitViewControllerDelegate.DidCollapse(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.DidExpand(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)
-M:UIKit.UISplitViewControllerDelegate.EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject)
-M:UIKit.UISplitViewControllerDelegate.GetDisplayModeForExpanding(UIKit.UISplitViewController,UIKit.UISplitViewControllerDisplayMode)
-M:UIKit.UISplitViewControllerDelegate.GetPreferredInterfaceOrientationForPresentation(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.GetTargetDisplayModeForAction(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.GetTopColumnForCollapsing(UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn)
-M:UIKit.UISplitViewControllerDelegate.InteractivePresentationGestureDidEnd(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.InteractivePresentationGestureWillBegin(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController)
-M:UIKit.UISplitViewControllerDelegate.ShouldHideViewController(UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIInterfaceOrientation)
-M:UIKit.UISplitViewControllerDelegate.SupportedInterfaceOrientations(UIKit.UISplitViewController)
-M:UIKit.UISplitViewControllerDelegate.WillChangeDisplayMode(UIKit.UISplitViewController,UIKit.UISplitViewControllerDisplayMode)
-M:UIKit.UISplitViewControllerDelegate.WillHideColumn(UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn)
-M:UIKit.UISplitViewControllerDelegate.WillHideViewController(UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIBarButtonItem,UIKit.UIPopoverController)
-M:UIKit.UISplitViewControllerDelegate.WillPresentViewController(UIKit.UISplitViewController,UIKit.UIPopoverController,UIKit.UIViewController)
-M:UIKit.UISplitViewControllerDelegate.WillShowColumn(UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn)
-M:UIKit.UISplitViewControllerDelegate.WillShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIBarButtonItem)
M:UIKit.UISplitViewControllerDisplayModeEventArgs.#ctor(UIKit.UISplitViewControllerDisplayMode)
M:UIKit.UISplitViewControllerWillShowHideColumnEventArgs.#ctor(UIKit.UISplitViewControllerColumn)
M:UIKit.UISplitViewHideEventArgs.#ctor(UIKit.UIViewController,UIKit.UIBarButtonItem,UIKit.UIPopoverController)
M:UIKit.UISplitViewPresentEventArgs.#ctor(UIKit.UIPopoverController,UIKit.UIViewController)
M:UIKit.UISplitViewShowEventArgs.#ctor(UIKit.UIViewController,UIKit.UIBarButtonItem)
-M:UIKit.UISpringLoadedInteraction.#ctor(System.Action{UIKit.UISpringLoadedInteraction,UIKit.IUISpringLoadedInteractionContext})
-M:UIKit.UISpringLoadedInteraction.#ctor(UIKit.IUISpringLoadedInteractionBehavior,UIKit.IUISpringLoadedInteractionEffect,System.Action{UIKit.UISpringLoadedInteraction,UIKit.IUISpringLoadedInteractionContext})
-M:UIKit.UISpringLoadedInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UISpringLoadedInteraction.Dispose(System.Boolean)
-M:UIKit.UISpringLoadedInteraction.WillMoveToView(UIKit.UIView)
M:UIKit.UISpringLoadedInteractionBehavior_Extensions.InteractionDidFinish(UIKit.IUISpringLoadedInteractionBehavior,UIKit.UISpringLoadedInteraction)
-M:UIKit.UISpringTimingParameters.#ctor
-M:UIKit.UISpringTimingParameters.#ctor(System.Double,System.Runtime.InteropServices.NFloat,CoreGraphics.CGVector)
-M:UIKit.UISpringTimingParameters.#ctor(System.Double,System.Runtime.InteropServices.NFloat)
-M:UIKit.UISpringTimingParameters.#ctor(System.Runtime.InteropServices.NFloat,CoreGraphics.CGVector)
-M:UIKit.UISpringTimingParameters.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,CoreGraphics.CGVector)
-M:UIKit.UISpringTimingParameters.#ctor(System.Runtime.InteropServices.NFloat)
M:UIKit.UISpringTimingParameters.Copy(Foundation.NSZone)
M:UIKit.UISpringTimingParameters.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIStackView.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIStackView.#ctor(UIKit.UIView[])
-M:UIKit.UIStackView.AddArrangedSubview(UIKit.UIView)
-M:UIKit.UIStackView.GetCustomSpacing(UIKit.UIView)
-M:UIKit.UIStackView.InsertArrangedSubview(UIKit.UIView,System.UIntPtr)
-M:UIKit.UIStackView.RemoveArrangedSubview(UIKit.UIView)
-M:UIKit.UIStackView.SetCustomSpacing(System.Runtime.InteropServices.NFloat,UIKit.UIView)
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)
M:UIKit.UIStateRestoring_Extensions.GetObjectRestorationClass(UIKit.IUIStateRestoring)
M:UIKit.UIStateRestoring_Extensions.GetRestorationParent(UIKit.IUIStateRestoring)
-M:UIKit.UIStateRestoring.ApplicationFinishedRestoringState
-M:UIKit.UIStateRestoring.DecodeRestorableState(Foundation.NSCoder)
-M:UIKit.UIStateRestoring.EncodeRestorableState(Foundation.NSCoder)
M:UIKit.UIStatusBarFrameChangeEventArgs.#ctor(Foundation.NSNotification)
M:UIKit.UIStatusBarOrientationChangeEventArgs.#ctor(Foundation.NSNotification)
-M:UIKit.UIStepper.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIStepper.BackgroundImage(UIKit.UIControlState)
-M:UIKit.UIStepper.GetDecrementImage(UIKit.UIControlState)
-M:UIKit.UIStepper.GetDividerImage(UIKit.UIControlState,UIKit.UIControlState)
-M:UIKit.UIStepper.GetIncrementImage(UIKit.UIControlState)
-M:UIKit.UIStepper.SetBackgroundImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UIStepper.SetDecrementImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UIStepper.SetDividerImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIControlState)
-M:UIKit.UIStepper.SetIncrementImage(UIKit.UIImage,UIKit.UIControlState)
M:UIKit.UIStepper.UIStepperAppearance.#ctor(System.IntPtr)
M:UIKit.UIStepper.UIStepperAppearance.BackgroundImage(UIKit.UIControlState)
M:UIKit.UIStepper.UIStepperAppearance.GetDecrementImage(UIKit.UIControlState)
@@ -60747,15 +44419,6 @@ M:UIKit.UIStepper.UIStepperAppearance.SetBackgroundImage(UIKit.UIImage,UIKit.UIC
M:UIKit.UIStepper.UIStepperAppearance.SetDecrementImage(UIKit.UIImage,UIKit.UIControlState)
M:UIKit.UIStepper.UIStepperAppearance.SetDividerImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIControlState)
M:UIKit.UIStepper.UIStepperAppearance.SetIncrementImage(UIKit.UIImage,UIKit.UIControlState)
-M:UIKit.UIStoryboard.FromName(System.String,Foundation.NSBundle)
-M:UIKit.UIStoryboard.InstantiateInitialViewController
-M:UIKit.UIStoryboard.InstantiateInitialViewController(UIKit.UIStoryboardViewControllerCreator)
-M:UIKit.UIStoryboard.InstantiateViewController(System.String,UIKit.UIStoryboardViewControllerCreator)
-M:UIKit.UIStoryboard.InstantiateViewController(System.String)
-M:UIKit.UIStoryboardPopoverSegue.#ctor(System.String,UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UIStoryboardSegue.#ctor(System.String,UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UIStoryboardSegue.Create(System.String,UIKit.UIViewController,UIKit.UIViewController,System.Action)
-M:UIKit.UIStoryboardSegue.Perform
M:UIKit.UIStringAttributes.#ctor
M:UIKit.UIStringAttributes.#ctor(Foundation.NSDictionary)
M:UIKit.UIStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,UIKit.UIFont,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat@,UIKit.UILineBreakMode,UIKit.UIBaselineAdjustment)
@@ -60782,38 +44445,24 @@ M:UIKit.UIStringDrawing.StringSize(System.String,UIKit.UIFont,CoreGraphics.CGSiz
M:UIKit.UIStringDrawing.StringSize(System.String,UIKit.UIFont,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat,UIKit.UILineBreakMode)
M:UIKit.UIStringDrawing.StringSize(System.String,UIKit.UIFont,System.Runtime.InteropServices.NFloat,UIKit.UILineBreakMode)
M:UIKit.UIStringDrawing.StringSize(System.String,UIKit.UIFont)
-M:UIKit.UISwipeActionsConfiguration.FromActions(UIKit.UIContextualAction[])
-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(CoreGraphics.CGRect)
M:UIKit.UISwitch.EncodeTo(Foundation.NSCoder)
-M:UIKit.UISwitch.SetState(System.Boolean,System.Boolean)
M:UIKit.UISwitch.UISwitchAppearance.#ctor(System.IntPtr)
M:UIKit.UISymbolEffectCompletionContext.Dispose(System.Boolean)
-M:UIKit.UITab.#ctor(System.String,UIKit.UIImage,System.String,System.Func{UIKit.UITab,UIKit.UIViewController})
-M:UIKit.UITab.GetFrame(UIKit.UIView)
-M:UIKit.UITabBar.#ctor(CoreGraphics.CGRect)
M:UIKit.UITabBar.add_DidBeginCustomizingItems(System.EventHandler{UIKit.UITabBarItemsEventArgs})
M:UIKit.UITabBar.add_DidEndCustomizingItems(System.EventHandler{UIKit.UITabBarFinalItemsEventArgs})
M:UIKit.UITabBar.add_ItemSelected(System.EventHandler{UIKit.UITabBarItemEventArgs})
M:UIKit.UITabBar.add_WillBeginCustomizingItems(System.EventHandler{UIKit.UITabBarItemsEventArgs})
M:UIKit.UITabBar.add_WillEndCustomizingItems(System.EventHandler{UIKit.UITabBarFinalItemsEventArgs})
-M:UIKit.UITabBar.BeginCustomizingItems(UIKit.UITabBarItem[])
M:UIKit.UITabBar.Dispose(System.Boolean)
-M:UIKit.UITabBar.EndCustomizing(System.Boolean)
M:UIKit.UITabBar.remove_DidBeginCustomizingItems(System.EventHandler{UIKit.UITabBarItemsEventArgs})
M:UIKit.UITabBar.remove_DidEndCustomizingItems(System.EventHandler{UIKit.UITabBarFinalItemsEventArgs})
M:UIKit.UITabBar.remove_ItemSelected(System.EventHandler{UIKit.UITabBarItemEventArgs})
M:UIKit.UITabBar.remove_WillBeginCustomizingItems(System.EventHandler{UIKit.UITabBarItemsEventArgs})
M:UIKit.UITabBar.remove_WillEndCustomizingItems(System.EventHandler{UIKit.UITabBarFinalItemsEventArgs})
-M:UIKit.UITabBar.SetItems(UIKit.UITabBarItem[],System.Boolean)
M:UIKit.UITabBar.UITabBarAppearance.#ctor(System.IntPtr)
M:UIKit.UITabBarAcceptItemsEventArgs.#ctor(UIKit.UITab,UIKit.IUIDropSession)
-M:UIKit.UITabBarAppearance.#ctor(UIKit.UIBarAppearance)
-M:UIKit.UITabBarAppearance.#ctor(UIKit.UIUserInterfaceIdiom)
-M:UIKit.UITabBarController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UITabBarController.#ctor(UIKit.UITab[])
M:UIKit.UITabBarController.add_AcceptItemsFromDropSession(System.EventHandler{UIKit.UITabBarAcceptItemsEventArgs})
M:UIKit.UITabBarController.add_DidBeginEditing(System.EventHandler)
M:UIKit.UITabBarController.add_DidSelectTab(System.EventHandler{UIKit.UITabBarTabSelectionEventArgs})
@@ -60824,11 +44473,7 @@ M:UIKit.UITabBarController.add_OnEndCustomizingViewControllers(System.EventHandl
M:UIKit.UITabBarController.add_ViewControllerSelected(System.EventHandler{UIKit.UITabBarSelectionEventArgs})
M:UIKit.UITabBarController.add_VisibilityDidChangeForTabs(System.EventHandler{UIKit.UITabBarTabVisibilityChangeEventArgs})
M:UIKit.UITabBarController.add_WillBeginEditing(System.EventHandler)
-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.GetTab(System.String)
-M:UIKit.UITabBarController.ItemSelected(UIKit.UITabBar,UIKit.UITabBarItem)
M:UIKit.UITabBarController.remove_AcceptItemsFromDropSession(System.EventHandler{UIKit.UITabBarAcceptItemsEventArgs})
M:UIKit.UITabBarController.remove_DidBeginEditing(System.EventHandler)
M:UIKit.UITabBarController.remove_DidSelectTab(System.EventHandler{UIKit.UITabBarTabSelectionEventArgs})
@@ -60839,11 +44484,6 @@ M:UIKit.UITabBarController.remove_OnEndCustomizingViewControllers(System.EventHa
M:UIKit.UITabBarController.remove_ViewControllerSelected(System.EventHandler{UIKit.UITabBarSelectionEventArgs})
M:UIKit.UITabBarController.remove_VisibilityDidChangeForTabs(System.EventHandler{UIKit.UITabBarTabVisibilityChangeEventArgs})
M:UIKit.UITabBarController.remove_WillBeginEditing(System.EventHandler)
-M:UIKit.UITabBarController.SetTabBarHidden(System.Boolean,System.Boolean)
-M:UIKit.UITabBarController.SetTabs(UIKit.UITab[],System.Boolean)
-M:UIKit.UITabBarController.SetViewControllers(UIKit.UIViewController[],System.Boolean)
-M:UIKit.UITabBarController.WillBeginCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[])
-M:UIKit.UITabBarController.WillEndCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean)
M:UIKit.UITabBarControllerDelegate_Extensions.AcceptItemsFromDropSession(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITab,UIKit.IUIDropSession)
M:UIKit.UITabBarControllerDelegate_Extensions.DidBeginEditing(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController)
M:UIKit.UITabBarControllerDelegate_Extensions.DidSelectTab(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITab,UIKit.UITab)
@@ -60862,35 +44502,7 @@ M:UIKit.UITabBarControllerDelegate_Extensions.SupportedInterfaceOrientations(UIK
M:UIKit.UITabBarControllerDelegate_Extensions.ViewControllerSelected(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController)
M:UIKit.UITabBarControllerDelegate_Extensions.VisibilityDidChangeForTabs(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITab[])
M:UIKit.UITabBarControllerDelegate_Extensions.WillBeginEditing(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController)
-M:UIKit.UITabBarControllerDelegate.AcceptItemsFromDropSession(UIKit.UITabBarController,UIKit.UITab,UIKit.IUIDropSession)
-M:UIKit.UITabBarControllerDelegate.DidBeginEditing(UIKit.UITabBarController)
-M:UIKit.UITabBarControllerDelegate.DidSelectTab(UIKit.UITabBarController,UIKit.UITab,UIKit.UITab)
-M:UIKit.UITabBarControllerDelegate.DisplayOrderDidChangeForGroup(UIKit.UITabBarController,UIKit.UITabGroup)
-M:UIKit.UITabBarControllerDelegate.FinishedCustomizingViewControllers(UIKit.UITabBarController,UIKit.UIViewController[],System.Boolean)
-M:UIKit.UITabBarControllerDelegate.GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UITabBarControllerDelegate.GetDisplayedViewControllers(UIKit.UITabBarController,UIKit.UITab,UIKit.UIViewController[])
-M:UIKit.UITabBarControllerDelegate.GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning)
-M:UIKit.UITabBarControllerDelegate.GetOperationForAcceptingItemsFromDropSession(UIKit.UITabBarController,UIKit.UITab,UIKit.IUIDropSession)
-M:UIKit.UITabBarControllerDelegate.GetPreferredInterfaceOrientation(UIKit.UITabBarController)
-M:UIKit.UITabBarControllerDelegate.OnCustomizingViewControllers(UIKit.UITabBarController,UIKit.UIViewController[])
-M:UIKit.UITabBarControllerDelegate.OnEndCustomizingViewControllers(UIKit.UITabBarController,UIKit.UIViewController[],System.Boolean)
-M:UIKit.UITabBarControllerDelegate.ShouldSelectTab(UIKit.UITabBarController,UIKit.UITab)
-M:UIKit.UITabBarControllerDelegate.ShouldSelectViewController(UIKit.UITabBarController,UIKit.UIViewController)
-M:UIKit.UITabBarControllerDelegate.SupportedInterfaceOrientations(UIKit.UITabBarController)
-M:UIKit.UITabBarControllerDelegate.ViewControllerSelected(UIKit.UITabBarController,UIKit.UIViewController)
-M:UIKit.UITabBarControllerDelegate.VisibilityDidChangeForTabs(UIKit.UITabBarController,UIKit.UITab[])
-M:UIKit.UITabBarControllerDelegate.WillBeginEditing(UIKit.UITabBarController)
M:UIKit.UITabBarControllerSidebar.Dispose(System.Boolean)
-M:UIKit.UITabBarControllerSidebar.ReconfigureItemForTab(UIKit.UITab)
-M:UIKit.UITabBarControllerSidebar.ScrollToTarget(UIKit.UITabSidebarScrollTarget,System.Boolean)
-M:UIKit.UITabBarControllerSidebarDelegate.DidEndDisplayingTab(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITab)
-M:UIKit.UITabBarControllerSidebarDelegate.GetContextMenuConfigurationForTab(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITab)
-M:UIKit.UITabBarControllerSidebarDelegate.GetItemForRequest(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITabSidebarItemRequest)
-M:UIKit.UITabBarControllerSidebarDelegate.GetLeadingSwipeActionsConfigurationForTab(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITab)
-M:UIKit.UITabBarControllerSidebarDelegate.GetTrailingSwipeActionsConfigurationForTab(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITab)
-M:UIKit.UITabBarControllerSidebarDelegate.SidebarVisibilityWillChange(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.IUITabBarControllerSidebarAnimating)
-M:UIKit.UITabBarControllerSidebarDelegate.UpdateItem(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITabSidebarItem)
-M:UIKit.UITabBarControllerSidebarDelegate.WillBeginDisplayingTab(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITab)
M:UIKit.UITabBarCustomizeChangeEventArgs.#ctor(UIKit.UIViewController[],System.Boolean)
M:UIKit.UITabBarCustomizeEventArgs.#ctor(UIKit.UIViewController[])
M:UIKit.UITabBarDelegate_Extensions.DidBeginCustomizingItems(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem[])
@@ -60898,24 +44510,12 @@ M:UIKit.UITabBarDelegate_Extensions.DidEndCustomizingItems(UIKit.IUITabBarDelega
M:UIKit.UITabBarDelegate_Extensions.ItemSelected(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem)
M:UIKit.UITabBarDelegate_Extensions.WillBeginCustomizingItems(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem[])
M:UIKit.UITabBarDelegate_Extensions.WillEndCustomizingItems(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean)
-M:UIKit.UITabBarDelegate.DidBeginCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[])
-M:UIKit.UITabBarDelegate.DidEndCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean)
-M:UIKit.UITabBarDelegate.ItemSelected(UIKit.UITabBar,UIKit.UITabBarItem)
-M:UIKit.UITabBarDelegate.WillBeginCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[])
-M:UIKit.UITabBarDelegate.WillEndCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean)
M:UIKit.UITabBarDisplayOrderChangeEventArgs.#ctor(UIKit.UITabGroup)
M:UIKit.UITabBarFinalItemsEventArgs.#ctor(UIKit.UITabBarItem[],System.Boolean)
-M:UIKit.UITabBarItem.#ctor(System.String,UIKit.UIImage,System.IntPtr)
-M:UIKit.UITabBarItem.#ctor(System.String,UIKit.UIImage,UIKit.UIImage)
-M:UIKit.UITabBarItem.#ctor(UIKit.UITabBarSystemItem,System.IntPtr)
M:UIKit.UITabBarItem.EncodeTo(Foundation.NSCoder)
M:UIKit.UITabBarItem.GetBadgeTextAttributes(UIKit.UIControlState)
-M:UIKit.UITabBarItem.GetFrame(UIKit.UIView)
M:UIKit.UITabBarItem.SetBadgeTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState)
-M:UIKit.UITabBarItem.SetFinishedImages(UIKit.UIImage,UIKit.UIImage)
M:UIKit.UITabBarItem.UITabBarItemAppearance.#ctor(System.IntPtr)
-M:UIKit.UITabBarItemAppearance.#ctor(UIKit.UITabBarItemAppearanceStyle)
-M:UIKit.UITabBarItemAppearance.ConfigureWithDefault(UIKit.UITabBarItemAppearanceStyle)
M:UIKit.UITabBarItemAppearance.Copy(Foundation.NSZone)
M:UIKit.UITabBarItemAppearance.EncodeTo(Foundation.NSCoder)
M:UIKit.UITabBarItemEventArgs.#ctor(UIKit.UITabBarItem)
@@ -60923,149 +44523,22 @@ M:UIKit.UITabBarItemsEventArgs.#ctor(UIKit.UITabBarItem[])
M:UIKit.UITabBarSelectionEventArgs.#ctor(UIKit.UIViewController)
M:UIKit.UITabBarTabSelectionEventArgs.#ctor(UIKit.UITab,UIKit.UITab)
M:UIKit.UITabBarTabVisibilityChangeEventArgs.#ctor(UIKit.UITab[])
-M:UIKit.UITabGroup.#ctor(System.String,UIKit.UIImage,System.String,UIKit.UITab[],System.Func{UIKit.UITab,UIKit.UIViewController})
-M:UIKit.UITabGroup.GetTab(System.String)
-M:UIKit.UITableView.#ctor(CoreGraphics.CGRect,UIKit.UITableViewStyle)
-M:UIKit.UITableView.#ctor(CoreGraphics.CGRect)
-M:UIKit.UITableView.BeginUpdates
-M:UIKit.UITableView.CellAt(Foundation.NSIndexPath)
-M:UIKit.UITableView.DeleteRows(Foundation.NSIndexPath[],UIKit.UITableViewRowAnimation)
-M:UIKit.UITableView.DeleteSections(Foundation.NSIndexSet,UIKit.UITableViewRowAnimation)
-M:UIKit.UITableView.DequeueReusableCell(Foundation.NSString,Foundation.NSIndexPath)
M:UIKit.UITableView.DequeueReusableCell(Foundation.NSString)
M:UIKit.UITableView.DequeueReusableCell(System.String,Foundation.NSIndexPath)
-M:UIKit.UITableView.DequeueReusableCell(System.String)
-M:UIKit.UITableView.DequeueReusableHeaderFooterView(Foundation.NSString)
M:UIKit.UITableView.DequeueReusableHeaderFooterView(System.String)
-M:UIKit.UITableView.DeselectRow(Foundation.NSIndexPath,System.Boolean)
M:UIKit.UITableView.Dispose(System.Boolean)
M:UIKit.UITableView.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITableView.EndUpdates
-M:UIKit.UITableView.GetDataSourceIndexPath(Foundation.NSIndexPath)
-M:UIKit.UITableView.GetDataSourceSectionIndex(System.IntPtr)
-M:UIKit.UITableView.GetFooterView(System.IntPtr)
-M:UIKit.UITableView.GetHeaderView(System.IntPtr)
-M:UIKit.UITableView.GetPresentationIndexPath(Foundation.NSIndexPath)
-M:UIKit.UITableView.GetPresentationSectionIndex(System.IntPtr)
-M:UIKit.UITableView.IndexPathForCell(UIKit.UITableViewCell)
-M:UIKit.UITableView.IndexPathForRowAtPoint(CoreGraphics.CGPoint)
-M:UIKit.UITableView.InsertRows(Foundation.NSIndexPath[],UIKit.UITableViewRowAnimation)
-M:UIKit.UITableView.InsertSections(Foundation.NSIndexSet,UIKit.UITableViewRowAnimation)
-M:UIKit.UITableView.MoveRow(Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UITableView.MoveSection(System.IntPtr,System.IntPtr)
-M:UIKit.UITableView.NumberOfRowsInSection(System.IntPtr)
-M:UIKit.UITableView.NumberOfSections
-M:UIKit.UITableView.PerformBatchUpdates(System.Action,System.Action{System.Boolean})
M:UIKit.UITableView.PerformBatchUpdatesAsync(System.Action)
-M:UIKit.UITableView.PerformUsingPresentationValues(System.Action)
-M:UIKit.UITableView.ReconfigureRows(Foundation.NSIndexPath[])
-M:UIKit.UITableView.RectForFooterInSection(System.IntPtr)
-M:UIKit.UITableView.RectForHeaderInSection(System.IntPtr)
-M:UIKit.UITableView.RectForRowAtIndexPath(Foundation.NSIndexPath)
-M:UIKit.UITableView.RectForSection(System.IntPtr)
M:UIKit.UITableView.RegisterClassForCellReuse(System.Type,Foundation.NSString)
M:UIKit.UITableView.RegisterClassForCellReuse(System.Type,System.String)
M:UIKit.UITableView.RegisterClassForHeaderFooterViewReuse(System.Type,Foundation.NSString)
M:UIKit.UITableView.RegisterClassForHeaderFooterViewReuse(System.Type,System.String)
-M:UIKit.UITableView.RegisterNibForCellReuse(UIKit.UINib,Foundation.NSString)
M:UIKit.UITableView.RegisterNibForCellReuse(UIKit.UINib,System.String)
-M:UIKit.UITableView.RegisterNibForHeaderFooterViewReuse(UIKit.UINib,Foundation.NSString)
M:UIKit.UITableView.RegisterNibForHeaderFooterViewReuse(UIKit.UINib,System.String)
-M:UIKit.UITableView.ReloadData
-M:UIKit.UITableView.ReloadRows(Foundation.NSIndexPath[],UIKit.UITableViewRowAnimation)
-M:UIKit.UITableView.ReloadSectionIndexTitles
-M:UIKit.UITableView.ReloadSections(Foundation.NSIndexSet,UIKit.UITableViewRowAnimation)
-M:UIKit.UITableView.ScrollToNearestSelected(UIKit.UITableViewScrollPosition,System.Boolean)
-M:UIKit.UITableView.ScrollToRow(Foundation.NSIndexPath,UIKit.UITableViewScrollPosition,System.Boolean)
-M:UIKit.UITableView.SelectRow(Foundation.NSIndexPath,System.Boolean,UIKit.UITableViewScrollPosition)
-M:UIKit.UITableView.SetEditing(System.Boolean,System.Boolean)
M:UIKit.UITableView.UITableViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UITableViewCell.#ctor(CoreGraphics.CGRect)
-M:UIKit.UITableViewCell.#ctor(UIKit.UITableViewCellStyle,Foundation.NSString)
M:UIKit.UITableViewCell.#ctor(UIKit.UITableViewCellStyle,System.String)
-M:UIKit.UITableViewCell.DidTransitionToState(UIKit.UITableViewCellState)
-M:UIKit.UITableViewCell.DragStateDidChange(UIKit.UITableViewCellDragState)
M:UIKit.UITableViewCell.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITableViewCell.PrepareForReuse
-M:UIKit.UITableViewCell.SetEditing(System.Boolean,System.Boolean)
-M:UIKit.UITableViewCell.SetHighlighted(System.Boolean,System.Boolean)
-M:UIKit.UITableViewCell.SetNeedsUpdateConfiguration
-M:UIKit.UITableViewCell.SetSelected(System.Boolean,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.UpdateConfiguration(UIKit.UICellConfigurationState)
-M:UIKit.UITableViewCell.WillTransitionToState(UIKit.UITableViewCellState)
-M:UIKit.UITableViewController.#ctor(System.String,Foundation.NSBundle)
-M:UIKit.UITableViewController.#ctor(UIKit.UITableViewStyle)
-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.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.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)
@@ -61075,17 +44548,6 @@ M:UIKit.UITableViewDataSource_Extensions.SectionFor(UIKit.IUITableViewDataSource
M:UIKit.UITableViewDataSource_Extensions.SectionIndexTitles(UIKit.IUITableViewDataSource,UIKit.UITableView)
M:UIKit.UITableViewDataSource_Extensions.TitleForFooter(UIKit.IUITableViewDataSource,UIKit.UITableView,System.IntPtr)
M:UIKit.UITableViewDataSource_Extensions.TitleForHeader(UIKit.IUITableViewDataSource,UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDataSource.CanEditRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDataSource.CanMoveRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDataSource.CommitEditingStyle(UIKit.UITableView,UIKit.UITableViewCellEditingStyle,Foundation.NSIndexPath)
-M:UIKit.UITableViewDataSource.GetCell(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDataSource.MoveRow(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UITableViewDataSource.NumberOfSections(UIKit.UITableView)
-M:UIKit.UITableViewDataSource.RowsInSection(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDataSource.SectionFor(UIKit.UITableView,System.String,System.IntPtr)
-M:UIKit.UITableViewDataSource.SectionIndexTitles(UIKit.UITableView)
-M:UIKit.UITableViewDataSource.TitleForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDataSource.TitleForHeader(UIKit.UITableView,System.IntPtr)
M:UIKit.UITableViewDataSourcePrefetching_Extensions.CancelPrefetching(UIKit.IUITableViewDataSourcePrefetching,UIKit.UITableView,Foundation.NSIndexPath[])
M:UIKit.UITableViewDelegate_Extensions.AccessoryButtonTapped(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath)
M:UIKit.UITableViewDelegate_Extensions.CanFocusRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath)
@@ -61139,235 +44601,37 @@ M:UIKit.UITableViewDelegate_Extensions.WillDisplayHeaderView(UIKit.IUITableViewD
M:UIKit.UITableViewDelegate_Extensions.WillEndContextMenuInteraction(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
M:UIKit.UITableViewDelegate_Extensions.WillPerformPreviewAction(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
M:UIKit.UITableViewDelegate_Extensions.WillSelectRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.AccessoryButtonTapped(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.CanFocusRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.CanPerformAction(UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UITableViewDelegate.CanPerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.CellDisplayingEnded(UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.CustomizeMoveTarget(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.DidBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.DidEndMultipleSelectionInteraction(UIKit.UITableView)
-M:UIKit.UITableViewDelegate.DidUpdateFocus(UIKit.UITableView,UIKit.UITableViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
-M:UIKit.UITableViewDelegate.EditActionsForRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.EditingStyleForRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.EstimatedHeight(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.EstimatedHeightForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDelegate.EstimatedHeightForHeader(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDelegate.FooterViewDisplayingEnded(UIKit.UITableView,UIKit.UIView,System.IntPtr)
-M:UIKit.UITableViewDelegate.GetContextMenuConfiguration(UIKit.UITableView,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UITableViewDelegate.GetHeightForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDelegate.GetHeightForHeader(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDelegate.GetHeightForRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.GetIndexPathForPreferredFocusedView(UIKit.UITableView)
-M:UIKit.UITableViewDelegate.GetLeadingSwipeActionsConfiguration(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.GetPreviewForDismissingContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration)
-M:UIKit.UITableViewDelegate.GetPreviewForHighlightingContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration)
-M:UIKit.UITableViewDelegate.GetSelectionFollowsFocusForRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.GetTrailingSwipeActionsConfiguration(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.GetViewForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDelegate.GetViewForHeader(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDelegate.HeaderViewDisplayingEnded(UIKit.UITableView,UIKit.UIView,System.IntPtr)
-M:UIKit.UITableViewDelegate.IndentationLevel(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.PerformAction(UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UITableViewDelegate.PerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.RowDeselected(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.RowHighlighted(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.RowSelected(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.RowUnhighlighted(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.ShouldBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.ShouldHighlightRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.ShouldIndentWhileEditing(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.ShouldShowMenu(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.ShouldSpringLoadRow(UIKit.UITableView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext)
-M:UIKit.UITableViewDelegate.ShouldUpdateFocus(UIKit.UITableView,UIKit.UITableViewFocusUpdateContext)
-M:UIKit.UITableViewDelegate.TitleForDeleteConfirmation(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.WillBeginEditing(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.WillDeselectRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.WillDisplay(UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath)
-M:UIKit.UITableViewDelegate.WillDisplayContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UITableViewDelegate.WillDisplayFooterView(UIKit.UITableView,UIKit.UIView,System.IntPtr)
-M:UIKit.UITableViewDelegate.WillDisplayHeaderView(UIKit.UITableView,UIKit.UIView,System.IntPtr)
-M:UIKit.UITableViewDelegate.WillEndContextMenuInteraction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UITableViewDelegate.WillPerformPreviewAction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.UITableViewDelegate.WillSelectRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDiffableDataSource`2.#ctor(UIKit.UITableView,UIKit.UITableViewDiffableDataSourceCellProvider)
-M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshot(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean,System.Action)
-M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshot(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
-M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotUsingReloadData(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Action)
-M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotUsingReloadData(UIKit.NSDiffableDataSourceSnapshot{`0,`1})
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.GetCell(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDiffableDataSource`2.GetIndex(`0)
-M:UIKit.UITableViewDiffableDataSource`2.GetIndexPath(`1)
-M:UIKit.UITableViewDiffableDataSource`2.GetItemIdentifier(Foundation.NSIndexPath)
-M:UIKit.UITableViewDiffableDataSource`2.GetSectionIdentifier(System.IntPtr)
-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.TitleForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewDiffableDataSource`2.TitleForHeader(UIKit.UITableView,System.IntPtr)
M:UIKit.UITableViewDragDelegate_Extensions.DragSessionAllowsMoveOperation(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession)
M:UIKit.UITableViewDragDelegate_Extensions.DragSessionDidEnd(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession)
M:UIKit.UITableViewDragDelegate_Extensions.DragSessionIsRestrictedToDraggingApplication(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession)
M:UIKit.UITableViewDragDelegate_Extensions.DragSessionWillBegin(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession)
M:UIKit.UITableViewDragDelegate_Extensions.GetDragPreviewParameters(UIKit.IUITableViewDragDelegate,UIKit.UITableView,Foundation.NSIndexPath)
M:UIKit.UITableViewDragDelegate_Extensions.GetItemsForAddingToDragSession(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UITableViewDragDelegate.DragSessionAllowsMoveOperation(UIKit.UITableView,UIKit.IUIDragSession)
-M:UIKit.UITableViewDragDelegate.DragSessionDidEnd(UIKit.UITableView,UIKit.IUIDragSession)
-M:UIKit.UITableViewDragDelegate.DragSessionIsRestrictedToDraggingApplication(UIKit.UITableView,UIKit.IUIDragSession)
-M:UIKit.UITableViewDragDelegate.DragSessionWillBegin(UIKit.UITableView,UIKit.IUIDragSession)
-M:UIKit.UITableViewDragDelegate.GetDragPreviewParameters(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDragDelegate.GetItemsForAddingToDragSession(UIKit.UITableView,UIKit.IUIDragSession,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UITableViewDragDelegate.GetItemsForBeginningDragSession(UIKit.UITableView,UIKit.IUIDragSession,Foundation.NSIndexPath)
M:UIKit.UITableViewDropDelegate_Extensions.CanHandleDropSession(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession)
M:UIKit.UITableViewDropDelegate_Extensions.DropSessionDidEnd(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession)
M:UIKit.UITableViewDropDelegate_Extensions.DropSessionDidEnter(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession)
M:UIKit.UITableViewDropDelegate_Extensions.DropSessionDidExit(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession)
M:UIKit.UITableViewDropDelegate_Extensions.DropSessionDidUpdate(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession,Foundation.NSIndexPath)
M:UIKit.UITableViewDropDelegate_Extensions.GetDropPreviewParameters(UIKit.IUITableViewDropDelegate,UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDropDelegate.CanHandleDropSession(UIKit.UITableView,UIKit.IUIDropSession)
-M:UIKit.UITableViewDropDelegate.DropSessionDidEnd(UIKit.UITableView,UIKit.IUIDropSession)
-M:UIKit.UITableViewDropDelegate.DropSessionDidEnter(UIKit.UITableView,UIKit.IUIDropSession)
-M:UIKit.UITableViewDropDelegate.DropSessionDidExit(UIKit.UITableView,UIKit.IUIDropSession)
-M:UIKit.UITableViewDropDelegate.DropSessionDidUpdate(UIKit.UITableView,UIKit.IUIDropSession,Foundation.NSIndexPath)
-M:UIKit.UITableViewDropDelegate.GetDropPreviewParameters(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewDropDelegate.PerformDrop(UIKit.UITableView,UIKit.IUITableViewDropCoordinator)
-M:UIKit.UITableViewDropPlaceholder.#ctor(Foundation.NSIndexPath,System.String,System.Runtime.InteropServices.NFloat)
-M:UIKit.UITableViewDropProposal.#ctor(UIKit.UIDropOperation,UIKit.UITableViewDropIntent)
-M:UIKit.UITableViewDropProposal.#ctor(UIKit.UIDropOperation)
-M:UIKit.UITableViewHeaderFooterView.#ctor(CoreGraphics.CGRect)
-M:UIKit.UITableViewHeaderFooterView.#ctor(Foundation.NSString)
M:UIKit.UITableViewHeaderFooterView.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITableViewHeaderFooterView.PrepareForReuse
-M:UIKit.UITableViewHeaderFooterView.SetNeedsUpdateConfiguration
M:UIKit.UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UITableViewHeaderFooterView.UpdateConfiguration(UIKit.UIViewConfigurationState)
-M:UIKit.UITableViewPlaceholder.#ctor(Foundation.NSIndexPath,System.String,System.Runtime.InteropServices.NFloat)
M:UIKit.UITableViewRowAction.Copy(Foundation.NSZone)
-M:UIKit.UITableViewRowAction.Create(UIKit.UITableViewRowActionStyle,System.String,System.Action{UIKit.UITableViewRowAction,Foundation.NSIndexPath})
-M:UIKit.UITableViewSource.AccessoryButtonTapped(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.CanEditRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.CanFocusRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.CanMoveRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.CanPerformAction(UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UITableViewSource.CanPerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.CellDisplayingEnded(UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.CommitEditingStyle(UIKit.UITableView,UIKit.UITableViewCellEditingStyle,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.CustomizeMoveTarget(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.DidBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.DidEndMultipleSelectionInteraction(UIKit.UITableView)
-M:UIKit.UITableViewSource.DidUpdateFocus(UIKit.UITableView,UIKit.UITableViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
-M:UIKit.UITableViewSource.EditActionsForRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.EditingStyleForRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.EstimatedHeight(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.EstimatedHeightForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.EstimatedHeightForHeader(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.FooterViewDisplayingEnded(UIKit.UITableView,UIKit.UIView,System.IntPtr)
-M:UIKit.UITableViewSource.GetCell(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.GetContextMenuConfiguration(UIKit.UITableView,Foundation.NSIndexPath,CoreGraphics.CGPoint)
-M:UIKit.UITableViewSource.GetHeightForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.GetHeightForHeader(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.GetHeightForRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.GetIndexPathForPreferredFocusedView(UIKit.UITableView)
-M:UIKit.UITableViewSource.GetLeadingSwipeActionsConfiguration(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.GetPreviewForDismissingContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration)
-M:UIKit.UITableViewSource.GetPreviewForHighlightingContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration)
-M:UIKit.UITableViewSource.GetSelectionFollowsFocusForRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.GetTrailingSwipeActionsConfiguration(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.GetViewForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.GetViewForHeader(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.HeaderViewDisplayingEnded(UIKit.UITableView,UIKit.UIView,System.IntPtr)
-M:UIKit.UITableViewSource.IndentationLevel(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.MoveRow(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.NumberOfSections(UIKit.UITableView)
-M:UIKit.UITableViewSource.PerformAction(UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject)
-M:UIKit.UITableViewSource.PerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.RowDeselected(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.RowHighlighted(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.RowSelected(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.RowsInSection(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.RowUnhighlighted(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.SectionFor(UIKit.UITableView,System.String,System.IntPtr)
-M:UIKit.UITableViewSource.SectionIndexTitles(UIKit.UITableView)
-M:UIKit.UITableViewSource.ShouldBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.ShouldHighlightRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.ShouldIndentWhileEditing(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.ShouldShowMenu(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.ShouldSpringLoadRow(UIKit.UITableView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext)
-M:UIKit.UITableViewSource.ShouldUpdateFocus(UIKit.UITableView,UIKit.UITableViewFocusUpdateContext)
-M:UIKit.UITableViewSource.TitleForDeleteConfirmation(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.TitleForFooter(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.TitleForHeader(UIKit.UITableView,System.IntPtr)
-M:UIKit.UITableViewSource.WillBeginEditing(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.WillDeselectRow(UIKit.UITableView,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.WillDisplay(UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath)
-M:UIKit.UITableViewSource.WillDisplayContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UITableViewSource.WillDisplayFooterView(UIKit.UITableView,UIKit.UIView,System.IntPtr)
-M:UIKit.UITableViewSource.WillDisplayHeaderView(UIKit.UITableView,UIKit.UIView,System.IntPtr)
-M:UIKit.UITableViewSource.WillEndContextMenuInteraction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UITableViewSource.WillPerformPreviewAction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.UITableViewSource.WillSelectRow(UIKit.UITableView,Foundation.NSIndexPath)
M:UIKit.UITabSidebarItem.Copy(Foundation.NSZone)
-M:UIKit.UITabSidebarItem.GetItem(UIKit.UITabSidebarItemRequest)
-M:UIKit.UITabSidebarScrollTarget.GetTargetForFooter
-M:UIKit.UITabSidebarScrollTarget.GetTargetForHeader
-M:UIKit.UITabSidebarScrollTarget.GetTargetForTab(UIKit.UITab)
-M:UIKit.UITapGestureRecognizer.#ctor(Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UITapGestureRecognizer.#ctor(System.Action)
M:UIKit.UITapGestureRecognizer.#ctor(System.Action{UIKit.UITapGestureRecognizer})
-M:UIKit.UITargetedDragPreview.#ctor(UIKit.UIView,UIKit.UIDragPreviewParameters,UIKit.UIDragPreviewTarget)
-M:UIKit.UITargetedDragPreview.#ctor(UIKit.UIView,UIKit.UIDragPreviewParameters)
-M:UIKit.UITargetedDragPreview.#ctor(UIKit.UIView)
M:UIKit.UITargetedDragPreview.Copy(Foundation.NSZone)
-M:UIKit.UITargetedDragPreview.GetPreview(Foundation.NSUrl,System.String,UIKit.UIDragPreviewTarget)
-M:UIKit.UITargetedDragPreview.GetPreview(Foundation.NSUrl,UIKit.UIDragPreviewTarget)
-M:UIKit.UITargetedDragPreview.GetRetargetedPreview(UIKit.UIDragPreviewTarget)
-M:UIKit.UITargetedPreview.#ctor(UIKit.UIView,UIKit.UIPreviewParameters,UIKit.UIPreviewTarget)
-M:UIKit.UITargetedPreview.#ctor(UIKit.UIView,UIKit.UIPreviewParameters)
-M:UIKit.UITargetedPreview.#ctor(UIKit.UIView)
M:UIKit.UITargetedPreview.Copy(Foundation.NSZone)
-M:UIKit.UITargetedPreview.GetRetargetedPreview(UIKit.UIPreviewTarget)
M:UIKit.UITextAlignmentExtensions.ToManaged(System.IntPtr)
M:UIKit.UITextAlignmentExtensions.ToNative(UIKit.UITextAlignment)
M:UIKit.UITextAttributes.#ctor
-M:UIKit.UITextChecker.CompletionsForPartialWordRange(Foundation.NSRange,System.String,System.String)
-M:UIKit.UITextChecker.GuessesForWordRange(Foundation.NSRange,System.String,System.String)
-M:UIKit.UITextChecker.HasLearnedWord(System.String)
-M:UIKit.UITextChecker.IgnoreWord(System.String)
-M:UIKit.UITextChecker.LearnWord(System.String)
-M:UIKit.UITextChecker.RangeOfMisspelledWordInString(System.String,Foundation.NSRange,System.IntPtr,System.Boolean,System.String)
-M:UIKit.UITextChecker.UnlearnWord(System.String)
-M:UIKit.UITextCursorDropPositionAnimator.#ctor(UIKit.IUITextCursorView,UIKit.IUITextInput)
-M:UIKit.UITextCursorDropPositionAnimator.AnimateAlongsideChanges(System.Action,System.Action)
M:UIKit.UITextCursorDropPositionAnimator.AnimateAlongsideChangesAsync(System.Action)
-M:UIKit.UITextCursorDropPositionAnimator.PlaceCursor(UIKit.UITextPosition,System.Boolean)
-M:UIKit.UITextCursorDropPositionAnimator.SetCursorVisible(System.Boolean,System.Boolean)
-M:UIKit.UITextDocumentProxy.AdjustTextPositionByCharacterOffset(System.IntPtr)
-M:UIKit.UITextDocumentProxy.DeleteBackward
-M:UIKit.UITextDocumentProxy.InsertText(System.String)
-M:UIKit.UITextDocumentProxy.SetMarkedText(System.String,Foundation.NSRange)
-M:UIKit.UITextDocumentProxy.UnmarkText
M:UIKit.UITextDragDelegate_Extensions.DragSessionDidEnd(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.IUIDragSession,UIKit.UIDropOperation)
M:UIKit.UITextDragDelegate_Extensions.DragSessionWillBegin(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.IUIDragSession)
M:UIKit.UITextDragDelegate_Extensions.GetItemsForDrag(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.IUITextDragRequest)
M:UIKit.UITextDragDelegate_Extensions.GetPreviewForLiftingItem(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.UIDragItem,UIKit.IUIDragSession)
M:UIKit.UITextDragDelegate_Extensions.WillAnimateLift(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.IUIDragAnimating,UIKit.IUIDragSession)
-M:UIKit.UITextDragDelegate.DragSessionDidEnd(UIKit.IUITextDraggable,UIKit.IUIDragSession,UIKit.UIDropOperation)
-M:UIKit.UITextDragDelegate.DragSessionWillBegin(UIKit.IUITextDraggable,UIKit.IUIDragSession)
-M:UIKit.UITextDragDelegate.GetItemsForDrag(UIKit.IUITextDraggable,UIKit.IUITextDragRequest)
-M:UIKit.UITextDragDelegate.GetPreviewForLiftingItem(UIKit.IUITextDraggable,UIKit.UIDragItem,UIKit.IUIDragSession)
-M:UIKit.UITextDragDelegate.WillAnimateLift(UIKit.IUITextDraggable,UIKit.IUIDragAnimating,UIKit.IUIDragSession)
-M:UIKit.UITextDragPreviewRenderer.#ctor(UIKit.NSLayoutManager,Foundation.NSRange,System.Boolean)
-M:UIKit.UITextDragPreviewRenderer.#ctor(UIKit.NSLayoutManager,Foundation.NSRange)
-M:UIKit.UITextDragPreviewRenderer.Adjust(CoreGraphics.CGRect@,CoreGraphics.CGRect@,CoreGraphics.CGRect@,CoreGraphics.CGPoint)
M:UIKit.UITextDropDelegate_Extensions.DropSessionDidEnd(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUIDropSession)
M:UIKit.UITextDropDelegate_Extensions.DropSessionDidEnter(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUIDropSession)
M:UIKit.UITextDropDelegate_Extensions.DropSessionDidExit(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUIDropSession)
@@ -61376,84 +44640,15 @@ M:UIKit.UITextDropDelegate_Extensions.GetPreviewForDroppingAllItems(UIKit.IUITex
M:UIKit.UITextDropDelegate_Extensions.GetProposalForDrop(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUITextDropRequest)
M:UIKit.UITextDropDelegate_Extensions.WillBecomeEditable(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUITextDropRequest)
M:UIKit.UITextDropDelegate_Extensions.WillPerformDrop(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUITextDropRequest)
-M:UIKit.UITextDropDelegate.DropSessionDidEnd(UIKit.IUITextDroppable,UIKit.IUIDropSession)
-M:UIKit.UITextDropDelegate.DropSessionDidEnter(UIKit.IUITextDroppable,UIKit.IUIDropSession)
-M:UIKit.UITextDropDelegate.DropSessionDidExit(UIKit.IUITextDroppable,UIKit.IUIDropSession)
-M:UIKit.UITextDropDelegate.DropSessionDidUpdate(UIKit.IUITextDroppable,UIKit.IUIDropSession)
-M:UIKit.UITextDropDelegate.GetPreviewForDroppingAllItems(UIKit.IUITextDroppable,UIKit.UITargetedDragPreview)
-M:UIKit.UITextDropDelegate.GetProposalForDrop(UIKit.IUITextDroppable,UIKit.IUITextDropRequest)
-M:UIKit.UITextDropDelegate.WillBecomeEditable(UIKit.IUITextDroppable,UIKit.IUITextDropRequest)
-M:UIKit.UITextDropDelegate.WillPerformDrop(UIKit.IUITextDroppable,UIKit.IUITextDropRequest)
-M:UIKit.UITextDropProposal.#ctor(UIKit.UIDropOperation)
M:UIKit.UITextDropProposal.Copy(Foundation.NSZone)
-M:UIKit.UITextField.#ctor(CoreGraphics.CGRect)
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.BeginFloatingCursor(CoreGraphics.CGPoint)
-M:UIKit.UITextField.BorderRect(CoreGraphics.CGRect)
-M:UIKit.UITextField.CanPaste(Foundation.NSItemProvider[])
-M:UIKit.UITextField.ClearButtonRect(CoreGraphics.CGRect)
-M:UIKit.UITextField.ComparePosition(UIKit.UITextPosition,UIKit.UITextPosition)
-M:UIKit.UITextField.DeleteBackward
-M:UIKit.UITextField.DictationRecognitionFailed
-M:UIKit.UITextField.DictationRecordingDidEnd
-M:UIKit.UITextField.DidDismissWritingTools
M:UIKit.UITextField.Dispose(System.Boolean)
-M:UIKit.UITextField.DrawPlaceholder(CoreGraphics.CGRect)
-M:UIKit.UITextField.DrawText(CoreGraphics.CGRect)
-M:UIKit.UITextField.EditingRect(CoreGraphics.CGRect)
-M:UIKit.UITextField.EndFloatingCursor
-M:UIKit.UITextField.GetAttributedText(UIKit.UITextRange)
-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)
-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.InsertAdaptiveImageGlyph(UIKit.NSAdaptiveImageGlyph,UIKit.UITextRange)
-M:UIKit.UITextField.InsertAttributedText(Foundation.NSAttributedString)
-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.LeftViewRect(CoreGraphics.CGRect)
-M:UIKit.UITextField.Paste(Foundation.NSItemProvider[])
-M:UIKit.UITextField.PlaceholderRect(CoreGraphics.CGRect)
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.ReplaceRange(UIKit.UITextRange,Foundation.NSAttributedString)
-M:UIKit.UITextField.ReplaceText(UIKit.UITextRange,System.String)
-M:UIKit.UITextField.RightViewRect(CoreGraphics.CGRect)
-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.TextRect(CoreGraphics.CGRect)
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.UITextField.WillPresentWritingTools
M:UIKit.UITextFieldDelegate_Extensions.DidChangeSelection(UIKit.IUITextFieldDelegate,UIKit.UITextField)
M:UIKit.UITextFieldDelegate_Extensions.EditingEnded(UIKit.IUITextFieldDelegate,UIKit.UITextField,UIKit.UITextFieldDidEndEditingReason)
M:UIKit.UITextFieldDelegate_Extensions.EditingEnded(UIKit.IUITextFieldDelegate,UIKit.UITextField)
@@ -61466,53 +44661,20 @@ M:UIKit.UITextFieldDelegate_Extensions.ShouldEndEditing(UIKit.IUITextFieldDelega
M:UIKit.UITextFieldDelegate_Extensions.ShouldReturn(UIKit.IUITextFieldDelegate,UIKit.UITextField)
M:UIKit.UITextFieldDelegate_Extensions.WillDismissEditMenu(UIKit.IUITextFieldDelegate,UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating)
M:UIKit.UITextFieldDelegate_Extensions.WillPresentEditMenu(UIKit.IUITextFieldDelegate,UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UITextFieldDelegate.DidChangeSelection(UIKit.UITextField)
-M:UIKit.UITextFieldDelegate.EditingEnded(UIKit.UITextField,UIKit.UITextFieldDidEndEditingReason)
-M:UIKit.UITextFieldDelegate.EditingEnded(UIKit.UITextField)
-M:UIKit.UITextFieldDelegate.EditingStarted(UIKit.UITextField)
-M:UIKit.UITextFieldDelegate.GetEditMenu(UIKit.UITextField,Foundation.NSRange,UIKit.UIMenuElement[])
-M:UIKit.UITextFieldDelegate.ShouldBeginEditing(UIKit.UITextField)
-M:UIKit.UITextFieldDelegate.ShouldChangeCharacters(UIKit.UITextField,Foundation.NSRange,System.String)
-M:UIKit.UITextFieldDelegate.ShouldClear(UIKit.UITextField)
-M:UIKit.UITextFieldDelegate.ShouldEndEditing(UIKit.UITextField)
-M:UIKit.UITextFieldDelegate.ShouldReturn(UIKit.UITextField)
-M:UIKit.UITextFieldDelegate.WillDismissEditMenu(UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UITextFieldDelegate.WillPresentEditMenu(UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating)
M:UIKit.UITextFieldEditingEndedEventArgs.#ctor(UIKit.UITextFieldDidEndEditingReason)
-M:UIKit.UITextFormattingCoordinator.#ctor(UIKit.UIWindowScene)
-M:UIKit.UITextFormattingCoordinator.DidCancel(UIKit.UIFontPickerViewController)
-M:UIKit.UITextFormattingCoordinator.DidPickFont(UIKit.UIFontPickerViewController)
M:UIKit.UITextFormattingCoordinator.Dispose(System.Boolean)
-M:UIKit.UITextFormattingCoordinator.GetTextFormattingCoordinator(UIKit.UIWindowScene)
-M:UIKit.UITextFormattingCoordinator.SetSelectedAttributes(Foundation.NSDictionary,System.Boolean)
-M:UIKit.UITextFormattingCoordinator.ToggleFontPanel(Foundation.NSObject)
-M:UIKit.UITextFormattingCoordinatorDelegate.UpdateTextAttributes(UIKit.UITextAttributesConversionHandler)
-M:UIKit.UITextFormattingViewController.#ctor
-M:UIKit.UITextFormattingViewController.#ctor(UIKit.UITextFormattingViewControllerConfiguration)
M:UIKit.UITextFormattingViewController.Dispose(System.Boolean)
M:UIKit.UITextFormattingViewControllerChangeValue.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerChangeValue.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITextFormattingViewControllerComponent.#ctor(UIKit.UITextFormattingViewControllerComponentKey,UIKit.UITextFormattingViewControllerComponentSize)
M:UIKit.UITextFormattingViewControllerComponent.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerComponent.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITextFormattingViewControllerComponentGroup.#ctor(UIKit.UITextFormattingViewControllerComponent[])
M:UIKit.UITextFormattingViewControllerComponentGroup.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerComponentGroup.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITextFormattingViewControllerConfiguration.#ctor
-M:UIKit.UITextFormattingViewControllerConfiguration.#ctor(UIKit.UITextFormattingViewControllerComponentGroup[])
M:UIKit.UITextFormattingViewControllerConfiguration.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerConfiguration.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITextFormattingViewControllerDelegate.DidChangeValue(UIKit.UITextFormattingViewController,UIKit.UITextFormattingViewControllerChangeValue)
-M:UIKit.UITextFormattingViewControllerDelegate.ShouldPresentColorPicker(UIKit.UITextFormattingViewController,UIKit.UIColorPickerViewController)
-M:UIKit.UITextFormattingViewControllerDelegate.ShouldPresentFontPicker(UIKit.UITextFormattingViewController,UIKit.UIFontPickerViewController)
-M:UIKit.UITextFormattingViewControllerDelegate.TextFormattingDidFinish(UIKit.UITextFormattingViewController)
-M:UIKit.UITextFormattingViewControllerFormattingDescriptor.#ctor
-M:UIKit.UITextFormattingViewControllerFormattingDescriptor.#ctor(Foundation.NSAttributedString,Foundation.NSRange)
-M:UIKit.UITextFormattingViewControllerFormattingDescriptor.#ctor(Foundation.NSDictionary)
M:UIKit.UITextFormattingViewControllerFormattingDescriptor.#ctor(UIKit.UIStringAttributes)
M:UIKit.UITextFormattingViewControllerFormattingDescriptor.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerFormattingDescriptor.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITextFormattingViewControllerFormattingStyle.#ctor(System.String,System.String,Foundation.NSDictionary)
M:UIKit.UITextFormattingViewControllerFormattingStyle.#ctor(System.String,System.String,UIKit.UIStringAttributes)
M:UIKit.UITextFormattingViewControllerFormattingStyle.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerFormattingStyle.EncodeTo(Foundation.NSCoder)
@@ -61552,23 +44714,9 @@ M:UIKit.UITextInput_Extensions.UpdateFloatingCursor(UIKit.IUITextInput,CoreGraph
M:UIKit.UITextInput_Extensions.WillDismissEditMenu(UIKit.IUITextInput,UIKit.IUIEditMenuInteractionAnimating)
M:UIKit.UITextInput_Extensions.WillPresentEditMenu(UIKit.IUITextInput,UIKit.IUIEditMenuInteractionAnimating)
M:UIKit.UITextInput_Extensions.WillPresentWritingTools(UIKit.IUITextInput)
-M:UIKit.UITextInputDelegate.SelectionDidChange(UIKit.IUITextInput)
-M:UIKit.UITextInputDelegate.SelectionWillChange(UIKit.IUITextInput)
-M:UIKit.UITextInputDelegate.TextDidChange(UIKit.IUITextInput)
-M:UIKit.UITextInputDelegate.TextWillChange(UIKit.IUITextInput)
M:UIKit.UITextInputMode.EncodeTo(Foundation.NSCoder)
M:UIKit.UITextInputPasswordRules.Copy(Foundation.NSZone)
-M:UIKit.UITextInputPasswordRules.Create(System.String)
M:UIKit.UITextInputPasswordRules.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITextInputStringTokenizer.#ctor(UIKit.IUITextInput)
-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.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)
-M:UIKit.UITextInputTokenizer.ProbeDirectionWithinTextUnit(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)
M:UIKit.UITextInputTraits_Extensions.GetAllowedWritingToolsResultOptions(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetAutocapitalizationType(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetAutocorrectionType(UIKit.IUITextInputTraits)
@@ -61603,30 +44751,14 @@ M:UIKit.UITextInputTraits_Extensions.SetSmartQuotesType(UIKit.IUITextInputTraits
M:UIKit.UITextInputTraits_Extensions.SetSpellCheckingType(UIKit.IUITextInputTraits,UIKit.UITextSpellCheckingType)
M:UIKit.UITextInputTraits_Extensions.SetTextContentType(UIKit.IUITextInputTraits,Foundation.NSString)
M:UIKit.UITextInputTraits_Extensions.SetWritingToolsBehavior(UIKit.IUITextInputTraits,UIKit.UIWritingToolsBehavior)
-M:UIKit.UITextInteraction.Create(UIKit.UITextInteractionMode)
-M:UIKit.UITextInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UITextInteraction.Dispose(System.Boolean)
-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)
-M:UIKit.UITextInteractionDelegate.DidEnd(UIKit.UITextInteraction)
-M:UIKit.UITextInteractionDelegate.ShouldBegin(UIKit.UITextInteraction,CoreGraphics.CGPoint)
-M:UIKit.UITextInteractionDelegate.WillBegin(UIKit.UITextInteraction)
-M:UIKit.UITextItemMenuConfiguration.Create(UIKit.UIMenu)
-M:UIKit.UITextItemMenuConfiguration.Create(UIKit.UITextItemMenuPreview,UIKit.UIMenu)
-M:UIKit.UITextItemMenuPreview.#ctor(UIKit.UIView)
-M:UIKit.UITextLoupeSession.BeginLoupeSession(CoreGraphics.CGPoint,UIKit.UIView,UIKit.UIView)
-M:UIKit.UITextLoupeSession.Invalidate
-M:UIKit.UITextLoupeSession.MoveToPoint(CoreGraphics.CGPoint,CoreGraphics.CGRect,System.Boolean)
M:UIKit.UITextPasteDelegate_Extensions.CombineItemAttributedStrings(UIKit.IUITextPasteDelegate,UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString[],UIKit.UITextRange)
M:UIKit.UITextPasteDelegate_Extensions.PerformPaste(UIKit.IUITextPasteDelegate,UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString,UIKit.UITextRange)
M:UIKit.UITextPasteDelegate_Extensions.ShouldAnimatePaste(UIKit.IUITextPasteDelegate,UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString,UIKit.UITextRange)
M:UIKit.UITextPasteDelegate_Extensions.TransformPasteItem(UIKit.IUITextPasteDelegate,UIKit.IUITextPasteConfigurationSupporting,UIKit.IUITextPasteItem)
-M:UIKit.UITextPasteDelegate.CombineItemAttributedStrings(UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString[],UIKit.UITextRange)
-M:UIKit.UITextPasteDelegate.PerformPaste(UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString,UIKit.UITextRange)
-M:UIKit.UITextPasteDelegate.ShouldAnimatePaste(UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString,UIKit.UITextRange)
-M:UIKit.UITextPasteDelegate.TransformPasteItem(UIKit.IUITextPasteConfigurationSupporting,UIKit.IUITextPasteItem)
M:UIKit.UITextSearching_Extensions.CompareOrder(UIKit.IUITextSearching,Foundation.INSCopying,Foundation.INSCopying)
M:UIKit.UITextSearching_Extensions.GetSelectedTextSearchDocument(UIKit.IUITextSearching)
M:UIKit.UITextSearching_Extensions.GetSupportsTextReplacement(UIKit.IUITextSearching)
@@ -61635,18 +44767,9 @@ M:UIKit.UITextSearching_Extensions.ReplaceFoundText(UIKit.IUITextSearching,UIKit
M:UIKit.UITextSearching_Extensions.ScrollRangeToVisible(UIKit.IUITextSearching,UIKit.UITextRange,Foundation.INSCopying)
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.#ctor(UIKit.IUITextSearching)
M:UIKit.UITextSearchingFindSession.Dispose(System.Boolean)
-M:UIKit.UITextSelectionDisplayInteraction.#ctor(UIKit.IUITextInput,UIKit.IUITextSelectionDisplayInteractionDelegate)
-M:UIKit.UITextSelectionDisplayInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UITextSelectionDisplayInteraction.Dispose(System.Boolean)
-M:UIKit.UITextSelectionDisplayInteraction.LayoutManagedSubviews
-M:UIKit.UITextSelectionDisplayInteraction.SetNeedsSelectionUpdate
-M:UIKit.UITextSelectionDisplayInteraction.WillMoveToView(UIKit.UIView)
M:UIKit.UITextSelectionDisplayInteractionDelegate_Extensions.GetSelectionContainerViewBelowText(UIKit.IUITextSelectionDisplayInteractionDelegate,UIKit.UITextSelectionDisplayInteraction)
-M:UIKit.UITextSelectionDisplayInteractionDelegate.GetSelectionContainerViewBelowText(UIKit.UITextSelectionDisplayInteraction)
-M:UIKit.UITextView.#ctor(CoreGraphics.CGRect,UIKit.NSTextContainer)
-M:UIKit.UITextView.#ctor(CoreGraphics.CGRect)
M:UIKit.UITextView.add_Changed(System.EventHandler)
M:UIKit.UITextView.add_DidBeginFormatting(System.EventHandler{UIKit.UITextViewTextFormattingViewControllerEventArgs})
M:UIKit.UITextView.add_DidEndFormatting(System.EventHandler{UIKit.UITextViewTextFormattingViewControllerEventArgs})
@@ -61657,46 +44780,8 @@ M:UIKit.UITextView.add_WillBeginFormatting(System.EventHandler{UIKit.UITextViewT
M:UIKit.UITextView.add_WillEndFormatting(System.EventHandler{UIKit.UITextViewTextFormattingViewControllerEventArgs})
M:UIKit.UITextView.add_WritingToolsDidEnd(System.EventHandler)
M:UIKit.UITextView.add_WritingToolsWillBegin(System.EventHandler)
-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.DidDismissWritingTools
M:UIKit.UITextView.Dispose(System.Boolean)
-M:UIKit.UITextView.DrawTextHighlightBackground(UIKit.NSTextRange,CoreGraphics.CGPoint)
M:UIKit.UITextView.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITextView.EndFloatingCursor
-M:UIKit.UITextView.GetAttributedText(UIKit.UITextRange)
-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)
-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.GetTextView(System.Boolean)
-M:UIKit.UITextView.InsertAdaptiveImageGlyph(UIKit.NSAdaptiveImageGlyph,UIKit.UITextRange)
-M:UIKit.UITextView.InsertAttributedText(Foundation.NSAttributedString)
-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.Paste(Foundation.NSItemProvider[])
M:UIKit.UITextView.remove_Changed(System.EventHandler)
M:UIKit.UITextView.remove_DidBeginFormatting(System.EventHandler{UIKit.UITextViewTextFormattingViewControllerEventArgs})
M:UIKit.UITextView.remove_DidEndFormatting(System.EventHandler{UIKit.UITextViewTextFormattingViewControllerEventArgs})
@@ -61707,22 +44792,7 @@ M:UIKit.UITextView.remove_WillBeginFormatting(System.EventHandler{UIKit.UITextVi
M:UIKit.UITextView.remove_WillEndFormatting(System.EventHandler{UIKit.UITextViewTextFormattingViewControllerEventArgs})
M:UIKit.UITextView.remove_WritingToolsDidEnd(System.EventHandler)
M:UIKit.UITextView.remove_WritingToolsWillBegin(System.EventHandler)
-M:UIKit.UITextView.RemoveDictationResultPlaceholder(Foundation.NSObject,System.Boolean)
-M:UIKit.UITextView.RemoveTextPlaceholder(UIKit.UITextPlaceholder)
-M:UIKit.UITextView.ReplaceRange(UIKit.UITextRange,Foundation.NSAttributedString)
-M:UIKit.UITextView.ReplaceText(UIKit.UITextRange,System.String)
-M:UIKit.UITextView.ScrollRangeToVisible(Foundation.NSRange)
-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.UITextView.WillPresentWritingTools
M:UIKit.UITextViewDelegate_Extensions.Changed(UIKit.IUITextViewDelegate,UIKit.UITextView)
M:UIKit.UITextViewDelegate_Extensions.DidBeginFormatting(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UITextFormattingViewController)
M:UIKit.UITextViewDelegate_Extensions.DidEndFormatting(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UITextFormattingViewController)
@@ -61748,139 +44818,39 @@ M:UIKit.UITextViewDelegate_Extensions.WillEndFormatting(UIKit.IUITextViewDelegat
M:UIKit.UITextViewDelegate_Extensions.WillPresentEditMenu(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.IUIEditMenuInteractionAnimating)
M:UIKit.UITextViewDelegate_Extensions.WritingToolsDidEnd(UIKit.IUITextViewDelegate,UIKit.UITextView)
M:UIKit.UITextViewDelegate_Extensions.WritingToolsWillBegin(UIKit.IUITextViewDelegate,UIKit.UITextView)
-M:UIKit.UITextViewDelegate.Changed(UIKit.UITextView)
-M:UIKit.UITextViewDelegate.DidBeginFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController)
-M:UIKit.UITextViewDelegate.DidEndFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController)
-M:UIKit.UITextViewDelegate.EditingEnded(UIKit.UITextView)
-M:UIKit.UITextViewDelegate.EditingStarted(UIKit.UITextView)
-M:UIKit.UITextViewDelegate.GetEditMenuForText(UIKit.UITextView,Foundation.NSRange,UIKit.UIMenuElement[])
-M:UIKit.UITextViewDelegate.GetMenuConfiguration(UIKit.UITextView,UIKit.UITextItem,UIKit.UIMenu)
-M:UIKit.UITextViewDelegate.GetPrimaryAction(UIKit.UITextView,UIKit.UITextItem,UIKit.UIAction)
-M:UIKit.UITextViewDelegate.GetWritingToolsIgnoredRangesInEnclosingRange(UIKit.UITextView,Foundation.NSRange)
-M:UIKit.UITextViewDelegate.SelectionChanged(UIKit.UITextView)
-M:UIKit.UITextViewDelegate.ShouldBeginEditing(UIKit.UITextView)
-M:UIKit.UITextViewDelegate.ShouldChangeText(UIKit.UITextView,Foundation.NSRange,System.String)
-M:UIKit.UITextViewDelegate.ShouldEndEditing(UIKit.UITextView)
-M:UIKit.UITextViewDelegate.ShouldInteractWithTextAttachment(UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange,UIKit.UITextItemInteraction)
-M:UIKit.UITextViewDelegate.ShouldInteractWithTextAttachment(UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange)
-M:UIKit.UITextViewDelegate.ShouldInteractWithUrl(UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange,UIKit.UITextItemInteraction)
-M:UIKit.UITextViewDelegate.ShouldInteractWithUrl(UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange)
-M:UIKit.UITextViewDelegate.WillBeginFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController)
-M:UIKit.UITextViewDelegate.WillDismissEditMenu(UIKit.UITextView,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UITextViewDelegate.WillDisplay(UIKit.UITextView,UIKit.UITextItem,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UITextViewDelegate.WillEnd(UIKit.UITextView,UIKit.UITextItem,UIKit.IUIContextMenuInteractionAnimating)
-M:UIKit.UITextViewDelegate.WillEndFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController)
-M:UIKit.UITextViewDelegate.WillPresentEditMenu(UIKit.UITextView,UIKit.IUIEditMenuInteractionAnimating)
-M:UIKit.UITextViewDelegate.WritingToolsDidEnd(UIKit.UITextView)
-M:UIKit.UITextViewDelegate.WritingToolsWillBegin(UIKit.UITextView)
M:UIKit.UITextViewTextFormattingViewControllerEventArgs.#ctor(UIKit.UITextFormattingViewController)
-M:UIKit.UIToolbar.#ctor(CoreGraphics.CGRect)
M:UIKit.UIToolbar.Dispose(System.Boolean)
-M:UIKit.UIToolbar.GetBackgroundImage(UIKit.UIToolbarPosition,UIKit.UIBarMetrics)
-M:UIKit.UIToolbar.GetShadowImage(UIKit.UIToolbarPosition)
-M:UIKit.UIToolbar.SetBackgroundImage(UIKit.UIImage,UIKit.UIToolbarPosition,UIKit.UIBarMetrics)
-M:UIKit.UIToolbar.SetItems(UIKit.UIBarButtonItem[],System.Boolean)
-M:UIKit.UIToolbar.SetShadowImage(UIKit.UIImage,UIKit.UIToolbarPosition)
M:UIKit.UIToolbar.UIToolbarAppearance.#ctor(System.IntPtr)
M:UIKit.UIToolbar.UIToolbarAppearance.GetBackgroundImage(UIKit.UIToolbarPosition,UIKit.UIBarMetrics)
M:UIKit.UIToolbar.UIToolbarAppearance.GetShadowImage(UIKit.UIToolbarPosition)
M:UIKit.UIToolbar.UIToolbarAppearance.SetBackgroundImage(UIKit.UIImage,UIKit.UIToolbarPosition,UIKit.UIBarMetrics)
M:UIKit.UIToolbar.UIToolbarAppearance.SetShadowImage(UIKit.UIImage,UIKit.UIToolbarPosition)
-M:UIKit.UIToolbarAppearance.#ctor(UIKit.UIBarAppearance)
-M:UIKit.UIToolbarAppearance.#ctor(UIKit.UIUserInterfaceIdiom)
-M:UIKit.UIToolTipConfiguration.Create(System.String,CoreGraphics.CGRect)
-M:UIKit.UIToolTipConfiguration.Create(System.String)
-M:UIKit.UIToolTipInteraction.#ctor(System.String)
-M:UIKit.UIToolTipInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UIToolTipInteraction.Dispose(System.Boolean)
-M:UIKit.UIToolTipInteraction.WillMoveToView(UIKit.UIView)
M:UIKit.UIToolTipInteractionDelegate_Extensions.GetConfiguration(UIKit.IUIToolTipInteractionDelegate,UIKit.UIToolTipInteraction,CoreGraphics.CGPoint)
-M:UIKit.UIToolTipInteractionDelegate.GetConfiguration(UIKit.UIToolTipInteraction,CoreGraphics.CGPoint)
-M:UIKit.UITouch.GetAzimuthAngle(UIKit.UIView)
-M:UIKit.UITouch.GetAzimuthUnitVector(UIKit.UIView)
-M:UIKit.UITouch.GetPreciseLocation(UIKit.UIView)
-M:UIKit.UITouch.GetPrecisePreviousLocation(UIKit.UIView)
-M:UIKit.UITouch.LocationInView(UIKit.UIView)
-M:UIKit.UITouch.PreviousLocationInView(UIKit.UIView)
-M:UIKit.UITrackingLayoutGuide.GetConstraintsActiveWhenAway(UIKit.NSDirectionalRectEdge)
-M:UIKit.UITrackingLayoutGuide.GetConstraintsActiveWhenNear(UIKit.NSDirectionalRectEdge)
-M:UIKit.UITrackingLayoutGuide.RemoveAllTrackedConstraints
-M:UIKit.UITrackingLayoutGuide.SetConstraintsActiveWhenAway(UIKit.NSLayoutConstraint[],UIKit.NSDirectionalRectEdge)
-M:UIKit.UITrackingLayoutGuide.SetConstraintsActiveWhenNear(UIKit.NSLayoutConstraint[],UIKit.NSDirectionalRectEdge)
M:UIKit.UITraitChangeObservable_Extensions.RegisterForTraitChanges(UIKit.IUITraitChangeObservable,ObjCRuntime.Class[],Foundation.NSObject,ObjCRuntime.Selector)
M:UIKit.UITraitChangeObservable_Extensions.RegisterForTraitChanges(UIKit.IUITraitChangeObservable,ObjCRuntime.Class[],ObjCRuntime.Selector)
M:UIKit.UITraitChangeObservable_Extensions.RegisterForTraitChanges(UIKit.IUITraitChangeObservable,ObjCRuntime.Class[],System.Action{UIKit.IUITraitEnvironment,UIKit.UITraitCollection})
-M:UIKit.UITraitCollection.Contains(UIKit.UITraitCollection)
M:UIKit.UITraitCollection.Copy(Foundation.NSZone)
M:UIKit.UITraitCollection.Create(UIKit.UIContentSizeCategory)
M:UIKit.UITraitCollection.EncodeTo(Foundation.NSCoder)
-M:UIKit.UITraitCollection.FromAccessibilityContrast(UIKit.UIAccessibilityContrast)
-M:UIKit.UITraitCollection.FromActiveAppearance(UIKit.UIUserInterfaceActiveAppearance)
-M:UIKit.UITraitCollection.FromDisplayGamut(UIKit.UIDisplayGamut)
-M:UIKit.UITraitCollection.FromDisplayScale(System.Runtime.InteropServices.NFloat)
-M:UIKit.UITraitCollection.FromForceTouchCapability(UIKit.UIForceTouchCapability)
-M:UIKit.UITraitCollection.FromHorizontalSizeClass(UIKit.UIUserInterfaceSizeClass)
-M:UIKit.UITraitCollection.FromLayoutDirection(UIKit.UITraitEnvironmentLayoutDirection)
-M:UIKit.UITraitCollection.FromLegibilityWeight(UIKit.UILegibilityWeight)
-M:UIKit.UITraitCollection.FromSceneCaptureState(UIKit.UISceneCaptureState)
-M:UIKit.UITraitCollection.FromTraitsFromCollections(UIKit.UITraitCollection[])
-M:UIKit.UITraitCollection.FromUserInterfaceIdiom(UIKit.UIUserInterfaceIdiom)
-M:UIKit.UITraitCollection.FromUserInterfaceLevel(UIKit.UIUserInterfaceLevel)
-M:UIKit.UITraitCollection.FromUserInterfaceStyle(UIKit.UIUserInterfaceStyle)
-M:UIKit.UITraitCollection.FromVerticalSizeClass(UIKit.UIUserInterfaceSizeClass)
M:UIKit.UITraitCollection.GetChangedTraits2(UIKit.UITraitCollection)
-M:UIKit.UITraitCollection.GetObject(UIKit.IUIObjectTraitDefinition)
-M:UIKit.UITraitCollection.GetTraitCollection(System.String)
-M:UIKit.UITraitCollection.GetTraitCollection(UIKit.UIImageDynamicRange)
-M:UIKit.UITraitCollection.GetTraitCollection(UIKit.UIListEnvironment)
-M:UIKit.UITraitCollection.GetTraitCollection(UIKit.UINSToolbarItemPresentationSize)
-M:UIKit.UITraitCollection.GetTraitCollectionByModifyingTraits(UIKit.UITraitMutations)
-M:UIKit.UITraitCollection.GetTraitCollectionByReplacingObject(Foundation.NSObject,UIKit.IUIObjectTraitDefinition)
-M:UIKit.UITraitCollection.GetTraitCollectionByReplacingValue(System.Runtime.InteropServices.NFloat,UIKit.IUICGFloatTraitDefinition)
-M:UIKit.UITraitCollection.GetTraitCollectionWithObject(Foundation.NSObject,UIKit.IUIObjectTraitDefinition)
-M:UIKit.UITraitCollection.GetTraitCollectionWithTraits(UIKit.UITraitMutations)
-M:UIKit.UITraitCollection.GetTraitCollectionWithValue(System.IntPtr,UIKit.IUINSIntegerTraitDefinition)
-M:UIKit.UITraitCollection.GetTraitCollectionWithValue(System.Runtime.InteropServices.NFloat,UIKit.IUICGFloatTraitDefinition)
-M:UIKit.UITraitCollection.GetValueForTrait(UIKit.IUICGFloatTraitDefinition)
-M:UIKit.UITraitCollection.GetValueForTrait(UIKit.IUINSIntegerTraitDefinition)
-M:UIKit.UITraitCollection.HasDifferentColorAppearanceComparedTo(UIKit.UITraitCollection)
-M:UIKit.UITraitCollection.PerformAsCurrentTraitCollection(System.Action)
-M:UIKit.UITraitCollection.TraitCollectionByReplacingValue(System.IntPtr,UIKit.IUINSIntegerTraitDefinition)
-M:UIKit.UITraitEnvironment.TraitCollectionDidChange(UIKit.UITraitCollection)
-M:UIKit.UIUpdateInfo.GetCurrentUpdateInfo(UIKit.UIView)
-M:UIKit.UIUpdateInfo.GetCurrentUpdateInfo(UIKit.UIWindowScene)
-M:UIKit.UIUpdateLink.AddAction(Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIUpdateLink.AddAction(UIKit.UIUpdateLinkCallback)
-M:UIKit.UIUpdateLink.AddActionToPhase(UIKit.UIUpdateActionPhase,Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIUpdateLink.AddActionToPhase(UIKit.UIUpdateActionPhase,UIKit.UIUpdateLinkCallback)
-M:UIKit.UIUpdateLink.GetUpdateLink(UIKit.UIView)
-M:UIKit.UIUpdateLink.GetUpdateLink(UIKit.UIWindowScene)
-M:UIKit.UIUpdateLink.UpdateLink(UIKit.UIView,Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIUpdateLink.UpdateLink(UIKit.UIView,UIKit.UIUpdateLinkCallback)
-M:UIKit.UIUpdateLink.UpdateLink(UIKit.UIWindowScene,Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIUpdateLink.UpdateLink(UIKit.UIWindowScene,UIKit.UIUpdateLinkCallback)
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.GetActionsForContext(UIKit.UIUserNotificationActionContext)
M:UIKit.UIUserNotificationCategory.MutableCopy(Foundation.NSZone)
M:UIKit.UIUserNotificationSettings.Copy(Foundation.NSZone)
M:UIKit.UIUserNotificationSettings.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIUserNotificationSettings.GetSettingsForTypes(UIKit.UIUserNotificationType,Foundation.NSSet)
M:UIKit.UIVibrancyEffect.CreateForNotificationCenter
M:UIKit.UIVibrancyEffect.CreatePrimaryVibrancyEffectForNotificationCenter
M:UIKit.UIVibrancyEffect.CreateSecondaryVibrancyEffectForNotificationCenter
M:UIKit.UIVibrancyEffect.CreateWidgetEffectForNotificationCenter(UIKit.UIVibrancyEffectStyle)
-M:UIKit.UIVibrancyEffect.FromBlurEffect(UIKit.UIBlurEffect,UIKit.UIVibrancyEffectStyle)
-M:UIKit.UIVibrancyEffect.FromBlurEffect(UIKit.UIBlurEffect)
M:UIKit.UIVideo.IsCompatibleWithSavedPhotosAlbum(System.String)
M:UIKit.UIVideo.SaveToPhotosAlbum(System.String,UIKit.UIVideo.SaveStatus)
M:UIKit.UIVideoEditorController.add_Failed(System.EventHandler{Foundation.NSErrorEventArgs})
M:UIKit.UIVideoEditorController.add_Saved(System.EventHandler{UIKit.UIPathEventArgs})
M:UIKit.UIVideoEditorController.add_UserCancelled(System.EventHandler)
-M:UIKit.UIVideoEditorController.CanEditVideoAtPath(System.String)
M:UIKit.UIVideoEditorController.Dispose(System.Boolean)
M:UIKit.UIVideoEditorController.remove_Failed(System.EventHandler{Foundation.NSErrorEventArgs})
M:UIKit.UIVideoEditorController.remove_Saved(System.EventHandler{UIKit.UIPathEventArgs})
@@ -61888,441 +44858,93 @@ M:UIKit.UIVideoEditorController.remove_UserCancelled(System.EventHandler)
M:UIKit.UIVideoEditorControllerDelegate_Extensions.Failed(UIKit.IUIVideoEditorControllerDelegate,UIKit.UIVideoEditorController,Foundation.NSError)
M:UIKit.UIVideoEditorControllerDelegate_Extensions.UserCancelled(UIKit.IUIVideoEditorControllerDelegate,UIKit.UIVideoEditorController)
M:UIKit.UIVideoEditorControllerDelegate_Extensions.VideoSaved(UIKit.IUIVideoEditorControllerDelegate,UIKit.UIVideoEditorController,System.String)
-M:UIKit.UIVideoEditorControllerDelegate.Failed(UIKit.UIVideoEditorController,Foundation.NSError)
-M:UIKit.UIVideoEditorControllerDelegate.UserCancelled(UIKit.UIVideoEditorController)
-M:UIKit.UIVideoEditorControllerDelegate.VideoSaved(UIKit.UIVideoEditorController,System.String)
M:UIKit.UIView_UITextField.EndEditing(UIKit.UIView,System.Boolean)
-M:UIKit.UIView.#ctor(CoreGraphics.CGRect)
-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)
-M:UIKit.UIView.AddConstraint(UIKit.NSLayoutConstraint)
-M:UIKit.UIView.AddConstraints(UIKit.NSLayoutConstraint[])
-M:UIKit.UIView.AddGestureRecognizer(UIKit.UIGestureRecognizer)
-M:UIKit.UIView.AddInteraction(UIKit.IUIInteraction)
-M:UIKit.UIView.AddKeyframeWithRelativeStartTime(System.Double,System.Double,System.Action)
-M:UIKit.UIView.AddLayoutGuide(UIKit.UILayoutGuide)
-M:UIKit.UIView.AddMotionEffect(UIKit.UIMotionEffect)
-M:UIKit.UIView.AddSubview(UIKit.UIView)
M:UIKit.UIView.AddSubviews(UIKit.UIView[])
-M:UIKit.UIView.AlignmentRectForFrame(CoreGraphics.CGRect)
M:UIKit.UIView.Animate(System.Double,System.Action,System.Action)
-M:UIKit.UIView.Animate(System.Double,System.Action)
M:UIKit.UIView.Animate(System.Double,System.Double,UIKit.UIViewAnimationOptions,System.Action,System.Action)
-M:UIKit.UIView.Animate(System.Double,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double,UIKit.UIViewAnimationOptions,System.Action,System.Action{System.Boolean})
M:UIKit.UIView.AnimateAsync(System.Double,System.Action)
M:UIKit.UIView.AnimateAsync(System.Double,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double,UIKit.UIViewAnimationOptions,System.Action)
-M:UIKit.UIView.AnimateKeyframes(System.Double,System.Double,UIKit.UIViewKeyframeAnimationOptions,System.Action,UIKit.UICompletionHandler)
M:UIKit.UIView.AnimateKeyframesAsync(System.Double,System.Double,UIKit.UIViewKeyframeAnimationOptions,System.Action)
-M:UIKit.UIView.AnimateNotify(System.Double,System.Action,UIKit.UICompletionHandler)
-M:UIKit.UIView.AnimateNotify(System.Double,System.Double,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,UIKit.UIViewAnimationOptions,System.Action,UIKit.UICompletionHandler)
-M:UIKit.UIView.AnimateNotify(System.Double,System.Double,UIKit.UIViewAnimationOptions,System.Action,UIKit.UICompletionHandler)
M:UIKit.UIView.AnimateNotifyAsync(System.Double,System.Action)
M:UIKit.UIView.AnimateNotifyAsync(System.Double,System.Double,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,UIKit.UIViewAnimationOptions,System.Action)
M:UIKit.UIView.AnimateNotifyAsync(System.Double,System.Double,UIKit.UIViewAnimationOptions,System.Action)
-M:UIKit.UIView.BeginAnimations(System.String,System.IntPtr)
M:UIKit.UIView.BeginAnimations(System.String)
-M:UIKit.UIView.BringSubviewToFront(UIKit.UIView)
M:UIKit.UIView.Capture(System.Boolean)
-M:UIKit.UIView.CommitAnimations
-M:UIKit.UIView.ContentCompressionResistancePriority(UIKit.UILayoutConstraintAxis)
-M:UIKit.UIView.ContentHuggingPriority(UIKit.UILayoutConstraintAxis)
-M:UIKit.UIView.ConvertPointFromCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:UIKit.UIView.ConvertPointFromView(CoreGraphics.CGPoint,UIKit.UIView)
-M:UIKit.UIView.ConvertPointToCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:UIKit.UIView.ConvertPointToView(CoreGraphics.CGPoint,UIKit.UIView)
-M:UIKit.UIView.ConvertRectFromCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace)
-M:UIKit.UIView.ConvertRectFromView(CoreGraphics.CGRect,UIKit.UIView)
-M:UIKit.UIView.ConvertRectToCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace)
-M:UIKit.UIView.ConvertRectToView(CoreGraphics.CGRect,UIKit.UIView)
-M:UIKit.UIView.DecodeRestorableState(Foundation.NSCoder)
-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.Draw(CoreGraphics.CGRect)
M:UIKit.UIView.DrawLayer(CoreAnimation.CALayer,CoreGraphics.CGContext)
-M:UIKit.UIView.DrawRect(CoreGraphics.CGRect,UIKit.UIViewPrintFormatter)
-M:UIKit.UIView.DrawViewHierarchy(CoreGraphics.CGRect,System.Boolean)
-M:UIKit.UIView.EncodeRestorableState(Foundation.NSCoder)
M:UIKit.UIView.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIView.ExchangeSubview(System.IntPtr,System.IntPtr)
-M:UIKit.UIView.ExerciseAmbiguityInLayout
-M:UIKit.UIView.FrameForAlignmentRect(CoreGraphics.CGRect)
-M:UIKit.UIView.GestureRecognizerShouldBegin(UIKit.UIGestureRecognizer)
-M:UIKit.UIView.GetConstraintsAffectingLayout(UIKit.UILayoutConstraintAxis)
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.GetUserInterfaceLayoutDirection(UIKit.UISemanticContentAttribute,UIKit.UIUserInterfaceLayoutDirection)
-M:UIKit.UIView.GetUserInterfaceLayoutDirection(UIKit.UISemanticContentAttribute)
-M:UIKit.UIView.HitTest(CoreGraphics.CGPoint,UIKit.UIEvent)
-M:UIKit.UIView.InsertSubview(UIKit.UIView,System.IntPtr)
-M:UIKit.UIView.InsertSubviewAbove(UIKit.UIView,UIKit.UIView)
-M:UIKit.UIView.InsertSubviewBelow(UIKit.UIView,UIKit.UIView)
-M:UIKit.UIView.InvalidateIntrinsicContentSize
-M:UIKit.UIView.IsDescendantOfView(UIKit.UIView)
-M:UIKit.UIView.LayoutIfNeeded
-M:UIKit.UIView.LayoutMarginsDidChange
M:UIKit.UIView.LayoutSublayersOfLayer(CoreAnimation.CALayer)
-M:UIKit.UIView.LayoutSubviews
-M:UIKit.UIView.ModifyAnimations(System.Runtime.InteropServices.NFloat,System.Boolean,System.Action)
-M:UIKit.UIView.MovedToSuperview
-M:UIKit.UIView.MovedToWindow
-M:UIKit.UIView.NeedsUpdateConstraints
-M:UIKit.UIView.PerformSystemAnimation(UIKit.UISystemAnimation,UIKit.UIView[],UIKit.UIViewAnimationOptions,System.Action,UIKit.UICompletionHandler)
M:UIKit.UIView.PerformSystemAnimationAsync(UIKit.UISystemAnimation,UIKit.UIView[],UIKit.UIViewAnimationOptions,System.Action)
-M:UIKit.UIView.PerformWithoutAnimation(System.Action)
-M:UIKit.UIView.PointInside(CoreGraphics.CGPoint,UIKit.UIEvent)
-M:UIKit.UIView.RegisterForTraitChanges(ObjCRuntime.Class[],Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIView.RegisterForTraitChanges(ObjCRuntime.Class[],ObjCRuntime.Selector)
-M:UIKit.UIView.RegisterForTraitChanges(ObjCRuntime.Class[],System.Action{UIKit.IUITraitEnvironment,UIKit.UITraitCollection})
M:UIKit.UIView.remove_AnimationWillEnd(System.Action)
M:UIKit.UIView.remove_AnimationWillStart(System.Action)
-M:UIKit.UIView.RemoveConstraint(UIKit.NSLayoutConstraint)
-M:UIKit.UIView.RemoveConstraints(UIKit.NSLayoutConstraint[])
-M:UIKit.UIView.RemoveFromSuperview
-M:UIKit.UIView.RemoveGestureRecognizer(UIKit.UIGestureRecognizer)
-M:UIKit.UIView.RemoveInteraction(UIKit.IUIInteraction)
-M:UIKit.UIView.RemoveLayoutGuide(UIKit.UILayoutGuide)
-M:UIKit.UIView.RemoveMotionEffect(UIKit.UIMotionEffect)
-M:UIKit.UIView.RequiresConstraintBasedLayout
-M:UIKit.UIView.ResizableSnapshotView(CoreGraphics.CGRect,System.Boolean,UIKit.UIEdgeInsets)
-M:UIKit.UIView.SafeAreaInsetsDidChange
-M:UIKit.UIView.SendSubviewToBack(UIKit.UIView)
-M:UIKit.UIView.SetAnimationBeginsFromCurrentState(System.Boolean)
-M:UIKit.UIView.SetAnimationCurve(UIKit.UIViewAnimationCurve)
-M:UIKit.UIView.SetAnimationDelay(System.Double)
-M:UIKit.UIView.SetAnimationDelegate(Foundation.NSObject)
-M:UIKit.UIView.SetAnimationDidStopSelector(ObjCRuntime.Selector)
-M:UIKit.UIView.SetAnimationDuration(System.Double)
-M:UIKit.UIView.SetAnimationRepeatAutoreverses(System.Boolean)
-M:UIKit.UIView.SetAnimationRepeatCount(System.Single)
-M:UIKit.UIView.SetAnimationStartDate(Foundation.NSDate)
-M:UIKit.UIView.SetAnimationTransition(UIKit.UIViewAnimationTransition,UIKit.UIView,System.Boolean)
-M:UIKit.UIView.SetAnimationWillStartSelector(ObjCRuntime.Selector)
-M:UIKit.UIView.SetContentCompressionResistancePriority(System.Single,UIKit.UILayoutConstraintAxis)
-M:UIKit.UIView.SetContentHuggingPriority(System.Single,UIKit.UILayoutConstraintAxis)
-M:UIKit.UIView.SetNeedsDisplay
-M:UIKit.UIView.SetNeedsDisplayInRect(CoreGraphics.CGRect)
-M:UIKit.UIView.SetNeedsFocusUpdate
-M:UIKit.UIView.SetNeedsLayout
-M:UIKit.UIView.SetNeedsUpdateConstraints
-M:UIKit.UIView.ShouldUpdateFocus(UIKit.UIFocusUpdateContext)
-M:UIKit.UIView.SizeThatFits(CoreGraphics.CGSize)
-M:UIKit.UIView.SizeToFit
-M:UIKit.UIView.SnapshotView(System.Boolean)
-M:UIKit.UIView.SubviewAdded(UIKit.UIView)
-M:UIKit.UIView.SystemLayoutSizeFittingSize(CoreGraphics.CGSize,System.Single,System.Single)
-M:UIKit.UIView.SystemLayoutSizeFittingSize(CoreGraphics.CGSize)
-M:UIKit.UIView.TintColorDidChange
-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.TransitionNotify(UIKit.UIView,System.Double,UIKit.UIViewAnimationOptions,System.Action,UIKit.UICompletionHandler)
-M:UIKit.UIView.TransitionNotify(UIKit.UIView,UIKit.UIView,System.Double,UIKit.UIViewAnimationOptions,UIKit.UICompletionHandler)
M:UIKit.UIView.TransitionNotifyAsync(UIKit.UIView,System.Double,UIKit.UIViewAnimationOptions,System.Action)
M:UIKit.UIView.TransitionNotifyAsync(UIKit.UIView,UIKit.UIView,System.Double,UIKit.UIViewAnimationOptions)
M:UIKit.UIView.UIViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIView.UnregisterForTraitChanges(UIKit.IUITraitChangeRegistration)
-M:UIKit.UIView.UpdateConstraints
-M:UIKit.UIView.UpdateConstraintsIfNeeded
-M:UIKit.UIView.UpdateFocusIfNeeded
-M:UIKit.UIView.UpdateTraitsIfNeeded
-M:UIKit.UIView.ViewWithTag(System.IntPtr)
M:UIKit.UIView.WillDrawLayer(CoreAnimation.CALayer)
-M:UIKit.UIView.WillMoveToSuperview(UIKit.UIView)
-M:UIKit.UIView.WillMoveToWindow(UIKit.UIWindow)
-M:UIKit.UIView.WillRemoveSubview(UIKit.UIView)
-M:UIKit.UIViewConfigurationState.#ctor(UIKit.UITraitCollection)
M:UIKit.UIViewConfigurationState.Copy(Foundation.NSZone)
M:UIKit.UIViewConfigurationState.EncodeTo(Foundation.NSCoder)
-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(System.String,Foundation.NSBundle)
M:UIKit.UIViewController.Add(UIKit.UIView)
-M:UIKit.UIViewController.AddChildViewController(UIKit.UIViewController)
-M:UIKit.UIViewController.AddKeyCommand(UIKit.UIKeyCommand)
-M:UIKit.UIViewController.ApplicationFinishedRestoringState
-M:UIKit.UIViewController.AttemptRotationToDeviceOrientation
-M:UIKit.UIViewController.BeginAppearanceTransition(System.Boolean,System.Boolean)
M:UIKit.UIViewController.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
-M:UIKit.UIViewController.CanPerformUnwind(ObjCRuntime.Selector,UIKit.UIViewController,Foundation.NSObject)
-M:UIKit.UIViewController.CanPerformUnwindDeprecated(ObjCRuntime.Selector,UIKit.UIViewController,Foundation.NSObject)
-M:UIKit.UIViewController.ChildViewControllerForStatusBarHidden
-M:UIKit.UIViewController.ChildViewControllerForStatusBarStyle
-M:UIKit.UIViewController.DecodeRestorableState(Foundation.NSCoder)
-M:UIKit.UIViewController.DidAnimateFirstHalfOfRotation(UIKit.UIInterfaceOrientation)
-M:UIKit.UIViewController.DidMoveToParentViewController(UIKit.UIViewController)
-M:UIKit.UIViewController.DidReceiveMemoryWarning
-M:UIKit.UIViewController.DidRotate(UIKit.UIInterfaceOrientation)
-M:UIKit.UIViewController.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
-M:UIKit.UIViewController.DismissModalViewController(System.Boolean)
-M:UIKit.UIViewController.DismissMoviePlayerViewController
-M:UIKit.UIViewController.DismissViewController(System.Boolean,System.Action)
M:UIKit.UIViewController.DismissViewControllerAsync(System.Boolean)
M:UIKit.UIViewController.Dispose(System.Boolean)
-M:UIKit.UIViewController.EncodeRestorableState(Foundation.NSCoder)
M:UIKit.UIViewController.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIViewController.EndAppearanceTransition
-M:UIKit.UIViewController.GetAllowedChildViewControllersForUnwinding(UIKit.UIStoryboardUnwindSegueSource)
-M:UIKit.UIViewController.GetChildViewControllerContainingSegueSource(UIKit.UIStoryboardUnwindSegueSource)
-M:UIKit.UIViewController.GetContentScrollView(UIKit.NSDirectionalRectEdge)
M:UIKit.UIViewController.GetEnumerator
-M:UIKit.UIViewController.GetOverrideTraitCollectionForChildViewController(UIKit.UIViewController)
-M:UIKit.UIViewController.GetSegueForUnwinding(UIKit.UIViewController,UIKit.UIViewController,System.String)
-M:UIKit.UIViewController.GetSizeForChildContentContainer(UIKit.IUIContentContainer,CoreGraphics.CGSize)
-M:UIKit.UIViewController.GetSoundIdentifier(UIKit.UIFocusUpdateContext)
-M:UIKit.UIViewController.GetSupportedInterfaceOrientations
-M:UIKit.UIViewController.GetTargetViewControllerForAction(ObjCRuntime.Selector,Foundation.NSObject)
-M:UIKit.UIViewController.GetViewControllerForUnwind(ObjCRuntime.Selector,UIKit.UIViewController,Foundation.NSObject)
-M:UIKit.UIViewController.LoadView
-M:UIKit.UIViewController.LoadViewIfNeeded
-M:UIKit.UIViewController.PerformSegue(System.String,Foundation.NSObject)
-M:UIKit.UIViewController.PreferredContentSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer)
-M:UIKit.UIViewController.PreferredInterfaceOrientationForPresentation
-M:UIKit.UIViewController.PreferredStatusBarStyle
-M:UIKit.UIViewController.PrefersStatusBarHidden
-M:UIKit.UIViewController.PrepareForSegue(UIKit.UIStoryboardSegue,Foundation.NSObject)
-M:UIKit.UIViewController.PresentModalViewController(UIKit.UIViewController,System.Boolean)
-M:UIKit.UIViewController.PresentMoviePlayerViewController(MediaPlayer.MPMoviePlayerViewController)
-M:UIKit.UIViewController.PresentViewController(UIKit.UIViewController,System.Boolean,System.Action)
M:UIKit.UIViewController.PresentViewControllerAsync(UIKit.UIViewController,System.Boolean)
-M:UIKit.UIViewController.RegisterForPreviewingWithDelegate(UIKit.IUIViewControllerPreviewingDelegate,UIKit.UIView)
-M:UIKit.UIViewController.RegisterForTraitChanges(ObjCRuntime.Class[],Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIViewController.RegisterForTraitChanges(ObjCRuntime.Class[],ObjCRuntime.Selector)
-M:UIKit.UIViewController.RegisterForTraitChanges(ObjCRuntime.Class[],System.Action{UIKit.IUITraitEnvironment,UIKit.UITraitCollection})
-M:UIKit.UIViewController.RemoveFromParentViewController
-M:UIKit.UIViewController.RemoveKeyCommand(UIKit.UIKeyCommand)
-M:UIKit.UIViewController.SetContentScrollView(UIKit.UIScrollView,UIKit.NSDirectionalRectEdge)
-M:UIKit.UIViewController.SetEditing(System.Boolean,System.Boolean)
-M:UIKit.UIViewController.SetNeedsFocusUpdate
-M:UIKit.UIViewController.SetNeedsStatusBarAppearanceUpdate
-M:UIKit.UIViewController.SetNeedsTouchBarUpdate
-M:UIKit.UIViewController.SetNeedsUpdateContentUnavailableConfiguration
-M:UIKit.UIViewController.SetNeedsUpdateOfHomeIndicatorAutoHidden
-M:UIKit.UIViewController.SetNeedsUpdateOfPrefersPointerLocked
-M:UIKit.UIViewController.SetNeedsUpdateOfScreenEdgesDeferringSystemGestures
-M:UIKit.UIViewController.SetNeedsUpdateOfSupportedInterfaceOrientations
-M:UIKit.UIViewController.SetNeedsUserInterfaceAppearanceUpdate
-M:UIKit.UIViewController.SetOverrideTraitCollection(UIKit.UITraitCollection,UIKit.UIViewController)
-M:UIKit.UIViewController.SetToolbarItems(UIKit.UIBarButtonItem[],System.Boolean)
-M:UIKit.UIViewController.ShouldAutorotate
-M:UIKit.UIViewController.ShouldAutorotateToInterfaceOrientation(UIKit.UIInterfaceOrientation)
-M:UIKit.UIViewController.ShouldPerformSegue(System.String,Foundation.NSObject)
-M:UIKit.UIViewController.ShouldUpdateFocus(UIKit.UIFocusUpdateContext)
-M:UIKit.UIViewController.ShowDetailViewController(UIKit.UIViewController,Foundation.NSObject)
-M:UIKit.UIViewController.ShowViewController(UIKit.UIViewController,Foundation.NSObject)
-M:UIKit.UIViewController.SystemLayoutFittingSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer)
-M:UIKit.UIViewController.TraitCollectionDidChange(UIKit.UITraitCollection)
-M:UIKit.UIViewController.Transition(UIKit.UIViewController,UIKit.UIViewController,System.Double,UIKit.UIViewAnimationOptions,System.Action,UIKit.UICompletionHandler)
M:UIKit.UIViewController.TransitionAsync(UIKit.UIViewController,UIKit.UIViewController,System.Double,UIKit.UIViewAnimationOptions,System.Action)
-M:UIKit.UIViewController.UnregisterForPreviewingWithContext(UIKit.IUIViewControllerPreviewing)
-M:UIKit.UIViewController.UnregisterForTraitChanges(UIKit.IUITraitChangeRegistration)
-M:UIKit.UIViewController.Unwind(UIKit.UIStoryboardSegue,UIKit.UIViewController)
-M:UIKit.UIViewController.UpdateContentUnavailableConfiguration(UIKit.UIContentUnavailableConfigurationState)
-M:UIKit.UIViewController.UpdateFocusIfNeeded
-M:UIKit.UIViewController.UpdateTraitsIfNeeded
-M:UIKit.UIViewController.UpdateViewConstraints
-M:UIKit.UIViewController.ViewDidAppear(System.Boolean)
-M:UIKit.UIViewController.ViewDidDisappear(System.Boolean)
-M:UIKit.UIViewController.ViewDidLayoutSubviews
-M:UIKit.UIViewController.ViewDidLoad
-M:UIKit.UIViewController.ViewDidUnload
-M:UIKit.UIViewController.ViewIsAppearing(System.Boolean)
-M:UIKit.UIViewController.ViewLayoutMarginsDidChange
-M:UIKit.UIViewController.ViewSafeAreaInsetsDidChange
-M:UIKit.UIViewController.ViewWillAppear(System.Boolean)
-M:UIKit.UIViewController.ViewWillDisappear(System.Boolean)
-M:UIKit.UIViewController.ViewWillLayoutSubviews
-M:UIKit.UIViewController.ViewWillTransitionToSize(CoreGraphics.CGSize,UIKit.IUIViewControllerTransitionCoordinator)
-M:UIKit.UIViewController.ViewWillUnload
-M:UIKit.UIViewController.WillAnimateFirstHalfOfRotation(UIKit.UIInterfaceOrientation,System.Double)
-M:UIKit.UIViewController.WillAnimateRotation(UIKit.UIInterfaceOrientation,System.Double)
-M:UIKit.UIViewController.WillAnimateSecondHalfOfRotation(UIKit.UIInterfaceOrientation,System.Double)
-M:UIKit.UIViewController.WillMoveToParentViewController(UIKit.UIViewController)
-M:UIKit.UIViewController.WillRotate(UIKit.UIInterfaceOrientation,System.Double)
-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.AnimateTransition(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.UIViewControllerAnimatedTransitioning.AnimationEnded(System.Boolean)
-M:UIKit.UIViewControllerAnimatedTransitioning.GetInterruptibleAnimator(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.UIViewControllerAnimatedTransitioning.TransitionDuration(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.UIViewControllerContextTransitioning.CancelInteractiveTransition
-M:UIKit.UIViewControllerContextTransitioning.CompleteTransition(System.Boolean)
-M:UIKit.UIViewControllerContextTransitioning.FinishInteractiveTransition
-M:UIKit.UIViewControllerContextTransitioning.GetFinalFrameForViewController(UIKit.UIViewController)
-M:UIKit.UIViewControllerContextTransitioning.GetInitialFrameForViewController(UIKit.UIViewController)
-M:UIKit.UIViewControllerContextTransitioning.GetViewControllerForKey(Foundation.NSString)
-M:UIKit.UIViewControllerContextTransitioning.GetViewFor(Foundation.NSString)
-M:UIKit.UIViewControllerContextTransitioning.PauseInteractiveTransition
-M:UIKit.UIViewControllerContextTransitioning.UpdateInteractiveTransition(System.Runtime.InteropServices.NFloat)
M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetCompletionCurve(UIKit.IUIViewControllerInteractiveTransitioning)
M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetCompletionSpeed(UIKit.IUIViewControllerInteractiveTransitioning)
M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetWantsInteractiveStart(UIKit.IUIViewControllerInteractiveTransitioning)
-M:UIKit.UIViewControllerInteractiveTransitioning.StartInteractiveTransition(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.UIViewControllerPreviewingDelegate.CommitViewController(UIKit.IUIViewControllerPreviewing,UIKit.UIViewController)
-M:UIKit.UIViewControllerPreviewingDelegate.GetViewControllerForPreview(UIKit.IUIViewControllerPreviewing,CoreGraphics.CGPoint)
-M:UIKit.UIViewControllerTransition.Zoom(UIKit.UIZoomTransitionOptions,System.Func{UIKit.UIZoomTransitionSourceViewProviderContext,UIKit.UIView})
M:UIKit.UIViewControllerTransitionCoordinatorContext_Extensions.GetTransitionViewController(UIKit.IUIViewControllerTransitionCoordinatorContext,UIKit.UITransitionViewControllerKind)
M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetAnimationControllerForDismissedController(UIKit.IUIViewControllerTransitioningDelegate,UIKit.UIViewController)
M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetAnimationControllerForPresentedController(UIKit.IUIViewControllerTransitioningDelegate,UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)
M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetInteractionControllerForDismissal(UIKit.IUIViewControllerTransitioningDelegate,UIKit.IUIViewControllerAnimatedTransitioning)
M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetInteractionControllerForPresentation(UIKit.IUIViewControllerTransitioningDelegate,UIKit.IUIViewControllerAnimatedTransitioning)
M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetPresentationControllerForPresentedViewController(UIKit.IUIViewControllerTransitioningDelegate,UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UIViewControllerTransitioningDelegate.GetAnimationControllerForDismissedController(UIKit.UIViewController)
-M:UIKit.UIViewControllerTransitioningDelegate.GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)
-M:UIKit.UIViewControllerTransitioningDelegate.GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning)
-M:UIKit.UIViewControllerTransitioningDelegate.GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning)
-M:UIKit.UIViewControllerTransitioningDelegate.GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController)
M:UIKit.UIViewImplicitlyAnimating_Extensions.AddAnimations(UIKit.IUIViewImplicitlyAnimating,System.Action,System.Runtime.InteropServices.NFloat)
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.UIViewPropertyAnimator.#ctor(System.Double,CoreGraphics.CGPoint,CoreGraphics.CGPoint,System.Action)
-M:UIKit.UIViewPropertyAnimator.#ctor(System.Double,System.Runtime.InteropServices.NFloat,System.Action)
-M:UIKit.UIViewPropertyAnimator.#ctor(System.Double,UIKit.IUITimingCurveProvider)
-M:UIKit.UIViewPropertyAnimator.#ctor(System.Double,UIKit.UIViewAnimationCurve,System.Action)
-M:UIKit.UIViewPropertyAnimator.AddAnimations(System.Action,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIViewPropertyAnimator.AddAnimations(System.Action)
-M:UIKit.UIViewPropertyAnimator.AddCompletion(System.Action{UIKit.UIViewAnimatingPosition})
-M:UIKit.UIViewPropertyAnimator.ContinueAnimation(UIKit.IUITimingCurveProvider,System.Runtime.InteropServices.NFloat)
M:UIKit.UIViewPropertyAnimator.Copy(Foundation.NSZone)
-M:UIKit.UIViewPropertyAnimator.CreateRunningPropertyAnimator(System.Double,System.Double,UIKit.UIViewAnimationOptions,System.Action,System.Action{UIKit.UIViewAnimatingPosition})
-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.Copy(Foundation.NSZone)
M:UIKit.UIVisualEffect.EncodeTo(Foundation.NSCoder)
-M:UIKit.UIVisualEffectView.#ctor(UIKit.UIVisualEffect)
M:UIKit.UIVisualEffectView.EncodeTo(Foundation.NSCoder)
M:UIKit.UIVisualEffectView.UIVisualEffectViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIWebErrorArgs.#ctor(Foundation.NSError)
-M:UIKit.UIWebView.#ctor(CoreGraphics.CGRect)
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.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.EvaluateJavascript(System.String)
-M:UIKit.UIWebView.GoBack
-M:UIKit.UIWebView.GoForward
-M:UIKit.UIWebView.LoadData(Foundation.NSData,System.String,System.String,Foundation.NSUrl)
-M:UIKit.UIWebView.LoadHtmlString(System.String,Foundation.NSUrl)
-M:UIKit.UIWebView.LoadRequest(Foundation.NSUrlRequest)
-M:UIKit.UIWebView.Reload
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.ShouldScrollToTop(UIKit.UIScrollView)
-M:UIKit.UIWebView.StopLoading
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)
M:UIKit.UIWebViewDelegate_Extensions.ShouldStartLoad(UIKit.IUIWebViewDelegate,UIKit.UIWebView,Foundation.NSUrlRequest,UIKit.UIWebViewNavigationType)
-M:UIKit.UIWebViewDelegate.LoadFailed(UIKit.UIWebView,Foundation.NSError)
-M:UIKit.UIWebViewDelegate.LoadingFinished(UIKit.UIWebView)
-M:UIKit.UIWebViewDelegate.LoadStarted(UIKit.UIWebView)
-M:UIKit.UIWebViewDelegate.ShouldStartLoad(UIKit.UIWebView,Foundation.NSUrlRequest,UIKit.UIWebViewNavigationType)
-M:UIKit.UIWindow.#ctor(CoreGraphics.CGRect)
-M:UIKit.UIWindow.#ctor(UIKit.UIWindowScene)
-M:UIKit.UIWindow.BecomeKeyWindow
-M:UIKit.UIWindow.ConvertPointFromWindow(CoreGraphics.CGPoint,UIKit.UIWindow)
-M:UIKit.UIWindow.ConvertPointToWindow(CoreGraphics.CGPoint,UIKit.UIWindow)
-M:UIKit.UIWindow.ConvertRectFromWindow(CoreGraphics.CGRect,UIKit.UIWindow)
-M:UIKit.UIWindow.ConvertRectToWindow(CoreGraphics.CGRect,UIKit.UIWindow)
M:UIKit.UIWindow.Dispose(System.Boolean)
-M:UIKit.UIWindow.MakeKeyAndVisible
-M:UIKit.UIWindow.MakeKeyWindow
-M:UIKit.UIWindow.ResignKeyWindow
-M:UIKit.UIWindow.SendEvent(UIKit.UIEvent)
M:UIKit.UIWindow.UIWindowAppearance.#ctor(System.IntPtr)
-M:UIKit.UIWindowScene.#ctor(UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
M:UIKit.UIWindowScene.Dispose(System.Boolean)
-M:UIKit.UIWindowScene.RegisterForTraitChanges(ObjCRuntime.Class[],Foundation.NSObject,ObjCRuntime.Selector)
-M:UIKit.UIWindowScene.RegisterForTraitChanges(ObjCRuntime.Class[],ObjCRuntime.Selector)
-M:UIKit.UIWindowScene.RegisterForTraitChanges(ObjCRuntime.Class[],System.Action{UIKit.IUITraitEnvironment,UIKit.UITraitCollection})
-M:UIKit.UIWindowScene.RequestGeometryUpdate(UIKit.UIWindowSceneGeometryPreferences,System.Action{Foundation.NSError})
-M:UIKit.UIWindowScene.UnregisterForTraitChanges(UIKit.IUITraitChangeRegistration)
-M:UIKit.UIWindowSceneActivationAction.Create(UIKit.UIActionIdentifier,UIKit.UIAction,UIKit.UIWindowSceneActivationActionConfigurationProvider)
-M:UIKit.UIWindowSceneActivationConfiguration.#ctor(Foundation.NSUserActivity)
-M:UIKit.UIWindowSceneActivationInteraction.#ctor(UIKit.UIWindowSceneActivationInteractionConfigurationProvider,System.Action{Foundation.NSError})
-M:UIKit.UIWindowSceneActivationInteraction.DidMoveToView(UIKit.UIView)
M:UIKit.UIWindowSceneActivationInteraction.Dispose(System.Boolean)
-M:UIKit.UIWindowSceneActivationInteraction.WillMoveToView(UIKit.UIView)
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})
M:UIKit.UIWindowSceneDelegate_Extensions.SetWindow(UIKit.IUIWindowSceneDelegate,UIKit.UIWindow)
M:UIKit.UIWindowSceneDelegate_Extensions.UserDidAcceptCloudKitShare(UIKit.IUIWindowSceneDelegate,UIKit.UIWindowScene,CloudKit.CKShareMetadata)
-M:UIKit.UIWindowSceneDelegate.ContinueUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
-M:UIKit.UIWindowSceneDelegate.DidBecomeActive(UIKit.UIScene)
-M:UIKit.UIWindowSceneDelegate.DidDisconnect(UIKit.UIScene)
-M:UIKit.UIWindowSceneDelegate.DidEnterBackground(UIKit.UIScene)
-M:UIKit.UIWindowSceneDelegate.DidFailToContinueUserActivity(UIKit.UIScene,System.String,Foundation.NSError)
-M:UIKit.UIWindowSceneDelegate.DidUpdateCoordinateSpace(UIKit.UIWindowScene,UIKit.IUICoordinateSpace,UIKit.UIInterfaceOrientation,UIKit.UITraitCollection)
-M:UIKit.UIWindowSceneDelegate.DidUpdateUserActivity(UIKit.UIScene,Foundation.NSUserActivity)
-M:UIKit.UIWindowSceneDelegate.GetStateRestorationActivity(UIKit.UIScene)
-M:UIKit.UIWindowSceneDelegate.OpenUrlContexts(UIKit.UIScene,Foundation.NSSet{UIKit.UIOpenUrlContext})
-M:UIKit.UIWindowSceneDelegate.PerformAction(UIKit.UIWindowScene,UIKit.UIApplicationShortcutItem,System.Action{System.Boolean})
-M:UIKit.UIWindowSceneDelegate.RestoreInteractionState(UIKit.UIScene,Foundation.NSUserActivity)
-M:UIKit.UIWindowSceneDelegate.UserDidAcceptCloudKitShare(UIKit.UIWindowScene,CloudKit.CKShareMetadata)
-M:UIKit.UIWindowSceneDelegate.WillConnect(UIKit.UIScene,UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
-M:UIKit.UIWindowSceneDelegate.WillContinueUserActivity(UIKit.UIScene,System.String)
-M:UIKit.UIWindowSceneDelegate.WillEnterForeground(UIKit.UIScene)
-M:UIKit.UIWindowSceneDelegate.WillResignActive(UIKit.UIScene)
-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.UIWindowSceneGeometryPreferencesIOS.#ctor
-M:UIKit.UIWindowSceneGeometryPreferencesIOS.#ctor(UIKit.UIInterfaceOrientationMask)
-M:UIKit.UIWindowSceneGeometryPreferencesMac.#ctor
-M:UIKit.UIWindowSceneGeometryPreferencesMac.#ctor(CoreGraphics.CGRect)
M:UIKit.UIWindowScenePlacement.Copy(Foundation.NSZone)
-M:UIKit.UIWindowSceneProminentPlacement.Create
-M:UIKit.UIWindowSceneStandardPlacement.Create
-M:UIKit.UIWritingToolsCoordinator.#ctor(UIKit.IUIWritingToolsCoordinatorDelegate)
-M:UIKit.UIWritingToolsCoordinator.DidMoveToView(UIKit.UIView)
M:UIKit.UIWritingToolsCoordinator.Dispose(System.Boolean)
-M:UIKit.UIWritingToolsCoordinator.StopWritingTools
-M:UIKit.UIWritingToolsCoordinator.UpdateForReflowedTextInContext(Foundation.NSUuid)
-M:UIKit.UIWritingToolsCoordinator.UpdateRange(Foundation.NSRange,Foundation.NSAttributedString,UIKit.UIWritingToolsCoordinatorTextUpdateReason,Foundation.NSUuid)
-M:UIKit.UIWritingToolsCoordinator.WillMoveToView(UIKit.UIView)
-M:UIKit.UIWritingToolsCoordinatorContext.#ctor(Foundation.NSAttributedString,Foundation.NSRange)
-M:UIKit.UIWritingToolsCoordinatorDelegate.FinishTextAnimation(UIKit.UIWritingToolsCoordinator,UIKit.UIWritingToolsCoordinatorTextAnimation,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,System.Action)
-M:UIKit.UIWritingToolsCoordinatorDelegate.PrepareForTextAnimation(UIKit.UIWritingToolsCoordinator,UIKit.UIWritingToolsCoordinatorTextAnimation,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,System.Action)
-M:UIKit.UIWritingToolsCoordinatorDelegate.ReplaceRange(UIKit.UIWritingToolsCoordinator,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,Foundation.NSAttributedString,UIKit.UIWritingToolsCoordinatorTextReplacementReason,UIKit.UIWritingToolsCoordinatorAnimationParameters,UIKit.UIWritingToolsCoordinatorDelegateReplaceRangeCallback)
-M:UIKit.UIWritingToolsCoordinatorDelegate.RequestsBoundingBezierPaths(UIKit.UIWritingToolsCoordinator,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,UIKit.UIWritingToolsCoordinatorDelegateRequestsBoundingBezierPathsCallback)
-M:UIKit.UIWritingToolsCoordinatorDelegate.RequestsContexts(UIKit.UIWritingToolsCoordinator,UIKit.UIWritingToolsCoordinatorContextScope,UIKit.UIWritingToolsCoordinatorDelegateRequestsContextsCallback)
-M:UIKit.UIWritingToolsCoordinatorDelegate.RequestsDecorationContainerView(UIKit.UIWritingToolsCoordinator,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,UIKit.UIWritingToolsCoordinatorDelegateRequestsDecorationContainerViewCallback)
-M:UIKit.UIWritingToolsCoordinatorDelegate.RequestsPreviewForTextAnimation(UIKit.UIWritingToolsCoordinator,UIKit.UIWritingToolsCoordinatorTextAnimation,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,UIKit.UIWritingToolsCoordinatorDelegateRequestsPreviewForTextAnimationCallback)
-M:UIKit.UIWritingToolsCoordinatorDelegate.RequestsRange(UIKit.UIWritingToolsCoordinator,CoreGraphics.CGPoint,UIKit.UIWritingToolsCoordinatorDelegateRequestsRangeCallback)
-M:UIKit.UIWritingToolsCoordinatorDelegate.RequestsSingleContainerSubranges(UIKit.UIWritingToolsCoordinator,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,UIKit.UIWritingToolsCoordinatorDelegateRequestsSingleContainerSubrangesCallback)
-M:UIKit.UIWritingToolsCoordinatorDelegate.RequestsUnderlinePaths(UIKit.UIWritingToolsCoordinator,Foundation.NSRange,UIKit.UIWritingToolsCoordinatorContext,UIKit.UIWritingToolsCoordinatorDelegateRequestsUnderlinePathsCallback)
-M:UIKit.UIWritingToolsCoordinatorDelegate.SelectRanges(UIKit.UIWritingToolsCoordinator,Foundation.NSValue[],UIKit.UIWritingToolsCoordinatorContext,System.Action)
-M:UIKit.UIWritingToolsCoordinatorDelegate.WillChangeToState(UIKit.UIWritingToolsCoordinator,UIKit.UIWritingToolsCoordinatorState,System.Action)
M:UIKit.UIZoomTransitionOptions.Copy(Foundation.NSZone)
M:UIKit.WillEndDraggingEventArgs.#ctor(CoreGraphics.CGPoint,CoreGraphics.CGPoint)
M:UIKit.ZoomingEndedEventArgs.#ctor(UIKit.UIView,System.Runtime.InteropServices.NFloat)
@@ -62565,410 +45187,150 @@ M:VideoToolbox.VTVideoEncoder.GetEncoderList
M:VideoToolbox.VTVideoEncoder.GetSupportedEncoderProperties(System.Int32,System.Int32,CoreMedia.CMVideoCodecType,Foundation.NSDictionary)
M:VideoToolbox.VTVideoEncoderSpecification.#ctor
M:VideoToolbox.VTVideoEncoderSpecification.#ctor(Foundation.NSDictionary)
-M:Vision.VNAnimalBodyPoseObservation.GetRecognizedPoint(Vision.VNAnimalBodyPoseObservationJointName,Foundation.NSError@)
-M:Vision.VNAnimalBodyPoseObservation.GetRecognizedPoints(Vision.VNAnimalBodyPoseObservationJointsGroupName,Foundation.NSError@)
-M:Vision.VNBarcodeObservation.FromBoundingBox(CoreGraphics.CGRect)
-M:Vision.VNBarcodeObservation.FromBoundingBox(Vision.VNBarcodeObservationRequestRevision,CoreGraphics.CGRect)
M:Vision.VNBarcodeSymbologyExtensions.GetConstants(Vision.VNBarcodeSymbology[])
M:Vision.VNBarcodeSymbologyExtensions.GetValues(Foundation.NSString[])
-M:Vision.VNCalculateImageAestheticsScoresRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNCircle.Contains(Vision.VNPoint,System.Double)
-M:Vision.VNCircle.Contains(Vision.VNPoint)
M:Vision.VNCircle.Copy(Foundation.NSZone)
M:Vision.VNCircle.EncodeTo(Foundation.NSCoder)
-M:Vision.VNClassificationObservation.HasMinimumPrecision(System.Single,System.Single)
-M:Vision.VNClassificationObservation.HasMinimumRecall(System.Single,System.Single)
-M:Vision.VNClassifyImageRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNClassifyImageRequest.GetKnownClassifications(Vision.VNClassifyImageRequestRevision,Foundation.NSError@)
-M:Vision.VNClassifyImageRequest.GetSupportedIdentifiers(Foundation.NSError@)
M:Vision.VNContour.Copy(Foundation.NSZone)
-M:Vision.VNContour.GetChildContour(System.UIntPtr,Foundation.NSError@)
-M:Vision.VNContour.GetPolygonApproximation(System.Single,Foundation.NSError@)
-M:Vision.VNContoursObservation.GetContour(Foundation.NSIndexPath,Foundation.NSError@)
-M:Vision.VNContoursObservation.GetContour(System.IntPtr,Foundation.NSError@)
-M:Vision.VNCoreMLModel.FromMLModel(CoreML.MLModel,Foundation.NSError@)
-M:Vision.VNCoreMLRequest.#ctor(Vision.VNCoreMLModel,Vision.VNRequestCompletionHandler)
-M:Vision.VNCoreMLRequest.#ctor(Vision.VNCoreMLModel)
-M:Vision.VNCoreMLRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectAnimalBodyPoseRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectAnimalBodyPoseRequest.GetSupportedJointNames(Foundation.NSError@)
-M:Vision.VNDetectAnimalBodyPoseRequest.GetSupportedJointsGroupNames(Foundation.NSError@)
-M:Vision.VNDetectBarcodesRequest.#ctor(Vision.VNRequestCompletionHandler)
M:Vision.VNDetectBarcodesRequest.GetSupportedSymbologies(Foundation.NSError@)
-M:Vision.VNDetectBarcodesRequest.GetWeakSupportedSymbologies(Foundation.NSError@)
-M:Vision.VNDetectContoursRequest.#ctor(Vision.VNRequestCompletionHandler)
M:Vision.VNDetectContoursRequest.Dispose(System.Boolean)
-M:Vision.VNDetectDocumentSegmentationRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectedObjectObservation.FromBoundingBox(CoreGraphics.CGRect)
-M:Vision.VNDetectedObjectObservation.FromBoundingBox(Vision.VNDetectedObjectObservationRequestRevision,CoreGraphics.CGRect)
-M:Vision.VNDetectFaceCaptureQualityRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectFaceLandmarksRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectFaceLandmarksRequest.SupportsConstellation(Vision.VNDetectFaceLandmarksRequestRevision,Vision.VNRequestFaceLandmarksConstellation)
-M:Vision.VNDetectFaceRectanglesRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectHorizonRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectHumanBodyPose3DRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectHumanBodyPose3DRequest.GetSupportedJointNames(Foundation.NSError@)
-M:Vision.VNDetectHumanBodyPose3DRequest.GetSupportedJointsGroupNames(Foundation.NSError@)
-M:Vision.VNDetectHumanBodyPoseRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectHumanBodyPoseRequest.GetSupportedJointNames(Foundation.NSError@)
-M:Vision.VNDetectHumanBodyPoseRequest.GetSupportedJointNames(Vision.VNDetectHumanBodyPoseRequestRevision,Foundation.NSError@)
-M:Vision.VNDetectHumanBodyPoseRequest.GetSupportedJointsGroupNames(Foundation.NSError@)
-M:Vision.VNDetectHumanBodyPoseRequest.GetSupportedJointsGroupNames(Vision.VNDetectHumanBodyPoseRequestRevision,Foundation.NSError@)
-M:Vision.VNDetectHumanHandPoseRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectHumanHandPoseRequest.GetSupportedJointNames(Foundation.NSError@)
-M:Vision.VNDetectHumanHandPoseRequest.GetSupportedJointNames(Vision.VNDetectHumanHandPoseRequestRevision,Foundation.NSError@)
-M:Vision.VNDetectHumanHandPoseRequest.GetSupportedJointsGroupNames(Foundation.NSError@)
-M:Vision.VNDetectHumanHandPoseRequest.GetSupportedJointsGroupNames(Vision.VNDetectHumanHandPoseRequestRevision,Foundation.NSError@)
-M:Vision.VNDetectHumanRectanglesRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectRectanglesRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectTextRectanglesRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNDetectTrajectoriesRequest.#ctor(CoreMedia.CMTime,System.IntPtr,Vision.VNRequestCompletionHandler)
M:Vision.VNFaceLandmarkRegion.Copy(Foundation.NSZone)
M:Vision.VNFaceLandmarkRegion.EncodeTo(Foundation.NSCoder)
M:Vision.VNFaceLandmarkRegion2D.GetPointsInImage(CoreGraphics.CGSize)
M:Vision.VNFaceLandmarks.Copy(Foundation.NSZone)
M:Vision.VNFaceLandmarks.EncodeTo(Foundation.NSCoder)
-M:Vision.VNFaceObservation.FromBoundingBox(CoreGraphics.CGRect)
-M:Vision.VNFaceObservation.FromBoundingBox(Vision.VNFaceObservationRequestRevision,CoreGraphics.CGRect,System.Nullable{System.Runtime.InteropServices.NFloat},System.Nullable{System.Runtime.InteropServices.NFloat},System.Nullable{System.Runtime.InteropServices.NFloat})
-M:Vision.VNFaceObservation.FromBoundingBox(Vision.VNFaceObservationRequestRevision,CoreGraphics.CGRect,System.Nullable{System.Runtime.InteropServices.NFloat},System.Nullable{System.Runtime.InteropServices.NFloat})
-M:Vision.VNFaceObservation.FromBoundingBox(Vision.VNFaceObservationRequestRevision,CoreGraphics.CGRect)
M:Vision.VNFeaturePrintObservation.ComputeDistance(System.Single[]@,Vision.VNFeaturePrintObservation,Foundation.NSError@)
-M:Vision.VNGenerateAttentionBasedSaliencyImageRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateForegroundInstanceMaskRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateImageFeaturePrintRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateObjectnessBasedSaliencyImageRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSData,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSData,Foundation.NSDictionary)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSData,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSData,Vision.VNImageOptions)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions)
-M:Vision.VNGeneratePersonInstanceMaskRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNGeneratePersonSegmentationRequest.#ctor(CoreMedia.CMTime,Vision.VNRequestCompletionHandler)
-M:Vision.VNGeneratePersonSegmentationRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNGeneratePersonSegmentationRequest.Create
-M:Vision.VNGeneratePersonSegmentationRequest.GetSupportedOutputPixelFormats(Foundation.NSError@)
-M:Vision.VNGeometryUtils.CalculateArea(System.Double@,Vision.VNContour,System.Boolean,Foundation.NSError@)
-M:Vision.VNGeometryUtils.CalculatePerimeter(System.Double@,Vision.VNContour,Foundation.NSError@)
M:Vision.VNGeometryUtils.CreateBoundingCircle(System.Numerics.Vector2[],Foundation.NSError@)
-M:Vision.VNGeometryUtils.CreateBoundingCircle(Vision.VNContour,Foundation.NSError@)
-M:Vision.VNGeometryUtils.CreateBoundingCircle(Vision.VNPoint[],Foundation.NSError@)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSData,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSData,Foundation.NSDictionary)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSData,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSData,Vision.VNImageOptions)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNHomographicImageRegistrationRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions)
-M:Vision.VNHorizonObservation.CreateTransform(System.UIntPtr,System.UIntPtr)
-M:Vision.VNHumanBodyPose3DObservation.GetCameraRelativePosition(CoreGraphics.NMatrix4@,Vision.VNHumanBodyPose3DObservationJointName,Foundation.NSError@)
-M:Vision.VNHumanBodyPose3DObservation.GetParentJointName(Vision.VNHumanBodyPose3DObservationJointName)
-M:Vision.VNHumanBodyPose3DObservation.GetPointInImage(Vision.VNHumanBodyPose3DObservationJointName,Foundation.NSError@)
-M:Vision.VNHumanBodyPose3DObservation.GetRecognizedPoint(Vision.VNHumanBodyPose3DObservationJointName,Foundation.NSError@)
-M:Vision.VNHumanBodyPose3DObservation.GetRecognizedPoints(Vision.VNHumanBodyPose3DObservationJointsGroupName,Foundation.NSError@)
-M:Vision.VNHumanBodyPoseObservation.GetRecognizedPoint(Vision.VNHumanBodyPoseObservationJointName,Foundation.NSError@)
-M:Vision.VNHumanBodyPoseObservation.GetRecognizedPoints(Vision.VNHumanBodyPoseObservationJointsGroupName,Foundation.NSError@)
-M:Vision.VNHumanBodyRecognizedPoint3D.#ctor(CoreGraphics.NMatrix4)
-M:Vision.VNHumanHandPoseObservation.GetRecognizedPoint(Vision.VNHumanHandPoseObservationJointName,Foundation.NSError@)
-M:Vision.VNHumanHandPoseObservation.GetRecognizedPoints(Vision.VNHumanHandPoseObservationJointsGroupName,Foundation.NSError@)
-M:Vision.VNImageBasedRequest.#ctor(Vision.VNRequestCompletionHandler)
M:Vision.VNImageOptions.#ctor
M:Vision.VNImageOptions.#ctor(Foundation.NSDictionary)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRegistrationRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions)
-M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSData,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSData,Foundation.NSDictionary)
-M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSData,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSData,Vision.VNImageOptions)
-M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary)
-M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNImageRegistrationRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions)
-M:Vision.VNImageRequestHandler.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary)
-M:Vision.VNImageRequestHandler.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRequestHandler.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRequestHandler.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions)
-M:Vision.VNImageRequestHandler.#ctor(CoreImage.CIImage,Foundation.NSDictionary)
-M:Vision.VNImageRequestHandler.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRequestHandler.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRequestHandler.#ctor(CoreImage.CIImage,Vision.VNImageOptions)
-M:Vision.VNImageRequestHandler.#ctor(CoreMedia.CMSampleBuffer,AVFoundation.AVDepthData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:Vision.VNImageRequestHandler.#ctor(CoreMedia.CMSampleBuffer,Foundation.NSDictionary)
-M:Vision.VNImageRequestHandler.#ctor(CoreMedia.CMSampleBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRequestHandler.#ctor(CoreMedia.CMSampleBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRequestHandler.#ctor(CoreMedia.CMSampleBuffer,Vision.VNImageOptions)
-M:Vision.VNImageRequestHandler.#ctor(CoreVideo.CVPixelBuffer,AVFoundation.AVDepthData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:Vision.VNImageRequestHandler.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary)
-M:Vision.VNImageRequestHandler.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRequestHandler.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRequestHandler.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions)
-M:Vision.VNImageRequestHandler.#ctor(Foundation.NSData,Foundation.NSDictionary)
-M:Vision.VNImageRequestHandler.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRequestHandler.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRequestHandler.#ctor(Foundation.NSData,Vision.VNImageOptions)
-M:Vision.VNImageRequestHandler.#ctor(Foundation.NSUrl,Foundation.NSDictionary)
-M:Vision.VNImageRequestHandler.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNImageRequestHandler.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRequestHandler.#ctor(Foundation.NSUrl,Vision.VNImageOptions)
-M:Vision.VNImageRequestHandler.Perform(Vision.VNRequest[],Foundation.NSError@)
-M:Vision.VNInstanceMaskObservation.GenerateMask(Foundation.NSIndexSet,Foundation.NSError@)
-M:Vision.VNInstanceMaskObservation.GenerateMaskedImage(Foundation.NSIndexSet,Vision.VNImageRequestHandler,System.Boolean,Foundation.NSError@)
-M:Vision.VNInstanceMaskObservation.GenerateScaledMask(Foundation.NSIndexSet,Vision.VNImageRequestHandler,Foundation.NSError@)
M:Vision.VNObservation.Copy(Foundation.NSZone)
M:Vision.VNObservation.EncodeTo(Foundation.NSCoder)
-M:Vision.VNPoint.#ctor(CoreGraphics.CGPoint)
-M:Vision.VNPoint.#ctor(System.Double,System.Double)
M:Vision.VNPoint.Copy(Foundation.NSZone)
-M:Vision.VNPoint.Create(Vision.VNVector,Vision.VNPoint)
M:Vision.VNPoint.EncodeTo(Foundation.NSCoder)
-M:Vision.VNPoint.GetDistanceToPoint(Vision.VNPoint)
-M:Vision.VNPoint3D.#ctor(CoreGraphics.NMatrix4)
M:Vision.VNPoint3D.Copy(Foundation.NSZone)
M:Vision.VNPoint3D.EncodeTo(Foundation.NSCoder)
-M:Vision.VNRecognizeAnimalsRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNRecognizeAnimalsRequest.GetKnownAnimalIdentifiers(Vision.VNRecognizeAnimalsRequestRevision,Foundation.NSError@)
-M:Vision.VNRecognizeAnimalsRequest.GetSupportedIdentifiers(Foundation.NSError@)
-M:Vision.VNRecognizedObjectObservation.FromBoundingBox(CoreGraphics.CGRect)
-M:Vision.VNRecognizedObjectObservation.FromBoundingBox(Vision.VNRecognizedObjectObservationRequestRevision,CoreGraphics.CGRect)
-M:Vision.VNRecognizedPoint3D.#ctor(CoreGraphics.NMatrix4)
-M:Vision.VNRecognizedPoints3DObservation.GetRecognizedPoint(Foundation.NSString,Foundation.NSError@)
-M:Vision.VNRecognizedPoints3DObservation.GetRecognizedPoints(Foundation.NSString,Foundation.NSError@)
M:Vision.VNRecognizedPointsObservation.GetAvailableGroupKeys``1
M:Vision.VNRecognizedPointsObservation.GetAvailableKeys``1
-M:Vision.VNRecognizedPointsObservation.GetKeypoints(Foundation.NSError@)
-M:Vision.VNRecognizedPointsObservation.GetRecognizedPoint(Foundation.NSString,Foundation.NSError@)
M:Vision.VNRecognizedPointsObservation.GetRecognizedPoint(Vision.VNHumanBodyPoseObservationJointName,Foundation.NSError@)
M:Vision.VNRecognizedPointsObservation.GetRecognizedPoint(Vision.VNHumanHandPoseObservationJointName,Foundation.NSError@)
-M:Vision.VNRecognizedPointsObservation.GetRecognizedPoints(Foundation.NSString,Foundation.NSError@)
M:Vision.VNRecognizedPointsObservation.GetRecognizedPoints(Vision.VNHumanBodyPoseObservationJointsGroupName,Foundation.NSError@)
M:Vision.VNRecognizedPointsObservation.GetRecognizedPoints(Vision.VNHumanHandPoseObservationJointsGroupName,Foundation.NSError@)
M:Vision.VNRecognizedText.Copy(Foundation.NSZone)
M:Vision.VNRecognizedText.EncodeTo(Foundation.NSCoder)
-M:Vision.VNRecognizedText.GetBoundingBox(Foundation.NSRange,Foundation.NSError@)
-M:Vision.VNRecognizedTextObservation.Create(CoreGraphics.CGRect)
-M:Vision.VNRecognizedTextObservation.TopCandidates(System.UIntPtr)
-M:Vision.VNRecognizeTextRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNRecognizeTextRequest.GetSupportedRecognitionLanguages(Foundation.NSError@)
-M:Vision.VNRecognizeTextRequest.GetSupportedRecognitionLanguages(Vision.VNRequestTextRecognitionLevel,Vision.VNRecognizeTextRequestRevision,Foundation.NSError@)
-M:Vision.VNRectangleObservation.FromBoundingBox(CoreGraphics.CGRect)
-M:Vision.VNRectangleObservation.FromBoundingBox(Vision.VNRectangleObservationRequestRevision,CoreGraphics.CGRect)
-M:Vision.VNRectangleObservation.FromRectangleObservation(Vision.VNRectangleObservationRequestRevision,CoreGraphics.CGPoint,CoreGraphics.CGPoint,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:Vision.VNRectangleObservation.GetRectangleObservation(Vision.VNRectangleObservationRequestRevision,CoreGraphics.CGPoint,CoreGraphics.CGPoint,CoreGraphics.CGPoint,CoreGraphics.CGPoint)
-M:Vision.VNRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNRequest.Cancel
M:Vision.VNRequest.Copy(Foundation.NSZone)
-M:Vision.VNRequest.GetComputeDevice(System.String)
M:Vision.VNRequest.GetResults``1
-M:Vision.VNRequest.GetSupportedComputeDevices(Foundation.NSError@)
-M:Vision.VNRequest.SetComputeDevice(CoreML.IMLComputeDeviceProtocol,System.String)
-M:Vision.VNSequenceRequestHandler.#ctor
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],CoreGraphics.CGImage,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],CoreImage.CIImage,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],CoreMedia.CMSampleBuffer,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],CoreMedia.CMSampleBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],CoreVideo.CVPixelBuffer,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],Foundation.NSData,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],Foundation.NSUrl,Foundation.NSError@)
-M:Vision.VNSequenceRequestHandler.Perform(Vision.VNRequest[],Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSError@)
-M:Vision.VNStatefulRequest.#ctor(CoreMedia.CMTime,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary)
-M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions)
-M:Vision.VNTargetedImageRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary)
-M:Vision.VNTargetedImageRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTargetedImageRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTargetedImageRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions)
-M:Vision.VNTargetedImageRequest.#ctor(CoreMedia.CMSampleBuffer,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreMedia.CMSampleBuffer,Foundation.NSDictionary)
-M:Vision.VNTargetedImageRequest.#ctor(CoreMedia.CMSampleBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreMedia.CMSampleBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTargetedImageRequest.#ctor(CoreMedia.CMSampleBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(CoreMedia.CMSampleBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTargetedImageRequest.#ctor(CoreMedia.CMSampleBuffer,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(CoreMedia.CMSampleBuffer,Vision.VNImageOptions)
-M:Vision.VNTargetedImageRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary)
-M:Vision.VNTargetedImageRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTargetedImageRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTargetedImageRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions)
-M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSData,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSData,Foundation.NSDictionary)
-M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSData,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSData,Vision.VNImageOptions)
-M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary)
-M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTargetedImageRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions)
-M:Vision.VNTextObservation.FromBoundingBox(CoreGraphics.CGRect)
-M:Vision.VNTextObservation.FromBoundingBox(Vision.VNTextObservationRequestRevision,CoreGraphics.CGRect)
-M:Vision.VNTrackHomographicImageRegistrationRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNTrackingRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNTrackingRequest.GetSupportedNumberOfTrackers(Foundation.NSError@)
-M:Vision.VNTrackObjectRequest.#ctor(Vision.VNDetectedObjectObservation,Vision.VNRequestCompletionHandler)
-M:Vision.VNTrackObjectRequest.#ctor(Vision.VNDetectedObjectObservation)
-M:Vision.VNTrackObjectRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNTrackOpticalFlowRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNTrackRectangleRequest.#ctor(Vision.VNRectangleObservation,Vision.VNRequestCompletionHandler)
-M:Vision.VNTrackRectangleRequest.#ctor(Vision.VNRectangleObservation)
-M:Vision.VNTrackRectangleRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNTrackTranslationalImageRegistrationRequest.#ctor(Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Foundation.NSDictionary)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreGraphics.CGImage,Vision.VNImageOptions)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreImage.CIImage,Foundation.NSDictionary)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreImage.CIImage,Vision.VNImageOptions)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Foundation.NSDictionary)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(CoreVideo.CVPixelBuffer,Vision.VNImageOptions)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSData,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSData,Foundation.NSDictionary)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSData,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSData,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSData,Vision.VNImageOptions)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSUrl,Foundation.NSDictionary)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary,Vision.VNRequestCompletionHandler)
-M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNTranslationalImageRegistrationRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
@@ -62985,35 +45347,17 @@ M:Vision.VNUtils.GetNormalizedPoint(CoreGraphics.CGPoint,System.UIntPtr,System.U
M:Vision.VNUtils.GetNormalizedRect(CoreGraphics.CGRect,System.UIntPtr,System.UIntPtr,CoreGraphics.CGRect)
M:Vision.VNUtils.GetNormalizedRect(CoreGraphics.CGRect,System.UIntPtr,System.UIntPtr)
M:Vision.VNUtils.IsIdentityRect(CoreGraphics.CGRect)
-M:Vision.VNVector.#ctor(System.Double,System.Double)
-M:Vision.VNVector.#ctor(Vision.VNPoint,Vision.VNPoint)
M:Vision.VNVector.Copy(Foundation.NSZone)
-M:Vision.VNVector.CreateByAddingVector(Vision.VNVector,Vision.VNVector)
-M:Vision.VNVector.CreateByMultiplyingVector(Vision.VNVector,System.Double)
-M:Vision.VNVector.CreateBySubtractingVector(Vision.VNVector,Vision.VNVector)
-M:Vision.VNVector.CreateUnitVector(Vision.VNVector)
M:Vision.VNVector.EncodeTo(Foundation.NSCoder)
-M:Vision.VNVector.GetDotProduct(Vision.VNVector,Vision.VNVector)
-M:Vision.VNVideoProcessor.#ctor(Foundation.NSUrl)
-M:Vision.VNVideoProcessor.AddRequest(Vision.VNRequest,Vision.VNVideoProcessorRequestProcessingOptions,Foundation.NSError@)
-M:Vision.VNVideoProcessor.Analyze(CoreMedia.CMTimeRange,Foundation.NSError@)
-M:Vision.VNVideoProcessor.Cancel
-M:Vision.VNVideoProcessor.RemoveRequest(Vision.VNRequest,Foundation.NSError@)
M:Vision.VNVideoProcessorCadence.Copy(Foundation.NSZone)
-M:Vision.VNVideoProcessorFrameRateCadence.#ctor(System.IntPtr)
M:Vision.VNVideoProcessorRequestProcessingOptions.Copy(Foundation.NSZone)
-M:Vision.VNVideoProcessorTimeIntervalCadence.#ctor(System.Double)
M:VisionKit.IVNDocumentCameraViewControllerDelegate.DidCancel(VisionKit.VNDocumentCameraViewController)
M:VisionKit.IVNDocumentCameraViewControllerDelegate.DidFail(VisionKit.VNDocumentCameraViewController,Foundation.NSError)
M:VisionKit.IVNDocumentCameraViewControllerDelegate.DidFinish(VisionKit.VNDocumentCameraViewController,VisionKit.VNDocumentCameraScan)
-M:VisionKit.VNDocumentCameraScan.GetImage(System.UIntPtr)
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)
M:VisionKit.VNDocumentCameraViewControllerDelegate_Extensions.DidFinish(VisionKit.IVNDocumentCameraViewControllerDelegate,VisionKit.VNDocumentCameraViewController,VisionKit.VNDocumentCameraScan)
-M:VisionKit.VNDocumentCameraViewControllerDelegate.DidCancel(VisionKit.VNDocumentCameraViewController)
-M:VisionKit.VNDocumentCameraViewControllerDelegate.DidFail(VisionKit.VNDocumentCameraViewController,Foundation.NSError)
-M:VisionKit.VNDocumentCameraViewControllerDelegate.DidFinish(VisionKit.VNDocumentCameraViewController,VisionKit.VNDocumentCameraScan)
M:WatchConnectivity.IWCSessionDelegate.ActivationDidComplete(WatchConnectivity.WCSession,WatchConnectivity.WCSessionActivationState,Foundation.NSError)
M:WatchConnectivity.IWCSessionDelegate.DidBecomeInactive(WatchConnectivity.WCSession)
M:WatchConnectivity.IWCSessionDelegate.DidDeactivate(WatchConnectivity.WCSession)
@@ -63064,220 +45408,19 @@ M:WatchConnectivity.WCSessionDelegate.SessionWatchStateDidChange(WatchConnectivi
M:WatchConnectivity.WCSessionFileTransfer.Cancel
M:WatchConnectivity.WCSessionUserInfoTransfer.Cancel
M:WatchConnectivity.WCSessionUserInfoTransfer.EncodeTo(Foundation.NSCoder)
-M:WebKit.DomCharacterData.AppendData(System.String)
-M:WebKit.DomCharacterData.DeleteData(System.UInt32,System.UInt32)
-M:WebKit.DomCharacterData.InsertData(System.UInt32,System.String)
-M:WebKit.DomCharacterData.ReplaceData(System.UInt32,System.UInt32,System.String)
-M:WebKit.DomCharacterData.SubstringData(System.UInt32,System.UInt32)
-M:WebKit.DomCssMediaRule.DeleteRule(System.UInt32)
-M:WebKit.DomCssMediaRule.InsertRule(System.String,System.UInt32)
M:WebKit.DomCssRuleList.GetEnumerator
-M:WebKit.DomCssRuleList.GetItem(System.Int32)
M:WebKit.DomCssStyleDeclaration.GetEnumerator
-M:WebKit.DomCssStyleDeclaration.GetItem(System.Int32)
-M:WebKit.DomCssStyleDeclaration.GetPropertyCssValue(System.String)
-M:WebKit.DomCssStyleDeclaration.GetPropertyPriority(System.String)
-M:WebKit.DomCssStyleDeclaration.GetPropertyShorthand(System.String)
-M:WebKit.DomCssStyleDeclaration.GetPropertyValue(System.String)
-M:WebKit.DomCssStyleDeclaration.IsPropertyImplicit(System.String)
-M:WebKit.DomCssStyleDeclaration.RemoveProperty(System.String)
-M:WebKit.DomCssStyleDeclaration.SetProperty(System.String,System.String,System.String)
-M:WebKit.DomCssStyleSheet.AddRule(System.String,System.String,System.UInt32)
-M:WebKit.DomCssStyleSheet.DeleteRule(System.UInt32)
-M:WebKit.DomCssStyleSheet.InsertRule(System.String,System.UInt32)
-M:WebKit.DomCssStyleSheet.RemoveRule(System.UInt32)
-M:WebKit.DomDocument.AdoptNode(WebKit.DomNode)
-M:WebKit.DomDocument.CreateAttribute(System.String)
-M:WebKit.DomDocument.CreateAttributeNS(System.String,System.String)
-M:WebKit.DomDocument.CreateCDataSection(System.String)
-M:WebKit.DomDocument.CreateComment(System.String)
-M:WebKit.DomDocument.CreateCssStyleDeclaration
-M:WebKit.DomDocument.CreateDocumentFragment
-M:WebKit.DomDocument.CreateElement(System.String)
-M:WebKit.DomDocument.CreateElementNS(System.String,System.String)
-M:WebKit.DomDocument.CreateEntityReference(System.String)
-M:WebKit.DomDocument.CreateEvent(System.String)
-M:WebKit.DomDocument.CreateNodeIterator(WebKit.DomNode,System.UInt32,WebKit.IDomNodeFilter,System.Boolean)
-M:WebKit.DomDocument.CreateProcessingInstruction(System.String,System.String)
-M:WebKit.DomDocument.CreateRange
-M:WebKit.DomDocument.CreateTextNode(System.String)
-M:WebKit.DomDocument.ElementFromPoint(System.Int32,System.Int32)
-M:WebKit.DomDocument.ExecCommand(System.String,System.Boolean,System.String)
-M:WebKit.DomDocument.ExecCommand(System.String,System.Boolean)
-M:WebKit.DomDocument.ExecCommand(System.String)
-M:WebKit.DomDocument.GetComputedStyle(WebKit.DomElement,System.String)
-M:WebKit.DomDocument.GetElementById(System.String)
-M:WebKit.DomDocument.GetElementsByClassName(System.String)
-M:WebKit.DomDocument.GetElementsByName(System.String)
-M:WebKit.DomDocument.GetElementsByTagName(System.String)
-M:WebKit.DomDocument.GetElementsByTagNameNS(System.String,System.String)
-M:WebKit.DomDocument.GetMatchedCSSRules(WebKit.DomElement,System.String,System.Boolean)
-M:WebKit.DomDocument.GetMatchedCSSRules(WebKit.DomElement,System.String)
-M:WebKit.DomDocument.GetOverrideStyle(WebKit.DomElement,System.String)
-M:WebKit.DomDocument.ImportNode(WebKit.DomNode,System.Boolean)
-M:WebKit.DomDocument.QueryCommandEnabled(System.String)
-M:WebKit.DomDocument.QueryCommandIndeterm(System.String)
-M:WebKit.DomDocument.QueryCommandState(System.String)
-M:WebKit.DomDocument.QueryCommandSupported(System.String)
-M:WebKit.DomDocument.QueryCommandValue(System.String)
-M:WebKit.DomDocument.QuerySelector(System.String)
-M:WebKit.DomDocument.QuerySelectorAll(System.String)
-M:WebKit.DomElement.Blur
-M:WebKit.DomElement.Contains(WebKit.DomElement)
-M:WebKit.DomElement.Focus
-M:WebKit.DomElement.GetAttribute(System.String)
-M:WebKit.DomElement.GetAttributeNode(System.String)
-M:WebKit.DomElement.GetAttributeNodeNS(System.String,System.String)
-M:WebKit.DomElement.GetAttributeNS(System.String,System.String)
-M:WebKit.DomElement.GetElementsByClassName(System.String)
-M:WebKit.DomElement.GetElementsByTagName(System.String)
-M:WebKit.DomElement.GetElementsByTagNameNS(System.String,System.String)
-M:WebKit.DomElement.HasAttribute(System.String)
-M:WebKit.DomElement.HasAttributeNS(System.String,System.String)
-M:WebKit.DomElement.QuerySelector(System.String)
-M:WebKit.DomElement.QuerySelectorAll(System.String)
-M:WebKit.DomElement.RemoveAttribute(System.String)
-M:WebKit.DomElement.RemoveAttributeNode(WebKit.DomAttr)
-M:WebKit.DomElement.RemoveAttributeNS(System.String,System.String)
-M:WebKit.DomElement.ScrollByLines(System.Int32)
-M:WebKit.DomElement.ScrollByPages(System.Int32)
-M:WebKit.DomElement.ScrollIntoView(System.Boolean)
-M:WebKit.DomElement.ScrollIntoViewIfNeeded(System.Boolean)
-M:WebKit.DomElement.SetAttribute(System.String,System.String)
-M:WebKit.DomElement.SetAttributeNode(WebKit.DomAttr)
-M:WebKit.DomElement.SetAttributeNodeNS(WebKit.DomAttr)
-M:WebKit.DomElement.SetAttributeNS(System.String,System.String,System.String)
-M:WebKit.DomElement.WebKitRequestFullScreen(System.UInt16)
-M:WebKit.DomEvent.#ctor(System.String,System.Boolean,System.Boolean)
-M:WebKit.DomEvent.PreventDefault
-M:WebKit.DomEvent.StopPropagation
M:WebKit.DomEventArgs.#ctor(WebKit.DomEvent)
-M:WebKit.DomEventListener.HandleEvent(WebKit.DomEvent)
-M:WebKit.DomEventTarget.AddEventListener(System.String,WebKit.IDomEventListener,System.Boolean)
M:WebKit.DomEventTarget.Copy(Foundation.NSZone)
-M:WebKit.DomEventTarget.DispatchEvent(WebKit.DomEvent)
-M:WebKit.DomEventTarget.RemoveEventListener(System.String,WebKit.IDomEventListener,System.Boolean)
-M:WebKit.DomFileList.GetItem(System.Int32)
-M:WebKit.DomHtmlButtonElement.Click
M:WebKit.DomHtmlCollection.GetEnumerator
-M:WebKit.DomHtmlCollection.GetItem(System.Int32)
-M:WebKit.DomHtmlCollection.GetNamedItem(System.String)
-M:WebKit.DomHtmlCollection.GetTags(System.String)
-M:WebKit.DomHtmlDocument.CaptureEvents
-M:WebKit.DomHtmlDocument.Clear
-M:WebKit.DomHtmlDocument.Close
-M:WebKit.DomHtmlDocument.HasFocus
-M:WebKit.DomHtmlDocument.Open
-M:WebKit.DomHtmlDocument.ReleaseEvents
-M:WebKit.DomHtmlDocument.Write(System.String)
-M:WebKit.DomHtmlDocument.Writeln(System.String)
-M:WebKit.DomHtmlFormElement.Reset
-M:WebKit.DomHtmlFormElement.Submit
-M:WebKit.DomHtmlInputElement.Click
-M:WebKit.DomHtmlInputElement.Select
-M:WebKit.DomHtmlInputElement.SetSelectionRange(System.Int32,System.Int32)
-M:WebKit.DomHtmlMarqueeElement.Start
-M:WebKit.DomHtmlMarqueeElement.Stop
-M:WebKit.DomHtmlOptionsCollection.Add(WebKit.DomHtmlOptionElement,System.UInt32)
-M:WebKit.DomHtmlOptionsCollection.GetItem(System.UInt32)
-M:WebKit.DomHtmlOptionsCollection.NamedItem(System.String)
-M:WebKit.DomHtmlOptionsCollection.Remove(System.UInt32)
-M:WebKit.DomHtmlSelectElement.Add(WebKit.DomHtmlElement,WebKit.DomHtmlElement)
-M:WebKit.DomHtmlSelectElement.GetItem(System.UInt32)
-M:WebKit.DomHtmlSelectElement.NamedItem(System.String)
-M:WebKit.DomHtmlSelectElement.Remove(System.Int32)
-M:WebKit.DomHtmlTableElement.CreateCaption
-M:WebKit.DomHtmlTableElement.CreateTFoot
-M:WebKit.DomHtmlTableElement.CreateTHead
-M:WebKit.DomHtmlTableElement.DeleteCaption
-M:WebKit.DomHtmlTableElement.DeleteRow(System.Int32)
-M:WebKit.DomHtmlTableElement.DeleteTFoot
-M:WebKit.DomHtmlTableElement.DeleteTHead
-M:WebKit.DomHtmlTableElement.InsertRow(System.Int32)
-M:WebKit.DomHtmlTableRowElement.DeleteCell(System.Int32)
-M:WebKit.DomHtmlTableRowElement.InsertCell(System.Int32)
-M:WebKit.DomHtmlTableSectionElement.DeleteRow(System.Int32)
-M:WebKit.DomHtmlTableSectionElement.InsertRow(System.Int32)
-M:WebKit.DomHtmlTextAreaElement.Blur
-M:WebKit.DomHtmlTextAreaElement.Focus
-M:WebKit.DomHtmlTextAreaElement.Select
-M:WebKit.DomImplementation.CreateCssStyleSheet(System.String,System.String)
-M:WebKit.DomImplementation.CreateDocument(System.String,System.String,WebKit.DomDocumentType)
-M:WebKit.DomImplementation.CreateDocumentType(System.String,System.String,System.String)
-M:WebKit.DomImplementation.CreateHtmlDocument(System.String)
-M:WebKit.DomImplementation.HasFeature(System.String,System.String)
-M:WebKit.DomKeyboardEvent.#ctor(System.String,System.Boolean,System.Boolean,WebKit.DomAbstractView,System.String,WebKit.DomKeyLocation,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)
-M:WebKit.DomKeyboardEvent.#ctor(System.String,System.Boolean,System.Boolean,WebKit.DomAbstractView,System.String,WebKit.DomKeyLocation,System.Boolean,System.Boolean,System.Boolean,System.Boolean)
-M:WebKit.DomKeyboardEvent.GetModifierState(System.String)
-M:WebKit.DomMediaList.AppendMedium(System.String)
-M:WebKit.DomMediaList.DeleteMedium(System.String)
M:WebKit.DomMediaList.GetEnumerator
-M:WebKit.DomMediaList.GetItem(System.Int32)
-M:WebKit.DomMouseEvent.#ctor(System.String,System.Boolean,System.Boolean,WebKit.DomAbstractView,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.UInt16,WebKit.IDomEventTarget)
M:WebKit.DomNamedNodeMap.GetEnumerator
-M:WebKit.DomNamedNodeMap.GetItem(System.Int32)
-M:WebKit.DomNamedNodeMap.GetNamedItem(System.String)
-M:WebKit.DomNamedNodeMap.GetNamedItemNS(System.String,System.String)
-M:WebKit.DomNamedNodeMap.RemoveNamedItem(System.String)
-M:WebKit.DomNamedNodeMap.RemoveNamedItemNS(System.String,System.String)
-M:WebKit.DomNamedNodeMap.SetNamedItem(WebKit.DomNode)
-M:WebKit.DomNamedNodeMap.SetNamedItemNS(WebKit.DomNode)
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.AppendChild(WebKit.DomNode)
-M:WebKit.DomNode.CloneNode(System.Boolean)
-M:WebKit.DomNode.CompareDocumentPosition(WebKit.DomNode)
M:WebKit.DomNode.Copy(Foundation.NSZone)
-M:WebKit.DomNode.DispatchEvent(WebKit.DomEvent)
-M:WebKit.DomNode.HasAttributes
-M:WebKit.DomNode.HasChildNodes
-M:WebKit.DomNode.InsertBefore(WebKit.DomNode,WebKit.DomNode)
-M:WebKit.DomNode.IsDefaultNamespace(System.String)
-M:WebKit.DomNode.IsEqualNode(WebKit.DomNode)
-M:WebKit.DomNode.IsSameNode(WebKit.DomNode)
-M:WebKit.DomNode.IsSupported(System.String,System.String)
-M:WebKit.DomNode.LookupNamespace(System.String)
-M:WebKit.DomNode.LookupPrefix(System.String)
-M:WebKit.DomNode.Normalize
-M:WebKit.DomNode.RemoveChild(WebKit.DomNode)
-M:WebKit.DomNode.RemoveEventListener(System.String,WebKit.IDomEventListener,System.Boolean)
-M:WebKit.DomNode.ReplaceChild(WebKit.DomNode,WebKit.DomNode)
-M:WebKit.DomNodeFilter.AcceptNode(WebKit.DomNode)
-M:WebKit.DomNodeIterator.Detach
M:WebKit.DomNodeList.GetEnumerator
-M:WebKit.DomNodeList.GetItem(System.Int32)
M:WebKit.DomObject.Copy(Foundation.NSZone)
-M:WebKit.DomOverflowEvent.#ctor(System.UInt16,System.Boolean,System.Boolean)
-M:WebKit.DomRange.CloneContents
-M:WebKit.DomRange.CloneRange
-M:WebKit.DomRange.Collapse(System.Boolean)
-M:WebKit.DomRange.CompareBoundaryPoints(WebKit.DomRangeCompareHow,WebKit.DomRange)
-M:WebKit.DomRange.CompareNode(WebKit.DomNode)
-M:WebKit.DomRange.ComparePoint(WebKit.DomNode,System.Int32)
-M:WebKit.DomRange.CreateContextualFragment(System.String)
-M:WebKit.DomRange.DeleteContents
-M:WebKit.DomRange.Detach
-M:WebKit.DomRange.ExtractContents
-M:WebKit.DomRange.InsertNode(WebKit.DomNode)
-M:WebKit.DomRange.IntersectsNode(WebKit.DomNode)
-M:WebKit.DomRange.IsPointInRange(WebKit.DomNode,System.Int32)
-M:WebKit.DomRange.SelectNode(WebKit.DomNode)
-M:WebKit.DomRange.SelectNodeContents(WebKit.DomNode)
-M:WebKit.DomRange.SetEnd(WebKit.DomNode,System.Int32)
-M:WebKit.DomRange.SetEndAfter(WebKit.DomNode)
-M:WebKit.DomRange.SetEndBefore(WebKit.DomNode)
-M:WebKit.DomRange.SetStart(WebKit.DomNode,System.Int32)
-M:WebKit.DomRange.SetStartAfter(WebKit.DomNode)
-M:WebKit.DomRange.SetStartBefore(WebKit.DomNode)
-M:WebKit.DomRange.SurroundContents(WebKit.DomNode)
-M:WebKit.DomRange.ToString
M:WebKit.DomStyleSheetList.GetEnumerator
-M:WebKit.DomStyleSheetList.GetItem(System.Int32)
-M:WebKit.DomText.ReplaceWholeText(System.String)
-M:WebKit.DomText.SplitText(System.UInt32)
-M:WebKit.DomUIEvent.#ctor(System.String,System.Boolean,System.Boolean,WebKit.DomAbstractView,System.Int32)
-M:WebKit.DomWheelEvent.#ctor(System.Int32,System.Int32,WebKit.DomAbstractView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean)
M:WebKit.IDomEventListener.HandleEvent(WebKit.DomEvent)
M:WebKit.IDomEventTarget.AddEventListener(System.String,WebKit.IDomEventListener,System.Boolean)
M:WebKit.IDomEventTarget.DispatchEvent(WebKit.DomEvent)
@@ -63401,7 +45544,6 @@ M:WebKit.IWKUIDelegate.RequestMediaCapturePermission(WebKit.WKWebView,WebKit.WKS
M:WebKit.IWKUIDelegate.RequestMediaCapturePermissionAsync(WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,WebKit.WKMediaCaptureType)
M:WebKit.IWKUIDelegate.RunJavaScriptAlertPanel(WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action)
M:WebKit.IWKUIDelegate.RunJavaScriptConfirmPanel(WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action{System.Boolean})
-M:WebKit.IWKUIDelegate.RunJavaScriptTextInputPanel(WebKit.WKWebView,System.String,System.String,WebKit.WKFrameInfo,System.Action{System.String})
M:WebKit.IWKUIDelegate.RunOpenPanel(WebKit.WKWebView,WebKit.WKOpenPanelParameters,WebKit.WKFrameInfo,System.Action{Foundation.NSUrl[]})
M:WebKit.IWKUIDelegate.SetContextMenuConfiguration(WebKit.WKWebView,WebKit.WKContextMenuElementInfo,System.Action{UIKit.UIContextMenuConfiguration})
M:WebKit.IWKUIDelegate.ShouldPreviewElement(WebKit.WKWebView,WebKit.WKPreviewElementInfo)
@@ -63416,42 +45558,11 @@ 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(Foundation.NSData)
-M:WebKit.WebArchive.#ctor(WebKit.WebResource,Foundation.NSArray,Foundation.NSArray)
M:WebKit.WebArchive.Copy(Foundation.NSZone)
M:WebKit.WebArchive.EncodeTo(Foundation.NSCoder)
-M:WebKit.WebBackForwardList.AddItem(WebKit.WebHistoryItem)
-M:WebKit.WebBackForwardList.BackItem
-M:WebKit.WebBackForwardList.BackListWithLimit(System.Int32)
-M:WebKit.WebBackForwardList.ContainsItem(WebKit.WebHistoryItem)
-M:WebKit.WebBackForwardList.CurrentItem
-M:WebKit.WebBackForwardList.ForwardItem
-M:WebKit.WebBackForwardList.ForwardListWithLimit(System.Int32)
-M:WebKit.WebBackForwardList.GoBack
-M:WebKit.WebBackForwardList.GoForward
-M:WebKit.WebBackForwardList.GoToItem(WebKit.WebHistoryItem)
-M:WebKit.WebBackForwardList.ItemAtIndex(System.Int32)
-M:WebKit.WebDataSource.#ctor(Foundation.NSUrlRequest)
-M:WebKit.WebDataSource.AddSubresource(WebKit.WebResource)
-M:WebKit.WebDataSource.SubresourceForUrl(Foundation.NSUrl)
-M:WebKit.WebDocumentRepresentation.FinishedLoading(WebKit.WebDataSource)
-M:WebKit.WebDocumentRepresentation.ReceivedData(Foundation.NSData,WebKit.WebDataSource)
-M:WebKit.WebDocumentRepresentation.ReceivedError(Foundation.NSError,WebKit.WebDataSource)
-M:WebKit.WebDocumentRepresentation.SetDataSource(WebKit.WebDataSource)
M:WebKit.WebDownloadDelegate_Extensions.OnDownloadWindowForSheet(WebKit.IWebDownloadDelegate,WebKit.WebDownload)
-M:WebKit.WebDownloadDelegate.OnDownloadWindowForSheet(WebKit.WebDownload)
M:WebKit.WebFailureToImplementPolicyEventArgs.#ctor(Foundation.NSError,WebKit.WebFrame)
-M:WebKit.WebFrame.#ctor(System.String,WebKit.WebFrameView,WebKit.WebView)
-M:WebKit.WebFrame.FindFrameNamed(System.String)
-M:WebKit.WebFrame.LoadAlternateHtmlString(System.String,Foundation.NSUrl,Foundation.NSUrl)
-M:WebKit.WebFrame.LoadArchive(WebKit.WebArchive)
-M:WebKit.WebFrame.LoadData(Foundation.NSData,System.String,System.String,Foundation.NSUrl)
-M:WebKit.WebFrame.LoadHtmlString(Foundation.NSString,Foundation.NSUrl)
M:WebKit.WebFrame.LoadHtmlString(System.String,Foundation.NSUrl)
-M:WebKit.WebFrame.LoadRequest(Foundation.NSUrlRequest)
-M:WebKit.WebFrame.Reload
-M:WebKit.WebFrame.ReloadFromOrigin
-M:WebKit.WebFrame.StopLoading
M:WebKit.WebFrameClientRedirectEventArgs.#ctor(Foundation.NSUrl,System.Double,Foundation.NSDate,WebKit.WebFrame)
M:WebKit.WebFrameErrorEventArgs.#ctor(Foundation.NSError,WebKit.WebFrame)
M:WebKit.WebFrameEventArgs.#ctor(WebKit.WebFrame)
@@ -63472,60 +45583,22 @@ M:WebKit.WebFrameLoadDelegate_Extensions.StartedProvisionalLoad(WebKit.IWebFrame
M:WebKit.WebFrameLoadDelegate_Extensions.WillCloseFrame(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebFrame)
M:WebKit.WebFrameLoadDelegate_Extensions.WillPerformClientRedirect(WebKit.IWebFrameLoadDelegate,WebKit.WebView,Foundation.NSUrl,System.Double,Foundation.NSDate,WebKit.WebFrame)
M:WebKit.WebFrameLoadDelegate_Extensions.WindowScriptObjectAvailable(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebScriptObject)
-M:WebKit.WebFrameLoadDelegate.CanceledClientRedirect(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.ChangedLocationWithinPage(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.ClearedWindowObject(WebKit.WebView,WebKit.WebScriptObject,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.CommitedLoad(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.DidCreateJavaScriptContext(WebKit.WebView,JavaScriptCore.JSContext,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.FailedLoadWithError(WebKit.WebView,Foundation.NSError,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.FailedProvisionalLoad(WebKit.WebView,Foundation.NSError,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.FinishedLoad(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.ReceivedIcon(WebKit.WebView,AppKit.NSImage,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.ReceivedServerRedirectForProvisionalLoad(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.ReceivedTitle(WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.StartedProvisionalLoad(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.WillCloseFrame(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.WillPerformClientRedirect(WebKit.WebView,Foundation.NSUrl,System.Double,Foundation.NSDate,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate.WindowScriptObjectAvailable(WebKit.WebView,WebKit.WebScriptObject)
M:WebKit.WebFrameScriptFrameEventArgs.#ctor(WebKit.WebScriptObject,WebKit.WebFrame)
M:WebKit.WebFrameScriptObjectEventArgs.#ctor(WebKit.WebScriptObject)
M:WebKit.WebFrameTitleEventArgs.#ctor(System.String,WebKit.WebFrame)
M:WebKit.WebFrameView.#ctor(CoreGraphics.CGRect)
-M:WebKit.WebFrameView.GetPrintOperation(AppKit.NSPrintInfo)
-M:WebKit.WebFrameView.PrintDocumentView
-M:WebKit.WebHistory.AddItems(WebKit.WebHistoryItem[])
-M:WebKit.WebHistory.GetHistoryItemForUrl(Foundation.NSUrl)
-M:WebKit.WebHistory.GetOrderedItemsLastVisitedOnDay(Foundation.NSCalendarDate)
-M:WebKit.WebHistory.Load(Foundation.NSUrl,Foundation.NSError@)
-M:WebKit.WebHistory.RemoveAllItems
-M:WebKit.WebHistory.RemoveItems(WebKit.WebHistoryItem[])
-M:WebKit.WebHistory.Save(Foundation.NSUrl,Foundation.NSError@)
-M:WebKit.WebHistory.SetOptionalSharedHistory(WebKit.WebHistory)
-M:WebKit.WebHistoryItem.#ctor(System.String,System.String,System.Double)
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)
M:WebKit.WebNewWindowPolicyEventArgs.#ctor(Foundation.NSDictionary,Foundation.NSUrlRequest,System.String,Foundation.NSObject)
-M:WebKit.WebOpenPanelResultListener.Cancel
-M:WebKit.WebOpenPanelResultListener.ChooseFilename(System.String)
-M:WebKit.WebOpenPanelResultListener.ChooseFilenames(System.String[])
-M:WebKit.WebPolicyDecisionListener.Download
-M:WebKit.WebPolicyDecisionListener.Ignore
-M:WebKit.WebPolicyDecisionListener.Use
M:WebKit.WebPolicyDelegate_Extensions.DecidePolicyForMimeType(WebKit.IWebPolicyDelegate,WebKit.WebView,System.String,Foundation.NSUrlRequest,WebKit.WebFrame,Foundation.NSObject)
M:WebKit.WebPolicyDelegate_Extensions.DecidePolicyForNavigation(WebKit.IWebPolicyDelegate,WebKit.WebView,Foundation.NSDictionary,Foundation.NSUrlRequest,WebKit.WebFrame,Foundation.NSObject)
M:WebKit.WebPolicyDelegate_Extensions.DecidePolicyForNewWindow(WebKit.IWebPolicyDelegate,WebKit.WebView,Foundation.NSDictionary,Foundation.NSUrlRequest,System.String,Foundation.NSObject)
M:WebKit.WebPolicyDelegate_Extensions.UnableToImplementPolicy(WebKit.IWebPolicyDelegate,WebKit.WebView,Foundation.NSError,WebKit.WebFrame)
M:WebKit.WebPolicyDelegate.DecideDownload(Foundation.NSObject)
M:WebKit.WebPolicyDelegate.DecideIgnore(Foundation.NSObject)
-M:WebKit.WebPolicyDelegate.DecidePolicyForMimeType(WebKit.WebView,System.String,Foundation.NSUrlRequest,WebKit.WebFrame,Foundation.NSObject)
-M:WebKit.WebPolicyDelegate.DecidePolicyForNavigation(WebKit.WebView,Foundation.NSDictionary,Foundation.NSUrlRequest,WebKit.WebFrame,Foundation.NSObject)
-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(System.String)
M:WebKit.WebPreferences.EncodeTo(Foundation.NSCoder)
-M:WebKit.WebResource.#ctor(Foundation.NSData,Foundation.NSUrl,System.String,System.String,System.String)
M:WebKit.WebResource.Copy(Foundation.NSZone)
M:WebKit.WebResource.EncodeTo(Foundation.NSCoder)
M:WebKit.WebResourceAuthenticationChallengeEventArgs.#ctor(Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource)
@@ -63541,25 +45614,9 @@ M:WebKit.WebResourceLoadDelegate_Extensions.OnReceivedAuthenticationChallenge(We
M:WebKit.WebResourceLoadDelegate_Extensions.OnReceivedContentLength(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSObject,System.IntPtr,WebKit.WebDataSource)
M:WebKit.WebResourceLoadDelegate_Extensions.OnReceivedResponse(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSObject,Foundation.NSUrlResponse,WebKit.WebDataSource)
M:WebKit.WebResourceLoadDelegate_Extensions.OnSendRequest(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSObject,Foundation.NSUrlRequest,Foundation.NSUrlResponse,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnCancelledAuthenticationChallenge(WebKit.WebView,Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnFailedLoading(WebKit.WebView,Foundation.NSObject,Foundation.NSError,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnFinishedLoading(WebKit.WebView,Foundation.NSObject,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnIdentifierForInitialRequest(WebKit.WebView,Foundation.NSUrlRequest,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnPlugInFailed(WebKit.WebView,Foundation.NSError,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnReceivedAuthenticationChallenge(WebKit.WebView,Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnReceivedContentLength(WebKit.WebView,Foundation.NSObject,System.IntPtr,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnReceivedResponse(WebKit.WebView,Foundation.NSObject,Foundation.NSUrlResponse,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate.OnSendRequest(WebKit.WebView,Foundation.NSObject,Foundation.NSUrlRequest,Foundation.NSUrlResponse,WebKit.WebDataSource)
M:WebKit.WebResourcePluginErrorEventArgs.#ctor(Foundation.NSError,WebKit.WebDataSource)
M:WebKit.WebResourceReceivedContentLengthEventArgs.#ctor(Foundation.NSObject,System.IntPtr,WebKit.WebDataSource)
M:WebKit.WebResourceReceivedResponseEventArgs.#ctor(Foundation.NSObject,Foundation.NSUrlResponse,WebKit.WebDataSource)
-M:WebKit.WebScriptObject.CallWebScriptMethod(System.String,Foundation.NSObject[])
-M:WebKit.WebScriptObject.EvaluateWebScript(System.String)
-M:WebKit.WebScriptObject.RemoveWebScriptKey(System.String)
-M:WebKit.WebScriptObject.SetException(System.String)
-M:WebKit.WebScriptObject.SetWebScriptValueAtIndex(System.Int32,Foundation.NSObject)
-M:WebKit.WebScriptObject.ThrowException(System.String)
-M:WebKit.WebScriptObject.WebScriptValueAtIndex(System.Int32)
M:WebKit.WebUIDelegate_Extensions.UIAreToolbarsVisible(WebKit.IWebUIDelegate,WebKit.WebView)
M:WebKit.WebUIDelegate_Extensions.UIClose(WebKit.IWebUIDelegate,WebKit.WebView)
M:WebKit.WebUIDelegate_Extensions.UICreateModalDialog(WebKit.IWebUIDelegate,WebKit.WebView,Foundation.NSUrlRequest)
@@ -63602,49 +45659,6 @@ M:WebKit.WebUIDelegate_Extensions.UIUnfocus(WebKit.IWebUIDelegate,WebKit.WebView
M:WebKit.WebUIDelegate_Extensions.UIValidateUserInterfaceItem(WebKit.IWebUIDelegate,WebKit.WebView,Foundation.NSObject,System.Boolean)
M:WebKit.WebUIDelegate_Extensions.UIWillPerformDragDestination(WebKit.IWebUIDelegate,WebKit.WebView,WebKit.WebDragDestinationAction,AppKit.INSDraggingInfo)
M:WebKit.WebUIDelegate_Extensions.UIWillPerformDragSource(WebKit.IWebUIDelegate,WebKit.WebView,WebKit.WebDragSourceAction,CoreGraphics.CGPoint,AppKit.NSPasteboard)
-M:WebKit.WebUIDelegate.UIAreToolbarsVisible(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIClose(WebKit.WebView)
-M:WebKit.WebUIDelegate.UICreateModalDialog(WebKit.WebView,Foundation.NSUrlRequest)
-M:WebKit.WebUIDelegate.UICreateWebView(WebKit.WebView,Foundation.NSUrlRequest)
-M:WebKit.WebUIDelegate.UIDragSourceActionMask(WebKit.WebView,CoreGraphics.CGPoint)
-M:WebKit.WebUIDelegate.UIDrawFooterInRect(WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.WebUIDelegate.UIDrawHeaderInRect(WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.WebUIDelegate.UIFocus(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIGetContentRect(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIGetContextMenuItems(WebKit.WebView,Foundation.NSDictionary,AppKit.NSMenuItem[])
-M:WebKit.WebUIDelegate.UIGetDragDestinationActionMask(WebKit.WebView,AppKit.INSDraggingInfo)
-M:WebKit.WebUIDelegate.UIGetFirstResponder(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIGetFooterHeight(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIGetFrame(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIGetHeaderHeight(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIGetStatusText(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIIsResizable(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIIsStatusBarVisible(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIMakeFirstResponder(WebKit.WebView,AppKit.NSResponder)
-M:WebKit.WebUIDelegate.UIMouseDidMoveOverElement(WebKit.WebView,Foundation.NSDictionary,AppKit.NSEventModifierMask)
-M:WebKit.WebUIDelegate.UIPrintFrameView(WebKit.WebView,WebKit.WebFrameView)
-M:WebKit.WebUIDelegate.UIRunBeforeUnload(WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.WebUIDelegate.UIRunJavaScriptAlertPanel(WebKit.WebView,System.String)
-M:WebKit.WebUIDelegate.UIRunJavaScriptAlertPanelMessage(WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.WebUIDelegate.UIRunJavaScriptConfirmationPanel(WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.WebUIDelegate.UIRunJavaScriptConfirmPanel(WebKit.WebView,System.String)
-M:WebKit.WebUIDelegate.UIRunJavaScriptTextInputPanel(WebKit.WebView,System.String,System.String)
-M:WebKit.WebUIDelegate.UIRunJavaScriptTextInputPanelWithFrame(WebKit.WebView,System.String,System.String,WebKit.WebFrame)
-M:WebKit.WebUIDelegate.UIRunModal(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIRunOpenPanelForFileButton(WebKit.WebView,WebKit.IWebOpenPanelResultListener)
-M:WebKit.WebUIDelegate.UISetContentRect(WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.WebUIDelegate.UISetFrame(WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.WebUIDelegate.UISetResizable(WebKit.WebView,System.Boolean)
-M:WebKit.WebUIDelegate.UISetStatusBarVisible(WebKit.WebView,System.Boolean)
-M:WebKit.WebUIDelegate.UISetStatusText(WebKit.WebView,System.String)
-M:WebKit.WebUIDelegate.UISetToolbarsVisible(WebKit.WebView,System.Boolean)
-M:WebKit.WebUIDelegate.UIShouldPerformAction(WebKit.WebView,ObjCRuntime.Selector,Foundation.NSObject)
-M:WebKit.WebUIDelegate.UIShow(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIUnfocus(WebKit.WebView)
-M:WebKit.WebUIDelegate.UIValidateUserInterfaceItem(WebKit.WebView,Foundation.NSObject,System.Boolean)
-M:WebKit.WebUIDelegate.UIWillPerformDragDestination(WebKit.WebView,WebKit.WebDragDestinationAction,AppKit.INSDraggingInfo)
-M:WebKit.WebUIDelegate.UIWillPerformDragSource(WebKit.WebView,WebKit.WebDragSourceAction,CoreGraphics.CGPoint,AppKit.NSPasteboard)
-M:WebKit.WebView.#ctor(CoreGraphics.CGRect,System.String,System.String)
M:WebKit.WebView.#ctor(CoreGraphics.CGRect)
M:WebKit.WebView.add_CanceledClientRedirect(System.EventHandler{WebKit.WebFrameEventArgs})
M:WebKit.WebView.add_ChangedLocationWithinPage(System.EventHandler{WebKit.WebFrameEventArgs})
@@ -63693,54 +45707,10 @@ M:WebKit.WebView.add_UnableToImplementPolicy(System.EventHandler{WebKit.WebFailu
M:WebKit.WebView.add_WillCloseFrame(System.EventHandler{WebKit.WebFrameEventArgs})
M:WebKit.WebView.add_WillPerformClientRedirect(System.EventHandler{WebKit.WebFrameClientRedirectEventArgs})
M:WebKit.WebView.add_WindowScriptObjectAvailable(System.EventHandler{WebKit.WebFrameScriptObjectEventArgs})
-M:WebKit.WebView.AlignCenter(Foundation.NSObject)
-M:WebKit.WebView.AlignJustified(Foundation.NSObject)
-M:WebKit.WebView.AlignLeft(Foundation.NSObject)
-M:WebKit.WebView.AlignRight(Foundation.NSObject)
-M:WebKit.WebView.ApplyStyle(WebKit.DomCssStyleDeclaration)
-M:WebKit.WebView.CanGoBack
-M:WebKit.WebView.CanGoForward
-M:WebKit.WebView.CanMakeTextLarger
-M:WebKit.WebView.CanMakeTextSmaller
-M:WebKit.WebView.CanMakeTextStandardSize
-M:WebKit.WebView.CanShowMimeType(System.String)
-M:WebKit.WebView.CanShowMimeTypeAsHtml(System.String)
-M:WebKit.WebView.ChangeAttributes(Foundation.NSObject)
-M:WebKit.WebView.ChangeColor(Foundation.NSObject)
-M:WebKit.WebView.ChangeDocumentBackgroundColor(Foundation.NSObject)
-M:WebKit.WebView.ChangeFont(Foundation.NSObject)
-M:WebKit.WebView.CheckSpelling(Foundation.NSObject)
-M:WebKit.WebView.Close
-M:WebKit.WebView.CopyFont(Foundation.NSObject)
-M:WebKit.WebView.Cut(Foundation.NSObject)
M:WebKit.WebView.DecideDownload(Foundation.NSObject)
M:WebKit.WebView.DecideIgnore(Foundation.NSObject)
M:WebKit.WebView.DecideUse(Foundation.NSObject)
-M:WebKit.WebView.Delete(Foundation.NSObject)
-M:WebKit.WebView.DeleteSelection
M:WebKit.WebView.Dispose(System.Boolean)
-M:WebKit.WebView.ElementAtPoint(CoreGraphics.CGPoint)
-M:WebKit.WebView.GoBack
-M:WebKit.WebView.GoForward
-M:WebKit.WebView.GoToBackForwardItem(WebKit.WebHistoryItem)
-M:WebKit.WebView.MakeTextLarger(Foundation.NSObject)
-M:WebKit.WebView.MakeTextSmaller(Foundation.NSObject)
-M:WebKit.WebView.MakeTextStandardSize(Foundation.NSObject)
-M:WebKit.WebView.MoveDragCaretToPoint(CoreGraphics.CGPoint)
-M:WebKit.WebView.MoveToBeginningOfSentence(Foundation.NSObject)
-M:WebKit.WebView.MoveToBeginningOfSentenceAndModifySelection(Foundation.NSObject)
-M:WebKit.WebView.MoveToEndOfSentence(Foundation.NSObject)
-M:WebKit.WebView.MoveToEndOfSentenceAndModifySelection(Foundation.NSObject)
-M:WebKit.WebView.Paste(Foundation.NSObject)
-M:WebKit.WebView.PasteAsPlainText(Foundation.NSObject)
-M:WebKit.WebView.PasteAsRichText(Foundation.NSObject)
-M:WebKit.WebView.PasteboardTypesForElement(Foundation.NSDictionary)
-M:WebKit.WebView.PasteFont(Foundation.NSObject)
-M:WebKit.WebView.PerformFindPanelAction(Foundation.NSObject)
-M:WebKit.WebView.RegisterUrlSchemeAsLocal(System.String)
-M:WebKit.WebView.RegisterViewClass(ObjCRuntime.Class,ObjCRuntime.Class,System.String)
-M:WebKit.WebView.Reload(Foundation.NSObject)
-M:WebKit.WebView.ReloadFromOrigin(Foundation.NSObject)
M:WebKit.WebView.remove_CanceledClientRedirect(System.EventHandler{WebKit.WebFrameEventArgs})
M:WebKit.WebView.remove_ChangedLocationWithinPage(System.EventHandler{WebKit.WebFrameEventArgs})
M:WebKit.WebView.remove_ClearedWindowObject(System.EventHandler{WebKit.WebFrameScriptFrameEventArgs})
@@ -63788,26 +45758,7 @@ M:WebKit.WebView.remove_UnableToImplementPolicy(System.EventHandler{WebKit.WebFa
M:WebKit.WebView.remove_WillCloseFrame(System.EventHandler{WebKit.WebFrameEventArgs})
M:WebKit.WebView.remove_WillPerformClientRedirect(System.EventHandler{WebKit.WebFrameClientRedirectEventArgs})
M:WebKit.WebView.remove_WindowScriptObjectAvailable(System.EventHandler{WebKit.WebFrameScriptObjectEventArgs})
-M:WebKit.WebView.RemoveDragCaret
-M:WebKit.WebView.ReplaceSelectionWithArchive(WebKit.WebArchive)
-M:WebKit.WebView.ReplaceSelectionWithMarkupString(System.String)
-M:WebKit.WebView.Search(System.String,System.Boolean,System.Boolean,System.Boolean)
-M:WebKit.WebView.SelectSentence(Foundation.NSObject)
-M:WebKit.WebView.SetMaintainsBackForwardList(System.Boolean)
-M:WebKit.WebView.SetSelectedDomRange(WebKit.DomRange,AppKit.NSSelectionAffinity)
-M:WebKit.WebView.ShowGuessPanel(Foundation.NSObject)
-M:WebKit.WebView.StartSpeaking(Foundation.NSObject)
-M:WebKit.WebView.StopSpeaking(Foundation.NSObject)
-M:WebKit.WebView.StringByEvaluatingJavaScriptFromString(System.String)
-M:WebKit.WebView.StyleDeclarationWithText(System.String)
-M:WebKit.WebView.ToggleContinuousSpellChecking(Foundation.NSObject)
-M:WebKit.WebView.ToggleSmartInsertDelete(Foundation.NSObject)
-M:WebKit.WebView.UrlFromPasteboard(AppKit.NSPasteboard)
-M:WebKit.WebView.UrlTitleFromPasteboard(AppKit.NSPasteboard)
-M:WebKit.WebView.UserAgentForUrl(Foundation.NSUrl)
M:WebKit.WebView.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:WebKit.WebView.WriteElement(Foundation.NSDictionary,Foundation.NSObject[],AppKit.NSPasteboard)
-M:WebKit.WebView.WriteSelection(Foundation.NSObject[],AppKit.NSPasteboard)
M:WebKit.WebViewContentEventArgs.#ctor(CoreGraphics.CGRect)
M:WebKit.WebViewDragEventArgs.#ctor(WebKit.WebDragDestinationAction,AppKit.INSDraggingInfo)
M:WebKit.WebViewFooterEventArgs.#ctor(CoreGraphics.CGRect)
@@ -63824,18 +45775,10 @@ M:WebKit.WebViewRunOpenPanelEventArgs.#ctor(WebKit.IWebOpenPanelResultListener)
M:WebKit.WebViewStatusBarEventArgs.#ctor(System.Boolean)
M:WebKit.WebViewStatusTextEventArgs.#ctor(System.String)
M:WebKit.WebViewToolBarsEventArgs.#ctor(System.Boolean)
-M:WebKit.WKBackForwardList.ItemAtIndex(System.IntPtr)
-M:WebKit.WKContentRuleListStore.CompileContentRuleList(System.String,System.String,System.Action{WebKit.WKContentRuleList,Foundation.NSError})
M:WebKit.WKContentRuleListStore.CompileContentRuleListAsync(System.String,System.String)
-M:WebKit.WKContentRuleListStore.FromUrl(Foundation.NSUrl)
-M:WebKit.WKContentRuleListStore.GetAvailableContentRuleListIdentifiers(System.Action{System.String[]})
M:WebKit.WKContentRuleListStore.GetAvailableContentRuleListIdentifiersAsync
-M:WebKit.WKContentRuleListStore.LookUpContentRuleList(System.String,System.Action{WebKit.WKContentRuleList,Foundation.NSError})
M:WebKit.WKContentRuleListStore.LookUpContentRuleListAsync(System.String)
-M:WebKit.WKContentRuleListStore.RemoveContentRuleList(System.String,System.Action{Foundation.NSError})
M:WebKit.WKContentRuleListStore.RemoveContentRuleListAsync(System.String)
-M:WebKit.WKContentWorld.Create(System.String)
-M:WebKit.WKDownload.Cancel(System.Action{Foundation.NSData})
M:WebKit.WKDownload.CancelAsync
M:WebKit.WKDownload.Dispose(System.Boolean)
M:WebKit.WKDownloadDelegate_Extensions.DecidePlaceholderPolicy(WebKit.IWKDownloadDelegate,WebKit.WKDownload,WebKit.WKDownloadDelegateDecidePlaceholderPolicyCallback)
@@ -63845,29 +45788,14 @@ M:WebKit.WKDownloadDelegate_Extensions.DidReceiveAuthenticationChallenge(WebKit.
M:WebKit.WKDownloadDelegate_Extensions.DidReceiveFinalUrl(WebKit.IWKDownloadDelegate,WebKit.WKDownload,Foundation.NSUrl)
M:WebKit.WKDownloadDelegate_Extensions.DidReceivePlaceholderUrl(WebKit.IWKDownloadDelegate,WebKit.WKDownload,Foundation.NSUrl,System.Action)
M:WebKit.WKDownloadDelegate_Extensions.WillPerformHttpRedirection(WebKit.IWKDownloadDelegate,WebKit.WKDownload,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{WebKit.WKDownloadRedirectPolicy})
-M:WebKit.WKDownloadDelegate.DecideDestination(WebKit.WKDownload,Foundation.NSUrlResponse,System.String,System.Action{Foundation.NSUrl})
-M:WebKit.WKDownloadDelegate.DecidePlaceholderPolicy(WebKit.WKDownload,WebKit.WKDownloadDelegateDecidePlaceholderPolicyCallback)
-M:WebKit.WKDownloadDelegate.DidFail(WebKit.WKDownload,Foundation.NSError,Foundation.NSData)
-M:WebKit.WKDownloadDelegate.DidFinish(WebKit.WKDownload)
-M:WebKit.WKDownloadDelegate.DidReceiveAuthenticationChallenge(WebKit.WKDownload,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential})
-M:WebKit.WKDownloadDelegate.DidReceiveFinalUrl(WebKit.WKDownload,Foundation.NSUrl)
-M:WebKit.WKDownloadDelegate.DidReceivePlaceholderUrl(WebKit.WKDownload,Foundation.NSUrl,System.Action)
-M:WebKit.WKDownloadDelegate.WillPerformHttpRedirection(WebKit.WKDownload,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{WebKit.WKDownloadRedirectPolicy})
M:WebKit.WKFindConfiguration.Copy(Foundation.NSZone)
M:WebKit.WKFindResult.Copy(Foundation.NSZone)
M:WebKit.WKFrameInfo.Copy(Foundation.NSZone)
M:WebKit.WKFrameInfo.Dispose(System.Boolean)
-M:WebKit.WKHttpCookieStore.AddObserver(WebKit.IWKHttpCookieStoreObserver)
-M:WebKit.WKHttpCookieStore.DeleteCookie(Foundation.NSHttpCookie,System.Action)
M:WebKit.WKHttpCookieStore.DeleteCookieAsync(Foundation.NSHttpCookie)
-M:WebKit.WKHttpCookieStore.GetAllCookies(System.Action{Foundation.NSHttpCookie[]})
M:WebKit.WKHttpCookieStore.GetAllCookiesAsync
-M:WebKit.WKHttpCookieStore.GetCookiePolicy(System.Action{WebKit.WKCookiePolicy})
M:WebKit.WKHttpCookieStore.GetCookiePolicyAsync
-M:WebKit.WKHttpCookieStore.RemoveObserver(WebKit.IWKHttpCookieStoreObserver)
-M:WebKit.WKHttpCookieStore.SetCookie(Foundation.NSHttpCookie,System.Action)
M:WebKit.WKHttpCookieStore.SetCookieAsync(Foundation.NSHttpCookie)
-M:WebKit.WKHttpCookieStore.SetCookiePolicy(WebKit.WKCookiePolicy,System.Action)
M:WebKit.WKHttpCookieStore.SetCookiePolicyAsync(WebKit.WKCookiePolicy)
M:WebKit.WKHttpCookieStoreObserver_Extensions.CookiesDidChangeInCookieStore(WebKit.IWKHttpCookieStoreObserver,WebKit.WKHttpCookieStore)
M:WebKit.WKNavigationDelegate_Extensions.ContentProcessDidTerminate(WebKit.IWKNavigationDelegate,WebKit.WKWebView)
@@ -63884,26 +45812,11 @@ M:WebKit.WKNavigationDelegate_Extensions.DidStartProvisionalNavigation(WebKit.IW
M:WebKit.WKNavigationDelegate_Extensions.NavigationActionDidBecomeDownload(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigationAction,WebKit.WKDownload)
M:WebKit.WKNavigationDelegate_Extensions.NavigationResponseDidBecomeDownload(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigationResponse,WebKit.WKDownload)
M:WebKit.WKNavigationDelegate_Extensions.ShouldAllowDeprecatedTls(WebKit.IWKNavigationDelegate,WebKit.WKWebView,Foundation.NSUrlAuthenticationChallenge,System.Action{System.Boolean})
-M:WebKit.WKNavigationDelegate.ContentProcessDidTerminate(WebKit.WKWebView)
-M:WebKit.WKNavigationDelegate.DecidePolicy(WebKit.WKWebView,WebKit.WKNavigationAction,System.Action{WebKit.WKNavigationActionPolicy})
-M:WebKit.WKNavigationDelegate.DecidePolicy(WebKit.WKWebView,WebKit.WKNavigationAction,WebKit.WKWebpagePreferences,System.Action{WebKit.WKNavigationActionPolicy,WebKit.WKWebpagePreferences})
-M:WebKit.WKNavigationDelegate.DecidePolicy(WebKit.WKWebView,WebKit.WKNavigationResponse,System.Action{WebKit.WKNavigationResponsePolicy})
-M:WebKit.WKNavigationDelegate.DidCommitNavigation(WebKit.WKWebView,WebKit.WKNavigation)
-M:WebKit.WKNavigationDelegate.DidFailNavigation(WebKit.WKWebView,WebKit.WKNavigation,Foundation.NSError)
-M:WebKit.WKNavigationDelegate.DidFailProvisionalNavigation(WebKit.WKWebView,WebKit.WKNavigation,Foundation.NSError)
-M:WebKit.WKNavigationDelegate.DidFinishNavigation(WebKit.WKWebView,WebKit.WKNavigation)
-M:WebKit.WKNavigationDelegate.DidReceiveAuthenticationChallenge(WebKit.WKWebView,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential})
-M:WebKit.WKNavigationDelegate.DidReceiveServerRedirectForProvisionalNavigation(WebKit.WKWebView,WebKit.WKNavigation)
-M:WebKit.WKNavigationDelegate.DidStartProvisionalNavigation(WebKit.WKWebView,WebKit.WKNavigation)
-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.WKPdfConfiguration.Copy(Foundation.NSZone)
M:WebKit.WKPreferences.EncodeTo(Foundation.NSCoder)
M:WebKit.WKPreviewElementInfo.Copy(Foundation.NSZone)
M:WebKit.WKProcessPool.EncodeTo(Foundation.NSCoder)
M:WebKit.WKScriptMessage.Dispose(System.Boolean)
-M:WebKit.WKScriptMessageHandler.DidReceiveScriptMessage(WebKit.WKUserContentController,WebKit.WKScriptMessage)
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)
@@ -63917,7 +45830,6 @@ M:WebKit.WKUIDelegate_Extensions.RequestMediaCapturePermission(WebKit.IWKUIDeleg
M:WebKit.WKUIDelegate_Extensions.RequestMediaCapturePermissionAsync(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,WebKit.WKMediaCaptureType)
M:WebKit.WKUIDelegate_Extensions.RunJavaScriptAlertPanel(WebKit.IWKUIDelegate,WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action)
M:WebKit.WKUIDelegate_Extensions.RunJavaScriptConfirmPanel(WebKit.IWKUIDelegate,WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action{System.Boolean})
-M:WebKit.WKUIDelegate_Extensions.RunJavaScriptTextInputPanel(WebKit.IWKUIDelegate,WebKit.WKWebView,System.String,System.String,WebKit.WKFrameInfo,System.Action{System.String})
M:WebKit.WKUIDelegate_Extensions.RunOpenPanel(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKOpenPanelParameters,WebKit.WKFrameInfo,System.Action{Foundation.NSUrl[]})
M:WebKit.WKUIDelegate_Extensions.SetContextMenuConfiguration(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKContextMenuElementInfo,System.Action{UIKit.UIContextMenuConfiguration})
M:WebKit.WKUIDelegate_Extensions.ShouldPreviewElement(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKPreviewElementInfo)
@@ -63926,188 +45838,46 @@ M:WebKit.WKUIDelegate_Extensions.ShowLockDownModeAsync(WebKit.IWKUIDelegate,WebK
M:WebKit.WKUIDelegate_Extensions.WillCommitContextMenu(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKContextMenuElementInfo,UIKit.IUIContextMenuInteractionCommitAnimating)
M:WebKit.WKUIDelegate_Extensions.WillDismissEditMenu(WebKit.IWKUIDelegate,WebKit.WKWebView,UIKit.IUIEditMenuInteractionAnimating)
M:WebKit.WKUIDelegate_Extensions.WillPresentEditMenu(WebKit.IWKUIDelegate,WebKit.WKWebView,UIKit.IUIEditMenuInteractionAnimating)
-M:WebKit.WKUIDelegate.CommitPreviewingViewController(WebKit.WKWebView,UIKit.UIViewController)
-M:WebKit.WKUIDelegate.ContextMenuDidEnd(WebKit.WKWebView,WebKit.WKContextMenuElementInfo)
-M:WebKit.WKUIDelegate.ContextMenuWillPresent(WebKit.WKWebView,WebKit.WKContextMenuElementInfo)
-M:WebKit.WKUIDelegate.CreateWebView(WebKit.WKWebView,WebKit.WKWebViewConfiguration,WebKit.WKNavigationAction,WebKit.WKWindowFeatures)
-M:WebKit.WKUIDelegate.DidClose(WebKit.WKWebView)
-M:WebKit.WKUIDelegate.GetPreviewingViewController(WebKit.WKWebView,WebKit.WKPreviewElementInfo,WebKit.IWKPreviewActionItem[])
-M:WebKit.WKUIDelegate.RequestDeviceOrientationAndMotionPermission(WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,System.Action{WebKit.WKPermissionDecision})
-M:WebKit.WKUIDelegate.RequestMediaCapturePermission(WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,WebKit.WKMediaCaptureType,System.Action{WebKit.WKPermissionDecision})
-M:WebKit.WKUIDelegate.RunJavaScriptAlertPanel(WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action)
-M:WebKit.WKUIDelegate.RunJavaScriptConfirmPanel(WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action{System.Boolean})
-M:WebKit.WKUIDelegate.RunJavaScriptTextInputPanel(WebKit.WKWebView,System.String,System.String,WebKit.WKFrameInfo,System.Action{System.String})
-M:WebKit.WKUIDelegate.RunOpenPanel(WebKit.WKWebView,WebKit.WKOpenPanelParameters,WebKit.WKFrameInfo,System.Action{Foundation.NSUrl[]})
-M:WebKit.WKUIDelegate.SetContextMenuConfiguration(WebKit.WKWebView,WebKit.WKContextMenuElementInfo,System.Action{UIKit.UIContextMenuConfiguration})
-M:WebKit.WKUIDelegate.ShouldPreviewElement(WebKit.WKWebView,WebKit.WKPreviewElementInfo)
-M:WebKit.WKUIDelegate.ShowLockDownMode(WebKit.WKWebView,System.String,System.Action{WebKit.WKDialogResult})
-M:WebKit.WKUIDelegate.WillCommitContextMenu(WebKit.WKWebView,WebKit.WKContextMenuElementInfo,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:WebKit.WKUIDelegate.WillDismissEditMenu(WebKit.WKWebView,UIKit.IUIEditMenuInteractionAnimating)
-M:WebKit.WKUIDelegate.WillPresentEditMenu(WebKit.WKWebView,UIKit.IUIEditMenuInteractionAnimating)
-M:WebKit.WKUserContentController.AddContentRuleList(WebKit.WKContentRuleList)
-M:WebKit.WKUserContentController.AddScriptMessageHandler(WebKit.IWKScriptMessageHandler,System.String)
-M:WebKit.WKUserContentController.AddScriptMessageHandler(WebKit.IWKScriptMessageHandler,WebKit.WKContentWorld,System.String)
-M:WebKit.WKUserContentController.AddScriptMessageHandler(WebKit.IWKScriptMessageHandlerWithReply,WebKit.WKContentWorld,System.String)
-M:WebKit.WKUserContentController.AddUserScript(WebKit.WKUserScript)
M:WebKit.WKUserContentController.EncodeTo(Foundation.NSCoder)
-M:WebKit.WKUserContentController.RemoveAllContentRuleLists
-M:WebKit.WKUserContentController.RemoveAllScriptMessageHandlers
-M:WebKit.WKUserContentController.RemoveAllScriptMessageHandlers(WebKit.WKContentWorld)
-M:WebKit.WKUserContentController.RemoveAllUserScripts
-M:WebKit.WKUserContentController.RemoveContentRuleList(WebKit.WKContentRuleList)
-M:WebKit.WKUserContentController.RemoveScriptMessageHandler(System.String,WebKit.WKContentWorld)
-M:WebKit.WKUserContentController.RemoveScriptMessageHandler(System.String)
-M:WebKit.WKUserScript.#ctor(Foundation.NSString,WebKit.WKUserScriptInjectionTime,System.Boolean,WebKit.WKContentWorld)
-M:WebKit.WKUserScript.#ctor(Foundation.NSString,WebKit.WKUserScriptInjectionTime,System.Boolean)
M:WebKit.WKUserScript.Copy(Foundation.NSZone)
-M:WebKit.WKWebsiteDataStore.Create(Foundation.NSUuid)
M:WebKit.WKWebsiteDataStore.EncodeTo(Foundation.NSCoder)
-M:WebKit.WKWebsiteDataStore.FetchAllDataStoreIdentifiers(System.Action{Foundation.NSArray{Foundation.NSUuid}})
M:WebKit.WKWebsiteDataStore.FetchAllDataStoreIdentifiersAsync
-M:WebKit.WKWebsiteDataStore.FetchDataRecordsOfTypes(Foundation.NSSet{Foundation.NSString},System.Action{Foundation.NSArray})
M:WebKit.WKWebsiteDataStore.FetchDataRecordsOfTypesAsync(Foundation.NSSet{Foundation.NSString})
-M:WebKit.WKWebsiteDataStore.Remove(Foundation.NSUuid,System.Action{Foundation.NSError})
M:WebKit.WKWebsiteDataStore.RemoveAsync(Foundation.NSUuid)
-M:WebKit.WKWebsiteDataStore.RemoveDataOfTypes(Foundation.NSSet{Foundation.NSString},Foundation.NSDate,System.Action)
-M:WebKit.WKWebsiteDataStore.RemoveDataOfTypes(Foundation.NSSet{Foundation.NSString},WebKit.WKWebsiteDataRecord[],System.Action)
M:WebKit.WKWebsiteDataStore.RemoveDataOfTypesAsync(Foundation.NSSet{Foundation.NSString},Foundation.NSDate)
M:WebKit.WKWebsiteDataStore.RemoveDataOfTypesAsync(Foundation.NSSet{Foundation.NSString},WebKit.WKWebsiteDataRecord[])
-M:WebKit.WKWebView.#ctor(CoreGraphics.CGRect,WebKit.WKWebViewConfiguration)
-M:WebKit.WKWebView.CallAsyncJavaScript(System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},WebKit.WKFrameInfo,WebKit.WKContentWorld,System.Action{Foundation.NSObject,Foundation.NSError})
M:WebKit.WKWebView.CallAsyncJavaScriptAsync(System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},WebKit.WKFrameInfo,WebKit.WKContentWorld)
-M:WebKit.WKWebView.CloseAllMediaPresentations(System.Action)
M:WebKit.WKWebView.CloseAllMediaPresentationsAsync
-M:WebKit.WKWebView.CreatePdf(WebKit.WKPdfConfiguration,System.Action{Foundation.NSData,Foundation.NSError})
M:WebKit.WKWebView.CreatePdfAsync(WebKit.WKPdfConfiguration)
-M:WebKit.WKWebView.CreateWebArchive(System.Action{Foundation.NSData,Foundation.NSError})
M:WebKit.WKWebView.CreateWebArchiveAsync
M:WebKit.WKWebView.Dispose(System.Boolean)
-M:WebKit.WKWebView.EvaluateJavaScript(Foundation.NSString,WebKit.WKJavascriptEvaluationResult)
-M:WebKit.WKWebView.EvaluateJavaScript(System.String,WebKit.WKFrameInfo,WebKit.WKContentWorld,System.Action{Foundation.NSObject,Foundation.NSError})
M:WebKit.WKWebView.EvaluateJavaScript(System.String,WebKit.WKJavascriptEvaluationResult)
M:WebKit.WKWebView.EvaluateJavaScriptAsync(Foundation.NSString)
M:WebKit.WKWebView.EvaluateJavaScriptAsync(System.String,WebKit.WKFrameInfo,WebKit.WKContentWorld)
M:WebKit.WKWebView.EvaluateJavaScriptAsync(System.String)
-M:WebKit.WKWebView.Find(System.String,WebKit.WKFindConfiguration,System.Action{WebKit.WKFindResult})
M:WebKit.WKWebView.FindAsync(System.String,WebKit.WKFindConfiguration)
-M:WebKit.WKWebView.GetPrintOperation(AppKit.NSPrintInfo)
-M:WebKit.WKWebView.GoBack
-M:WebKit.WKWebView.GoBack(Foundation.NSObject)
-M:WebKit.WKWebView.GoForward
-M:WebKit.WKWebView.GoForward(Foundation.NSObject)
-M:WebKit.WKWebView.GoTo(WebKit.WKBackForwardListItem)
-M:WebKit.WKWebView.HandlesUrlScheme(System.String)
-M:WebKit.WKWebView.LoadData(Foundation.NSData,System.String,System.String,Foundation.NSUrl)
-M:WebKit.WKWebView.LoadFileRequest(Foundation.NSUrlRequest,Foundation.NSUrl)
-M:WebKit.WKWebView.LoadFileUrl(Foundation.NSUrl,Foundation.NSUrl)
-M:WebKit.WKWebView.LoadHtmlString(Foundation.NSString,Foundation.NSUrl)
M:WebKit.WKWebView.LoadHtmlString(System.String,Foundation.NSUrl)
-M:WebKit.WKWebView.LoadRequest(Foundation.NSUrlRequest)
-M:WebKit.WKWebView.LoadSimulatedRequest(Foundation.NSUrlRequest,Foundation.NSUrlResponse,Foundation.NSData)
-M:WebKit.WKWebView.LoadSimulatedRequest(Foundation.NSUrlRequest,System.String)
-M:WebKit.WKWebView.Reload
-M:WebKit.WKWebView.Reload(Foundation.NSObject)
-M:WebKit.WKWebView.ReloadFromOrigin
-M:WebKit.WKWebView.ReloadFromOrigin(Foundation.NSObject)
-M:WebKit.WKWebView.RequestMediaPlaybackState(System.Action{WebKit.WKMediaPlaybackState})
M:WebKit.WKWebView.RequestMediaPlaybackStateAsync
-M:WebKit.WKWebView.ResumeDownload(Foundation.NSData,System.Action{WebKit.WKDownload})
M:WebKit.WKWebView.ResumeDownloadAsync(Foundation.NSData)
-M:WebKit.WKWebView.SetAllMediaPlaybackSuspended(System.Boolean,System.Action)
M:WebKit.WKWebView.SetAllMediaPlaybackSuspendedAsync(System.Boolean)
-M:WebKit.WKWebView.SetCameraCaptureState(WebKit.WKMediaCaptureState,System.Action)
M:WebKit.WKWebView.SetCameraCaptureStateAsync(WebKit.WKMediaCaptureState)
-M:WebKit.WKWebView.SetMagnification(System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint)
-M:WebKit.WKWebView.SetMicrophoneCaptureState(WebKit.WKMediaCaptureState,System.Action)
M:WebKit.WKWebView.SetMicrophoneCaptureStateAsync(WebKit.WKMediaCaptureState)
-M:WebKit.WKWebView.SetViewportInsets(AppKit.NSEdgeInsets,AppKit.NSEdgeInsets)
-M:WebKit.WKWebView.SetViewportInsets(UIKit.UIEdgeInsets,UIKit.UIEdgeInsets)
-M:WebKit.WKWebView.StartDownload(Foundation.NSUrlRequest,System.Action{WebKit.WKDownload})
M:WebKit.WKWebView.StartDownloadAsync(Foundation.NSUrlRequest)
-M:WebKit.WKWebView.StopLoading
-M:WebKit.WKWebView.StopLoading(Foundation.NSObject)
-M:WebKit.WKWebView.TakeSnapshot(WebKit.WKSnapshotConfiguration,System.Action{AppKit.NSImage,Foundation.NSError})
-M:WebKit.WKWebView.TakeSnapshot(WebKit.WKSnapshotConfiguration,System.Action{UIKit.UIImage,Foundation.NSError})
M:WebKit.WKWebView.TakeSnapshotAsync(WebKit.WKSnapshotConfiguration)
M:WebKit.WKWebView.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
M:WebKit.WKWebView.WKWebViewAppearance.#ctor(System.IntPtr)
M:WebKit.WKWebViewConfiguration.Copy(Foundation.NSZone)
M:WebKit.WKWebViewConfiguration.EncodeTo(Foundation.NSCoder)
-M:WebKit.WKWebViewConfiguration.GetUrlSchemeHandler(System.String)
-M:WebKit.WKWebViewConfiguration.SetUrlSchemeHandler(WebKit.IWKUrlSchemeHandler,System.String)
P:Accelerate.vImageBuffer.BytesPerRow
P:Accelerate.vImageBuffer.Data
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.AXFeatureOverrideSessionManager.SharedInstance
P:Accessibility.AXHearingUtilities.PairedUUIDsDidChangeNotification
P:Accessibility.AXHearingUtilities.StreamingEarDidChangeNotification
-P:Accessibility.AXMathExpressionFenced.CloseString
-P:Accessibility.AXMathExpressionFenced.Expressions
-P:Accessibility.AXMathExpressionFenced.OpenString
-P:Accessibility.AXMathExpressionFraction.DenimonatorExpression
-P:Accessibility.AXMathExpressionFraction.NumeratorExpression
-P:Accessibility.AXMathExpressionIdentifier.Content
-P:Accessibility.AXMathExpressionMultiscript.BaseExpression
-P:Accessibility.AXMathExpressionMultiscript.PostscriptExpressions
-P:Accessibility.AXMathExpressionMultiscript.PrescriptExpressions
-P:Accessibility.AXMathExpressionNumber.Content
-P:Accessibility.AXMathExpressionOperator.Content
-P:Accessibility.AXMathExpressionRoot.RadicandExpressions
-P:Accessibility.AXMathExpressionRoot.RootIndexExpression
-P:Accessibility.AXMathExpressionRow.Expressions
-P:Accessibility.AXMathExpressionSubSuperscript.BaseExpression
-P:Accessibility.AXMathExpressionSubSuperscript.SubscriptExpressions
-P:Accessibility.AXMathExpressionSubSuperscript.SuperscriptExpressions
-P:Accessibility.AXMathExpressionTable.Expressions
-P:Accessibility.AXMathExpressionTableCell.Expressions
-P:Accessibility.AXMathExpressionTableRow.Expressions
-P:Accessibility.AXMathExpressionText.Content
-P:Accessibility.AXMathExpressionUnderOver.BaseExpression
-P:Accessibility.AXMathExpressionUnderOver.OverExpression
-P:Accessibility.AXMathExpressionUnderOver.UnderExpression
-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.AXPrefers.NonBlinkingTextInsertionIndicatorDidChangeNotification
-P:Accessibility.AXRequest.Current
-P:Accessibility.AXRequest.Technology
P:Accessibility.IAXBrailleMapRenderer.AccessibilityBrailleMapRenderer
P:Accessibility.IAXBrailleMapRenderer.AccessibilityBrailleMapRenderRegion
P:Accessibility.IAXChart.AccessibilityChartDescriptor
@@ -64116,51 +45886,8 @@ P:Accessibility.IAXCustomContentProvider.AccessibilityCustomContentHandler
P:Accessibility.IAXDataAxisDescriptor.AttributedTitle
P:Accessibility.IAXDataAxisDescriptor.Title
P:Accessibility.IAXMathExpressionProvider.AccessibilityMathExpression
-P:AccessorySetupKit.ASAccessory.BluetoothIdentifier
-P:AccessorySetupKit.ASAccessory.BluetoothTransportBridgingIdentifier
-P:AccessorySetupKit.ASAccessory.Descriptor
-P:AccessorySetupKit.ASAccessory.DisplayName
-P:AccessorySetupKit.ASAccessory.Ssid
-P:AccessorySetupKit.ASAccessory.State
-P:AccessorySetupKit.ASAccessoryEvent.Accessory
-P:AccessorySetupKit.ASAccessoryEvent.Error
-P:AccessorySetupKit.ASAccessoryEvent.EventType
-P:AccessorySetupKit.ASAccessorySession.Accessories
-P:AccessorySetupKit.ASAccessorySettings.BluetoothTransportBridgingIdentifier
-P:AccessorySetupKit.ASAccessorySettings.DefaultSettings
-P:AccessorySetupKit.ASAccessorySettings.Ssid
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothCompanyIdentifier
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothManufacturerDataBlob
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothManufacturerDataMask
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothNameSubstring
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothNameSubstringCompareOptions
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothRange
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothServiceDataBlob
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothServiceDataMask
-P:AccessorySetupKit.ASDiscoveryDescriptor.BluetoothServiceUuid
-P:AccessorySetupKit.ASDiscoveryDescriptor.Ssid
-P:AccessorySetupKit.ASDiscoveryDescriptor.SsidPrefix
-P:AccessorySetupKit.ASDiscoveryDescriptor.SupportedOptions
-P:AccessorySetupKit.ASMigrationDisplayItem.HotspotSsid
-P:AccessorySetupKit.ASMigrationDisplayItem.PeripheralIdentifier
-P:AccessorySetupKit.ASPickerDisplayItem.Descriptor
-P:AccessorySetupKit.ASPickerDisplayItem.Name
-P:AccessorySetupKit.ASPickerDisplayItem.ProductImage
-P:AccessorySetupKit.ASPickerDisplayItem.RenameOptions
-P:AccessorySetupKit.ASPickerDisplayItem.SetupOptions
-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
@@ -64337,9 +46064,6 @@ P:AddressBookUI.ABUnknownPersonViewController.DisplayedPerson
P:AddressBookUI.ABUnknownPersonViewController.Message
P:AddressBookUI.ABUnknownPersonViewController.WeakDelegate
P:AddressBookUI.DisplayedPropertiesCollection.Count
-P:AdSupport.ASIdentifierManager.AdvertisingIdentifier
-P:AdSupport.ASIdentifierManager.IsAdvertisingTrackingEnabled
-P:AdSupport.ASIdentifierManager.SharedManager
P:AppClip.APActivationPayload.Url
P:AppKit.INSAccessibility.AccessibilityActivationPoint
P:AppKit.INSAccessibility.AccessibilityAllowedValues
@@ -64765,146 +46489,20 @@ P:AppKit.NSAccessibilityAttributes.WarningValueAttribute
P:AppKit.NSAccessibilityAttributes.WindowAttribute
P:AppKit.NSAccessibilityAttributes.WindowsAttribute
P:AppKit.NSAccessibilityAttributes.ZoomButtonAttribute
-P:AppKit.NSAccessibilityCustomAction.Handler
-P:AppKit.NSAccessibilityCustomAction.Name
-P:AppKit.NSAccessibilityCustomAction.Selector
-P:AppKit.NSAccessibilityCustomAction.Target
-P:AppKit.NSAccessibilityCustomRotor.ItemLoadingDelegate
-P:AppKit.NSAccessibilityCustomRotor.ItemSearchDelegate
-P:AppKit.NSAccessibilityCustomRotor.Label
-P:AppKit.NSAccessibilityCustomRotor.Type
-P:AppKit.NSAccessibilityCustomRotorItemResult.CustomLabel
-P:AppKit.NSAccessibilityCustomRotorItemResult.ItemLoadingToken
-P:AppKit.NSAccessibilityCustomRotorItemResult.TargetElement
-P:AppKit.NSAccessibilityCustomRotorItemResult.TargetRange
-P:AppKit.NSAccessibilityCustomRotorSearchParameters.CurrentItem
-P:AppKit.NSAccessibilityCustomRotorSearchParameters.FilterString
-P:AppKit.NSAccessibilityCustomRotorSearchParameters.SearchDirection
-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.AccessibilityFocused
-P:AppKit.NSAccessibilityElement.AccessibilityFocusedWindow
-P:AppKit.NSAccessibilityElement.AccessibilityFrame
-P:AppKit.NSAccessibilityElement.AccessibilityFrameInParentSpace
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.AccessibilityIdentifier
-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.AccessibilityParent
-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
@@ -65032,55 +46630,17 @@ P:AppKit.NSAccessibilitySubroles.ToggleSubrole
P:AppKit.NSAccessibilitySubroles.ToolbarButtonSubrole
P:AppKit.NSAccessibilitySubroles.UnknownSubrole
P:AppKit.NSAccessibilitySubroles.ZoomButtonSubrole
-P:AppKit.NSActionCell.Action
-P:AppKit.NSActionCell.Tag
-P:AppKit.NSActionCell.Target
-P:AppKit.NSAdaptiveImageGlyph.ContentDescription
-P:AppKit.NSAdaptiveImageGlyph.ContentIdentifier
-P:AppKit.NSAdaptiveImageGlyph.ContentType
-P:AppKit.NSAdaptiveImageGlyph.ImageContent
-P:AppKit.NSAlert.AccessoryView
-P:AppKit.NSAlert.AlertStyle
-P:AppKit.NSAlert.Buttons
P:AppKit.NSAlert.Delegate
-P:AppKit.NSAlert.HelpAnchor
-P:AppKit.NSAlert.Icon
-P:AppKit.NSAlert.InformativeText
-P:AppKit.NSAlert.MessageText
P:AppKit.NSAlert.ShowHelp
-P:AppKit.NSAlert.ShowsHelp
-P:AppKit.NSAlert.ShowsSuppressionButton
-P:AppKit.NSAlert.SuppressionButton
-P:AppKit.NSAlert.WeakDelegate
-P:AppKit.NSAlert.Window
-P:AppKit.NSAlignmentFeedbackFilter.InputEventMask
-P:AppKit.NSAnimation.AnimationBlockingMode
-P:AppKit.NSAnimation.AnimationCurve
P:AppKit.NSAnimation.AnimationShouldStart
P:AppKit.NSAnimation.ComputeAnimationCurve
-P:AppKit.NSAnimation.CurrentProgress
-P:AppKit.NSAnimation.CurrentValue
P:AppKit.NSAnimation.Delegate
-P:AppKit.NSAnimation.Duration
-P:AppKit.NSAnimation.FrameRate
P:AppKit.NSAnimation.ProgressMark
P:AppKit.NSAnimation.ProgressMarkNotification
-P:AppKit.NSAnimation.ProgressMarks
-P:AppKit.NSAnimation.RunLoopModesForAnimating
P:AppKit.NSAnimation.TriggerOrderIn
P:AppKit.NSAnimation.TriggerOrderOut
-P:AppKit.NSAnimation.WeakDelegate
-P:AppKit.NSAnimationContext.AllowsImplicitAnimation
-P:AppKit.NSAnimationContext.CompletionHandler
-P:AppKit.NSAnimationContext.CurrentContext
-P:AppKit.NSAnimationContext.Duration
-P:AppKit.NSAnimationContext.TimingFunction
P:AppKit.NSAnimationEventArgs.Progress
P:AppKit.NSAnimationProgressMarkEventArgs.Progress
-P:AppKit.NSAppearance.AllowsVibrancy
-P:AppKit.NSAppearance.CurrentAppearance
-P:AppKit.NSAppearance.CurrentDrawingAppearance
-P:AppKit.NSAppearance.Name
P:AppKit.NSAppearance.NameAccessibilityHighContrastAqua
P:AppKit.NSAppearance.NameAccessibilityHighContrastDarkAqua
P:AppKit.NSAppearance.NameAccessibilityHighContrastVibrantDark
@@ -65090,153 +46650,35 @@ P:AppKit.NSAppearance.NameDarkAqua
P:AppKit.NSAppearance.NameLightContent
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
-P:AppKit.NSApplication.Appearance
P:AppKit.NSApplication.ApplicationActivatedNotification
P:AppKit.NSApplication.ApplicationDeactivatedNotification
P:AppKit.NSApplication.ApplicationDockMenu
P:AppKit.NSApplication.ApplicationHiddenNotification
-P:AppKit.NSApplication.ApplicationIconImage
P:AppKit.NSApplication.ApplicationOpenUntitledFile
P:AppKit.NSApplication.ApplicationShouldHandleReopen
P:AppKit.NSApplication.ApplicationShouldOpenUntitledFile
P:AppKit.NSApplication.ApplicationShouldTerminate
P:AppKit.NSApplication.ApplicationShouldTerminateAfterLastWindowClosed
P:AppKit.NSApplication.ApplicationShownNotification
-P:AppKit.NSApplication.Context
P:AppKit.NSApplication.ContinueUserActivity
P:AppKit.NSApplication.CreatedNotification
-P:AppKit.NSApplication.CurrentEvent
-P:AppKit.NSApplication.CurrentSystemPresentationOptions
-P:AppKit.NSApplication.DangerousWindows
P:AppKit.NSApplication.Delegate
P:AppKit.NSApplication.DidBecomeActiveNotification
P:AppKit.NSApplication.DidChangeScreenParametersNotification
@@ -65246,31 +46688,22 @@ P:AppKit.NSApplication.DidHideNotification
P:AppKit.NSApplication.DidResignActiveNotification
P:AppKit.NSApplication.DidUnhideNotification
P:AppKit.NSApplication.DidUpdateNotification
-P:AppKit.NSApplication.DockTile
P:AppKit.NSApplication.DrawerCreatedNotification
-P:AppKit.NSApplication.EffectiveAppearance
P:AppKit.NSApplication.FocusedWindowChangedNotification
P:AppKit.NSApplication.FullKeyboardAccessEnabled
P:AppKit.NSApplication.HandlesKey
-P:AppKit.NSApplication.HelpMenu
P:AppKit.NSApplication.HelpTagCreatedNotification
P:AppKit.NSApplication.Hidden
P:AppKit.NSApplication.IsRegisteredForRemoteNotifications
-P:AppKit.NSApplication.KeyWindow
P:AppKit.NSApplication.LaunchIsDefaultLaunchKey
P:AppKit.NSApplication.LaunchRemoteNotificationKey
P:AppKit.NSApplication.LaunchUserNotificationKey
P:AppKit.NSApplication.LayoutChangedNotification
-P:AppKit.NSApplication.MainMenu
-P:AppKit.NSApplication.MainWindow
P:AppKit.NSApplication.MainWindowChangedNotification
-P:AppKit.NSApplication.ModalWindow
P:AppKit.NSApplication.MovedNotification
-P:AppKit.NSApplication.OcclusionState
P:AppKit.NSApplication.OpenFile
P:AppKit.NSApplication.OpenFileWithoutUI
P:AppKit.NSApplication.OpenTempFile
-P:AppKit.NSApplication.PresentationOptions
P:AppKit.NSApplication.PrintFile
P:AppKit.NSApplication.PrintFiles
P:AppKit.NSApplication.ProtectedDataAvailable
@@ -65287,17 +46720,12 @@ P:AppKit.NSApplication.SelectedChildrenMovedNotification
P:AppKit.NSApplication.SelectedColumnsChangedNotification
P:AppKit.NSApplication.SelectedRowsChangedNotification
P:AppKit.NSApplication.SelectedTextChangedNotification
-P:AppKit.NSApplication.ServicesMenu
-P:AppKit.NSApplication.ServicesProvider
-P:AppKit.NSApplication.SharedApplication
P:AppKit.NSApplication.SheetCreatedNotification
P:AppKit.NSApplication.TitleChangedNotification
P:AppKit.NSApplication.UIElementDestroyedNotification
P:AppKit.NSApplication.UIElementFocusedChangedNotification
P:AppKit.NSApplication.UnitsChangedNotification
-P:AppKit.NSApplication.UserInterfaceLayoutDirection
P:AppKit.NSApplication.ValueChangedNotification
-P:AppKit.NSApplication.WeakDelegate
P:AppKit.NSApplication.WillBecomeActiveNotification
P:AppKit.NSApplication.WillContinueUserActivity
P:AppKit.NSApplication.WillFinishLaunchingNotification
@@ -65312,7 +46740,6 @@ P:AppKit.NSApplication.WindowDeminiaturizedNotification
P:AppKit.NSApplication.WindowMiniaturizedNotification
P:AppKit.NSApplication.WindowMovedNotification
P:AppKit.NSApplication.WindowResizedNotification
-P:AppKit.NSApplication.WindowsMenu
P:AppKit.NSApplicationDidFinishLaunchingEventArgs.IsLaunchDefault
P:AppKit.NSApplicationDidFinishLaunchingEventArgs.IsLaunchFromUserNotification
P:AppKit.NSApplicationFailedEventArgs.Error
@@ -65321,18 +46748,9 @@ P:AppKit.NSApplicationFilesEventArgs.Filenames
P:AppKit.NSApplicationOpenUrlsEventArgs.Urls
P:AppKit.NSApplicationUpdatedUserActivityEventArgs.UserActivity
P:AppKit.NSApplicationUserAcceptedCloudKitShareEventArgs.Metadata
-P:AppKit.NSArrayController.AlwaysUsesMultipleValuesMarker
-P:AppKit.NSArrayController.AutomaticallyRearrangesObjects
-P:AppKit.NSArrayController.AvoidsEmptySelection
-P:AppKit.NSArrayController.ClearsFilterPredicateOnInsertion
-P:AppKit.NSArrayController.FilterPredicate
-P:AppKit.NSArrayController.PreservesSelection
P:AppKit.NSArrayController.SelectedObjects
P:AppKit.NSArrayController.SelectionIndex
P:AppKit.NSArrayController.SelectionIndexes
-P:AppKit.NSArrayController.SelectsInsertedObjects
-P:AppKit.NSArrayController.SortDescriptors
-P:AppKit.NSATSTypesetter.SharedTypesetter
P:AppKit.NSAttributedStringDocumentReadingOptions.BaseUrl
P:AppKit.NSAttributedStringDocumentReadingOptions.CharacterEncoding
P:AppKit.NSAttributedStringDocumentReadingOptions.DefaultAttributes
@@ -65345,31 +46763,7 @@ P:AppKit.NSAttributedStringDocumentReadingOptions.TextSizeMultiplier
P:AppKit.NSAttributedStringDocumentReadingOptions.Timeout
P:AppKit.NSAttributedStringDocumentReadingOptions.WebPreferences
P:AppKit.NSAttributedStringDocumentReadingOptions.WebResourceLoadDelegate
-P:AppKit.NSBezierPath.Bounds
-P:AppKit.NSBezierPath.CGPath
-P:AppKit.NSBezierPath.ControlPointBounds
-P:AppKit.NSBezierPath.CurrentPoint
-P:AppKit.NSBezierPath.DefaultFlatness
-P:AppKit.NSBezierPath.DefaultLineCapStyle
-P:AppKit.NSBezierPath.DefaultLineJoinStyle
-P:AppKit.NSBezierPath.DefaultLineWidth
-P:AppKit.NSBezierPath.DefaultMiterLimit
-P:AppKit.NSBezierPath.DefaultWindingRule
-P:AppKit.NSBezierPath.ElementCount
-P:AppKit.NSBezierPath.Flatness
P:AppKit.NSBezierPath.IsEmpty
-P:AppKit.NSBezierPath.LineCapStyle
-P:AppKit.NSBezierPath.LineJoinStyle
-P:AppKit.NSBezierPath.LineWidth
-P:AppKit.NSBezierPath.MiterLimit
-P:AppKit.NSBezierPath.WindingRule
-P:AppKit.NSBitmapImageRep.BitmapData
-P:AppKit.NSBitmapImageRep.BitmapFormat
-P:AppKit.NSBitmapImageRep.BitsPerPixel
-P:AppKit.NSBitmapImageRep.BytesPerPlane
-P:AppKit.NSBitmapImageRep.BytesPerRow
-P:AppKit.NSBitmapImageRep.CGImage
-P:AppKit.NSBitmapImageRep.ColorSpace
P:AppKit.NSBitmapImageRep.ColorSyncProfileData
P:AppKit.NSBitmapImageRep.CompressionFactor
P:AppKit.NSBitmapImageRep.CompressionMethod
@@ -65384,329 +46778,60 @@ P:AppKit.NSBitmapImageRep.Interlaced
P:AppKit.NSBitmapImageRep.IptcData
P:AppKit.NSBitmapImageRep.IsPlanar
P:AppKit.NSBitmapImageRep.LoopCount
-P:AppKit.NSBitmapImageRep.Planes
P:AppKit.NSBitmapImageRep.Progressive
P:AppKit.NSBitmapImageRep.RGBColorTable
-P:AppKit.NSBitmapImageRep.SamplesPerPixel
-P:AppKit.NSBitmapImageRep.TiffRepresentation
-P:AppKit.NSBox.BorderColor
-P:AppKit.NSBox.BorderRect
-P:AppKit.NSBox.BorderType
-P:AppKit.NSBox.BorderWidth
-P:AppKit.NSBox.BoxType
-P:AppKit.NSBox.ContentView
-P:AppKit.NSBox.ContentViewMargins
-P:AppKit.NSBox.CornerRadius
-P:AppKit.NSBox.FillColor
-P:AppKit.NSBox.Title
-P:AppKit.NSBox.TitleCell
-P:AppKit.NSBox.TitleFont
-P:AppKit.NSBox.TitlePosition
-P:AppKit.NSBox.TitleRect
P:AppKit.NSBox.Transparent
-P:AppKit.NSBrowser.AllowsBranchSelection
-P:AppKit.NSBrowser.AllowsEmptySelection
-P:AppKit.NSBrowser.AllowsMultipleSelection
-P:AppKit.NSBrowser.AllowsTypeSelect
-P:AppKit.NSBrowser.AutohidesScroller
-P:AppKit.NSBrowser.BackgroundColor
-P:AppKit.NSBrowser.CellClass
-P:AppKit.NSBrowser.CellPrototype
P:AppKit.NSBrowser.ColumnConfigurationChangedNotification
-P:AppKit.NSBrowser.ColumnResizingType
-P:AppKit.NSBrowser.ColumnsAutosaveName
-P:AppKit.NSBrowser.DefaultColumnWidth
P:AppKit.NSBrowser.Delegate
-P:AppKit.NSBrowser.DoubleAction
-P:AppKit.NSBrowser.FirstVisibleColumn
-P:AppKit.NSBrowser.HasHorizontalScroller
-P:AppKit.NSBrowser.LastColumn
-P:AppKit.NSBrowser.LastVisibleColumn
P:AppKit.NSBrowser.Loaded
-P:AppKit.NSBrowser.MatrixClass
-P:AppKit.NSBrowser.MaxVisibleColumns
-P:AppKit.NSBrowser.MinColumnWidth
P:AppKit.NSBrowser.Path
-P:AppKit.NSBrowser.PathSeparator
-P:AppKit.NSBrowser.PrefersAllColumnUserResizing
-P:AppKit.NSBrowser.ReusesColumns
-P:AppKit.NSBrowser.RowHeight
-P:AppKit.NSBrowser.SelectionIndexPath
-P:AppKit.NSBrowser.SelectionIndexPaths
-P:AppKit.NSBrowser.SendsActionOnArrowKeys
-P:AppKit.NSBrowser.SeparatesColumns
-P:AppKit.NSBrowser.TakesTitleFromPreviousColumn
P:AppKit.NSBrowser.Titled
-P:AppKit.NSBrowser.TitleHeight
-P:AppKit.NSBrowser.VisibleColumns
-P:AppKit.NSBrowser.WeakDelegate
-P:AppKit.NSBrowserCell.AlternateImage
-P:AppKit.NSBrowserCell.BranchImage
-P:AppKit.NSBrowserCell.HighlightedBranchImage
-P:AppKit.NSBrowserCell.Image
P:AppKit.NSBrowserCell.Leaf
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.ActiveCompressionOptions
-P:AppKit.NSButton.AllowsMixedState
-P:AppKit.NSButton.AlternateImage
-P:AppKit.NSButton.AlternateTitle
-P:AppKit.NSButton.AttributedAlternateTitle
-P:AppKit.NSButton.AttributedTitle
-P:AppKit.NSButton.BezelColor
-P:AppKit.NSButton.BezelStyle
-P:AppKit.NSButton.Bordered
P:AppKit.NSButton.Cell
-P:AppKit.NSButton.ContentTintColor
-P:AppKit.NSButton.HasDestructiveAction
-P:AppKit.NSButton.Image
-P:AppKit.NSButton.ImageHugsTitle
-P:AppKit.NSButton.ImagePosition
-P:AppKit.NSButton.ImageScaling
P:AppKit.NSButton.IsSpringLoaded
-P:AppKit.NSButton.KeyEquivalent
-P:AppKit.NSButton.KeyEquivalentModifierMask
-P:AppKit.NSButton.MaxAcceleratorLevel
-P:AppKit.NSButton.ShowsBorderOnlyWhileMouseInside
-P:AppKit.NSButton.Sound
-P:AppKit.NSButton.State
-P:AppKit.NSButton.SymbolConfiguration
-P:AppKit.NSButton.Title
P:AppKit.NSButton.Transparent
-P:AppKit.NSButtonCell.AlternateImage
-P:AppKit.NSButtonCell.AlternateMnemonic
-P:AppKit.NSButtonCell.AlternateMnemonicLocation
-P:AppKit.NSButtonCell.AlternateTitle
-P:AppKit.NSButtonCell.AttributedAlternateTitle
-P:AppKit.NSButtonCell.AttributedTitle
-P:AppKit.NSButtonCell.BackgroundColor
-P:AppKit.NSButtonCell.BezelStyle
-P:AppKit.NSButtonCell.HighlightsBy
-P:AppKit.NSButtonCell.ImageDimsWhenDisabled
-P:AppKit.NSButtonCell.ImagePosition
-P:AppKit.NSButtonCell.ImageScale
P:AppKit.NSButtonCell.IsOpaque
-P:AppKit.NSButtonCell.KeyEquivalent
-P:AppKit.NSButtonCell.KeyEquivalentFont
-P:AppKit.NSButtonCell.KeyEquivalentModifierMask
-P:AppKit.NSButtonCell.ShowsBorderOnlyWhileMouseInside
-P:AppKit.NSButtonCell.ShowsStateBy
-P:AppKit.NSButtonCell.Sound
-P:AppKit.NSButtonCell.Title
P:AppKit.NSButtonCell.Transparent
-P:AppKit.NSButtonTouchBarItem.Action
-P:AppKit.NSButtonTouchBarItem.BezelColor
-P:AppKit.NSButtonTouchBarItem.CustomizationLabel
P:AppKit.NSButtonTouchBarItem.Enabled
-P:AppKit.NSButtonTouchBarItem.Image
-P:AppKit.NSButtonTouchBarItem.Target
-P:AppKit.NSButtonTouchBarItem.Title
-P:AppKit.NSCachedImageRep.Rectangle
-P:AppKit.NSCachedImageRep.Window
-P:AppKit.NSCandidateListTouchBarItem.AllowsCollapsing
-P:AppKit.NSCandidateListTouchBarItem.AllowsTextInputContextCandidates
-P:AppKit.NSCandidateListTouchBarItem.AttributedStringForCandidate
P:AppKit.NSCandidateListTouchBarItem.CandidateListVisible
-P:AppKit.NSCandidateListTouchBarItem.Candidates
-P:AppKit.NSCandidateListTouchBarItem.Client
P:AppKit.NSCandidateListTouchBarItem.Collapsed
-P:AppKit.NSCandidateListTouchBarItem.CustomizationLabel
-P:AppKit.NSCandidateListTouchBarItem.Delegate
-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.Action
-P:AppKit.NSCell.Alignment
-P:AppKit.NSCell.AllowsEditingTextAttributes
-P:AppKit.NSCell.AllowsMixedState
-P:AppKit.NSCell.AllowsUndo
P:AppKit.NSCell.AnnouncementRequestedNotification
P:AppKit.NSCell.ApplicationActivatedNotification
P:AppKit.NSCell.ApplicationDeactivatedNotification
P:AppKit.NSCell.ApplicationHiddenNotification
P:AppKit.NSCell.ApplicationShownNotification
-P:AppKit.NSCell.AttributedStringValue
-P:AppKit.NSCell.BackgroundStyle
-P:AppKit.NSCell.BaseWritingDirection
-P:AppKit.NSCell.Bezeled
-P:AppKit.NSCell.Bordered
-P:AppKit.NSCell.CellSize
-P:AppKit.NSCell.CellType
-P:AppKit.NSCell.ControlSize
-P:AppKit.NSCell.ControlTint
P:AppKit.NSCell.ControlTintChangedNotification
-P:AppKit.NSCell.ControlView
P:AppKit.NSCell.CreatedNotification
-P:AppKit.NSCell.DefaultFocusRingType
-P:AppKit.NSCell.DefaultMenu
-P:AppKit.NSCell.DoubleValue
P:AppKit.NSCell.DrawerCreatedNotification
P:AppKit.NSCell.Editable
P:AppKit.NSCell.Enabled
-P:AppKit.NSCell.FloatValue
P:AppKit.NSCell.FocusedWindowChangedNotification
-P:AppKit.NSCell.FocusRingType
-P:AppKit.NSCell.Font
-P:AppKit.NSCell.Formatter
-P:AppKit.NSCell.HasValidObjectValue
P:AppKit.NSCell.HelpTagCreatedNotification
P:AppKit.NSCell.Highlighted
-P:AppKit.NSCell.Identifier
-P:AppKit.NSCell.Image
-P:AppKit.NSCell.ImportsGraphics
-P:AppKit.NSCell.IntegerValue
-P:AppKit.NSCell.InteriorBackgroundStyle
-P:AppKit.NSCell.IntValue
P:AppKit.NSCell.IsContinuous
P:AppKit.NSCell.IsOpaque
-P:AppKit.NSCell.KeyEquivalent
P:AppKit.NSCell.LayoutChangedNotification
-P:AppKit.NSCell.LineBreakMode
P:AppKit.NSCell.MainWindowChangedNotification
-P:AppKit.NSCell.Menu
-P:AppKit.NSCell.Mnemonic
-P:AppKit.NSCell.MnemonicLocation
-P:AppKit.NSCell.MouseDownFlags
P:AppKit.NSCell.MovedNotification
-P:AppKit.NSCell.NextState
-P:AppKit.NSCell.ObjectValue
-P:AppKit.NSCell.PrefersTrackingUntilMouseUp
-P:AppKit.NSCell.RepresentedObject
P:AppKit.NSCell.ResizedNotification
P:AppKit.NSCell.RowCollapsedNotification
P:AppKit.NSCell.RowCountChangedNotification
P:AppKit.NSCell.RowExpandedNotification
-P:AppKit.NSCell.Scrollable
P:AppKit.NSCell.Selectable
P:AppKit.NSCell.SelectedCellsChangedNotification
P:AppKit.NSCell.SelectedChildrenChangedNotification
@@ -65715,700 +46840,98 @@ P:AppKit.NSCell.SelectedColumnsChangedNotification
P:AppKit.NSCell.SelectedRowsChangedNotification
P:AppKit.NSCell.SelectedTextChangedNotification
P:AppKit.NSCell.SheetCreatedNotification
-P:AppKit.NSCell.ShowsFirstResponder
-P:AppKit.NSCell.State
-P:AppKit.NSCell.StringValue
-P:AppKit.NSCell.Tag
-P:AppKit.NSCell.Target
-P:AppKit.NSCell.Title
P:AppKit.NSCell.TitleChangedNotification
-P:AppKit.NSCell.TruncatesLastVisibleLine
P:AppKit.NSCell.UIElementDestroyedNotification
P:AppKit.NSCell.UIElementFocusedChangedNotification
P:AppKit.NSCell.UnitsChangedNotification
-P:AppKit.NSCell.UserInterfaceLayoutDirection
-P:AppKit.NSCell.UsesSingleLineMode
P:AppKit.NSCell.ValueChangedNotification
-P:AppKit.NSCell.WantsNotificationForMarkedText
P:AppKit.NSCell.WindowCreatedNotification
P:AppKit.NSCell.WindowDeminiaturizedNotification
P:AppKit.NSCell.WindowMiniaturizedNotification
P:AppKit.NSCell.WindowMovedNotification
P:AppKit.NSCell.WindowResizedNotification
-P:AppKit.NSCell.Wraps
-P:AppKit.NSCIImageRep.CIImage
-P:AppKit.NSClickGestureRecognizer.ButtonMask
-P:AppKit.NSClickGestureRecognizer.NumberOfClicksRequired
-P:AppKit.NSClickGestureRecognizer.NumberOfTouchesRequired
-P:AppKit.NSClipView.AutomaticallyAdjustsContentInsets
-P:AppKit.NSClipView.BackgroundColor
-P:AppKit.NSClipView.ContentInsets
-P:AppKit.NSClipView.CopiesOnScroll
-P:AppKit.NSClipView.DocumentCursor
-P:AppKit.NSClipView.DocumentRect
-P:AppKit.NSClipView.DocumentView
-P:AppKit.NSClipView.DrawsBackground
P:AppKit.NSCoderEventArgs.State
P:AppKit.NSCollectionElementKind.InterItemGapIndicator
P:AppKit.NSCollectionElementKind.SectionFooter
P:AppKit.NSCollectionElementKind.SectionHeader
-P:AppKit.NSCollectionLayoutAnchor.Edges
-P:AppKit.NSCollectionLayoutAnchor.IsAbsoluteOffset
-P:AppKit.NSCollectionLayoutAnchor.IsFractionalOffset
-P:AppKit.NSCollectionLayoutAnchor.Offset
-P:AppKit.NSCollectionLayoutBoundarySupplementaryItem.Alignment
-P:AppKit.NSCollectionLayoutBoundarySupplementaryItem.ExtendsBoundary
-P:AppKit.NSCollectionLayoutBoundarySupplementaryItem.Offset
-P:AppKit.NSCollectionLayoutBoundarySupplementaryItem.PinToVisibleBounds
-P:AppKit.NSCollectionLayoutDecorationItem.ElementKind
-P:AppKit.NSCollectionLayoutDecorationItem.ZIndex
-P:AppKit.NSCollectionLayoutDimension.Dimension
-P:AppKit.NSCollectionLayoutDimension.IsAbsolute
-P:AppKit.NSCollectionLayoutDimension.IsEstimated
-P:AppKit.NSCollectionLayoutDimension.IsFractionalHeight
-P:AppKit.NSCollectionLayoutDimension.IsFractionalWidth
-P:AppKit.NSCollectionLayoutEdgeSpacing.Bottom
-P:AppKit.NSCollectionLayoutEdgeSpacing.Leading
-P:AppKit.NSCollectionLayoutEdgeSpacing.Top
-P:AppKit.NSCollectionLayoutEdgeSpacing.Trailing
-P:AppKit.NSCollectionLayoutGroup.InterItemSpacing
-P:AppKit.NSCollectionLayoutGroup.Subitems
-P:AppKit.NSCollectionLayoutGroup.SupplementaryItems
-P:AppKit.NSCollectionLayoutGroup.VisualDescription
-P:AppKit.NSCollectionLayoutGroupCustomItem.Frame
-P:AppKit.NSCollectionLayoutGroupCustomItem.ZIndex
-P:AppKit.NSCollectionLayoutItem.ContentInsets
-P:AppKit.NSCollectionLayoutItem.EdgeSpacing
-P:AppKit.NSCollectionLayoutItem.LayoutSize
-P:AppKit.NSCollectionLayoutItem.SupplementaryItems
-P:AppKit.NSCollectionLayoutSection.BoundarySupplementaryItems
-P:AppKit.NSCollectionLayoutSection.ContentInsets
-P:AppKit.NSCollectionLayoutSection.DecorationItems
-P:AppKit.NSCollectionLayoutSection.InterGroupSpacing
-P:AppKit.NSCollectionLayoutSection.OrthogonalScrollingBehavior
-P:AppKit.NSCollectionLayoutSection.SupplementariesFollowContentInsets
-P:AppKit.NSCollectionLayoutSection.VisibleItemsInvalidationHandler
-P:AppKit.NSCollectionLayoutSize.HeightDimension
-P:AppKit.NSCollectionLayoutSize.WidthDimension
-P:AppKit.NSCollectionLayoutSpacing.IsFixedSpacing
-P:AppKit.NSCollectionLayoutSpacing.IsFlexibleSpacing
-P:AppKit.NSCollectionLayoutSpacing.Spacing
-P:AppKit.NSCollectionLayoutSupplementaryItem.ContainerAnchor
-P:AppKit.NSCollectionLayoutSupplementaryItem.ElementKind
-P:AppKit.NSCollectionLayoutSupplementaryItem.ItemAnchor
-P:AppKit.NSCollectionLayoutSupplementaryItem.ZIndex
-P:AppKit.NSCollectionView.AllowsEmptySelection
-P:AppKit.NSCollectionView.AllowsMultipleSelection
-P:AppKit.NSCollectionView.BackgroundColors
-P:AppKit.NSCollectionView.BackgroundView
-P:AppKit.NSCollectionView.BackgroundViewScrollsWithContent
-P:AppKit.NSCollectionView.CollectionViewLayout
-P:AppKit.NSCollectionView.Content
-P:AppKit.NSCollectionView.DataSource
P:AppKit.NSCollectionView.Delegate
-P:AppKit.NSCollectionView.IgnoreModifierKeysWhileDragging
-P:AppKit.NSCollectionView.IndexPathsForVisibleItems
P:AppKit.NSCollectionView.IsFirstResponder
-P:AppKit.NSCollectionView.ItemPrototype
-P:AppKit.NSCollectionView.MaxItemSize
-P:AppKit.NSCollectionView.MaxNumberOfColumns
-P:AppKit.NSCollectionView.MaxNumberOfRows
-P:AppKit.NSCollectionView.MinItemSize
-P:AppKit.NSCollectionView.NumberOfSections
-P:AppKit.NSCollectionView.PrefetchDataSource
P:AppKit.NSCollectionView.Selectable
-P:AppKit.NSCollectionView.SelectionIndexes
-P:AppKit.NSCollectionView.SelectionIndexPaths
-P:AppKit.NSCollectionView.VisibleItems
-P:AppKit.NSCollectionView.WantsPeriodicDraggingUpdates
-P:AppKit.NSCollectionView.WeakDelegate
-P:AppKit.NSCollectionViewCompositionalLayout.Configuration
-P:AppKit.NSCollectionViewCompositionalLayoutConfiguration.BoundarySupplementaryItems
-P:AppKit.NSCollectionViewCompositionalLayoutConfiguration.InterSectionSpacing
-P:AppKit.NSCollectionViewCompositionalLayoutConfiguration.ScrollDirection
-P:AppKit.NSCollectionViewDiffableDataSource`2.Snapshot
-P:AppKit.NSCollectionViewDiffableDataSource`2.SupplementaryViewProvider
-P:AppKit.NSCollectionViewElement.Identifier
-P:AppKit.NSCollectionViewFlowLayout.EstimatedItemSize
-P:AppKit.NSCollectionViewFlowLayout.FooterReferenceSize
-P:AppKit.NSCollectionViewFlowLayout.HeaderReferenceSize
-P:AppKit.NSCollectionViewFlowLayout.ItemSize
-P:AppKit.NSCollectionViewFlowLayout.MinimumInteritemSpacing
-P:AppKit.NSCollectionViewFlowLayout.MinimumLineSpacing
-P:AppKit.NSCollectionViewFlowLayout.ScrollDirection
-P:AppKit.NSCollectionViewFlowLayout.SectionFootersPinToVisibleBounds
-P:AppKit.NSCollectionViewFlowLayout.SectionHeadersPinToVisibleBounds
-P:AppKit.NSCollectionViewFlowLayout.SectionInset
-P:AppKit.NSCollectionViewFlowLayoutInvalidationContext.InvalidateFlowLayoutAttributes
-P:AppKit.NSCollectionViewFlowLayoutInvalidationContext.InvalidateFlowLayoutDelegateMetrics
-P:AppKit.NSCollectionViewGridLayout.BackgroundColors
-P:AppKit.NSCollectionViewGridLayout.Margins
-P:AppKit.NSCollectionViewGridLayout.MaximumItemSize
-P:AppKit.NSCollectionViewGridLayout.MaximumNumberOfColumns
-P:AppKit.NSCollectionViewGridLayout.MaximumNumberOfRows
-P:AppKit.NSCollectionViewGridLayout.MinimumInteritemSpacing
-P:AppKit.NSCollectionViewGridLayout.MinimumItemSize
-P:AppKit.NSCollectionViewGridLayout.MinimumLineSpacing
-P:AppKit.NSCollectionViewItem.CollectionView
-P:AppKit.NSCollectionViewItem.DraggingImageComponents
-P:AppKit.NSCollectionViewItem.HighlightState
-P:AppKit.NSCollectionViewItem.ImageView
P:AppKit.NSCollectionViewItem.Selected
-P:AppKit.NSCollectionViewItem.TextField
-P:AppKit.NSCollectionViewLayout.CollectionView
-P:AppKit.NSCollectionViewLayout.CollectionViewContentSize
-P:AppKit.NSCollectionViewLayout.InvalidationContextClass
-P:AppKit.NSCollectionViewLayout.LayoutAttributesClass
-P:AppKit.NSCollectionViewLayoutAttributes.Alpha
-P:AppKit.NSCollectionViewLayoutAttributes.Frame
P:AppKit.NSCollectionViewLayoutAttributes.Hidden
-P:AppKit.NSCollectionViewLayoutAttributes.IndexPath
-P:AppKit.NSCollectionViewLayoutAttributes.RepresentedElementCategory
-P:AppKit.NSCollectionViewLayoutAttributes.RepresentedElementKind
-P:AppKit.NSCollectionViewLayoutAttributes.Size
-P:AppKit.NSCollectionViewLayoutAttributes.ZIndex
-P:AppKit.NSCollectionViewLayoutInvalidationContext.ContentOffsetAdjustment
-P:AppKit.NSCollectionViewLayoutInvalidationContext.ContentSizeAdjustment
-P:AppKit.NSCollectionViewLayoutInvalidationContext.InvalidateDataSourceCounts
-P:AppKit.NSCollectionViewLayoutInvalidationContext.InvalidatedDecorationIndexPaths
-P:AppKit.NSCollectionViewLayoutInvalidationContext.InvalidatedItemIndexPaths
-P:AppKit.NSCollectionViewLayoutInvalidationContext.InvalidatedSupplementaryIndexPaths
-P:AppKit.NSCollectionViewLayoutInvalidationContext.InvalidateEverything
-P:AppKit.NSCollectionViewTransitionLayout.CurrentLayout
-P:AppKit.NSCollectionViewTransitionLayout.NextLayout
-P:AppKit.NSCollectionViewTransitionLayout.TransitionProgress
-P:AppKit.NSCollectionViewUpdateItem.IndexPathAfterUpdate
-P:AppKit.NSCollectionViewUpdateItem.IndexPathBeforeUpdate
-P:AppKit.NSCollectionViewUpdateItem.UpdateAction
-P:AppKit.NSColor.AccessibilityName
-P:AppKit.NSColor.AlphaComponent
-P:AppKit.NSColor.AlternateSelectedControl
-P:AppKit.NSColor.AlternateSelectedControlText
-P:AppKit.NSColor.AlternatingContentBackgroundColors
-P:AppKit.NSColor.Black
-P:AppKit.NSColor.BlackComponent
-P:AppKit.NSColor.Blue
-P:AppKit.NSColor.BlueComponent
-P:AppKit.NSColor.BrightnessComponent
-P:AppKit.NSColor.Brown
-P:AppKit.NSColor.CatalogNameComponent
-P:AppKit.NSColor.CGColor
-P:AppKit.NSColor.Clear
-P:AppKit.NSColor.ColorNameComponent
-P:AppKit.NSColor.ColorSpace
-P:AppKit.NSColor.ColorSpaceName
-P:AppKit.NSColor.ComponentCount
-P:AppKit.NSColor.Control
-P:AppKit.NSColor.ControlAccent
-P:AppKit.NSColor.ControlBackground
-P:AppKit.NSColor.ControlDarkShadow
-P:AppKit.NSColor.ControlHighlight
-P:AppKit.NSColor.ControlLightHighlight
-P:AppKit.NSColor.ControlShadow
-P:AppKit.NSColor.ControlText
-P:AppKit.NSColor.CurrentControlTint
-P:AppKit.NSColor.Cyan
-P:AppKit.NSColor.CyanComponent
-P:AppKit.NSColor.DarkGray
-P:AppKit.NSColor.DisabledControlText
-P:AppKit.NSColor.FindHighlight
-P:AppKit.NSColor.Gray
-P:AppKit.NSColor.Green
-P:AppKit.NSColor.GreenComponent
-P:AppKit.NSColor.Grid
-P:AppKit.NSColor.Header
-P:AppKit.NSColor.HeaderText
-P:AppKit.NSColor.Highlight
-P:AppKit.NSColor.HueComponent
-P:AppKit.NSColor.IgnoresAlpha
-P:AppKit.NSColor.KeyboardFocusIndicator
-P:AppKit.NSColor.Knob
-P:AppKit.NSColor.Label
-P:AppKit.NSColor.LightGray
-P:AppKit.NSColor.Link
-P:AppKit.NSColor.LocalizedCatalogNameComponent
-P:AppKit.NSColor.LocalizedColorNameComponent
-P:AppKit.NSColor.Magenta
-P:AppKit.NSColor.MagentaComponent
-P:AppKit.NSColor.Orange
-P:AppKit.NSColor.PatternImage
-P:AppKit.NSColor.PlaceholderText
-P:AppKit.NSColor.Purple
-P:AppKit.NSColor.QuaternaryLabel
-P:AppKit.NSColor.QuaternarySystemFill
-P:AppKit.NSColor.QuinaryLabel
-P:AppKit.NSColor.QuinarySystemFill
-P:AppKit.NSColor.Red
-P:AppKit.NSColor.RedComponent
-P:AppKit.NSColor.SaturationComponent
-P:AppKit.NSColor.ScrollBar
-P:AppKit.NSColor.ScrubberTexturedBackground
-P:AppKit.NSColor.SecondaryLabel
-P:AppKit.NSColor.SecondarySelectedControl
-P:AppKit.NSColor.SecondarySystemFill
-P:AppKit.NSColor.SelectedContentBackground
-P:AppKit.NSColor.SelectedControl
-P:AppKit.NSColor.SelectedControlText
-P:AppKit.NSColor.SelectedKnob
-P:AppKit.NSColor.SelectedMenuItem
-P:AppKit.NSColor.SelectedMenuItemText
-P:AppKit.NSColor.SelectedText
-P:AppKit.NSColor.SelectedTextBackground
-P:AppKit.NSColor.Separator
-P:AppKit.NSColor.Shadow
-P:AppKit.NSColor.SystemBlue
-P:AppKit.NSColor.SystemBrown
P:AppKit.NSColor.SystemColorsChanged
-P:AppKit.NSColor.SystemCyan
-P:AppKit.NSColor.SystemFill
-P:AppKit.NSColor.SystemGray
-P:AppKit.NSColor.SystemGreen
-P:AppKit.NSColor.SystemIndigo
-P:AppKit.NSColor.SystemMint
-P:AppKit.NSColor.SystemOrange
-P:AppKit.NSColor.SystemPink
-P:AppKit.NSColor.SystemPurple
-P:AppKit.NSColor.SystemRed
-P:AppKit.NSColor.SystemTeal
-P:AppKit.NSColor.SystemYellow
-P:AppKit.NSColor.TertiaryLabel
-P:AppKit.NSColor.TertiarySystemFill
-P:AppKit.NSColor.Text
-P:AppKit.NSColor.TextBackground
-P:AppKit.NSColor.TextInsertionPoint
-P:AppKit.NSColor.Type
-P:AppKit.NSColor.UnderPageBackground
-P:AppKit.NSColor.UnemphasizedSelectedContentBackground
-P:AppKit.NSColor.UnemphasizedSelectedText
-P:AppKit.NSColor.UnemphasizedSelectedTextBackground
-P:AppKit.NSColor.White
-P:AppKit.NSColor.WhiteComponent
-P:AppKit.NSColor.WindowBackground
-P:AppKit.NSColor.WindowFrame
-P:AppKit.NSColor.WindowFrameText
-P:AppKit.NSColor.Yellow
-P:AppKit.NSColor.YellowComponent
-P:AppKit.NSColorList.AvailableColorLists
P:AppKit.NSColorList.IsEditable
-P:AppKit.NSColorList.Name
-P:AppKit.NSColorPanel.AccessoryView
-P:AppKit.NSColorPanel.Alpha
-P:AppKit.NSColorPanel.Color
P:AppKit.NSColorPanel.ColorChangedNotification
P:AppKit.NSColorPanel.Continuous
-P:AppKit.NSColorPanel.Mode
-P:AppKit.NSColorPanel.SharedColorPanel
-P:AppKit.NSColorPanel.SharedColorPanelExists
-P:AppKit.NSColorPanel.ShowsAlpha
-P:AppKit.NSColorPicker.ButtonToolTip
-P:AppKit.NSColorPicker.ColorPanel
-P:AppKit.NSColorPicker.MinContentSize
-P:AppKit.NSColorPickerTouchBarItem.Action
-P:AppKit.NSColorPickerTouchBarItem.AllowedColorSpaces
-P:AppKit.NSColorPickerTouchBarItem.Color
-P:AppKit.NSColorPickerTouchBarItem.ColorList
-P:AppKit.NSColorPickerTouchBarItem.CustomizationLabel
P:AppKit.NSColorPickerTouchBarItem.Enabled
-P:AppKit.NSColorPickerTouchBarItem.ShowsAlpha
-P:AppKit.NSColorPickerTouchBarItem.Target
-P:AppKit.NSColorSpace.AdobeRGB1998ColorSpace
P:AppKit.NSColorSpace.CalibratedBlack
P:AppKit.NSColorSpace.CalibratedRGB
P:AppKit.NSColorSpace.CalibratedWhite
-P:AppKit.NSColorSpace.ColorComponents
-P:AppKit.NSColorSpace.ColorSpace
-P:AppKit.NSColorSpace.ColorSpaceModel
-P:AppKit.NSColorSpace.ColorSyncProfile
P:AppKit.NSColorSpace.Custom
P:AppKit.NSColorSpace.DeviceBlack
P:AppKit.NSColorSpace.DeviceCMYK
-P:AppKit.NSColorSpace.DeviceCMYKColorSpace
-P:AppKit.NSColorSpace.DeviceGrayColorSpace
P:AppKit.NSColorSpace.DeviceRGB
-P:AppKit.NSColorSpace.DeviceRGBColorSpace
P:AppKit.NSColorSpace.DeviceWhite
-P:AppKit.NSColorSpace.DisplayP3ColorSpace
-P:AppKit.NSColorSpace.ExtendedGenericGamma22GrayColorSpace
-P:AppKit.NSColorSpace.ExtendedSRgbColorSpace
-P:AppKit.NSColorSpace.GenericCMYKColorSpace
-P:AppKit.NSColorSpace.GenericGamma22GrayColorSpace
-P:AppKit.NSColorSpace.GenericGrayColorSpace
-P:AppKit.NSColorSpace.GenericRGBColorSpace
-P:AppKit.NSColorSpace.ICCProfileData
-P:AppKit.NSColorSpace.LocalizedName
P:AppKit.NSColorSpace.Named
P:AppKit.NSColorSpace.Pattern
-P:AppKit.NSColorSpace.SRGBColorSpace
-P:AppKit.NSColorWell.Bordered
-P:AppKit.NSColorWell.Color
-P:AppKit.NSColorWell.ColorWellStyle
-P:AppKit.NSColorWell.Image
P:AppKit.NSColorWell.IsActive
-P:AppKit.NSColorWell.PulldownAction
-P:AppKit.NSColorWell.PulldownTarget
-P:AppKit.NSColorWell.SupportsAlpha
P:AppKit.NSComboBox.ButtonBordered
-P:AppKit.NSComboBox.Completes
-P:AppKit.NSComboBox.Count
-P:AppKit.NSComboBox.DataSource
P:AppKit.NSComboBox.Delegate
-P:AppKit.NSComboBox.HasVerticalScroller
-P:AppKit.NSComboBox.IntercellSpacing
P:AppKit.NSComboBox.Item(System.IntPtr)
-P:AppKit.NSComboBox.ItemHeight
-P:AppKit.NSComboBox.SelectedIndex
-P:AppKit.NSComboBox.SelectedValue
P:AppKit.NSComboBox.SelectionDidChangeNotification
P:AppKit.NSComboBox.SelectionIsChangingNotification
-P:AppKit.NSComboBox.UsesDataSource
-P:AppKit.NSComboBox.Values
-P:AppKit.NSComboBox.VisibleItems
P:AppKit.NSComboBox.WillDismissNotification
P:AppKit.NSComboBox.WillPopUpNotification
P:AppKit.NSComboBoxCell.ButtonBordered
-P:AppKit.NSComboBoxCell.Completes
-P:AppKit.NSComboBoxCell.Count
-P:AppKit.NSComboBoxCell.DataSource
-P:AppKit.NSComboBoxCell.HasVerticalScroller
-P:AppKit.NSComboBoxCell.IntercellSpacing
-P:AppKit.NSComboBoxCell.ItemHeight
-P:AppKit.NSComboBoxCell.SelectedIndex
-P:AppKit.NSComboBoxCell.SelectedValue
-P:AppKit.NSComboBoxCell.UsesDataSource
-P:AppKit.NSComboBoxCell.Values
-P:AppKit.NSComboBoxCell.VisibleItems
-P:AppKit.NSComboButton.Image
-P:AppKit.NSComboButton.ImageScaling
-P:AppKit.NSComboButton.Menu
-P:AppKit.NSComboButton.Style
-P:AppKit.NSComboButton.Title
-P:AppKit.NSControl.Action
-P:AppKit.NSControl.Alignment
-P:AppKit.NSControl.AllowsExpansionToolTips
-P:AppKit.NSControl.AttributedStringValue
-P:AppKit.NSControl.BaseWritingDirection
-P:AppKit.NSControl.Cell
-P:AppKit.NSControl.CellClass
P:AppKit.NSControl.Continuous
-P:AppKit.NSControl.ControlSize
-P:AppKit.NSControl.CurrentEditor
-P:AppKit.NSControl.DoubleValue
P:AppKit.NSControl.Enabled
-P:AppKit.NSControl.FloatValue
-P:AppKit.NSControl.Font
-P:AppKit.NSControl.Formatter
P:AppKit.NSControl.Highlighted
-P:AppKit.NSControl.IgnoresMultiClick
-P:AppKit.NSControl.IntValue
-P:AppKit.NSControl.LineBreakMode
-P:AppKit.NSControl.NIntValue
-P:AppKit.NSControl.ObjectValue
-P:AppKit.NSControl.RefusesFirstResponder
-P:AppKit.NSControl.SelectedCell
-P:AppKit.NSControl.SelectedTag
-P:AppKit.NSControl.StringValue
-P:AppKit.NSControl.Tag
-P:AppKit.NSControl.Target
P:AppKit.NSControl.TextDidBeginEditingNotification
P:AppKit.NSControl.TextDidChangeNotification
P:AppKit.NSControl.TextDidEndEditingNotification
-P:AppKit.NSControl.UsesSingleLineMode
P:AppKit.NSController.IsEditing
P:AppKit.NSControlTextEditingEventArgs.FieldEditor
P:AppKit.NSControlTextErrorEventArgs.Error
P:AppKit.NSControlTextErrorEventArgs.Str
-P:AppKit.NSCursor.ArrowCursor
-P:AppKit.NSCursor.ClosedHandCursor
-P:AppKit.NSCursor.ColumnResizeCursor
-P:AppKit.NSCursor.ContextualMenuCursor
-P:AppKit.NSCursor.CrosshairCursor
-P:AppKit.NSCursor.CurrentCursor
-P:AppKit.NSCursor.CurrentSystemCursor
-P:AppKit.NSCursor.DisappearingItemCursor
-P:AppKit.NSCursor.DragCopyCursor
-P:AppKit.NSCursor.DragLinkCursor
-P:AppKit.NSCursor.HotSpot
-P:AppKit.NSCursor.IBeamCursor
-P:AppKit.NSCursor.IBeamCursorForVerticalLayout
-P:AppKit.NSCursor.Image
-P:AppKit.NSCursor.OpenHandCursor
-P:AppKit.NSCursor.OperationNotAllowedCursor
-P:AppKit.NSCursor.PointingHandCursor
-P:AppKit.NSCursor.ResizeDownCursor
-P:AppKit.NSCursor.ResizeLeftCursor
-P:AppKit.NSCursor.ResizeLeftRightCursor
-P:AppKit.NSCursor.ResizeRightCursor
-P:AppKit.NSCursor.ResizeUpCursor
-P:AppKit.NSCursor.ResizeUpDownCursor
-P:AppKit.NSCursor.RowResizeCursor
-P:AppKit.NSCursor.ZoomInCursor
-P:AppKit.NSCursor.ZoomOutCursor
-P:AppKit.NSCustomImageRep.Delegate
-P:AppKit.NSCustomImageRep.DrawingHandler
-P:AppKit.NSCustomImageRep.DrawSelector
-P:AppKit.NSCustomTouchBarItem.CustomizationLabel
-P:AppKit.NSCustomTouchBarItem.View
-P:AppKit.NSCustomTouchBarItem.ViewController
-P:AppKit.NSDataAsset.Data
-P:AppKit.NSDataAsset.Name
-P:AppKit.NSDataAsset.TypeIdentifier
P:AppKit.NSDataEventArgs.DeviceToken
-P:AppKit.NSDatePicker.BackgroundColor
-P:AppKit.NSDatePicker.Bezeled
-P:AppKit.NSDatePicker.Bordered
-P:AppKit.NSDatePicker.Calendar
-P:AppKit.NSDatePicker.Cell
-P:AppKit.NSDatePicker.DatePickerElements
-P:AppKit.NSDatePicker.DatePickerMode
-P:AppKit.NSDatePicker.DatePickerStyle
-P:AppKit.NSDatePicker.DateValue
P:AppKit.NSDatePicker.Delegate
-P:AppKit.NSDatePicker.DrawsBackground
-P:AppKit.NSDatePicker.Locale
-P:AppKit.NSDatePicker.MaxDate
-P:AppKit.NSDatePicker.MinDate
-P:AppKit.NSDatePicker.PresentsCalendarOverlay
-P:AppKit.NSDatePicker.TextColor
-P:AppKit.NSDatePicker.TimeInterval
-P:AppKit.NSDatePicker.TimeZone
-P:AppKit.NSDatePicker.WeakDelegate
-P:AppKit.NSDatePickerCell.BackgroundColor
-P:AppKit.NSDatePickerCell.Calendar
-P:AppKit.NSDatePickerCell.DatePickerElements
-P:AppKit.NSDatePickerCell.DatePickerMode
-P:AppKit.NSDatePickerCell.DatePickerStyle
-P:AppKit.NSDatePickerCell.DateValue
P:AppKit.NSDatePickerCell.Delegate
-P:AppKit.NSDatePickerCell.DrawsBackground
-P:AppKit.NSDatePickerCell.Locale
-P:AppKit.NSDatePickerCell.MaxDate
-P:AppKit.NSDatePickerCell.MinDate
-P:AppKit.NSDatePickerCell.TextColor
-P:AppKit.NSDatePickerCell.TimeInterval
-P:AppKit.NSDatePickerCell.TimeZone
-P:AppKit.NSDatePickerCell.WeakDelegate
P:AppKit.NSDatePickerValidatorEventArgs.ProposedDateValue
P:AppKit.NSDatePickerValidatorEventArgs.ProposedTimeInterval
-P:AppKit.NSDictionaryController.ExcludedKeys
-P:AppKit.NSDictionaryController.IncludedKeys
-P:AppKit.NSDictionaryController.InitialKey
-P:AppKit.NSDictionaryController.InitialValue
-P:AppKit.NSDictionaryController.LocalizedKeyDictionary
-P:AppKit.NSDictionaryController.LocalizedKeyTable
-P:AppKit.NSDictionaryController.NewObject
P:AppKit.NSDictionaryControllerKeyValuePair.ExplicitlyIncluded
-P:AppKit.NSDictionaryControllerKeyValuePair.Key
-P:AppKit.NSDictionaryControllerKeyValuePair.LocalizedKey
-P:AppKit.NSDictionaryControllerKeyValuePair.Value
P:AppKit.NSDictionaryEventArgs.UserInfo
-P:AppKit.NSDiffableDataSourceSnapshot`2.ItemIdentifiers
-P:AppKit.NSDiffableDataSourceSnapshot`2.NumberOfItems
-P:AppKit.NSDiffableDataSourceSnapshot`2.NumberOfSections
P:AppKit.NSDiffableDataSourceSnapshot`2.ReconfiguredItemIdentifiers
P:AppKit.NSDiffableDataSourceSnapshot`2.ReloadedItemIdentifiers
P:AppKit.NSDiffableDataSourceSnapshot`2.ReloadedSectionIdentifiers
-P:AppKit.NSDiffableDataSourceSnapshot`2.SectionIdentifiers
-P:AppKit.NSDockTile.BadgeLabel
-P:AppKit.NSDockTile.ContentView
-P:AppKit.NSDockTile.Owner
-P:AppKit.NSDockTile.ShowsApplicationBadge
-P:AppKit.NSDockTile.Size
-P:AppKit.NSDocument.AllowsDocumentSharing
-P:AppKit.NSDocument.AutosavedContentsFileUrl
-P:AppKit.NSDocument.AutoSavesDrafts
-P:AppKit.NSDocument.AutosavingFileType
-P:AppKit.NSDocument.AutosavingIsImplicitlyCancellable
-P:AppKit.NSDocument.BackupFileUrl
-P:AppKit.NSDocument.DefaultDraftName
-P:AppKit.NSDocument.DisplayName
-P:AppKit.NSDocument.FileModificationDate
-P:AppKit.NSDocument.FileNameExtensionWasHiddenInLastRunSavePanel
-P:AppKit.NSDocument.FileType
-P:AppKit.NSDocument.FileTypeFromLastRunSavePanel
-P:AppKit.NSDocument.FileUrl
-P:AppKit.NSDocument.HasUnautosavedChanges
-P:AppKit.NSDocument.HasUndoManager
P:AppKit.NSDocument.IsBrowsingVersions
P:AppKit.NSDocument.IsDocumentEdited
P:AppKit.NSDocument.IsDraft
P:AppKit.NSDocument.IsEntireFileLoaded
P:AppKit.NSDocument.IsInViewingMode
P:AppKit.NSDocument.IsLocked
-P:AppKit.NSDocument.PDFPrintOperation
-P:AppKit.NSDocument.PresentedItemObservedUbiquityAttributes
P:AppKit.NSDocument.PresentedItemOperationQueue
-P:AppKit.NSDocument.PresentedItemUrl
-P:AppKit.NSDocument.PreviewRepresentableActivityItems
P:AppKit.NSDocument.PrimaryPresentedItemUrl
-P:AppKit.NSDocument.PrintInfo
-P:AppKit.NSDocument.ReadableTypes
-P:AppKit.NSDocument.SavePanelShowsFileFormatsControl
-P:AppKit.NSDocument.ShouldRunSavePanelWithAccessoryView
-P:AppKit.NSDocument.UndoManager
-P:AppKit.NSDocument.UserActivity
-P:AppKit.NSDocument.UsesUbiquitousStorage
-P:AppKit.NSDocument.WindowControllers
-P:AppKit.NSDocument.WindowForSheet
-P:AppKit.NSDocument.WindowNibName
-P:AppKit.NSDocumentController.AllowsAutomaticShareMenu
-P:AppKit.NSDocumentController.AutosavingDelay
-P:AppKit.NSDocumentController.CurrentDirectory
-P:AppKit.NSDocumentController.CurrentDocument
-P:AppKit.NSDocumentController.DefaultType
-P:AppKit.NSDocumentController.DocumentClassNames
-P:AppKit.NSDocumentController.Documents
-P:AppKit.NSDocumentController.HasEditedDocuments
-P:AppKit.NSDocumentController.MaximumRecentDocumentCount
-P:AppKit.NSDocumentController.RecentDocumentUrls
-P:AppKit.NSDocumentController.SharedDocumentController
-P:AppKit.NSDocumentController.StandardShareMenuItem
-P:AppKit.NSDraggingDestination.WantsPeriodicDraggingUpdates
-P:AppKit.NSDraggingImageComponent.Contents
-P:AppKit.NSDraggingImageComponent.Frame
P:AppKit.NSDraggingImageComponent.IconKey
-P:AppKit.NSDraggingImageComponent.Key
P:AppKit.NSDraggingImageComponent.LabelKey
-P:AppKit.NSDraggingItem.DraggingFrame
-P:AppKit.NSDraggingItem.ImageComponents
-P:AppKit.NSDraggingItem.Item
-P:AppKit.NSDraggingSession.AnimatesToStartingPositionsOnCancelOrFail
-P:AppKit.NSDraggingSession.DraggingFormation
-P:AppKit.NSDraggingSession.DraggingLeaderIndex
-P:AppKit.NSDraggingSession.DraggingLocation
-P:AppKit.NSDraggingSession.DraggingPasteboard
-P:AppKit.NSDraggingSession.DraggingSequenceNumber
-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
P:AppKit.NSDrawer.ApplicationHiddenNotification
P:AppKit.NSDrawer.ApplicationShownNotification
-P:AppKit.NSDrawer.ContentSize
-P:AppKit.NSDrawer.ContentView
P:AppKit.NSDrawer.CreatedNotification
P:AppKit.NSDrawer.Delegate
P:AppKit.NSDrawer.DidCloseNotification
@@ -66417,17 +46940,11 @@ P:AppKit.NSDrawer.DrawerCreatedNotification
P:AppKit.NSDrawer.DrawerShouldClose
P:AppKit.NSDrawer.DrawerShouldOpen
P:AppKit.NSDrawer.DrawerWillResizeContents
-P:AppKit.NSDrawer.Edge
P:AppKit.NSDrawer.FocusedWindowChangedNotification
P:AppKit.NSDrawer.HelpTagCreatedNotification
P:AppKit.NSDrawer.LayoutChangedNotification
-P:AppKit.NSDrawer.LeadingOffset
P:AppKit.NSDrawer.MainWindowChangedNotification
-P:AppKit.NSDrawer.MaxContentSize
-P:AppKit.NSDrawer.MinContentSize
P:AppKit.NSDrawer.MovedNotification
-P:AppKit.NSDrawer.ParentWindow
-P:AppKit.NSDrawer.PreferredEdge
P:AppKit.NSDrawer.ResizedNotification
P:AppKit.NSDrawer.RowCollapsedNotification
P:AppKit.NSDrawer.RowCountChangedNotification
@@ -66439,14 +46956,11 @@ P:AppKit.NSDrawer.SelectedColumnsChangedNotification
P:AppKit.NSDrawer.SelectedRowsChangedNotification
P:AppKit.NSDrawer.SelectedTextChangedNotification
P:AppKit.NSDrawer.SheetCreatedNotification
-P:AppKit.NSDrawer.State
P:AppKit.NSDrawer.TitleChangedNotification
-P:AppKit.NSDrawer.TrailingOffset
P:AppKit.NSDrawer.UIElementDestroyedNotification
P:AppKit.NSDrawer.UIElementFocusedChangedNotification
P:AppKit.NSDrawer.UnitsChangedNotification
P:AppKit.NSDrawer.ValueChangedNotification
-P:AppKit.NSDrawer.WeakDelegate
P:AppKit.NSDrawer.WillCloseNotification
P:AppKit.NSDrawer.WillOpenNotification
P:AppKit.NSDrawer.WindowCreatedNotification
@@ -66454,119 +46968,30 @@ P:AppKit.NSDrawer.WindowDeminiaturizedNotification
P:AppKit.NSDrawer.WindowMiniaturizedNotification
P:AppKit.NSDrawer.WindowMovedNotification
P:AppKit.NSDrawer.WindowResizedNotification
-P:AppKit.NSEPSImageRep.BoundingBox
-P:AppKit.NSEPSImageRep.EPSRepresentation
-P:AppKit.NSEvent.AbsoluteX
-P:AppKit.NSEvent.AbsoluteY
-P:AppKit.NSEvent.AbsoluteZ
-P:AppKit.NSEvent.AllTouches
-P:AppKit.NSEvent.AssociatedEventsMask
-P:AppKit.NSEvent.ButtonMask
-P:AppKit.NSEvent.ButtonNumber
-P:AppKit.NSEvent.CapabilityMask
-P:AppKit.NSEvent.CGEvent
-P:AppKit.NSEvent.Characters
-P:AppKit.NSEvent.CharactersIgnoringModifiers
-P:AppKit.NSEvent.ClickCount
-P:AppKit.NSEvent.Context
-P:AppKit.NSEvent.CurrentModifierFlags
-P:AppKit.NSEvent.CurrentMouseLocation
-P:AppKit.NSEvent.CurrentPressedMouseButtons
-P:AppKit.NSEvent.Data1
-P:AppKit.NSEvent.Data2
-P:AppKit.NSEvent.DeltaX
-P:AppKit.NSEvent.DeltaY
-P:AppKit.NSEvent.DeltaZ
-P:AppKit.NSEvent.DeviceID
-P:AppKit.NSEvent.DoubleClickInterval
-P:AppKit.NSEvent.EventNumber
-P:AppKit.NSEvent.EventRef
-P:AppKit.NSEvent.HasPreciseScrollingDeltas
P:AppKit.NSEvent.IsARepeat
P:AppKit.NSEvent.IsDirectionInvertedFromDevice
P:AppKit.NSEvent.IsEnteringProximity
P:AppKit.NSEvent.IsSwipeTrackingFromScrollEventsEnabled
-P:AppKit.NSEvent.KeyCode
-P:AppKit.NSEvent.KeyRepeatDelay
-P:AppKit.NSEvent.KeyRepeatInterval
-P:AppKit.NSEvent.LocationInWindow
-P:AppKit.NSEvent.Magnification
-P:AppKit.NSEvent.ModifierFlags
-P:AppKit.NSEvent.MomentumPhase
P:AppKit.NSEvent.MouseCoalescingEnabled
-P:AppKit.NSEvent.Phase
-P:AppKit.NSEvent.PointingDeviceSerialNumber
-P:AppKit.NSEvent.PointingDeviceType
-P:AppKit.NSEvent.Pressure
-P:AppKit.NSEvent.Rotation
-P:AppKit.NSEvent.ScrollingDeltaX
-P:AppKit.NSEvent.ScrollingDeltaY
-P:AppKit.NSEvent.Stage
-P:AppKit.NSEvent.StageTransition
-P:AppKit.NSEvent.Subtype
-P:AppKit.NSEvent.SystemTabletID
-P:AppKit.NSEvent.TabletID
-P:AppKit.NSEvent.TangentialPressure
-P:AppKit.NSEvent.Tilt
-P:AppKit.NSEvent.Timestamp
-P:AppKit.NSEvent.TrackingArea
-P:AppKit.NSEvent.TrackingNumber
-P:AppKit.NSEvent.Type
-P:AppKit.NSEvent.UniqueID
-P:AppKit.NSEvent.UserData
-P:AppKit.NSEvent.VendorDefined
-P:AppKit.NSEvent.VendorID
-P:AppKit.NSEvent.VendorPointingDeviceType
-P:AppKit.NSEvent.Window
-P:AppKit.NSEvent.WindowNumber
-P:AppKit.NSFilePromiseProvider.Delegate
-P:AppKit.NSFilePromiseProvider.FileType
-P:AppKit.NSFilePromiseProvider.UserInfo
-P:AppKit.NSFilePromiseReceiver.FileNames
-P:AppKit.NSFilePromiseReceiver.FileTypes
-P:AppKit.NSFilePromiseReceiver.ReadableDraggedTypes
P:AppKit.NSFont.AntialiasThresholdChangedNotification
-P:AppKit.NSFont.Ascender
-P:AppKit.NSFont.BoundingRectForFont
-P:AppKit.NSFont.CapHeight
P:AppKit.NSFont.CascadeListAttribute
P:AppKit.NSFont.CharacterSetAttribute
-P:AppKit.NSFont.CoveredCharacterSet
-P:AppKit.NSFont.Descender
-P:AppKit.NSFont.DisplayName
P:AppKit.NSFont.FaceAttribute
P:AppKit.NSFont.FamilyAttribute
-P:AppKit.NSFont.FamilyName
P:AppKit.NSFont.FeatureSelectorIdentifierKey
P:AppKit.NSFont.FeatureSettingsAttribute
P:AppKit.NSFont.FeatureTypeIdentifierKey
P:AppKit.NSFont.FixedAdvanceAttribute
-P:AppKit.NSFont.FontDescriptor
-P:AppKit.NSFont.FontName
P:AppKit.NSFont.FontSetChangedNotification
-P:AppKit.NSFont.GlyphCount
P:AppKit.NSFont.IsFixedPitch
-P:AppKit.NSFont.IsVertical
-P:AppKit.NSFont.ItalicAngle
-P:AppKit.NSFont.LabelFontSize
-P:AppKit.NSFont.Leading
P:AppKit.NSFont.MatrixAttribute
-P:AppKit.NSFont.MaximumAdvancement
-P:AppKit.NSFont.MostCompatibleStringEncoding
P:AppKit.NSFont.NameAttribute
-P:AppKit.NSFont.PointSize
P:AppKit.NSFont.PrinterFont
-P:AppKit.NSFont.RenderingMode
P:AppKit.NSFont.ScreenFont
P:AppKit.NSFont.SizeAttribute
P:AppKit.NSFont.SlantTrait
-P:AppKit.NSFont.SmallSystemFontSize
P:AppKit.NSFont.SymbolicTrait
-P:AppKit.NSFont.SystemFontSize
-P:AppKit.NSFont.TextTransform
P:AppKit.NSFont.TraitsAttribute
-P:AppKit.NSFont.UnderlinePosition
-P:AppKit.NSFont.UnderlineThickness
P:AppKit.NSFont.VariationAttribute
P:AppKit.NSFont.VariationAxisDefaultValueKey
P:AppKit.NSFont.VariationAxisIdentifierKey
@@ -66576,14 +47001,10 @@ P:AppKit.NSFont.VariationAxisNameKey
P:AppKit.NSFont.VisibleNameAttribute
P:AppKit.NSFont.WeightTrait
P:AppKit.NSFont.WidthTrait
-P:AppKit.NSFont.XHeight
-P:AppKit.NSFontAssetRequest.DownloadedFontDescriptors
-P:AppKit.NSFontAssetRequest.Progress
P:AppKit.NSFontCollection.ActionKey
P:AppKit.NSFontCollection.ActionWasHidden
P:AppKit.NSFontCollection.ActionWasRenamed
P:AppKit.NSFontCollection.ActionWasShown
-P:AppKit.NSFontCollection.AllFontCollectionNames
P:AppKit.NSFontCollection.ChangedNotification
P:AppKit.NSFontCollection.DisallowAutoActivationOption
P:AppKit.NSFontCollection.IncludeDisabledFontsOption
@@ -66599,28 +47020,9 @@ P:AppKit.NSFontCollectionChangedEventArgs.Action
P:AppKit.NSFontCollectionChangedEventArgs.Name
P:AppKit.NSFontCollectionChangedEventArgs.OldName
P:AppKit.NSFontCollectionChangedEventArgs.Visibility
-P:AppKit.NSFontDescriptor.FontAttributes
-P:AppKit.NSFontDescriptor.Matrix
-P:AppKit.NSFontDescriptor.PointSize
-P:AppKit.NSFontDescriptor.PostscriptName
-P:AppKit.NSFontDescriptor.RequiresFontAssetRequest
-P:AppKit.NSFontDescriptor.SymbolicTraits
-P:AppKit.NSFontManager.Action
-P:AppKit.NSFontManager.AvailableFontFamilies
-P:AppKit.NSFontManager.AvailableFonts
-P:AppKit.NSFontManager.CollectionNames
-P:AppKit.NSFontManager.CurrentFontAction
P:AppKit.NSFontManager.Enabled
P:AppKit.NSFontManager.IsMultiple
-P:AppKit.NSFontManager.SelectedFont
-P:AppKit.NSFontManager.SendAction
-P:AppKit.NSFontManager.SharedFontManager
-P:AppKit.NSFontManager.Target
-P:AppKit.NSFontManager.WeakDelegate
-P:AppKit.NSFontPanel.AccessoryView
P:AppKit.NSFontPanel.Enabled
-P:AppKit.NSFontPanel.SharedFontPanel
-P:AppKit.NSFontPanel.SharedFontPanelExists
P:AppKit.NSFontWeight.Black
P:AppKit.NSFontWeight.Bold
P:AppKit.NSFontWeight.Heavy
@@ -66634,131 +47036,30 @@ P:AppKit.NSFontWidth.Compressed
P:AppKit.NSFontWidth.Condensed
P:AppKit.NSFontWidth.Expanded
P:AppKit.NSFontWidth.Standard
-P:AppKit.NSForm.PreferredTextFieldWidth
-P:AppKit.NSForm.SelectedItemIndex
-P:AppKit.NSFormCell.AttributedTitle
P:AppKit.NSFormCell.IsOpaque
-P:AppKit.NSFormCell.PlaceholderAttributedString
-P:AppKit.NSFormCell.PlaceholderString
-P:AppKit.NSFormCell.PreferredTextFieldWidth
-P:AppKit.NSFormCell.Title
-P:AppKit.NSFormCell.TitleAlignment
-P:AppKit.NSFormCell.TitleBaseWritingDirection
-P:AppKit.NSFormCell.TitleFont
-P:AppKit.NSFormCell.TitleWidth
-P:AppKit.NSGestureRecognizer.Action
-P:AppKit.NSGestureRecognizer.DelaysKeyEvents
-P:AppKit.NSGestureRecognizer.DelaysMagnificationEvents
-P:AppKit.NSGestureRecognizer.DelaysOtherMouseButtonEvents
-P:AppKit.NSGestureRecognizer.DelaysPrimaryMouseButtonEvents
-P:AppKit.NSGestureRecognizer.DelaysRotationEvents
-P:AppKit.NSGestureRecognizer.DelaysSecondaryMouseButtonEvents
P:AppKit.NSGestureRecognizer.Delegate
P:AppKit.NSGestureRecognizer.Enabled
-P:AppKit.NSGestureRecognizer.PressureConfiguration
P:AppKit.NSGestureRecognizer.ShouldAttemptToRecognize
P:AppKit.NSGestureRecognizer.ShouldBegin
P:AppKit.NSGestureRecognizer.ShouldBeRequiredToFail
P:AppKit.NSGestureRecognizer.ShouldReceiveTouch
P:AppKit.NSGestureRecognizer.ShouldRecognizeSimultaneously
P:AppKit.NSGestureRecognizer.ShouldRequireFailure
-P:AppKit.NSGestureRecognizer.State
-P:AppKit.NSGestureRecognizer.Target
-P:AppKit.NSGestureRecognizer.View
-P:AppKit.NSGestureRecognizer.WeakDelegate
-P:AppKit.NSGlyphGenerator.SharedGlyphGenerator
-P:AppKit.NSGlyphInfo.BaseString
-P:AppKit.NSGlyphInfo.CharacterCollection
-P:AppKit.NSGlyphInfo.CharacterIdentifier
-P:AppKit.NSGlyphInfo.GlyphId
-P:AppKit.NSGlyphInfo.GlyphName
-P:AppKit.NSGradient.ColorSpace
-P:AppKit.NSGradient.ColorStopsCount
P:AppKit.NSGraphics.AvailableWindowDepths
-P:AppKit.NSGraphicsContext.Attributes
-P:AppKit.NSGraphicsContext.CGContext
-P:AppKit.NSGraphicsContext.CIContext
-P:AppKit.NSGraphicsContext.ColorRenderingIntent
-P:AppKit.NSGraphicsContext.CompositingOperation
-P:AppKit.NSGraphicsContext.CurrentContext
P:AppKit.NSGraphicsContext.GraphicsPort
-P:AppKit.NSGraphicsContext.GraphicsPortHandle
-P:AppKit.NSGraphicsContext.ImageInterpolation
-P:AppKit.NSGraphicsContext.IsCurrentContextDrawingToScreen
P:AppKit.NSGraphicsContext.IsDrawingToScreen
-P:AppKit.NSGraphicsContext.IsFlipped
-P:AppKit.NSGraphicsContext.PatternPhase
-P:AppKit.NSGraphicsContext.ShouldAntialias
-P:AppKit.NSGridCell.Column
-P:AppKit.NSGridCell.ContentView
-P:AppKit.NSGridCell.CustomPlacementConstraints
-P:AppKit.NSGridCell.EmptyContentView
-P:AppKit.NSGridCell.Row
-P:AppKit.NSGridCell.RowAlignment
-P:AppKit.NSGridCell.X
-P:AppKit.NSGridCell.Y
-P:AppKit.NSGridColumn.CellCount
-P:AppKit.NSGridColumn.GridView
P:AppKit.NSGridColumn.Hidden
-P:AppKit.NSGridColumn.LeadingPadding
-P:AppKit.NSGridColumn.TrailingPadding
-P:AppKit.NSGridColumn.Width
-P:AppKit.NSGridColumn.X
-P:AppKit.NSGridRow.BottomPadding
-P:AppKit.NSGridRow.CellCount
-P:AppKit.NSGridRow.GridView
-P:AppKit.NSGridRow.Height
P:AppKit.NSGridRow.Hidden
-P:AppKit.NSGridRow.RowAlignment
-P:AppKit.NSGridRow.TopPadding
-P:AppKit.NSGridRow.Y
-P:AppKit.NSGridView.ColumnCount
-P:AppKit.NSGridView.ColumnSpacing
-P:AppKit.NSGridView.RowAlignment
-P:AppKit.NSGridView.RowCount
-P:AppKit.NSGridView.RowSpacing
P:AppKit.NSGridView.SizeForContent
-P:AppKit.NSGridView.X
-P:AppKit.NSGridView.Y
-P:AppKit.NSGroupTouchBarItem.CustomizationLabel
-P:AppKit.NSGroupTouchBarItem.EffectiveCompressionOptions
-P:AppKit.NSGroupTouchBarItem.GroupTouchBar
-P:AppKit.NSGroupTouchBarItem.GroupUserInterfaceLayoutDirection
-P:AppKit.NSGroupTouchBarItem.PreferredItemWidth
-P:AppKit.NSGroupTouchBarItem.PrefersEqualWidths
-P:AppKit.NSGroupTouchBarItem.PrioritizedCompressionOptions
-P:AppKit.NSHapticFeedbackManager.DefaultPerformer
P:AppKit.NSHelpManager.ContextHelpModeActive
P:AppKit.NSHelpManager.ContextHelpModeDidActivateNotification
P:AppKit.NSHelpManager.ContextHelpModeDidDeactivateNotification
-P:AppKit.NSImage.AccessibilityDescription
-P:AppKit.NSImage.AlignmentRect
-P:AppKit.NSImage.BackgroundColor
-P:AppKit.NSImage.CacheMode
-P:AppKit.NSImage.CapInsets
P:AppKit.NSImage.CGImage
P:AppKit.NSImage.Delegate
-P:AppKit.NSImage.Flipped
P:AppKit.NSImage.ImageDidNotDraw
-P:AppKit.NSImage.ImageFileTypes
-P:AppKit.NSImage.ImagePasteboardTypes
-P:AppKit.NSImage.ImageTypes
-P:AppKit.NSImage.ImageUnfilteredTypes
P:AppKit.NSImage.IsValid
-P:AppKit.NSImage.Locale
-P:AppKit.NSImage.MatchesOnlyOnBestFittingAxis
-P:AppKit.NSImage.MatchesOnMultipleResolution
P:AppKit.NSImage.Name
-P:AppKit.NSImage.PrefersColorMatch
-P:AppKit.NSImage.ResizingMode
-P:AppKit.NSImage.Size
-P:AppKit.NSImage.SymbolConfiguration
P:AppKit.NSImage.Template
-P:AppKit.NSImage.UsesEpsOnResolutionMismatch
-P:AppKit.NSImage.WeakDelegate
-P:AppKit.NSImageCell.ImageAlignment
-P:AppKit.NSImageCell.ImageFrameStyle
-P:AppKit.NSImageCell.ImageScaling
P:AppKit.NSImageHint.Ctm
P:AppKit.NSImageHint.Interpolation
P:AppKit.NSImageHint.UserInterfaceLayoutDirection
@@ -66767,282 +47068,38 @@ P:AppKit.NSImageLoadRepresentationEventArgs.Rep
P:AppKit.NSImageLoadRepresentationEventArgs.Status
P:AppKit.NSImagePartialEventArgs.Rep
P:AppKit.NSImagePartialEventArgs.Rows
-P:AppKit.NSImageRep.BitsPerSample
P:AppKit.NSImageRep.CGImage
-P:AppKit.NSImageRep.ColorSpaceName
P:AppKit.NSImageRep.HasAlpha
-P:AppKit.NSImageRep.ImageFileTypes
-P:AppKit.NSImageRep.ImagePasteboardTypes
-P:AppKit.NSImageRep.ImageTypes
-P:AppKit.NSImageRep.ImageUnfilteredFileTypes
-P:AppKit.NSImageRep.ImageUnfilteredPasteboardTypes
-P:AppKit.NSImageRep.ImageUnfilteredTypes
-P:AppKit.NSImageRep.LayoutDirection
P:AppKit.NSImageRep.Opaque
-P:AppKit.NSImageRep.PixelsHigh
-P:AppKit.NSImageRep.PixelsWide
P:AppKit.NSImageRep.RegistryDidChangeNotification
-P:AppKit.NSImageRep.Size
-P:AppKit.NSImageView.AccessibilityFocused
-P:AppKit.NSImageView.AccessibilityFrame
-P:AppKit.NSImageView.AccessibilityIdentifier
-P:AppKit.NSImageView.AccessibilityLabel
-P:AppKit.NSImageView.AccessibilityParent
-P:AppKit.NSImageView.AllowsCutCopyPaste
-P:AppKit.NSImageView.Animates
-P:AppKit.NSImageView.ContentTintColor
-P:AppKit.NSImageView.DefaultPreferredImageDynamicRange
P:AppKit.NSImageView.Editable
-P:AppKit.NSImageView.Image
-P:AppKit.NSImageView.ImageAlignment
-P:AppKit.NSImageView.ImageDynamicRange
-P:AppKit.NSImageView.ImageFrameStyle
-P:AppKit.NSImageView.ImageScaling
-P:AppKit.NSImageView.PreferredImageDynamicRange
-P:AppKit.NSImageView.SymbolConfiguration
-P:AppKit.NSLayoutAnchor`1.ConstraintsAffectingLayout
-P:AppKit.NSLayoutAnchor`1.HasAmbiguousLayout
-P:AppKit.NSLayoutAnchor`1.Item
-P:AppKit.NSLayoutAnchor`1.Name
P:AppKit.NSLayoutConstraint.Active
-P:AppKit.NSLayoutConstraint.Animations
-P:AppKit.NSLayoutConstraint.Animator
-P:AppKit.NSLayoutConstraint.Constant
-P:AppKit.NSLayoutConstraint.FirstAttribute
-P:AppKit.NSLayoutConstraint.FirstItem
-P:AppKit.NSLayoutConstraint.Identifier
-P:AppKit.NSLayoutConstraint.Multiplier
-P:AppKit.NSLayoutConstraint.Priority
-P:AppKit.NSLayoutConstraint.Relation
-P:AppKit.NSLayoutConstraint.SecondAttribute
-P:AppKit.NSLayoutConstraint.SecondItem
-P:AppKit.NSLayoutConstraint.ShouldBeArchived
-P:AppKit.NSLayoutGuide.BottomAnchor
-P:AppKit.NSLayoutGuide.CenterXAnchor
-P:AppKit.NSLayoutGuide.CenterYAnchor
-P:AppKit.NSLayoutGuide.Frame
-P:AppKit.NSLayoutGuide.HasAmbiguousLayout
-P:AppKit.NSLayoutGuide.HeightAnchor
-P:AppKit.NSLayoutGuide.Identifier
-P:AppKit.NSLayoutGuide.LeadingAnchor
-P:AppKit.NSLayoutGuide.LeftAnchor
-P:AppKit.NSLayoutGuide.OwningView
-P:AppKit.NSLayoutGuide.RightAnchor
-P:AppKit.NSLayoutGuide.TopAnchor
-P:AppKit.NSLayoutGuide.TrailingAnchor
-P:AppKit.NSLayoutGuide.WidthAnchor
-P:AppKit.NSLayoutManager.AllowsNonContiguousLayout
-P:AppKit.NSLayoutManager.BackgroundLayoutEnabled
-P:AppKit.NSLayoutManager.DefaultAttachmentScaling
P:AppKit.NSLayoutManager.Delegate
-P:AppKit.NSLayoutManager.ExtraLineFragmentRect
-P:AppKit.NSLayoutManager.ExtraLineFragmentTextContainer
-P:AppKit.NSLayoutManager.ExtraLineFragmentUsedRect
-P:AppKit.NSLayoutManager.FirstUnlaidCharacterIndex
-P:AppKit.NSLayoutManager.FirstUnlaidGlyphIndex
-P:AppKit.NSLayoutManager.GlyphGenerator
-P:AppKit.NSLayoutManager.HasNonContiguousLayout
-P:AppKit.NSLayoutManager.HyphenationFactor
-P:AppKit.NSLayoutManager.LimitsLayoutForSuspiciousContents
-P:AppKit.NSLayoutManager.NumberOfGlyphs
-P:AppKit.NSLayoutManager.ShowsControlCharacters
-P:AppKit.NSLayoutManager.ShowsInvisibleCharacters
-P:AppKit.NSLayoutManager.TextContainers
-P:AppKit.NSLayoutManager.TextStorage
-P:AppKit.NSLayoutManager.Typesetter
-P:AppKit.NSLayoutManager.TypesetterBehavior
-P:AppKit.NSLayoutManager.UsesDefaultHyphenation
-P:AppKit.NSLayoutManager.UsesFontLeading
-P:AppKit.NSLayoutManager.UsesScreenFonts
-P:AppKit.NSLayoutManager.WeakDelegate
P:AppKit.NSLevelIndicator.Cell
-P:AppKit.NSLevelIndicator.CriticalFillColor
-P:AppKit.NSLevelIndicator.CriticalValue
-P:AppKit.NSLevelIndicator.DrawsTieredCapacityLevels
P:AppKit.NSLevelIndicator.Editable
-P:AppKit.NSLevelIndicator.FillColor
-P:AppKit.NSLevelIndicator.LevelIndicatorStyle
-P:AppKit.NSLevelIndicator.MajorTickMarkCount
-P:AppKit.NSLevelIndicator.MaxValue
-P:AppKit.NSLevelIndicator.MinValue
-P:AppKit.NSLevelIndicator.PlaceholderVisibility
-P:AppKit.NSLevelIndicator.RatingImage
-P:AppKit.NSLevelIndicator.RatingPlaceholderImage
-P:AppKit.NSLevelIndicator.TickMarkCount
-P:AppKit.NSLevelIndicator.TickMarkPosition
-P:AppKit.NSLevelIndicator.WarningFillColor
-P:AppKit.NSLevelIndicator.WarningValue
-P:AppKit.NSLevelIndicatorCell.CriticalValue
-P:AppKit.NSLevelIndicatorCell.LevelIndicatorStyle
-P:AppKit.NSLevelIndicatorCell.MajorTickMarkCount
-P:AppKit.NSLevelIndicatorCell.MaxValue
-P:AppKit.NSLevelIndicatorCell.MinValue
-P:AppKit.NSLevelIndicatorCell.TickMarkCount
-P:AppKit.NSLevelIndicatorCell.TickMarkPosition
-P:AppKit.NSLevelIndicatorCell.WarningValue
-P:AppKit.NSMagnificationGestureRecognizer.Magnification
-P:AppKit.NSMatrix.AllowsEmptySelection
-P:AppKit.NSMatrix.AutoRecalculatesCellSize
P:AppKit.NSMatrix.Autoscroll
-P:AppKit.NSMatrix.AutosizesCells
-P:AppKit.NSMatrix.BackgroundColor
-P:AppKit.NSMatrix.CellBackgroundColor
-P:AppKit.NSMatrix.CellClass
-P:AppKit.NSMatrix.Cells
-P:AppKit.NSMatrix.CellSize
-P:AppKit.NSMatrix.Columns
P:AppKit.NSMatrix.Delegate
-P:AppKit.NSMatrix.DoubleAction
-P:AppKit.NSMatrix.DrawsBackground
-P:AppKit.NSMatrix.DrawsCellBackground
-P:AppKit.NSMatrix.IntercellSpacing
P:AppKit.NSMatrix.Item(System.IntPtr,System.IntPtr)
-P:AppKit.NSMatrix.KeyCell
-P:AppKit.NSMatrix.Mode
-P:AppKit.NSMatrix.Prototype
-P:AppKit.NSMatrix.Rows
-P:AppKit.NSMatrix.SelectedCell
-P:AppKit.NSMatrix.SelectedCells
-P:AppKit.NSMatrix.SelectedColumn
-P:AppKit.NSMatrix.SelectedRow
P:AppKit.NSMatrix.SelectionByRect
-P:AppKit.NSMatrix.TabKeyTraversesCells
-P:AppKit.NSMatrix.WeakDelegate
-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.AllowsContextMenuPlugIns
P:AppKit.NSMenu.AnnouncementRequestedNotification
-P:AppKit.NSMenu.Appearance
P:AppKit.NSMenu.ApplicationActivatedNotification
P:AppKit.NSMenu.ApplicationDeactivatedNotification
P:AppKit.NSMenu.ApplicationHiddenNotification
P:AppKit.NSMenu.ApplicationShownNotification
-P:AppKit.NSMenu.AutoEnablesItems
-P:AppKit.NSMenu.AutomaticallyInsertsWritingToolsItems
-P:AppKit.NSMenu.Count
P:AppKit.NSMenu.CreatedNotification
P:AppKit.NSMenu.Delegate
P:AppKit.NSMenu.DidAddItemNotification
@@ -67052,23 +47109,12 @@ 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.Font
P:AppKit.NSMenu.HelpTagCreatedNotification
-P:AppKit.NSMenu.HighlightedItem
-P:AppKit.NSMenu.Identifier
P:AppKit.NSMenu.IsTornOff
-P:AppKit.NSMenu.Items
P:AppKit.NSMenu.LayoutChangedNotification
P:AppKit.NSMenu.MainWindowChangedNotification
-P:AppKit.NSMenu.MenuBarHeight
-P:AppKit.NSMenu.MenuBarVisible
-P:AppKit.NSMenu.MenuChangedMessagesEnabled
-P:AppKit.NSMenu.MenuZone
-P:AppKit.NSMenu.MinimumWidth
P:AppKit.NSMenu.MovedNotification
-P:AppKit.NSMenu.PresentationStyle
P:AppKit.NSMenu.ResizedNotification
P:AppKit.NSMenu.RowCollapsedNotification
P:AppKit.NSMenu.RowCountChangedNotification
@@ -67077,190 +47123,53 @@ P:AppKit.NSMenu.SelectedCellsChangedNotification
P:AppKit.NSMenu.SelectedChildrenChangedNotification
P:AppKit.NSMenu.SelectedChildrenMovedNotification
P:AppKit.NSMenu.SelectedColumnsChangedNotification
-P:AppKit.NSMenu.SelectedItems
P:AppKit.NSMenu.SelectedRowsChangedNotification
P:AppKit.NSMenu.SelectedTextChangedNotification
-P:AppKit.NSMenu.SelectionMode
P:AppKit.NSMenu.SheetCreatedNotification
-P:AppKit.NSMenu.ShowsStateColumn
-P:AppKit.NSMenu.Size
-P:AppKit.NSMenu.Supermenu
-P:AppKit.NSMenu.Title
P:AppKit.NSMenu.TitleChangedNotification
P:AppKit.NSMenu.UIElementDestroyedNotification
P:AppKit.NSMenu.UIElementFocusedChangedNotification
P:AppKit.NSMenu.UnitsChangedNotification
-P:AppKit.NSMenu.UserInterfaceLayoutDirection
P:AppKit.NSMenu.ValueChangedNotification
-P:AppKit.NSMenu.WeakDelegate
P:AppKit.NSMenu.WillSendActionNotification
P:AppKit.NSMenu.WindowCreatedNotification
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.Action
-P:AppKit.NSMenuItem.AllowsAutomaticKeyEquivalentLocalization
-P:AppKit.NSMenuItem.AllowsAutomaticKeyEquivalentMirroring
-P:AppKit.NSMenuItem.AllowsKeyEquivalentWhenHidden
P:AppKit.NSMenuItem.Alternate
P:AppKit.NSMenuItem.AnnouncementRequestedNotification
P:AppKit.NSMenuItem.ApplicationActivatedNotification
P:AppKit.NSMenuItem.ApplicationDeactivatedNotification
P:AppKit.NSMenuItem.ApplicationHiddenNotification
P:AppKit.NSMenuItem.ApplicationShownNotification
-P:AppKit.NSMenuItem.AttributedTitle
-P:AppKit.NSMenuItem.Badge
P:AppKit.NSMenuItem.CreatedNotification
P:AppKit.NSMenuItem.DrawerCreatedNotification
P:AppKit.NSMenuItem.Enabled
P:AppKit.NSMenuItem.FocusedWindowChangedNotification
-P:AppKit.NSMenuItem.HasSubmenu
P:AppKit.NSMenuItem.HelpTagCreatedNotification
P:AppKit.NSMenuItem.Hidden
P:AppKit.NSMenuItem.Highlighted
-P:AppKit.NSMenuItem.Identifier
-P:AppKit.NSMenuItem.Image
-P:AppKit.NSMenuItem.IndentationLevel
P:AppKit.NSMenuItem.IsHiddenOrHasHiddenAncestor
P:AppKit.NSMenuItem.IsSectionHeader
P:AppKit.NSMenuItem.IsSeparatorItem
-P:AppKit.NSMenuItem.KeyEquivalent
-P:AppKit.NSMenuItem.KeyEquivalentModifierMask
P:AppKit.NSMenuItem.LayoutChangedNotification
P:AppKit.NSMenuItem.MainWindowChangedNotification
-P:AppKit.NSMenuItem.Menu
-P:AppKit.NSMenuItem.MixedStateImage
P:AppKit.NSMenuItem.MovedNotification
-P:AppKit.NSMenuItem.OffStateImage
-P:AppKit.NSMenuItem.OnStateImage
-P:AppKit.NSMenuItem.ParentItem
-P:AppKit.NSMenuItem.RepresentedObject
P:AppKit.NSMenuItem.ResizedNotification
P:AppKit.NSMenuItem.RowCollapsedNotification
P:AppKit.NSMenuItem.RowCountChangedNotification
@@ -67271,90 +47180,21 @@ P:AppKit.NSMenuItem.SelectedChildrenMovedNotification
P:AppKit.NSMenuItem.SelectedColumnsChangedNotification
P:AppKit.NSMenuItem.SelectedRowsChangedNotification
P:AppKit.NSMenuItem.SelectedTextChangedNotification
-P:AppKit.NSMenuItem.SeparatorItem
P:AppKit.NSMenuItem.SheetCreatedNotification
-P:AppKit.NSMenuItem.State
-P:AppKit.NSMenuItem.Submenu
-P:AppKit.NSMenuItem.Subtitle
-P:AppKit.NSMenuItem.Tag
-P:AppKit.NSMenuItem.Target
-P:AppKit.NSMenuItem.Title
P:AppKit.NSMenuItem.TitleChangedNotification
-P:AppKit.NSMenuItem.ToolTip
P:AppKit.NSMenuItem.UIElementDestroyedNotification
P:AppKit.NSMenuItem.UIElementFocusedChangedNotification
P:AppKit.NSMenuItem.UnitsChangedNotification
-P:AppKit.NSMenuItem.UserKeyEquivalent
-P:AppKit.NSMenuItem.UsesUserKeyEquivalents
P:AppKit.NSMenuItem.ValidateMenuItem
P:AppKit.NSMenuItem.ValueChangedNotification
-P:AppKit.NSMenuItem.View
P:AppKit.NSMenuItem.WindowCreatedNotification
P:AppKit.NSMenuItem.WindowDeminiaturizedNotification
P:AppKit.NSMenuItem.WindowMiniaturizedNotification
P:AppKit.NSMenuItem.WindowMovedNotification
P:AppKit.NSMenuItem.WindowResizedNotification
-P:AppKit.NSMenuItem.WritingToolsItems
-P:AppKit.NSMenuItemBadge.ItemCount
-P:AppKit.NSMenuItemBadge.StringValue
-P:AppKit.NSMenuItemBadge.Type
-P:AppKit.NSMenuItemCell.ImageWidth
-P:AppKit.NSMenuItemCell.KeyEquivalentWidth
-P:AppKit.NSMenuItemCell.MenuItem
-P:AppKit.NSMenuItemCell.NeedsDisplay
-P:AppKit.NSMenuItemCell.NeedsSizing
-P:AppKit.NSMenuItemCell.StateImageWidth
-P:AppKit.NSMenuItemCell.Tag
-P:AppKit.NSMenuItemCell.TitleWidth
P:AppKit.NSMenuItemEventArgs.MenuItem
P:AppKit.NSMenuItemIndexEventArgs.MenuItemIndex
-P:AppKit.NSMenuToolbarItem.ItemMenu
-P:AppKit.NSMenuToolbarItem.Menu
-P:AppKit.NSMenuToolbarItem.ShowsIndicator
-P:AppKit.NSMutableParagraphStyle.Alignment
-P:AppKit.NSMutableParagraphStyle.AllowsDefaultTighteningForTruncation
-P:AppKit.NSMutableParagraphStyle.BaseWritingDirection
-P:AppKit.NSMutableParagraphStyle.DefaultTabInterval
-P:AppKit.NSMutableParagraphStyle.FirstLineHeadIndent
-P:AppKit.NSMutableParagraphStyle.HeaderLevel
-P:AppKit.NSMutableParagraphStyle.HeadIndent
-P:AppKit.NSMutableParagraphStyle.HyphenationFactor
-P:AppKit.NSMutableParagraphStyle.LineBreakMode
-P:AppKit.NSMutableParagraphStyle.LineBreakStrategy
-P:AppKit.NSMutableParagraphStyle.LineHeightMultiple
-P:AppKit.NSMutableParagraphStyle.LineSpacing
-P:AppKit.NSMutableParagraphStyle.MaximumLineHeight
-P:AppKit.NSMutableParagraphStyle.MinimumLineHeight
-P:AppKit.NSMutableParagraphStyle.ParagraphSpacing
-P:AppKit.NSMutableParagraphStyle.ParagraphSpacingBefore
-P:AppKit.NSMutableParagraphStyle.TabStops
-P:AppKit.NSMutableParagraphStyle.TailIndent
-P:AppKit.NSMutableParagraphStyle.TextBlocks
-P:AppKit.NSMutableParagraphStyle.TextLists
-P:AppKit.NSMutableParagraphStyle.TighteningFactorForTruncation
-P:AppKit.NSMutableParagraphStyle.UsesDefaultHyphenation
-P:AppKit.NSNibConnector.Destination
-P:AppKit.NSNibConnector.Label
-P:AppKit.NSNibConnector.Source
-P:AppKit.NSObjectController.AutomaticallyPreparesContent
-P:AppKit.NSObjectController.CanAdd
-P:AppKit.NSObjectController.CanRemove
-P:AppKit.NSObjectController.Content
P:AppKit.NSObjectController.Editable
-P:AppKit.NSObjectController.EntityName
-P:AppKit.NSObjectController.FetchPredicate
-P:AppKit.NSObjectController.NewObject
-P:AppKit.NSObjectController.ObjectClass
-P:AppKit.NSObjectController.SelectedObjects
-P:AppKit.NSObjectController.Selection
-P:AppKit.NSObjectController.UsesLazyFetching
-P:AppKit.NSOpenGLContext.CGLContext
-P:AppKit.NSOpenGLContext.CurrentContext
-P:AppKit.NSOpenGLContext.CurrentVirtualScreen
-P:AppKit.NSOpenGLContext.PixelBuffer
-P:AppKit.NSOpenGLContext.PixelBufferCubeMapFace
-P:AppKit.NSOpenGLContext.PixelBufferMipMapLevel
-P:AppKit.NSOpenGLContext.PixelFormat
P:AppKit.NSOpenGLContext.RasterizationEnabled
P:AppKit.NSOpenGLContext.StateValidation
P:AppKit.NSOpenGLContext.SurfaceOpaque
@@ -67362,115 +47202,29 @@ P:AppKit.NSOpenGLContext.SurfaceOrder
P:AppKit.NSOpenGLContext.SwapInterval
P:AppKit.NSOpenGLContext.SwapRectangle
P:AppKit.NSOpenGLContext.SwapRectangleEnabled
-P:AppKit.NSOpenGLContext.View
-P:AppKit.NSOpenGLLayer.OpenGLContext
-P:AppKit.NSOpenGLLayer.OpenGLPixelFormat
-P:AppKit.NSOpenGLLayer.View
-P:AppKit.NSOpenGLPixelBuffer.CGLPBuffer
-P:AppKit.NSOpenGLPixelBuffer.PixelsHigh
-P:AppKit.NSOpenGLPixelBuffer.PixelsWide
-P:AppKit.NSOpenGLPixelBuffer.TextureInternalFormat
-P:AppKit.NSOpenGLPixelBuffer.TextureMaxMipMapLevel
-P:AppKit.NSOpenGLPixelBuffer.TextureTarget
-P:AppKit.NSOpenGLPixelFormat.CGLPixelFormat
-P:AppKit.NSOpenGLPixelFormat.NumberOfVirtualScreens
-P:AppKit.NSOpenGLView.DefaultPixelFormat
-P:AppKit.NSOpenGLView.OpenGLContext
-P:AppKit.NSOpenGLView.PixelFormat
-P:AppKit.NSOpenPanel.AllowsMultipleSelection
-P:AppKit.NSOpenPanel.CanChooseDirectories
-P:AppKit.NSOpenPanel.CanChooseFiles
-P:AppKit.NSOpenPanel.Filenames
-P:AppKit.NSOpenPanel.OpenPanel
-P:AppKit.NSOpenPanel.ResolvesAliases
-P:AppKit.NSOpenPanel.Urls
P:AppKit.NSOpenSaveExpandingEventArgs.Expanding
P:AppKit.NSOpenSaveFilenameEventArgs.Path
P:AppKit.NSOpenSavePanelUrlEventArgs.NewDirectoryUrl
P:AppKit.NSopenSavePanelUTTypeEventArgs.Type
-P:AppKit.NSOutlineView.AccessibilityColumnHeaderUIElements
-P:AppKit.NSOutlineView.AccessibilityColumns
-P:AppKit.NSOutlineView.AccessibilityFocused
-P:AppKit.NSOutlineView.AccessibilityFrame
-P:AppKit.NSOutlineView.AccessibilityHeaderGroup
-P:AppKit.NSOutlineView.AccessibilityIdentifier
-P:AppKit.NSOutlineView.AccessibilityLabel
-P:AppKit.NSOutlineView.AccessibilityParent
-P:AppKit.NSOutlineView.AccessibilityRowHeaderUIElements
-P:AppKit.NSOutlineView.AccessibilityRows
-P:AppKit.NSOutlineView.AccessibilitySelectedCells
-P:AppKit.NSOutlineView.AccessibilitySelectedColumns
-P:AppKit.NSOutlineView.AccessibilitySelectedRows
-P:AppKit.NSOutlineView.AccessibilityVisibleCells
-P:AppKit.NSOutlineView.AccessibilityVisibleColumns
-P:AppKit.NSOutlineView.AccessibilityVisibleRows
-P:AppKit.NSOutlineView.AutoresizesOutlineColumn
-P:AppKit.NSOutlineView.AutosaveExpandedItems
P:AppKit.NSOutlineView.ColumnDidMoveNotification
P:AppKit.NSOutlineView.ColumnDidResizeNotification
P:AppKit.NSOutlineView.DataSource
P:AppKit.NSOutlineView.Delegate
-P:AppKit.NSOutlineView.IndentationMarkerFollowsCell
-P:AppKit.NSOutlineView.IndentationPerLevel
P:AppKit.NSOutlineView.ItemDidCollapseNotification
P:AppKit.NSOutlineView.ItemDidExpandNotification
P:AppKit.NSOutlineView.ItemWillCollapseNotification
P:AppKit.NSOutlineView.ItemWillExpandNotification
-P:AppKit.NSOutlineView.OutlineTableColumn
P:AppKit.NSOutlineView.SelectionDidChangeNotification
P:AppKit.NSOutlineView.SelectionIsChangingNotification
-P:AppKit.NSOutlineView.StronglyReferencesItems
-P:AppKit.NSOutlineView.UserInterfaceLayoutDirection
-P:AppKit.NSOutlineView.WeakDataSource
-P:AppKit.NSOutlineView.WeakDelegate
P:AppKit.NSOutlineViewItemEventArgs.Item
-P:AppKit.NSPageController.Animations
-P:AppKit.NSPageController.Animator
-P:AppKit.NSPageController.ArrangedObjects
P:AppKit.NSPageController.Delegate
P:AppKit.NSPageController.GetFrame
P:AppKit.NSPageController.GetIdentifier
P:AppKit.NSPageController.GetViewController
-P:AppKit.NSPageController.SelectedIndex
-P:AppKit.NSPageController.SelectedViewController
-P:AppKit.NSPageController.TransitionStyle
-P:AppKit.NSPageController.WeakDelegate
P:AppKit.NSPageControllerPrepareViewControllerEventArgs.TargetObject
P:AppKit.NSPageControllerPrepareViewControllerEventArgs.ViewController
P:AppKit.NSPageControllerTransitionEventArgs.TargetObject
-P:AppKit.NSPageLayout.PageLayout
-P:AppKit.NSPageLayout.PrintInfo
-P:AppKit.NSPanel.BecomesKeyOnlyIfNeeded
P:AppKit.NSPanel.FloatingPanel
-P:AppKit.NSPanel.WorksWhenModal
-P:AppKit.NSPanGestureRecognizer.ButtonMask
-P:AppKit.NSPanGestureRecognizer.NumberOfTouchesRequired
-P:AppKit.NSParagraphStyle.Alignment
-P:AppKit.NSParagraphStyle.AllowsDefaultTighteningForTruncation
-P:AppKit.NSParagraphStyle.BaseWritingDirection
-P:AppKit.NSParagraphStyle.Default
-P:AppKit.NSParagraphStyle.DefaultTabInterval
-P:AppKit.NSParagraphStyle.FirstLineHeadIndent
-P:AppKit.NSParagraphStyle.HeaderLevel
-P:AppKit.NSParagraphStyle.HeadIndent
-P:AppKit.NSParagraphStyle.HyphenationFactor
-P:AppKit.NSParagraphStyle.LineBreakMode
-P:AppKit.NSParagraphStyle.LineBreakStrategy
-P:AppKit.NSParagraphStyle.LineHeightMultiple
-P:AppKit.NSParagraphStyle.LineSpacing
-P:AppKit.NSParagraphStyle.MaximumLineHeight
-P:AppKit.NSParagraphStyle.MinimumLineHeight
-P:AppKit.NSParagraphStyle.ParagraphSpacing
-P:AppKit.NSParagraphStyle.ParagraphSpacingBefore
-P:AppKit.NSParagraphStyle.TabStops
-P:AppKit.NSParagraphStyle.TailIndent
-P:AppKit.NSParagraphStyle.TextBlocks
-P:AppKit.NSParagraphStyle.TextLists
-P:AppKit.NSParagraphStyle.TighteningFactorForTruncation
-P:AppKit.NSParagraphStyle.UsesDefaultHyphenation
-P:AppKit.NSPasteboard.ChangeCount
-P:AppKit.NSPasteboard.GeneralPasteboard
-P:AppKit.NSPasteboard.Name
P:AppKit.NSPasteboard.NSColorType
P:AppKit.NSPasteboard.NSDragPasteboardName
P:AppKit.NSPasteboard.NSFilenamesType
@@ -67494,211 +47248,45 @@ P:AppKit.NSPasteboard.NSTabularTextType
P:AppKit.NSPasteboard.NSTiffType
P:AppKit.NSPasteboard.NSUrlType
P:AppKit.NSPasteboard.NSVCardType
-P:AppKit.NSPasteboard.PasteboardItems
-P:AppKit.NSPasteboard.Types
-P:AppKit.NSPasteboardItem.CollaborationMetadata
-P:AppKit.NSPasteboardItem.Types
-P:AppKit.NSPathCell.AllowedTypes
-P:AppKit.NSPathCell.BackgroundColor
-P:AppKit.NSPathCell.ClickedPathComponentCell
P:AppKit.NSPathCell.Delegate
-P:AppKit.NSPathCell.DoubleAction
-P:AppKit.NSPathCell.PathComponentCellClass
-P:AppKit.NSPathCell.PathComponentCells
-P:AppKit.NSPathCell.PathStyle
-P:AppKit.NSPathCell.PlaceholderAttributedString
-P:AppKit.NSPathCell.PlaceholderString
-P:AppKit.NSPathCell.Url
-P:AppKit.NSPathCell.WeakDelegate
P:AppKit.NSPathCellDisplayPanelEventArgs.OpenPanel
P:AppKit.NSPathCellMenuEventArgs.Menu
-P:AppKit.NSPathComponentCell.Image
-P:AppKit.NSPathComponentCell.Url
-P:AppKit.NSPathControl.AllowedTypes
-P:AppKit.NSPathControl.BackgroundColor
-P:AppKit.NSPathControl.ClickedPathComponentCell
-P:AppKit.NSPathControl.ClickedPathItem
P:AppKit.NSPathControl.Delegate
-P:AppKit.NSPathControl.DoubleAction
P:AppKit.NSPathControl.Editable
-P:AppKit.NSPathControl.Menu
-P:AppKit.NSPathControl.PathComponentCells
-P:AppKit.NSPathControl.PathItems
-P:AppKit.NSPathControl.PathStyle
-P:AppKit.NSPathControl.PlaceholderAttributedString
-P:AppKit.NSPathControl.PlaceholderString
-P:AppKit.NSPathControl.Url
-P:AppKit.NSPathControl.WeakDelegate
-P:AppKit.NSPathControlItem.AttributedTitle
-P:AppKit.NSPathControlItem.Image
-P:AppKit.NSPathControlItem.Title
-P:AppKit.NSPathControlItem.Url
-P:AppKit.NSPdfImageRep.Bounds
-P:AppKit.NSPdfImageRep.CurrentPage
-P:AppKit.NSPdfImageRep.PageCount
-P:AppKit.NSPdfImageRep.PdfRepresentation
-P:AppKit.NSPickerTouchBarItem.Action
-P:AppKit.NSPickerTouchBarItem.CollapsedRepresentationImage
-P:AppKit.NSPickerTouchBarItem.CollapsedRepresentationLabel
-P:AppKit.NSPickerTouchBarItem.ControlRepresentation
-P:AppKit.NSPickerTouchBarItem.CustomizationLabel
P:AppKit.NSPickerTouchBarItem.Enabled
-P:AppKit.NSPickerTouchBarItem.NumberOfOptions
-P:AppKit.NSPickerTouchBarItem.SelectedIndex
-P:AppKit.NSPickerTouchBarItem.SelectionColor
-P:AppKit.NSPickerTouchBarItem.SelectionMode
-P:AppKit.NSPickerTouchBarItem.Target
-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.Animates
P:AppKit.NSPopover.AnnouncementRequestedNotification
-P:AppKit.NSPopover.Appearance
P:AppKit.NSPopover.ApplicationActivatedNotification
P:AppKit.NSPopover.ApplicationDeactivatedNotification
P:AppKit.NSPopover.ApplicationHiddenNotification
P:AppKit.NSPopover.ApplicationShownNotification
-P:AppKit.NSPopover.Behavior
P:AppKit.NSPopover.CloseReasonDetachToWindow
P:AppKit.NSPopover.CloseReasonKey
P:AppKit.NSPopover.CloseReasonStandard
-P:AppKit.NSPopover.ContentSize
-P:AppKit.NSPopover.ContentViewController
P:AppKit.NSPopover.CreatedNotification
P:AppKit.NSPopover.Delegate
P:AppKit.NSPopover.Detached
P:AppKit.NSPopover.DidCloseNotification
P:AppKit.NSPopover.DidShowNotification
P:AppKit.NSPopover.DrawerCreatedNotification
-P:AppKit.NSPopover.EffectiveAppearance
P:AppKit.NSPopover.FocusedWindowChangedNotification
-P:AppKit.NSPopover.HasFullSizeContent
P:AppKit.NSPopover.HelpTagCreatedNotification
P:AppKit.NSPopover.LayoutChangedNotification
P:AppKit.NSPopover.MainWindowChangedNotification
P:AppKit.NSPopover.MovedNotification
-P:AppKit.NSPopover.PositioningRect
P:AppKit.NSPopover.ResizedNotification
P:AppKit.NSPopover.RowCollapsedNotification
P:AppKit.NSPopover.RowCountChangedNotification
@@ -67716,7 +47304,6 @@ P:AppKit.NSPopover.UIElementDestroyedNotification
P:AppKit.NSPopover.UIElementFocusedChangedNotification
P:AppKit.NSPopover.UnitsChangedNotification
P:AppKit.NSPopover.ValueChangedNotification
-P:AppKit.NSPopover.WeakDelegate
P:AppKit.NSPopover.WillCloseNotification
P:AppKit.NSPopover.WillShowNotification
P:AppKit.NSPopover.WindowCreatedNotification
@@ -67725,369 +47312,56 @@ P:AppKit.NSPopover.WindowMiniaturizedNotification
P:AppKit.NSPopover.WindowMovedNotification
P:AppKit.NSPopover.WindowResizedNotification
P:AppKit.NSPopoverCloseEventArgs.Reason
-P:AppKit.NSPopoverTouchBarItem.CollapsedRepresentation
-P:AppKit.NSPopoverTouchBarItem.CollapsedRepresentationImage
-P:AppKit.NSPopoverTouchBarItem.CollapsedRepresentationLabel
-P:AppKit.NSPopoverTouchBarItem.CustomizationLabel
-P:AppKit.NSPopoverTouchBarItem.PopoverTouchBar
-P:AppKit.NSPopoverTouchBarItem.PressAndHoldTouchBar
-P:AppKit.NSPopoverTouchBarItem.ShowsCloseButton
-P:AppKit.NSPopUpButton.AltersStateOfSelectedItem
-P:AppKit.NSPopUpButton.AutoEnablesItems
P:AppKit.NSPopUpButton.Cell
-P:AppKit.NSPopUpButton.IndexOfSelectedItem
-P:AppKit.NSPopUpButton.ItemCount
-P:AppKit.NSPopUpButton.LastItem
-P:AppKit.NSPopUpButton.Menu
-P:AppKit.NSPopUpButton.PreferredEdge
-P:AppKit.NSPopUpButton.PullsDown
-P:AppKit.NSPopUpButton.SelectedItem
-P:AppKit.NSPopUpButton.SelectedTag
-P:AppKit.NSPopUpButton.TitleOfSelectedItem
-P:AppKit.NSPopUpButton.UsesItemFromMenu
P:AppKit.NSPopUpButton.WillPopUpNotification
-P:AppKit.NSPopUpButtonCell.AltersStateOfSelectedItem
-P:AppKit.NSPopUpButtonCell.ArrowPosition
-P:AppKit.NSPopUpButtonCell.AutoenablesItems
-P:AppKit.NSPopUpButtonCell.Count
P:AppKit.NSPopUpButtonCell.Item(System.IntPtr)
P:AppKit.NSPopUpButtonCell.Item(System.String)
-P:AppKit.NSPopUpButtonCell.Items
-P:AppKit.NSPopUpButtonCell.ItemTitles
-P:AppKit.NSPopUpButtonCell.LastItem
-P:AppKit.NSPopUpButtonCell.Menu
-P:AppKit.NSPopUpButtonCell.ObjectValue
-P:AppKit.NSPopUpButtonCell.PreferredEdge
-P:AppKit.NSPopUpButtonCell.PullsDown
-P:AppKit.NSPopUpButtonCell.SelectedItem
-P:AppKit.NSPopUpButtonCell.SelectedItemIndex
-P:AppKit.NSPopUpButtonCell.TitleOfSelectedItem
-P:AppKit.NSPopUpButtonCell.UsesItemFromMenu
P:AppKit.NSPopUpButtonCell.WillPopUpNotification
-P:AppKit.NSPredicateEditor.RowTemplates
-P:AppKit.NSPredicateEditorRowTemplate.CompoundTypes
-P:AppKit.NSPredicateEditorRowTemplate.LeftExpressions
-P:AppKit.NSPredicateEditorRowTemplate.Modifier
-P:AppKit.NSPredicateEditorRowTemplate.Operators
-P:AppKit.NSPredicateEditorRowTemplate.Options
-P:AppKit.NSPredicateEditorRowTemplate.RightExpressionAttributeType
-P:AppKit.NSPredicateEditorRowTemplate.RightExpressions
-P:AppKit.NSPredicateEditorRowTemplate.TemplateViews
-P:AppKit.NSPressGestureRecognizer.AllowableMovement
-P:AppKit.NSPressGestureRecognizer.ButtonMask
-P:AppKit.NSPressGestureRecognizer.MinimumPressDuration
-P:AppKit.NSPressGestureRecognizer.NumberOfTouchesRequired
-P:AppKit.NSPressureConfiguration.PressureBehavior
-P:AppKit.NSPreviewRepresentingActivityItem.IconProvider
-P:AppKit.NSPreviewRepresentingActivityItem.ImageProvider
-P:AppKit.NSPreviewRepresentingActivityItem.Item
-P:AppKit.NSPreviewRepresentingActivityItem.Title
-P:AppKit.NSPrinter.DeviceDescription
-P:AppKit.NSPrinter.LanguageLevel
-P:AppKit.NSPrinter.Name
-P:AppKit.NSPrinter.PrinterNames
-P:AppKit.NSPrinter.PrinterTypes
-P:AppKit.NSPrinter.Type
-P:AppKit.NSPrintInfo.BottomMargin
-P:AppKit.NSPrintInfo.DefaultPrinter
-P:AppKit.NSPrintInfo.Dictionary
P:AppKit.NSPrintInfo.HorizontallyCentered
-P:AppKit.NSPrintInfo.HorizontalPagination
-P:AppKit.NSPrintInfo.ImageablePageBounds
-P:AppKit.NSPrintInfo.JobDisposition
-P:AppKit.NSPrintInfo.LeftMargin
-P:AppKit.NSPrintInfo.LocalizedPaperName
-P:AppKit.NSPrintInfo.Orientation
-P:AppKit.NSPrintInfo.PaperName
-P:AppKit.NSPrintInfo.PaperSize
-P:AppKit.NSPrintInfo.Printer
-P:AppKit.NSPrintInfo.PrintSettings
-P:AppKit.NSPrintInfo.RightMargin
-P:AppKit.NSPrintInfo.ScalingFactor
P:AppKit.NSPrintInfo.SelectionOnly
-P:AppKit.NSPrintInfo.SharedPrintInfo
-P:AppKit.NSPrintInfo.TopMargin
P:AppKit.NSPrintInfo.VerticallyCentered
-P:AppKit.NSPrintInfo.VerticalPagination
-P:AppKit.NSPrintOperation.CanSpawnSeparateThread
-P:AppKit.NSPrintOperation.Context
-P:AppKit.NSPrintOperation.CurrentOperation
-P:AppKit.NSPrintOperation.CurrentPage
P:AppKit.NSPrintOperation.IsCopyingOperation
-P:AppKit.NSPrintOperation.JobTitle
-P:AppKit.NSPrintOperation.PageOrder
-P:AppKit.NSPrintOperation.PageRange
-P:AppKit.NSPrintOperation.PreferredRenderingQuality
-P:AppKit.NSPrintOperation.PrintInfo
-P:AppKit.NSPrintOperation.PrintPanel
-P:AppKit.NSPrintOperation.ShowsPrintPanel
-P:AppKit.NSPrintOperation.ShowsProgressPanel
-P:AppKit.NSPrintOperation.View
-P:AppKit.NSPrintPanel.DefaultButtonTitle
-P:AppKit.NSPrintPanel.HelpAnchor
-P:AppKit.NSPrintPanel.JobStyleHint
-P:AppKit.NSPrintPanel.Options
-P:AppKit.NSPrintPanel.PrintInfo
-P:AppKit.NSPrintPanel.PrintPanel
-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.ControlSize
-P:AppKit.NSProgressIndicator.ControlTint
-P:AppKit.NSProgressIndicator.DoubleValue
P:AppKit.NSProgressIndicator.Indeterminate
P:AppKit.NSProgressIndicator.IsDisplayedWhenStopped
-P:AppKit.NSProgressIndicator.MaxValue
-P:AppKit.NSProgressIndicator.MinValue
-P:AppKit.NSProgressIndicator.ObservedProgress
-P:AppKit.NSProgressIndicator.Style
-P:AppKit.NSProgressIndicator.UsesThreadedAnimation
-P:AppKit.NSResponder.Menu
-P:AppKit.NSResponder.NextResponder
-P:AppKit.NSResponder.TouchBar
-P:AppKit.NSResponder.UserActivity
-P:AppKit.NSRotationGestureRecognizer.Rotation
-P:AppKit.NSRotationGestureRecognizer.RotationInDegrees
-P:AppKit.NSRuleEditor.CanRemoveAllRows
P:AppKit.NSRuleEditor.ChildForCriterion
-P:AppKit.NSRuleEditor.CriteriaKeyPath
P:AppKit.NSRuleEditor.Delegate
P:AppKit.NSRuleEditor.DisplayValue
-P:AppKit.NSRuleEditor.DisplayValuesKeyPath
P:AppKit.NSRuleEditor.Editable
-P:AppKit.NSRuleEditor.FormattingDictionary
-P:AppKit.NSRuleEditor.FormattingStringsFilename
-P:AppKit.NSRuleEditor.NestingMode
P:AppKit.NSRuleEditor.NumberOfChildren
-P:AppKit.NSRuleEditor.NumberOfRows
-P:AppKit.NSRuleEditor.Predicate
P:AppKit.NSRuleEditor.PredicateParts
-P:AppKit.NSRuleEditor.RowClass
-P:AppKit.NSRuleEditor.RowHeight
P:AppKit.NSRuleEditor.RowsDidChangeNotification
-P:AppKit.NSRuleEditor.RowTypeKeyPath
-P:AppKit.NSRuleEditor.SelectedRows
-P:AppKit.NSRuleEditor.SubrowsKeyPath
-P:AppKit.NSRuleEditor.WeakDelegate
-P:AppKit.NSRulerMarker.Image
-P:AppKit.NSRulerMarker.ImageOrigin
-P:AppKit.NSRulerMarker.ImageRectInRuler
P:AppKit.NSRulerMarker.IsDragging
-P:AppKit.NSRulerMarker.MarkerLocation
P:AppKit.NSRulerMarker.Movable
P:AppKit.NSRulerMarker.Removable
-P:AppKit.NSRulerMarker.RepresentedObject
-P:AppKit.NSRulerMarker.Ruler
-P:AppKit.NSRulerMarker.ThicknessRequiredInRuler
-P:AppKit.NSRulerView.AccessoryView
-P:AppKit.NSRulerView.BaselineLocation
-P:AppKit.NSRulerView.ClientView
-P:AppKit.NSRulerView.IsFlipped
-P:AppKit.NSRulerView.Markers
-P:AppKit.NSRulerView.MeasurementUnits
-P:AppKit.NSRulerView.Orientation
-P:AppKit.NSRulerView.OriginOffset
-P:AppKit.NSRulerView.RequiredThickness
-P:AppKit.NSRulerView.ReservedThicknessForAccessoryView
-P:AppKit.NSRulerView.ReservedThicknessForMarkers
-P:AppKit.NSRulerView.RuleThickness
-P:AppKit.NSRulerView.ScrollView
P:AppKit.NSRulerView.WeakMeasurementUnits
-P:AppKit.NSRunningApplication.ActivationPolicy
P:AppKit.NSRunningApplication.Active
-P:AppKit.NSRunningApplication.BundleIdentifier
-P:AppKit.NSRunningApplication.BundleUrl
-P:AppKit.NSRunningApplication.CurrentApplication
-P:AppKit.NSRunningApplication.ExecutableArchitecture
-P:AppKit.NSRunningApplication.ExecutableUrl
P:AppKit.NSRunningApplication.FinishedLaunching
P:AppKit.NSRunningApplication.Hidden
-P:AppKit.NSRunningApplication.Icon
-P:AppKit.NSRunningApplication.LaunchDate
-P:AppKit.NSRunningApplication.LocalizedName
-P:AppKit.NSRunningApplication.OwnsMenuBar
-P:AppKit.NSRunningApplication.ProcessIdentifier
P:AppKit.NSRunningApplication.Terminated
-P:AppKit.NSSavePanel.AccessoryView
-P:AppKit.NSSavePanel.AllowedContentTypes
-P:AppKit.NSSavePanel.AllowedFileTypes
-P:AppKit.NSSavePanel.AllowsOtherFileTypes
-P:AppKit.NSSavePanel.CanCreateDirectories
-P:AppKit.NSSavePanel.CanSelectHiddenExtension
P:AppKit.NSSavePanel.CompareFilenames
-P:AppKit.NSSavePanel.CurrentContentType
P:AppKit.NSSavePanel.Delegate
-P:AppKit.NSSavePanel.Directory
-P:AppKit.NSSavePanel.DirectoryUrl
P:AppKit.NSSavePanel.ExtensionHidden
-P:AppKit.NSSavePanel.Filename
P:AppKit.NSSavePanel.GetDisplayName
-P:AppKit.NSSavePanel.Identifier
P:AppKit.NSSavePanel.IsExpanded
P:AppKit.NSSavePanel.IsValidFilename
-P:AppKit.NSSavePanel.Message
-P:AppKit.NSSavePanel.NameFieldLabel
-P:AppKit.NSSavePanel.NameFieldStringValue
-P:AppKit.NSSavePanel.Prompt
-P:AppKit.NSSavePanel.RequiredFileType
-P:AppKit.NSSavePanel.SavePanel
P:AppKit.NSSavePanel.ShouldEnableUrl
P:AppKit.NSSavePanel.ShouldShowFilename
-P:AppKit.NSSavePanel.ShowsContentTypes
-P:AppKit.NSSavePanel.ShowsHiddenFiles
-P:AppKit.NSSavePanel.ShowsTagField
-P:AppKit.NSSavePanel.TagNames
-P:AppKit.NSSavePanel.Title
-P:AppKit.NSSavePanel.TreatsFilePackagesAsDirectories
-P:AppKit.NSSavePanel.Url
P:AppKit.NSSavePanel.UserEnteredFilename
P:AppKit.NSSavePanel.ValidateUrl
-P:AppKit.NSSavePanel.WeakDelegate
-P:AppKit.NSScreen.AuxiliaryTopLeftArea
-P:AppKit.NSScreen.AuxiliaryTopRightArea
-P:AppKit.NSScreen.BackingScaleFactor
-P:AppKit.NSScreen.ColorSpace
P:AppKit.NSScreen.ColorSpaceDidChangeNotification
-P:AppKit.NSScreen.DeepestScreen
-P:AppKit.NSScreen.Depth
-P:AppKit.NSScreen.DeviceDescription
-P:AppKit.NSScreen.DisplayUpdateGranularity
-P:AppKit.NSScreen.Frame
-P:AppKit.NSScreen.LastDisplayUpdateTimestamp
-P:AppKit.NSScreen.LocalizedName
-P:AppKit.NSScreen.MainScreen
-P:AppKit.NSScreen.MaximumExtendedDynamicRangeColorComponentValue
-P:AppKit.NSScreen.MaximumFramesPerSecond
-P:AppKit.NSScreen.MaximumPotentialExtendedDynamicRangeColorComponentValue
-P:AppKit.NSScreen.MaximumReferenceExtendedDynamicRangeColorComponentValue
-P:AppKit.NSScreen.MaximumRefreshInterval
-P:AppKit.NSScreen.MinimumRefreshInterval
-P:AppKit.NSScreen.SafeAreaInsets
-P:AppKit.NSScreen.Screens
P:AppKit.NSScreen.SupportedWindowDepths
-P:AppKit.NSScreen.UserSpaceScaleFactor
-P:AppKit.NSScreen.VisibleFrame
-P:AppKit.NSScroller.ArrowsPosition
P:AppKit.NSScroller.CompatibleWithOverlayScrollers
-P:AppKit.NSScroller.ControlSize
-P:AppKit.NSScroller.ControlTint
-P:AppKit.NSScroller.HitPart
-P:AppKit.NSScroller.KnobProportion
-P:AppKit.NSScroller.KnobStyle
-P:AppKit.NSScroller.PreferredScrollerStyle
P:AppKit.NSScroller.PreferredStyleChangedNotification
-P:AppKit.NSScroller.ScrollerStyle
-P:AppKit.NSScroller.ScrollerWidth
-P:AppKit.NSScroller.UsableParts
-P:AppKit.NSScrollView.AllowsMagnification
-P:AppKit.NSScrollView.AutohidesScrollers
-P:AppKit.NSScrollView.AutomaticallyAdjustsContentInsets
-P:AppKit.NSScrollView.BackgroundColor
-P:AppKit.NSScrollView.BorderType
-P:AppKit.NSScrollView.ContentInsets
-P:AppKit.NSScrollView.ContentSize
-P:AppKit.NSScrollView.ContentView
P:AppKit.NSScrollView.DidEndLiveMagnifyNotification
P:AppKit.NSScrollView.DidEndLiveScrollNotification
P:AppKit.NSScrollView.DidLiveScrollNotification
-P:AppKit.NSScrollView.DocumentCursor
-P:AppKit.NSScrollView.DocumentView
-P:AppKit.NSScrollView.DocumentVisibleRect
-P:AppKit.NSScrollView.DrawsBackground
-P:AppKit.NSScrollView.FindBarPosition
-P:AppKit.NSScrollView.FindBarView
P:AppKit.NSScrollView.FindBarVisible
-P:AppKit.NSScrollView.HasHorizontalRuler
-P:AppKit.NSScrollView.HasHorizontalScroller
-P:AppKit.NSScrollView.HasVerticalRuler
-P:AppKit.NSScrollView.HasVerticalScroller
-P:AppKit.NSScrollView.HorizontalLineScroll
-P:AppKit.NSScrollView.HorizontalPageScroll
-P:AppKit.NSScrollView.HorizontalRulerView
-P:AppKit.NSScrollView.HorizontalScrollElasticity
-P:AppKit.NSScrollView.HorizontalScroller
-P:AppKit.NSScrollView.LineScroll
-P:AppKit.NSScrollView.Magnification
-P:AppKit.NSScrollView.MaxMagnification
-P:AppKit.NSScrollView.MinMagnification
-P:AppKit.NSScrollView.PageScroll
-P:AppKit.NSScrollView.RulersVisible
-P:AppKit.NSScrollView.ScrollerInsets
-P:AppKit.NSScrollView.ScrollerKnobStyle
-P:AppKit.NSScrollView.ScrollerStyle
-P:AppKit.NSScrollView.ScrollsDynamically
-P:AppKit.NSScrollView.UsesPredominantAxisScrolling
-P:AppKit.NSScrollView.VerticalLineScroll
-P:AppKit.NSScrollView.VerticalPageScroll
-P:AppKit.NSScrollView.VerticalRulerView
-P:AppKit.NSScrollView.VerticalScrollElasticity
-P:AppKit.NSScrollView.VerticalScroller
P:AppKit.NSScrollView.WillStartLiveMagnifyNotification
P:AppKit.NSScrollView.WillStartLiveScrollNotification
-P:AppKit.NSScrubber.BackgroundColor
-P:AppKit.NSScrubber.BackgroundView
P:AppKit.NSScrubber.Continuous
-P:AppKit.NSScrubber.DataSource
-P:AppKit.NSScrubber.Delegate
-P:AppKit.NSScrubber.FloatsSelectionViews
-P:AppKit.NSScrubber.HighlightedIndex
-P:AppKit.NSScrubber.ItemAlignment
-P:AppKit.NSScrubber.Mode
-P:AppKit.NSScrubber.NumberOfItems
-P:AppKit.NSScrubber.ScrubberLayout
-P:AppKit.NSScrubber.SelectedIndex
-P:AppKit.NSScrubber.SelectionBackgroundStyle
-P:AppKit.NSScrubber.SelectionOverlayStyle
-P:AppKit.NSScrubber.ShowsAdditionalContentIndicators
-P:AppKit.NSScrubber.ShowsArrowButtons
P:AppKit.NSScrubberArrangedView.Highlighted
P:AppKit.NSScrubberArrangedView.Selected
-P:AppKit.NSScrubberFlowLayout.ItemSize
-P:AppKit.NSScrubberFlowLayout.ItemSpacing
-P:AppKit.NSScrubberImageItemView.Image
-P:AppKit.NSScrubberImageItemView.ImageAlignment
-P:AppKit.NSScrubberImageItemView.ImageView
-P:AppKit.NSScrubberLayout.AutomaticallyMirrorsInRightToLeftLayout
-P:AppKit.NSScrubberLayout.LayoutAttributesClass
-P:AppKit.NSScrubberLayout.Scrubber
-P:AppKit.NSScrubberLayout.ScrubberContentSize
-P:AppKit.NSScrubberLayout.VisibleRect
-P:AppKit.NSScrubberLayoutAttributes.Alpha
-P:AppKit.NSScrubberLayoutAttributes.Frame
-P:AppKit.NSScrubberLayoutAttributes.ItemIndex
-P:AppKit.NSScrubberProportionalLayout.NumberOfVisibleItems
-P:AppKit.NSScrubberSelectionStyle.OutlineOverlayStyle
-P:AppKit.NSScrubberSelectionStyle.RoundedBackgroundStyle
-P:AppKit.NSScrubberTextItemView.TextField
-P:AppKit.NSScrubberTextItemView.Title
-P:AppKit.NSSearchField.CancelButtonBounds
-P:AppKit.NSSearchField.Cell
-P:AppKit.NSSearchField.CentersPlaceholder
P:AppKit.NSSearchField.Delegate
-P:AppKit.NSSearchField.MaximumRecents
-P:AppKit.NSSearchField.RecentsAutosaveName
-P:AppKit.NSSearchField.RecentSearches
-P:AppKit.NSSearchField.SearchButtonBounds
-P:AppKit.NSSearchField.SearchMenuTemplate
-P:AppKit.NSSearchField.SearchTextBounds
-P:AppKit.NSSearchField.SendsSearchStringImmediately
-P:AppKit.NSSearchField.SendsWholeSearchString
-P:AppKit.NSSearchField.WeakDelegate
-P:AppKit.NSSearchFieldCell.CancelButtonCell
-P:AppKit.NSSearchFieldCell.MaximumRecents
-P:AppKit.NSSearchFieldCell.RecentsAutosaveName
-P:AppKit.NSSearchFieldCell.RecentSearches
-P:AppKit.NSSearchFieldCell.SearchButtonCell
-P:AppKit.NSSearchFieldCell.SearchMenuTemplate
-P:AppKit.NSSearchFieldCell.SendsSearchStringImmediately
-P:AppKit.NSSearchFieldCell.SendsWholeSearchString
-P:AppKit.NSSearchToolbarItem.PreferredWidthForSearchField
-P:AppKit.NSSearchToolbarItem.ResignsFirstResponderWithCancel
-P:AppKit.NSSearchToolbarItem.SearchField
-P:AppKit.NSSecureTextFieldCell.EchosBullets
P:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell.SharingServiceNameAddToAperture
P:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell.SharingServiceNameAddToIPhoto
P:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell.SharingServiceNameAddToSafariReadingList
@@ -68103,44 +47377,13 @@ P:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell.SharingServiceNamePostVideoOnY
P:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell.SharingServiceNameSendViaAirDrop
P:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell.SharingServiceNameUseAsDesktopPicture
P:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell.SharingServiceNameUseAsTwitterProfileImage
-P:AppKit.NSSegmentedCell.SegmentCount
-P:AppKit.NSSegmentedCell.SegmentStyle
-P:AppKit.NSSegmentedCell.SelectedSegment
-P:AppKit.NSSegmentedCell.TrackingMode
-P:AppKit.NSSegmentedControl.ActiveCompressionOptions
P:AppKit.NSSegmentedControl.Cell
P:AppKit.NSSegmentedControl.IsSpringLoaded
-P:AppKit.NSSegmentedControl.SegmentCount
-P:AppKit.NSSegmentedControl.SegmentDistribution
-P:AppKit.NSSegmentedControl.SegmentStyle
-P:AppKit.NSSegmentedControl.SelectedSegment
-P:AppKit.NSSegmentedControl.SelectedSegmentBezelColor
-P:AppKit.NSSegmentedControl.TrackingMode
-P:AppKit.NSShadow.ShadowBlurRadius
-P:AppKit.NSShadow.ShadowColor
-P:AppKit.NSShadow.ShadowOffset
-P:AppKit.NSSharingCollaborationModeRestriction.AlertDismissButtonTitle
-P:AppKit.NSSharingCollaborationModeRestriction.AlertMessage
-P:AppKit.NSSharingCollaborationModeRestriction.AlertRecoverySuggestionButtonLaunchUrl
-P:AppKit.NSSharingCollaborationModeRestriction.AlertRecoverySuggestionButtonTitle
-P:AppKit.NSSharingCollaborationModeRestriction.AlertTitle
-P:AppKit.NSSharingCollaborationModeRestriction.DisabledMode
-P:AppKit.NSSharingService.AccountName
-P:AppKit.NSSharingService.AlternateImage
-P:AppKit.NSSharingService.AttachmentFileUrls
P:AppKit.NSSharingService.CreateAnchoringView
P:AppKit.NSSharingService.Delegate
-P:AppKit.NSSharingService.Image
-P:AppKit.NSSharingService.MenuItemTitle
-P:AppKit.NSSharingService.MessageBody
-P:AppKit.NSSharingService.PermanentLink
-P:AppKit.NSSharingService.Recipients
P:AppKit.NSSharingService.SourceFrameOnScreenForShareItem
P:AppKit.NSSharingService.SourceWindowForShareItems
-P:AppKit.NSSharingService.Subject
-P:AppKit.NSSharingService.Title
P:AppKit.NSSharingService.TransitionImageForShareItem
-P:AppKit.NSSharingService.WeakDelegate
P:AppKit.NSSharingServiceDidFailToShareItemsEventArgs.Error
P:AppKit.NSSharingServiceDidFailToShareItemsEventArgs.Items
P:AppKit.NSSharingServiceItemsEventArgs.Items
@@ -68148,168 +47391,28 @@ P:AppKit.NSSharingServicePicker.Delegate
P:AppKit.NSSharingServicePicker.DelegateForSharingService
P:AppKit.NSSharingServicePicker.GetCollaborationModeRestrictions
P:AppKit.NSSharingServicePicker.SharingServicesForItems
-P:AppKit.NSSharingServicePicker.StandardShareMenuItem
-P:AppKit.NSSharingServicePicker.WeakDelegate
P:AppKit.NSSharingServicePickerDidChooseSharingServiceEventArgs.Service
-P:AppKit.NSSharingServicePickerToolbarItem.ActivityItemsConfiguration
P:AppKit.NSSharingServicePickerToolbarItem.Delegate
-P:AppKit.NSSharingServicePickerToolbarItem.WeakDelegate
-P:AppKit.NSSharingServicePickerTouchBarItem.ActivityItemsConfiguration
-P:AppKit.NSSharingServicePickerTouchBarItem.ButtonImage
-P:AppKit.NSSharingServicePickerTouchBarItem.ButtonTitle
-P:AppKit.NSSharingServicePickerTouchBarItem.Delegate
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.AllowsTickMarkValuesOnly
-P:AppKit.NSSlider.AltIncrementValue
-P:AppKit.NSSlider.Image
-P:AppKit.NSSlider.IsVertical
-P:AppKit.NSSlider.KnobThickness
-P:AppKit.NSSlider.MaxValue
-P:AppKit.NSSlider.MinValue
-P:AppKit.NSSlider.SliderType
-P:AppKit.NSSlider.TickMarkPosition
-P:AppKit.NSSlider.TickMarksCount
-P:AppKit.NSSlider.Title
-P:AppKit.NSSlider.TitleCell
-P:AppKit.NSSlider.TitleColor
-P:AppKit.NSSlider.TitleFont
-P:AppKit.NSSlider.TrackFillColor
-P:AppKit.NSSliderAccessory.AccessibilityActivationPoint
-P:AppKit.NSSliderAccessory.AccessibilityAllowedValues
-P:AppKit.NSSliderAccessory.AccessibilityAlternateUIVisible
-P:AppKit.NSSliderAccessory.AccessibilityApplicationFocusedUIElement
-P:AppKit.NSSliderAccessory.AccessibilityAttributedUserInputLabels
-P:AppKit.NSSliderAccessory.AccessibilityCancelButton
-P:AppKit.NSSliderAccessory.AccessibilityChildren
-P:AppKit.NSSliderAccessory.AccessibilityChildrenInNavigationOrder
-P:AppKit.NSSliderAccessory.AccessibilityClearButton
-P:AppKit.NSSliderAccessory.AccessibilityCloseButton
-P:AppKit.NSSliderAccessory.AccessibilityColumnCount
-P:AppKit.NSSliderAccessory.AccessibilityColumnHeaderUIElements
-P:AppKit.NSSliderAccessory.AccessibilityColumnIndexRange
-P:AppKit.NSSliderAccessory.AccessibilityColumns
-P:AppKit.NSSliderAccessory.AccessibilityColumnTitles
-P:AppKit.NSSliderAccessory.AccessibilityContents
-P:AppKit.NSSliderAccessory.AccessibilityCriticalValue
-P:AppKit.NSSliderAccessory.AccessibilityCustomActions
-P:AppKit.NSSliderAccessory.AccessibilityCustomRotors
-P:AppKit.NSSliderAccessory.AccessibilityDecrementButton
-P:AppKit.NSSliderAccessory.AccessibilityDefaultButton
P:AppKit.NSSliderAccessory.AccessibilityDisclosed
-P:AppKit.NSSliderAccessory.AccessibilityDisclosedByRow
-P:AppKit.NSSliderAccessory.AccessibilityDisclosedRows
-P:AppKit.NSSliderAccessory.AccessibilityDisclosureLevel
-P:AppKit.NSSliderAccessory.AccessibilityDocument
P:AppKit.NSSliderAccessory.AccessibilityEdited
P:AppKit.NSSliderAccessory.AccessibilityElement
P:AppKit.NSSliderAccessory.AccessibilityEnabled
P:AppKit.NSSliderAccessory.AccessibilityExpanded
-P:AppKit.NSSliderAccessory.AccessibilityExtrasMenuBar
-P:AppKit.NSSliderAccessory.AccessibilityFilename
-P:AppKit.NSSliderAccessory.AccessibilityFocused
-P:AppKit.NSSliderAccessory.AccessibilityFocusedWindow
-P:AppKit.NSSliderAccessory.AccessibilityFrame
P:AppKit.NSSliderAccessory.AccessibilityFrontmost
-P:AppKit.NSSliderAccessory.AccessibilityFullScreenButton
-P:AppKit.NSSliderAccessory.AccessibilityGrowArea
-P:AppKit.NSSliderAccessory.AccessibilityHandles
-P:AppKit.NSSliderAccessory.AccessibilityHeader
-P:AppKit.NSSliderAccessory.AccessibilityHelp
P:AppKit.NSSliderAccessory.AccessibilityHidden
-P:AppKit.NSSliderAccessory.AccessibilityHorizontalScrollBar
-P:AppKit.NSSliderAccessory.AccessibilityHorizontalUnitDescription
-P:AppKit.NSSliderAccessory.AccessibilityHorizontalUnits
-P:AppKit.NSSliderAccessory.AccessibilityIdentifier
-P:AppKit.NSSliderAccessory.AccessibilityIncrementButton
-P:AppKit.NSSliderAccessory.AccessibilityIndex
-P:AppKit.NSSliderAccessory.AccessibilityInsertionPointLineNumber
-P:AppKit.NSSliderAccessory.AccessibilityLabel
-P:AppKit.NSSliderAccessory.AccessibilityLabelUIElements
-P:AppKit.NSSliderAccessory.AccessibilityLabelValue
-P:AppKit.NSSliderAccessory.AccessibilityLinkedUIElements
P:AppKit.NSSliderAccessory.AccessibilityMain
-P:AppKit.NSSliderAccessory.AccessibilityMainWindow
-P:AppKit.NSSliderAccessory.AccessibilityMarkerGroupUIElement
-P:AppKit.NSSliderAccessory.AccessibilityMarkerTypeDescription
-P:AppKit.NSSliderAccessory.AccessibilityMarkerUIElements
-P:AppKit.NSSliderAccessory.AccessibilityMarkerValues
-P:AppKit.NSSliderAccessory.AccessibilityMaxValue
-P:AppKit.NSSliderAccessory.AccessibilityMenuBar
-P:AppKit.NSSliderAccessory.AccessibilityMinimizeButton
P:AppKit.NSSliderAccessory.AccessibilityMinimized
-P:AppKit.NSSliderAccessory.AccessibilityMinValue
P:AppKit.NSSliderAccessory.AccessibilityModal
-P:AppKit.NSSliderAccessory.AccessibilityNextContents
-P:AppKit.NSSliderAccessory.AccessibilityNumberOfCharacters
P:AppKit.NSSliderAccessory.AccessibilityOrderedByRow
-P:AppKit.NSSliderAccessory.AccessibilityOrientation
-P:AppKit.NSSliderAccessory.AccessibilityOverflowButton
-P:AppKit.NSSliderAccessory.AccessibilityParent
-P:AppKit.NSSliderAccessory.AccessibilityPlaceholderValue
-P:AppKit.NSSliderAccessory.AccessibilityPreviousContents
P:AppKit.NSSliderAccessory.AccessibilityProtectedContent
-P:AppKit.NSSliderAccessory.AccessibilityProxy
P:AppKit.NSSliderAccessory.AccessibilityRequired
-P:AppKit.NSSliderAccessory.AccessibilityRole
-P:AppKit.NSSliderAccessory.AccessibilityRoleDescription
-P:AppKit.NSSliderAccessory.AccessibilityRowCount
-P:AppKit.NSSliderAccessory.AccessibilityRowHeaderUIElements
-P:AppKit.NSSliderAccessory.AccessibilityRowIndexRange
-P:AppKit.NSSliderAccessory.AccessibilityRows
-P:AppKit.NSSliderAccessory.AccessibilityRulerMarkerType
-P:AppKit.NSSliderAccessory.AccessibilitySearchButton
-P:AppKit.NSSliderAccessory.AccessibilitySearchMenu
P:AppKit.NSSliderAccessory.AccessibilitySelected
-P:AppKit.NSSliderAccessory.AccessibilitySelectedCells
-P:AppKit.NSSliderAccessory.AccessibilitySelectedChildren
-P:AppKit.NSSliderAccessory.AccessibilitySelectedColumns
-P:AppKit.NSSliderAccessory.AccessibilitySelectedRows
-P:AppKit.NSSliderAccessory.AccessibilitySelectedText
-P:AppKit.NSSliderAccessory.AccessibilitySelectedTextRange
-P:AppKit.NSSliderAccessory.AccessibilitySelectedTextRanges
-P:AppKit.NSSliderAccessory.AccessibilityServesAsTitleForUIElements
-P:AppKit.NSSliderAccessory.AccessibilitySharedCharacterRange
-P:AppKit.NSSliderAccessory.AccessibilitySharedFocusElements
-P:AppKit.NSSliderAccessory.AccessibilitySharedTextUIElements
-P:AppKit.NSSliderAccessory.AccessibilityShownMenu
-P:AppKit.NSSliderAccessory.AccessibilitySortDirection
-P:AppKit.NSSliderAccessory.AccessibilitySplitters
-P:AppKit.NSSliderAccessory.AccessibilitySubrole
-P:AppKit.NSSliderAccessory.AccessibilityTabs
-P:AppKit.NSSliderAccessory.AccessibilityTitle
-P:AppKit.NSSliderAccessory.AccessibilityTitleUIElement
-P:AppKit.NSSliderAccessory.AccessibilityToolbarButton
-P:AppKit.NSSliderAccessory.AccessibilityTopLevelUIElement
-P:AppKit.NSSliderAccessory.AccessibilityUnitDescription
-P:AppKit.NSSliderAccessory.AccessibilityUnits
-P:AppKit.NSSliderAccessory.AccessibilityUrl
-P:AppKit.NSSliderAccessory.AccessibilityUserInputLabels
-P:AppKit.NSSliderAccessory.AccessibilityValue
-P:AppKit.NSSliderAccessory.AccessibilityValueDescription
-P:AppKit.NSSliderAccessory.AccessibilityVerticalScrollBar
-P:AppKit.NSSliderAccessory.AccessibilityVerticalUnitDescription
-P:AppKit.NSSliderAccessory.AccessibilityVerticalUnits
-P:AppKit.NSSliderAccessory.AccessibilityVisibleCells
-P:AppKit.NSSliderAccessory.AccessibilityVisibleCharacterRange
-P:AppKit.NSSliderAccessory.AccessibilityVisibleChildren
-P:AppKit.NSSliderAccessory.AccessibilityVisibleColumns
-P:AppKit.NSSliderAccessory.AccessibilityVisibleRows
-P:AppKit.NSSliderAccessory.AccessibilityWarningValue
-P:AppKit.NSSliderAccessory.AccessibilityWindow
-P:AppKit.NSSliderAccessory.AccessibilityWindows
-P:AppKit.NSSliderAccessory.AccessibilityZoomButton
P:AppKit.NSSliderAccessory.AnnouncementRequestedNotification
P:AppKit.NSSliderAccessory.ApplicationActivatedNotification
P:AppKit.NSSliderAccessory.ApplicationDeactivatedNotification
P:AppKit.NSSliderAccessory.ApplicationHiddenNotification
P:AppKit.NSSliderAccessory.ApplicationShownNotification
-P:AppKit.NSSliderAccessory.Behavior
P:AppKit.NSSliderAccessory.CreatedNotification
P:AppKit.NSSliderAccessory.DefaultWidth
P:AppKit.NSSliderAccessory.DrawerCreatedNotification
@@ -68341,63 +47444,14 @@ P:AppKit.NSSliderAccessory.WindowDeminiaturizedNotification
P:AppKit.NSSliderAccessory.WindowMiniaturizedNotification
P:AppKit.NSSliderAccessory.WindowMovedNotification
P:AppKit.NSSliderAccessory.WindowResizedNotification
-P:AppKit.NSSliderAccessoryBehavior.AutomaticBehavior
-P:AppKit.NSSliderAccessoryBehavior.ValueResetBehavior
-P:AppKit.NSSliderAccessoryBehavior.ValueStepBehavior
-P:AppKit.NSSliderCell.AllowsTickMarkValuesOnly
-P:AppKit.NSSliderCell.AltIncrementValue
-P:AppKit.NSSliderCell.IsVertical
-P:AppKit.NSSliderCell.KnobThickness
-P:AppKit.NSSliderCell.MaxValue
-P:AppKit.NSSliderCell.MinValue
-P:AppKit.NSSliderCell.SliderType
-P:AppKit.NSSliderCell.TickMarkPosition
-P:AppKit.NSSliderCell.TickMarks
-P:AppKit.NSSliderCell.Title
-P:AppKit.NSSliderCell.TitleCell
-P:AppKit.NSSliderCell.TitleColor
-P:AppKit.NSSliderCell.TitleFont
-P:AppKit.NSSliderCell.TrackRect
-P:AppKit.NSSliderTouchBarItem.Action
-P:AppKit.NSSliderTouchBarItem.CustomizationLabel
-P:AppKit.NSSliderTouchBarItem.DoubleValue
-P:AppKit.NSSliderTouchBarItem.Label
-P:AppKit.NSSliderTouchBarItem.MaximumSliderWidth
-P:AppKit.NSSliderTouchBarItem.MaximumValueAccessory
-P:AppKit.NSSliderTouchBarItem.MinimumSliderWidth
-P:AppKit.NSSliderTouchBarItem.MinimumValueAccessory
-P:AppKit.NSSliderTouchBarItem.Slider
-P:AppKit.NSSliderTouchBarItem.Target
-P:AppKit.NSSliderTouchBarItem.ValueAccessoryWidth
-P:AppKit.NSSliderTouchBarItem.View
-P:AppKit.NSSound.ChannelMapping
-P:AppKit.NSSound.CurrentTime
P:AppKit.NSSound.Delegate
-P:AppKit.NSSound.Loops
P:AppKit.NSSound.Name
-P:AppKit.NSSound.PlaybackDeviceID
-P:AppKit.NSSound.Volume
-P:AppKit.NSSound.WeakDelegate
P:AppKit.NSSoundFinishedEventArgs.Finished
-P:AppKit.NSSpeechRecognizer.BlocksOtherRecognizers
-P:AppKit.NSSpeechRecognizer.Commands
P:AppKit.NSSpeechRecognizer.Delegate
-P:AppKit.NSSpeechRecognizer.DisplayedCommandsTitle
-P:AppKit.NSSpeechRecognizer.ListensInForegroundOnly
-P:AppKit.NSSpeechRecognizer.WeakDelegate
-P:AppKit.NSSpeechSynthesizer.AvailableVoices
-P:AppKit.NSSpeechSynthesizer.DefaultVoice
P:AppKit.NSSpeechSynthesizer.Delegate
P:AppKit.NSSpeechSynthesizer.IsAnyApplicationSpeaking
P:AppKit.NSSpeechSynthesizer.IsSpeaking
-P:AppKit.NSSpeechSynthesizer.Rate
-P:AppKit.NSSpeechSynthesizer.UsesFeedbackWindow
P:AppKit.NSSpeechSynthesizer.Voice
-P:AppKit.NSSpeechSynthesizer.Volume
-P:AppKit.NSSpeechSynthesizer.WeakDelegate
-P:AppKit.NSSpellChecker.AccessoryView
-P:AppKit.NSSpellChecker.AutomaticallyIdentifiesLanguages
-P:AppKit.NSSpellChecker.AvailableLanguages
P:AppKit.NSSpellChecker.DidChangeAutomaticCapitalizationNotification
P:AppKit.NSSpellChecker.DidChangeAutomaticInlinePredictionNotification
P:AppKit.NSSpellChecker.DidChangeAutomaticPeriodSubstitutionNotification
@@ -68411,11 +47465,6 @@ P:AppKit.NSSpellChecker.IsAutomaticSpellingCorrectionEnabled
P:AppKit.NSSpellChecker.IsAutomaticTextCompletionEnabled
P:AppKit.NSSpellChecker.IsAutomaticTextReplacementEnabled
P:AppKit.NSSpellChecker.Language
-P:AppKit.NSSpellChecker.SharedSpellChecker
-P:AppKit.NSSpellChecker.SharedSpellCheckerExists
-P:AppKit.NSSpellChecker.SpellingPanel
-P:AppKit.NSSpellChecker.SubstitutionsPanel
-P:AppKit.NSSpellChecker.SubstitutionsPanelAccessoryViewController
P:AppKit.NSSpellChecker.TextCheckingDocumentAuthorKey
P:AppKit.NSSpellChecker.TextCheckingDocumentTitleKey
P:AppKit.NSSpellChecker.TextCheckingDocumentURLKey
@@ -68427,103 +47476,18 @@ P:AppKit.NSSpellChecker.TextCheckingReferenceTimeZoneKey
P:AppKit.NSSpellChecker.TextCheckingRegularExpressionsKey
P:AppKit.NSSpellChecker.TextCheckingReplacementsKey
P:AppKit.NSSpellChecker.TextCheckingSelectedRangeKey
-P:AppKit.NSSpellChecker.UniqueSpellDocumentTag
-P:AppKit.NSSpellChecker.UserPreferredLanguages
-P:AppKit.NSSpellChecker.UserReplacementsDictionary
P:AppKit.NSSpellCheckerCandidates.Arg1
P:AppKit.NSSpellCheckerCandidates.Arg2
-P:AppKit.NSSplitView.ArrangedSubviews
-P:AppKit.NSSplitView.ArrangesAllSubviews
-P:AppKit.NSSplitView.AutosaveName
P:AppKit.NSSplitView.Delegate
-P:AppKit.NSSplitView.DividerColor
-P:AppKit.NSSplitView.DividerStyle
-P:AppKit.NSSplitView.DividerThickness
-P:AppKit.NSSplitView.IsVertical
P:AppKit.NSSplitView.NSSplitViewDidResizeSubviewsNotification
P:AppKit.NSSplitView.NSSplitViewWillResizeSubviewsNotification
-P:AppKit.NSSplitView.WeakDelegate
P:AppKit.NSSplitViewController.AutomaticDimension
-P:AppKit.NSSplitViewController.MinimumThicknessForInlineSidebars
-P:AppKit.NSSplitViewController.SplitView
-P:AppKit.NSSplitViewController.SplitViewItems
-P:AppKit.NSSplitViewItem.AllowsFullHeightLayout
-P:AppKit.NSSplitViewItem.Animations
-P:AppKit.NSSplitViewItem.Animator
-P:AppKit.NSSplitViewItem.AutomaticMaximumThickness
-P:AppKit.NSSplitViewItem.Behavior
-P:AppKit.NSSplitViewItem.CanCollapse
-P:AppKit.NSSplitViewItem.CanCollapseFromWindowResize
P:AppKit.NSSplitViewItem.Collapsed
-P:AppKit.NSSplitViewItem.HoldingPriority
-P:AppKit.NSSplitViewItem.MaximumThickness
-P:AppKit.NSSplitViewItem.MinimumThickness
-P:AppKit.NSSplitViewItem.PreferredThicknessFraction
P:AppKit.NSSplitViewItem.SpringLoaded
-P:AppKit.NSSplitViewItem.TitlebarSeparatorStyle
P:AppKit.NSSplitViewItem.UnspecifiedDimension
-P:AppKit.NSSplitViewItem.ViewController
-P:AppKit.NSStackView.Alignment
-P:AppKit.NSStackView.ArrangedSubviews
P:AppKit.NSStackView.Delegate
-P:AppKit.NSStackView.DetachedViews
-P:AppKit.NSStackView.DetachesHiddenViews
-P:AppKit.NSStackView.Distribution
-P:AppKit.NSStackView.EdgeInsets
-P:AppKit.NSStackView.HasEqualSpacing
-P:AppKit.NSStackView.Orientation
-P:AppKit.NSStackView.Spacing
-P:AppKit.NSStackView.Views
-P:AppKit.NSStackView.WeakDelegate
-P:AppKit.NSStatusBar.IsVertical
-P:AppKit.NSStatusBar.SystemStatusBar
-P:AppKit.NSStatusBar.Thickness
-P:AppKit.NSStatusBarButton.AppearsDisabled
-P:AppKit.NSStatusItem.Action
-P:AppKit.NSStatusItem.AlternateImage
-P:AppKit.NSStatusItem.AttributedTitle
-P:AppKit.NSStatusItem.AutosaveName
-P:AppKit.NSStatusItem.Behavior
-P:AppKit.NSStatusItem.Button
-P:AppKit.NSStatusItem.DoubleAction
P:AppKit.NSStatusItem.Enabled
-P:AppKit.NSStatusItem.HighlightMode
-P:AppKit.NSStatusItem.Image
-P:AppKit.NSStatusItem.Length
-P:AppKit.NSStatusItem.Menu
-P:AppKit.NSStatusItem.StatusBar
-P:AppKit.NSStatusItem.Target
-P:AppKit.NSStatusItem.Title
-P:AppKit.NSStatusItem.ToolTip
-P:AppKit.NSStatusItem.View
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.NSStepper.Autorepeat
-P:AppKit.NSStepper.Increment
-P:AppKit.NSStepper.MaxValue
-P:AppKit.NSStepper.MinValue
-P:AppKit.NSStepper.ValueWraps
-P:AppKit.NSStepperCell.Autorepeat
-P:AppKit.NSStepperCell.Increment
-P:AppKit.NSStepperCell.MaxValue
-P:AppKit.NSStepperCell.MinValue
-P:AppKit.NSStepperCell.ValueWraps
-P:AppKit.NSStepperTouchBarItem.Action
-P:AppKit.NSStepperTouchBarItem.CustomizationLabel
-P:AppKit.NSStepperTouchBarItem.Increment
-P:AppKit.NSStepperTouchBarItem.MaxValue
-P:AppKit.NSStepperTouchBarItem.MinValue
-P:AppKit.NSStepperTouchBarItem.Target
-P:AppKit.NSStepperTouchBarItem.Value
-P:AppKit.NSStoryboard.MainStoryboard
-P:AppKit.NSStoryboardSegue.DestinationController
-P:AppKit.NSStoryboardSegue.Identifier
-P:AppKit.NSStoryboardSegue.SourceController
P:AppKit.NSStringAttributeKey.AdaptiveImageGlyph
P:AppKit.NSStringAttributeKey.Attachment
P:AppKit.NSStringAttributeKey.BackgroundColor
@@ -68587,101 +47551,20 @@ P:AppKit.NSStringAttributes.UnderlineColor
P:AppKit.NSStringAttributes.UnderlineStyle
P:AppKit.NSStringAttributes.VerticalGlyphForm
P:AppKit.NSStringAttributes.WritingDirection
-P:AppKit.NSStringDrawingContext.ActualScaleFactor
-P:AppKit.NSStringDrawingContext.MinimumScaleFactor
-P:AppKit.NSStringDrawingContext.TotalBounds
-P:AppKit.NSSwitch.AccessibilityFocused
-P:AppKit.NSSwitch.AccessibilityFrame
-P:AppKit.NSSwitch.AccessibilityIdentifier
-P:AppKit.NSSwitch.AccessibilityLabel
-P:AppKit.NSSwitch.AccessibilityParent
-P:AppKit.NSSwitch.AccessibilityValue
-P:AppKit.NSSwitch.State
-P:AppKit.NSTableCellView.BackgroundStyle
-P:AppKit.NSTableCellView.DraggingImageComponents
-P:AppKit.NSTableCellView.ImageView
-P:AppKit.NSTableCellView.ObjectValue
-P:AppKit.NSTableCellView.RowSizeStyle
-P:AppKit.NSTableCellView.TextField
-P:AppKit.NSTableColumn.DataCell
P:AppKit.NSTableColumn.Editable
-P:AppKit.NSTableColumn.HeaderCell
-P:AppKit.NSTableColumn.HeaderToolTip
P:AppKit.NSTableColumn.Hidden
-P:AppKit.NSTableColumn.Identifier
-P:AppKit.NSTableColumn.MaxWidth
-P:AppKit.NSTableColumn.MinWidth
-P:AppKit.NSTableColumn.ResizingMask
-P:AppKit.NSTableColumn.SortDescriptorPrototype
-P:AppKit.NSTableColumn.TableView
-P:AppKit.NSTableColumn.Title
-P:AppKit.NSTableColumn.Width
-P:AppKit.NSTableHeaderView.DraggedColumn
-P:AppKit.NSTableHeaderView.DraggedDistance
-P:AppKit.NSTableHeaderView.ResizedColumn
-P:AppKit.NSTableHeaderView.TableView
-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.BackgroundColor
-P:AppKit.NSTableRowView.DraggingDestinationFeedbackStyle
P:AppKit.NSTableRowView.Emphasized
P:AppKit.NSTableRowView.Floating
P:AppKit.NSTableRowView.GroupRowStyle
-P:AppKit.NSTableRowView.IndentationForDropOperation
-P:AppKit.NSTableRowView.InteriorBackgroundStyle
P:AppKit.NSTableRowView.NextRowSelected
-P:AppKit.NSTableRowView.NumberOfColumns
P:AppKit.NSTableRowView.PreviousRowSelected
P:AppKit.NSTableRowView.Selected
-P:AppKit.NSTableRowView.SelectionHighlightStyle
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.AllowsColumnReordering
-P:AppKit.NSTableView.AllowsColumnResizing
-P:AppKit.NSTableView.AllowsColumnSelection
-P:AppKit.NSTableView.AllowsEmptySelection
-P:AppKit.NSTableView.AllowsMultipleSelection
-P:AppKit.NSTableView.AllowsTypeSelect
-P:AppKit.NSTableView.AutosaveName
-P:AppKit.NSTableView.AutosaveTableColumns
-P:AppKit.NSTableView.BackgroundColor
-P:AppKit.NSTableView.ClickedColumn
-P:AppKit.NSTableView.ClickedRow
-P:AppKit.NSTableView.ColumnAutoresizingStyle
-P:AppKit.NSTableView.ColumnCount
P:AppKit.NSTableView.ColumnDidMoveNotification
P:AppKit.NSTableView.ColumnDidResizeNotification
P:AppKit.NSTableView.CoreGetRowView
-P:AppKit.NSTableView.CornerView
P:AppKit.NSTableView.DataSource
P:AppKit.NSTableView.Delegate
-P:AppKit.NSTableView.DoubleAction
-P:AppKit.NSTableView.DraggingDestinationFeedbackStyle
-P:AppKit.NSTableView.EditedColumn
-P:AppKit.NSTableView.EditedRow
-P:AppKit.NSTableView.EffectiveRowSizeStyle
-P:AppKit.NSTableView.EffectiveStyle
-P:AppKit.NSTableView.FloatsGroupRows
-P:AppKit.NSTableView.FocusedColumn
P:AppKit.NSTableView.GetDataCell
P:AppKit.NSTableView.GetNextTypeSelectMatch
P:AppKit.NSTableView.GetRowHeight
@@ -68690,29 +47573,10 @@ P:AppKit.NSTableView.GetSelectString
P:AppKit.NSTableView.GetSizeToFitColumnWidth
P:AppKit.NSTableView.GetToolTip
P:AppKit.NSTableView.GetViewForItem
-P:AppKit.NSTableView.GridColor
-P:AppKit.NSTableView.GridStyleMask
-P:AppKit.NSTableView.HeaderView
-P:AppKit.NSTableView.HiddenRowIndexes
-P:AppKit.NSTableView.HighlightedTableColumn
-P:AppKit.NSTableView.IgnoreModifierKeysWhileDragging
-P:AppKit.NSTableView.IntercellSpacing
P:AppKit.NSTableView.IsGroupRow
-P:AppKit.NSTableView.RegisteredNibsByIdentifier
P:AppKit.NSTableView.RowActions
-P:AppKit.NSTableView.RowActionsVisible
-P:AppKit.NSTableView.RowCount
-P:AppKit.NSTableView.RowHeight
-P:AppKit.NSTableView.RowSizeStyle
P:AppKit.NSTableView.RowViewKey
-P:AppKit.NSTableView.SelectedColumn
-P:AppKit.NSTableView.SelectedColumns
-P:AppKit.NSTableView.SelectedColumnsCount
-P:AppKit.NSTableView.SelectedRow
-P:AppKit.NSTableView.SelectedRowCount
-P:AppKit.NSTableView.SelectedRows
P:AppKit.NSTableView.SelectionDidChangeNotification
-P:AppKit.NSTableView.SelectionHighlightStyle
P:AppKit.NSTableView.SelectionIsChangingNotification
P:AppKit.NSTableView.SelectionShouldChange
P:AppKit.NSTableView.ShouldEditTableColumn
@@ -68722,119 +47586,34 @@ P:AppKit.NSTableView.ShouldSelectTableColumn
P:AppKit.NSTableView.ShouldShowCellExpansion
P:AppKit.NSTableView.ShouldTrackCell
P:AppKit.NSTableView.ShouldTypeSelect
-P:AppKit.NSTableView.SortDescriptors
P:AppKit.NSTableView.Source
-P:AppKit.NSTableView.Style
P:AppKit.NSTableView.UserCanChangeVisibility
-P:AppKit.NSTableView.UserInterfaceLayoutDirection
-P:AppKit.NSTableView.UsesAlternatingRowBackgroundColors
-P:AppKit.NSTableView.UsesAutomaticRowHeights
-P:AppKit.NSTableView.UsesStaticContents
-P:AppKit.NSTableView.VerticalMotionCanBeginDrag
-P:AppKit.NSTableView.WeakDataSource
-P:AppKit.NSTableView.WeakDelegate
P:AppKit.NSTableViewCellEventArgs.Cell
P:AppKit.NSTableViewCellEventArgs.Row
P:AppKit.NSTableViewCellEventArgs.TableColumn
-P:AppKit.NSTableViewDiffableDataSource`2.DefaultRowAnimation
-P:AppKit.NSTableViewDiffableDataSource`2.RowViewProvider
-P:AppKit.NSTableViewDiffableDataSource`2.SectionHeaderViewProvider
-P:AppKit.NSTableViewRowAction.BackgroundColor
-P:AppKit.NSTableViewRowAction.Image
-P:AppKit.NSTableViewRowAction.Style
-P:AppKit.NSTableViewRowAction.Title
P:AppKit.NSTableViewRowEventArgs.Row
P:AppKit.NSTableViewRowEventArgs.RowView
P:AppKit.NSTableViewTableEventArgs.TableColumn
P:AppKit.NSTableViewUserCanChangeColumnsVisibilityEventArgs.Columns
-P:AppKit.NSTabView.AllowsTruncatedLabels
-P:AppKit.NSTabView.BorderType
-P:AppKit.NSTabView.ContentRect
-P:AppKit.NSTabView.ControlSize
-P:AppKit.NSTabView.ControlTint
-P:AppKit.NSTabView.Count
P:AppKit.NSTabView.Delegate
-P:AppKit.NSTabView.DrawsBackground
-P:AppKit.NSTabView.Font
-P:AppKit.NSTabView.Items
-P:AppKit.NSTabView.MinimumSize
-P:AppKit.NSTabView.Selected
P:AppKit.NSTabView.ShouldSelectTabViewItem
-P:AppKit.NSTabView.TabPosition
-P:AppKit.NSTabView.TabViewType
-P:AppKit.NSTabView.WeakDelegate
-P:AppKit.NSTabViewController.CanPropagateSelectedChildViewControllerTitle
-P:AppKit.NSTabViewController.SelectedTabViewItemIndex
-P:AppKit.NSTabViewController.TabStyle
-P:AppKit.NSTabViewController.TabView
-P:AppKit.NSTabViewController.TabViewItems
-P:AppKit.NSTabViewController.TransitionOptions
-P:AppKit.NSTabViewItem.Color
-P:AppKit.NSTabViewItem.Identifier
-P:AppKit.NSTabViewItem.Image
-P:AppKit.NSTabViewItem.InitialFirstResponder
-P:AppKit.NSTabViewItem.Label
-P:AppKit.NSTabViewItem.TabState
-P:AppKit.NSTabViewItem.TabView
-P:AppKit.NSTabViewItem.ToolTip
-P:AppKit.NSTabViewItem.View
-P:AppKit.NSTabViewItem.ViewController
P:AppKit.NSTabViewItemEventArgs.Item
-P:AppKit.NSText.Alignment
-P:AppKit.NSText.BackgroundColor
-P:AppKit.NSText.BaseWritingDirection
P:AppKit.NSText.Delegate
P:AppKit.NSText.DidBeginEditingNotification
P:AppKit.NSText.DidChangeNotification
P:AppKit.NSText.DidEndEditingNotification
-P:AppKit.NSText.DrawsBackground
P:AppKit.NSText.Editable
P:AppKit.NSText.FieldEditor
-P:AppKit.NSText.Font
P:AppKit.NSText.HorizontallyResizable
-P:AppKit.NSText.ImportsGraphics
P:AppKit.NSText.IsRulerVisible
-P:AppKit.NSText.MaxSize
-P:AppKit.NSText.MinSize
P:AppKit.NSText.MovementUserInfoKey
P:AppKit.NSText.RichText
P:AppKit.NSText.Selectable
-P:AppKit.NSText.SelectedRange
-P:AppKit.NSText.TextColor
P:AppKit.NSText.TextShouldBeginEditing
P:AppKit.NSText.TextShouldEndEditing
-P:AppKit.NSText.UsesFontPanel
-P:AppKit.NSText.Value
P:AppKit.NSText.VerticallyResizable
-P:AppKit.NSText.WeakDelegate
-P:AppKit.NSTextAlternatives.AlternativeStrings
-P:AppKit.NSTextAlternatives.PrimaryString
P:AppKit.NSTextAlternatives.SelectedAlternativeStringNotification
P:AppKit.NSTextAlternativesSelectedAlternativeStringEventArgs.AlternativeString
-P:AppKit.NSTextAttachment.AllowsTextAttachmentView
-P:AppKit.NSTextAttachment.AttachmentCell
-P:AppKit.NSTextAttachment.Bounds
-P:AppKit.NSTextAttachment.Contents
-P:AppKit.NSTextAttachment.FileType
-P:AppKit.NSTextAttachment.FileWrapper
-P:AppKit.NSTextAttachment.Image
-P:AppKit.NSTextAttachment.LineLayoutPadding
-P:AppKit.NSTextAttachment.UsesTextAttachmentView
-P:AppKit.NSTextAttachmentCell.Attachment
-P:AppKit.NSTextAttachmentCell.CellBaselineOffset
-P:AppKit.NSTextAttachmentCell.CellSize
-P:AppKit.NSTextAttachmentViewProvider.Location
-P:AppKit.NSTextAttachmentViewProvider.TextAttachment
-P:AppKit.NSTextAttachmentViewProvider.TextLayoutManager
-P:AppKit.NSTextAttachmentViewProvider.TracksTextAttachmentViewBounds
-P:AppKit.NSTextAttachmentViewProvider.View
-P:AppKit.NSTextBlock.BackgroundColor
-P:AppKit.NSTextBlock.ContentWidth
-P:AppKit.NSTextBlock.ContentWidthValueType
-P:AppKit.NSTextBlock.VerticalAlignment
-P:AppKit.NSTextCheckingController.Client
-P:AppKit.NSTextCheckingController.SpellCheckerDocumentTag
-P:AppKit.NSTextCheckingController.ValidAnnotations
P:AppKit.NSTextCheckingOptions.DocumentAuthor
P:AppKit.NSTextCheckingOptions.DocumentTitle
P:AppKit.NSTextCheckingOptions.DocumentUrl
@@ -68843,215 +47622,42 @@ P:AppKit.NSTextCheckingOptions.Quotes
P:AppKit.NSTextCheckingOptions.ReferenceDate
P:AppKit.NSTextCheckingOptions.ReferenceTimeZone
P:AppKit.NSTextCheckingOptions.Replacements
-P:AppKit.NSTextContainer.ContainerSize
-P:AppKit.NSTextContainer.ExclusionPaths
-P:AppKit.NSTextContainer.HeightTracksTextView
P:AppKit.NSTextContainer.IsSimpleRectangularTextContainer
-P:AppKit.NSTextContainer.LayoutManager
-P:AppKit.NSTextContainer.LayoutOrientation
-P:AppKit.NSTextContainer.LineBreakMode
-P:AppKit.NSTextContainer.LineFragmentPadding
-P:AppKit.NSTextContainer.MaximumNumberOfLines
-P:AppKit.NSTextContainer.Size
-P:AppKit.NSTextContainer.TextLayoutManager
-P:AppKit.NSTextContainer.TextView
-P:AppKit.NSTextContainer.WidthTracksTextView
-P:AppKit.NSTextContentManager.AutomaticallySynchronizesTextLayoutManagers
-P:AppKit.NSTextContentManager.AutomaticallySynchronizesToBackingStore
P:AppKit.NSTextContentManager.Delegate
-P:AppKit.NSTextContentManager.DocumentRange
-P:AppKit.NSTextContentManager.HasEditingTransaction
-P:AppKit.NSTextContentManager.PrimaryTextLayoutManager
P:AppKit.NSTextContentManager.StorageUnsupportedAttributeAddedNotification
-P:AppKit.NSTextContentManager.TextLayoutManagers
-P:AppKit.NSTextContentManager.WeakDelegate
-P:AppKit.NSTextContentStorage.AttributedString
P:AppKit.NSTextContentStorage.Delegate
-P:AppKit.NSTextContentStorage.TextStorage
-P:AppKit.NSTextContentStorage.WeakDelegate
P:AppKit.NSTextDidEndEditingEventArgs.Movement
-P:AppKit.NSTextElement.ChildElements
-P:AppKit.NSTextElement.ElementRange
-P:AppKit.NSTextElement.IsRepresentedElement
-P:AppKit.NSTextElement.ParentElement
-P:AppKit.NSTextElement.TextContentManager
-P:AppKit.NSTextField.AccessibilityFocused
-P:AppKit.NSTextField.AccessibilityFrame
-P:AppKit.NSTextField.AccessibilityIdentifier
-P:AppKit.NSTextField.AccessibilityParent
-P:AppKit.NSTextField.AccessibilityValue
-P:AppKit.NSTextField.AccessibilityVisibleCharacterRange
-P:AppKit.NSTextField.AllowsDefaultTighteningForTruncation
-P:AppKit.NSTextField.AllowsEditingTextAttributes
-P:AppKit.NSTextField.AllowsWritingTools
-P:AppKit.NSTextField.BackgroundColor
-P:AppKit.NSTextField.Bezeled
-P:AppKit.NSTextField.BezelStyle
-P:AppKit.NSTextField.Bordered
P:AppKit.NSTextField.Cell
P:AppKit.NSTextField.ContentType
P:AppKit.NSTextField.Delegate
P:AppKit.NSTextField.DidFailToFormatString
P:AppKit.NSTextField.DoCommandBySelector
-P:AppKit.NSTextField.DrawsBackground
P:AppKit.NSTextField.Editable
P:AppKit.NSTextField.GetCandidates
P:AppKit.NSTextField.GetCompletions
P:AppKit.NSTextField.GetTextCheckingResults
-P:AppKit.NSTextField.ImportsGraphics
P:AppKit.NSTextField.IsValidObject
-P:AppKit.NSTextField.LineBreakStrategy
-P:AppKit.NSTextField.MaximumNumberOfLines
-P:AppKit.NSTextField.PlaceholderAttributedString
-P:AppKit.NSTextField.PlaceholderString
-P:AppKit.NSTextField.PreferredMaxLayoutWidth
P:AppKit.NSTextField.Selectable
P:AppKit.NSTextField.ShouldSelectCandidate
-P:AppKit.NSTextField.TextColor
P:AppKit.NSTextField.TextShouldBeginEditing
P:AppKit.NSTextField.TextShouldEndEditing
-P:AppKit.NSTextField.WeakDelegate
-P:AppKit.NSTextFieldCell.AllowedInputSourceLocales
-P:AppKit.NSTextFieldCell.BackgroundColor
-P:AppKit.NSTextFieldCell.BezelStyle
-P:AppKit.NSTextFieldCell.DrawsBackground
-P:AppKit.NSTextFieldCell.PlaceholderAttributedString
-P:AppKit.NSTextFieldCell.PlaceholderString
-P:AppKit.NSTextFieldCell.TextColor
-P:AppKit.NSTextFieldCell.WantsNotificationForMarkedText
P:AppKit.NSTextFinder.Client
P:AppKit.NSTextFinder.FindBarContainer
-P:AppKit.NSTextFinder.FindIndicatorNeedsUpdate
-P:AppKit.NSTextFinder.IncrementalMatchRanges
P:AppKit.NSTextFinder.IncrementalSearchingEnabled
-P:AppKit.NSTextFinderBarContainer.ContentView
-P:AppKit.NSTextFinderBarContainer.FindBarView
P:AppKit.NSTextFinderBarContainer.FindBarVisible
-P:AppKit.NSTextInputClient.AttributedString
-P:AppKit.NSTextInputClient.DocumentVisibleRect
-P:AppKit.NSTextInputClient.HasMarkedText
-P:AppKit.NSTextInputClient.MarkedRange
-P:AppKit.NSTextInputClient.PreferredTextAccessoryPlacement
-P:AppKit.NSTextInputClient.SelectedRange
-P:AppKit.NSTextInputClient.SupportsAdaptiveImageGlyph
-P:AppKit.NSTextInputClient.UnionRectInVisibleSelectedRange
-P:AppKit.NSTextInputClient.ValidAttributesForMarkedText
-P:AppKit.NSTextInputClient.WindowLevel
-P:AppKit.NSTextInputContext.AcceptsGlyphInfo
-P:AppKit.NSTextInputContext.AllowedInputSourceLocales
-P:AppKit.NSTextInputContext.Client
-P:AppKit.NSTextInputContext.CurrentInputContext
-P:AppKit.NSTextInputContext.KeyboardInputSources
P:AppKit.NSTextInputContext.KeyboardSelectionDidChangeNotification
-P:AppKit.NSTextInputContext.SelectedKeyboardInputSource
-P:AppKit.NSTextInsertionIndicator.AutomaticModeOptions
-P:AppKit.NSTextInsertionIndicator.Color
-P:AppKit.NSTextInsertionIndicator.DisplayMode
-P:AppKit.NSTextInsertionIndicator.EffectsViewInserter
-P:AppKit.NSTextLayoutFragment.BottomMargin
-P:AppKit.NSTextLayoutFragment.LayoutFragmentFrame
-P:AppKit.NSTextLayoutFragment.LayoutQueue
-P:AppKit.NSTextLayoutFragment.LeadingPadding
-P:AppKit.NSTextLayoutFragment.RangeInElement
-P:AppKit.NSTextLayoutFragment.RenderingSurfaceBounds
-P:AppKit.NSTextLayoutFragment.State
-P:AppKit.NSTextLayoutFragment.TextAttachmentViewProviders
-P:AppKit.NSTextLayoutFragment.TextElement
-P:AppKit.NSTextLayoutFragment.TextLayoutManager
-P:AppKit.NSTextLayoutFragment.TextLineFragments
-P:AppKit.NSTextLayoutFragment.TopMargin
-P:AppKit.NSTextLayoutFragment.TrailingPadding
P:AppKit.NSTextLayoutManager.Delegate
-P:AppKit.NSTextLayoutManager.DocumentRange
-P:AppKit.NSTextLayoutManager.LayoutQueue
-P:AppKit.NSTextLayoutManager.LimitsLayoutForSuspiciousContents
-P:AppKit.NSTextLayoutManager.LinkRenderingAttributes
-P:AppKit.NSTextLayoutManager.RenderingAttributesValidator
-P:AppKit.NSTextLayoutManager.TextContainer
-P:AppKit.NSTextLayoutManager.TextContentManager
-P:AppKit.NSTextLayoutManager.TextSelectionNavigation
-P:AppKit.NSTextLayoutManager.TextSelections
-P:AppKit.NSTextLayoutManager.TextViewportLayoutController
-P:AppKit.NSTextLayoutManager.UsageBoundsForTextContainer
-P:AppKit.NSTextLayoutManager.UsesFontLeading
-P:AppKit.NSTextLayoutManager.UsesHyphenation
-P:AppKit.NSTextLayoutManager.WeakDelegate
-P:AppKit.NSTextLineFragment.AttributedString
-P:AppKit.NSTextLineFragment.CharacterRange
-P:AppKit.NSTextLineFragment.GlyphOrigin
-P:AppKit.NSTextLineFragment.TypographicBounds
P:AppKit.NSTextList.CustomMarkerFormat
-P:AppKit.NSTextList.ListOptions
-P:AppKit.NSTextList.MarkerFormat
P:AppKit.NSTextList.Ordered
-P:AppKit.NSTextList.StartingItemNumber
-P:AppKit.NSTextListElement.AttributedString
-P:AppKit.NSTextListElement.ChildElements
-P:AppKit.NSTextListElement.Contents
-P:AppKit.NSTextListElement.ParentElement
-P:AppKit.NSTextListElement.TextList
-P:AppKit.NSTextListElement.WeakMarkerAttributes
-P:AppKit.NSTextParagraph.AttributedString
-P:AppKit.NSTextParagraph.ParagraphContentRange
-P:AppKit.NSTextParagraph.ParagraphSeparatorRange
-P:AppKit.NSTextPreview.CandidateRects
-P:AppKit.NSTextPreview.PresentationFrame
-P:AppKit.NSTextPreview.PreviewImage
P:AppKit.NSTextRange.Empty
-P:AppKit.NSTextRange.EndLocation
-P:AppKit.NSTextRange.Location
-P:AppKit.NSTextSelection.Affinity
-P:AppKit.NSTextSelection.AnchorPositionOffset
-P:AppKit.NSTextSelection.Granularity
P:AppKit.NSTextSelection.Logical
-P:AppKit.NSTextSelection.SecondarySelectionLocation
-P:AppKit.NSTextSelection.TextRanges
P:AppKit.NSTextSelection.Transient
-P:AppKit.NSTextSelection.TypingAttributes
-P:AppKit.NSTextSelectionDataSource.DocumentRange
-P:AppKit.NSTextSelectionNavigation.AllowsNonContiguousRanges
-P:AppKit.NSTextSelectionNavigation.RotatesCoordinateSystemForLayoutOrientation
P:AppKit.NSTextSelectionNavigation.TextSelectionDataSource
-P:AppKit.NSTextSelectionNavigation.WeakTextSelectionDataSource
-P:AppKit.NSTextStorage.ChangeInLength
P:AppKit.NSTextStorage.Delegate
-P:AppKit.NSTextStorage.EditedMask
-P:AppKit.NSTextStorage.EditedRange
-P:AppKit.NSTextStorage.FixesAttributesLazily
-P:AppKit.NSTextStorage.LayoutManagers
-P:AppKit.NSTextStorage.TextStorageObserver
-P:AppKit.NSTextStorage.WeakDelegate
P:AppKit.NSTextStorageEventArgs.Delta
P:AppKit.NSTextStorageEventArgs.EditedMask
P:AppKit.NSTextStorageEventArgs.EditedRange
-P:AppKit.NSTextTab.Alignment
P:AppKit.NSTextTab.ColumnTerminatorsAttributeName
-P:AppKit.NSTextTab.Location
-P:AppKit.NSTextTab.Options
-P:AppKit.NSTextTab.TabStopType
-P:AppKit.NSTextTable.CollapsesBorders
-P:AppKit.NSTextTable.Columns
-P:AppKit.NSTextTable.HidesEmptyCells
-P:AppKit.NSTextTable.LayoutAlgorithm
-P:AppKit.NSTextTableBlock.ColumnSpan
-P:AppKit.NSTextTableBlock.RowSpan
-P:AppKit.NSTextTableBlock.StartingColumn
-P:AppKit.NSTextTableBlock.StartingRow
-P:AppKit.NSTextTableBlock.Table
-P:AppKit.NSTextView.AcceptsGlyphInfo
-P:AppKit.NSTextView.AccessibilityFocused
-P:AppKit.NSTextView.AccessibilityFrame
-P:AppKit.NSTextView.AccessibilityIdentifier
-P:AppKit.NSTextView.AccessibilityParent
-P:AppKit.NSTextView.AccessibilityValue
-P:AppKit.NSTextView.AccessibilityVisibleCharacterRange
-P:AppKit.NSTextView.AllowedInputSourceLocales
-P:AppKit.NSTextView.AllowedWritingToolsResultOptions
-P:AppKit.NSTextView.AllowsCharacterPickerTouchBarItem
-P:AppKit.NSTextView.AllowsDocumentBackgroundColorChange
-P:AppKit.NSTextView.AllowsImageEditing
-P:AppKit.NSTextView.AllowsUndo
-P:AppKit.NSTextView.AttributedString
P:AppKit.NSTextView.AutomaticDashSubstitutionEnabled
P:AppKit.NSTextView.AutomaticDataDetectionEnabled
P:AppKit.NSTextView.AutomaticLinkDetectionEnabled
@@ -69059,23 +47665,15 @@ P:AppKit.NSTextView.AutomaticQuoteSubstitutionEnabled
P:AppKit.NSTextView.AutomaticSpellingCorrectionEnabled
P:AppKit.NSTextView.AutomaticTextCompletionEnabled
P:AppKit.NSTextView.AutomaticTextReplacementEnabled
-P:AppKit.NSTextView.BackgroundColor
-P:AppKit.NSTextView.CandidateListTouchBarItem
P:AppKit.NSTextView.ContentType
P:AppKit.NSTextView.ContinuousSpellCheckingEnabled
-P:AppKit.NSTextView.ConversationIdentifier
-P:AppKit.NSTextView.DefaultParagraphStyle
P:AppKit.NSTextView.Delegate
P:AppKit.NSTextView.DidChangeSelectionNotification
P:AppKit.NSTextView.DidChangeTypingAttributesNotification
P:AppKit.NSTextView.DidCheckText
P:AppKit.NSTextView.DidSwitchToNSLayoutManagerNotification
-P:AppKit.NSTextView.DisplaysLinkToolTips
P:AppKit.NSTextView.DoCommandBySelector
-P:AppKit.NSTextView.DocumentVisibleRect
-P:AppKit.NSTextView.DrawsBackground
P:AppKit.NSTextView.Editable
-P:AppKit.NSTextView.EnabledTextCheckingTypes
P:AppKit.NSTextView.FieldEditor
P:AppKit.NSTextView.GetCandidates
P:AppKit.NSTextView.GetCompletions
@@ -69084,65 +47682,26 @@ P:AppKit.NSTextView.GetUndoManager
P:AppKit.NSTextView.GetWritablePasteboardTypes
P:AppKit.NSTextView.GetWritingToolsIgnoredRangesInEnclosingRange
P:AppKit.NSTextView.GrammarCheckingEnabled
-P:AppKit.NSTextView.HasMarkedText
-P:AppKit.NSTextView.IgnoreModifierKeysWhileDragging
-P:AppKit.NSTextView.ImportsGraphics
-P:AppKit.NSTextView.InlinePredictionType
-P:AppKit.NSTextView.InsertionPointColor
P:AppKit.NSTextView.IsIncrementalSearchingEnabled
-P:AppKit.NSTextView.LayoutManager
-P:AppKit.NSTextView.LayoutOrientation
P:AppKit.NSTextView.LinkClicked
-P:AppKit.NSTextView.LinkTextAttributes
-P:AppKit.NSTextView.MarkedRange
-P:AppKit.NSTextView.MarkedTextAttributes
-P:AppKit.NSTextView.MathExpressionCompletionType
P:AppKit.NSTextView.MenuForEvent
-P:AppKit.NSTextView.PreferredTextAccessoryPlacement
P:AppKit.NSTextView.RichText
P:AppKit.NSTextView.RulerVisible
P:AppKit.NSTextView.Selectable
-P:AppKit.NSTextView.SelectedRanges
-P:AppKit.NSTextView.SelectedTextAttributes
-P:AppKit.NSTextView.SelectionGranularity
P:AppKit.NSTextView.ShouldChangeTextInRange
P:AppKit.NSTextView.ShouldChangeTextInRanges
P:AppKit.NSTextView.ShouldChangeTypingAttributes
-P:AppKit.NSTextView.ShouldDrawInsertionPoint
P:AppKit.NSTextView.ShouldSelectCandidates
P:AppKit.NSTextView.ShouldSetSpellingState
P:AppKit.NSTextView.ShouldUpdateTouchBarItemIdentifiers
-P:AppKit.NSTextView.SmartInsertDeleteEnabled
-P:AppKit.NSTextView.StronglyReferencesTextStorage
-P:AppKit.NSTextView.SupportsAdaptiveImageGlyph
-P:AppKit.NSTextView.TextContainer
-P:AppKit.NSTextView.TextContainerInset
-P:AppKit.NSTextView.TextContainerOrigin
-P:AppKit.NSTextView.TextContentStorage
-P:AppKit.NSTextView.TextHighlightAttributes
-P:AppKit.NSTextView.TextLayoutManager
-P:AppKit.NSTextView.TextStorage
-P:AppKit.NSTextView.TypingAttributes
-P:AppKit.NSTextView.UnionRectInVisibleSelectedRange
-P:AppKit.NSTextView.UsesAdaptiveColorMappingForDarkAppearance
-P:AppKit.NSTextView.UsesFindBar
-P:AppKit.NSTextView.UsesFindPanel
-P:AppKit.NSTextView.UsesFontPanel
-P:AppKit.NSTextView.UsesInspectorBar
-P:AppKit.NSTextView.UsesRolloverButtonForSelection
-P:AppKit.NSTextView.UsesRuler
-P:AppKit.NSTextView.ValidAttributesForMarkedText
-P:AppKit.NSTextView.WeakDelegate
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.NSTextView.WritingToolsActive
-P:AppKit.NSTextView.WritingToolsBehavior
P:AppKit.NSTextViewClickedEventArgs.Cell
P:AppKit.NSTextViewClickedEventArgs.CellFrame
P:AppKit.NSTextViewClickedEventArgs.CharIndex
@@ -69155,54 +47714,16 @@ P:AppKit.NSTextViewDraggedCellEventArgs.CharIndex
P:AppKit.NSTextViewDraggedCellEventArgs.Rect
P:AppKit.NSTextViewDraggedCellEventArgs.TheEvent
P:AppKit.NSTextViewportLayoutController.Delegate
-P:AppKit.NSTextViewportLayoutController.TextLayoutManager
-P:AppKit.NSTextViewportLayoutController.ViewportBounds
-P:AppKit.NSTextViewportLayoutController.ViewportRange
-P:AppKit.NSTextViewportLayoutController.WeakDelegate
P:AppKit.NSTextViewWillChangeNotifyingTextViewEventArgs.NewView
P:AppKit.NSTextViewWillChangeNotifyingTextViewEventArgs.OldView
-P:AppKit.NSTintConfiguration.AdaptsToUserAccentColor
-P:AppKit.NSTintConfiguration.BaseTintColor
-P:AppKit.NSTintConfiguration.DefaultTintConfiguration
-P:AppKit.NSTintConfiguration.EquivalentContentTintColor
-P:AppKit.NSTintConfiguration.MonochromeTintConfiguration
-P:AppKit.NSTitlebarAccessoryViewController.Animations
-P:AppKit.NSTitlebarAccessoryViewController.Animator
-P:AppKit.NSTitlebarAccessoryViewController.AutomaticallyAdjustsSize
-P:AppKit.NSTitlebarAccessoryViewController.FullScreenMinHeight
P:AppKit.NSTitlebarAccessoryViewController.IsHidden
-P:AppKit.NSTitlebarAccessoryViewController.LayoutAttribute
-P:AppKit.NSTokenField.CharacterSet
-P:AppKit.NSTokenField.CompletionDelay
-P:AppKit.NSTokenField.DefaultCharacterSet
-P:AppKit.NSTokenField.DefaultCompletionDelay
P:AppKit.NSTokenField.Delegate
-P:AppKit.NSTokenField.TokenStyle
-P:AppKit.NSTokenField.WeakDelegate
-P:AppKit.NSTokenFieldCell.CharacterSet
-P:AppKit.NSTokenFieldCell.CompletionDelay
-P:AppKit.NSTokenFieldCell.DefaultCharacterSet
-P:AppKit.NSTokenFieldCell.DefaultCompletionDelay
P:AppKit.NSTokenFieldCell.Delegate
-P:AppKit.NSTokenFieldCell.TokenStyle
-P:AppKit.NSTokenFieldCell.WeakDelegate
P:AppKit.NSToolbar.AllowedItemIdentifiers
-P:AppKit.NSToolbar.AllowsDisplayModeCustomization
-P:AppKit.NSToolbar.AllowsExtensionItems
-P:AppKit.NSToolbar.AllowsUserCustomization
-P:AppKit.NSToolbar.AutosavesConfiguration
-P:AppKit.NSToolbar.CenteredItemIdentifier
-P:AppKit.NSToolbar.CenteredItemIdentifiers
-P:AppKit.NSToolbar.ConfigurationDictionary
P:AppKit.NSToolbar.DefaultItemIdentifiers
P:AppKit.NSToolbar.Delegate
-P:AppKit.NSToolbar.DisplayMode
P:AppKit.NSToolbar.GetItemCanBeInsertedAt
P:AppKit.NSToolbar.GetToolbarImmovableItemIdentifiers
-P:AppKit.NSToolbar.Identifier
-P:AppKit.NSToolbar.IsCustomizationPaletteRunning
-P:AppKit.NSToolbar.ItemIdentifiers
-P:AppKit.NSToolbar.Items
P:AppKit.NSToolbar.NSToolbarCloudSharingItemIdentifier
P:AppKit.NSToolbar.NSToolbarCustomizeToolbarItemIdentifier
P:AppKit.NSToolbar.NSToolbarDidRemoveItemNotification
@@ -69222,617 +47743,128 @@ P:AppKit.NSToolbar.NSToolbarWillAddItemNotification
P:AppKit.NSToolbar.NSToolbarWritingToolsItemIdentifier
P:AppKit.NSToolbar.PrimarySidebarTrackingSeparatorItemIdentifier
P:AppKit.NSToolbar.SelectableItemIdentifiers
-P:AppKit.NSToolbar.SelectedItemIdentifier
-P:AppKit.NSToolbar.ShowsBaselineSeparator
-P:AppKit.NSToolbar.SizeMode
P:AppKit.NSToolbar.SupplementarySidebarTrackingSeparatorItemIdentifier
P:AppKit.NSToolbar.Visible
-P:AppKit.NSToolbar.VisibleItems
-P:AppKit.NSToolbar.WeakDelegate
P:AppKit.NSToolbar.WillInsertItem
-P:AppKit.NSToolbarItem.Action
-P:AppKit.NSToolbarItem.AllowsDuplicatesInToolbar
-P:AppKit.NSToolbarItem.Autovalidates
-P:AppKit.NSToolbarItem.Bordered
P:AppKit.NSToolbarItem.Enabled
P:AppKit.NSToolbarItem.Hidden
-P:AppKit.NSToolbarItem.Identifier
-P:AppKit.NSToolbarItem.Image
-P:AppKit.NSToolbarItem.ItemMenuFormRepresentation
-P:AppKit.NSToolbarItem.Label
-P:AppKit.NSToolbarItem.MaxSize
-P:AppKit.NSToolbarItem.MenuFormRepresentation
-P:AppKit.NSToolbarItem.MinSize
P:AppKit.NSToolbarItem.Navigational
-P:AppKit.NSToolbarItem.PaletteLabel
-P:AppKit.NSToolbarItem.PossibleLabels
-P:AppKit.NSToolbarItem.Tag
-P:AppKit.NSToolbarItem.Target
-P:AppKit.NSToolbarItem.Title
-P:AppKit.NSToolbarItem.Toolbar
-P:AppKit.NSToolbarItem.ToolTip
P:AppKit.NSToolbarItem.UIImage
-P:AppKit.NSToolbarItem.View
P:AppKit.NSToolbarItem.Visible
P:AppKit.NSToolbarItemEventArgs.Item
-P:AppKit.NSToolbarItemGroup.ControlRepresentation
-P:AppKit.NSToolbarItemGroup.SelectedIndex
-P:AppKit.NSToolbarItemGroup.SelectionMode
-P:AppKit.NSToolbarItemGroup.Subitems
-P:AppKit.NSTouch.Device
-P:AppKit.NSTouch.DeviceSize
-P:AppKit.NSTouch.Identity
P:AppKit.NSTouch.IsResting
-P:AppKit.NSTouch.NormalizedPosition
-P:AppKit.NSTouch.Phase
P:AppKit.NSTouchBar.AutomaticCustomizeTouchBarMenuItemEnabled
-P:AppKit.NSTouchBar.CustomizationAllowedItemIdentifiers
-P:AppKit.NSTouchBar.CustomizationIdentifier
-P:AppKit.NSTouchBar.CustomizationRequiredItemIdentifiers
-P:AppKit.NSTouchBar.DefaultItemIdentifiers
-P:AppKit.NSTouchBar.Delegate
-P:AppKit.NSTouchBar.EscapeKeyReplacementItemIdentifier
P:AppKit.NSTouchBar.MakeItem
-P:AppKit.NSTouchBar.PrincipalItemIdentifier
-P:AppKit.NSTouchBar.TemplateItems
P:AppKit.NSTouchBar.Visible
-P:AppKit.NSTouchBarItem.CustomizationLabel
-P:AppKit.NSTouchBarItem.Identifier
-P:AppKit.NSTouchBarItem.View
-P:AppKit.NSTouchBarItem.ViewController
-P:AppKit.NSTouchBarItem.VisibilityPriority
P:AppKit.NSTouchBarItem.Visible
-P:AppKit.NSTrackingArea.Options
-P:AppKit.NSTrackingArea.Owner
-P:AppKit.NSTrackingArea.Rect
-P:AppKit.NSTrackingArea.UserInfo
-P:AppKit.NSTrackingSeparatorToolbarItem.DividerIndex
-P:AppKit.NSTrackingSeparatorToolbarItem.SplitView
-P:AppKit.NSTreeController.AlwaysUsesMultipleValuesMarker
-P:AppKit.NSTreeController.ArrangedObjects
-P:AppKit.NSTreeController.AvoidsEmptySelection
-P:AppKit.NSTreeController.CanAddChild
-P:AppKit.NSTreeController.CanInsert
-P:AppKit.NSTreeController.CanInsertChild
-P:AppKit.NSTreeController.ChildrenKeyPath
-P:AppKit.NSTreeController.Content
-P:AppKit.NSTreeController.CountKeyPath
-P:AppKit.NSTreeController.LeafKeyPath
-P:AppKit.NSTreeController.PreservesSelection
-P:AppKit.NSTreeController.SelectedNodes
P:AppKit.NSTreeController.SelectionIndexPath
P:AppKit.NSTreeController.SelectionIndexPaths
-P:AppKit.NSTreeController.SelectsInsertedObjects
-P:AppKit.NSTreeController.SortDescriptors
-P:AppKit.NSTreeNode.Children
-P:AppKit.NSTreeNode.IndexPath
P:AppKit.NSTreeNode.IsLeaf
-P:AppKit.NSTreeNode.ParentNode
-P:AppKit.NSTreeNode.RepresentedObject
-P:AppKit.NSTypesetter.AttributedString
-P:AppKit.NSTypesetter.BidiProcessingEnabled
-P:AppKit.NSTypesetter.CurrentParagraphStyle
-P:AppKit.NSTypesetter.CurrentTextContainer
-P:AppKit.NSTypesetter.DefaultTypesetterBehavior
-P:AppKit.NSTypesetter.HyphenationFactor
-P:AppKit.NSTypesetter.LayoutManager
-P:AppKit.NSTypesetter.LineFragmentPadding
-P:AppKit.NSTypesetter.ParagraphCharacterRange
-P:AppKit.NSTypesetter.ParagraphGlyphRange
-P:AppKit.NSTypesetter.ParagraphSeparatorCharacterRange
-P:AppKit.NSTypesetter.ParagraphSeparatorGlyphRange
-P:AppKit.NSTypesetter.SharedSystemTypesetter
-P:AppKit.NSTypesetter.TextContainers
-P:AppKit.NSTypesetter.TypesetterBehavior
-P:AppKit.NSTypesetter.UsesFontLeading
-P:AppKit.NSUserDefaultsController.AppliesImmediately
-P:AppKit.NSUserDefaultsController.Defaults
-P:AppKit.NSUserDefaultsController.HasUnappliedChanges
-P:AppKit.NSUserDefaultsController.InitialValues
-P:AppKit.NSUserDefaultsController.SharedUserDefaultsController
-P:AppKit.NSUserDefaultsController.Values
-P:AppKit.NSUserInterfaceCompressionOptions.BreakEqualWidthsOption
P:AppKit.NSUserInterfaceCompressionOptions.Empty
-P:AppKit.NSUserInterfaceCompressionOptions.HideImagesOption
-P:AppKit.NSUserInterfaceCompressionOptions.HideTextOption
-P:AppKit.NSUserInterfaceCompressionOptions.ReduceMetricsOption
-P:AppKit.NSUserInterfaceCompressionOptions.StandardOptions
-P:AppKit.NSView.AcceptsTouchEvents
-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.AdditionalSafeAreaInsets
-P:AppKit.NSView.AlignmentRectInsets
-P:AppKit.NSView.AllowsVibrancy
-P:AppKit.NSView.AlphaValue
-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
P:AppKit.NSView.ApplicationShownNotification
-P:AppKit.NSView.AutoresizesSubviews
-P:AppKit.NSView.AutoresizingMask
-P:AppKit.NSView.BackgroundFilters
-P:AppKit.NSView.BaselineOffsetFromBottom
-P:AppKit.NSView.BottomAnchor
-P:AppKit.NSView.Bounds
P:AppKit.NSView.BoundsChangedNotification
-P:AppKit.NSView.BoundsRotation
-P:AppKit.NSView.CanBecomeKeyView
-P:AppKit.NSView.CanDrawConcurrently
-P:AppKit.NSView.CanDrawSubviewsIntoLayer
-P:AppKit.NSView.CenterXAnchor
-P:AppKit.NSView.CenterYAnchor
-P:AppKit.NSView.ClipsToBounds
-P:AppKit.NSView.CompositingFilter
-P:AppKit.NSView.Constraints
-P:AppKit.NSView.ContentFilters
P:AppKit.NSView.CreatedNotification
-P:AppKit.NSView.DefaultFocusRingType
P:AppKit.NSView.DrawerCreatedNotification
-P:AppKit.NSView.EffectiveAppearance
-P:AppKit.NSView.EnclosingScrollView
-P:AppKit.NSView.FirstBaselineAnchor
-P:AppKit.NSView.FirstBaselineOffsetFromTop
-P:AppKit.NSView.FittingSize
P:AppKit.NSView.FocusChangedNotification
P:AppKit.NSView.FocusedWindowChangedNotification
-P:AppKit.NSView.FocusRingMaskBounds
-P:AppKit.NSView.FocusRingType
-P:AppKit.NSView.Frame
-P:AppKit.NSView.FrameCenterRotation
P:AppKit.NSView.FrameChangedNotification
-P:AppKit.NSView.FrameRotation
-P:AppKit.NSView.GestureRecognizers
P:AppKit.NSView.GlobalFrameChangedNotification
-P:AppKit.NSView.HasAmbiguousLayout
-P:AppKit.NSView.HeightAdjustLimit
-P:AppKit.NSView.HeightAnchor
P:AppKit.NSView.HelpTagCreatedNotification
P:AppKit.NSView.Hidden
P:AppKit.NSView.HorizontalContentSizeConstraintActive
-P:AppKit.NSView.Identifier
-P:AppKit.NSView.InLiveResize
-P:AppKit.NSView.InputContext
-P:AppKit.NSView.IntrinsicContentSize
P:AppKit.NSView.IsCompatibleWithResponsiveScrolling
P:AppKit.NSView.IsDrawingFindIndicator
-P:AppKit.NSView.IsFlipped
P:AppKit.NSView.IsHiddenOrHasHiddenAncestor
P:AppKit.NSView.IsInFullscreenMode
P:AppKit.NSView.IsOpaque
P:AppKit.NSView.IsRotatedFromBase
P:AppKit.NSView.IsRotatedOrScaledFromBase
-P:AppKit.NSView.LastBaselineAnchor
-P:AppKit.NSView.LastBaselineOffsetFromBottom
-P:AppKit.NSView.Layer
-P:AppKit.NSView.LayerContentsPlacement
-P:AppKit.NSView.LayerContentsRedrawPolicy
-P:AppKit.NSView.LayerUsesCoreImageFilters
P:AppKit.NSView.LayoutChangedNotification
-P:AppKit.NSView.LayoutGuides
-P:AppKit.NSView.LayoutMarginsGuide
-P:AppKit.NSView.LeadingAnchor
-P:AppKit.NSView.LeftAnchor
P:AppKit.NSView.MainWindowChangedNotification
-P:AppKit.NSView.MouseDownCanMoveWindow
P:AppKit.NSView.MovedNotification
-P:AppKit.NSView.NeedsDisplay
-P:AppKit.NSView.NeedsLayout
-P:AppKit.NSView.NeedsPanelToBecomeKey
-P:AppKit.NSView.NeedsUpdateConstraints
-P:AppKit.NSView.NextKeyView
-P:AppKit.NSView.NextValidKeyView
P:AppKit.NSView.NoIntrinsicMetric
P:AppKit.NSView.NSFullScreenModeAllScreens
P:AppKit.NSView.NSFullScreenModeApplicationPresentationOptions
P:AppKit.NSView.NSFullScreenModeSetting
P:AppKit.NSView.NSFullScreenModeWindowLevel
-P:AppKit.NSView.OpaqueAncestor
-P:AppKit.NSView.PageFooter
-P:AppKit.NSView.PageHeader
-P:AppKit.NSView.PostsBoundsChangedNotifications
-P:AppKit.NSView.PostsFrameChangedNotifications
-P:AppKit.NSView.PreparedContentRect
-P:AppKit.NSView.PreservesContentDuringLiveResize
-P:AppKit.NSView.PressureConfiguration
-P:AppKit.NSView.PreviousKeyView
-P:AppKit.NSView.PreviousValidKeyView
-P:AppKit.NSView.PrintJobTitle
-P:AppKit.NSView.RectPreservedDuringLiveResize
P:AppKit.NSView.ResizedNotification
-P:AppKit.NSView.RightAnchor
P:AppKit.NSView.RowCollapsedNotification
P:AppKit.NSView.RowCountChangedNotification
P:AppKit.NSView.RowExpandedNotification
-P:AppKit.NSView.SafeAreaInsets
-P:AppKit.NSView.SafeAreaLayoutGuide
-P:AppKit.NSView.SafeAreaRect
P:AppKit.NSView.SelectedCellsChangedNotification
P:AppKit.NSView.SelectedChildrenChangedNotification
P:AppKit.NSView.SelectedChildrenMovedNotification
P:AppKit.NSView.SelectedColumnsChangedNotification
P:AppKit.NSView.SelectedRowsChangedNotification
P:AppKit.NSView.SelectedTextChangedNotification
-P:AppKit.NSView.Shadow
P:AppKit.NSView.SheetCreatedNotification
-P:AppKit.NSView.ShouldDrawColor
-P:AppKit.NSView.Subviews
-P:AppKit.NSView.Superview
-P:AppKit.NSView.Tag
P:AppKit.NSView.TitleChangedNotification
-P:AppKit.NSView.ToolTip
-P:AppKit.NSView.TopAnchor
-P:AppKit.NSView.TrailingAnchor
-P:AppKit.NSView.TranslatesAutoresizingMaskIntoConstraints
P:AppKit.NSView.UIElementDestroyedNotification
P:AppKit.NSView.UIElementFocusedChangedNotification
P:AppKit.NSView.UnitsChangedNotification
P:AppKit.NSView.UpdatedTrackingAreasNotification
-P:AppKit.NSView.UserInterfaceLayoutDirection
P:AppKit.NSView.ValueChangedNotification
P:AppKit.NSView.VerticalContentSizeConstraintActive
-P:AppKit.NSView.WantsBestResolutionOpenGLSurface
-P:AppKit.NSView.WantsDefaultClipping
-P:AppKit.NSView.WantsLayer
-P:AppKit.NSView.WantsPeriodicDraggingUpdates
-P:AppKit.NSView.WantsRestingTouches
-P:AppKit.NSView.WantsUpdateLayer
-P:AppKit.NSView.WidthAdjustLimit
-P:AppKit.NSView.WidthAnchor
-P:AppKit.NSView.Window
P:AppKit.NSView.WindowCreatedNotification
P:AppKit.NSView.WindowDeminiaturizedNotification
P:AppKit.NSView.WindowMiniaturizedNotification
P:AppKit.NSView.WindowMovedNotification
P:AppKit.NSView.WindowResizedNotification
-P:AppKit.NSView.WritingToolsCoordinator
-P:AppKit.NSViewAnimation.Animations
-P:AppKit.NSViewAnimation.Animator
P:AppKit.NSViewAnimation.EffectKey
P:AppKit.NSViewAnimation.EndFrameKey
P:AppKit.NSViewAnimation.FadeInEffect
P:AppKit.NSViewAnimation.FadeOutEffect
P:AppKit.NSViewAnimation.StartFrameKey
P:AppKit.NSViewAnimation.TargetKey
-P:AppKit.NSViewAnimation.ViewAnimations
P:AppKit.NSViewColumnMoveEventArgs.NewColumn
P:AppKit.NSViewColumnMoveEventArgs.OldColumn
P:AppKit.NSViewColumnResizeEventArgs.Column
P:AppKit.NSViewColumnResizeEventArgs.OldWidth
-P:AppKit.NSViewController.ChildViewControllers
-P:AppKit.NSViewController.ExtensionContext
-P:AppKit.NSViewController.Identifier
-P:AppKit.NSViewController.Menu
-P:AppKit.NSViewController.NextResponder
-P:AppKit.NSViewController.NibBundle
-P:AppKit.NSViewController.NibName
-P:AppKit.NSViewController.ParentViewController
-P:AppKit.NSViewController.PreferredContentSize
-P:AppKit.NSViewController.PreferredMaximumSize
-P:AppKit.NSViewController.PreferredMinimumSize
-P:AppKit.NSViewController.PreferredScreenOrigin
-P:AppKit.NSViewController.PresentedViewControllers
-P:AppKit.NSViewController.PresentingViewController
-P:AppKit.NSViewController.RepresentedObject
-P:AppKit.NSViewController.SourceItemView
-P:AppKit.NSViewController.Storyboard
-P:AppKit.NSViewController.Title
-P:AppKit.NSViewController.TouchBar
-P:AppKit.NSViewController.UserActivity
-P:AppKit.NSViewController.View
-P:AppKit.NSViewController.ViewIfLoaded
P:AppKit.NSViewController.ViewLoaded
-P:AppKit.NSVisualEffectView.BlendingMode
P:AppKit.NSVisualEffectView.Emphasized
-P:AppKit.NSVisualEffectView.InteriorBackgroundStyle
-P:AppKit.NSVisualEffectView.MaskImage
-P:AppKit.NSVisualEffectView.Material
-P:AppKit.NSVisualEffectView.State
-P:AppKit.NSWindow.AcceptsMouseMovedEvents
-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.AllowsAutomaticWindowTabbing
-P:AppKit.NSWindow.AllowsConcurrentViewDrawing
-P:AppKit.NSWindow.AllowsToolTipsWhenApplicationIsInactive
-P:AppKit.NSWindow.AlphaValue
-P:AppKit.NSWindow.AnimationBehavior
-P:AppKit.NSWindow.Animations
-P:AppKit.NSWindow.Animator
P:AppKit.NSWindow.AnnouncementRequestedNotification
-P:AppKit.NSWindow.Appearance
-P:AppKit.NSWindow.AppearanceSource
P:AppKit.NSWindow.ApplicationActivatedNotification
P:AppKit.NSWindow.ApplicationDeactivatedNotification
P:AppKit.NSWindow.ApplicationHiddenNotification
P:AppKit.NSWindow.ApplicationShownNotification
-P:AppKit.NSWindow.AreCursorRectsEnabled
-P:AppKit.NSWindow.AspectRatio
-P:AppKit.NSWindow.AttachedSheet
P:AppKit.NSWindow.Autodisplay
-P:AppKit.NSWindow.AutorecalculatesKeyViewLoop
-P:AppKit.NSWindow.BackgroundColor
-P:AppKit.NSWindow.BackingLocation
-P:AppKit.NSWindow.BackingScaleFactor
-P:AppKit.NSWindow.BackingType
-P:AppKit.NSWindow.CanBecomeKeyWindow
-P:AppKit.NSWindow.CanBecomeMainWindow
-P:AppKit.NSWindow.CanBecomeVisibleWithoutLogin
-P:AppKit.NSWindow.CanHide
-P:AppKit.NSWindow.CanStoreColor
-P:AppKit.NSWindow.CascadingReferenceFrame
-P:AppKit.NSWindow.ChildWindows
-P:AppKit.NSWindow.CollectionBehavior
-P:AppKit.NSWindow.ColorSpace
-P:AppKit.NSWindow.ContentAspectRatio
-P:AppKit.NSWindow.ContentLayoutGuide
-P:AppKit.NSWindow.ContentLayoutRect
-P:AppKit.NSWindow.ContentMaxSize
-P:AppKit.NSWindow.ContentMinSize
-P:AppKit.NSWindow.ContentResizeIncrements
-P:AppKit.NSWindow.ContentView
-P:AppKit.NSWindow.ContentViewController
P:AppKit.NSWindow.CreatedNotification
P:AppKit.NSWindow.CustomWindowsToEnterFullScreen
P:AppKit.NSWindow.CustomWindowsToExitFullScreen
P:AppKit.NSWindow.DangerousReleasedWhenClosed
-P:AppKit.NSWindow.DeepestScreen
-P:AppKit.NSWindow.DefaultButtonCell
-P:AppKit.NSWindow.DefaultDepthLimit
P:AppKit.NSWindow.Delegate
-P:AppKit.NSWindow.DepthLimit
-P:AppKit.NSWindow.DeviceDescription
P:AppKit.NSWindow.DidBecomeKeyNotification
P:AppKit.NSWindow.DidBecomeMainNotification
P:AppKit.NSWindow.DidChangeBackingPropertiesNotification
@@ -69852,105 +47884,45 @@ P:AppKit.NSWindow.DidResignKeyNotification
P:AppKit.NSWindow.DidResignMainNotification
P:AppKit.NSWindow.DidResizeNotification
P:AppKit.NSWindow.DidUpdateNotification
-P:AppKit.NSWindow.DisplaysWhenScreenProfileChanges
-P:AppKit.NSWindow.DockTile
-P:AppKit.NSWindow.DocumentEdited
P:AppKit.NSWindow.DrawerCreatedNotification
-P:AppKit.NSWindow.EffectiveAppearance
P:AppKit.NSWindow.ExcludedFromWindowsMenu
-P:AppKit.NSWindow.FirstResponder
P:AppKit.NSWindow.FlushWindowDisabled
P:AppKit.NSWindow.FocusedWindowChangedNotification
-P:AppKit.NSWindow.Frame
P:AppKit.NSWindow.FrameAutosaveName
P:AppKit.NSWindow.GetWindowForSharingRequest
-P:AppKit.NSWindow.GraphicsContext
-P:AppKit.NSWindow.HasActiveWindowSharingSession
-P:AppKit.NSWindow.HasDynamicDepthLimit
-P:AppKit.NSWindow.HasShadow
P:AppKit.NSWindow.HelpTagCreatedNotification
-P:AppKit.NSWindow.HidesOnDeactivate
-P:AppKit.NSWindow.Identifier
-P:AppKit.NSWindow.IgnoresMouseEvents
-P:AppKit.NSWindow.InitialFirstResponder
-P:AppKit.NSWindow.InLiveResize
P:AppKit.NSWindow.IsKeyWindow
P:AppKit.NSWindow.IsMainWindow
-P:AppKit.NSWindow.IsMiniaturized
P:AppKit.NSWindow.IsMovable
P:AppKit.NSWindow.IsOnActiveSpace
P:AppKit.NSWindow.IsOneShot
P:AppKit.NSWindow.IsOpaque
P:AppKit.NSWindow.IsSheet
-P:AppKit.NSWindow.IsVisible
-P:AppKit.NSWindow.IsZoomed
P:AppKit.NSWindow.LayoutChangedNotification
-P:AppKit.NSWindow.Level
P:AppKit.NSWindow.MainWindowChangedNotification
-P:AppKit.NSWindow.MaxFullScreenContentSize
-P:AppKit.NSWindow.MaxSize
-P:AppKit.NSWindow.MinFullScreenContentSize
-P:AppKit.NSWindow.MiniWindowImage
-P:AppKit.NSWindow.MiniWindowTitle
-P:AppKit.NSWindow.MinSize
-P:AppKit.NSWindow.MouseLocationOutsideOfEventStream
P:AppKit.NSWindow.MovableByWindowBackground
P:AppKit.NSWindow.MovedNotification
-P:AppKit.NSWindow.OcclusionState
-P:AppKit.NSWindow.ParentWindow
-P:AppKit.NSWindow.PreferredBackingLocation
-P:AppKit.NSWindow.PreservesContentDuringLiveResize
-P:AppKit.NSWindow.PreventsApplicationTerminationWhenModal
-P:AppKit.NSWindow.RepresentedFilename
-P:AppKit.NSWindow.RepresentedUrl
P:AppKit.NSWindow.ResizedNotification
-P:AppKit.NSWindow.ResizeFlags
-P:AppKit.NSWindow.ResizeIncrements
P:AppKit.NSWindow.Restorable
-P:AppKit.NSWindow.RestorationClass
P:AppKit.NSWindow.RowCollapsedNotification
P:AppKit.NSWindow.RowCountChangedNotification
P:AppKit.NSWindow.RowExpandedNotification
-P:AppKit.NSWindow.Screen
P:AppKit.NSWindow.SelectedCellsChangedNotification
P:AppKit.NSWindow.SelectedChildrenChangedNotification
P:AppKit.NSWindow.SelectedChildrenMovedNotification
P:AppKit.NSWindow.SelectedColumnsChangedNotification
P:AppKit.NSWindow.SelectedRowsChangedNotification
P:AppKit.NSWindow.SelectedTextChangedNotification
-P:AppKit.NSWindow.SharingType
P:AppKit.NSWindow.SheetCreatedNotification
-P:AppKit.NSWindow.SheetParent
-P:AppKit.NSWindow.Sheets
P:AppKit.NSWindow.ShouldDragDocumentWithEvent
P:AppKit.NSWindow.ShouldPopUpDocumentPathMenu
P:AppKit.NSWindow.ShouldZoom
-P:AppKit.NSWindow.ShowsResizeIndicator
-P:AppKit.NSWindow.ShowsToolbarButton
-P:AppKit.NSWindow.StyleMask
-P:AppKit.NSWindow.Subtitle
-P:AppKit.NSWindow.Tab
-P:AppKit.NSWindow.TabbedWindows
-P:AppKit.NSWindow.TabbingIdentifier
-P:AppKit.NSWindow.TabbingMode
-P:AppKit.NSWindow.TabGroup
-P:AppKit.NSWindow.Title
-P:AppKit.NSWindow.TitlebarAccessoryViewControllers
-P:AppKit.NSWindow.TitlebarAppearsTransparent
-P:AppKit.NSWindow.TitlebarSeparatorStyle
P:AppKit.NSWindow.TitleChangedNotification
-P:AppKit.NSWindow.TitleVisibility
-P:AppKit.NSWindow.Toolbar
-P:AppKit.NSWindow.ToolbarStyle
P:AppKit.NSWindow.TrackReleasedWhenClosed
P:AppKit.NSWindow.UIElementDestroyedNotification
P:AppKit.NSWindow.UIElementFocusedChangedNotification
P:AppKit.NSWindow.UnitsChangedNotification
-P:AppKit.NSWindow.UserSpaceScaleFactor
-P:AppKit.NSWindow.UserTabbingPreference
P:AppKit.NSWindow.ValueChangedNotification
-P:AppKit.NSWindow.ViewsNeedDisplay
-P:AppKit.NSWindow.WeakDelegate
P:AppKit.NSWindow.WillBeginSheetNotification
P:AppKit.NSWindow.WillCloseNotification
P:AppKit.NSWindow.WillEnterFullScreenNotification
@@ -69968,49 +47940,20 @@ P:AppKit.NSWindow.WillStartLiveResizeNotification
P:AppKit.NSWindow.WillUseFullScreenContentSize
P:AppKit.NSWindow.WillUseFullScreenPresentationOptions
P:AppKit.NSWindow.WillUseStandardFrame
-P:AppKit.NSWindow.WindowController
P:AppKit.NSWindow.WindowCreatedNotification
P:AppKit.NSWindow.WindowDeminiaturizedNotification
P:AppKit.NSWindow.WindowMiniaturizedNotification
P:AppKit.NSWindow.WindowMovedNotification
-P:AppKit.NSWindow.WindowNumber
-P:AppKit.NSWindow.WindowRef
P:AppKit.NSWindow.WindowResizedNotification
P:AppKit.NSWindow.WindowShouldClose
-P:AppKit.NSWindow.WindowTitlebarLayoutDirection
-P:AppKit.NSWindow.WorksWhenModal
P:AppKit.NSWindowBackingPropertiesEventArgs.OldColorSpace
P:AppKit.NSWindowBackingPropertiesEventArgs.OldScaleFactor
P:AppKit.NSWindowCoderEventArgs.Coder
-P:AppKit.NSWindowController.ContentViewController
-P:AppKit.NSWindowController.Document
P:AppKit.NSWindowController.IsWindowLoaded
-P:AppKit.NSWindowController.Owner
-P:AppKit.NSWindowController.PreviewRepresentableActivityItems
-P:AppKit.NSWindowController.ShouldCascadeWindows
-P:AppKit.NSWindowController.ShouldCloseDocument
-P:AppKit.NSWindowController.Storyboard
-P:AppKit.NSWindowController.Window
-P:AppKit.NSWindowController.WindowFrameAutosaveName
-P:AppKit.NSWindowController.WindowNibName
-P:AppKit.NSWindowController.WindowNibPath
P:AppKit.NSWindowDurationEventArgs.Duration
P:AppKit.NSWindowExposeEventArgs.ExposedRect
-P:AppKit.NSWindowTab.AccessoryView
-P:AppKit.NSWindowTab.AttributedTitle
-P:AppKit.NSWindowTab.Title
-P:AppKit.NSWindowTab.ToolTip
-P:AppKit.NSWindowTabGroup.Identifier
P:AppKit.NSWindowTabGroup.OverviewVisible
-P:AppKit.NSWindowTabGroup.SelectedWindow
P:AppKit.NSWindowTabGroup.TabBarVisible
-P:AppKit.NSWindowTabGroup.Windows
-P:AppKit.NSWorkspace.AccessibilityDisplayShouldDifferentiateWithoutColor
-P:AppKit.NSWorkspace.AccessibilityDisplayShouldIncreaseContrast
-P:AppKit.NSWorkspace.AccessibilityDisplayShouldInvertColors
-P:AppKit.NSWorkspace.AccessibilityDisplayShouldReduceMotion
-P:AppKit.NSWorkspace.AccessibilityDisplayShouldReduceTransparency
-P:AppKit.NSWorkspace.ActiveApplication
P:AppKit.NSWorkspace.ActiveSpaceDidChangeNotification
P:AppKit.NSWorkspace.DidActivateApplicationNotification
P:AppKit.NSWorkspace.DidChangeFileLabelsNotification
@@ -70025,30 +47968,20 @@ P:AppKit.NSWorkspace.DidUnhideApplicationNotification
P:AppKit.NSWorkspace.DidUnmountNotification
P:AppKit.NSWorkspace.DidWakeNotification
P:AppKit.NSWorkspace.DisplayOptionsDidChangeNotification
-P:AppKit.NSWorkspace.FileLabelColors
-P:AppKit.NSWorkspace.FileLabels
-P:AppKit.NSWorkspace.FrontmostApplication
P:AppKit.NSWorkspace.LaunchConfigurationAppleEvent
P:AppKit.NSWorkspace.LaunchConfigurationArchitecture
P:AppKit.NSWorkspace.LaunchConfigurationArguments
P:AppKit.NSWorkspace.LaunchConfigurationEnvironment
-P:AppKit.NSWorkspace.LaunchedApplications
-P:AppKit.NSWorkspace.MenuBarOwningApplication
-P:AppKit.NSWorkspace.MountedLocalVolumePaths
-P:AppKit.NSWorkspace.MountedRemovableMedia
-P:AppKit.NSWorkspace.NotificationCenter
P:AppKit.NSWorkspace.OperationCopy
P:AppKit.NSWorkspace.OperationDestroy
P:AppKit.NSWorkspace.OperationDuplicate
P:AppKit.NSWorkspace.OperationLink
P:AppKit.NSWorkspace.OperationMove
P:AppKit.NSWorkspace.OperationRecycle
-P:AppKit.NSWorkspace.RunningApplications
P:AppKit.NSWorkspace.ScreensDidSleepNotification
P:AppKit.NSWorkspace.ScreensDidWakeNotification
P:AppKit.NSWorkspace.SessionDidBecomeActiveNotification
P:AppKit.NSWorkspace.SessionDidResignActiveNotification
-P:AppKit.NSWorkspace.SharedWorkspace
P:AppKit.NSWorkspace.SwitchControlEnabled
P:AppKit.NSWorkspace.VoiceOverEnabled
P:AppKit.NSWorkspace.WillLaunchApplication
@@ -70059,51 +47992,14 @@ P:AppKit.NSWorkspaceApplicationEventArgs.Application
P:AppKit.NSWorkspaceFileOperationEventArgs.FileType
P:AppKit.NSWorkspaceMountEventArgs.VolumeLocalizedName
P:AppKit.NSWorkspaceMountEventArgs.VolumeUrl
-P:AppKit.NSWorkspaceOpenConfiguration.Activates
-P:AppKit.NSWorkspaceOpenConfiguration.AddsToRecentItems
-P:AppKit.NSWorkspaceOpenConfiguration.AllowsRunningApplicationSubstitution
-P:AppKit.NSWorkspaceOpenConfiguration.AppleEvent
-P:AppKit.NSWorkspaceOpenConfiguration.Arguments
-P:AppKit.NSWorkspaceOpenConfiguration.CreatesNewApplicationInstance
-P:AppKit.NSWorkspaceOpenConfiguration.Environment
P:AppKit.NSWorkspaceOpenConfiguration.ForPrinting
-P:AppKit.NSWorkspaceOpenConfiguration.Hides
-P:AppKit.NSWorkspaceOpenConfiguration.HidesOthers
P:AppKit.NSWorkspaceOpenConfiguration.LaunchArchitecture
-P:AppKit.NSWorkspaceOpenConfiguration.PromptsUserIfNeeded
-P:AppKit.NSWorkspaceOpenConfiguration.RequiresUniversalLinks
P:AppKit.NSWorkspaceRenamedEventArgs.OldVolumeLocalizedName
P:AppKit.NSWorkspaceRenamedEventArgs.OldVolumeUrl
P:AppKit.NSWorkspaceRenamedEventArgs.VolumeLocalizedName
P:AppKit.NSWorkspaceRenamedEventArgs.VolumeUrl
-P:AppKit.NSWritingToolsCoordinator.Behavior
-P:AppKit.NSWritingToolsCoordinator.DecorationContainerView
P:AppKit.NSWritingToolsCoordinator.Delegate
-P:AppKit.NSWritingToolsCoordinator.EffectContainerView
-P:AppKit.NSWritingToolsCoordinator.IsWritingToolsAvailable
-P:AppKit.NSWritingToolsCoordinator.PreferredBehavior
-P:AppKit.NSWritingToolsCoordinator.PreferredResultOptions
-P:AppKit.NSWritingToolsCoordinator.ResultOptions
-P:AppKit.NSWritingToolsCoordinator.State
-P:AppKit.NSWritingToolsCoordinator.View
-P:AppKit.NSWritingToolsCoordinator.WeakDelegate
-P:AppKit.NSWritingToolsCoordinatorAnimationParameters.CompletionHandler
-P:AppKit.NSWritingToolsCoordinatorAnimationParameters.Delay
-P:AppKit.NSWritingToolsCoordinatorAnimationParameters.Duration
-P:AppKit.NSWritingToolsCoordinatorAnimationParameters.ProgressHandler
-P:AppKit.NSWritingToolsCoordinatorContext.AttributedString
-P:AppKit.NSWritingToolsCoordinatorContext.Identifier
-P:AppKit.NSWritingToolsCoordinatorContext.Range
-P:AppKit.NSWritingToolsCoordinatorContext.ResolvedRange
P:AppTrackingTransparency.ATTrackingManager.TrackingAuthorizationStatus
-P:ARKit.ARAnchor.Identifier
-P:ARKit.ARAnchor.Name
-P:ARKit.ARAnchor.SessionIdentifier
-P:ARKit.ARAnchor.Transform
-P:ARKit.ARAppClipCodeAnchor.IsTracked
-P:ARKit.ARAppClipCodeAnchor.Radius
-P:ARKit.ARAppClipCodeAnchor.Url
-P:ARKit.ARAppClipCodeAnchor.UrlDecodingState
P:ARKit.ARBlendShapeLocationOptions.BrowDownLeft
P:ARKit.ARBlendShapeLocationOptions.BrowDownRight
P:ARKit.ARBlendShapeLocationOptions.BrowInnerUp
@@ -70156,228 +48052,28 @@ P:ARKit.ARBlendShapeLocationOptions.MouthUpperUpRight
P:ARKit.ARBlendShapeLocationOptions.NoseSneerLeft
P:ARKit.ARBlendShapeLocationOptions.NoseSneerRight
P:ARKit.ARBlendShapeLocationOptions.TongueOut
-P:ARKit.ARBody2D.Skeleton
-P:ARKit.ARBodyAnchor.EstimatedScaleFactor
-P:ARKit.ARBodyAnchor.IsTracked
-P:ARKit.ARBodyAnchor.Skeleton
-P:ARKit.ARBodyTrackingConfiguration.AppClipCodeTrackingEnabled
P:ARKit.ARBodyTrackingConfiguration.AutoFocusEnabled
-P:ARKit.ARBodyTrackingConfiguration.AutomaticImageScaleEstimationEnabled
-P:ARKit.ARBodyTrackingConfiguration.AutomaticSkeletonScaleEstimationEnabled
-P:ARKit.ARBodyTrackingConfiguration.DetectionImages
-P:ARKit.ARBodyTrackingConfiguration.EnvironmentTexturing
-P:ARKit.ARBodyTrackingConfiguration.InitialWorldMap
-P:ARKit.ARBodyTrackingConfiguration.MaximumNumberOfTrackedImages
-P:ARKit.ARBodyTrackingConfiguration.PlaneDetection
-P:ARKit.ARBodyTrackingConfiguration.SupportsAppClipCodeTracking
-P:ARKit.ARBodyTrackingConfiguration.WantsHdrEnvironmentTextures
-P:ARKit.ARCamera.EulerAngles
-P:ARKit.ARCamera.ExposureDuration
-P:ARKit.ARCamera.ExposureOffset
-P:ARKit.ARCamera.ImageResolution
-P:ARKit.ARCamera.Intrinsics
-P:ARKit.ARCamera.ProjectionMatrix
-P:ARKit.ARCamera.TrackingState
-P:ARKit.ARCamera.TrackingStateReason
-P:ARKit.ARCamera.Transform
-P:ARKit.ARCoachingOverlayView.ActivatesAutomatically
P:ARKit.ARCoachingOverlayView.Delegate
-P:ARKit.ARCoachingOverlayView.Goal
-P:ARKit.ARCoachingOverlayView.IsActive
-P:ARKit.ARCoachingOverlayView.Session
-P:ARKit.ARCoachingOverlayView.SessionProvider
-P:ARKit.ARCoachingOverlayView.WeakDelegate
-P:ARKit.ARCollaborationData.Priority
-P:ARKit.ARConfiguration.ConfigurableCaptureDeviceForPrimaryCamera
-P:ARKit.ARConfiguration.FrameSemantics
-P:ARKit.ARConfiguration.IsSupported
P:ARKit.ARConfiguration.LightEstimationEnabled
-P:ARKit.ARConfiguration.ProvidesAudioData
-P:ARKit.ARConfiguration.RecommendedVideoFormatFor4KResolution
-P:ARKit.ARConfiguration.RecommendedVideoFormatForHighResolutionFrameCapturing
-P:ARKit.ARConfiguration.VideoFormat
-P:ARKit.ARConfiguration.VideoHdrAllowed
-P:ARKit.ARConfiguration.WorldAlignment
-P:ARKit.ARDepthData.ConfidenceMap
-P:ARKit.ARDepthData.DepthMap
-P:ARKit.ARDirectionalLightEstimate.PrimaryLightDirection
-P:ARKit.ARDirectionalLightEstimate.PrimaryLightIntensity
-P:ARKit.ARDirectionalLightEstimate.SphericalHarmonicsCoefficients
-P:ARKit.AREnvironmentProbeAnchor.EnvironmentTexture
-P:ARKit.AREnvironmentProbeAnchor.Extent
P:ARKit.ARFaceAnchor.BlendShapes
-P:ARKit.ARFaceAnchor.Geometry
-P:ARKit.ARFaceAnchor.IsTracked
-P:ARKit.ARFaceAnchor.LeftEyeTransform
-P:ARKit.ARFaceAnchor.LookAtPoint
-P:ARKit.ARFaceAnchor.RightEyeTransform
-P:ARKit.ARFaceGeometry.TextureCoordinateCount
-P:ARKit.ARFaceGeometry.TriangleCount
-P:ARKit.ARFaceGeometry.VertexCount
-P:ARKit.ARFaceTrackingConfiguration.MaximumNumberOfTrackedFaces
-P:ARKit.ARFaceTrackingConfiguration.SupportedNumberOfTrackedFaces
-P:ARKit.ARFaceTrackingConfiguration.SupportsWorldTracking
P:ARKit.ARFaceTrackingConfiguration.WorldTrackingEnabled
-P:ARKit.ARFrame.Anchors
-P:ARKit.ARFrame.Camera
-P:ARKit.ARFrame.CameraGrainIntensity
-P:ARKit.ARFrame.CameraGrainTexture
-P:ARKit.ARFrame.CapturedDepthData
-P:ARKit.ARFrame.CapturedDepthDataTimestamp
-P:ARKit.ARFrame.CapturedImage
-P:ARKit.ARFrame.DetectedBody
-P:ARKit.ARFrame.EstimatedDepthData
-P:ARKit.ARFrame.ExifData
-P:ARKit.ARFrame.GeoTrackingStatus
-P:ARKit.ARFrame.LightEstimate
-P:ARKit.ARFrame.RawFeaturePoints
-P:ARKit.ARFrame.SceneDepth
-P:ARKit.ARFrame.SegmentationBuffer
-P:ARKit.ARFrame.SmoothedSceneDepth
-P:ARKit.ARFrame.Timestamp
-P:ARKit.ARFrame.WorldMappingStatus
-P:ARKit.ARGeoAnchor.Altitude
-P:ARKit.ARGeoAnchor.AltitudeSource
-P:ARKit.ARGeoAnchor.Coordinate
-P:ARKit.ARGeoAnchor.IsTracked
-P:ARKit.ARGeometryElement.Buffer
-P:ARKit.ARGeometryElement.BytesPerIndex
-P:ARKit.ARGeometryElement.Count
-P:ARKit.ARGeometryElement.IndexCountPerPrimitive
-P:ARKit.ARGeometryElement.PrimitiveType
-P:ARKit.ARGeometrySource.Buffer
-P:ARKit.ARGeometrySource.ComponentsPerVector
-P:ARKit.ARGeometrySource.Count
-P:ARKit.ARGeometrySource.Format
-P:ARKit.ARGeometrySource.Offset
-P:ARKit.ARGeometrySource.Stride
-P:ARKit.ARGeoTrackingConfiguration.AppClipCodeTrackingEnabled
-P:ARKit.ARGeoTrackingConfiguration.AutomaticImageScaleEstimationEnabled
-P:ARKit.ARGeoTrackingConfiguration.DetectionImages
-P:ARKit.ARGeoTrackingConfiguration.DetectionObjects
-P:ARKit.ARGeoTrackingConfiguration.EnvironmentTexturing
-P:ARKit.ARGeoTrackingConfiguration.MaximumNumberOfTrackedImages
-P:ARKit.ARGeoTrackingConfiguration.PlaneDetection
-P:ARKit.ARGeoTrackingConfiguration.SupportsAppClipCodeTracking
-P:ARKit.ARGeoTrackingConfiguration.WantsHdrEnvironmentTextures
-P:ARKit.ARGeoTrackingStatus.Accuracy
-P:ARKit.ARGeoTrackingStatus.State
-P:ARKit.ARGeoTrackingStatus.StateReason
-P:ARKit.ARHitTestResult.Anchor
-P:ARKit.ARHitTestResult.Distance
-P:ARKit.ARHitTestResult.LocalTransform
-P:ARKit.ARHitTestResult.Type
-P:ARKit.ARHitTestResult.WorldTransform
-P:ARKit.ARImageAnchor.EstimatedScaleFactor
-P:ARKit.ARImageAnchor.IsTracked
-P:ARKit.ARImageAnchor.ReferenceImage
P:ARKit.ARImageTrackingConfiguration.AutoFocusEnabled
-P:ARKit.ARImageTrackingConfiguration.MaximumNumberOfTrackedImages
-P:ARKit.ARImageTrackingConfiguration.TrackingImages
-P:ARKit.ARLightEstimate.AmbientColorTemperature
-P:ARKit.ARLightEstimate.AmbientIntensity
-P:ARKit.ARMeshAnchor.Geometry
-P:ARKit.ARMeshGeometry.Classification
-P:ARKit.ARMeshGeometry.Faces
-P:ARKit.ARMeshGeometry.Normals
-P:ARKit.ARMeshGeometry.Vertices
-P:ARKit.ARObjectAnchor.ReferenceObject
P:ARKit.ARObjectScanningConfiguration.AutoFocusEnabled
-P:ARKit.ARObjectScanningConfiguration.PlaneDetection
P:ARKit.AROrientationTrackingConfiguration.AutoFocusEnabled
-P:ARKit.ARPlaneAnchor.Alignment
-P:ARKit.ARPlaneAnchor.Center
-P:ARKit.ARPlaneAnchor.Classification
-P:ARKit.ARPlaneAnchor.ClassificationStatus
P:ARKit.ARPlaneAnchor.ClassificationSupported
-P:ARKit.ARPlaneAnchor.Extent
-P:ARKit.ARPlaneAnchor.Geometry
-P:ARKit.ARPlaneAnchor.PlaneExtent
-P:ARKit.ARPlaneExtent.Height
-P:ARKit.ARPlaneExtent.RotationOnYAxis
-P:ARKit.ARPlaneExtent.Width
-P:ARKit.ARPlaneGeometry.BoundaryVertexCount
-P:ARKit.ARPlaneGeometry.TextureCoordinateCount
-P:ARKit.ARPlaneGeometry.TriangleCount
-P:ARKit.ARPlaneGeometry.VertexCount
-P:ARKit.ARPointCloud.Count
P:ARKit.ARPointCloud.Identifiers
P:ARKit.ARPointCloud.Points
-P:ARKit.ARPositionalTrackingConfiguration.InitialWorldMap
-P:ARKit.ARPositionalTrackingConfiguration.PlaneDetection
-P:ARKit.ARQuickLookPreviewItem.AllowsContentScaling
-P:ARKit.ARQuickLookPreviewItem.CanonicalWebPageUrl
P:ARKit.ARQuickLookPreviewItem.PreviewItemTitle
P:ARKit.ARQuickLookPreviewItem.PreviewItemUrl
-P:ARKit.ARRaycastQuery.Direction
-P:ARKit.ARRaycastQuery.Origin
-P:ARKit.ARRaycastQuery.Target
-P:ARKit.ARRaycastQuery.TargetAlignment
-P:ARKit.ARRaycastResult.Anchor
-P:ARKit.ARRaycastResult.Target
-P:ARKit.ARRaycastResult.TargetAlignment
-P:ARKit.ARRaycastResult.WorldTransform
-P:ARKit.ARReferenceImage.Name
-P:ARKit.ARReferenceImage.PhysicalSize
-P:ARKit.ARReferenceImage.ResourceGroupName
P:ARKit.ARReferenceObject.ArchiveExtension
-P:ARKit.ARReferenceObject.Center
-P:ARKit.ARReferenceObject.Extent
-P:ARKit.ARReferenceObject.Name
-P:ARKit.ARReferenceObject.RawFeaturePoints
-P:ARKit.ARReferenceObject.ResourceGroupName
-P:ARKit.ARReferenceObject.Scale
P:ARKit.ARSCNDebugOptions.ShowFeaturePoints
P:ARKit.ARSCNDebugOptions.ShowWorldOrigin
-P:ARKit.ARSCNView.AutomaticallyUpdatesLighting
-P:ARKit.ARSCNView.Delegate
-P:ARKit.ARSCNView.RendersCameraGrain
-P:ARKit.ARSCNView.RendersMotionBlur
-P:ARKit.ARSCNView.Scene
-P:ARKit.ARSCNView.Session
-P:ARKit.ARSession.Configuration
-P:ARKit.ARSession.CurrentFrame
-P:ARKit.ARSession.Delegate
-P:ARKit.ARSession.DelegateQueue
-P:ARKit.ARSession.Identifier
-P:ARKit.ARSkeleton.Definition
-P:ARKit.ARSkeleton.JointCount
P:ARKit.ARSkeleton2D.JointLandmarks
P:ARKit.ARSkeleton3D.JointLocalTransforms
P:ARKit.ARSkeleton3D.JointModelTransforms
-P:ARKit.ARSkeletonDefinition.DefaultBody2DSkeletonDefinition
-P:ARKit.ARSkeletonDefinition.DefaultBody3DSkeletonDefinition
-P:ARKit.ARSkeletonDefinition.JointCount
-P:ARKit.ARSkeletonDefinition.JointNames
-P:ARKit.ARSkeletonDefinition.NeutralBodySkeleton3D
-P:ARKit.ARSkeletonDefinition.ParentIndices
-P:ARKit.ARSKView.Delegate
-P:ARKit.ARSKView.Session
-P:ARKit.ARVideoFormat.CaptureDevicePosition
-P:ARKit.ARVideoFormat.CaptureDeviceType
-P:ARKit.ARVideoFormat.FramesPerSecond
-P:ARKit.ARVideoFormat.ImageResolution
-P:ARKit.ARVideoFormat.IsRecommendedForHighResolutionFrameCapturing
P:ARKit.ARVideoFormat.IsVideoHdrSupported
-P:ARKit.ARWorldMap.Anchors
-P:ARKit.ARWorldMap.Center
-P:ARKit.ARWorldMap.Extent
-P:ARKit.ARWorldMap.RawFeaturePoints
-P:ARKit.ARWorldTrackingConfiguration.AppClipCodeTrackingEnabled
P:ARKit.ARWorldTrackingConfiguration.AutoFocusEnabled
-P:ARKit.ARWorldTrackingConfiguration.AutomaticImageScaleEstimationEnabled
P:ARKit.ARWorldTrackingConfiguration.CollaborationEnabled
-P:ARKit.ARWorldTrackingConfiguration.DetectionImages
-P:ARKit.ARWorldTrackingConfiguration.DetectionObjects
-P:ARKit.ARWorldTrackingConfiguration.EnvironmentTexturing
-P:ARKit.ARWorldTrackingConfiguration.InitialWorldMap
-P:ARKit.ARWorldTrackingConfiguration.MaximumNumberOfTrackedImages
-P:ARKit.ARWorldTrackingConfiguration.PlaneDetection
-P:ARKit.ARWorldTrackingConfiguration.SceneReconstruction
-P:ARKit.ARWorldTrackingConfiguration.SupportsAppClipCodeTracking
-P:ARKit.ARWorldTrackingConfiguration.SupportsUserFaceTracking
-P:ARKit.ARWorldTrackingConfiguration.UserFaceTrackingEnabled
-P:ARKit.ARWorldTrackingConfiguration.WantsHdrEnvironmentTextures
P:ARKit.GeoLocationForPoint.Altitude
P:ARKit.GeoLocationForPoint.Coordinate
P:ARKit.IARSessionProviding.Session
@@ -70427,243 +48123,17 @@ P:AssetsLibrary.ALAssetsLibrary.DeletedAssetGroupsKey
P:AssetsLibrary.ALAssetsLibrary.InsertedAssetGroupsKey
P:AssetsLibrary.ALAssetsLibrary.UpdatedAssetGroupsKey
P:AssetsLibrary.ALAssetsLibrary.UpdatedAssetsKey
-P:AudioToolbox.AudioBalanceFade.BackFrontFade
-P:AudioToolbox.AudioBalanceFade.ChannelLayout
-P:AudioToolbox.AudioBalanceFade.LeftRightBalance
-P:AudioToolbox.AudioBalanceFade.Type
-P:AudioToolbox.AudioBuffers.Count
-P:AudioToolbox.AudioBuffers.Handle
P:AudioToolbox.AudioBuffers.Item(System.Int32)
-P:AudioToolbox.AudioChannelDescription.Coords
-P:AudioToolbox.AudioChannelDescription.Name
-P:AudioToolbox.AudioChannelDescription.ShortName
-P:AudioToolbox.AudioChannelLayout.Bitmap
-P:AudioToolbox.AudioChannelLayout.Name
-P:AudioToolbox.AudioChannelLayout.SimpleName
-P:AudioToolbox.AudioChannelLayout.Tag
-P:AudioToolbox.AudioClassDescription.IsHardwareCodec
-P:AudioToolbox.AudioConverter.ApplicableEncodeBitRates
-P:AudioToolbox.AudioConverter.ApplicableEncodeSampleRates
-P:AudioToolbox.AudioConverter.AvailableEncodeBitRates
-P:AudioToolbox.AudioConverter.AvailableEncodeChannelLayoutTags
-P:AudioToolbox.AudioConverter.AvailableEncodeSampleRates
-P:AudioToolbox.AudioConverter.BitDepthHint
-P:AudioToolbox.AudioConverter.CalculateInputBufferSize
-P:AudioToolbox.AudioConverter.CalculateOutputBufferSize
-P:AudioToolbox.AudioConverter.CanResumeFromInterruption
-P:AudioToolbox.AudioConverter.ChannelMap
-P:AudioToolbox.AudioConverter.CodecQuality
-P:AudioToolbox.AudioConverter.CompressionMagicCookie
-P:AudioToolbox.AudioConverter.CurrentInputStreamDescription
-P:AudioToolbox.AudioConverter.CurrentOutputStreamDescription
-P:AudioToolbox.AudioConverter.DecodeFormats
-P:AudioToolbox.AudioConverter.DecompressionMagicCookie
-P:AudioToolbox.AudioConverter.EncodeAdjustableSampleRate
-P:AudioToolbox.AudioConverter.EncodeBitRate
-P:AudioToolbox.AudioConverter.EncodeFormats
-P:AudioToolbox.AudioConverter.FormatList
-P:AudioToolbox.AudioConverter.InputChannelLayout
-P:AudioToolbox.AudioConverter.MaximumInputPacketSize
-P:AudioToolbox.AudioConverter.MaximumOutputPacketSize
-P:AudioToolbox.AudioConverter.MinimumInputBufferSize
-P:AudioToolbox.AudioConverter.MinimumOutputBufferSize
-P:AudioToolbox.AudioConverter.OutputChannelLayout
-P:AudioToolbox.AudioConverter.PrimeInfo
-P:AudioToolbox.AudioConverter.PrimeMethod
-P:AudioToolbox.AudioConverter.SampleRateConverterComplexity
-P:AudioToolbox.AudioConverter.SampleRateConverterInitialPhase
-P:AudioToolbox.AudioConverter.SampleRateConverterQuality
-P:AudioToolbox.AudioFile.AlbumArtwork
-P:AudioToolbox.AudioFile.AudioFormats
-P:AudioToolbox.AudioFile.BitRate
-P:AudioToolbox.AudioFile.ChannelLayout
-P:AudioToolbox.AudioFile.ChunkIDs
-P:AudioToolbox.AudioFile.DataFormat
-P:AudioToolbox.AudioFile.DataOffset
-P:AudioToolbox.AudioFile.DataPacketCount
-P:AudioToolbox.AudioFile.DeferSizeUpdates
-P:AudioToolbox.AudioFile.EstimatedDuration
-P:AudioToolbox.AudioFile.FileType
-P:AudioToolbox.AudioFile.ID3Tag
-P:AudioToolbox.AudioFile.InfoDictionary
-P:AudioToolbox.AudioFile.IsOptimized
-P:AudioToolbox.AudioFile.Length
-P:AudioToolbox.AudioFile.MagicCookie
-P:AudioToolbox.AudioFile.MarkerList
-P:AudioToolbox.AudioFile.MaximumPacketSize
-P:AudioToolbox.AudioFile.PacketSizeUpperBound
-P:AudioToolbox.AudioFile.PacketTableInfo
-P:AudioToolbox.AudioFile.PacketTableInfoStatus
-P:AudioToolbox.AudioFile.RegionList
-P:AudioToolbox.AudioFile.ReserveDuration
-P:AudioToolbox.AudioFile.StreamBasicDescription
-P:AudioToolbox.AudioFile.StreamBasicDescriptionStatus
-P:AudioToolbox.AudioFileGlobalInfo.AllExtensions
-P:AudioToolbox.AudioFileGlobalInfo.AllMIMETypes
-P:AudioToolbox.AudioFileGlobalInfo.AllUTIs
-P:AudioToolbox.AudioFileGlobalInfo.ReadableTypes
-P:AudioToolbox.AudioFileGlobalInfo.WritableTypes
-P:AudioToolbox.AudioFileInfoDictionary.Album
-P:AudioToolbox.AudioFileInfoDictionary.ApproximateDurationInSeconds
-P:AudioToolbox.AudioFileInfoDictionary.Artist
-P:AudioToolbox.AudioFileInfoDictionary.ChannelLayout
-P:AudioToolbox.AudioFileInfoDictionary.Comments
-P:AudioToolbox.AudioFileInfoDictionary.Composer
-P:AudioToolbox.AudioFileInfoDictionary.Copyright
-P:AudioToolbox.AudioFileInfoDictionary.EncodingApplication
-P:AudioToolbox.AudioFileInfoDictionary.Genre
-P:AudioToolbox.AudioFileInfoDictionary.ISRC
-P:AudioToolbox.AudioFileInfoDictionary.KeySignature
-P:AudioToolbox.AudioFileInfoDictionary.Lyricist
-P:AudioToolbox.AudioFileInfoDictionary.NominalBitRate
-P:AudioToolbox.AudioFileInfoDictionary.RecordedDate
-P:AudioToolbox.AudioFileInfoDictionary.SourceBitDepth
-P:AudioToolbox.AudioFileInfoDictionary.SourceEncoder
-P:AudioToolbox.AudioFileInfoDictionary.SubTitle
-P:AudioToolbox.AudioFileInfoDictionary.Tempo
-P:AudioToolbox.AudioFileInfoDictionary.TimeSignature
-P:AudioToolbox.AudioFileInfoDictionary.Title
-P:AudioToolbox.AudioFileInfoDictionary.TrackNumber
-P:AudioToolbox.AudioFileInfoDictionary.Year
-P:AudioToolbox.AudioFileMarker.Name
-P:AudioToolbox.AudioFileMarkerList.Count
P:AudioToolbox.AudioFileMarkerList.Item(System.Int32)
-P:AudioToolbox.AudioFileMarkerList.SmpteTimeType
-P:AudioToolbox.AudioFileRegion.Count
-P:AudioToolbox.AudioFileRegion.Flags
P:AudioToolbox.AudioFileRegion.Item(System.Int32)
-P:AudioToolbox.AudioFileRegion.Name
-P:AudioToolbox.AudioFileRegion.RegionID
-P:AudioToolbox.AudioFileRegionList.Count
P:AudioToolbox.AudioFileRegionList.Item(System.Int32)
-P:AudioToolbox.AudioFileRegionList.SmpteTimeType
-P:AudioToolbox.AudioFileStream.AverageBytesPerPacket
-P:AudioToolbox.AudioFileStream.BitRate
-P:AudioToolbox.AudioFileStream.ChannelLayout
-P:AudioToolbox.AudioFileStream.DataByteCount
-P:AudioToolbox.AudioFileStream.DataFormat
-P:AudioToolbox.AudioFileStream.DataOffset
-P:AudioToolbox.AudioFileStream.DataPacketCount
-P:AudioToolbox.AudioFileStream.FileType
-P:AudioToolbox.AudioFileStream.FormatList
-P:AudioToolbox.AudioFileStream.LastError
-P:AudioToolbox.AudioFileStream.MagicCookie
-P:AudioToolbox.AudioFileStream.MaximumPacketSize
-P:AudioToolbox.AudioFileStream.PacketSizeUpperBound
-P:AudioToolbox.AudioFileStream.PacketTableInfo
-P:AudioToolbox.AudioFileStream.ReadyToProducePackets
-P:AudioToolbox.AudioFileStream.StreamBasicDescription
P:AudioToolbox.AudioPacketDependencyInfoTranslation.IsIndependentlyDecodable
-P:AudioToolbox.AudioPanningInfo.CoordinateFlags
-P:AudioToolbox.AudioPanningInfo.Coordinates
-P:AudioToolbox.AudioPanningInfo.GainScale
-P:AudioToolbox.AudioPanningInfo.OutputChannelMap
-P:AudioToolbox.AudioPanningInfo.PanningMode
-P:AudioToolbox.AudioQueue.AudioStreamDescription
-P:AudioToolbox.AudioQueue.ChannelLayout
-P:AudioToolbox.AudioQueue.ConverterError
-P:AudioToolbox.AudioQueue.CurrentDevice
-P:AudioToolbox.AudioQueue.CurrentLevelMeter
-P:AudioToolbox.AudioQueue.CurrentLevelMeterDB
-P:AudioToolbox.AudioQueue.CurrentTime
-P:AudioToolbox.AudioQueue.DecodeBufferSizeFrames
-P:AudioToolbox.AudioQueue.DeviceChannels
-P:AudioToolbox.AudioQueue.EnableLevelMetering
-P:AudioToolbox.AudioQueue.Handle
-P:AudioToolbox.AudioQueue.HardwareCodecPolicy
-P:AudioToolbox.AudioQueue.IsRunning
-P:AudioToolbox.AudioQueue.MagicCookie
-P:AudioToolbox.AudioQueue.MaximumOutputPacketSize
-P:AudioToolbox.AudioQueue.Pan
-P:AudioToolbox.AudioQueue.SampleRate
-P:AudioToolbox.AudioQueue.Volume
-P:AudioToolbox.AudioQueue.VolumeRampTime
-P:AudioToolbox.AudioQueueBuffer.PacketDescriptions
-P:AudioToolbox.AudioQueueException.ErrorCode
-P:AudioToolbox.AudioQueueProcessingTap.MaxFrames
-P:AudioToolbox.AudioQueueProcessingTap.ProcessingFormat
-P:AudioToolbox.AudioSource.Size
-P:AudioToolbox.AudioStreamBasicDescription.FormatName
-P:AudioToolbox.AudioStreamBasicDescription.IsEncrypted
-P:AudioToolbox.AudioStreamBasicDescription.IsExternallyFramed
-P:AudioToolbox.AudioStreamBasicDescription.IsVariableBitrate
-P:AudioToolbox.BufferCompletedEventArgs.IntPtrBuffer
-P:AudioToolbox.BufferCompletedEventArgs.UnsafeBuffer
-P:AudioToolbox.InputCompletedEventArgs.Buffer
-P:AudioToolbox.InputCompletedEventArgs.IntPtrBuffer
-P:AudioToolbox.InputCompletedEventArgs.PacketDescriptions
-P:AudioToolbox.InputCompletedEventArgs.TimeStamp
-P:AudioToolbox.InputCompletedEventArgs.UnsafeBuffer
-P:AudioToolbox.InstrumentInfo.Dictionary
-P:AudioToolbox.InstrumentInfo.LSB
-P:AudioToolbox.InstrumentInfo.MSB
-P:AudioToolbox.InstrumentInfo.Name
-P:AudioToolbox.InstrumentInfo.Program
-P:AudioToolbox.MusicPlayer.IsPlaying
-P:AudioToolbox.MusicPlayer.MusicSequence
-P:AudioToolbox.MusicPlayer.PlayRateScalar
-P:AudioToolbox.MusicPlayer.Time
-P:AudioToolbox.MusicSequence.AUGraph
-P:AudioToolbox.MusicSequence.SequenceType
-P:AudioToolbox.MusicSequence.TrackCount
-P:AudioToolbox.MusicTrack.MuteStatus
-P:AudioToolbox.MusicTrack.Sequence
-P:AudioToolbox.MusicTrack.SoloStatus
-P:AudioToolbox.MusicTrack.TrackLength
-P:AudioToolbox.PacketReceivedEventArgs.Bytes
-P:AudioToolbox.PacketReceivedEventArgs.InputData
-P:AudioToolbox.PacketReceivedEventArgs.PacketDescriptions
-P:AudioToolbox.PropertyFoundEventArgs.Flags
-P:AudioToolbox.PropertyFoundEventArgs.Property
-P:AudioToolbox.SmpteTime.FlagsStrong
-P:AudioToolbox.SmpteTime.TypeStrong
-P:AudioToolbox.SystemSound.CompletePlaybackIfAppDies
-P:AudioToolbox.SystemSound.IsUISound
P:AudioToolbox.SystemSound.SoundId
-P:AudioUnit.AUAudioUnit.AllParameterValues
-P:AudioUnit.AUAudioUnit.AudioComponentInstanceInvalidationNotification
-P:AudioUnit.AUAudioUnit.AudioComponentRegistrationsChangedNotification
-P:AudioUnit.AUAudioUnit.AudioUnitName
-P:AudioUnit.AUAudioUnit.CanProcessInPlace
-P:AudioUnit.AUAudioUnit.ChannelCapabilities
-P:AudioUnit.AUAudioUnit.ChannelMap
-P:AudioUnit.AUAudioUnit.Component
-P:AudioUnit.AUAudioUnit.ComponentDescription
-P:AudioUnit.AUAudioUnit.ComponentName
-P:AudioUnit.AUAudioUnit.ComponentVersion
-P:AudioUnit.AUAudioUnit.ContextName
-P:AudioUnit.AUAudioUnit.CurrentPreset
-P:AudioUnit.AUAudioUnit.FactoryPresets
-P:AudioUnit.AUAudioUnit.FullState
-P:AudioUnit.AUAudioUnit.FullStateForDocument
-P:AudioUnit.AUAudioUnit.InputBusses
-P:AudioUnit.AUAudioUnit.InternalRenderBlock
P:AudioUnit.AUAudioUnit.IsLoadedInProcess
-P:AudioUnit.AUAudioUnit.Latency
-P:AudioUnit.AUAudioUnit.ManufacturerName
-P:AudioUnit.AUAudioUnit.MaximumFramesToRender
-P:AudioUnit.AUAudioUnit.MidiOutputBufferSizeHint
-P:AudioUnit.AUAudioUnit.MidiOutputEventBlock
-P:AudioUnit.AUAudioUnit.MidiOutputNames
P:AudioUnit.AUAudioUnit.MigrateFromPlugin
-P:AudioUnit.AUAudioUnit.MusicDeviceOrEffect
-P:AudioUnit.AUAudioUnit.OutputBusses
-P:AudioUnit.AUAudioUnit.ParameterTree
P:AudioUnit.AUAudioUnit.ProfileChangedCallback
-P:AudioUnit.AUAudioUnit.ProvidesUserInterface
-P:AudioUnit.AUAudioUnit.RenderBlock
-P:AudioUnit.AUAudioUnit.RenderingOffline
-P:AudioUnit.AUAudioUnit.RenderQuality
-P:AudioUnit.AUAudioUnit.RenderResourcesAllocated
-P:AudioUnit.AUAudioUnit.ScheduleParameterBlock
-P:AudioUnit.AUAudioUnit.ShortName
-P:AudioUnit.AUAudioUnit.ShouldBypassEffect
-P:AudioUnit.AUAudioUnit.SupportsMpe
P:AudioUnit.AUAudioUnit.SupportsUserPresets
-P:AudioUnit.AUAudioUnit.TailTime
-P:AudioUnit.AUAudioUnit.TransportStateBlock
P:AudioUnit.AUAudioUnit.UserPresets
-P:AudioUnit.AUAudioUnit.VirtualMidiCableCount
P:AudioUnit.AUAudioUnitBus.BusType
P:AudioUnit.AUAudioUnitBus.ContextPresentationLatency
P:AudioUnit.AUAudioUnitBus.Enabled
@@ -70679,87 +48149,6 @@ P:AudioUnit.AUAudioUnitBusArray.BusType
P:AudioUnit.AUAudioUnitBusArray.Count
P:AudioUnit.AUAudioUnitBusArray.CountChangeable
P:AudioUnit.AUAudioUnitBusArray.OwnerAudioUnit
-P:AudioUnit.AUAudioUnitPreset.Name
-P:AudioUnit.AUAudioUnitPreset.Number
-P:AudioUnit.AudioComponent.ComponentList
-P:AudioUnit.AudioComponent.Description
-P:AudioUnit.AudioComponent.LastActiveTime
-P:AudioUnit.AudioComponent.Name
-P:AudioUnit.AudioComponent.Version
-P:AudioUnit.AudioComponentInfo.FactoryFunction
-P:AudioUnit.AudioComponentInfo.Manufacturer
-P:AudioUnit.AudioComponentInfo.Name
-P:AudioUnit.AudioComponentInfo.ResourceUsage
-P:AudioUnit.AudioComponentInfo.SandboxSafe
-P:AudioUnit.AudioComponentInfo.Subtype
-P:AudioUnit.AudioComponentInfo.Tags
-P:AudioUnit.AudioComponentInfo.Type
-P:AudioUnit.AudioComponentInfo.Version
-P:AudioUnit.AudioUnit.Component
-P:AudioUnit.AudioUnit.IsPlaying
-P:AudioUnit.AudioUnitParameterInfo.ClumpID
-P:AudioUnit.AudioUnitParameterInfo.DefaultValue
-P:AudioUnit.AudioUnitParameterInfo.Flags
-P:AudioUnit.AudioUnitParameterInfo.MaxValue
-P:AudioUnit.AudioUnitParameterInfo.MinValue
-P:AudioUnit.AudioUnitParameterInfo.Name
-P:AudioUnit.AudioUnitParameterInfo.Type
-P:AudioUnit.AudioUnitParameterInfo.Unit
-P:AudioUnit.AudioUnitParameterInfo.UnitName
-P:AudioUnit.AUGraph.IsInitialized
-P:AudioUnit.AUGraph.IsOpen
-P:AudioUnit.AUGraph.IsRunning
-P:AudioUnit.AUParameter.Address
-P:AudioUnit.AUParameter.DependentParameters
-P:AudioUnit.AUParameter.Flags
-P:AudioUnit.AUParameter.MaxValue
-P:AudioUnit.AUParameter.MinValue
-P:AudioUnit.AUParameter.Unit
-P:AudioUnit.AUParameter.UnitName
-P:AudioUnit.AUParameter.Value
-P:AudioUnit.AUParameter.ValueStrings
-P:AudioUnit.AUParameterEvent.Next
-P:AudioUnit.AUParameterGroup.AllParameters
-P:AudioUnit.AUParameterGroup.Children
-P:AudioUnit.AUParameterNode.DisplayName
-P:AudioUnit.AUParameterNode.Identifier
-P:AudioUnit.AUParameterNode.ImplementorDisplayNameWithLengthCallback
-P:AudioUnit.AUParameterNode.ImplementorStringFromValueCallback
-P:AudioUnit.AUParameterNode.ImplementorValueFromStringCallback
-P:AudioUnit.AUParameterNode.ImplementorValueObserver
-P:AudioUnit.AUParameterNode.ImplementorValueProvider
-P:AudioUnit.AUParameterNode.KeyPath
-P:AudioUnit.AURenderEventEnumerator.Current
-P:AudioUnit.AURenderEventEnumerator.First
-P:AudioUnit.AURenderEventEnumerator.Handle
-P:AudioUnit.AURenderEventEnumerator.IsAtEnd
-P:AudioUnit.AURenderEventEnumerator.IsEmpty
-P:AudioUnit.AURenderEventEnumerator.UnsafeFirst
-P:AudioUnit.AURenderEventHeader.Next
-P:AudioUnit.AUScheduledAudioFileRegion.AudioFile
-P:AudioUnit.AUScheduledAudioFileRegion.FramesToPlay
-P:AudioUnit.AUScheduledAudioFileRegion.LoopCount
-P:AudioUnit.AUScheduledAudioFileRegion.StartFrame
-P:AudioUnit.AUScheduledAudioFileRegion.TimeStamp
-P:AudioUnit.ClassInfoDictionary.Manufacturer
-P:AudioUnit.ClassInfoDictionary.Name
-P:AudioUnit.ClassInfoDictionary.Type
-P:AudioUnit.ExtAudioFile.AudioConverter
-P:AudioUnit.ExtAudioFile.AudioFile
-P:AudioUnit.ExtAudioFile.ClientDataFormat
-P:AudioUnit.ExtAudioFile.ClientMaxPacketSize
-P:AudioUnit.ExtAudioFile.FileDataFormat
-P:AudioUnit.ExtAudioFile.FileLengthFrames
-P:AudioUnit.ExtAudioFile.FileMaxPacketSize
-P:AudioUnit.ResourceUsageInfo.IOKitUserClient
-P:AudioUnit.ResourceUsageInfo.MachLookUpGlobalName
-P:AudioUnit.ResourceUsageInfo.NetworkClient
-P:AudioUnit.ResourceUsageInfo.TemporaryExceptionReadWrite
-P:AudioUnit.SamplerInstrumentData.BankLSB
-P:AudioUnit.SamplerInstrumentData.BankMSB
-P:AudioUnit.SamplerInstrumentData.FileUrl
-P:AudioUnit.SamplerInstrumentData.InstrumentType
-P:AudioUnit.SamplerInstrumentData.PresetID
P:AuthenticationServices.ASAccountAuthenticationModificationController.Delegate
P:AuthenticationServices.ASAccountAuthenticationModificationController.PresentationContextProvider
P:AuthenticationServices.ASAccountAuthenticationModificationController.WeakDelegate
@@ -71136,7 +48525,6 @@ P:AutomaticAssessmentConfiguration.AEAssessmentSession.Delegate
P:AutomaticAssessmentConfiguration.AEAssessmentSession.SupportsConfigurationUpdates
P:AutomaticAssessmentConfiguration.AEAssessmentSession.SupportsMultipleParticipants
P:AutomaticAssessmentConfiguration.AEAssessmentSession.WeakDelegate
-P:AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs.AudioRendererFlushTime
P:AVFoundation.AudioSettings.AudioQuality
P:AVFoundation.AudioSettings.BitRateStrategy
P:AVFoundation.AudioSettings.ChannelLayout
@@ -71153,66 +48541,23 @@ P:AVFoundation.AudioSettings.NumberChannels
P:AVFoundation.AudioSettings.SampleRate
P:AVFoundation.AudioSettings.SampleRateConverterAlgorithm
P:AVFoundation.AudioSettings.SampleRateConverterAudioQuality
-P:AVFoundation.AVAggregateAssetDownloadTask.UrlAsset
-P:AVFoundation.AVAsset.AllMediaSelections
-P:AVFoundation.AVAsset.AvailableChapterLocales
-P:AVFoundation.AVAsset.AvailableMediaCharacteristicsWithMediaSelectionOptions
-P:AVFoundation.AVAsset.AvailableMetadataFormats
-P:AVFoundation.AVAsset.CanContainFragments
P:AVFoundation.AVAsset.ChapterMetadataGroupsDidChangeNotification
-P:AVFoundation.AVAsset.CommonMetadata
P:AVFoundation.AVAsset.CompatibleWithAirPlayVideo
P:AVFoundation.AVAsset.CompatibleWithSavedPhotosAlbum
P:AVFoundation.AVAsset.Composable
-P:AVFoundation.AVAsset.ContainsFragments
P:AVFoundation.AVAsset.ContainsFragmentsDidChangeNotification
-P:AVFoundation.AVAsset.CreationDate
-P:AVFoundation.AVAsset.Duration
P:AVFoundation.AVAsset.DurationDidChangeNotification
P:AVFoundation.AVAsset.Exportable
-P:AVFoundation.AVAsset.Lyrics
P:AVFoundation.AVAsset.MediaSelectionGroupsDidChangeNotification
-P:AVFoundation.AVAsset.Metadata
-P:AVFoundation.AVAsset.MinimumTimeOffsetFromLive
-P:AVFoundation.AVAsset.NaturalSize
-P:AVFoundation.AVAsset.OverallDurationHint
P:AVFoundation.AVAsset.Playable
-P:AVFoundation.AVAsset.PreferredDisplayCriteria
-P:AVFoundation.AVAsset.PreferredMediaSelection
-P:AVFoundation.AVAsset.PreferredRate
-P:AVFoundation.AVAsset.PreferredTransform
-P:AVFoundation.AVAsset.PreferredVolume
-P:AVFoundation.AVAsset.ProtectedContent
-P:AVFoundation.AVAsset.ProvidesPreciseDurationAndTiming
P:AVFoundation.AVAsset.Readable
-P:AVFoundation.AVAsset.ReferenceRestrictions
-P:AVFoundation.AVAsset.TrackGroups
-P:AVFoundation.AVAsset.Tracks
-P:AVFoundation.AVAsset.UnusedTrackId
P:AVFoundation.AVAsset.WasDefragmentedNotification
P:AVFoundation.AVAssetCache.IsPlayableOffline
-P:AVFoundation.AVAssetDownloadConfiguration.ArtworkData
-P:AVFoundation.AVAssetDownloadConfiguration.AuxiliaryContentConfigurations
-P:AVFoundation.AVAssetDownloadConfiguration.OptimizesAuxiliaryContentConfigurations
-P:AVFoundation.AVAssetDownloadConfiguration.PrimaryContentConfiguration
-P:AVFoundation.AVAssetDownloadContentConfiguration.MediaSelections
-P:AVFoundation.AVAssetDownloadContentConfiguration.VariantQualifiers
P:AVFoundation.AVAssetDownloadOptions.MediaSelection
P:AVFoundation.AVAssetDownloadOptions.MediaSelectionPrefersMultichannel
P:AVFoundation.AVAssetDownloadOptions.MinimumRequiredMediaBitrate
P:AVFoundation.AVAssetDownloadOptions.MinimumRequiredPresentationSize
P:AVFoundation.AVAssetDownloadOptions.PrefersHdr
-P:AVFoundation.AVAssetDownloadStorageManagementPolicy.ExpirationDate
-P:AVFoundation.AVAssetDownloadStorageManagementPolicy.Priority
-P:AVFoundation.AVAssetDownloadStorageManager.SharedDownloadStorageManager
-P:AVFoundation.AVAssetDownloadTask.CurrentRequest
-P:AVFoundation.AVAssetDownloadTask.DestinationUrl
-P:AVFoundation.AVAssetDownloadTask.LoadedTimeRanges
-P:AVFoundation.AVAssetDownloadTask.Options
-P:AVFoundation.AVAssetDownloadTask.OriginalRequest
-P:AVFoundation.AVAssetDownloadTask.Response
-P:AVFoundation.AVAssetDownloadTask.UrlAsset
-P:AVFoundation.AVAssetDownloadUrlSession.SharedSession
P:AVFoundation.AVAssetExportPresetApple.M4V1080pHD
P:AVFoundation.AVAssetExportPresetApple.M4V480pSD
P:AVFoundation.AVAssetExportPresetApple.M4V720pHD
@@ -71221,25 +48566,8 @@ P:AVFoundation.AVAssetExportPresetApple.M4VCellular
P:AVFoundation.AVAssetExportPresetApple.M4ViPod
P:AVFoundation.AVAssetExportPresetApple.M4VWiFi
P:AVFoundation.AVAssetExportPresetApple.ProRes422Lpcm
-P:AVFoundation.AVAssetExportSession.AllExportPresets
-P:AVFoundation.AVAssetExportSession.AllowsParallelizedExport
-P:AVFoundation.AVAssetExportSession.Asset
-P:AVFoundation.AVAssetExportSession.AudioMix
-P:AVFoundation.AVAssetExportSession.AudioTimePitchAlgorithm
-P:AVFoundation.AVAssetExportSession.AudioTrackGroupHandling
P:AVFoundation.AVAssetExportSession.AVAssetExportPresetMvHevc1440x1440
P:AVFoundation.AVAssetExportSession.AVAssetExportPresetMvHevc960x960
-P:AVFoundation.AVAssetExportSession.CanPerformMultiplePassesOverSourceMediaData
-P:AVFoundation.AVAssetExportSession.CustomVideoCompositor
-P:AVFoundation.AVAssetExportSession.DirectoryForTemporaryFiles
-P:AVFoundation.AVAssetExportSession.Error
-P:AVFoundation.AVAssetExportSession.EstimatedOutputFileLength
-P:AVFoundation.AVAssetExportSession.FileLengthLimit
-P:AVFoundation.AVAssetExportSession.MaxDuration
-P:AVFoundation.AVAssetExportSession.Metadata
-P:AVFoundation.AVAssetExportSession.MetadataItemFilter
-P:AVFoundation.AVAssetExportSession.OutputFileType
-P:AVFoundation.AVAssetExportSession.OutputUrl
P:AVFoundation.AVAssetExportSession.Preset1280x720
P:AVFoundation.AVAssetExportSession.Preset1920x1080
P:AVFoundation.AVAssetExportSession.Preset3840x2160
@@ -71257,208 +48585,44 @@ P:AVFoundation.AVAssetExportSession.PresetHevcHighestQualityWithAlpha
P:AVFoundation.AVAssetExportSession.PresetHighestQuality
P:AVFoundation.AVAssetExportSession.PresetLowQuality
P:AVFoundation.AVAssetExportSession.PresetMediumQuality
-P:AVFoundation.AVAssetExportSession.PresetName
P:AVFoundation.AVAssetExportSession.PresetPassthrough
-P:AVFoundation.AVAssetExportSession.Progress
-P:AVFoundation.AVAssetExportSession.ShouldOptimizeForNetworkUse
-P:AVFoundation.AVAssetExportSession.Status
-P:AVFoundation.AVAssetExportSession.SupportedFileTypes
-P:AVFoundation.AVAssetExportSession.TimeRange
-P:AVFoundation.AVAssetExportSession.VideoComposition
-P:AVFoundation.AVAssetImageGenerator.ApertureMode
P:AVFoundation.AVAssetImageGenerator.ApertureModeCleanAperture
P:AVFoundation.AVAssetImageGenerator.ApertureModeEncodedPixels
P:AVFoundation.AVAssetImageGenerator.ApertureModeProductionAperture
-P:AVFoundation.AVAssetImageGenerator.AppliesPreferredTrackTransform
-P:AVFoundation.AVAssetImageGenerator.Asset
-P:AVFoundation.AVAssetImageGenerator.CustomVideoCompositor
-P:AVFoundation.AVAssetImageGenerator.DynamicRangePolicy
-P:AVFoundation.AVAssetImageGenerator.MaximumSize
-P:AVFoundation.AVAssetImageGenerator.RequestedTimeToleranceAfter
-P:AVFoundation.AVAssetImageGenerator.RequestedTimeToleranceBefore
-P:AVFoundation.AVAssetImageGenerator.VideoComposition
P:AVFoundation.AVAssetImageGenerator.WeakDynamicRangePolicy
-P:AVFoundation.AVAssetReader.Asset
-P:AVFoundation.AVAssetReader.Error
-P:AVFoundation.AVAssetReader.Outputs
-P:AVFoundation.AVAssetReader.Status
-P:AVFoundation.AVAssetReader.TimeRange
-P:AVFoundation.AVAssetReaderAudioMixOutput.AudioMix
-P:AVFoundation.AVAssetReaderAudioMixOutput.AudioTimePitchAlgorithm
-P:AVFoundation.AVAssetReaderAudioMixOutput.AudioTracks
P:AVFoundation.AVAssetReaderAudioMixOutput.Settings
-P:AVFoundation.AVAssetReaderOutput.AlwaysCopiesSampleData
-P:AVFoundation.AVAssetReaderOutput.MediaType
-P:AVFoundation.AVAssetReaderOutput.SupportsRandomAccess
-P:AVFoundation.AVAssetReaderOutputCaptionAdaptor.AssetReaderTrackOutput
P:AVFoundation.AVAssetReaderOutputCaptionAdaptor.ValidationDelegate
-P:AVFoundation.AVAssetReaderOutputCaptionAdaptor.WeakValidationDelegate
-P:AVFoundation.AVAssetReaderOutputMetadataAdaptor.AssetReaderTrackOutput
-P:AVFoundation.AVAssetReaderSampleReferenceOutput.Track
-P:AVFoundation.AVAssetReaderTrackOutput.AudioTimePitchAlgorithm
-P:AVFoundation.AVAssetReaderTrackOutput.OutputSettings
-P:AVFoundation.AVAssetReaderTrackOutput.Track
-P:AVFoundation.AVAssetReaderVideoCompositionOutput.CustomVideoCompositor
P:AVFoundation.AVAssetReaderVideoCompositionOutput.UncompressedVideoSettings
-P:AVFoundation.AVAssetReaderVideoCompositionOutput.VideoComposition
-P:AVFoundation.AVAssetReaderVideoCompositionOutput.VideoTracks
-P:AVFoundation.AVAssetReaderVideoCompositionOutput.WeakVideoSettings
-P:AVFoundation.AVAssetResourceLoader.Delegate
-P:AVFoundation.AVAssetResourceLoader.DelegateQueue
-P:AVFoundation.AVAssetResourceLoader.PreloadsEligibleContentKeys
-P:AVFoundation.AVAssetResourceLoader.SendsCommonMediaClientDataAsHttpHeaders
-P:AVFoundation.AVAssetResourceLoadingContentInformationRequest.AllowedContentTypes
P:AVFoundation.AVAssetResourceLoadingContentInformationRequest.ByteRangeAccessSupported
-P:AVFoundation.AVAssetResourceLoadingContentInformationRequest.ContentLength
-P:AVFoundation.AVAssetResourceLoadingContentInformationRequest.ContentType
P:AVFoundation.AVAssetResourceLoadingContentInformationRequest.EntireLengthAvailableOnDemand
-P:AVFoundation.AVAssetResourceLoadingContentInformationRequest.RenewalDate
-P:AVFoundation.AVAssetResourceLoadingDataRequest.CurrentOffset
-P:AVFoundation.AVAssetResourceLoadingDataRequest.RequestedLength
-P:AVFoundation.AVAssetResourceLoadingDataRequest.RequestedOffset
-P:AVFoundation.AVAssetResourceLoadingDataRequest.RequestsAllDataToEndOfResource
-P:AVFoundation.AVAssetResourceLoadingRequest.ContentInformationRequest
-P:AVFoundation.AVAssetResourceLoadingRequest.DataRequest
P:AVFoundation.AVAssetResourceLoadingRequest.Finished
P:AVFoundation.AVAssetResourceLoadingRequest.IsCancelled
-P:AVFoundation.AVAssetResourceLoadingRequest.Redirect
-P:AVFoundation.AVAssetResourceLoadingRequest.Request
-P:AVFoundation.AVAssetResourceLoadingRequest.Requestor
-P:AVFoundation.AVAssetResourceLoadingRequest.Response
P:AVFoundation.AVAssetResourceLoadingRequest.StreamingContentKeyRequestRequiresPersistentKey
-P:AVFoundation.AVAssetResourceLoadingRequestor.ProvidesExpiredSessionReports
-P:AVFoundation.AVAssetSegmentReport.SegmentType
-P:AVFoundation.AVAssetSegmentReport.TrackReports
-P:AVFoundation.AVAssetSegmentReportSampleInformation.IsSyncSample
-P:AVFoundation.AVAssetSegmentReportSampleInformation.Length
-P:AVFoundation.AVAssetSegmentReportSampleInformation.Offset
-P:AVFoundation.AVAssetSegmentReportSampleInformation.PresentationTimeStamp
-P:AVFoundation.AVAssetSegmentTrackReport.Duration
-P:AVFoundation.AVAssetSegmentTrackReport.EarliestPresentationTimeStamp
-P:AVFoundation.AVAssetSegmentTrackReport.FirstVideoSampleInformation
-P:AVFoundation.AVAssetSegmentTrackReport.MediaType
-P:AVFoundation.AVAssetSegmentTrackReport.TrackId
-P:AVFoundation.AVAssetTrack.Asset
-P:AVFoundation.AVAssetTrack.AvailableMetadataFormats
-P:AVFoundation.AVAssetTrack.AvailableTrackAssociationTypes
-P:AVFoundation.AVAssetTrack.CanProvideSampleCursors
-P:AVFoundation.AVAssetTrack.CommonMetadata
P:AVFoundation.AVAssetTrack.Decodable
P:AVFoundation.AVAssetTrack.Enabled
-P:AVFoundation.AVAssetTrack.EstimatedDataRate
-P:AVFoundation.AVAssetTrack.ExtendedLanguageTag
P:AVFoundation.AVAssetTrack.FormatDescriptions
-P:AVFoundation.AVAssetTrack.FormatDescriptionsAsObjects
-P:AVFoundation.AVAssetTrack.HasAudioSampleDependencies
-P:AVFoundation.AVAssetTrack.LanguageCode
-P:AVFoundation.AVAssetTrack.MediaType
-P:AVFoundation.AVAssetTrack.Metadata
-P:AVFoundation.AVAssetTrack.MinFrameDuration
-P:AVFoundation.AVAssetTrack.NaturalSize
-P:AVFoundation.AVAssetTrack.NaturalTimeScale
-P:AVFoundation.AVAssetTrack.NominalFrameRate
P:AVFoundation.AVAssetTrack.Playable
-P:AVFoundation.AVAssetTrack.PreferredTransform
-P:AVFoundation.AVAssetTrack.PreferredVolume
-P:AVFoundation.AVAssetTrack.RequiresFrameReordering
-P:AVFoundation.AVAssetTrack.Segments
P:AVFoundation.AVAssetTrack.SegmentsDidChangeNotification
P:AVFoundation.AVAssetTrack.SelfContained
-P:AVFoundation.AVAssetTrack.TimeRange
P:AVFoundation.AVAssetTrack.TimeRangeDidChangeNotification
-P:AVFoundation.AVAssetTrack.TotalSampleDataLength
P:AVFoundation.AVAssetTrack.TrackAssociationsDidChangeNotification
-P:AVFoundation.AVAssetTrack.TrackID
-P:AVFoundation.AVAssetTrackGroup.TrackIDs
P:AVFoundation.AVAssetTrackSegment.Empty
-P:AVFoundation.AVAssetTrackSegment.TimeMapping
P:AVFoundation.AVAssetTrackTrackAssociation.AudioFallback
P:AVFoundation.AVAssetTrackTrackAssociation.ChapterList
P:AVFoundation.AVAssetTrackTrackAssociation.ForcedSubtitlesOnly
P:AVFoundation.AVAssetTrackTrackAssociation.MetadataReferent
P:AVFoundation.AVAssetTrackTrackAssociation.SelectionFollower
P:AVFoundation.AVAssetTrackTrackAssociation.Timecode
-P:AVFoundation.AVAssetVariant.AudioAttributes
-P:AVFoundation.AVAssetVariant.AverageBitRate
-P:AVFoundation.AVAssetVariant.PeakBitRate
-P:AVFoundation.AVAssetVariant.VideoAttributes
-P:AVFoundation.AVAssetVariantAudioAttributes.FormatIds
P:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes.Binaural
-P:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes.ChannelCount
P:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes.Downmix
P:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes.Immersive
-P:AVFoundation.AVAssetVariantVideoAttributes.CodecTypes
-P:AVFoundation.AVAssetVariantVideoAttributes.NominalFrameRate
-P:AVFoundation.AVAssetVariantVideoAttributes.PresentationSize
-P:AVFoundation.AVAssetVariantVideoAttributes.VideoLayoutAttributes
-P:AVFoundation.AVAssetVariantVideoAttributes.VideoRange
-P:AVFoundation.AVAssetVariantVideoLayoutAttributes.StereoViewComponents
-P:AVFoundation.AVAssetWriter.AvailableMediaTypes
P:AVFoundation.AVAssetWriter.Delegate
-P:AVFoundation.AVAssetWriter.DirectoryForTemporaryFiles
-P:AVFoundation.AVAssetWriter.Error
-P:AVFoundation.AVAssetWriter.InitialMovieFragmentInterval
-P:AVFoundation.AVAssetWriter.InitialMovieFragmentSequenceNumber
-P:AVFoundation.AVAssetWriter.InitialSegmentStartTime
-P:AVFoundation.AVAssetWriter.InputGroups
P:AVFoundation.AVAssetWriter.Inputs
-P:AVFoundation.AVAssetWriter.Metadata
-P:AVFoundation.AVAssetWriter.MovieFragmentInterval
-P:AVFoundation.AVAssetWriter.MovieTimeScale
-P:AVFoundation.AVAssetWriter.OutputFileType
-P:AVFoundation.AVAssetWriter.OutputFileTypeProfile
-P:AVFoundation.AVAssetWriter.OutputURL
-P:AVFoundation.AVAssetWriter.OverallDurationHint
-P:AVFoundation.AVAssetWriter.PreferredOutputSegmentInterval
-P:AVFoundation.AVAssetWriter.ProducesCombinableFragments
-P:AVFoundation.AVAssetWriter.ShouldOptimizeForNetworkUse
-P:AVFoundation.AVAssetWriter.Status
-P:AVFoundation.AVAssetWriter.WeakDelegate
-P:AVFoundation.AVAssetWriterInput.CanPerformMultiplePasses
-P:AVFoundation.AVAssetWriterInput.CurrentPassDescription
-P:AVFoundation.AVAssetWriterInput.ExpectsMediaDataInRealTime
-P:AVFoundation.AVAssetWriterInput.ExtendedLanguageTag
-P:AVFoundation.AVAssetWriterInput.LanguageCode
-P:AVFoundation.AVAssetWriterInput.MarksOutputTrackAsEnabled
-P:AVFoundation.AVAssetWriterInput.MediaDataLocation
-P:AVFoundation.AVAssetWriterInput.MediaTimeScale
-P:AVFoundation.AVAssetWriterInput.MediaType
-P:AVFoundation.AVAssetWriterInput.Metadata
-P:AVFoundation.AVAssetWriterInput.NaturalSize
-P:AVFoundation.AVAssetWriterInput.OutputSettings
-P:AVFoundation.AVAssetWriterInput.PerformsMultiPassEncodingIfSupported
-P:AVFoundation.AVAssetWriterInput.PreferredMediaChunkAlignment
-P:AVFoundation.AVAssetWriterInput.PreferredMediaChunkDuration
-P:AVFoundation.AVAssetWriterInput.PreferredVolume
P:AVFoundation.AVAssetWriterInput.ReadyForMoreMediaData
-P:AVFoundation.AVAssetWriterInput.SampleReferenceBaseUrl
-P:AVFoundation.AVAssetWriterInput.SourceFormatHint
-P:AVFoundation.AVAssetWriterInput.Transform
-P:AVFoundation.AVAssetWriterInputCaptionAdaptor.AssetWriterInput
-P:AVFoundation.AVAssetWriterInputGroup.DefaultInput
-P:AVFoundation.AVAssetWriterInputGroup.Inputs
-P:AVFoundation.AVAssetWriterInputMetadataAdaptor.AssetWriterInput
-P:AVFoundation.AVAssetWriterInputPassDescription.SourceTimeRanges
-P:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.AssetWriterInput
P:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.Attributes
-P:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.PixelBufferPool
-P:AVFoundation.AVAssetWriterInputPixelBufferAdaptor.SourcePixelBufferAttributes
-P:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor.AssetWriterInput
-P:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor.PixelBufferPool
-P:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor.SourcePixelBufferAttributes
-P:AVFoundation.AVAsynchronousCIImageFilteringRequest.CompositionTime
-P:AVFoundation.AVAsynchronousCIImageFilteringRequest.RenderSize
-P:AVFoundation.AVAsynchronousCIImageFilteringRequest.SourceImage
-P:AVFoundation.AVAsynchronousVideoCompositionRequest.CompositionTime
-P:AVFoundation.AVAsynchronousVideoCompositionRequest.RenderContext
-P:AVFoundation.AVAsynchronousVideoCompositionRequest.SourceSampleDataTrackIds
-P:AVFoundation.AVAsynchronousVideoCompositionRequest.SourceTrackIDs
-P:AVFoundation.AVAsynchronousVideoCompositionRequest.VideoCompositionInstruction
P:AVFoundation.AVAudio3DMixing.Obstruction
P:AVFoundation.AVAudio3DMixing.Occlusion
P:AVFoundation.AVAudio3DMixing.PointSourceInHeadMode
-P:AVFoundation.AVAudio3DMixing.Position
-P:AVFoundation.AVAudio3DMixing.Rate
P:AVFoundation.AVAudio3DMixing.RenderingAlgorithm
P:AVFoundation.AVAudio3DMixing.ReverbBlend
P:AVFoundation.AVAudio3DMixing.SourceMode
@@ -71468,15 +48632,8 @@ P:AVFoundation.AVAudioApplication.MicrophoneInjectionPermission
P:AVFoundation.AVAudioApplication.MuteStateKey
P:AVFoundation.AVAudioApplication.RecordPermission
P:AVFoundation.AVAudioApplication.SharedInstance
-P:AVFoundation.AVAudioBuffer.AudioBufferList
-P:AVFoundation.AVAudioBuffer.Format
-P:AVFoundation.AVAudioBuffer.MutableAudioBufferList
-P:AVFoundation.AVAudioChannelLayout.ChannelCount
-P:AVFoundation.AVAudioChannelLayout.Layout
-P:AVFoundation.AVAudioChannelLayout.LayoutTag
P:AVFoundation.AVAudioCompressedBuffer.ByteCapacity
P:AVFoundation.AVAudioCompressedBuffer.ByteLength
-P:AVFoundation.AVAudioCompressedBuffer.Data
P:AVFoundation.AVAudioCompressedBuffer.MaximumPacketSize
P:AVFoundation.AVAudioCompressedBuffer.PacketCapacity
P:AVFoundation.AVAudioCompressedBuffer.PacketCount
@@ -71492,7 +48649,6 @@ P:AVFoundation.AVAudioConverter.BitRate
P:AVFoundation.AVAudioConverter.BitRateStrategy
P:AVFoundation.AVAudioConverter.ChannelMap
P:AVFoundation.AVAudioConverter.Dither
-P:AVFoundation.AVAudioConverter.Downmix
P:AVFoundation.AVAudioConverter.InputFormat
P:AVFoundation.AVAudioConverter.MagicCookie
P:AVFoundation.AVAudioConverter.MaximumOutputPacketSize
@@ -71532,39 +48688,20 @@ P:AVFoundation.AVAudioEnvironmentNode.OutputType
P:AVFoundation.AVAudioEnvironmentNode.OutputVolume
P:AVFoundation.AVAudioEnvironmentNode.Pan
P:AVFoundation.AVAudioEnvironmentNode.PointSourceInHeadMode
-P:AVFoundation.AVAudioEnvironmentNode.Position
-P:AVFoundation.AVAudioEnvironmentNode.Rate
P:AVFoundation.AVAudioEnvironmentNode.RenderingAlgorithm
P:AVFoundation.AVAudioEnvironmentNode.ReverbBlend
P:AVFoundation.AVAudioEnvironmentNode.ReverbParameters
P:AVFoundation.AVAudioEnvironmentNode.SourceMode
-P:AVFoundation.AVAudioEnvironmentNode.Volume
P:AVFoundation.AVAudioEnvironmentReverbParameters.Enable
P:AVFoundation.AVAudioEnvironmentReverbParameters.FilterParameters
-P:AVFoundation.AVAudioEnvironmentReverbParameters.Level
P:AVFoundation.AVAudioFile.FileFormat
P:AVFoundation.AVAudioFile.FramePosition
P:AVFoundation.AVAudioFile.IsOpen
-P:AVFoundation.AVAudioFile.Length
P:AVFoundation.AVAudioFile.ProcessingFormat
-P:AVFoundation.AVAudioFile.Url
-P:AVFoundation.AVAudioFormat.ChannelCount
-P:AVFoundation.AVAudioFormat.ChannelLayout
-P:AVFoundation.AVAudioFormat.CommonFormat
-P:AVFoundation.AVAudioFormat.FormatDescription
-P:AVFoundation.AVAudioFormat.Interleaved
-P:AVFoundation.AVAudioFormat.MagicCookie
-P:AVFoundation.AVAudioFormat.SampleRate
-P:AVFoundation.AVAudioFormat.Settings
-P:AVFoundation.AVAudioFormat.Standard
-P:AVFoundation.AVAudioFormat.StreamDescription
-P:AVFoundation.AVAudioFormat.WeakSettings
P:AVFoundation.AVAudioInputNode.Obstruction
P:AVFoundation.AVAudioInputNode.Occlusion
P:AVFoundation.AVAudioInputNode.Pan
P:AVFoundation.AVAudioInputNode.PointSourceInHeadMode
-P:AVFoundation.AVAudioInputNode.Position
-P:AVFoundation.AVAudioInputNode.Rate
P:AVFoundation.AVAudioInputNode.RenderingAlgorithm
P:AVFoundation.AVAudioInputNode.ReverbBlend
P:AVFoundation.AVAudioInputNode.SourceMode
@@ -71572,37 +48709,26 @@ P:AVFoundation.AVAudioInputNode.VoiceProcessingAgcEnabled
P:AVFoundation.AVAudioInputNode.VoiceProcessingBypassed
P:AVFoundation.AVAudioInputNode.VoiceProcessingInputMuted
P:AVFoundation.AVAudioInputNode.VoiceProcessingOtherAudioDuckingConfiguration
-P:AVFoundation.AVAudioInputNode.Volume
P:AVFoundation.AVAudioIONode.AudioUnit
P:AVFoundation.AVAudioIONode.PresentationLatency
P:AVFoundation.AVAudioIONode.VoiceProcessingEnabled
-P:AVFoundation.AVAudioMix.InputParameters
P:AVFoundation.AVAudioMixerNode.NextAvailableInputBus
P:AVFoundation.AVAudioMixerNode.Obstruction
P:AVFoundation.AVAudioMixerNode.Occlusion
P:AVFoundation.AVAudioMixerNode.OutputVolume
P:AVFoundation.AVAudioMixerNode.Pan
P:AVFoundation.AVAudioMixerNode.PointSourceInHeadMode
-P:AVFoundation.AVAudioMixerNode.Position
-P:AVFoundation.AVAudioMixerNode.Rate
P:AVFoundation.AVAudioMixerNode.RenderingAlgorithm
P:AVFoundation.AVAudioMixerNode.ReverbBlend
P:AVFoundation.AVAudioMixerNode.SourceMode
-P:AVFoundation.AVAudioMixerNode.Volume
P:AVFoundation.AVAudioMixingDestination.ConnectionPoint
P:AVFoundation.AVAudioMixingDestination.Obstruction
P:AVFoundation.AVAudioMixingDestination.Occlusion
P:AVFoundation.AVAudioMixingDestination.Pan
P:AVFoundation.AVAudioMixingDestination.PointSourceInHeadMode
-P:AVFoundation.AVAudioMixingDestination.Position
-P:AVFoundation.AVAudioMixingDestination.Rate
P:AVFoundation.AVAudioMixingDestination.RenderingAlgorithm
P:AVFoundation.AVAudioMixingDestination.ReverbBlend
P:AVFoundation.AVAudioMixingDestination.SourceMode
-P:AVFoundation.AVAudioMixingDestination.Volume
-P:AVFoundation.AVAudioMixInputParameters.AudioTapProcessor
-P:AVFoundation.AVAudioMixInputParameters.AudioTimePitchAlgorithm
-P:AVFoundation.AVAudioMixInputParameters.TrackID
P:AVFoundation.AVAudioNode.AUAudioUnit
P:AVFoundation.AVAudioNode.Engine
P:AVFoundation.AVAudioNode.LastRenderTime
@@ -71618,53 +48744,36 @@ P:AVFoundation.AVAudioPcmBuffer.Int32ChannelData
P:AVFoundation.AVAudioPcmBuffer.Stride
P:AVFoundation.AVAudioPlayer.ChannelAssignments
P:AVFoundation.AVAudioPlayer.CurrentDevice
-P:AVFoundation.AVAudioPlayer.CurrentTime
-P:AVFoundation.AVAudioPlayer.Data
P:AVFoundation.AVAudioPlayer.Delegate
P:AVFoundation.AVAudioPlayer.DeviceCurrentTime
-P:AVFoundation.AVAudioPlayer.Duration
P:AVFoundation.AVAudioPlayer.EnableRate
-P:AVFoundation.AVAudioPlayer.Format
P:AVFoundation.AVAudioPlayer.MeteringEnabled
P:AVFoundation.AVAudioPlayer.NumberOfChannels
P:AVFoundation.AVAudioPlayer.NumberOfLoops
P:AVFoundation.AVAudioPlayer.Pan
P:AVFoundation.AVAudioPlayer.Playing
-P:AVFoundation.AVAudioPlayer.Rate
P:AVFoundation.AVAudioPlayer.SoundSetting
-P:AVFoundation.AVAudioPlayer.Url
-P:AVFoundation.AVAudioPlayer.Volume
-P:AVFoundation.AVAudioPlayer.WeakDelegate
P:AVFoundation.AVAudioPlayer.WeakSettings
P:AVFoundation.AVAudioPlayerNode.Obstruction
P:AVFoundation.AVAudioPlayerNode.Occlusion
P:AVFoundation.AVAudioPlayerNode.Pan
P:AVFoundation.AVAudioPlayerNode.Playing
P:AVFoundation.AVAudioPlayerNode.PointSourceInHeadMode
-P:AVFoundation.AVAudioPlayerNode.Position
-P:AVFoundation.AVAudioPlayerNode.Rate
P:AVFoundation.AVAudioPlayerNode.RenderingAlgorithm
P:AVFoundation.AVAudioPlayerNode.ReverbBlend
P:AVFoundation.AVAudioPlayerNode.SourceMode
-P:AVFoundation.AVAudioPlayerNode.Volume
P:AVFoundation.AVAudioRecorder.ChannelAssignments
-P:AVFoundation.AVAudioRecorder.CurrentTime
P:AVFoundation.AVAudioRecorder.Delegate
P:AVFoundation.AVAudioRecorder.DeviceCurrentTime
-P:AVFoundation.AVAudioRecorder.Format
P:AVFoundation.AVAudioRecorder.MeteringEnabled
P:AVFoundation.AVAudioRecorder.Recording
P:AVFoundation.AVAudioRecorder.Settings
-P:AVFoundation.AVAudioRecorder.Url
-P:AVFoundation.AVAudioRecorder.WeakDelegate
P:AVFoundation.AVAudioRecorder.WeakSettings
P:AVFoundation.AVAudioRoutingArbiter.SharedRoutingArbiter
P:AVFoundation.AVAudioSequencer.CurrentPositionInBeats
P:AVFoundation.AVAudioSequencer.CurrentPositionInSeconds
P:AVFoundation.AVAudioSequencer.Playing
-P:AVFoundation.AVAudioSequencer.Rate
P:AVFoundation.AVAudioSequencer.TempoTrack
-P:AVFoundation.AVAudioSequencer.Tracks
P:AVFoundation.AVAudioSequencer.UserInfo
P:AVFoundation.AVAudioSequencerInfoDictionary.Album
P:AVFoundation.AVAudioSequencerInfoDictionary.ApproximateDurationInSeconds
@@ -71718,7 +48827,6 @@ P:AVFoundation.AVAudioSession.MaximumOutputNumberOfChannels
P:AVFoundation.AVAudioSession.MediaServicesWereLostNotification
P:AVFoundation.AVAudioSession.MediaServicesWereResetNotification
P:AVFoundation.AVAudioSession.MicrophoneInjectionCapabilitiesChangeNotification
-P:AVFoundation.AVAudioSession.Mode
P:AVFoundation.AVAudioSession.OrientationLeft
P:AVFoundation.AVAudioSession.OrientationRight
P:AVFoundation.AVAudioSession.OtherAudioPlaying
@@ -71771,7 +48879,6 @@ P:AVFoundation.AVAudioSession.SilenceSecondaryAudioHintNotification
P:AVFoundation.AVAudioSession.SpatialPlaybackCapabilitiesChangedNotification
P:AVFoundation.AVAudioSession.SupportedOutputChannelLayouts
P:AVFoundation.AVAudioSession.SupportsMultichannelContent
-P:AVFoundation.AVAudioSession.WeakDelegate
P:AVFoundation.AVAudioSessionChannelDescription.ChannelLabel
P:AVFoundation.AVAudioSessionChannelDescription.ChannelName
P:AVFoundation.AVAudioSessionChannelDescription.ChannelNumber
@@ -71791,15 +48898,12 @@ P:AVFoundation.AVAudioSessionPortDescription.Channels
P:AVFoundation.AVAudioSessionPortDescription.DataSources
P:AVFoundation.AVAudioSessionPortDescription.HasHardwareVoiceCallProcessing
P:AVFoundation.AVAudioSessionPortDescription.PortName
-P:AVFoundation.AVAudioSessionPortDescription.PortType
P:AVFoundation.AVAudioSessionPortDescription.PreferredDataSource
P:AVFoundation.AVAudioSessionPortDescription.SelectedDataSource
P:AVFoundation.AVAudioSessionPortDescription.SpatialAudioEnabled
P:AVFoundation.AVAudioSessionPortDescription.UID
P:AVFoundation.AVAudioSessionRouteChangeEventArgs.PreviousRoute
P:AVFoundation.AVAudioSessionRouteChangeEventArgs.Reason
-P:AVFoundation.AVAudioSessionRouteDescription.Inputs
-P:AVFoundation.AVAudioSessionRouteDescription.Outputs
P:AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs.Hint
P:AVFoundation.AVAudioSessionSecondaryAudioHintEventArgs.HintType
P:AVFoundation.AVAudioSettings.AVChannelLayoutKey
@@ -71821,12 +48925,9 @@ P:AVFoundation.AVAudioSourceNode.Obstruction
P:AVFoundation.AVAudioSourceNode.Occlusion
P:AVFoundation.AVAudioSourceNode.Pan
P:AVFoundation.AVAudioSourceNode.PointSourceInHeadMode
-P:AVFoundation.AVAudioSourceNode.Position
-P:AVFoundation.AVAudioSourceNode.Rate
P:AVFoundation.AVAudioSourceNode.RenderingAlgorithm
P:AVFoundation.AVAudioSourceNode.ReverbBlend
P:AVFoundation.AVAudioSourceNode.SourceMode
-P:AVFoundation.AVAudioSourceNode.Volume
P:AVFoundation.AVAudioStereoMixing.Pan
P:AVFoundation.AVAudioTime.AudioTimeStamp
P:AVFoundation.AVAudioTime.HostTime
@@ -71841,7 +48942,6 @@ P:AVFoundation.AVAudioTimePitchAlgorithm.Varispeed
P:AVFoundation.AVAudioUnit.AUAudioUnit
P:AVFoundation.AVAudioUnit.AudioUnit
P:AVFoundation.AVAudioUnit.ManufacturerName
-P:AVFoundation.AVAudioUnit.Name
P:AVFoundation.AVAudioUnit.Version
P:AVFoundation.AVAudioUnitComponent.AllTagNames
P:AVFoundation.AVAudioUnitComponent.AudioComponent
@@ -71854,7 +48954,6 @@ P:AVFoundation.AVAudioUnitComponent.Icon
P:AVFoundation.AVAudioUnitComponent.IconUrl
P:AVFoundation.AVAudioUnitComponent.LocalizedTypeName
P:AVFoundation.AVAudioUnitComponent.ManufacturerName
-P:AVFoundation.AVAudioUnitComponent.Name
P:AVFoundation.AVAudioUnitComponent.PassesAUVal
P:AVFoundation.AVAudioUnitComponent.SandboxSafe
P:AVFoundation.AVAudioUnitComponent.TagsDidChangeNotification
@@ -71886,23 +48985,17 @@ P:AVFoundation.AVAudioUnitGenerator.Obstruction
P:AVFoundation.AVAudioUnitGenerator.Occlusion
P:AVFoundation.AVAudioUnitGenerator.Pan
P:AVFoundation.AVAudioUnitGenerator.PointSourceInHeadMode
-P:AVFoundation.AVAudioUnitGenerator.Position
-P:AVFoundation.AVAudioUnitGenerator.Rate
P:AVFoundation.AVAudioUnitGenerator.RenderingAlgorithm
P:AVFoundation.AVAudioUnitGenerator.ReverbBlend
P:AVFoundation.AVAudioUnitGenerator.SourceMode
-P:AVFoundation.AVAudioUnitGenerator.Volume
P:AVFoundation.AVAudioUnitManufacturerName.Apple
P:AVFoundation.AVAudioUnitMidiInstrument.Obstruction
P:AVFoundation.AVAudioUnitMidiInstrument.Occlusion
P:AVFoundation.AVAudioUnitMidiInstrument.Pan
P:AVFoundation.AVAudioUnitMidiInstrument.PointSourceInHeadMode
-P:AVFoundation.AVAudioUnitMidiInstrument.Position
-P:AVFoundation.AVAudioUnitMidiInstrument.Rate
P:AVFoundation.AVAudioUnitMidiInstrument.RenderingAlgorithm
P:AVFoundation.AVAudioUnitMidiInstrument.ReverbBlend
P:AVFoundation.AVAudioUnitMidiInstrument.SourceMode
-P:AVFoundation.AVAudioUnitMidiInstrument.Volume
P:AVFoundation.AVAudioUnitReverb.WetDryMix
P:AVFoundation.AVAudioUnitSampler.GlobalTuning
P:AVFoundation.AVAudioUnitSampler.MasterGain
@@ -71911,7 +49004,6 @@ P:AVFoundation.AVAudioUnitSampler.StereoPan
P:AVFoundation.AVAudioUnitTimeEffect.Bypass
P:AVFoundation.AVAudioUnitTimePitch.Overlap
P:AVFoundation.AVAudioUnitTimePitch.Pitch
-P:AVFoundation.AVAudioUnitTimePitch.Rate
P:AVFoundation.AVAudioUnitType.Effect
P:AVFoundation.AVAudioUnitType.FormatConverter
P:AVFoundation.AVAudioUnitType.Generator
@@ -71922,384 +49014,122 @@ P:AVFoundation.AVAudioUnitType.MusicEffect
P:AVFoundation.AVAudioUnitType.OfflineEffect
P:AVFoundation.AVAudioUnitType.Output
P:AVFoundation.AVAudioUnitType.Panner
-P:AVFoundation.AVAudioUnitVarispeed.Rate
P:AVFoundation.AVAudioVoiceProcessingOtherAudioDuckingConfiguration.DuckingLevel
P:AVFoundation.AVAudioVoiceProcessingOtherAudioDuckingConfiguration.EnableAdvancedDucking
P:AVFoundation.AVAUPresetEvent.Element
P:AVFoundation.AVAUPresetEvent.PresetDictionary
P:AVFoundation.AVAUPresetEvent.Scope
-P:AVFoundation.AVCameraCalibrationData.ExtrinsicMatrix
-P:AVFoundation.AVCameraCalibrationData.IntrinsicMatrix
-P:AVFoundation.AVCameraCalibrationData.IntrinsicMatrixReferenceDimensions
-P:AVFoundation.AVCameraCalibrationData.InverseLensDistortionLookupTable
-P:AVFoundation.AVCameraCalibrationData.LensDistortionCenter
-P:AVFoundation.AVCameraCalibrationData.LensDistortionLookupTable
-P:AVFoundation.AVCameraCalibrationData.PixelSize
-P:AVFoundation.AVCaption.Animation
-P:AVFoundation.AVCaption.Region
-P:AVFoundation.AVCaption.Text
-P:AVFoundation.AVCaption.TextAlignment
-P:AVFoundation.AVCaption.TimeRange
-P:AVFoundation.AVCaptionConversionAdjustment.AdjustmentType
-P:AVFoundation.AVCaptionConversionTimeRangeAdjustment.DurationOffset
-P:AVFoundation.AVCaptionConversionTimeRangeAdjustment.StartTimeOffset
-P:AVFoundation.AVCaptionConversionValidator.Captions
-P:AVFoundation.AVCaptionConversionValidator.Status
-P:AVFoundation.AVCaptionConversionValidator.TimeRange
-P:AVFoundation.AVCaptionConversionValidator.Warnings
-P:AVFoundation.AVCaptionConversionWarning.Adjustment
-P:AVFoundation.AVCaptionConversionWarning.RangeOfCaptions
-P:AVFoundation.AVCaptionConversionWarning.WarningType
P:AVFoundation.AVCaptionDimension.Units
-P:AVFoundation.AVCaptionFormatConformer.ConformsCaptionsToTimeRange
-P:AVFoundation.AVCaptionGroup.Captions
-P:AVFoundation.AVCaptionGroup.TimeRange
-P:AVFoundation.AVCaptionRegion.AppleIttBottomRegion
-P:AVFoundation.AVCaptionRegion.AppleIttLeftRegion
-P:AVFoundation.AVCaptionRegion.AppleIttRightRegion
-P:AVFoundation.AVCaptionRegion.AppleIttTopRegion
-P:AVFoundation.AVCaptionRegion.DisplayAlignment
-P:AVFoundation.AVCaptionRegion.Identifier
-P:AVFoundation.AVCaptionRegion.Origin
-P:AVFoundation.AVCaptionRegion.Scroll
-P:AVFoundation.AVCaptionRegion.Size
-P:AVFoundation.AVCaptionRegion.SubRipTextBottomRegion
-P:AVFoundation.AVCaptionRegion.WritingMode
-P:AVFoundation.AVCaptionRenderer.Bounds
-P:AVFoundation.AVCaptionRenderer.Captions
-P:AVFoundation.AVCaptionRendererScene.HasActiveCaptions
-P:AVFoundation.AVCaptionRendererScene.NeedsPeriodicRefresh
-P:AVFoundation.AVCaptionRendererScene.TimeRange
-P:AVFoundation.AVCaptionRuby.Alignment
-P:AVFoundation.AVCaptionRuby.Position
-P:AVFoundation.AVCaptionRuby.Text
P:AVFoundation.AVCaptionSettings.MediaSubType
P:AVFoundation.AVCaptionSettings.MediaType
P:AVFoundation.AVCaptionSettings.UseDropFrameTimeCode
P:AVFoundation.AVCaptionSettings.UseTimeCodeFrameDuration
-P:AVFoundation.AVCaptureAudioChannel.AveragePowerLevel
P:AVFoundation.AVCaptureAudioChannel.Enabled
-P:AVFoundation.AVCaptureAudioChannel.PeakHoldLevel
-P:AVFoundation.AVCaptureAudioChannel.Volume
P:AVFoundation.AVCaptureAudioDataOutput.AudioSettings
-P:AVFoundation.AVCaptureAudioDataOutput.SampleBufferCallbackQueue
-P:AVFoundation.AVCaptureAudioDataOutput.SampleBufferDelegate
-P:AVFoundation.AVCaptureAudioDataOutput.WeakAudioSettings
P:AVFoundation.AVCaptureAudioFileOutput.AudioSettings
-P:AVFoundation.AVCaptureAudioFileOutput.Metadata
-P:AVFoundation.AVCaptureAudioFileOutput.WeakAudioSettings
-P:AVFoundation.AVCaptureAudioPreviewOutput.OutputDeviceUniqueID
-P:AVFoundation.AVCaptureAudioPreviewOutput.Volume
-P:AVFoundation.AVCaptureAutoExposureBracketedStillImageSettings.ExposureTargetBias
P:AVFoundation.AVCaptureConnection.Active
-P:AVFoundation.AVCaptureConnection.ActiveVideoStabilizationMode
-P:AVFoundation.AVCaptureConnection.AutomaticallyAdjustsVideoMirroring
-P:AVFoundation.AVCaptureConnection.AvailableAudioChannels
P:AVFoundation.AVCaptureConnection.CameraIntrinsicMatrixDeliveryEnabled
P:AVFoundation.AVCaptureConnection.CameraIntrinsicMatrixDeliverySupported
P:AVFoundation.AVCaptureConnection.Enabled
-P:AVFoundation.AVCaptureConnection.EnablesVideoStabilizationWhenAvailable
-P:AVFoundation.AVCaptureConnection.InputPorts
-P:AVFoundation.AVCaptureConnection.Output
-P:AVFoundation.AVCaptureConnection.PreferredVideoStabilizationMode
P:AVFoundation.AVCaptureConnection.SupportsVideoFieldMode
P:AVFoundation.AVCaptureConnection.SupportsVideoMaxFrameDuration
P:AVFoundation.AVCaptureConnection.SupportsVideoMinFrameDuration
P:AVFoundation.AVCaptureConnection.SupportsVideoMirroring
P:AVFoundation.AVCaptureConnection.SupportsVideoOrientation
P:AVFoundation.AVCaptureConnection.SupportsVideoStabilization
-P:AVFoundation.AVCaptureConnection.VideoFieldMode
-P:AVFoundation.AVCaptureConnection.VideoMaxFrameDuration
-P:AVFoundation.AVCaptureConnection.VideoMaxScaleAndCropFactor
-P:AVFoundation.AVCaptureConnection.VideoMinFrameDuration
P:AVFoundation.AVCaptureConnection.VideoMirrored
-P:AVFoundation.AVCaptureConnection.VideoOrientation
-P:AVFoundation.AVCaptureConnection.VideoPreviewLayer
-P:AVFoundation.AVCaptureConnection.VideoRotationAngle
-P:AVFoundation.AVCaptureConnection.VideoScaleAndCropFactor
P:AVFoundation.AVCaptureConnection.VideoStabilizationEnabled
P:AVFoundation.AVCaptureControl.Enabled
-P:AVFoundation.AVCaptureDataOutputSynchronizer.DataOutputs
P:AVFoundation.AVCaptureDataOutputSynchronizer.Delegate
-P:AVFoundation.AVCaptureDataOutputSynchronizer.DelegateCallbackQueue
-P:AVFoundation.AVCaptureDataOutputSynchronizer.WeakDelegate
-P:AVFoundation.AVCaptureDepthDataOutput.AlwaysDiscardsLateDepthData
P:AVFoundation.AVCaptureDepthDataOutput.Delegate
-P:AVFoundation.AVCaptureDepthDataOutput.DelegateCallbackQueue
P:AVFoundation.AVCaptureDepthDataOutput.FilteringEnabled
-P:AVFoundation.AVCaptureDepthDataOutput.WeakDelegate
-P:AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration.MainWindowFrame
-P:AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration.RequiresSetUpModeCompletion
-P:AVFoundation.AVCaptureDevice.ActiveColorSpace
-P:AVFoundation.AVCaptureDevice.ActiveDepthDataFormat
-P:AVFoundation.AVCaptureDevice.ActiveDepthDataMinFrameDuration
-P:AVFoundation.AVCaptureDevice.ActiveFormat
-P:AVFoundation.AVCaptureDevice.ActiveInputSource
-P:AVFoundation.AVCaptureDevice.ActiveMaxExposureDuration
-P:AVFoundation.AVCaptureDevice.ActiveMicrophoneMode
-P:AVFoundation.AVCaptureDevice.ActivePrimaryConstituentDevice
-P:AVFoundation.AVCaptureDevice.ActivePrimaryConstituentDeviceRestrictedSwitchingBehaviorConditions
-P:AVFoundation.AVCaptureDevice.ActivePrimaryConstituentDeviceSwitchingBehavior
-P:AVFoundation.AVCaptureDevice.ActiveVideoMaxFrameDuration
-P:AVFoundation.AVCaptureDevice.ActiveVideoMinFrameDuration
P:AVFoundation.AVCaptureDevice.AdjustingExposure
P:AVFoundation.AVCaptureDevice.AdjustingFocus
P:AVFoundation.AVCaptureDevice.AdjustingWhiteBalance
-P:AVFoundation.AVCaptureDevice.AutoFocusRangeRestriction
P:AVFoundation.AVCaptureDevice.AutoFocusRangeRestrictionSupported
-P:AVFoundation.AVCaptureDevice.AutomaticallyAdjustsFaceDrivenAutoExposureEnabled
-P:AVFoundation.AVCaptureDevice.AutomaticallyAdjustsFaceDrivenAutoFocusEnabled
-P:AVFoundation.AVCaptureDevice.AutomaticallyAdjustsVideoHdrEnabled
-P:AVFoundation.AVCaptureDevice.AutomaticallyEnablesLowLightBoostWhenAvailable
P:AVFoundation.AVCaptureDevice.AutoVideoFrameRateEnabled
-P:AVFoundation.AVCaptureDevice.AvailableReactionTypes
P:AVFoundation.AVCaptureDevice.BackgroundReplacementActive
P:AVFoundation.AVCaptureDevice.BackgroundReplacementEnabled
-P:AVFoundation.AVCaptureDevice.CanPerformReactionEffects
P:AVFoundation.AVCaptureDevice.CenterStageActive
-P:AVFoundation.AVCaptureDevice.CenterStageControlMode
P:AVFoundation.AVCaptureDevice.CenterStageEnabled
-P:AVFoundation.AVCaptureDevice.CenterStageRectOfInterest
-P:AVFoundation.AVCaptureDevice.CompanionDeskViewCamera
P:AVFoundation.AVCaptureDevice.Connected
-P:AVFoundation.AVCaptureDevice.ConstituentDevices
P:AVFoundation.AVCaptureDevice.ContinuityCamera
-P:AVFoundation.AVCaptureDevice.Devices
P:AVFoundation.AVCaptureDevice.DeviceType
-P:AVFoundation.AVCaptureDevice.DeviceWhiteBalanceGains
-P:AVFoundation.AVCaptureDevice.DisplayVideoZoomFactorMultiplier
-P:AVFoundation.AVCaptureDevice.DualCameraSwitchOverVideoZoomFactor
-P:AVFoundation.AVCaptureDevice.ExposureDuration
P:AVFoundation.AVCaptureDevice.ExposureDurationCurrent
-P:AVFoundation.AVCaptureDevice.ExposureMode
-P:AVFoundation.AVCaptureDevice.ExposurePointOfInterest
P:AVFoundation.AVCaptureDevice.ExposurePointOfInterestSupported
-P:AVFoundation.AVCaptureDevice.ExposureTargetBias
P:AVFoundation.AVCaptureDevice.ExposureTargetBiasCurrent
-P:AVFoundation.AVCaptureDevice.ExposureTargetOffset
P:AVFoundation.AVCaptureDevice.FaceDrivenAutoExposureEnabled
P:AVFoundation.AVCaptureDevice.FaceDrivenAutoFocusEnabled
-P:AVFoundation.AVCaptureDevice.FallbackPrimaryConstituentDevices
P:AVFoundation.AVCaptureDevice.FlashActive
P:AVFoundation.AVCaptureDevice.FlashAvailable
-P:AVFoundation.AVCaptureDevice.FlashMode
-P:AVFoundation.AVCaptureDevice.FocusMode
P:AVFoundation.AVCaptureDevice.FocusModeLensPositionCurrent
-P:AVFoundation.AVCaptureDevice.FocusPointOfInterest
P:AVFoundation.AVCaptureDevice.FocusPointOfInterestSupported
-P:AVFoundation.AVCaptureDevice.Formats
P:AVFoundation.AVCaptureDevice.GeometricDistortionCorrectionEnabled
P:AVFoundation.AVCaptureDevice.GeometricDistortionCorrectionSupported
P:AVFoundation.AVCaptureDevice.GlobalToneMappingEnabled
-P:AVFoundation.AVCaptureDevice.GrayWorldDeviceWhiteBalanceGains
-P:AVFoundation.AVCaptureDevice.HasFlash
-P:AVFoundation.AVCaptureDevice.HasTorch
-P:AVFoundation.AVCaptureDevice.InputSources
P:AVFoundation.AVCaptureDevice.InUseByAnotherApplication
-P:AVFoundation.AVCaptureDevice.ISO
P:AVFoundation.AVCaptureDevice.ISOCurrent
-P:AVFoundation.AVCaptureDevice.LensAperture
-P:AVFoundation.AVCaptureDevice.LensPosition
P:AVFoundation.AVCaptureDevice.LensPositionCurrent
-P:AVFoundation.AVCaptureDevice.LinkedDevices
-P:AVFoundation.AVCaptureDevice.LocalizedName
P:AVFoundation.AVCaptureDevice.LockingFocusWithCustomLensPositionSupported
P:AVFoundation.AVCaptureDevice.LockingWhiteBalanceWithCustomDeviceGainsSupported
P:AVFoundation.AVCaptureDevice.LowLightBoostEnabled
P:AVFoundation.AVCaptureDevice.LowLightBoostSupported
-P:AVFoundation.AVCaptureDevice.Manufacturer
P:AVFoundation.AVCaptureDevice.MaxAvailableTorchLevel
-P:AVFoundation.AVCaptureDevice.MaxAvailableVideoZoomFactor
-P:AVFoundation.AVCaptureDevice.MaxExposureTargetBias
-P:AVFoundation.AVCaptureDevice.MaxWhiteBalanceGain
-P:AVFoundation.AVCaptureDevice.MinAvailableVideoZoomFactor
-P:AVFoundation.AVCaptureDevice.MinExposureTargetBias
-P:AVFoundation.AVCaptureDevice.MinimumFocusDistance
-P:AVFoundation.AVCaptureDevice.ModelID
P:AVFoundation.AVCaptureDevice.PortraitEffectActive
P:AVFoundation.AVCaptureDevice.PortraitEffectEnabled
-P:AVFoundation.AVCaptureDevice.Position
-P:AVFoundation.AVCaptureDevice.PreferredMicrophoneMode
-P:AVFoundation.AVCaptureDevice.PrimaryConstituentDeviceRestrictedSwitchingBehaviorConditions
-P:AVFoundation.AVCaptureDevice.PrimaryConstituentDeviceSwitchingBehavior
P:AVFoundation.AVCaptureDevice.RampingVideoZoom
-P:AVFoundation.AVCaptureDevice.ReactionEffectGesturesEnabled
-P:AVFoundation.AVCaptureDevice.ReactionEffectsEnabled
-P:AVFoundation.AVCaptureDevice.ReactionEffectsInProgress
P:AVFoundation.AVCaptureDevice.SmoothAutoFocusEnabled
P:AVFoundation.AVCaptureDevice.SmoothAutoFocusSupported
-P:AVFoundation.AVCaptureDevice.SpatialCaptureDiscomfortReasons
P:AVFoundation.AVCaptureDevice.StudioLightActive
P:AVFoundation.AVCaptureDevice.StudioLightEnabled
P:AVFoundation.AVCaptureDevice.SubjectAreaChangeMonitoringEnabled
P:AVFoundation.AVCaptureDevice.SubjectAreaDidChangeNotification
-P:AVFoundation.AVCaptureDevice.SupportedFallbackPrimaryConstituentDevices
P:AVFoundation.AVCaptureDevice.Suspended
-P:AVFoundation.AVCaptureDevice.SystemPreferredCamera
-P:AVFoundation.AVCaptureDevice.SystemPressureState
P:AVFoundation.AVCaptureDevice.TorchActive
P:AVFoundation.AVCaptureDevice.TorchAvailable
-P:AVFoundation.AVCaptureDevice.TorchLevel
-P:AVFoundation.AVCaptureDevice.TorchMode
-P:AVFoundation.AVCaptureDevice.TransportControlsPlaybackMode
-P:AVFoundation.AVCaptureDevice.TransportControlsSpeed
-P:AVFoundation.AVCaptureDevice.TransportControlsSupported
-P:AVFoundation.AVCaptureDevice.UniqueID
-P:AVFoundation.AVCaptureDevice.UserPreferredCamera
P:AVFoundation.AVCaptureDevice.VideoHdrEnabled
-P:AVFoundation.AVCaptureDevice.VideoZoomFactor
P:AVFoundation.AVCaptureDevice.VirtualDevice
-P:AVFoundation.AVCaptureDevice.VirtualDeviceSwitchOverVideoZoomFactors
P:AVFoundation.AVCaptureDevice.WasConnectedNotification
P:AVFoundation.AVCaptureDevice.WasDisconnectedNotification
-P:AVFoundation.AVCaptureDevice.WeakTransportType
P:AVFoundation.AVCaptureDevice.WhiteBalanceGainsCurrent
-P:AVFoundation.AVCaptureDevice.WhiteBalanceMode
-P:AVFoundation.AVCaptureDeviceDiscoverySession.Devices
-P:AVFoundation.AVCaptureDeviceDiscoverySession.SupportedMultiCamDeviceSets
-P:AVFoundation.AVCaptureDeviceFormat.AutoFocusSystem
P:AVFoundation.AVCaptureDeviceFormat.AutoVideoFrameRateSupported
P:AVFoundation.AVCaptureDeviceFormat.BackgroundReplacementSupported
P:AVFoundation.AVCaptureDeviceFormat.CenterStageSupported
-P:AVFoundation.AVCaptureDeviceFormat.FormatDescription
-P:AVFoundation.AVCaptureDeviceFormat.GeometricDistortionCorrectedVideoFieldOfView
P:AVFoundation.AVCaptureDeviceFormat.GlobalToneMappingSupported
P:AVFoundation.AVCaptureDeviceFormat.HighestPhotoQualitySupported
P:AVFoundation.AVCaptureDeviceFormat.HighPhotoQualitySupported
-P:AVFoundation.AVCaptureDeviceFormat.HighResolutionStillImageDimensions
P:AVFoundation.AVCaptureDeviceFormat.IsVideoHdrSupported
-P:AVFoundation.AVCaptureDeviceFormat.MaxExposureDuration
-P:AVFoundation.AVCaptureDeviceFormat.MaxISO
-P:AVFoundation.AVCaptureDeviceFormat.MediaType
-P:AVFoundation.AVCaptureDeviceFormat.MinExposureDuration
-P:AVFoundation.AVCaptureDeviceFormat.MinISO
P:AVFoundation.AVCaptureDeviceFormat.MultiCamSupported
P:AVFoundation.AVCaptureDeviceFormat.PortraitEffectsMatteStillImageDeliverySupported
P:AVFoundation.AVCaptureDeviceFormat.PortraitEffectSupported
-P:AVFoundation.AVCaptureDeviceFormat.ReactionEffectsSupported
-P:AVFoundation.AVCaptureDeviceFormat.SecondaryNativeResolutionZoomFactors
P:AVFoundation.AVCaptureDeviceFormat.SpatialVideoCaptureSupported
P:AVFoundation.AVCaptureDeviceFormat.StudioLightSupported
-P:AVFoundation.AVCaptureDeviceFormat.SupportedColorSpaces
-P:AVFoundation.AVCaptureDeviceFormat.SupportedDepthDataFormats
-P:AVFoundation.AVCaptureDeviceFormat.SupportedMaxPhotoDimensions
-P:AVFoundation.AVCaptureDeviceFormat.SupportedVideoZoomFactorsForDepthDataDelivery
-P:AVFoundation.AVCaptureDeviceFormat.SupportedVideoZoomRangesForDepthDataDelivery
-P:AVFoundation.AVCaptureDeviceFormat.SystemRecommendedExposureBiasRange
-P:AVFoundation.AVCaptureDeviceFormat.SystemRecommendedVideoZoomRange
-P:AVFoundation.AVCaptureDeviceFormat.UnsupportedCaptureOutputClasses
P:AVFoundation.AVCaptureDeviceFormat.VideoBinned
-P:AVFoundation.AVCaptureDeviceFormat.VideoFieldOfView
-P:AVFoundation.AVCaptureDeviceFormat.VideoFrameRateRangeForBackgroundReplacement
-P:AVFoundation.AVCaptureDeviceFormat.VideoFrameRateRangeForCenterStage
-P:AVFoundation.AVCaptureDeviceFormat.VideoFrameRateRangeForPortraitEffect
-P:AVFoundation.AVCaptureDeviceFormat.VideoFrameRateRangeForReactionEffectsInProgress
-P:AVFoundation.AVCaptureDeviceFormat.VideoFrameRateRangeForStudioLight
-P:AVFoundation.AVCaptureDeviceFormat.VideoMaxZoomFactor
-P:AVFoundation.AVCaptureDeviceFormat.VideoMaxZoomFactorForCenterStage
-P:AVFoundation.AVCaptureDeviceFormat.VideoMaxZoomFactorForDepthDataDelivery
-P:AVFoundation.AVCaptureDeviceFormat.VideoMinZoomFactorForCenterStage
-P:AVFoundation.AVCaptureDeviceFormat.VideoMinZoomFactorForDepthDataDelivery
P:AVFoundation.AVCaptureDeviceFormat.VideoStabilizationSupported
-P:AVFoundation.AVCaptureDeviceFormat.VideoSupportedFrameRateRanges
-P:AVFoundation.AVCaptureDeviceFormat.VideoZoomFactorUpscaleThreshold
-P:AVFoundation.AVCaptureDeviceFormat.ZoomFactorsOutsideOfVideoZoomRangesForDepthDeliverySupported
-P:AVFoundation.AVCaptureDeviceInput.Device
-P:AVFoundation.AVCaptureDeviceInput.MultichannelAudioMode
-P:AVFoundation.AVCaptureDeviceInput.UnifiedAutoExposureDefaultsEnabled
-P:AVFoundation.AVCaptureDeviceInput.VideoMinFrameDurationOverride
P:AVFoundation.AVCaptureDeviceInput.WindNoiseRemovalEnabled
P:AVFoundation.AVCaptureDeviceInput.WindNoiseRemovalSupported
-P:AVFoundation.AVCaptureDeviceInputSource.InputSourceID
-P:AVFoundation.AVCaptureDeviceInputSource.LocalizedName
-P:AVFoundation.AVCaptureDeviceRotationCoordinator.Device
-P:AVFoundation.AVCaptureDeviceRotationCoordinator.PreviewLayer
-P:AVFoundation.AVCaptureDeviceRotationCoordinator.VideoRotationAngleForHorizonLevelCapture
-P:AVFoundation.AVCaptureDeviceRotationCoordinator.VideoRotationAngleForHorizonLevelPreview
-P:AVFoundation.AVCaptureFileOutput.Delegate
-P:AVFoundation.AVCaptureFileOutput.MaxRecordedDuration
-P:AVFoundation.AVCaptureFileOutput.MaxRecordedFileSize
-P:AVFoundation.AVCaptureFileOutput.MinFreeDiskSpaceLimit
-P:AVFoundation.AVCaptureFileOutput.OutputFileURL
-P:AVFoundation.AVCaptureFileOutput.RecordedDuration
-P:AVFoundation.AVCaptureFileOutput.RecordedFileSize
P:AVFoundation.AVCaptureFileOutput.Recording
P:AVFoundation.AVCaptureFileOutput.RecordingPaused
-P:AVFoundation.AVCaptureIndexPicker.AccessibilityIdentifier
-P:AVFoundation.AVCaptureIndexPicker.LocalizedIndexTitles
-P:AVFoundation.AVCaptureIndexPicker.LocalizedTitle
-P:AVFoundation.AVCaptureIndexPicker.NumberOfIndexes
-P:AVFoundation.AVCaptureIndexPicker.SelectedIndex
-P:AVFoundation.AVCaptureIndexPicker.SymbolName
P:AVFoundation.AVCaptureInput.PortFormatDescriptionDidChangeNotification
-P:AVFoundation.AVCaptureInput.Ports
-P:AVFoundation.AVCaptureInputPort.Clock
P:AVFoundation.AVCaptureInputPort.Enabled
-P:AVFoundation.AVCaptureInputPort.FormatDescription
-P:AVFoundation.AVCaptureInputPort.Input
-P:AVFoundation.AVCaptureInputPort.MediaType
-P:AVFoundation.AVCaptureInputPort.SourceDevicePosition
-P:AVFoundation.AVCaptureInputPort.SourceDeviceType
-P:AVFoundation.AVCaptureManualExposureBracketedStillImageSettings.ExposureDuration
-P:AVFoundation.AVCaptureManualExposureBracketedStillImageSettings.ISO
P:AVFoundation.AVCaptureMetadataOutput.AvailableMetadataObjectTypes
-P:AVFoundation.AVCaptureMetadataOutput.CallbackQueue
-P:AVFoundation.AVCaptureMetadataOutput.Delegate
P:AVFoundation.AVCaptureMetadataOutput.MetadataObjectTypes
-P:AVFoundation.AVCaptureMetadataOutput.RectOfInterest
-P:AVFoundation.AVCaptureMetadataOutput.WeakAvailableMetadataObjectTypes
-P:AVFoundation.AVCaptureMetadataOutput.WeakMetadataObjectTypes
-P:AVFoundation.AVCaptureMovieFileOutput.AvailableVideoCodecTypes
-P:AVFoundation.AVCaptureMovieFileOutput.Metadata
-P:AVFoundation.AVCaptureMovieFileOutput.MovieFragmentInterval
-P:AVFoundation.AVCaptureMovieFileOutput.PrimaryConstituentDeviceRestrictedSwitchingBehaviorConditionsForRecording
-P:AVFoundation.AVCaptureMovieFileOutput.PrimaryConstituentDeviceSwitchingBehaviorForRecording
P:AVFoundation.AVCaptureMovieFileOutput.PrimaryConstituentDeviceSwitchingBehaviorForRecordingEnabled
P:AVFoundation.AVCaptureMovieFileOutput.SpatialVideoCaptureEnabled
P:AVFoundation.AVCaptureMovieFileOutput.SpatialVideoCaptureSupported
-P:AVFoundation.AVCaptureMultiCamSession.HardwareCost
P:AVFoundation.AVCaptureMultiCamSession.MultiCamSupported
-P:AVFoundation.AVCaptureMultiCamSession.SystemPressureCost
-P:AVFoundation.AVCaptureOutput.Connections
-P:AVFoundation.AVCapturePhoto.BracketSettings
-P:AVFoundation.AVCapturePhoto.CameraCalibrationData
-P:AVFoundation.AVCapturePhoto.CGImageRepresentation
-P:AVFoundation.AVCapturePhoto.ConstantColorCenterWeightedMeanConfidenceLevel
-P:AVFoundation.AVCapturePhoto.ConstantColorConfidenceMap
P:AVFoundation.AVCapturePhoto.ConstantColorFallbackPhoto
-P:AVFoundation.AVCapturePhoto.DepthData
P:AVFoundation.AVCapturePhoto.EmbeddedThumbnailPhotoFormat
-P:AVFoundation.AVCapturePhoto.FileDataRepresentation
-P:AVFoundation.AVCapturePhoto.LensStabilizationStatus
-P:AVFoundation.AVCapturePhoto.PhotoCount
-P:AVFoundation.AVCapturePhoto.PixelBuffer
-P:AVFoundation.AVCapturePhoto.PortraitEffectsMatte
-P:AVFoundation.AVCapturePhoto.PreviewCGImageRepresentation
-P:AVFoundation.AVCapturePhoto.PreviewPixelBuffer
P:AVFoundation.AVCapturePhoto.Properties
P:AVFoundation.AVCapturePhoto.RawPhoto
-P:AVFoundation.AVCapturePhoto.ResolvedSettings
-P:AVFoundation.AVCapturePhoto.SequenceCount
P:AVFoundation.AVCapturePhoto.SourceDeviceType
-P:AVFoundation.AVCapturePhoto.Timestamp
-P:AVFoundation.AVCapturePhoto.WeakEmbeddedThumbnailPhotoFormat
-P:AVFoundation.AVCapturePhoto.WeakMetadata
-P:AVFoundation.AVCapturePhoto.WeakSourceDeviceType
-P:AVFoundation.AVCapturePhotoBracketSettings.BracketedSettings
P:AVFoundation.AVCapturePhotoBracketSettings.IsLensStabilizationEnabled
P:AVFoundation.AVCapturePhotoOutput.AppleProRawEnabled
P:AVFoundation.AVCapturePhotoOutput.AppleProRawSupported
P:AVFoundation.AVCapturePhotoOutput.AutoDeferredPhotoDeliveryEnabled
P:AVFoundation.AVCapturePhotoOutput.AutoDeferredPhotoDeliverySupported
P:AVFoundation.AVCapturePhotoOutput.AutoRedEyeReductionSupported
-P:AVFoundation.AVCapturePhotoOutput.AvailableLivePhotoVideoCodecTypes
-P:AVFoundation.AVCapturePhotoOutput.AvailablePhotoCodecTypes
-P:AVFoundation.AVCapturePhotoOutput.AvailablePhotoPixelFormatTypes
-P:AVFoundation.AVCapturePhotoOutput.AvailableRawPhotoCodecTypes
-P:AVFoundation.AVCapturePhotoOutput.AvailableRawPhotoPixelFormatTypes
-P:AVFoundation.AVCapturePhotoOutput.AvailableSemanticSegmentationMatteTypes
P:AVFoundation.AVCapturePhotoOutput.CameraCalibrationDataDeliverySupported
-P:AVFoundation.AVCapturePhotoOutput.CaptureReadiness
P:AVFoundation.AVCapturePhotoOutput.ConstantColorEnabled
P:AVFoundation.AVCapturePhotoOutput.ConstantColorSupported
P:AVFoundation.AVCapturePhotoOutput.ContentAwareDistortionCorrectionEnabled
@@ -72309,47 +49139,33 @@ P:AVFoundation.AVCapturePhotoOutput.DepthDataDeliverySupported
P:AVFoundation.AVCapturePhotoOutput.DualCameraDualPhotoDeliveryEnabled
P:AVFoundation.AVCapturePhotoOutput.DualCameraDualPhotoDeliverySupported
P:AVFoundation.AVCapturePhotoOutput.DualCameraFusionSupported
-P:AVFoundation.AVCapturePhotoOutput.EnabledSemanticSegmentationMatteTypes
P:AVFoundation.AVCapturePhotoOutput.FastCapturePrioritizationEnabled
P:AVFoundation.AVCapturePhotoOutput.FastCapturePrioritizationSupported
P:AVFoundation.AVCapturePhotoOutput.GetAvailablePhotoFileTypes
P:AVFoundation.AVCapturePhotoOutput.GetAvailableRawPhotoFileTypes
-P:AVFoundation.AVCapturePhotoOutput.IsFlashScene
P:AVFoundation.AVCapturePhotoOutput.IsHighResolutionCaptureEnabled
P:AVFoundation.AVCapturePhotoOutput.IsLensStabilizationDuringBracketedCaptureSupported
P:AVFoundation.AVCapturePhotoOutput.IsLivePhotoAutoTrimmingEnabled
P:AVFoundation.AVCapturePhotoOutput.IsLivePhotoCaptureEnabled
P:AVFoundation.AVCapturePhotoOutput.IsLivePhotoCaptureSupported
P:AVFoundation.AVCapturePhotoOutput.IsLivePhotoCaptureSuspended
-P:AVFoundation.AVCapturePhotoOutput.IsStillImageStabilizationScene
P:AVFoundation.AVCapturePhotoOutput.IsStillImageStabilizationSupported
-P:AVFoundation.AVCapturePhotoOutput.MaxBracketedCapturePhotoCount
-P:AVFoundation.AVCapturePhotoOutput.MaxPhotoDimensions
-P:AVFoundation.AVCapturePhotoOutput.MaxPhotoQualityPrioritization
-P:AVFoundation.AVCapturePhotoOutput.PhotoSettingsForSceneMonitoring
P:AVFoundation.AVCapturePhotoOutput.PortraitEffectsMatteDeliveryEnabled
P:AVFoundation.AVCapturePhotoOutput.PortraitEffectsMatteDeliverySupported
-P:AVFoundation.AVCapturePhotoOutput.PreparedPhotoSettings
-P:AVFoundation.AVCapturePhotoOutput.PreservesLivePhotoCaptureSuspendedOnSessionStop
P:AVFoundation.AVCapturePhotoOutput.ResponsiveCaptureEnabled
P:AVFoundation.AVCapturePhotoOutput.ResponsiveCaptureSupported
P:AVFoundation.AVCapturePhotoOutput.ShutterSoundSuppressionSupported
-P:AVFoundation.AVCapturePhotoOutput.SupportedFlashModes
P:AVFoundation.AVCapturePhotoOutput.VirtualDeviceConstituentPhotoDeliveryEnabled
P:AVFoundation.AVCapturePhotoOutput.VirtualDeviceConstituentPhotoDeliverySupported
P:AVFoundation.AVCapturePhotoOutput.VirtualDeviceFusionSupported
P:AVFoundation.AVCapturePhotoOutput.ZeroShutterLagEnabled
P:AVFoundation.AVCapturePhotoOutput.ZeroShutterLagSupported
-P:AVFoundation.AVCapturePhotoOutputReadinessCoordinator.CaptureReadiness
P:AVFoundation.AVCapturePhotoOutputReadinessCoordinator.Delegate
-P:AVFoundation.AVCapturePhotoOutputReadinessCoordinator.WeakDelegate
P:AVFoundation.AVCapturePhotoSettings.AutoContentAwareDistortionCorrectionEnabled
P:AVFoundation.AVCapturePhotoSettings.AutoDualCameraFusionEnabled
P:AVFoundation.AVCapturePhotoSettings.AutoRedEyeReductionEnabled
P:AVFoundation.AVCapturePhotoSettings.AutoVirtualDeviceFusionEnabled
P:AVFoundation.AVCapturePhotoSettings.AvailableEmbeddedThumbnailPhotoCodecTypes
-P:AVFoundation.AVCapturePhotoSettings.AvailablePreviewPhotoPixelFormatTypes
-P:AVFoundation.AVCapturePhotoSettings.AvailableRawEmbeddedThumbnailPhotoCodecTypes
P:AVFoundation.AVCapturePhotoSettings.CameraCalibrationDataDeliveryEnabled
P:AVFoundation.AVCapturePhotoSettings.ConstantColorEnabled
P:AVFoundation.AVCapturePhotoSettings.ConstantColorFallbackPhotoDeliveryEnabled
@@ -72357,83 +49173,31 @@ P:AVFoundation.AVCapturePhotoSettings.DepthDataDeliveryEnabled
P:AVFoundation.AVCapturePhotoSettings.DepthDataFiltered
P:AVFoundation.AVCapturePhotoSettings.DualCameraDualPhotoDeliveryEnabled
P:AVFoundation.AVCapturePhotoSettings.EmbeddedThumbnailPhotoFormat
-P:AVFoundation.AVCapturePhotoSettings.EmbedsDepthDataInPhoto
-P:AVFoundation.AVCapturePhotoSettings.EmbedsPortraitEffectsMatteInPhoto
-P:AVFoundation.AVCapturePhotoSettings.EmbedsSemanticSegmentationMattesInPhoto
-P:AVFoundation.AVCapturePhotoSettings.EnabledSemanticSegmentationMatteTypes
-P:AVFoundation.AVCapturePhotoSettings.FlashMode
-P:AVFoundation.AVCapturePhotoSettings.Format
P:AVFoundation.AVCapturePhotoSettings.IsAutoStillImageStabilizationEnabled
P:AVFoundation.AVCapturePhotoSettings.IsHighResolutionPhotoEnabled
-P:AVFoundation.AVCapturePhotoSettings.LivePhotoMovieFileUrl
-P:AVFoundation.AVCapturePhotoSettings.LivePhotoMovieMetadata
-P:AVFoundation.AVCapturePhotoSettings.LivePhotoVideoCodecType
-P:AVFoundation.AVCapturePhotoSettings.MaxPhotoDimensions
-P:AVFoundation.AVCapturePhotoSettings.Metadata
-P:AVFoundation.AVCapturePhotoSettings.PhotoQualityPrioritization
P:AVFoundation.AVCapturePhotoSettings.PortraitEffectsMatteDeliveryEnabled
-P:AVFoundation.AVCapturePhotoSettings.PreviewPhotoFormat
-P:AVFoundation.AVCapturePhotoSettings.ProcessedFileType
P:AVFoundation.AVCapturePhotoSettings.RawEmbeddedThumbnailPhotoFormat
-P:AVFoundation.AVCapturePhotoSettings.RawFileFormat
-P:AVFoundation.AVCapturePhotoSettings.RawFileType
-P:AVFoundation.AVCapturePhotoSettings.RawPhotoPixelFormatType
P:AVFoundation.AVCapturePhotoSettings.ShutterSoundSuppressionEnabled
-P:AVFoundation.AVCapturePhotoSettings.UniqueID
-P:AVFoundation.AVCapturePhotoSettings.VirtualDeviceConstituentPhotoDeliveryEnabledDevices
-P:AVFoundation.AVCapturePhotoSettings.WeakEmbeddedThumbnailPhotoFormat
-P:AVFoundation.AVCapturePhotoSettings.WeakRawEmbeddedThumbnailPhotoFormat
P:AVFoundation.AVCapturePhotoSettingsThumbnailFormat.Codec
P:AVFoundation.AVCapturePhotoSettingsThumbnailFormat.Height
P:AVFoundation.AVCapturePhotoSettingsThumbnailFormat.Width
-P:AVFoundation.AVCaptureReactionEffectState.EndTime
-P:AVFoundation.AVCaptureReactionEffectState.ReactionType
-P:AVFoundation.AVCaptureReactionEffectState.StartTime
P:AVFoundation.AVCaptureResolvedPhotoSettings.ContentAwareDistortionCorrectionEnabled
-P:AVFoundation.AVCaptureResolvedPhotoSettings.DeferredPhotoProxyDimensions
P:AVFoundation.AVCaptureResolvedPhotoSettings.DualCameraFusionEnabled
-P:AVFoundation.AVCaptureResolvedPhotoSettings.EmbeddedThumbnailDimensions
-P:AVFoundation.AVCaptureResolvedPhotoSettings.ExpectedPhotoCount
P:AVFoundation.AVCaptureResolvedPhotoSettings.FastCapturePrioritizationEnabled
P:AVFoundation.AVCaptureResolvedPhotoSettings.IsFlashEnabled
P:AVFoundation.AVCaptureResolvedPhotoSettings.IsStillImageStabilizationEnabled
-P:AVFoundation.AVCaptureResolvedPhotoSettings.LivePhotoMovieDimensions
-P:AVFoundation.AVCaptureResolvedPhotoSettings.PhotoDimensions
-P:AVFoundation.AVCaptureResolvedPhotoSettings.PhotoProcessingTimeRange
-P:AVFoundation.AVCaptureResolvedPhotoSettings.PortraitEffectsMatteDimensions
-P:AVFoundation.AVCaptureResolvedPhotoSettings.PreviewDimensions
-P:AVFoundation.AVCaptureResolvedPhotoSettings.RawEmbeddedThumbnailDimensions
-P:AVFoundation.AVCaptureResolvedPhotoSettings.RawPhotoDimensions
P:AVFoundation.AVCaptureResolvedPhotoSettings.RedEyeReductionEnabled
-P:AVFoundation.AVCaptureResolvedPhotoSettings.UniqueID
P:AVFoundation.AVCaptureResolvedPhotoSettings.VirtualDeviceFusionEnabled
-P:AVFoundation.AVCaptureScreenInput.CapturesCursor
-P:AVFoundation.AVCaptureScreenInput.CapturesMouseClicks
-P:AVFoundation.AVCaptureScreenInput.CropRect
-P:AVFoundation.AVCaptureScreenInput.MinFrameDuration
-P:AVFoundation.AVCaptureScreenInput.RemovesDuplicateFrames
-P:AVFoundation.AVCaptureScreenInput.ScaleFactor
-P:AVFoundation.AVCaptureSession.AutomaticallyConfiguresApplicationAudioSession
-P:AVFoundation.AVCaptureSession.AutomaticallyConfiguresCaptureDeviceForWideColor
-P:AVFoundation.AVCaptureSession.ConfiguresApplicationAudioSessionToMixWithOthers
-P:AVFoundation.AVCaptureSession.Connections
-P:AVFoundation.AVCaptureSession.Controls
P:AVFoundation.AVCaptureSession.ControlsDelegate
-P:AVFoundation.AVCaptureSession.ControlsDelegateCallbackQueue
P:AVFoundation.AVCaptureSession.DidStartRunningNotification
P:AVFoundation.AVCaptureSession.DidStopRunningNotification
P:AVFoundation.AVCaptureSession.ErrorKey
-P:AVFoundation.AVCaptureSession.HardwareCost
-P:AVFoundation.AVCaptureSession.Inputs
P:AVFoundation.AVCaptureSession.Interrupted
P:AVFoundation.AVCaptureSession.InterruptionEndedNotification
P:AVFoundation.AVCaptureSession.InterruptionReasonKey
P:AVFoundation.AVCaptureSession.InterruptionSystemPressureStateKey
-P:AVFoundation.AVCaptureSession.MasterClock
-P:AVFoundation.AVCaptureSession.MaxControlsCount
P:AVFoundation.AVCaptureSession.MultitaskingCameraAccessEnabled
P:AVFoundation.AVCaptureSession.MultitaskingCameraAccessSupported
-P:AVFoundation.AVCaptureSession.Outputs
P:AVFoundation.AVCaptureSession.Preset1280x720
P:AVFoundation.AVCaptureSession.Preset1920x1080
P:AVFoundation.AVCaptureSession.Preset320x240
@@ -72450,22 +49214,8 @@ P:AVFoundation.AVCaptureSession.PresetMedium
P:AVFoundation.AVCaptureSession.PresetPhoto
P:AVFoundation.AVCaptureSession.Running
P:AVFoundation.AVCaptureSession.RuntimeErrorNotification
-P:AVFoundation.AVCaptureSession.SessionPreset
-P:AVFoundation.AVCaptureSession.SupportsControls
-P:AVFoundation.AVCaptureSession.SynchronizationClock
-P:AVFoundation.AVCaptureSession.UsesApplicationAudioSession
P:AVFoundation.AVCaptureSession.WasInterruptedNotification
-P:AVFoundation.AVCaptureSession.WeakControlsDelegate
P:AVFoundation.AVCaptureSessionRuntimeErrorEventArgs.Error
-P:AVFoundation.AVCaptureSlider.AccessibilityIdentifier
-P:AVFoundation.AVCaptureSlider.LocalizedTitle
-P:AVFoundation.AVCaptureSlider.LocalizedValueFormat
-P:AVFoundation.AVCaptureSlider.ProminentValues
-P:AVFoundation.AVCaptureSlider.SymbolName
-P:AVFoundation.AVCaptureSlider.Value
-P:AVFoundation.AVCaptureStillImageOutput.AutomaticallyEnablesStillImageStabilizationWhenAvailable
-P:AVFoundation.AVCaptureStillImageOutput.AvailableImageDataCodecTypes
-P:AVFoundation.AVCaptureStillImageOutput.AvailableImageDataCVPixelFormatTypes
P:AVFoundation.AVCaptureStillImageOutput.CapturingStillImage
P:AVFoundation.AVCaptureStillImageOutput.CompressedVideoSetting
P:AVFoundation.AVCaptureStillImageOutput.HighResolutionStillImageOutputEnabled
@@ -72473,42 +49223,16 @@ P:AVFoundation.AVCaptureStillImageOutput.IsStillImageStabilizationActive
P:AVFoundation.AVCaptureStillImageOutput.IsStillImageStabilizationSupported
P:AVFoundation.AVCaptureStillImageOutput.LensStabilizationDuringBracketedCaptureEnabled
P:AVFoundation.AVCaptureStillImageOutput.LensStabilizationDuringBracketedCaptureSupported
-P:AVFoundation.AVCaptureStillImageOutput.MaxBracketedCaptureStillImageCount
-P:AVFoundation.AVCaptureStillImageOutput.OutputSettings
P:AVFoundation.AVCaptureStillImageOutput.UncompressedVideoSetting
-P:AVFoundation.AVCaptureSynchronizedData.Timestamp
-P:AVFoundation.AVCaptureSynchronizedDataCollection.Count
P:AVFoundation.AVCaptureSynchronizedDataCollection.Item(AVFoundation.AVCaptureOutput)
-P:AVFoundation.AVCaptureSynchronizedDepthData.DepthData
-P:AVFoundation.AVCaptureSynchronizedDepthData.DepthDataWasDropped
-P:AVFoundation.AVCaptureSynchronizedDepthData.DroppedReason
-P:AVFoundation.AVCaptureSynchronizedMetadataObjectData.MetadataObjects
-P:AVFoundation.AVCaptureSynchronizedSampleBufferData.DroppedReason
-P:AVFoundation.AVCaptureSynchronizedSampleBufferData.SampleBuffer
-P:AVFoundation.AVCaptureSynchronizedSampleBufferData.SampleBufferWasDropped
-P:AVFoundation.AVCaptureSystemPressureState.Factors
P:AVFoundation.AVCaptureSystemPressureState.Level
-P:AVFoundation.AVCaptureVideoDataOutput.AlwaysDiscardsLateVideoFrames
-P:AVFoundation.AVCaptureVideoDataOutput.AutomaticallyConfiguresOutputBufferDimensions
-P:AVFoundation.AVCaptureVideoDataOutput.AvailableVideoCodecTypes
-P:AVFoundation.AVCaptureVideoDataOutput.AvailableVideoCVPixelFormatTypes
P:AVFoundation.AVCaptureVideoDataOutput.CompressedVideoSetting
-P:AVFoundation.AVCaptureVideoDataOutput.DeliversPreviewSizedOutputBuffers
-P:AVFoundation.AVCaptureVideoDataOutput.MinFrameDuration
-P:AVFoundation.AVCaptureVideoDataOutput.SampleBufferCallbackQueue
-P:AVFoundation.AVCaptureVideoDataOutput.SampleBufferDelegate
P:AVFoundation.AVCaptureVideoDataOutput.UncompressedVideoSetting
-P:AVFoundation.AVCaptureVideoDataOutput.WeakVideoSettings
-P:AVFoundation.AVCaptureVideoPreviewLayer.AutomaticallyAdjustsMirroring
-P:AVFoundation.AVCaptureVideoPreviewLayer.Connection
P:AVFoundation.AVCaptureVideoPreviewLayer.Mirrored
P:AVFoundation.AVCaptureVideoPreviewLayer.MirroringSupported
-P:AVFoundation.AVCaptureVideoPreviewLayer.Orientation
P:AVFoundation.AVCaptureVideoPreviewLayer.OrientationSupported
P:AVFoundation.AVCaptureVideoPreviewLayer.Previewing
-P:AVFoundation.AVCaptureVideoPreviewLayer.Session
P:AVFoundation.AVCaptureVideoPreviewLayer.VideoGravity
-P:AVFoundation.AVCaptureVideoPreviewLayer.WeakVideoGravity
P:AVFoundation.AVCategoryEventArgs.Category
P:AVFoundation.AVChannelsEventArgs.NumberOfChannels
P:AVFoundation.AVCleanApertureProperties.Height
@@ -72518,84 +49242,22 @@ P:AVFoundation.AVCleanApertureProperties.Width
P:AVFoundation.AVColorProperties.AVVideoColorPrimaries
P:AVFoundation.AVColorProperties.AVVideoTransferFunction
P:AVFoundation.AVColorProperties.AVVideoYCbCrMatrix
-P:AVFoundation.AVComposition.NaturalSize
-P:AVFoundation.AVComposition.Tracks
-P:AVFoundation.AVComposition.UrlAssetInitializationOptions
-P:AVFoundation.AVCompositionTrack.FormatDescriptionReplacements
-P:AVFoundation.AVCompositionTrack.Segments
-P:AVFoundation.AVCompositionTrackFormatDescriptionReplacement.OriginalFormatDescription
-P:AVFoundation.AVCompositionTrackFormatDescriptionReplacement.ReplacementFormatDescription
P:AVFoundation.AVCompositionTrackSegment.Empty
-P:AVFoundation.AVCompositionTrackSegment.SourceTrackID
-P:AVFoundation.AVCompositionTrackSegment.SourceUrl
P:AVFoundation.AVCompressionProperties.CleanAperture
P:AVFoundation.AVCompressionProperties.PixelAspectRatio
-P:AVFoundation.AVContentKey.ContentKeySpecifier
-P:AVFoundation.AVContentKey.ExternalContentProtectionStatus
-P:AVFoundation.AVContentKeyRequest.CanProvidePersistableContentKey
-P:AVFoundation.AVContentKeyRequest.ContentKey
-P:AVFoundation.AVContentKeyRequest.ContentKeySpecifier
-P:AVFoundation.AVContentKeyRequest.Error
-P:AVFoundation.AVContentKeyRequest.Identifier
-P:AVFoundation.AVContentKeyRequest.InitializationData
-P:AVFoundation.AVContentKeyRequest.Options
P:AVFoundation.AVContentKeyRequest.ProtocolVersions
P:AVFoundation.AVContentKeyRequest.RequiresValidationDataInSecureTokenKey
-P:AVFoundation.AVContentKeyRequest.Status
-P:AVFoundation.AVContentKeySession.ContentProtectionSessionIdentifier
-P:AVFoundation.AVContentKeySession.Delegate
-P:AVFoundation.AVContentKeySession.DelegateQueue
P:AVFoundation.AVContentKeySession.KeySystem
-P:AVFoundation.AVContentKeySession.KeySystemConstant
-P:AVFoundation.AVContentKeySession.StorageUrl
P:AVFoundation.AVContentKeySessionServerPlaybackContextOptions.ProtocolVersions
P:AVFoundation.AVContentKeySessionServerPlaybackContextOptions.ServerChallenge
-P:AVFoundation.AVContentKeySpecifier.Identifier
-P:AVFoundation.AVContentKeySpecifier.KeySystem
-P:AVFoundation.AVContentKeySpecifier.Options
P:AVFoundation.AVContentProposal.AutomaticAcceptanceInterval
P:AVFoundation.AVContentProposal.ContentTimeForTransition
-P:AVFoundation.AVContentProposal.Metadata
P:AVFoundation.AVContentProposal.PreviewImage
-P:AVFoundation.AVContentProposal.Title
-P:AVFoundation.AVContentProposal.Url
-P:AVFoundation.AVContinuityDevice.AudioSessionInputs
P:AVFoundation.AVContinuityDevice.Connected
-P:AVFoundation.AVContinuityDevice.ConnectionId
-P:AVFoundation.AVContinuityDevice.VideoDevices
-P:AVFoundation.AVCoordinatedPlaybackParticipant.Identifier
P:AVFoundation.AVCoordinatedPlaybackParticipant.ReadyToPlay
-P:AVFoundation.AVCoordinatedPlaybackParticipant.SuspensionReasons
-P:AVFoundation.AVCoordinatedPlaybackSuspension.BeginDate
-P:AVFoundation.AVCoordinatedPlaybackSuspension.Reason
-P:AVFoundation.AVDateRangeMetadataGroup.EndDate
-P:AVFoundation.AVDateRangeMetadataGroup.Items
-P:AVFoundation.AVDateRangeMetadataGroup.StartDate
-P:AVFoundation.AVDelegatingPlaybackCoordinator.CurrentItemIdentifier
P:AVFoundation.AVDelegatingPlaybackCoordinator.PlaybackControlDelegate
-P:AVFoundation.AVDelegatingPlaybackCoordinator.WeakPlaybackControlDelegate
-P:AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand.AnticipatedPlaybackRate
-P:AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand.CompletionDueDate
-P:AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand.AnticipatedPlaybackRate
-P:AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand.ShouldBufferInAnticipationOfPlayback
-P:AVFoundation.AVDelegatingPlaybackCoordinatorPlaybackControlCommand.ExpectedCurrentItemIdentifier
-P:AVFoundation.AVDelegatingPlaybackCoordinatorPlaybackControlCommand.Originator
-P:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand.HostClockTime
-P:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand.ItemTime
-P:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand.Rate
-P:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand.AnticipatedPlaybackRate
-P:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand.CompletionDueDate
-P:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand.ItemTime
-P:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand.ShouldBufferInAnticipationOfPlayback
P:AVFoundation.AVDepthData.AvailableDepthDataTypes
-P:AVFoundation.AVDepthData.CameraCalibrationData
-P:AVFoundation.AVDepthData.DepthDataAccuracy
-P:AVFoundation.AVDepthData.DepthDataMap
-P:AVFoundation.AVDepthData.DepthDataQuality
-P:AVFoundation.AVDepthData.DepthDataType
P:AVFoundation.AVDepthData.IsDepthDataFiltered
-P:AVFoundation.AVDepthData.WeakAvailableDepthDataTypes
-P:AVFoundation.AVErrorEventArgs.Error
P:AVFoundation.AVErrorKeys.Device
P:AVFoundation.AVErrorKeys.DiscontinuityFlags
P:AVFoundation.AVErrorKeys.ErrorDomain
@@ -72608,60 +49270,22 @@ P:AVFoundation.AVErrorKeys.Pid
P:AVFoundation.AVErrorKeys.PresentationTimeStamp
P:AVFoundation.AVErrorKeys.RecordingSuccessfullyFinished
P:AVFoundation.AVErrorKeys.Time
-P:AVFoundation.AVExposureBiasRange.MaxExposureBias
-P:AVFoundation.AVExposureBiasRange.MinExposureBias
P:AVFoundation.AVExtendedNoteOnEvent.DefaultInstrument
-P:AVFoundation.AVExtendedNoteOnEvent.Duration
P:AVFoundation.AVExtendedNoteOnEvent.GroupId
P:AVFoundation.AVExtendedNoteOnEvent.InstrumentId
P:AVFoundation.AVExtendedNoteOnEvent.MidiNote
P:AVFoundation.AVExtendedNoteOnEvent.Velocity
P:AVFoundation.AVExtendedTempoEvent.Tempo
-P:AVFoundation.AVExternalStorageDevice.AuthorizationStatus
P:AVFoundation.AVExternalStorageDevice.Connected
-P:AVFoundation.AVExternalStorageDevice.DisplayName
-P:AVFoundation.AVExternalStorageDevice.FreeSize
P:AVFoundation.AVExternalStorageDevice.NotRecommendedForCaptureUse
-P:AVFoundation.AVExternalStorageDevice.TotalSize
-P:AVFoundation.AVExternalStorageDevice.Uuid
-P:AVFoundation.AVExternalStorageDeviceDiscoverySession.ExternalStorageDevices
-P:AVFoundation.AVExternalStorageDeviceDiscoverySession.SharedSession
P:AVFoundation.AVExternalStorageDeviceDiscoverySession.Supported
-P:AVFoundation.AVFragmentedAsset.Tracks
-P:AVFoundation.AVFragmentedAssetMinder.Assets
-P:AVFoundation.AVFragmentedAssetMinder.MindingInterval
P:AVFoundation.AVFragmentedMovie.ContainsMovieFragmentsDidChangeNotification
P:AVFoundation.AVFragmentedMovie.DurationDidChangeNotification
-P:AVFoundation.AVFragmentedMovie.Tracks
P:AVFoundation.AVFragmentedMovie.WasDefragmentedNotification
-P:AVFoundation.AVFragmentedMovieMinder.MindingInterval
-P:AVFoundation.AVFragmentedMovieMinder.Movies
P:AVFoundation.AVFragmentedMovieTrack.SegmentsDidChangeNotification
P:AVFoundation.AVFragmentedMovieTrack.TimeRangeDidChangeNotification
P:AVFoundation.AVFragmentedMovieTrack.TotalSampleDataLengthDidChangeNotification
-P:AVFoundation.AVFrameRateRange.MaxFrameDuration
-P:AVFoundation.AVFrameRateRange.MaxFrameRate
-P:AVFoundation.AVFrameRateRange.MinFrameDuration
-P:AVFoundation.AVFrameRateRange.MinFrameRate
-P:AVFoundation.AVMediaDataStorage.URL
-P:AVFoundation.AVMediaExtensionProperties.ContainingBundleName
-P:AVFoundation.AVMediaExtensionProperties.ContainingBundleUrl
-P:AVFoundation.AVMediaExtensionProperties.ExtensionIdentifier
-P:AVFoundation.AVMediaExtensionProperties.ExtensionName
-P:AVFoundation.AVMediaExtensionProperties.ExtensionUrl
-P:AVFoundation.AVMediaSelection.Asset
-P:AVFoundation.AVMediaSelectionGroup.AllowsEmptySelection
-P:AVFoundation.AVMediaSelectionGroup.DefaultOption
-P:AVFoundation.AVMediaSelectionGroup.Options
-P:AVFoundation.AVMediaSelectionOption.AvailableMetadataFormats
-P:AVFoundation.AVMediaSelectionOption.CommonMetadata
-P:AVFoundation.AVMediaSelectionOption.DisplayName
-P:AVFoundation.AVMediaSelectionOption.ExtendedLanguageTag
-P:AVFoundation.AVMediaSelectionOption.Locale
-P:AVFoundation.AVMediaSelectionOption.MediaSubTypes
-P:AVFoundation.AVMediaSelectionOption.MediaType
P:AVFoundation.AVMediaSelectionOption.Playable
-P:AVFoundation.AVMediaSelectionOption.PropertyList
P:AVFoundation.AVMetadata.CommonKeyAccessibilityDescription
P:AVFoundation.AVMetadata.CommonKeyAlbumName
P:AVFoundation.AVMetadata.CommonKeyArtist
@@ -72944,18 +49568,9 @@ P:AVFoundation.AVMetadata.QuickTimeUserDataKeyTrackName
P:AVFoundation.AVMetadata.QuickTimeUserDataKeyURLLink
P:AVFoundation.AVMetadata.QuickTimeUserDataKeyWarning
P:AVFoundation.AVMetadata.QuickTimeUserDataKeyWriter
-P:AVFoundation.AVMetadataBodyObject.BodyId
P:AVFoundation.AVMetadataExtraAttribute.BaseUriKey
P:AVFoundation.AVMetadataExtraAttribute.InfoKey
P:AVFoundation.AVMetadataExtraAttribute.ValueUriKey
-P:AVFoundation.AVMetadataFaceObject.FaceID
-P:AVFoundation.AVMetadataFaceObject.HasRollAngle
-P:AVFoundation.AVMetadataFaceObject.HasYawAngle
-P:AVFoundation.AVMetadataFaceObject.RollAngle
-P:AVFoundation.AVMetadataFaceObject.YawAngle
-P:AVFoundation.AVMetadataGroup.ClassifyingLabel
-P:AVFoundation.AVMetadataGroup.Items
-P:AVFoundation.AVMetadataGroup.UniqueID
P:AVFoundation.AVMetadataIdentifiers.CommonIdentifier.AccessibilityDescription
P:AVFoundation.AVMetadataIdentifiers.CommonIdentifier.AlbumName
P:AVFoundation.AVMetadataIdentifiers.CommonIdentifier.Artist
@@ -73235,121 +49850,19 @@ P:AVFoundation.AVMetadataIdentifiers.ThreeGP.UserDataRecordingYear
P:AVFoundation.AVMetadataIdentifiers.ThreeGP.UserDataThumbnail
P:AVFoundation.AVMetadataIdentifiers.ThreeGP.UserDataTitle
P:AVFoundation.AVMetadataIdentifiers.ThreeGP.UserDataUserRating
-P:AVFoundation.AVMetadataItem.CommonKey
-P:AVFoundation.AVMetadataItem.DataType
-P:AVFoundation.AVMetadataItem.DataValue
-P:AVFoundation.AVMetadataItem.DateValue
-P:AVFoundation.AVMetadataItem.Duration
-P:AVFoundation.AVMetadataItem.ExtendedLanguageTag
-P:AVFoundation.AVMetadataItem.ExtraAttributes
-P:AVFoundation.AVMetadataItem.Key
-P:AVFoundation.AVMetadataItem.KeySpace
-P:AVFoundation.AVMetadataItem.Locale
-P:AVFoundation.AVMetadataItem.MetadataIdentifier
-P:AVFoundation.AVMetadataItem.NumberValue
-P:AVFoundation.AVMetadataItem.StartDate
-P:AVFoundation.AVMetadataItem.StringValue
-P:AVFoundation.AVMetadataItem.Time
-P:AVFoundation.AVMetadataItem.Value
-P:AVFoundation.AVMetadataItemFilter.ForSharing
-P:AVFoundation.AVMetadataItemValueRequest.MetadataItem
P:AVFoundation.AVMetadataMachineReadableCodeObject.Corners
-P:AVFoundation.AVMetadataMachineReadableCodeObject.Descriptor
-P:AVFoundation.AVMetadataMachineReadableCodeObject.StringValue
-P:AVFoundation.AVMetadataMachineReadableCodeObject.WeakCorners
-P:AVFoundation.AVMetadataObject.Bounds
-P:AVFoundation.AVMetadataObject.Duration
-P:AVFoundation.AVMetadataObject.Time
P:AVFoundation.AVMetadataObject.Type
-P:AVFoundation.AVMetadataObject.WeakType
-P:AVFoundation.AVMetadataSalientObject.ObjectId
-P:AVFoundation.AVMetricContentKeyRequestEvent.ContentKeySpecifier
-P:AVFoundation.AVMetricContentKeyRequestEvent.IsClientInitiated
-P:AVFoundation.AVMetricContentKeyRequestEvent.MediaResourceRequestEvent
-P:AVFoundation.AVMetricContentKeyRequestEvent.MediaType
-P:AVFoundation.AVMetricErrorEvent.DidRecover
-P:AVFoundation.AVMetricErrorEvent.Error
-P:AVFoundation.AVMetricEvent.Date
-P:AVFoundation.AVMetricEvent.MediaTime
-P:AVFoundation.AVMetricEvent.SessionId
-P:AVFoundation.AVMetricHlsMediaSegmentRequestEvent.ByteRange
-P:AVFoundation.AVMetricHlsMediaSegmentRequestEvent.IndexFileUrl
-P:AVFoundation.AVMetricHlsMediaSegmentRequestEvent.IsMapSegment
-P:AVFoundation.AVMetricHlsMediaSegmentRequestEvent.MediaResourceRequestEvent
-P:AVFoundation.AVMetricHlsMediaSegmentRequestEvent.MediaType
-P:AVFoundation.AVMetricHlsMediaSegmentRequestEvent.Url
-P:AVFoundation.AVMetricHlsPlaylistRequestEvent.IsMultivariantPlaylist
-P:AVFoundation.AVMetricHlsPlaylistRequestEvent.MediaResourceRequestEvent
-P:AVFoundation.AVMetricHlsPlaylistRequestEvent.MediaType
-P:AVFoundation.AVMetricHlsPlaylistRequestEvent.Url
-P:AVFoundation.AVMetricMediaResourceRequestEvent.ByteRange
-P:AVFoundation.AVMetricMediaResourceRequestEvent.ErrorEvent
-P:AVFoundation.AVMetricMediaResourceRequestEvent.NetworkTransactionMetrics
P:AVFoundation.AVMetricMediaResourceRequestEvent.ReadFromCache
-P:AVFoundation.AVMetricMediaResourceRequestEvent.RequestEndTime
-P:AVFoundation.AVMetricMediaResourceRequestEvent.RequestStartTime
-P:AVFoundation.AVMetricMediaResourceRequestEvent.ResponseEndTime
-P:AVFoundation.AVMetricMediaResourceRequestEvent.ResponseStartTime
-P:AVFoundation.AVMetricMediaResourceRequestEvent.ServerAddress
-P:AVFoundation.AVMetricMediaResourceRequestEvent.Url
-P:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent.ContentKeyRequestEvents
-P:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent.MediaSegmentRequestEvents
-P:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent.PlaylistRequestEvents
-P:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent.LoadedTimeRanges
-P:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent.TimeTaken
-P:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent.Variant
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.ErrorEvent
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.MediaResourceRequestCount
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.PlaybackDuration
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.RecoverableErrorCount
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.StallCount
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.TimeSpentInInitialStartup
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.TimeSpentRecoveringFromStall
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.TimeWeightedAverageBitrate
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.TimeWeightedPeakBitrate
-P:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent.VariantSwitchCount
-P:AVFoundation.AVMetricPlayerItemRateChangeEvent.PreviousRate
-P:AVFoundation.AVMetricPlayerItemRateChangeEvent.Rate
-P:AVFoundation.AVMetricPlayerItemRateChangeEvent.Variant
-P:AVFoundation.AVMetricPlayerItemSeekDidCompleteEvent.DidSeekInBuffer
-P:AVFoundation.AVMetricPlayerItemVariantSwitchEvent.DidSucceed
-P:AVFoundation.AVMetricPlayerItemVariantSwitchEvent.FromVariant
-P:AVFoundation.AVMetricPlayerItemVariantSwitchEvent.LoadedTimeRanges
-P:AVFoundation.AVMetricPlayerItemVariantSwitchEvent.ToVariant
-P:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent.FromVariant
-P:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent.LoadedTimeRanges
-P:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent.ToVariant
-P:AVFoundation.AVMidiChannelEvent.Channel
P:AVFoundation.AVMidiChannelPressureEvent.Pressure
P:AVFoundation.AVMidiControlChangeEvent.MessageType
-P:AVFoundation.AVMidiControlChangeEvent.Value
-P:AVFoundation.AVMidiMetaEvent.Type
-P:AVFoundation.AVMidiNoteEvent.Channel
-P:AVFoundation.AVMidiNoteEvent.Duration
-P:AVFoundation.AVMidiNoteEvent.Key
P:AVFoundation.AVMidiNoteEvent.Velocity
-P:AVFoundation.AVMidiPitchBendEvent.Value
P:AVFoundation.AVMidiPlayer.CurrentPosition
-P:AVFoundation.AVMidiPlayer.Duration
P:AVFoundation.AVMidiPlayer.Playing
-P:AVFoundation.AVMidiPlayer.Rate
-P:AVFoundation.AVMidiPolyPressureEvent.Key
P:AVFoundation.AVMidiPolyPressureEvent.Pressure
P:AVFoundation.AVMidiProgramChangeEvent.ProgramNumber
P:AVFoundation.AVMidiSysexEvent.SizeInBytes
-P:AVFoundation.AVMovie.CanContainMovieFragments
-P:AVFoundation.AVMovie.ContainsMovieFragments
-P:AVFoundation.AVMovie.Data
-P:AVFoundation.AVMovie.DefaultMediaDataStorage
-P:AVFoundation.AVMovie.MovieTypes
P:AVFoundation.AVMovie.ReferenceRestrictionsKey
P:AVFoundation.AVMovie.ShouldSupportAliasDataReferencesKey
-P:AVFoundation.AVMovie.Tracks
-P:AVFoundation.AVMovie.URL
-P:AVFoundation.AVMovieTrack.AlternateGroupID
-P:AVFoundation.AVMovieTrack.MediaDataStorage
-P:AVFoundation.AVMovieTrack.MediaDecodeTimeRange
-P:AVFoundation.AVMovieTrack.MediaPresentationTimeRange
P:AVFoundation.AVMusicTrack.DestinationAudioUnit
P:AVFoundation.AVMusicTrack.DestinationMidiEndpoint
P:AVFoundation.AVMusicTrack.LengthInBeats
@@ -73363,97 +49876,12 @@ P:AVFoundation.AVMusicTrack.Soloed
P:AVFoundation.AVMusicTrack.TimeResolution
P:AVFoundation.AVMusicTrack.UsesAutomatedParameters
P:AVFoundation.AVMusicUserEvent.SizeInBytes
-P:AVFoundation.AVMutableAssetDownloadStorageManagementPolicy.ExpirationDate
-P:AVFoundation.AVMutableAssetDownloadStorageManagementPolicy.Priority
-P:AVFoundation.AVMutableAudioMix.InputParameters
-P:AVFoundation.AVMutableAudioMixInputParameters.AudioTapProcessor
-P:AVFoundation.AVMutableAudioMixInputParameters.AudioTimePitchAlgorithm
-P:AVFoundation.AVMutableAudioMixInputParameters.TrackID
-P:AVFoundation.AVMutableCaption.Animation
-P:AVFoundation.AVMutableCaption.Region
-P:AVFoundation.AVMutableCaption.Text
-P:AVFoundation.AVMutableCaption.TextAlignment
-P:AVFoundation.AVMutableCaption.TimeRange
-P:AVFoundation.AVMutableCaptionRegion.DisplayAlignment
-P:AVFoundation.AVMutableCaptionRegion.Origin
-P:AVFoundation.AVMutableCaptionRegion.Scroll
-P:AVFoundation.AVMutableCaptionRegion.Size
-P:AVFoundation.AVMutableCaptionRegion.WritingMode
-P:AVFoundation.AVMutableComposition.NaturalSize
P:AVFoundation.AVMutableCompositionTrack.Enabled
-P:AVFoundation.AVMutableCompositionTrack.ExtendedLanguageTag
-P:AVFoundation.AVMutableCompositionTrack.LanguageCode
-P:AVFoundation.AVMutableCompositionTrack.NaturalTimeScale
-P:AVFoundation.AVMutableCompositionTrack.PreferredTransform
-P:AVFoundation.AVMutableCompositionTrack.PreferredVolume
-P:AVFoundation.AVMutableCompositionTrack.Segments
-P:AVFoundation.AVMutableDateRangeMetadataGroup.EndDate
-P:AVFoundation.AVMutableDateRangeMetadataGroup.Items
-P:AVFoundation.AVMutableDateRangeMetadataGroup.StartDate
-P:AVFoundation.AVMutableMetadataItem.DataType
-P:AVFoundation.AVMutableMetadataItem.Duration
-P:AVFoundation.AVMutableMetadataItem.ExtendedLanguageTag
-P:AVFoundation.AVMutableMetadataItem.ExtraAttributes
-P:AVFoundation.AVMutableMetadataItem.Key
-P:AVFoundation.AVMutableMetadataItem.KeySpace
-P:AVFoundation.AVMutableMetadataItem.Locale
-P:AVFoundation.AVMutableMetadataItem.MetadataIdentifier
-P:AVFoundation.AVMutableMetadataItem.StartDate
-P:AVFoundation.AVMutableMetadataItem.Time
-P:AVFoundation.AVMutableMetadataItem.Value
-P:AVFoundation.AVMutableMovie.DefaultMediaDataStorage
-P:AVFoundation.AVMutableMovie.InterleavingPeriod
-P:AVFoundation.AVMutableMovie.Metadata
P:AVFoundation.AVMutableMovie.Modified
-P:AVFoundation.AVMutableMovie.PreferredRate
-P:AVFoundation.AVMutableMovie.PreferredTransform
-P:AVFoundation.AVMutableMovie.PreferredVolume
-P:AVFoundation.AVMutableMovie.Timescale
-P:AVFoundation.AVMutableMovie.Tracks
-P:AVFoundation.AVMutableMovieTrack.AlternateGroupID
-P:AVFoundation.AVMutableMovieTrack.CleanApertureDimensions
P:AVFoundation.AVMutableMovieTrack.Enabled
-P:AVFoundation.AVMutableMovieTrack.EncodedPixelsDimensions
-P:AVFoundation.AVMutableMovieTrack.ExtendedLanguageTag
-P:AVFoundation.AVMutableMovieTrack.HasProtectedContent
-P:AVFoundation.AVMutableMovieTrack.LanguageCode
-P:AVFoundation.AVMutableMovieTrack.Layer
-P:AVFoundation.AVMutableMovieTrack.MediaDataStorage
-P:AVFoundation.AVMutableMovieTrack.Metadata
P:AVFoundation.AVMutableMovieTrack.Modified
-P:AVFoundation.AVMutableMovieTrack.NaturalSize
-P:AVFoundation.AVMutableMovieTrack.PreferredMediaChunkAlignment
-P:AVFoundation.AVMutableMovieTrack.PreferredMediaChunkDuration
-P:AVFoundation.AVMutableMovieTrack.PreferredMediaChunkSize
-P:AVFoundation.AVMutableMovieTrack.PreferredTransform
-P:AVFoundation.AVMutableMovieTrack.PreferredVolume
-P:AVFoundation.AVMutableMovieTrack.ProductionApertureDimensions
-P:AVFoundation.AVMutableMovieTrack.SampleReferenceBaseURL
-P:AVFoundation.AVMutableMovieTrack.Timescale
-P:AVFoundation.AVMutableTimedMetadataGroup.Items
-P:AVFoundation.AVMutableTimedMetadataGroup.TimeRange
-P:AVFoundation.AVMutableVideoComposition.AnimationTool
-P:AVFoundation.AVMutableVideoComposition.ColorPrimaries
-P:AVFoundation.AVMutableVideoComposition.ColorTransferFunction
-P:AVFoundation.AVMutableVideoComposition.ColorYCbCrMatrix
-P:AVFoundation.AVMutableVideoComposition.CustomVideoCompositorClass
-P:AVFoundation.AVMutableVideoComposition.FrameDuration
-P:AVFoundation.AVMutableVideoComposition.Instructions
-P:AVFoundation.AVMutableVideoComposition.PerFrameHdrDisplayMetadataPolicy
-P:AVFoundation.AVMutableVideoComposition.RenderScale
-P:AVFoundation.AVMutableVideoComposition.RenderSize
-P:AVFoundation.AVMutableVideoComposition.SourceSampleDataTrackIds
-P:AVFoundation.AVMutableVideoComposition.SourceTrackIdForFrameTiming
-P:AVFoundation.AVMutableVideoCompositionInstruction.BackgroundColor
-P:AVFoundation.AVMutableVideoCompositionInstruction.EnablePostProcessing
-P:AVFoundation.AVMutableVideoCompositionInstruction.LayerInstructions
-P:AVFoundation.AVMutableVideoCompositionInstruction.RequiredSourceSampleDataTrackIds
-P:AVFoundation.AVMutableVideoCompositionInstruction.TimeRange
-P:AVFoundation.AVMutableVideoCompositionLayerInstruction.TrackID
P:AVFoundation.AVOutputSettingsAssistant.AudioSettings
-P:AVFoundation.AVOutputSettingsAssistant.AvailableOutputSettingsPresets
P:AVFoundation.AVOutputSettingsAssistant.CompressedVideoSettings
-P:AVFoundation.AVOutputSettingsAssistant.OutputFileType
P:AVFoundation.AVOutputSettingsAssistant.Preset1280x720
P:AVFoundation.AVOutputSettingsAssistant.Preset1920x1080
P:AVFoundation.AVOutputSettingsAssistant.Preset3840x2160
@@ -73461,242 +49889,54 @@ P:AVFoundation.AVOutputSettingsAssistant.Preset640x480
P:AVFoundation.AVOutputSettingsAssistant.Preset960x540
P:AVFoundation.AVOutputSettingsAssistant.PresetHevc1920x1080
P:AVFoundation.AVOutputSettingsAssistant.PresetHevc3840x2160
-P:AVFoundation.AVOutputSettingsAssistant.SourceAudioFormat
-P:AVFoundation.AVOutputSettingsAssistant.SourceVideoAverageFrameDuration
-P:AVFoundation.AVOutputSettingsAssistant.SourceVideoFormat
-P:AVFoundation.AVOutputSettingsAssistant.SourceVideoMinFrameDuration
P:AVFoundation.AVOutputSettingsAssistant.UnCompressedVideoSettings
-P:AVFoundation.AVOutputSettingsAssistant.WeakAudioSettings
-P:AVFoundation.AVOutputSettingsAssistant.WeakVideoSettings
P:AVFoundation.AVParameterEvent.Element
P:AVFoundation.AVParameterEvent.ParameterId
P:AVFoundation.AVParameterEvent.Scope
-P:AVFoundation.AVParameterEvent.Value
P:AVFoundation.AVPixelAspectRatioProperties.PixelAspectRatioHorizontalSpacing
P:AVFoundation.AVPixelAspectRatioProperties.PixelAspectRatioVerticalSpacing
-P:AVFoundation.AVPlaybackCoordinator.OtherParticipants
P:AVFoundation.AVPlaybackCoordinator.OtherParticipantsDidChangeNotification
-P:AVFoundation.AVPlaybackCoordinator.PauseSnapsToMediaTimeOfOriginator
-P:AVFoundation.AVPlaybackCoordinator.SuspensionReasons
P:AVFoundation.AVPlaybackCoordinator.SuspensionReasonsDidChangeNotification
-P:AVFoundation.AVPlaybackCoordinator.SuspensionReasonsThatTriggerWaiting
-P:AVFoundation.AVPlayer.ActionAtItemEnd
P:AVFoundation.AVPlayer.AirPlayVideoActive
-P:AVFoundation.AVPlayer.AllowsAirPlayVideo
-P:AVFoundation.AVPlayer.AllowsExternalPlayback
-P:AVFoundation.AVPlayer.AppliesMediaSelectionCriteriaAutomatically
-P:AVFoundation.AVPlayer.AudioOutputDeviceUniqueID
-P:AVFoundation.AVPlayer.AudiovisualBackgroundPlaybackPolicy
-P:AVFoundation.AVPlayer.AutomaticallyWaitsToMinimizeStalling
-P:AVFoundation.AVPlayer.AvailableHdrModes
P:AVFoundation.AVPlayer.AvailableHdrModesDidChangeNotification
P:AVFoundation.AVPlayer.ClosedCaptionDisplayEnabled
-P:AVFoundation.AVPlayer.CurrentItem
-P:AVFoundation.AVPlayer.CurrentTime
-P:AVFoundation.AVPlayer.DefaultRate
-P:AVFoundation.AVPlayer.EligibleForHdrPlayback
P:AVFoundation.AVPlayer.EligibleForHdrPlaybackDidChangeNotification
-P:AVFoundation.AVPlayer.Error
P:AVFoundation.AVPlayer.ExternalPlaybackActive
P:AVFoundation.AVPlayer.ExternalPlaybackVideoGravity
-P:AVFoundation.AVPlayer.MasterClock
P:AVFoundation.AVPlayer.Muted
-P:AVFoundation.AVPlayer.OutputObscuredDueToInsufficientExternalProtection
-P:AVFoundation.AVPlayer.PlaybackCoordinator
-P:AVFoundation.AVPlayer.PreferredVideoDecoderGpuRegistryId
-P:AVFoundation.AVPlayer.PreventsDisplaySleepDuringVideoPlayback
-P:AVFoundation.AVPlayer.Rate
P:AVFoundation.AVPlayer.RateDidChangeNotification
-P:AVFoundation.AVPlayer.ReasonForWaitingToPlay
-P:AVFoundation.AVPlayer.SourceClock
-P:AVFoundation.AVPlayer.Status
-P:AVFoundation.AVPlayer.TimeControlStatus
-P:AVFoundation.AVPlayer.UsesAirPlayVideoWhileAirPlayScreenIsActive
-P:AVFoundation.AVPlayer.UsesExternalPlaybackWhileExternalScreenIsActive
-P:AVFoundation.AVPlayer.VideoOutput
-P:AVFoundation.AVPlayer.Volume
-P:AVFoundation.AVPlayer.WeakExternalPlaybackVideoGravity
-P:AVFoundation.AVPlayerInterstitialEvent.AlignsResumptionWithPrimarySegmentBoundary
-P:AVFoundation.AVPlayerInterstitialEvent.AlignsStartWithPrimarySegmentBoundary
-P:AVFoundation.AVPlayerInterstitialEvent.AssetListResponse
-P:AVFoundation.AVPlayerInterstitialEvent.ContentMayVary
-P:AVFoundation.AVPlayerInterstitialEvent.Cue
-P:AVFoundation.AVPlayerInterstitialEvent.Date
-P:AVFoundation.AVPlayerInterstitialEvent.Identifier
-P:AVFoundation.AVPlayerInterstitialEvent.PlannedDuration
-P:AVFoundation.AVPlayerInterstitialEvent.PlayoutLimit
-P:AVFoundation.AVPlayerInterstitialEvent.PrimaryItem
-P:AVFoundation.AVPlayerInterstitialEvent.Restrictions
-P:AVFoundation.AVPlayerInterstitialEvent.ResumptionOffset
-P:AVFoundation.AVPlayerInterstitialEvent.SupplementsPrimaryContent
-P:AVFoundation.AVPlayerInterstitialEvent.TemplateItems
-P:AVFoundation.AVPlayerInterstitialEvent.Time
-P:AVFoundation.AVPlayerInterstitialEvent.TimelineOccupancy
-P:AVFoundation.AVPlayerInterstitialEvent.UserDefinedAttributes
-P:AVFoundation.AVPlayerInterstitialEvent.WillPlayOnce
-P:AVFoundation.AVPlayerInterstitialEventController.Events
P:AVFoundation.AVPlayerInterstitialEventMonitor.AssetListResponseStatusDidChangeErrorKey
P:AVFoundation.AVPlayerInterstitialEventMonitor.AssetListResponseStatusDidChangeEventKey
P:AVFoundation.AVPlayerInterstitialEventMonitor.AssetListResponseStatusDidChangeNotification
P:AVFoundation.AVPlayerInterstitialEventMonitor.AssetListResponseStatusDidChangeStatusKey
-P:AVFoundation.AVPlayerInterstitialEventMonitor.CurrentEvent
P:AVFoundation.AVPlayerInterstitialEventMonitor.CurrentEventDidChangeNotification
-P:AVFoundation.AVPlayerInterstitialEventMonitor.Events
P:AVFoundation.AVPlayerInterstitialEventMonitor.EventsDidChangeNotification
-P:AVFoundation.AVPlayerInterstitialEventMonitor.InterstitialPlayer
-P:AVFoundation.AVPlayerInterstitialEventMonitor.PrimaryPlayer
-P:AVFoundation.AVPlayerItem.AccessLog
-P:AVFoundation.AVPlayerItem.AllowedAudioSpatializationFormats
-P:AVFoundation.AVPlayerItem.AppliesPerFrameHdrDisplayMetadata
-P:AVFoundation.AVPlayerItem.Asset
-P:AVFoundation.AVPlayerItem.AudioMix
P:AVFoundation.AVPlayerItem.AudioSpatializationAllowed
-P:AVFoundation.AVPlayerItem.AudioTimePitchAlgorithm
-P:AVFoundation.AVPlayerItem.AutomaticallyLoadedAssetKeys
-P:AVFoundation.AVPlayerItem.AutomaticallyPreservesTimeOffsetFromLive
-P:AVFoundation.AVPlayerItem.CanPlayFastForward
-P:AVFoundation.AVPlayerItem.CanPlayFastReverse
-P:AVFoundation.AVPlayerItem.CanPlayReverse
-P:AVFoundation.AVPlayerItem.CanPlaySlowForward
-P:AVFoundation.AVPlayerItem.CanPlaySlowReverse
-P:AVFoundation.AVPlayerItem.CanStepBackward
-P:AVFoundation.AVPlayerItem.CanStepForward
-P:AVFoundation.AVPlayerItem.CanUseNetworkResourcesForLiveStreamingWhilePaused
-P:AVFoundation.AVPlayerItem.ConfiguredTimeOffsetFromLive
-P:AVFoundation.AVPlayerItem.CurrentDate
-P:AVFoundation.AVPlayerItem.CurrentMediaSelection
-P:AVFoundation.AVPlayerItem.CurrentTime
-P:AVFoundation.AVPlayerItem.CustomVideoCompositor
P:AVFoundation.AVPlayerItem.DidPlayToEndTimeNotification
-P:AVFoundation.AVPlayerItem.Duration
-P:AVFoundation.AVPlayerItem.Error
-P:AVFoundation.AVPlayerItem.ErrorLog
-P:AVFoundation.AVPlayerItem.ExternalMetadata
-P:AVFoundation.AVPlayerItem.ForwardPlaybackEndTime
-P:AVFoundation.AVPlayerItem.IntegratedTimeline
-P:AVFoundation.AVPlayerItem.InterstitialTimeRanges
P:AVFoundation.AVPlayerItem.ItemFailedToPlayToEndTimeErrorKey
P:AVFoundation.AVPlayerItem.ItemFailedToPlayToEndTimeNotification
-P:AVFoundation.AVPlayerItem.LoadedTimeRanges
-P:AVFoundation.AVPlayerItem.MediaDataCollectors
P:AVFoundation.AVPlayerItem.MediaSelectionDidChangeNotification
-P:AVFoundation.AVPlayerItem.NavigationMarkerGroups
P:AVFoundation.AVPlayerItem.NewAccessLogEntryNotification
P:AVFoundation.AVPlayerItem.NewErrorLogEntryNotification
-P:AVFoundation.AVPlayerItem.NextContentProposal
-P:AVFoundation.AVPlayerItem.Outputs
P:AVFoundation.AVPlayerItem.PlaybackBufferEmpty
P:AVFoundation.AVPlayerItem.PlaybackBufferFull
P:AVFoundation.AVPlayerItem.PlaybackLikelyToKeepUp
P:AVFoundation.AVPlayerItem.PlaybackStalledNotification
-P:AVFoundation.AVPlayerItem.PreferredForwardBufferDuration
-P:AVFoundation.AVPlayerItem.PreferredMaximumResolution
-P:AVFoundation.AVPlayerItem.PreferredMaximumResolutionForExpensiveNetworks
-P:AVFoundation.AVPlayerItem.PreferredPeakBitRate
-P:AVFoundation.AVPlayerItem.PreferredPeakBitRateForExpensiveNetworks
-P:AVFoundation.AVPlayerItem.PresentationSize
-P:AVFoundation.AVPlayerItem.RecommendedTimeOffsetFromLive
P:AVFoundation.AVPlayerItem.RecommendedTimeOffsetFromLiveDidChangeNotification
-P:AVFoundation.AVPlayerItem.ReversePlaybackEndTime
-P:AVFoundation.AVPlayerItem.SeekableTimeRanges
-P:AVFoundation.AVPlayerItem.SeekingWaitsForVideoCompositionRendering
-P:AVFoundation.AVPlayerItem.StartsOnFirstEligibleVariant
-P:AVFoundation.AVPlayerItem.Status
-P:AVFoundation.AVPlayerItem.TextStyleRules
-P:AVFoundation.AVPlayerItem.Timebase
-P:AVFoundation.AVPlayerItem.TimedMetadata
P:AVFoundation.AVPlayerItem.TimeJumpedNotification
-P:AVFoundation.AVPlayerItem.Tracks
-P:AVFoundation.AVPlayerItem.TranslatesPlayerInterstitialEvents
-P:AVFoundation.AVPlayerItem.VariantPreferences
P:AVFoundation.AVPlayerItem.VideoApertureMode
-P:AVFoundation.AVPlayerItem.VideoComposition
-P:AVFoundation.AVPlayerItem.WeakNowPlayingInfo
-P:AVFoundation.AVPlayerItemAccessLog.Events
-P:AVFoundation.AVPlayerItemAccessLog.ExtendedLogData
-P:AVFoundation.AVPlayerItemAccessLog.ExtendedLogDataStringEncoding
-P:AVFoundation.AVPlayerItemAccessLogEvent.AverageAudioBitrate
-P:AVFoundation.AVPlayerItemAccessLogEvent.AverageVideoBitrate
-P:AVFoundation.AVPlayerItemAccessLogEvent.BytesTransferred
-P:AVFoundation.AVPlayerItemAccessLogEvent.DownloadOverdue
-P:AVFoundation.AVPlayerItemAccessLogEvent.DroppedVideoFrameCount
-P:AVFoundation.AVPlayerItemAccessLogEvent.DurationWatched
-P:AVFoundation.AVPlayerItemAccessLogEvent.IndicatedAverageBitrate
-P:AVFoundation.AVPlayerItemAccessLogEvent.IndicatedBitrate
-P:AVFoundation.AVPlayerItemAccessLogEvent.MediaRequestsWWAN
-P:AVFoundation.AVPlayerItemAccessLogEvent.NumberOfMediaRequests
-P:AVFoundation.AVPlayerItemAccessLogEvent.ObservedBitrate
-P:AVFoundation.AVPlayerItemAccessLogEvent.ObservedBitrateStandardDeviation
-P:AVFoundation.AVPlayerItemAccessLogEvent.ObservedMaxBitrate
-P:AVFoundation.AVPlayerItemAccessLogEvent.ObservedMinBitrate
-P:AVFoundation.AVPlayerItemAccessLogEvent.PlaybackSessionID
-P:AVFoundation.AVPlayerItemAccessLogEvent.PlaybackStartDate
-P:AVFoundation.AVPlayerItemAccessLogEvent.PlaybackStartOffset
-P:AVFoundation.AVPlayerItemAccessLogEvent.PlaybackType
-P:AVFoundation.AVPlayerItemAccessLogEvent.SegmentedDownloadedCount
-P:AVFoundation.AVPlayerItemAccessLogEvent.SegmentsDownloadedDuration
-P:AVFoundation.AVPlayerItemAccessLogEvent.ServerAddress
-P:AVFoundation.AVPlayerItemAccessLogEvent.ServerAddressChangeCount
-P:AVFoundation.AVPlayerItemAccessLogEvent.StallCount
-P:AVFoundation.AVPlayerItemAccessLogEvent.StartupTime
-P:AVFoundation.AVPlayerItemAccessLogEvent.SwitchBitrate
-P:AVFoundation.AVPlayerItemAccessLogEvent.TransferDuration
-P:AVFoundation.AVPlayerItemAccessLogEvent.Uri
P:AVFoundation.AVPlayerItemErrorEventArgs.Error
-P:AVFoundation.AVPlayerItemErrorLog.Events
-P:AVFoundation.AVPlayerItemErrorLog.ExtendedLogData
-P:AVFoundation.AVPlayerItemErrorLog.ExtendedLogDataStringEncoding
-P:AVFoundation.AVPlayerItemErrorLogEvent.AllHttpResponseHeaderFields
-P:AVFoundation.AVPlayerItemErrorLogEvent.Date
-P:AVFoundation.AVPlayerItemErrorLogEvent.ErrorComment
-P:AVFoundation.AVPlayerItemErrorLogEvent.ErrorDomain
-P:AVFoundation.AVPlayerItemErrorLogEvent.ErrorStatusCode
-P:AVFoundation.AVPlayerItemErrorLogEvent.PlaybackSessionID
-P:AVFoundation.AVPlayerItemErrorLogEvent.ServerAddress
-P:AVFoundation.AVPlayerItemErrorLogEvent.Uri
-P:AVFoundation.AVPlayerItemIntegratedTimeline.CurrentDate
-P:AVFoundation.AVPlayerItemIntegratedTimeline.CurrentSnapshot
-P:AVFoundation.AVPlayerItemIntegratedTimeline.CurrentTime
-P:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot.CurrentDate
-P:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot.CurrentSegment
-P:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot.CurrentTime
-P:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot.Duration
-P:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot.Segments
P:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot.SnapshotsOutOfSyncNotification
P:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot.SnapshotsOutOfSyncReasonKey
-P:AVFoundation.AVPlayerItemLegibleOutput.AdvanceIntervalForDelegateInvocation
-P:AVFoundation.AVPlayerItemLegibleOutput.Delegate
-P:AVFoundation.AVPlayerItemLegibleOutput.DelegateQueue
-P:AVFoundation.AVPlayerItemLegibleOutput.TextStylingResolution
P:AVFoundation.AVPlayerItemLegibleOutput.TextStylingResolutionDefault
P:AVFoundation.AVPlayerItemLegibleOutput.TextStylingResolutionSourceAndRulesOnly
P:AVFoundation.AVPlayerItemMetadataCollector.Delegate
-P:AVFoundation.AVPlayerItemMetadataCollector.DelegateQueue
-P:AVFoundation.AVPlayerItemMetadataCollector.WeakDelegate
-P:AVFoundation.AVPlayerItemMetadataOutput.AdvanceIntervalForDelegateInvocation
P:AVFoundation.AVPlayerItemMetadataOutput.Delegate
-P:AVFoundation.AVPlayerItemMetadataOutput.DelegateQueue
-P:AVFoundation.AVPlayerItemMetadataOutput.WeakDelegate
-P:AVFoundation.AVPlayerItemOutput.SuppressesPlayerRendering
-P:AVFoundation.AVPlayerItemRenderedLegibleOutput.AdvanceIntervalForDelegateInvocation
P:AVFoundation.AVPlayerItemRenderedLegibleOutput.Delegate
-P:AVFoundation.AVPlayerItemRenderedLegibleOutput.DelegateQueue
-P:AVFoundation.AVPlayerItemRenderedLegibleOutput.VideoDisplaySize
-P:AVFoundation.AVPlayerItemRenderedLegibleOutput.WeakDelegate
-P:AVFoundation.AVPlayerItemSegment.InterstitialEvent
-P:AVFoundation.AVPlayerItemSegment.LoadedTimeRanges
-P:AVFoundation.AVPlayerItemSegment.SegmentType
-P:AVFoundation.AVPlayerItemSegment.StartDate
-P:AVFoundation.AVPlayerItemSegment.TimeMapping
P:AVFoundation.AVPlayerItemTimeJumpedEventArgs.OriginatingParticipant
-P:AVFoundation.AVPlayerItemTrack.AssetTrack
-P:AVFoundation.AVPlayerItemTrack.CurrentVideoFrameRate
P:AVFoundation.AVPlayerItemTrack.Enabled
-P:AVFoundation.AVPlayerItemTrack.VideoFieldMode
P:AVFoundation.AVPlayerItemTrack.VideoFieldModeDeinterlaceFields
P:AVFoundation.AVPlayerItemVideoOutput.Delegate
-P:AVFoundation.AVPlayerItemVideoOutput.DelegateQueue
-P:AVFoundation.AVPlayerItemVideoOutput.WeakDelegate
P:AVFoundation.AVPlayerItemVideoOutputSettings.AllowWideColor
P:AVFoundation.AVPlayerItemVideoOutputSettings.Codec
P:AVFoundation.AVPlayerItemVideoOutputSettings.ColorProperties
@@ -73708,105 +49948,34 @@ P:AVFoundation.AVPlayerLayer.GravityResize
P:AVFoundation.AVPlayerLayer.GravityResizeAspect
P:AVFoundation.AVPlayerLayer.GravityResizeAspectFill
P:AVFoundation.AVPlayerLayer.PixelBufferAttributes
-P:AVFoundation.AVPlayerLayer.Player
P:AVFoundation.AVPlayerLayer.ReadyForDisplay
P:AVFoundation.AVPlayerLayer.VideoGravity
-P:AVFoundation.AVPlayerLayer.VideoRect
-P:AVFoundation.AVPlayerLayer.WeakPixelBufferAttributes
-P:AVFoundation.AVPlayerLayer.WeakVideoGravity
-P:AVFoundation.AVPlayerLooper.Error
-P:AVFoundation.AVPlayerLooper.LoopCount
-P:AVFoundation.AVPlayerLooper.LoopingPlayerItems
-P:AVFoundation.AVPlayerLooper.Status
-P:AVFoundation.AVPlayerMediaSelectionCriteria.PreferredLanguages
-P:AVFoundation.AVPlayerMediaSelectionCriteria.PreferredMediaCharacteristics
-P:AVFoundation.AVPlayerMediaSelectionCriteria.PrincipalMediaCharacteristics
P:AVFoundation.AVPlayerPlaybackCoordinator.Delegate
-P:AVFoundation.AVPlayerPlaybackCoordinator.Player
-P:AVFoundation.AVPlayerPlaybackCoordinator.WeakDelegate
P:AVFoundation.AVPlayerRateDidChangeEventArgs.RateDidChangeOriginatingParticipant
P:AVFoundation.AVPlayerRateDidChangeEventArgs.RateDidChangeStringReason
-P:AVFoundation.AVPlayerVideoOutputConfiguration.ActivationTime
-P:AVFoundation.AVPlayerVideoOutputConfiguration.DataChannelDescriptions
-P:AVFoundation.AVPlayerVideoOutputConfiguration.PreferredTransform
-P:AVFoundation.AVPlayerVideoOutputConfiguration.SourcePlayerItem
-P:AVFoundation.AVPortraitEffectsMatte.MattingImage
-P:AVFoundation.AVPortraitEffectsMatte.PixelFormatType
-P:AVFoundation.AVQueuePlayer.Items
-P:AVFoundation.AVRenderedCaptionImage.PixelBuffer
-P:AVFoundation.AVRenderedCaptionImage.Position
-P:AVFoundation.AVRouteDetector.DetectsCustomRoutes
-P:AVFoundation.AVRouteDetector.MultipleRoutesDetected
P:AVFoundation.AVRouteDetector.MultipleRoutesDetectedDidChange
P:AVFoundation.AVRouteDetector.RouteDetectionEnabled
-P:AVFoundation.AVSampleBufferAudioRenderer.AllowedAudioSpatializationFormats
-P:AVFoundation.AVSampleBufferAudioRenderer.AudioOutputDeviceUniqueId
P:AVFoundation.AVSampleBufferAudioRenderer.AudioRendererWasFlushedAutomaticallyNotification
P:AVFoundation.AVSampleBufferAudioRenderer.ConfigurationDidChangeNotification
-P:AVFoundation.AVSampleBufferAudioRenderer.Error
-P:AVFoundation.AVSampleBufferAudioRenderer.HasSufficientMediaDataForReliablePlaybackStart
P:AVFoundation.AVSampleBufferAudioRenderer.Muted
-P:AVFoundation.AVSampleBufferAudioRenderer.PitchAlgorithm
P:AVFoundation.AVSampleBufferAudioRenderer.ReadyForMoreMediaData
-P:AVFoundation.AVSampleBufferAudioRenderer.Status
-P:AVFoundation.AVSampleBufferAudioRenderer.Timebase
-P:AVFoundation.AVSampleBufferAudioRenderer.Volume
-P:AVFoundation.AVSampleBufferDisplayLayer.ControlTimebase
P:AVFoundation.AVSampleBufferDisplayLayer.DisplayLayerReadyForDisplayDidChangeNotification
-P:AVFoundation.AVSampleBufferDisplayLayer.Error
P:AVFoundation.AVSampleBufferDisplayLayer.FailedToDecodeNotification
P:AVFoundation.AVSampleBufferDisplayLayer.FailedToDecodeNotificationErrorKey
P:AVFoundation.AVSampleBufferDisplayLayer.OutputObscuredDueToInsufficientExternalProtectionDidChangeNotification
-P:AVFoundation.AVSampleBufferDisplayLayer.PreventsCapture
-P:AVFoundation.AVSampleBufferDisplayLayer.PreventsDisplaySleepDuringVideoPlayback
P:AVFoundation.AVSampleBufferDisplayLayer.ReadyForDisplay
P:AVFoundation.AVSampleBufferDisplayLayer.ReadyForMoreMediaData
-P:AVFoundation.AVSampleBufferDisplayLayer.RequiresFlushToResumeDecoding
P:AVFoundation.AVSampleBufferDisplayLayer.RequiresFlushToResumeDecodingDidChangeNotification
-P:AVFoundation.AVSampleBufferDisplayLayer.SampleBufferRenderer
-P:AVFoundation.AVSampleBufferDisplayLayer.Status
-P:AVFoundation.AVSampleBufferDisplayLayer.Timebase
-P:AVFoundation.AVSampleBufferDisplayLayer.VideoGravity
-P:AVFoundation.AVSampleBufferRenderSynchronizer.CurrentTime
-P:AVFoundation.AVSampleBufferRenderSynchronizer.DelaysRateChangeUntilHasSufficientMediaData
-P:AVFoundation.AVSampleBufferRenderSynchronizer.Rate
P:AVFoundation.AVSampleBufferRenderSynchronizer.RateDidChangeNotification
-P:AVFoundation.AVSampleBufferRenderSynchronizer.Renderers
-P:AVFoundation.AVSampleBufferRenderSynchronizer.Timebase
-P:AVFoundation.AVSampleBufferRequest.Direction
-P:AVFoundation.AVSampleBufferRequest.LimitCursor
-P:AVFoundation.AVSampleBufferRequest.MaxSampleCount
-P:AVFoundation.AVSampleBufferRequest.Mode
-P:AVFoundation.AVSampleBufferRequest.OverrideTime
-P:AVFoundation.AVSampleBufferRequest.PreferredMinSampleCount
-P:AVFoundation.AVSampleBufferRequest.StartCursor
P:AVFoundation.AVSampleBufferVideoRenderer.AVSampleBufferVideoRendererDidFailToDecodeNotification
P:AVFoundation.AVSampleBufferVideoRenderer.AVSampleBufferVideoRendererDidFailToDecodeNotificationErrorKey
-P:AVFoundation.AVSampleBufferVideoRenderer.Error
-P:AVFoundation.AVSampleBufferVideoRenderer.HasSufficientMediaDataForReliablePlaybackStart
P:AVFoundation.AVSampleBufferVideoRenderer.ReadyForMoreMediaData
-P:AVFoundation.AVSampleBufferVideoRenderer.RequiresFlushToResumeDecoding
P:AVFoundation.AVSampleBufferVideoRenderer.RequiresFlushToResumeDecodingDidChangeNotification
-P:AVFoundation.AVSampleBufferVideoRenderer.Status
-P:AVFoundation.AVSampleBufferVideoRenderer.Timebase
P:AVFoundation.AVSampleCursor.CurrentChunkInfo
-P:AVFoundation.AVSampleCursor.CurrentChunkStorageRange
-P:AVFoundation.AVSampleCursor.CurrentChunkStorageUrl
-P:AVFoundation.AVSampleCursor.CurrentSampleAudioDependencyInfo
-P:AVFoundation.AVSampleCursor.CurrentSampleDependencyAttachments
P:AVFoundation.AVSampleCursor.CurrentSampleDependencyInfo2
-P:AVFoundation.AVSampleCursor.CurrentSampleDuration
-P:AVFoundation.AVSampleCursor.CurrentSampleIndexInChunk
-P:AVFoundation.AVSampleCursor.CurrentSampleStorageRange
P:AVFoundation.AVSampleCursor.CurrentSampleSyncInfo
-P:AVFoundation.AVSampleCursor.DecodeTimeStamp
-P:AVFoundation.AVSampleCursor.PresentationTimeStamp
-P:AVFoundation.AVSampleCursor.SamplesRequiredForDecoderRefresh
P:AVFoundation.AVSampleCursorAudioDependencyInfo.IsIndependentlyDecodable
P:AVFoundation.AVSampleRateEventArgs.SampleRate
-P:AVFoundation.AVSemanticSegmentationMatte.MatteType
-P:AVFoundation.AVSemanticSegmentationMatte.MattingImage
-P:AVFoundation.AVSemanticSegmentationMatte.PixelFormatType
P:AVFoundation.AVSpeechSynthesisMarker.BookmarkName
P:AVFoundation.AVSpeechSynthesisMarker.ByteSampleOffset
P:AVFoundation.AVSpeechSynthesisMarker.Mark
@@ -73816,10 +49985,7 @@ P:AVFoundation.AVSpeechSynthesisProviderAudioUnit.SpeechSynthesisOutputMetadataB
P:AVFoundation.AVSpeechSynthesisProviderAudioUnit.SpeechVoices
P:AVFoundation.AVSpeechSynthesisProviderRequest.SsmlRepresentation
P:AVFoundation.AVSpeechSynthesisProviderRequest.Voice
-P:AVFoundation.AVSpeechSynthesisProviderVoice.Age
P:AVFoundation.AVSpeechSynthesisProviderVoice.Gender
-P:AVFoundation.AVSpeechSynthesisProviderVoice.Identifier
-P:AVFoundation.AVSpeechSynthesisProviderVoice.Name
P:AVFoundation.AVSpeechSynthesisProviderVoice.PrimaryLanguages
P:AVFoundation.AVSpeechSynthesisProviderVoice.SupportedLanguages
P:AVFoundation.AVSpeechSynthesisProviderVoice.Version
@@ -73828,11 +49994,9 @@ P:AVFoundation.AVSpeechSynthesisVoice.AudioFileSettings
P:AVFoundation.AVSpeechSynthesisVoice.AvailableVoicesDidChangeNotification
P:AVFoundation.AVSpeechSynthesisVoice.CurrentLanguageCode
P:AVFoundation.AVSpeechSynthesisVoice.Gender
-P:AVFoundation.AVSpeechSynthesisVoice.Identifier
P:AVFoundation.AVSpeechSynthesisVoice.IdentifierAlex
P:AVFoundation.AVSpeechSynthesisVoice.IpaNotationAttribute
P:AVFoundation.AVSpeechSynthesisVoice.Language
-P:AVFoundation.AVSpeechSynthesisVoice.Name
P:AVFoundation.AVSpeechSynthesisVoice.Quality
P:AVFoundation.AVSpeechSynthesisVoice.VoiceTraits
P:AVFoundation.AVSpeechSynthesizer.Delegate
@@ -73841,8 +50005,6 @@ P:AVFoundation.AVSpeechSynthesizer.OutputChannels
P:AVFoundation.AVSpeechSynthesizer.Paused
P:AVFoundation.AVSpeechSynthesizer.PersonalVoiceAuthorizationStatus
P:AVFoundation.AVSpeechSynthesizer.Speaking
-P:AVFoundation.AVSpeechSynthesizer.UsesApplicationAudioSession
-P:AVFoundation.AVSpeechSynthesizer.WeakDelegate
P:AVFoundation.AVSpeechSynthesizerUteranceEventArgs.Utterance
P:AVFoundation.AVSpeechSynthesizerWillSpeakEventArgs.CharacterRange
P:AVFoundation.AVSpeechSynthesizerWillSpeakEventArgs.Utterance
@@ -73856,41 +50018,22 @@ P:AVFoundation.AVSpeechUtterance.PitchMultiplier
P:AVFoundation.AVSpeechUtterance.PostUtteranceDelay
P:AVFoundation.AVSpeechUtterance.PrefersAssistiveTechnologySettings
P:AVFoundation.AVSpeechUtterance.PreUtteranceDelay
-P:AVFoundation.AVSpeechUtterance.Rate
P:AVFoundation.AVSpeechUtterance.SpeechString
P:AVFoundation.AVSpeechUtterance.Voice
-P:AVFoundation.AVSpeechUtterance.Volume
-P:AVFoundation.AVStatusEventArgs.Status
P:AVFoundation.AVStreamingKeyDelivery.ContentKeyType
P:AVFoundation.AVStreamingKeyDelivery.PersistentContentKeyType
-P:AVFoundation.AVSynchronizedLayer.PlayerItem
P:AVFoundation.AVTextStyleRule.TextMarkupAttributes
-P:AVFoundation.AVTextStyleRule.TextSelector
-P:AVFoundation.AVTextStyleRule.WeakTextMarkupAttributes
-P:AVFoundation.AVTimedMetadataGroup.Items
-P:AVFoundation.AVTimedMetadataGroup.TimeRange
P:AVFoundation.AVUrlAsset.AllowsCellularAccessKey
P:AVFoundation.AVUrlAsset.AllowsConstrainedNetworkAccessKey
P:AVFoundation.AVUrlAsset.AllowsExpensiveNetworkAccessKey
-P:AVFoundation.AVUrlAsset.AudiovisualMimeTypes
-P:AVFoundation.AVUrlAsset.AudiovisualTypes
-P:AVFoundation.AVUrlAsset.Cache
P:AVFoundation.AVUrlAsset.HttpCookiesKey
-P:AVFoundation.AVUrlAsset.HttpSessionIdentifier
P:AVFoundation.AVUrlAsset.HttpUserAgentKey
-P:AVFoundation.AVUrlAsset.MayRequireContentKeysForMediaDataProcessing
-P:AVFoundation.AVUrlAsset.MediaExtensionProperties
P:AVFoundation.AVUrlAsset.OverrideMimeTypeKey
P:AVFoundation.AVUrlAsset.PreferPreciseDurationAndTimingKey
P:AVFoundation.AVUrlAsset.PrimarySessionIdentifierKey
P:AVFoundation.AVUrlAsset.ReferenceRestrictionsKey
P:AVFoundation.AVUrlAsset.RequestAttributionKey
-P:AVFoundation.AVUrlAsset.ResourceLoader
P:AVFoundation.AVUrlAsset.ShouldSupportAliasDataReferencesKey
-P:AVFoundation.AVUrlAsset.Url
-P:AVFoundation.AVUrlAsset.Variants
-P:AVFoundation.AVUrlAssetOptions.PreferPreciseDurationAndTiming
-P:AVFoundation.AVUrlAssetOptions.ReferenceRestrictions
P:AVFoundation.AVVideo.AllowFrameReorderingKey
P:AVFoundation.AVVideo.AppleProRawBitDepthKey
P:AVFoundation.AVVideo.AppleProRes422
@@ -73934,78 +50077,15 @@ P:AVFoundation.AVVideo.ProfileLevelKey
P:AVFoundation.AVVideo.QualityKey
P:AVFoundation.AVVideo.ScalingModeKey
P:AVFoundation.AVVideo.WidthKey
-P:AVFoundation.AVVideoCleanApertureSettings.Height
-P:AVFoundation.AVVideoCleanApertureSettings.HorizontalOffset
-P:AVFoundation.AVVideoCleanApertureSettings.VerticalOffset
-P:AVFoundation.AVVideoCleanApertureSettings.Width
-P:AVFoundation.AVVideoCodecSettings.AverageBitRate
-P:AVFoundation.AVVideoCodecSettings.JPEGQuality
-P:AVFoundation.AVVideoCodecSettings.MaxKeyFrameInterval
-P:AVFoundation.AVVideoCodecSettings.PixelAspectRatio
-P:AVFoundation.AVVideoCodecSettings.ProfileLevelH264
-P:AVFoundation.AVVideoCodecSettings.VideoCleanAperture
P:AVFoundation.AVVideoColorPrimaries.Ebu_3213
P:AVFoundation.AVVideoColorPrimaries.Itu_R_2020
P:AVFoundation.AVVideoColorPrimaries.Itu_R_709_2
P:AVFoundation.AVVideoColorPrimaries.P3_D65
P:AVFoundation.AVVideoColorPrimaries.Smpte_C
-P:AVFoundation.AVVideoCompositing.CanConformColorOfSourceFrames
-P:AVFoundation.AVVideoCompositing.SupportsHdrSourceFrames
-P:AVFoundation.AVVideoCompositing.SupportsWideColorSourceFrames
-P:AVFoundation.AVVideoComposition.AnimationTool
-P:AVFoundation.AVVideoComposition.ColorPrimaries
-P:AVFoundation.AVVideoComposition.ColorTransferFunction
-P:AVFoundation.AVVideoComposition.ColorYCbCrMatrix
-P:AVFoundation.AVVideoComposition.CustomVideoCompositorClass
-P:AVFoundation.AVVideoComposition.FrameDuration
-P:AVFoundation.AVVideoComposition.Instructions
-P:AVFoundation.AVVideoComposition.PerFrameHdrDisplayMetadataPolicy
-P:AVFoundation.AVVideoComposition.RenderScale
-P:AVFoundation.AVVideoComposition.RenderSize
-P:AVFoundation.AVVideoComposition.SourceSampleDataTrackIds
-P:AVFoundation.AVVideoCompositionInstruction.BackgroundColor
-P:AVFoundation.AVVideoCompositionInstruction.ContainsTweening
-P:AVFoundation.AVVideoCompositionInstruction.EnablePostProcessing
-P:AVFoundation.AVVideoCompositionInstruction.LayerInstructions
-P:AVFoundation.AVVideoCompositionInstruction.PassthroughTrackID
-P:AVFoundation.AVVideoCompositionInstruction.RequiredSourceSampleDataTrackIds
-P:AVFoundation.AVVideoCompositionInstruction.RequiredSourceTrackIDs
-P:AVFoundation.AVVideoCompositionInstruction.TimeRange
-P:AVFoundation.AVVideoCompositionLayerInstruction.TrackID
-P:AVFoundation.AVVideoCompositionRenderContext.EdgeWidths
-P:AVFoundation.AVVideoCompositionRenderContext.HighQualityRendering
-P:AVFoundation.AVVideoCompositionRenderContext.PixelAspectRatio
-P:AVFoundation.AVVideoCompositionRenderContext.RenderScale
-P:AVFoundation.AVVideoCompositionRenderContext.RenderTransform
-P:AVFoundation.AVVideoCompositionRenderContext.Size
-P:AVFoundation.AVVideoCompositionRenderContext.VideoComposition
-P:AVFoundation.AVVideoCompositionRenderHint.EndCompositionTime
-P:AVFoundation.AVVideoCompositionRenderHint.StartCompositionTime
-P:AVFoundation.AVVideoOutputSpecification.DefaultOutputSettings
-P:AVFoundation.AVVideoOutputSpecification.DefaultPixelBufferAttributes
-P:AVFoundation.AVVideoOutputSpecification.PreferredTagCollections
-P:AVFoundation.AVVideoPerformanceMetrics.NumberOfCorruptedFrames
-P:AVFoundation.AVVideoPerformanceMetrics.NumberOfDroppedFrames
-P:AVFoundation.AVVideoPerformanceMetrics.NumberOfFramesDisplayedUsingOptimizedCompositing
-P:AVFoundation.AVVideoPerformanceMetrics.TotalAccumulatedFrameDelay
-P:AVFoundation.AVVideoPerformanceMetrics.TotalNumberOfFrames
-P:AVFoundation.AVVideoPixelAspectRatioSettings.HorizontalSpacing
-P:AVFoundation.AVVideoPixelAspectRatioSettings.VerticalSpacing
P:AVFoundation.AVVideoScalingModeKey.Fit
P:AVFoundation.AVVideoScalingModeKey.Resize
P:AVFoundation.AVVideoScalingModeKey.ResizeAspect
P:AVFoundation.AVVideoScalingModeKey.ResizeAspectFill
-P:AVFoundation.AVVideoSettingsCompressed.AllowFrameReordering
-P:AVFoundation.AVVideoSettingsCompressed.AverageNonDroppableFrameRate
-P:AVFoundation.AVVideoSettingsCompressed.Codec
-P:AVFoundation.AVVideoSettingsCompressed.CodecSettings
-P:AVFoundation.AVVideoSettingsCompressed.EntropyEncoding
-P:AVFoundation.AVVideoSettingsCompressed.ExpectedSourceFrameRate
-P:AVFoundation.AVVideoSettingsCompressed.Height
-P:AVFoundation.AVVideoSettingsCompressed.MaxKeyFrameIntervalDuration
-P:AVFoundation.AVVideoSettingsCompressed.ScalingMode
-P:AVFoundation.AVVideoSettingsCompressed.Width
-P:AVFoundation.AVVideoSettingsUncompressed.ScalingMode
P:AVFoundation.AVVideoTransferFunction.Iec_sRgb
P:AVFoundation.AVVideoTransferFunction.Itu_R_2100_Hlg
P:AVFoundation.AVVideoTransferFunction.Itu_R_709_2
@@ -74016,8 +50096,6 @@ P:AVFoundation.AVVideoYCbCrMatrix.Itu_R_2020
P:AVFoundation.AVVideoYCbCrMatrix.Itu_R_601_4
P:AVFoundation.AVVideoYCbCrMatrix.Itu_R_709_2
P:AVFoundation.AVVideoYCbCrMatrix.Smpte_240M_1995
-P:AVFoundation.AVZoomRange.MaxZoomFactor
-P:AVFoundation.AVZoomRange.MinZoomFactor
P:AVFoundation.IAVAudio3DMixing.Obstruction
P:AVFoundation.IAVAudio3DMixing.Occlusion
P:AVFoundation.IAVAudio3DMixing.PointSourceInHeadMode
@@ -74038,29 +50116,15 @@ P:AVFoundation.IAVVideoCompositing.SupportsWideColorSourceFrames
P:AVFoundation.MicrophoneInjectionCapabilitiesChangeEventArgs.IsAvailable
P:AVFoundation.RenderingModeChangeNotificationEventArgs.NewRenderingMode
P:AVFoundation.SpatialPlaybackCapabilitiesChangedEventArgs.SpatialAudioEnabledKey
-P:AVKit.AVCaptureEvent.Phase
P:AVKit.AVCaptureEventInteraction.Enabled
P:AVKit.AVCaptureEventInteraction.View
-P:AVKit.AVCaptureView.ControlsStyle
-P:AVKit.AVCaptureView.Delegate
-P:AVKit.AVCaptureView.FileOutput
-P:AVKit.AVCaptureView.Session
-P:AVKit.AVCaptureView.WeakVideoGravity
-P:AVKit.AVContentProposalViewController.ContentProposal
-P:AVKit.AVContentProposalViewController.DateOfAutomaticAcceptance
-P:AVKit.AVContentProposalViewController.PlayerLayoutGuide
-P:AVKit.AVContentProposalViewController.PlayerViewController
-P:AVKit.AVContentProposalViewController.PreferredPlayerViewFrame
P:AVKit.AVContinuityDevicePickerViewController.Delegate
P:AVKit.AVContinuityDevicePickerViewController.Supported
-P:AVKit.AVContinuityDevicePickerViewController.WeakDelegate
P:AVKit.AVDisplayManager.DisplayCriteriaMatchingEnabled
P:AVKit.AVDisplayManager.DisplayModeSwitchInProgress
P:AVKit.AVDisplayManager.ModeSwitchEndNotification
P:AVKit.AVDisplayManager.ModeSwitchSettingsChangedNotification
P:AVKit.AVDisplayManager.ModeSwitchStartNotification
-P:AVKit.AVDisplayManager.PreferredDisplayCriteria
-P:AVKit.AVInterstitialTimeRange.TimeRange
P:AVKit.AVKitMetadataIdentifier.ApproximateEndDate
P:AVKit.AVKitMetadataIdentifier.ApproximateStartDate
P:AVKit.AVKitMetadataIdentifier.ExactEndDate
@@ -74069,119 +50133,26 @@ P:AVKit.AVKitMetadataIdentifier.ExternalContentIdentifier
P:AVKit.AVKitMetadataIdentifier.ExternalUserProfileIdentifier
P:AVKit.AVKitMetadataIdentifier.PlaybackProgress
P:AVKit.AVKitMetadataIdentifier.ServiceIdentifier
-P:AVKit.AVNavigationMarkersGroup.DateRangeNavigationMarkers
-P:AVKit.AVNavigationMarkersGroup.TimedNavigationMarkers
-P:AVKit.AVNavigationMarkersGroup.Title
-P:AVKit.AVPictureInPictureController.CanStartPictureInPictureAutomaticallyFromInline
-P:AVKit.AVPictureInPictureController.CanStopPictureInPicture
-P:AVKit.AVPictureInPictureController.ContentSource
P:AVKit.AVPictureInPictureController.Delegate
-P:AVKit.AVPictureInPictureController.IsPictureInPictureSupported
P:AVKit.AVPictureInPictureController.PictureInPictureActive
-P:AVKit.AVPictureInPictureController.PictureInPictureButtonStartImage
-P:AVKit.AVPictureInPictureController.PictureInPictureButtonStopImage
P:AVKit.AVPictureInPictureController.PictureInPicturePossible
P:AVKit.AVPictureInPictureController.PictureInPictureSuspended
-P:AVKit.AVPictureInPictureController.PlayerLayer
-P:AVKit.AVPictureInPictureController.RequiresLinearPlayback
-P:AVKit.AVPictureInPictureController.WeakDelegate
-P:AVKit.AVPictureInPictureControllerContentSource.ActiveVideoCallContentViewController
-P:AVKit.AVPictureInPictureControllerContentSource.ActiveVideoCallSourceView
-P:AVKit.AVPictureInPictureControllerContentSource.PlayerLayer
-P:AVKit.AVPictureInPictureControllerContentSource.SampleBufferDisplayLayer
P:AVKit.AVPictureInPictureControllerContentSource.SampleBufferPlaybackDelegate
-P:AVKit.AVPictureInPictureControllerContentSource.WeakSampleBufferPlaybackDelegate
-P:AVKit.AVPlaybackSpeed.LocalizedName
-P:AVKit.AVPlaybackSpeed.LocalizedNumericName
-P:AVKit.AVPlaybackSpeed.Rate
-P:AVKit.AVPlaybackSpeed.SystemDefaultSpeeds
-P:AVKit.AVPlayerView.ActionPopUpButtonMenu
-P:AVKit.AVPlayerView.AllowsMagnification
-P:AVKit.AVPlayerView.AllowsPictureInPicturePlayback
-P:AVKit.AVPlayerView.AllowsVideoFrameAnalysis
-P:AVKit.AVPlayerView.CanBeginTrimming
-P:AVKit.AVPlayerView.ContentOverlayView
-P:AVKit.AVPlayerView.ControlsStyle
P:AVKit.AVPlayerView.Delegate
-P:AVKit.AVPlayerView.Magnification
P:AVKit.AVPlayerView.PictureInPictureDelegate
-P:AVKit.AVPlayerView.Player
P:AVKit.AVPlayerView.ReadyForDisplay
-P:AVKit.AVPlayerView.SelectedSpeed
-P:AVKit.AVPlayerView.ShowsFrameSteppingButtons
-P:AVKit.AVPlayerView.ShowsFullScreenToggleButton
-P:AVKit.AVPlayerView.ShowsSharingServiceButton
-P:AVKit.AVPlayerView.ShowsTimecodes
-P:AVKit.AVPlayerView.Speeds
-P:AVKit.AVPlayerView.UpdatesNowPlayingInfoCenter
-P:AVKit.AVPlayerView.VideoBounds
-P:AVKit.AVPlayerView.VideoFrameAnalysisTypes
-P:AVKit.AVPlayerView.VideoGravity
-P:AVKit.AVPlayerView.WeakDelegate
-P:AVKit.AVPlayerView.WeakPictureInPictureDelegate
-P:AVKit.AVPlayerViewController.AllowedSubtitleOptionLanguages
-P:AVKit.AVPlayerViewController.AllowsPictureInPicturePlayback
-P:AVKit.AVPlayerViewController.AllowsVideoFrameAnalysis
-P:AVKit.AVPlayerViewController.AppliesPreferredDisplayCriteriaAutomatically
-P:AVKit.AVPlayerViewController.CanStartPictureInPictureAutomaticallyFromInline
-P:AVKit.AVPlayerViewController.ContentOverlayView
-P:AVKit.AVPlayerViewController.ContentProposalViewController
-P:AVKit.AVPlayerViewController.ContextualActions
-P:AVKit.AVPlayerViewController.CustomInfoViewController
-P:AVKit.AVPlayerViewController.CustomInfoViewControllers
-P:AVKit.AVPlayerViewController.CustomOverlayViewController
P:AVKit.AVPlayerViewController.Delegate
-P:AVKit.AVPlayerViewController.EntersFullScreenWhenPlaybackBegins
-P:AVKit.AVPlayerViewController.ExitsFullScreenWhenPlaybackEnds
-P:AVKit.AVPlayerViewController.InfoViewActions
-P:AVKit.AVPlayerViewController.PixelBufferAttributes
-P:AVKit.AVPlayerViewController.PlaybackControlsIncludeInfoViews
-P:AVKit.AVPlayerViewController.PlaybackControlsIncludeTransportBar
-P:AVKit.AVPlayerViewController.Player
P:AVKit.AVPlayerViewController.ReadyForDisplay
-P:AVKit.AVPlayerViewController.RequiresFullSubtitles
-P:AVKit.AVPlayerViewController.RequiresLinearPlayback
-P:AVKit.AVPlayerViewController.SelectedSpeed
-P:AVKit.AVPlayerViewController.ShowsPlaybackControls
-P:AVKit.AVPlayerViewController.ShowsTimecodes
P:AVKit.AVPlayerViewController.SkipBackwardEnabled
P:AVKit.AVPlayerViewController.SkipForwardEnabled
-P:AVKit.AVPlayerViewController.SkippingBehavior
-P:AVKit.AVPlayerViewController.Speeds
-P:AVKit.AVPlayerViewController.ToggleLookupAction
-P:AVKit.AVPlayerViewController.TransportBarCustomMenuItems
-P:AVKit.AVPlayerViewController.TransportBarIncludesTitleView
-P:AVKit.AVPlayerViewController.UnobscuredContentGuide
-P:AVKit.AVPlayerViewController.UpdatesNowPlayingInfoCenter
-P:AVKit.AVPlayerViewController.VideoBounds
-P:AVKit.AVPlayerViewController.VideoFrameAnalysisTypes
P:AVKit.AVPlayerViewController.VideoGravity
-P:AVKit.AVPlayerViewController.WeakDelegate
-P:AVKit.AVPlayerViewController.WeakVideoGravity
-P:AVKit.AVRoutePickerView.ActiveTintColor
-P:AVKit.AVRoutePickerView.CustomRoutingController
P:AVKit.AVRoutePickerView.Delegate
-P:AVKit.AVRoutePickerView.Player
-P:AVKit.AVRoutePickerView.PrioritizesVideoDevices
P:AVKit.AVRoutePickerView.RoutePickerButtonBordered
-P:AVKit.AVRoutePickerView.RoutePickerButtonStyle
-P:AVKit.AVRoutePickerView.WeakDelegate
P:AVKit.PreparingRouteSelectionForPlayback.Arg1
P:AVKit.PreparingRouteSelectionForPlayback.Arg2
-P:AVRouting.AVCustomDeviceRoute.BluetoothIdentifier
P:AVRouting.AVCustomDeviceRoute.NetworkEndpoint
-P:AVRouting.AVCustomRoutingActionItem.OverrideTitle
-P:AVRouting.AVCustomRoutingActionItem.Type
-P:AVRouting.AVCustomRoutingController.AuthorizedRoutes
P:AVRouting.AVCustomRoutingController.AuthorizedRoutesDidChangeNotification
-P:AVRouting.AVCustomRoutingController.CustomActionItems
P:AVRouting.AVCustomRoutingController.Delegate
-P:AVRouting.AVCustomRoutingController.KnownRouteIPs
-P:AVRouting.AVCustomRoutingController.WeakDelegate
-P:AVRouting.AVCustomRoutingEvent.Reason
-P:AVRouting.AVCustomRoutingEvent.Route
-P:AVRouting.AVCustomRoutingPartialIP.Address
-P:AVRouting.AVCustomRoutingPartialIP.Mask
P:BackgroundAssets.BAAppExtensionInfo.RestrictedDownloadSizeRemaining
P:BackgroundAssets.BAAppExtensionInfo.RestrictedEssentialDownloadSizeRemaining
P:BackgroundAssets.BADownload.Identifier
@@ -74203,47 +50174,13 @@ P:BackgroundTasks.BGTask.Identifier
P:BackgroundTasks.BGTaskRequest.EarliestBeginDate
P:BackgroundTasks.BGTaskRequest.Identifier
P:BackgroundTasks.BGTaskScheduler.Shared
-P:BrowserEngineKit.BEAccessibilityTextMarkerRange.EndMarker
-P:BrowserEngineKit.BEAccessibilityTextMarkerRange.StartMarker
-P:BrowserEngineKit.BEAutoFillTextSuggestion.Contents
-P:BrowserEngineKit.BEDownloadMonitor.DestinationUrl
-P:BrowserEngineKit.BEDownloadMonitor.Identifier
-P:BrowserEngineKit.BEDownloadMonitor.SourceUrl
-P:BrowserEngineKit.BEDownloadMonitorLocation.BookmarkData
-P:BrowserEngineKit.BEDownloadMonitorLocation.Url
P:BrowserEngineKit.BEDragInteraction.Delegate
-P:BrowserEngineKit.BEDragInteraction.WeakDelegate
-P:BrowserEngineKit.BEKeyEntry.Key
P:BrowserEngineKit.BEKeyEntry.KeyRepeating
-P:BrowserEngineKit.BEKeyEntry.State
-P:BrowserEngineKit.BEKeyEntry.Timestamp
P:BrowserEngineKit.BEKeyEntryContext.DocumentEditable
-P:BrowserEngineKit.BEKeyEntryContext.KeyEntry
-P:BrowserEngineKit.BEKeyEntryContext.ShouldEvaluateForInputSystemHandling
-P:BrowserEngineKit.BEKeyEntryContext.ShouldInsertCharacter
-P:BrowserEngineKit.BELayerHierarchy.Layer
-P:BrowserEngineKit.BELayerHierarchy.LayerHierarchyHandle
-P:BrowserEngineKit.BELayerHierarchyHostingView.LayerHierarchyHandle
P:BrowserEngineKit.BEScrollView.Delegate
-P:BrowserEngineKit.BEScrollView.WeakDelegate
-P:BrowserEngineKit.BEScrollViewScrollUpdate.Phase
-P:BrowserEngineKit.BEScrollViewScrollUpdate.Timestamp
-P:BrowserEngineKit.BETextAlternatives.AlternativeStrings
-P:BrowserEngineKit.BETextAlternatives.PrimaryString
-P:BrowserEngineKit.BETextDocumentContext.AutocorrectedRanges
-P:BrowserEngineKit.BETextDocumentRequest.GranularityCount
-P:BrowserEngineKit.BETextDocumentRequest.Options
-P:BrowserEngineKit.BETextDocumentRequest.SurroundingGranularity
-P:BrowserEngineKit.BETextInteraction.ContextMenuInteraction
P:BrowserEngineKit.BETextInteraction.ContextMenuInteractionDelegate
P:BrowserEngineKit.BETextInteraction.Delegate
-P:BrowserEngineKit.BETextInteraction.TextSelectionDisplayInteraction
P:BrowserEngineKit.BETextInteraction.View
-P:BrowserEngineKit.BETextInteraction.WeakContextMenuInteractionDelegate
-P:BrowserEngineKit.BETextInteraction.WeakDelegate
-P:BrowserEngineKit.BETextSuggestion.InputText
-P:BrowserEngineKit.BEWebAppManifest.JsonData
-P:BrowserEngineKit.BEWebAppManifest.ManifestUrl
P:BrowserEngineKit.IBEExtendedTextInputTraits.InsertionPointColor
P:BrowserEngineKit.IBEExtendedTextInputTraits.SelectionHandleColor
P:BrowserEngineKit.IBEExtendedTextInputTraits.SelectionHighlightColor
@@ -74269,334 +50206,50 @@ P:BrowserEngineKit.IBETextInput.UnobscuredContentRect
P:BrowserEngineKit.IBETextInput.UnscaledView
P:BrowserEngineKit.IBETextInput.WeakAsyncInputDelegate
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
-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
-P:CarPlay.CPInterfaceController.RootTemplate
-P:CarPlay.CPInterfaceController.Templates
-P:CarPlay.CPInterfaceController.TopTemplate
-P:CarPlay.CPInterfaceController.WeakDelegate
-P:CarPlay.CPLane.Angles
-P:CarPlay.CPLane.HighlightedAngle
-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
-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.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
-P:CarPlay.CPListTemplate.ItemCount
-P:CarPlay.CPListTemplate.LeadingNavigationBarButtons
-P:CarPlay.CPListTemplate.MaximumItemCount
-P:CarPlay.CPListTemplate.MaximumSectionCount
-P:CarPlay.CPListTemplate.SectionCount
-P:CarPlay.CPListTemplate.Sections
-P:CarPlay.CPListTemplate.Title
-P:CarPlay.CPListTemplate.TrailingNavigationBarButtons
-P:CarPlay.CPListTemplate.WeakDelegate
-P:CarPlay.CPManeuver.AttributedInstructionVariants
-P:CarPlay.CPManeuver.CardBackgroundColor
-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
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
-P:CarPlay.CPNavigationAlert.Duration
-P:CarPlay.CPNavigationAlert.Image
-P:CarPlay.CPNavigationAlert.ImageSet
-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
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
-P:CarPlay.CPPointOfInterestTemplate.Title
-P:CarPlay.CPPointOfInterestTemplate.TrailingNavigationBarButtons
-P:CarPlay.CPPointOfInterestTemplate.WeakPointOfInterestDelegate
-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
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
-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
-P:CarPlay.CPTripPreviewTextConfiguration.AdditionalRoutesButtonTitle
-P:CarPlay.CPTripPreviewTextConfiguration.OverviewButtonTitle
-P:CarPlay.CPTripPreviewTextConfiguration.StartButtonTitle
-P:CarPlay.CPVoiceControlState.Identifier
-P:CarPlay.CPVoiceControlState.Image
-P:CarPlay.CPVoiceControlState.Repeats
-P:CarPlay.CPVoiceControlState.TitleVariants
-P:CarPlay.CPVoiceControlTemplate.ActiveStateIdentifier
-P:CarPlay.CPVoiceControlTemplate.VoiceControlStates
-P:CarPlay.CPWindow.MapButtonSafeAreaLayoutGuide
-P:CarPlay.CPWindow.TemplateApplicationScene
P:CarPlay.ICPBarButtonProviding.BackButton
P:CarPlay.ICPBarButtonProviding.LeadingNavigationBarButtons
P:CarPlay.ICPBarButtonProviding.TrailingNavigationBarButtons
@@ -74617,534 +50270,70 @@ P:CFNetwork.CFHTTPStream.AttemptPersistentConnection
P:CFNetwork.CFHTTPStream.FinalURL
P:CFNetwork.CFHTTPStream.RequestBytesWrittenCount
P:CFNetwork.CFHTTPStream.ShouldAutoredirect
-P:Cinematic.CNAssetInfo.AllCinematicTracks
-P:Cinematic.CNAssetInfo.Asset
-P:Cinematic.CNAssetInfo.CinematicDisparityTrack
-P:Cinematic.CNAssetInfo.CinematicMetadataTrack
-P:Cinematic.CNAssetInfo.CinematicVideoTrack
-P:Cinematic.CNAssetInfo.FrameTimingTrack
-P:Cinematic.CNAssetInfo.NaturalSize
-P:Cinematic.CNAssetInfo.PreferredSize
-P:Cinematic.CNAssetInfo.PreferredTransform
-P:Cinematic.CNAssetInfo.SampleDataTrackIds
-P:Cinematic.CNAssetInfo.TimeRange
-P:Cinematic.CNAssetInfo.VideoCompositionTrackIds
-P:Cinematic.CNAssetInfo.VideoCompositionTracks
-P:Cinematic.CNBoundsPrediction.Confidence
-P:Cinematic.CNBoundsPrediction.NormalizedBounds
-P:Cinematic.CNCustomDetectionTrack.AllDetections
-P:Cinematic.CNDecision.DetectionGroupId
-P:Cinematic.CNDecision.DetectionId
P:Cinematic.CNDecision.GroupDecision
P:Cinematic.CNDecision.StrongDecision
-P:Cinematic.CNDecision.Time
P:Cinematic.CNDecision.UserDecision
-P:Cinematic.CNDetection.DetectionGroupId
-P:Cinematic.CNDetection.DetectionId
-P:Cinematic.CNDetection.DetectionType
-P:Cinematic.CNDetection.FocusDisparity
-P:Cinematic.CNDetection.NormalizedRect
-P:Cinematic.CNDetection.Time
-P:Cinematic.CNDetectionTrack.DetectionGroupId
-P:Cinematic.CNDetectionTrack.DetectionId
-P:Cinematic.CNDetectionTrack.DetectionType
P:Cinematic.CNDetectionTrack.Discrete
P:Cinematic.CNDetectionTrack.UserCreated
-P:Cinematic.CNFixedDetectionTrack.FocusDisparity
-P:Cinematic.CNFixedDetectionTrack.OriginalDetection
-P:Cinematic.CNObjectTracker.FinishDetectionTrack
-P:Cinematic.CNObjectTracker.IsSupported
-P:Cinematic.CNRenderingSession.CommandQueue
-P:Cinematic.CNRenderingSession.DestinationPixelFormatTypes
-P:Cinematic.CNRenderingSession.PreferredTransform
-P:Cinematic.CNRenderingSession.Quality
-P:Cinematic.CNRenderingSession.SessionAttributes
-P:Cinematic.CNRenderingSession.SourcePixelFormatTypes
-P:Cinematic.CNRenderingSessionAttributes.RenderingVersion
-P:Cinematic.CNRenderingSessionFrameAttributes.FNumber
-P:Cinematic.CNRenderingSessionFrameAttributes.FocusDisparity
-P:Cinematic.CNScript.AddedDetectionTracks
-P:Cinematic.CNScript.Changes
-P:Cinematic.CNScript.FNumber
-P:Cinematic.CNScript.TimeRange
-P:Cinematic.CNScriptChanges.AddedDetectionTracks
-P:Cinematic.CNScriptChanges.DataRepresentation
-P:Cinematic.CNScriptChanges.FNumber
-P:Cinematic.CNScriptChanges.UserDecisions
-P:Cinematic.CNScriptFrame.AllDetections
-P:Cinematic.CNScriptFrame.FocusDetection
-P:Cinematic.CNScriptFrame.FocusDisparity
-P:Cinematic.CNScriptFrame.Time
-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.CKAcceptSharesOperation.AcceptSharesCompleted
-P:CloudKit.CKAcceptSharesOperation.PerShareCompleted
-P:CloudKit.CKAcceptSharesOperation.ShareMetadatas
-P:CloudKit.CKAllowedSharingOptions.AllowedParticipantAccessOptions
-P:CloudKit.CKAllowedSharingOptions.AllowedParticipantPermissionOptions
-P:CloudKit.CKAllowedSharingOptions.StandardOptions
-P:CloudKit.CKAsset.FileUrl
P:CloudKit.CKContainer.AccountChangedNotification
-P:CloudKit.CKContainer.ContainerIdentifier
P:CloudKit.CKContainer.CurrentUserDefaultName
-P:CloudKit.CKContainer.DefaultContainer
P:CloudKit.CKContainer.OwnerDefaultName
-P:CloudKit.CKContainer.PrivateCloudDatabase
-P:CloudKit.CKContainer.PublicCloudDatabase
-P:CloudKit.CKContainer.SharedCloudDatabase
-P:CloudKit.CKDatabase.DatabaseScope
-P:CloudKit.CKDatabaseNotification.DatabaseScope
-P:CloudKit.CKDatabaseOperation.Database
-P:CloudKit.CKDatabaseSubscription.RecordType
-P:CloudKit.CKDiscoverAllUserIdentitiesOperation.Completed
-P:CloudKit.CKDiscoverAllUserIdentitiesOperation.Discovered
-P:CloudKit.CKDiscoverUserIdentitiesOperation.Completed
-P:CloudKit.CKDiscoverUserIdentitiesOperation.Discovered
-P:CloudKit.CKDiscoverUserIdentitiesOperation.UserIdentityLookupInfos
P:CloudKit.CKErrorFields.ErrorRetryAfterKey
P:CloudKit.CKErrorFields.PartialErrorsByItemIdKey
P:CloudKit.CKErrorFields.RecordChangedErrorAncestorRecordKey
P:CloudKit.CKErrorFields.RecordChangedErrorClientRecordKey
P:CloudKit.CKErrorFields.RecordChangedErrorServerRecordKey
P:CloudKit.CKErrorFields.UserDidResetEncryptedDataKey
-P:CloudKit.CKFetchDatabaseChangesOperation.Changed
-P:CloudKit.CKFetchDatabaseChangesOperation.ChangesCompleted
-P:CloudKit.CKFetchDatabaseChangesOperation.ChangeTokenUpdated
-P:CloudKit.CKFetchDatabaseChangesOperation.FetchAllChanges
-P:CloudKit.CKFetchDatabaseChangesOperation.PreviousServerChangeToken
-P:CloudKit.CKFetchDatabaseChangesOperation.RecordZoneWithIdWasDeletedDueToUserEncryptedDataReset
-P:CloudKit.CKFetchDatabaseChangesOperation.ResultsLimit
-P:CloudKit.CKFetchDatabaseChangesOperation.WasDeleted
-P:CloudKit.CKFetchDatabaseChangesOperation.WasPurged
P:CloudKit.CKFetchNotificationChangesOperation.ClassHandle
P:CloudKit.CKFetchNotificationChangesOperation.Completed
P:CloudKit.CKFetchNotificationChangesOperation.MoreComing
P:CloudKit.CKFetchNotificationChangesOperation.NotificationChanged
P:CloudKit.CKFetchNotificationChangesOperation.PreviousServerChangeToken
P:CloudKit.CKFetchNotificationChangesOperation.ResultsLimit
-P:CloudKit.CKFetchRecordChangesOperation.AllChangesReported
-P:CloudKit.CKFetchRecordChangesOperation.DesiredKeys
-P:CloudKit.CKFetchRecordChangesOperation.MoreComing
-P:CloudKit.CKFetchRecordChangesOperation.PreviousServerChangeToken
-P:CloudKit.CKFetchRecordChangesOperation.RecordChanged
-P:CloudKit.CKFetchRecordChangesOperation.RecordDeleted
-P:CloudKit.CKFetchRecordChangesOperation.RecordZoneId
-P:CloudKit.CKFetchRecordChangesOperation.ResultsLimit
-P:CloudKit.CKFetchRecordsOperation.Completed
-P:CloudKit.CKFetchRecordsOperation.DesiredKeys
-P:CloudKit.CKFetchRecordsOperation.PerRecordCompletion
-P:CloudKit.CKFetchRecordsOperation.PerRecordProgress
-P:CloudKit.CKFetchRecordsOperation.RecordIds
-P:CloudKit.CKFetchRecordZoneChangesConfiguration.DesiredKeys
-P:CloudKit.CKFetchRecordZoneChangesConfiguration.PreviousServerChangeToken
-P:CloudKit.CKFetchRecordZoneChangesConfiguration.ResultsLimit
-P:CloudKit.CKFetchRecordZoneChangesOperation.ChangesCompleted
-P:CloudKit.CKFetchRecordZoneChangesOperation.ConfigurationsByRecordZoneID
-P:CloudKit.CKFetchRecordZoneChangesOperation.FetchAllChanges
-P:CloudKit.CKFetchRecordZoneChangesOperation.FetchCompleted
-P:CloudKit.CKFetchRecordZoneChangesOperation.OptionsByRecordZoneID
-P:CloudKit.CKFetchRecordZoneChangesOperation.RecordChanged
-P:CloudKit.CKFetchRecordZoneChangesOperation.RecordWasChangedHandler
-P:CloudKit.CKFetchRecordZoneChangesOperation.RecordWithIDWasDeleted
-P:CloudKit.CKFetchRecordZoneChangesOperation.RecordZoneChangeTokensUpdated
-P:CloudKit.CKFetchRecordZoneChangesOperation.RecordZoneIDs
-P:CloudKit.CKFetchRecordZoneChangesOptions.DesiredKeys
-P:CloudKit.CKFetchRecordZoneChangesOptions.PreviousServerChangeToken
-P:CloudKit.CKFetchRecordZoneChangesOptions.ResultsLimit
-P:CloudKit.CKFetchRecordZonesOperation.Completed
-P:CloudKit.CKFetchRecordZonesOperation.PerRecordZoneCompletionHandler
-P:CloudKit.CKFetchRecordZonesOperation.RecordZoneIds
-P:CloudKit.CKFetchShareMetadataOperation.FetchShareMetadataCompleted
-P:CloudKit.CKFetchShareMetadataOperation.PerShareMetadata
-P:CloudKit.CKFetchShareMetadataOperation.RootRecordDesiredKeys
-P:CloudKit.CKFetchShareMetadataOperation.ShareUrls
-P:CloudKit.CKFetchShareMetadataOperation.ShouldFetchRootRecord
-P:CloudKit.CKFetchShareParticipantsOperation.Completed
-P:CloudKit.CKFetchShareParticipantsOperation.Fetched
-P:CloudKit.CKFetchShareParticipantsOperation.PerShareParticipantCompletionBlock
-P:CloudKit.CKFetchShareParticipantsOperation.UserIdentityLookupInfos
-P:CloudKit.CKFetchSubscriptionsOperation.Completed
-P:CloudKit.CKFetchSubscriptionsOperation.PerSubscriptionCompletionHandler
-P:CloudKit.CKFetchSubscriptionsOperation.SubscriptionIds
-P:CloudKit.CKFetchWebAuthTokenOperation.ApiToken
-P:CloudKit.CKFetchWebAuthTokenOperation.Completed
-P:CloudKit.CKLocationSortDescriptor.RelativeLocation
P:CloudKit.CKMarkNotificationsReadOperation.ClassHandle
P:CloudKit.CKMarkNotificationsReadOperation.Completed
P:CloudKit.CKMarkNotificationsReadOperation.NotificationIds
P:CloudKit.CKModifyBadgeOperation.BadgeValue
P:CloudKit.CKModifyBadgeOperation.ClassHandle
P:CloudKit.CKModifyBadgeOperation.Completed
-P:CloudKit.CKModifyRecordsOperation.Atomic
-P:CloudKit.CKModifyRecordsOperation.ClientChangeTokenData
-P:CloudKit.CKModifyRecordsOperation.Completed
-P:CloudKit.CKModifyRecordsOperation.PerRecordCompletion
-P:CloudKit.CKModifyRecordsOperation.PerRecordDeleteHandler
-P:CloudKit.CKModifyRecordsOperation.PerRecordProgress
-P:CloudKit.CKModifyRecordsOperation.PerRecordSaveHandler
-P:CloudKit.CKModifyRecordsOperation.RecordIdsToDelete
-P:CloudKit.CKModifyRecordsOperation.RecordsToSave
-P:CloudKit.CKModifyRecordsOperation.SavePolicy
-P:CloudKit.CKModifyRecordZonesOperation.Completed
-P:CloudKit.CKModifyRecordZonesOperation.PerRecordZoneDeleteHandler
-P:CloudKit.CKModifyRecordZonesOperation.PerRecordZoneSaveHandler
-P:CloudKit.CKModifyRecordZonesOperation.RecordZoneIdsToDelete
-P:CloudKit.CKModifyRecordZonesOperation.RecordZonesToSave
-P:CloudKit.CKModifySubscriptionsOperation.Completed
-P:CloudKit.CKModifySubscriptionsOperation.PerSubscriptionDeleteHandler
-P:CloudKit.CKModifySubscriptionsOperation.PerSubscriptionSaveHandler
-P:CloudKit.CKModifySubscriptionsOperation.SubscriptionIdsToDelete
-P:CloudKit.CKModifySubscriptionsOperation.SubscriptionsToSave
-P:CloudKit.CKNotification.AlertActionLocalizationKey
-P:CloudKit.CKNotification.AlertBody
-P:CloudKit.CKNotification.AlertLaunchImage
-P:CloudKit.CKNotification.AlertLocalizationArgs
-P:CloudKit.CKNotification.AlertLocalizationKey
-P:CloudKit.CKNotification.Badge
-P:CloudKit.CKNotification.Category
-P:CloudKit.CKNotification.ContainerIdentifier
-P:CloudKit.CKNotification.IsPruned
-P:CloudKit.CKNotification.NotificationId
-P:CloudKit.CKNotification.NotificationType
-P:CloudKit.CKNotification.SoundName
-P:CloudKit.CKNotification.SubscriptionID
-P:CloudKit.CKNotification.SubscriptionOwnerUserRecordId
-P:CloudKit.CKNotification.Subtitle
-P:CloudKit.CKNotification.SubtitleLocalizationArgs
-P:CloudKit.CKNotification.SubtitleLocalizationKey
-P:CloudKit.CKNotification.Title
-P:CloudKit.CKNotification.TitleLocalizationArgs
-P:CloudKit.CKNotification.TitleLocalizationKey
-P:CloudKit.CKNotificationInfo.AlertActionLocalizationKey
-P:CloudKit.CKNotificationInfo.AlertBody
-P:CloudKit.CKNotificationInfo.AlertLaunchImage
-P:CloudKit.CKNotificationInfo.AlertLocalizationArgs
-P:CloudKit.CKNotificationInfo.AlertLocalizationKey
-P:CloudKit.CKNotificationInfo.Category
-P:CloudKit.CKNotificationInfo.CollapseIdKey
-P:CloudKit.CKNotificationInfo.DesiredKeys
-P:CloudKit.CKNotificationInfo.ShouldBadge
-P:CloudKit.CKNotificationInfo.ShouldSendContentAvailable
-P:CloudKit.CKNotificationInfo.ShouldSendMutableContent
-P:CloudKit.CKNotificationInfo.SoundName
-P:CloudKit.CKNotificationInfo.Subtitle
-P:CloudKit.CKNotificationInfo.SubtitleLocalizationArgs
-P:CloudKit.CKNotificationInfo.SubtitleLocalizationKey
-P:CloudKit.CKNotificationInfo.Title
-P:CloudKit.CKNotificationInfo.TitleLocalizationArgs
-P:CloudKit.CKNotificationInfo.TitleLocalizationKey
-P:CloudKit.CKOperation.AllowsCellularAccess
-P:CloudKit.CKOperation.Configuration
-P:CloudKit.CKOperation.Container
-P:CloudKit.CKOperation.Group
P:CloudKit.CKOperation.LongLived
-P:CloudKit.CKOperation.LongLivedOperationWasPersistedCallback
-P:CloudKit.CKOperation.OperationID
-P:CloudKit.CKOperation.TimeoutIntervalForRequest
-P:CloudKit.CKOperation.TimeoutIntervalForResource
-P:CloudKit.CKOperationConfiguration.AllowsCellularAccess
-P:CloudKit.CKOperationConfiguration.Container
P:CloudKit.CKOperationConfiguration.LongLived
-P:CloudKit.CKOperationConfiguration.QualityOfService
-P:CloudKit.CKOperationConfiguration.TimeoutIntervalForRequest
-P:CloudKit.CKOperationConfiguration.TimeoutIntervalForResource
-P:CloudKit.CKOperationGroup.DefaultConfiguration
-P:CloudKit.CKOperationGroup.ExpectedReceiveSize
-P:CloudKit.CKOperationGroup.ExpectedSendSize
-P:CloudKit.CKOperationGroup.Name
-P:CloudKit.CKOperationGroup.OperationGroupId
-P:CloudKit.CKOperationGroup.Quantity
-P:CloudKit.CKQuery.Predicate
-P:CloudKit.CKQuery.RecordType
-P:CloudKit.CKQuery.SortDescriptors
-P:CloudKit.CKQueryNotification.DatabaseScope
-P:CloudKit.CKQueryNotification.QueryNotificationReason
-P:CloudKit.CKQueryNotification.RecordFields
-P:CloudKit.CKQueryNotification.RecordId
-P:CloudKit.CKQueryOperation.Completed
-P:CloudKit.CKQueryOperation.Cursor
-P:CloudKit.CKQueryOperation.DesiredKeys
P:CloudKit.CKQueryOperation.MaximumResults
-P:CloudKit.CKQueryOperation.Query
-P:CloudKit.CKQueryOperation.RecordFetched
-P:CloudKit.CKQueryOperation.RecordMatchedHandler
-P:CloudKit.CKQueryOperation.ResultsLimit
-P:CloudKit.CKQueryOperation.ZoneId
-P:CloudKit.CKQuerySubscription.Predicate
-P:CloudKit.CKQuerySubscription.RecordType
-P:CloudKit.CKQuerySubscription.SubscriptionOptions
-P:CloudKit.CKQuerySubscription.ZoneID
-P:CloudKit.CKRecord.CreationDate
P:CloudKit.CKRecord.CreationDateKey
-P:CloudKit.CKRecord.CreatorUserRecordId
P:CloudKit.CKRecord.CreatorUserRecordIdKey
-P:CloudKit.CKRecord.Id
P:CloudKit.CKRecord.Item(System.String)
-P:CloudKit.CKRecord.LastModifiedUserRecordId
P:CloudKit.CKRecord.LastModifiedUserRecordIdKey
-P:CloudKit.CKRecord.ModificationDate
P:CloudKit.CKRecord.ModificationDateKey
P:CloudKit.CKRecord.NameZoneWideShare
-P:CloudKit.CKRecord.Parent
P:CloudKit.CKRecord.ParentKey
-P:CloudKit.CKRecord.RecordChangeTag
P:CloudKit.CKRecord.RecordIdKey
-P:CloudKit.CKRecord.RecordType
-P:CloudKit.CKRecord.Share
P:CloudKit.CKRecord.ShareKey
P:CloudKit.CKRecord.TypeShare
P:CloudKit.CKRecord.TypeUserRecord
-P:CloudKit.CKRecordID.RecordName
-P:CloudKit.CKRecordID.ZoneId
-P:CloudKit.CKRecordZone.Capabilities
P:CloudKit.CKRecordZone.DefaultName
-P:CloudKit.CKRecordZone.Share
-P:CloudKit.CKRecordZone.ZoneId
-P:CloudKit.CKRecordZoneID.OwnerName
-P:CloudKit.CKRecordZoneID.ZoneName
-P:CloudKit.CKRecordZoneNotification.DatabaseScope
-P:CloudKit.CKRecordZoneNotification.RecordZoneId
-P:CloudKit.CKRecordZoneSubscription.RecordType
-P:CloudKit.CKRecordZoneSubscription.ZoneID
-P:CloudKit.CKReference.RecordId
-P:CloudKit.CKReference.ReferenceAction
-P:CloudKit.CKShare.CurrentUser
-P:CloudKit.CKShare.Owner
-P:CloudKit.CKShare.Participants
-P:CloudKit.CKShare.PublicPermission
-P:CloudKit.CKShare.Url
P:CloudKit.CKShareKeys.ThumbnailImageData
P:CloudKit.CKShareKeys.Title
P:CloudKit.CKShareKeys.Type
-P:CloudKit.CKShareMetadata.ContainerIdentifier
-P:CloudKit.CKShareMetadata.HierarchicalRootRecordId
-P:CloudKit.CKShareMetadata.OwnerIdentity
-P:CloudKit.CKShareMetadata.ParticipantRole
-P:CloudKit.CKShareMetadata.Permission
-P:CloudKit.CKShareMetadata.RootRecord
-P:CloudKit.CKShareMetadata.RootRecordID
-P:CloudKit.CKShareMetadata.Share
-P:CloudKit.CKShareMetadata.Status
-P:CloudKit.CKShareMetadata.Type
-P:CloudKit.CKShareParticipant.AcceptanceStatus
-P:CloudKit.CKShareParticipant.ParticipantId
-P:CloudKit.CKShareParticipant.Permission
-P:CloudKit.CKShareParticipant.Role
-P:CloudKit.CKShareParticipant.Type
-P:CloudKit.CKShareParticipant.UserIdentity
-P:CloudKit.CKSubscription.NotificationInfo
-P:CloudKit.CKSubscription.Predicate
-P:CloudKit.CKSubscription.RecordType
-P:CloudKit.CKSubscription.SubscriptionId
-P:CloudKit.CKSubscription.SubscriptionType
-P:CloudKit.CKSubscription.ZoneID
-P:CloudKit.CKSyncEngine.Database
-P:CloudKit.CKSyncEngine.State
-P:CloudKit.CKSyncEngineAccountChangeEvent.ChangeType
-P:CloudKit.CKSyncEngineAccountChangeEvent.CurrentUser
-P:CloudKit.CKSyncEngineAccountChangeEvent.PreviousUser
-P:CloudKit.CKSyncEngineConfiguration.AutomaticallySync
-P:CloudKit.CKSyncEngineConfiguration.Database
P:CloudKit.CKSyncEngineConfiguration.Delegate
-P:CloudKit.CKSyncEngineConfiguration.StateSerialization
-P:CloudKit.CKSyncEngineConfiguration.SubscriptionId
-P:CloudKit.CKSyncEngineConfiguration.WeakDelegate
-P:CloudKit.CKSyncEngineDidFetchChangesEvent.Context
-P:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent.Error
-P:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent.ZoneId
-P:CloudKit.CKSyncEngineDidSendChangesEvent.Context
-P:CloudKit.CKSyncEngineEvent.AccountChangeEvent
-P:CloudKit.CKSyncEngineEvent.DidFetchChangesEvent
-P:CloudKit.CKSyncEngineEvent.DidFetchRecordZoneChangesEvent
-P:CloudKit.CKSyncEngineEvent.DidSendChangesEvent
-P:CloudKit.CKSyncEngineEvent.FetchedDatabaseChangesEvent
-P:CloudKit.CKSyncEngineEvent.FetchedRecordZoneChangesEvent
-P:CloudKit.CKSyncEngineEvent.SentDatabaseChangesEvent
-P:CloudKit.CKSyncEngineEvent.SentRecordZoneChangesEvent
-P:CloudKit.CKSyncEngineEvent.StateUpdateEvent
-P:CloudKit.CKSyncEngineEvent.Type
-P:CloudKit.CKSyncEngineEvent.WillFetchChangesEvent
-P:CloudKit.CKSyncEngineEvent.WillFetchRecordZoneChangesEvent
-P:CloudKit.CKSyncEngineEvent.WillSendChangesEvent
-P:CloudKit.CKSyncEngineFailedRecordSave.Error
-P:CloudKit.CKSyncEngineFailedRecordSave.Record
-P:CloudKit.CKSyncEngineFailedZoneSave.Error
-P:CloudKit.CKSyncEngineFailedZoneSave.RecordZone
-P:CloudKit.CKSyncEngineFetchChangesContext.Options
-P:CloudKit.CKSyncEngineFetchChangesContext.Reason
-P:CloudKit.CKSyncEngineFetchChangesOptions.OperationGroup
-P:CloudKit.CKSyncEngineFetchChangesOptions.PrioritizedZoneIds
-P:CloudKit.CKSyncEngineFetchChangesOptions.Scope
-P:CloudKit.CKSyncEngineFetchChangesScope.ExcludedZoneIds
-P:CloudKit.CKSyncEngineFetchChangesScope.ZoneIds
-P:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent.Deletions
-P:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent.Modifications
-P:CloudKit.CKSyncEngineFetchedRecordDeletion.RecordId
-P:CloudKit.CKSyncEngineFetchedRecordDeletion.RecordType
-P:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent.Deletions
-P:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent.Modifications
-P:CloudKit.CKSyncEngineFetchedZoneDeletion.Reason
-P:CloudKit.CKSyncEngineFetchedZoneDeletion.ZoneId
-P:CloudKit.CKSyncEnginePendingDatabaseChange.Type
-P:CloudKit.CKSyncEnginePendingDatabaseChange.ZoneId
-P:CloudKit.CKSyncEnginePendingRecordZoneChange.RecordId
-P:CloudKit.CKSyncEnginePendingRecordZoneChange.Type
-P:CloudKit.CKSyncEnginePendingZoneSave.Zone
-P:CloudKit.CKSyncEngineRecordZoneChangeBatch.AtomicByZone
-P:CloudKit.CKSyncEngineRecordZoneChangeBatch.RecordIdsToDelete
-P:CloudKit.CKSyncEngineRecordZoneChangeBatch.RecordsToSave
-P:CloudKit.CKSyncEngineSendChangesContext.Options
-P:CloudKit.CKSyncEngineSendChangesContext.Reason
-P:CloudKit.CKSyncEngineSendChangesOptions.OperationGroup
-P:CloudKit.CKSyncEngineSendChangesOptions.Scope
-P:CloudKit.CKSyncEngineSendChangesScope.ExcludedZoneIds
-P:CloudKit.CKSyncEngineSendChangesScope.RecordIds
-P:CloudKit.CKSyncEngineSendChangesScope.ZoneIds
-P:CloudKit.CKSyncEngineSentDatabaseChangesEvent.DeletedZoneIds
-P:CloudKit.CKSyncEngineSentDatabaseChangesEvent.FailedZoneDeletes
-P:CloudKit.CKSyncEngineSentDatabaseChangesEvent.FailedZoneSaves
-P:CloudKit.CKSyncEngineSentDatabaseChangesEvent.SavedZones
-P:CloudKit.CKSyncEngineSentRecordZoneChangesEvent.DeletedRecordIds
-P:CloudKit.CKSyncEngineSentRecordZoneChangesEvent.FailedRecordDeletes
-P:CloudKit.CKSyncEngineSentRecordZoneChangesEvent.FailedRecordSaves
-P:CloudKit.CKSyncEngineSentRecordZoneChangesEvent.SavedRecords
-P:CloudKit.CKSyncEngineState.HasPendingUntrackedChanges
-P:CloudKit.CKSyncEngineState.PendingDatabaseChanges
-P:CloudKit.CKSyncEngineState.PendingRecordZoneChanges
-P:CloudKit.CKSyncEngineState.ZoneIdsWithUnfetchedServerChanges
-P:CloudKit.CKSyncEngineStateUpdateEvent.StateSerialization
-P:CloudKit.CKSyncEngineWillFetchChangesEvent.Context
-P:CloudKit.CKSyncEngineWillFetchRecordZoneChangesEvent.ZoneId
-P:CloudKit.CKSyncEngineWillSendChangesEvent.Context
-P:CloudKit.CKSystemSharingUIObserver.SystemSharingUIDidSaveShareHandler
-P:CloudKit.CKSystemSharingUIObserver.SystemSharingUIDidStopSharingHandler
-P:CloudKit.CKUserIdentity.ContactIdentifiers
-P:CloudKit.CKUserIdentity.HasICloudAccount
-P:CloudKit.CKUserIdentity.LookupInfo
-P:CloudKit.CKUserIdentity.NameComponents
-P:CloudKit.CKUserIdentity.UserRecordID
-P:CloudKit.CKUserIdentityLookupInfo.EmailAddress
-P:CloudKit.CKUserIdentityLookupInfo.PhoneNumber
-P:CloudKit.CKUserIdentityLookupInfo.UserRecordID
-P:Compression.CompressionStream.BaseStream
-P:Compression.CompressionStream.CanRead
-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
@@ -75175,20 +50364,7 @@ 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
@@ -75196,14 +50372,8 @@ 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
@@ -75432,9 +50602,6 @@ 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
@@ -75450,60 +50617,8 @@ 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
@@ -75518,7 +50633,6 @@ P:Contacts.CNSocialProfileServiceKey.TencentWeibo
P:Contacts.CNSocialProfileServiceKey.Twitter
P:Contacts.CNSocialProfileServiceKey.Yelp
P:ContactsUI.CNContactPicker.Delegate
-P:ContactsUI.CNContactPicker.DisplayedKeys
P:ContactsUI.CNContactPickerViewController.Delegate
P:ContactsUI.CNContactPickerViewController.DisplayedPropertyKeys
P:ContactsUI.CNContactPickerViewController.PredicateForEnablingContact
@@ -75527,77 +50641,30 @@ P:ContactsUI.CNContactPickerViewController.PredicateForSelectionOfProperty
P:ContactsUI.CNContactViewController.AllowsActions
P:ContactsUI.CNContactViewController.AllowsEditing
P:ContactsUI.CNContactViewController.AlternateName
-P:ContactsUI.CNContactViewController.Contact
P:ContactsUI.CNContactViewController.ContactStore
P:ContactsUI.CNContactViewController.Delegate
-P:ContactsUI.CNContactViewController.DescriptorForRequiredKeys
P:ContactsUI.CNContactViewController.DisplayedPropertyKeys
P:ContactsUI.CNContactViewController.Message
P:ContactsUI.CNContactViewController.ParentContainer
P:ContactsUI.CNContactViewController.ParentGroup
P:ContactsUI.CNContactViewController.ShouldShowLinkedContacts
-P:CoreAnimation.CAAnimation.AnimationCubic
-P:CoreAnimation.CAAnimation.AnimationCubicPaced
-P:CoreAnimation.CAAnimation.AnimationDiscrete
-P:CoreAnimation.CAAnimation.AnimationEvents
-P:CoreAnimation.CAAnimation.AnimationLinear
-P:CoreAnimation.CAAnimation.AnimationPaced
P:CoreAnimation.CAAnimation.AutoReverses
P:CoreAnimation.CAAnimation.BeginTime
-P:CoreAnimation.CAAnimation.Delegate
P:CoreAnimation.CAAnimation.Duration
-P:CoreAnimation.CAAnimation.FadeInDuration
-P:CoreAnimation.CAAnimation.FadeOutDuration
P:CoreAnimation.CAAnimation.FillMode
P:CoreAnimation.CAAnimation.PreferredFrameRateRange
-P:CoreAnimation.CAAnimation.RemovedOnCompletion
P:CoreAnimation.CAAnimation.RepeatCount
P:CoreAnimation.CAAnimation.RepeatDuration
-P:CoreAnimation.CAAnimation.RotateModeAuto
-P:CoreAnimation.CAAnimation.RotateModeAutoReverse
P:CoreAnimation.CAAnimation.Speed
P:CoreAnimation.CAAnimation.TimeOffset
-P:CoreAnimation.CAAnimation.TimingFunction
-P:CoreAnimation.CAAnimation.TransitionFade
-P:CoreAnimation.CAAnimation.TransitionFromBottom
-P:CoreAnimation.CAAnimation.TransitionFromLeft
-P:CoreAnimation.CAAnimation.TransitionFromRight
-P:CoreAnimation.CAAnimation.TransitionFromTop
-P:CoreAnimation.CAAnimation.TransitionMoveIn
-P:CoreAnimation.CAAnimation.TransitionPush
-P:CoreAnimation.CAAnimation.TransitionReveal
-P:CoreAnimation.CAAnimation.UsesSceneTimeBase
-P:CoreAnimation.CAAnimation.WeakDelegate
-P:CoreAnimation.CAAnimationGroup.Animations
P:CoreAnimation.CAAnimationStateEventArgs.Finished
-P:CoreAnimation.CABasicAnimation.By
-P:CoreAnimation.CABasicAnimation.From
-P:CoreAnimation.CABasicAnimation.To
-P:CoreAnimation.CAConstraint.Attribute
-P:CoreAnimation.CAConstraint.Scale
-P:CoreAnimation.CAConstraint.SourceAttribute
-P:CoreAnimation.CAConstraint.SourceName
-P:CoreAnimation.CAConstraintLayoutManager.LayoutManager
-P:CoreAnimation.CADisplayLink.Duration
-P:CoreAnimation.CADisplayLink.FrameInterval
-P:CoreAnimation.CADisplayLink.Paused
P:CoreAnimation.CADisplayLink.PreferredFrameRateRange
-P:CoreAnimation.CADisplayLink.PreferredFramesPerSecond
-P:CoreAnimation.CADisplayLink.TargetTimestamp
-P:CoreAnimation.CADisplayLink.Timestamp
P:CoreAnimation.CAEAGLLayer.DrawableProperties
P:CoreAnimation.CAEAGLLayer.PresentsWithTransaction
P:CoreAnimation.CAEdrMetadata.Available
P:CoreAnimation.CAEdrMetadata.HlgMetadata
-P:CoreAnimation.CAEmitterCell.AccelerationX
-P:CoreAnimation.CAEmitterCell.AccelerationY
-P:CoreAnimation.CAEmitterCell.AccelerationZ
-P:CoreAnimation.CAEmitterCell.AlphaRange
-P:CoreAnimation.CAEmitterCell.AlphaSpeed
P:CoreAnimation.CAEmitterCell.AutoReverses
P:CoreAnimation.CAEmitterCell.BeginTime
-P:CoreAnimation.CAEmitterCell.BirthRate
-P:CoreAnimation.CAEmitterCell.BlueRange
P:CoreAnimation.CAEmitterCell.BlueSpeed
P:CoreAnimation.CAEmitterCell.Cells
P:CoreAnimation.CAEmitterCell.Color
@@ -75668,21 +50735,7 @@ P:CoreAnimation.CAFillMode.Both
P:CoreAnimation.CAFillMode.Forwards
P:CoreAnimation.CAFillMode.Removed
P:CoreAnimation.CAFrameRateRange.Default
-P:CoreAnimation.CAGradientLayer.Colors
-P:CoreAnimation.CAGradientLayer.EndPoint
-P:CoreAnimation.CAGradientLayer.LayerType
-P:CoreAnimation.CAGradientLayer.Locations
-P:CoreAnimation.CAGradientLayer.StartPoint
P:CoreAnimation.CAGradientLayer.WeakLayerType
-P:CoreAnimation.CAKeyFrameAnimation.BiasValues
-P:CoreAnimation.CAKeyFrameAnimation.CalculationMode
-P:CoreAnimation.CAKeyFrameAnimation.ContinuityValues
-P:CoreAnimation.CAKeyFrameAnimation.KeyTimes
-P:CoreAnimation.CAKeyFrameAnimation.Path
-P:CoreAnimation.CAKeyFrameAnimation.RotationMode
-P:CoreAnimation.CAKeyFrameAnimation.TensionValues
-P:CoreAnimation.CAKeyFrameAnimation.TimingFunctions
-P:CoreAnimation.CAKeyFrameAnimation.Values
P:CoreAnimation.CALayer.Actions
P:CoreAnimation.CALayer.AffineTransform
P:CoreAnimation.CALayer.AllowsEdgeAntialiasing
@@ -75703,7 +50756,6 @@ P:CoreAnimation.CALayer.Constraints
P:CoreAnimation.CALayer.Contents
P:CoreAnimation.CALayer.ContentsAreFlipped
P:CoreAnimation.CALayer.ContentsCenter
-P:CoreAnimation.CALayer.ContentsFormat
P:CoreAnimation.CALayer.ContentsGravity
P:CoreAnimation.CALayer.ContentsRect
P:CoreAnimation.CALayer.ContentsScale
@@ -75781,11 +50833,6 @@ P:CoreAnimation.CAMediaTiming.RepeatCount
P:CoreAnimation.CAMediaTiming.RepeatDuration
P:CoreAnimation.CAMediaTiming.Speed
P:CoreAnimation.CAMediaTiming.TimeOffset
-P:CoreAnimation.CAMediaTimingFunction.Default
-P:CoreAnimation.CAMediaTimingFunction.EaseIn
-P:CoreAnimation.CAMediaTimingFunction.EaseInEaseOut
-P:CoreAnimation.CAMediaTimingFunction.EaseOut
-P:CoreAnimation.CAMediaTimingFunction.Linear
P:CoreAnimation.CAMetalDisplayLink.Delegate
P:CoreAnimation.CAMetalDisplayLink.Paused
P:CoreAnimation.CAMetalDisplayLink.PreferredFrameLatency
@@ -75855,17 +50902,6 @@ P:CoreAnimation.CASpringAnimation.Mass
P:CoreAnimation.CASpringAnimation.PerceptualDuration
P:CoreAnimation.CASpringAnimation.SettlingDuration
P:CoreAnimation.CASpringAnimation.Stiffness
-P:CoreAnimation.CATextLayer.AllowsFontSubpixelQuantization
-P:CoreAnimation.CATextLayer.AttributedString
-P:CoreAnimation.CATextLayer.FontSize
-P:CoreAnimation.CATextLayer.ForegroundColor
-P:CoreAnimation.CATextLayer.String
-P:CoreAnimation.CATextLayer.TextAlignmentMode
-P:CoreAnimation.CATextLayer.TextTruncationMode
-P:CoreAnimation.CATextLayer.WeakAlignmentMode
-P:CoreAnimation.CATextLayer.WeakFont
-P:CoreAnimation.CATextLayer.WeakTruncationMode
-P:CoreAnimation.CATextLayer.Wrapped
P:CoreAnimation.CATiledLayer.FadeDuration
P:CoreAnimation.CATiledLayer.LevelsOfDetail
P:CoreAnimation.CATiledLayer.LevelsOfDetailBias
@@ -75878,8 +50914,6 @@ P:CoreAnimation.CATransaction.CompletionBlockKey
P:CoreAnimation.CATransaction.DisableActions
P:CoreAnimation.CATransaction.DisableActionsKey
P:CoreAnimation.CATransaction.TimingFunctionKey
-P:CoreAnimation.CATransform3D.IsAffine
-P:CoreAnimation.CATransform3D.IsIdentity
P:CoreAnimation.CATransition.EndProgress
P:CoreAnimation.CATransition.Filter
P:CoreAnimation.CATransition.StartProgress
@@ -75907,32 +50941,14 @@ P:CoreAnimation.ICAMediaTiming.Speed
P:CoreAnimation.ICAMediaTiming.TimeOffset
P:CoreAnimation.ICAMetalDrawable.Layer
P:CoreAnimation.ICAMetalDrawable.Texture
-P:CoreAudioKit.AUAudioUnitViewConfiguration.Height
-P:CoreAudioKit.AUAudioUnitViewConfiguration.HostHasController
-P:CoreAudioKit.AUAudioUnitViewConfiguration.Width
-P:CoreAudioKit.AUGenericView.AudioUnit
-P:CoreAudioKit.AUGenericView.CustomViewPersistentData
-P:CoreAudioKit.AUGenericView.ShowsExpertParameters
-P:CoreAudioKit.AUGenericViewController.AuAudioUnit
-P:CoreAudioKit.AUPannerView.AudioUnit
P:CoreAudioKit.CAInterAppAudioSwitcherView.ShowingAppNames
P:CoreAudioKit.CAInterAppAudioTransportView.Connected
-P:CoreAudioKit.CAInterAppAudioTransportView.CurrentTimeLabelFont
P:CoreAudioKit.CAInterAppAudioTransportView.Enabled
-P:CoreAudioKit.CAInterAppAudioTransportView.LabelColor
-P:CoreAudioKit.CAInterAppAudioTransportView.PauseButtonColor
-P:CoreAudioKit.CAInterAppAudioTransportView.PlayButtonColor
P:CoreAudioKit.CAInterAppAudioTransportView.Playing
-P:CoreAudioKit.CAInterAppAudioTransportView.RecordButtonColor
P:CoreAudioKit.CAInterAppAudioTransportView.Recording
-P:CoreAudioKit.CAInterAppAudioTransportView.RewindButtonColor
-P:CoreAudioKit.CANetworkBrowserWindowController.IsAvbSupported
P:CoreAudioKit.IAUCustomViewPersistentData.CustomViewPersistentData
P:CoreBluetooth.AdvertisementData.IsConnectable
-P:CoreBluetooth.AdvertisementData.LocalName
-P:CoreBluetooth.AdvertisementData.ManufacturerData
P:CoreBluetooth.AdvertisementData.OverflowServiceUuids
-P:CoreBluetooth.AdvertisementData.ServiceData
P:CoreBluetooth.AdvertisementData.ServiceUuids
P:CoreBluetooth.AdvertisementData.SolicitedServiceUuids
P:CoreBluetooth.AdvertisementData.TxPowerLevel
@@ -75996,7 +51012,6 @@ P:CoreBluetooth.CBL2CapChannel.OutputStream
P:CoreBluetooth.CBL2CapChannel.Peer
P:CoreBluetooth.CBL2CapChannel.Psm
P:CoreBluetooth.CBManager.Authorization
-P:CoreBluetooth.CBManager.State
P:CoreBluetooth.CBMutableCharacteristic.Descriptors
P:CoreBluetooth.CBMutableCharacteristic.Permissions
P:CoreBluetooth.CBMutableCharacteristic.Properties
@@ -76004,7 +51019,6 @@ P:CoreBluetooth.CBMutableCharacteristic.SubscribedCentrals
P:CoreBluetooth.CBMutableCharacteristic.Value
P:CoreBluetooth.CBMutableService.Characteristics
P:CoreBluetooth.CBMutableService.IncludedServices
-P:CoreBluetooth.CBPeer.Identifier
P:CoreBluetooth.CBPeripheral.AncsAuthorized
P:CoreBluetooth.CBPeripheral.CanSendWriteWithoutResponse
P:CoreBluetooth.CBPeripheral.Delegate
@@ -76060,38 +51074,17 @@ P:CoreBluetooth.CBUUID.L2CapPsmCharacteristicString
P:CoreBluetooth.CBUUID.ServerCharacteristicConfigurationString
P:CoreBluetooth.CBUUID.Uuid
P:CoreBluetooth.CBWillRestoreEventArgs.Dict
-P:CoreBluetooth.PeripheralConnectionOptions.NotifyOnConnection
-P:CoreBluetooth.PeripheralConnectionOptions.NotifyOnDisconnection
-P:CoreBluetooth.PeripheralConnectionOptions.NotifyOnNotification
-P:CoreBluetooth.PeripheralScanningOptions.AllowDuplicatesKey
P:CoreBluetooth.RestoredState.Peripherals
P:CoreBluetooth.RestoredState.ScanOptions
P:CoreBluetooth.RestoredState.ScanServices
-P:CoreBluetooth.StartAdvertisingOptions.LocalName
-P:CoreBluetooth.StartAdvertisingOptions.ServicesUUID
P:CoreData.INSFetchedResultsSectionInfo.Count
P:CoreData.INSFetchedResultsSectionInfo.IndexTitle
P:CoreData.INSFetchedResultsSectionInfo.Name
P:CoreData.INSFetchedResultsSectionInfo.Objects
-P:CoreData.NSAsynchronousFetchRequest.EstimatedResultCount
-P:CoreData.NSAsynchronousFetchRequest.FetchRequest
-P:CoreData.NSAsynchronousFetchResult.FetchRequest
-P:CoreData.NSAsynchronousFetchResult.FinalResult
-P:CoreData.NSAtomicStore.CacheNodes
-P:CoreData.NSAtomicStoreCacheNode.ObjectID
-P:CoreData.NSAtomicStoreCacheNode.PropertyCache
P:CoreData.NSAttributeDescription.AllowsCloudEncryption
-P:CoreData.NSAttributeDescription.AllowsExternalBinaryDataStorage
-P:CoreData.NSAttributeDescription.AttributeType
-P:CoreData.NSAttributeDescription.AttributeValueClassName
-P:CoreData.NSAttributeDescription.DefaultValue
P:CoreData.NSAttributeDescription.PreservesValueInHistoryOnDeletion
P:CoreData.NSAttributeDescription.ValueTransformerName
P:CoreData.NSAttributeDescription.VersionHash
-P:CoreData.NSBatchDeleteRequest.FetchRequest
-P:CoreData.NSBatchDeleteRequest.ResultType
-P:CoreData.NSBatchDeleteResult.Result
-P:CoreData.NSBatchDeleteResult.ResultType
P:CoreData.NSBatchInsertRequest.DictionaryHandler
P:CoreData.NSBatchInsertRequest.Entity
P:CoreData.NSBatchInsertRequest.EntityName
@@ -76106,57 +51099,14 @@ P:CoreData.NSBatchUpdateRequest.IncludesSubentities
P:CoreData.NSBatchUpdateRequest.Predicate
P:CoreData.NSBatchUpdateRequest.PropertiesToUpdate
P:CoreData.NSBatchUpdateRequest.ResultType
-P:CoreData.NSBatchUpdateResult.Result
-P:CoreData.NSBatchUpdateResult.ResultType
P:CoreData.NSCompositeAttributeDescription.Elements
-P:CoreData.NSConstraintConflict.ConflictingObjects
-P:CoreData.NSConstraintConflict.ConflictingSnapshots
-P:CoreData.NSConstraintConflict.Constraint
-P:CoreData.NSConstraintConflict.ConstraintValues
-P:CoreData.NSConstraintConflict.DatabaseObject
-P:CoreData.NSConstraintConflict.DatabaseSnapshot
-P:CoreData.NSCoreDataCoreSpotlightDelegate.DomainIdentifier
P:CoreData.NSCoreDataCoreSpotlightDelegate.IndexDidUpdateNotification
P:CoreData.NSCoreDataCoreSpotlightDelegate.IndexingEnabled
-P:CoreData.NSCoreDataCoreSpotlightDelegate.IndexName
P:CoreData.NSCustomMigrationStage.CurrentModel
P:CoreData.NSCustomMigrationStage.DidMigrateHandler
P:CoreData.NSCustomMigrationStage.NextModel
P:CoreData.NSCustomMigrationStage.WillMigrateHandler
P:CoreData.NSDerivedAttributeDescription.DerivationExpression
-P:CoreData.NSEntityDescription.Abstract
-P:CoreData.NSEntityDescription.AttributesByName
-P:CoreData.NSEntityDescription.CompoundIndexes
-P:CoreData.NSEntityDescription.CoreSpotlightDisplayNameExpression
-P:CoreData.NSEntityDescription.Indexes
-P:CoreData.NSEntityDescription.ManagedObjectClassName
-P:CoreData.NSEntityDescription.ManagedObjectModel
-P:CoreData.NSEntityDescription.Name
-P:CoreData.NSEntityDescription.Properties
-P:CoreData.NSEntityDescription.PropertiesByName
-P:CoreData.NSEntityDescription.RelationshipsByName
-P:CoreData.NSEntityDescription.RenamingIdentifier
-P:CoreData.NSEntityDescription.Subentities
-P:CoreData.NSEntityDescription.SubentitiesByName
-P:CoreData.NSEntityDescription.Superentity
-P:CoreData.NSEntityDescription.UniquenessConstraints
-P:CoreData.NSEntityDescription.UserInfo
-P:CoreData.NSEntityDescription.VersionHash
-P:CoreData.NSEntityDescription.VersionHashModifier
-P:CoreData.NSEntityMapping.AttributeMappings
-P:CoreData.NSEntityMapping.DestinationEntityName
-P:CoreData.NSEntityMapping.DestinationEntityVersionHash
-P:CoreData.NSEntityMapping.EntityMigrationPolicyClassName
-P:CoreData.NSEntityMapping.MappingType
-P:CoreData.NSEntityMapping.Name
-P:CoreData.NSEntityMapping.RelationshipMappings
-P:CoreData.NSEntityMapping.SourceEntityName
-P:CoreData.NSEntityMapping.SourceEntityVersionHash
-P:CoreData.NSEntityMapping.SourceExpression
-P:CoreData.NSEntityMapping.UserInfo
-P:CoreData.NSExpressionDescription.Expression
-P:CoreData.NSExpressionDescription.ResultType
-P:CoreData.NSFetchedPropertyDescription.FetchRequest
P:CoreData.NSFetchedResultsController.CacheName
P:CoreData.NSFetchedResultsController.Delegate
P:CoreData.NSFetchedResultsController.FetchedObjects
@@ -76170,39 +51120,8 @@ P:CoreData.NSFetchedResultsSectionInfo.Count
P:CoreData.NSFetchedResultsSectionInfo.IndexTitle
P:CoreData.NSFetchedResultsSectionInfo.Name
P:CoreData.NSFetchedResultsSectionInfo.Objects
-P:CoreData.NSFetchIndexDescription.Elements
P:CoreData.NSFetchIndexDescription.Entity
-P:CoreData.NSFetchIndexDescription.Name
-P:CoreData.NSFetchIndexDescription.PartialIndexPredicate
-P:CoreData.NSFetchIndexElementDescription.CollationType
P:CoreData.NSFetchIndexElementDescription.IndexDescription
-P:CoreData.NSFetchIndexElementDescription.IsAscending
-P:CoreData.NSFetchIndexElementDescription.Property
-P:CoreData.NSFetchIndexElementDescription.PropertyName
-P:CoreData.NSFetchRequest.AffectedStores
-P:CoreData.NSFetchRequest.Entity
-P:CoreData.NSFetchRequest.EntityName
-P:CoreData.NSFetchRequest.FetchBatchSize
-P:CoreData.NSFetchRequest.FetchLimit
-P:CoreData.NSFetchRequest.FetchOffset
-P:CoreData.NSFetchRequest.HavingPredicate
-P:CoreData.NSFetchRequest.IncludesPendingChanges
-P:CoreData.NSFetchRequest.IncludesPropertyValues
-P:CoreData.NSFetchRequest.IncludesSubentities
-P:CoreData.NSFetchRequest.Predicate
-P:CoreData.NSFetchRequest.PropertiesToFetch
-P:CoreData.NSFetchRequest.PropertiesToGroupBy
-P:CoreData.NSFetchRequest.RelationshipKeyPathsForPrefetching
-P:CoreData.NSFetchRequest.ResultType
-P:CoreData.NSFetchRequest.ReturnsDistinctResults
-P:CoreData.NSFetchRequest.ReturnsObjectsAsFaults
-P:CoreData.NSFetchRequest.ShouldRefreshRefetchedObjects
-P:CoreData.NSFetchRequest.SortDescriptors
-P:CoreData.NSFetchRequestExpression.Context
-P:CoreData.NSFetchRequestExpression.IsCountOnly
-P:CoreData.NSFetchRequestExpression.Request
-P:CoreData.NSIncrementalStoreNode.ObjectId
-P:CoreData.NSIncrementalStoreNode.Version
P:CoreData.NSLightweightMigrationStage.VersionChecksums
P:CoreData.NSManagedObject.ChangedValues
P:CoreData.NSManagedObject.ChangedValuesForCurrentEvent
@@ -76270,27 +51189,6 @@ P:CoreData.NSManagedObjectsIdsChangedEventArgs.RefreshedObjectIdsKey
P:CoreData.NSManagedObjectsIdsChangedEventArgs.UpdatedObjectIdsKey
P:CoreData.NSMappingModel.EntityMappings
P:CoreData.NSMappingModel.EntityMappingsByName
-P:CoreData.NSMergeConflict.CachedSnapshot
-P:CoreData.NSMergeConflict.NewVersionNumber
-P:CoreData.NSMergeConflict.ObjectSnapshot
-P:CoreData.NSMergeConflict.OldVersionNumber
-P:CoreData.NSMergeConflict.PersistedSnapshot
-P:CoreData.NSMergeConflict.SourceObject
-P:CoreData.NSMergePolicy.ErrorPolicy
-P:CoreData.NSMergePolicy.MergeByPropertyObjectTrumpPolicy
-P:CoreData.NSMergePolicy.MergeByPropertyStoreTrumpPolicy
-P:CoreData.NSMergePolicy.MergeType
-P:CoreData.NSMergePolicy.OverwritePolicy
-P:CoreData.NSMergePolicy.RollbackPolicy
-P:CoreData.NSMigrationManager.CurrentEntityMapping
-P:CoreData.NSMigrationManager.DestinationContext
-P:CoreData.NSMigrationManager.DestinationModel
-P:CoreData.NSMigrationManager.MappingModel
-P:CoreData.NSMigrationManager.MigrationProgress
-P:CoreData.NSMigrationManager.SourceContext
-P:CoreData.NSMigrationManager.SourceModel
-P:CoreData.NSMigrationManager.UserInfo
-P:CoreData.NSMigrationManager.UsesStoreSpecificMigrationManager
P:CoreData.NSMigrationStage.Label
P:CoreData.NSPersistentCloudKitContainerAcceptShareInvitationsResult.AcceptedShareMetadatas
P:CoreData.NSPersistentCloudKitContainerEvent.ChangedNotification
@@ -76313,38 +51211,15 @@ P:CoreData.NSPersistentCloudKitContainerPurgeObjectsAndRecordsInZone.PurgedZoneI
P:CoreData.NSPersistentCloudKitContainerShareManagedObjectsResult.Container
P:CoreData.NSPersistentCloudKitContainerShareManagedObjectsResult.Share
P:CoreData.NSPersistentCloudKitContainerShareManagedObjectsResult.SharedObjectIds
-P:CoreData.NSPersistentContainer.DefaultDirectoryUrl
-P:CoreData.NSPersistentContainer.ManagedObjectModel
-P:CoreData.NSPersistentContainer.Name
-P:CoreData.NSPersistentContainer.NewBackgroundContext
-P:CoreData.NSPersistentContainer.PersistentStoreCoordinator
-P:CoreData.NSPersistentContainer.PersistentStoreDescriptions
-P:CoreData.NSPersistentContainer.ViewContext
-P:CoreData.NSPersistentHistoryChange.ChangedObjectId
-P:CoreData.NSPersistentHistoryChange.ChangeId
-P:CoreData.NSPersistentHistoryChange.ChangeType
P:CoreData.NSPersistentHistoryChange.EntityDescription
P:CoreData.NSPersistentHistoryChange.FetchRequest
-P:CoreData.NSPersistentHistoryChange.Tombstone
-P:CoreData.NSPersistentHistoryChange.Transaction
-P:CoreData.NSPersistentHistoryChange.UpdatedProperties
P:CoreData.NSPersistentHistoryChangeRequest.FetchRequest
P:CoreData.NSPersistentHistoryChangeRequest.ResultType
P:CoreData.NSPersistentHistoryChangeRequest.Token
P:CoreData.NSPersistentHistoryResult.Result
P:CoreData.NSPersistentHistoryResult.ResultType
-P:CoreData.NSPersistentHistoryTransaction.Author
-P:CoreData.NSPersistentHistoryTransaction.BundleId
-P:CoreData.NSPersistentHistoryTransaction.Changes
-P:CoreData.NSPersistentHistoryTransaction.ContextName
P:CoreData.NSPersistentHistoryTransaction.EntityDescription
P:CoreData.NSPersistentHistoryTransaction.FetchRequest
-P:CoreData.NSPersistentHistoryTransaction.ObjectIdNotification
-P:CoreData.NSPersistentHistoryTransaction.ProcessId
-P:CoreData.NSPersistentHistoryTransaction.StoreId
-P:CoreData.NSPersistentHistoryTransaction.Timestamp
-P:CoreData.NSPersistentHistoryTransaction.Token
-P:CoreData.NSPersistentHistoryTransaction.TransactionNumber
P:CoreData.NSPersistentStore.ConfigurationName
P:CoreData.NSPersistentStore.CoreSpotlightExporter
P:CoreData.NSPersistentStore.Identifier
@@ -76361,47 +51236,8 @@ P:CoreData.NSPersistentStore.Url
P:CoreData.NSPersistentStoreAsynchronousResult.ManagedObjectContext
P:CoreData.NSPersistentStoreAsynchronousResult.OperationError
P:CoreData.NSPersistentStoreAsynchronousResult.Progress
-P:CoreData.NSPersistentStoreCoordinator.AddedPersistentStoresKey
-P:CoreData.NSPersistentStoreCoordinator.BinaryStoreInsecureDecodingCompatibilityOption
-P:CoreData.NSPersistentStoreCoordinator.BinaryStoreSecureDecodingClasses
-P:CoreData.NSPersistentStoreCoordinator.BinaryStoreType
-P:CoreData.NSPersistentStoreCoordinator.CoreSpotlightExporter
-P:CoreData.NSPersistentStoreCoordinator.DidImportUbiquitousContentChangesNotification
-P:CoreData.NSPersistentStoreCoordinator.HistoryTrackingKey
-P:CoreData.NSPersistentStoreCoordinator.IgnorePersistentStoreVersioningOption
-P:CoreData.NSPersistentStoreCoordinator.InferMappingModelAutomaticallyOption
-P:CoreData.NSPersistentStoreCoordinator.InMemoryStoreType
-P:CoreData.NSPersistentStoreCoordinator.ManagedObjectModel
-P:CoreData.NSPersistentStoreCoordinator.MigratePersistentStoresAutomaticallyOption
-P:CoreData.NSPersistentStoreCoordinator.Name
P:CoreData.NSPersistentStoreCoordinator.PersistentStoreFileProtectionKey
-P:CoreData.NSPersistentStoreCoordinator.PersistentStoreOSCompatibility
-P:CoreData.NSPersistentStoreCoordinator.PersistentStores
-P:CoreData.NSPersistentStoreCoordinator.PersistentStoreTimeoutOption
-P:CoreData.NSPersistentStoreCoordinator.PersistentStoreUbiquitousContentNameKey
P:CoreData.NSPersistentStoreCoordinator.PersistentStoreUbiquitousContentUrlKey
-P:CoreData.NSPersistentStoreCoordinator.PersistentStoreUbiquitousPeerTokenOption
-P:CoreData.NSPersistentStoreCoordinator.ReadOnlyPersistentStoreOption
-P:CoreData.NSPersistentStoreCoordinator.RebuildFromUbiquitousContentOption
-P:CoreData.NSPersistentStoreCoordinator.RegisteredStoreTypes
-P:CoreData.NSPersistentStoreCoordinator.RemovedPersistentStoresKey
-P:CoreData.NSPersistentStoreCoordinator.RemoveUbiquitousMetadataOption
-P:CoreData.NSPersistentStoreCoordinator.SQLiteAnalyzeOption
-P:CoreData.NSPersistentStoreCoordinator.SQLiteManualVacuumOption
-P:CoreData.NSPersistentStoreCoordinator.SQLitePragmasOption
-P:CoreData.NSPersistentStoreCoordinator.SQLiteStoreType
-P:CoreData.NSPersistentStoreCoordinator.StoreModelVersionHashesKey
-P:CoreData.NSPersistentStoreCoordinator.StoreModelVersionIdentifiersKey
-P:CoreData.NSPersistentStoreCoordinator.StoresDidChangeNotification
-P:CoreData.NSPersistentStoreCoordinator.StoresWillChangeNotification
-P:CoreData.NSPersistentStoreCoordinator.StoreTypeKey
-P:CoreData.NSPersistentStoreCoordinator.StoreUUIDKey
-P:CoreData.NSPersistentStoreCoordinator.TryLock
-P:CoreData.NSPersistentStoreCoordinator.UbiquitousContainerIdentifierKey
-P:CoreData.NSPersistentStoreCoordinator.UUIDChangedPersistentStoresKey
-P:CoreData.NSPersistentStoreCoordinator.ValidateXMLStoreOption
-P:CoreData.NSPersistentStoreCoordinator.WillRemoveStoreNotification
-P:CoreData.NSPersistentStoreCoordinator.XMLStoreType
P:CoreData.NSPersistentStoreCoordinatorStoreChangeEventArgs.EventType
P:CoreData.NSPersistentStoreDescription.CloudKitContainerOptions
P:CoreData.NSPersistentStoreDescription.Configuration
@@ -76467,78 +51303,21 @@ P:CoreData.UserInfoKeys.PersistentStoreSaveConflictsKey
P:CoreData.UserInfoKeys.PredicateForValidationErrorKey
P:CoreData.UserInfoKeys.StagedMigrationManagerOptionKey
P:CoreData.UserInfoKeys.ValueForValidationErrorKey
-P:CoreFoundation.CFAllocator.Default
-P:CoreFoundation.CFAllocator.Malloc
-P:CoreFoundation.CFAllocator.MallocZone
-P:CoreFoundation.CFAllocator.Null
-P:CoreFoundation.CFAllocator.SystemDefault
P:CoreFoundation.CFArray.Count
-P:CoreFoundation.CFBundle.Architectures
-P:CoreFoundation.CFBundle.BuiltInPlugInsUrl
-P:CoreFoundation.CFBundle.DevelopmentRegion
-P:CoreFoundation.CFBundle.ExecutableUrl
-P:CoreFoundation.CFBundle.HasLoadedExecutable
-P:CoreFoundation.CFBundle.Identifier
-P:CoreFoundation.CFBundle.Info
-P:CoreFoundation.CFBundle.InfoDictionary
-P:CoreFoundation.CFBundle.LocalInfoDictionary
-P:CoreFoundation.CFBundle.PackageInfo.Creator
-P:CoreFoundation.CFBundle.PackageInfo.Type
-P:CoreFoundation.CFBundle.PrivateFrameworksUrl
-P:CoreFoundation.CFBundle.ResourcesDirectoryUrl
-P:CoreFoundation.CFBundle.SharedFrameworksUrl
-P:CoreFoundation.CFBundle.SharedSupportUrl
-P:CoreFoundation.CFBundle.SupportFilesDirectoryUrl
-P:CoreFoundation.CFBundle.Url
-P:CoreFoundation.CFException.Code
-P:CoreFoundation.CFException.Domain
-P:CoreFoundation.CFException.FailureReason
-P:CoreFoundation.CFException.RecoverySuggestion
-P:CoreFoundation.CFMachPort.IsValid
-P:CoreFoundation.CFMachPort.MachPort
-P:CoreFoundation.CFMessagePort.InvalidationCallback
-P:CoreFoundation.CFMessagePort.IsRemote
-P:CoreFoundation.CFMessagePort.IsValid
-P:CoreFoundation.CFMessagePort.Name
P:CoreFoundation.CFNetwork.ErrorDomain
-P:CoreFoundation.CFNotificationCenter.Darwin
-P:CoreFoundation.CFNotificationCenter.Distributed
-P:CoreFoundation.CFNotificationCenter.Local
-P:CoreFoundation.CFPropertyList.Value
-P:CoreFoundation.CFProxy.AutoConfigurationJavaScript
-P:CoreFoundation.CFProxy.AutoConfigurationUrl
-P:CoreFoundation.CFProxy.HostName
-P:CoreFoundation.CFProxy.Password
-P:CoreFoundation.CFProxy.Port
-P:CoreFoundation.CFProxy.ProxyType
-P:CoreFoundation.CFProxy.Username
-P:CoreFoundation.CFProxySettings.Dictionary
-P:CoreFoundation.CFProxySettings.HTTPEnable
-P:CoreFoundation.CFProxySettings.HTTPPort
-P:CoreFoundation.CFProxySettings.HTTPProxy
-P:CoreFoundation.CFProxySettings.ProxyAutoConfigEnable
P:CoreFoundation.CFProxySettings.ProxyAutoConfigJavaScript
-P:CoreFoundation.CFProxySettings.ProxyAutoConfigURLString
P:CoreFoundation.CFRange.Length
P:CoreFoundation.CFRange.Location
P:CoreFoundation.CFRange.LongLength
P:CoreFoundation.CFRange.LongLocation
P:CoreFoundation.CFRunLoop.AllModes
-P:CoreFoundation.CFRunLoop.Current
P:CoreFoundation.CFRunLoop.CurrentMode
-P:CoreFoundation.CFRunLoop.IsWaiting
-P:CoreFoundation.CFRunLoop.Main
-P:CoreFoundation.CFRunLoop.ModeCommon
-P:CoreFoundation.CFRunLoop.ModeDefault
-P:CoreFoundation.CFRunLoopSource.IsValid
-P:CoreFoundation.CFRunLoopSource.Order
P:CoreFoundation.CFSocket.Address
P:CoreFoundation.CFSocket.CFSocketAcceptEventArgs.RemoteEndPoint
P:CoreFoundation.CFSocket.CFSocketConnectEventArgs.Result
P:CoreFoundation.CFSocket.CFSocketDataEventArgs.Data
P:CoreFoundation.CFSocket.CFSocketDataEventArgs.RemoteEndPoint
P:CoreFoundation.CFSocket.RemoteAddress
-P:CoreFoundation.CFSocketException.Error
P:CoreFoundation.CFStream.ReadDispatchQueue
P:CoreFoundation.CFStream.StreamEventArgs.EventType
P:CoreFoundation.CFStream.WriteDispatchQueue
@@ -78990,10 +53769,6 @@ P:CoreLocation.CLBeaconRegion.ProximityUuid
P:CoreLocation.CLBeaconRegion.Uuid
P:CoreLocation.CLCircularGeographicCondition.Center
P:CoreLocation.CLCircularGeographicCondition.Radius
-P:CoreLocation.CLCircularRegion.Center
-P:CoreLocation.CLCircularRegion.Radius
-P:CoreLocation.CLFloor.Level
-P:CoreLocation.CLGeocoder.Geocoding
P:CoreLocation.CLHeading.HeadingAccuracy
P:CoreLocation.CLHeading.MagneticHeading
P:CoreLocation.CLHeading.Timestamp
@@ -79002,46 +53777,25 @@ P:CoreLocation.CLHeading.X
P:CoreLocation.CLHeading.Y
P:CoreLocation.CLHeading.Z
P:CoreLocation.CLHeadingUpdatedEventArgs.NewHeading
-P:CoreLocation.CLLocation.AccuracyBest
P:CoreLocation.CLLocation.AccuracyBestForNavigation
-P:CoreLocation.CLLocation.AccuracyHundredMeters
-P:CoreLocation.CLLocation.AccuracyKilometer
-P:CoreLocation.CLLocation.AccuracyNearestTenMeters
P:CoreLocation.CLLocation.AccuracyReduced
-P:CoreLocation.CLLocation.AccuracyThreeKilometers
-P:CoreLocation.CLLocation.Altitude
-P:CoreLocation.CLLocation.Coordinate
-P:CoreLocation.CLLocation.Course
P:CoreLocation.CLLocation.CourseAccuracy
P:CoreLocation.CLLocation.EllipsoidalAltitude
P:CoreLocation.CLLocation.ErrorUserInfoAlternateRegionKey
-P:CoreLocation.CLLocation.Floor
-P:CoreLocation.CLLocation.HorizontalAccuracy
P:CoreLocation.CLLocation.SourceInformation
-P:CoreLocation.CLLocation.Speed
P:CoreLocation.CLLocation.SpeedAccuracy
-P:CoreLocation.CLLocation.Timestamp
-P:CoreLocation.CLLocation.VerticalAccuracy
-P:CoreLocation.CLLocationDistance.FilterNone
-P:CoreLocation.CLLocationDistance.MaxDistance
P:CoreLocation.CLLocationManager.AccuracyAuthorization
P:CoreLocation.CLLocationManager.ActivityType
P:CoreLocation.CLLocationManager.AllowsBackgroundLocationUpdates
P:CoreLocation.CLLocationManager.AuthorizationStatus
P:CoreLocation.CLLocationManager.DeferredLocationUpdatesAvailable
-P:CoreLocation.CLLocationManager.Delegate
-P:CoreLocation.CLLocationManager.DesiredAccuracy
-P:CoreLocation.CLLocationManager.DistanceFilter
P:CoreLocation.CLLocationManager.Heading
P:CoreLocation.CLLocationManager.HeadingAvailable
P:CoreLocation.CLLocationManager.HeadingFilter
P:CoreLocation.CLLocationManager.HeadingOrientation
P:CoreLocation.CLLocationManager.IsAuthorizedForWidgetUpdates
P:CoreLocation.CLLocationManager.IsRangingAvailable
-P:CoreLocation.CLLocationManager.Location
-P:CoreLocation.CLLocationManager.LocationServicesEnabled
P:CoreLocation.CLLocationManager.MaximumRegionMonitoringDistance
-P:CoreLocation.CLLocationManager.MaxTimeInterval
P:CoreLocation.CLLocationManager.MonitoredRegions
P:CoreLocation.CLLocationManager.PausesLocationUpdatesAutomatically
P:CoreLocation.CLLocationManager.Purpose
@@ -79052,7 +53806,6 @@ P:CoreLocation.CLLocationManager.RegionMonitoringEnabled
P:CoreLocation.CLLocationManager.ShouldDisplayHeadingCalibration
P:CoreLocation.CLLocationManager.ShowsBackgroundLocationIndicator
P:CoreLocation.CLLocationManager.SignificantLocationChangeMonitoringAvailable
-P:CoreLocation.CLLocationManager.Status
P:CoreLocation.CLLocationManager.WeakDelegate
P:CoreLocation.CLLocationSourceInformation.IsProducedByAccessory
P:CoreLocation.CLLocationSourceInformation.IsSimulatedBySoftware
@@ -79080,28 +53833,8 @@ P:CoreLocation.CLMonitoringEvent.ServiceSessionRequired
P:CoreLocation.CLMonitoringEvent.State
P:CoreLocation.CLMonitoringRecord.Condition
P:CoreLocation.CLMonitoringRecord.LastEvent
-P:CoreLocation.CLPlacemark.AddressDictionary
-P:CoreLocation.CLPlacemark.AdministrativeArea
-P:CoreLocation.CLPlacemark.AreasOfInterest
-P:CoreLocation.CLPlacemark.Country
-P:CoreLocation.CLPlacemark.InlandWater
-P:CoreLocation.CLPlacemark.IsoCountryCode
-P:CoreLocation.CLPlacemark.Locality
-P:CoreLocation.CLPlacemark.Location
-P:CoreLocation.CLPlacemark.Name
-P:CoreLocation.CLPlacemark.Ocean
P:CoreLocation.CLPlacemark.PostalAddress
-P:CoreLocation.CLPlacemark.PostalCode
-P:CoreLocation.CLPlacemark.Region
-P:CoreLocation.CLPlacemark.SubAdministrativeArea
-P:CoreLocation.CLPlacemark.SubLocality
-P:CoreLocation.CLPlacemark.SubThoroughfare
-P:CoreLocation.CLPlacemark.Thoroughfare
-P:CoreLocation.CLPlacemark.TimeZone
P:CoreLocation.CLRegion.Center
-P:CoreLocation.CLRegion.Identifier
-P:CoreLocation.CLRegion.NotifyOnEntry
-P:CoreLocation.CLRegion.NotifyOnExit
P:CoreLocation.CLRegion.Radius
P:CoreLocation.CLRegionBeaconsConstraintFailedEventArgs.BeaconConstraint
P:CoreLocation.CLRegionBeaconsConstraintFailedEventArgs.Error
@@ -79140,10 +53873,6 @@ 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
@@ -79253,15 +53982,6 @@ P:CoreMedia.TextMarkupColor.Alpha
P:CoreMedia.TextMarkupColor.Blue
P:CoreMedia.TextMarkupColor.Green
P:CoreMedia.TextMarkupColor.Red
-P:CoreMidi.IOErrorEventArgs.Device
-P:CoreMidi.IOErrorEventArgs.ErrorCode
-P:CoreMidi.Midi.DestinationCount
-P:CoreMidi.Midi.DeviceCount
-P:CoreMidi.Midi.ExternalDeviceCount
-P:CoreMidi.Midi.NetworkBonjourServiceType
-P:CoreMidi.Midi.NetworkNotificationContactsDidChange
-P:CoreMidi.Midi.NetworkNotificationSessionDidChange
-P:CoreMidi.Midi.SourceCount
P:CoreMidi.Midi2DeviceInfo.Family
P:CoreMidi.Midi2DeviceInfo.ManufacturerId
P:CoreMidi.Midi2DeviceInfo.ModelNumber
@@ -79293,182 +54013,28 @@ P:CoreMidi.MidiCIDiscoveredNode.MaximumSysExSize
P:CoreMidi.MidiCIDiscoveredNode.SupportsProfiles
P:CoreMidi.MidiCIDiscoveredNode.SupportsProperties
P:CoreMidi.MidiCIDiscoveryManager.SharedInstance
-P:CoreMidi.MidiCIProfile.Name
-P:CoreMidi.MidiCIProfile.ProfileId
P:CoreMidi.MidiCIProfile.WasRemovedNotification
P:CoreMidi.MidiCIProfile.WasUpdatedNotification
P:CoreMidi.MidiCIProfileId.ManufacturerSpecific
P:CoreMidi.MidiCIProfileId.Standard
-P:CoreMidi.MidiCIProfileState.DisabledProfiles
-P:CoreMidi.MidiCIProfileState.EnabledProfiles
P:CoreMidi.MidiCIProfileState.MidiChannel
P:CoreMidi.MidiCIResponder.DeviceInfo
P:CoreMidi.MidiCIResponder.Initiators
P:CoreMidi.MidiCIResponder.ProfileDelegate
P:CoreMidi.MidiCIResponder.WeakProfileDelegate
-P:CoreMidi.MidiCISession.DeviceIdentification
P:CoreMidi.MidiCISession.DeviceInfo
-P:CoreMidi.MidiCISession.Entity
P:CoreMidi.MidiCISession.MaxPropertyRequests
P:CoreMidi.MidiCISession.MaxSysExSize
-P:CoreMidi.MidiCISession.ProfileChangedCallback
P:CoreMidi.MidiCISession.ProfileSpecificDataHandler
-P:CoreMidi.MidiCISession.SupportsProfileCapability
-P:CoreMidi.MidiCISession.SupportsPropertyCapability
-P:CoreMidi.MidiClient.Name
-P:CoreMidi.MidiDevice.AdvanceScheduleTimeMuSec
-P:CoreMidi.MidiDevice.CanRoute
-P:CoreMidi.MidiDevice.ConnectionUniqueIDData
-P:CoreMidi.MidiDevice.ConnectionUniqueIDInt
-P:CoreMidi.MidiDevice.DeviceID
-P:CoreMidi.MidiDevice.DisplayName
-P:CoreMidi.MidiDevice.DriverDeviceEditorApp
-P:CoreMidi.MidiDevice.DriverOwner
-P:CoreMidi.MidiDevice.DriverVersion
-P:CoreMidi.MidiDevice.EntityCount
-P:CoreMidi.MidiDevice.Image
-P:CoreMidi.MidiDevice.IsDrumMachine
-P:CoreMidi.MidiDevice.IsEffectUnit
-P:CoreMidi.MidiDevice.IsEmbeddedEntity
-P:CoreMidi.MidiDevice.IsMixer
-P:CoreMidi.MidiDevice.IsSampler
-P:CoreMidi.MidiDevice.Manufacturer
-P:CoreMidi.MidiDevice.MaxReceiveChannels
-P:CoreMidi.MidiDevice.MaxSysExSpeed
-P:CoreMidi.MidiDevice.MaxTransmitChannels
-P:CoreMidi.MidiDevice.Model
-P:CoreMidi.MidiDevice.Name
-P:CoreMidi.MidiDevice.NameConfiguration
P:CoreMidi.MidiDevice.NameConfigurationDictionary
-P:CoreMidi.MidiDevice.Offline
-P:CoreMidi.MidiDevice.PanDisruptsStereo
-P:CoreMidi.MidiDevice.Private
P:CoreMidi.MidiDevice.ProtocolId
-P:CoreMidi.MidiDevice.ReceivesBankSelectLSB
-P:CoreMidi.MidiDevice.ReceivesBankSelectMSB
-P:CoreMidi.MidiDevice.ReceivesClock
-P:CoreMidi.MidiDevice.ReceivesMTC
-P:CoreMidi.MidiDevice.ReceivesNotes
-P:CoreMidi.MidiDevice.ReceivesProgramChanges
-P:CoreMidi.MidiDevice.SingleRealtimeEntity
-P:CoreMidi.MidiDevice.SupportsGeneralMidi
-P:CoreMidi.MidiDevice.SupportsMMC
-P:CoreMidi.MidiDevice.SupportsShowControl
-P:CoreMidi.MidiDevice.TransmitsBankSelectLSB
-P:CoreMidi.MidiDevice.TransmitsBankSelectMSB
-P:CoreMidi.MidiDevice.TransmitsClock
-P:CoreMidi.MidiDevice.TransmitsMTC
-P:CoreMidi.MidiDevice.TransmitsNotes
-P:CoreMidi.MidiDevice.TransmitsProgramChanges
-P:CoreMidi.MidiDevice.UniqueID
-P:CoreMidi.MidiDevice.UsesSerial
-P:CoreMidi.MidiEndpoint.AdvanceScheduleTimeMuSec
P:CoreMidi.MidiEndpoint.AssociatedEndpoint
-P:CoreMidi.MidiEndpoint.ConnectionUniqueIDData
-P:CoreMidi.MidiEndpoint.ConnectionUniqueIDInt
-P:CoreMidi.MidiEndpoint.DisplayName
-P:CoreMidi.MidiEndpoint.DriverOwner
-P:CoreMidi.MidiEndpoint.DriverVersion
-P:CoreMidi.MidiEndpoint.EndpointName
-P:CoreMidi.MidiEndpoint.Entity
-P:CoreMidi.MidiEndpoint.IsBroadcast
-P:CoreMidi.MidiEndpoint.IsNetworkSession
-P:CoreMidi.MidiEndpoint.Manufacturer
-P:CoreMidi.MidiEndpoint.MaxSysExSpeed
-P:CoreMidi.MidiEndpoint.Name
-P:CoreMidi.MidiEndpoint.NameConfiguration
-P:CoreMidi.MidiEndpoint.Offline
-P:CoreMidi.MidiEndpoint.Private
P:CoreMidi.MidiEndpoint.ProtocolId
-P:CoreMidi.MidiEndpoint.ReceiveChannels
-P:CoreMidi.MidiEndpoint.TransmitChannels
P:CoreMidi.MidiEndpoint.UmpActiveGroupBitmap
P:CoreMidi.MidiEndpoint.UmpCanTransmitGroupless
-P:CoreMidi.MidiEntity.AdvanceScheduleTimeMuSec
-P:CoreMidi.MidiEntity.CanRoute
-P:CoreMidi.MidiEntity.ConnectionUniqueIDData
-P:CoreMidi.MidiEntity.ConnectionUniqueIDInt
-P:CoreMidi.MidiEntity.Destinations
-P:CoreMidi.MidiEntity.Device
-P:CoreMidi.MidiEntity.DeviceID
-P:CoreMidi.MidiEntity.DisplayName
-P:CoreMidi.MidiEntity.DriverOwner
-P:CoreMidi.MidiEntity.DriverVersion
-P:CoreMidi.MidiEntity.IsBroadcast
-P:CoreMidi.MidiEntity.IsDrumMachine
-P:CoreMidi.MidiEntity.IsEffectUnit
-P:CoreMidi.MidiEntity.IsEmbeddedEntity
-P:CoreMidi.MidiEntity.IsMixer
-P:CoreMidi.MidiEntity.IsSampler
-P:CoreMidi.MidiEntity.MaxReceiveChannels
-P:CoreMidi.MidiEntity.MaxSysExSpeed
-P:CoreMidi.MidiEntity.MaxTransmitChannels
-P:CoreMidi.MidiEntity.Model
-P:CoreMidi.MidiEntity.Name
-P:CoreMidi.MidiEntity.NameConfiguration
-P:CoreMidi.MidiEntity.Offline
-P:CoreMidi.MidiEntity.PanDisruptsStereo
-P:CoreMidi.MidiEntity.Private
P:CoreMidi.MidiEntity.ProtocolId
-P:CoreMidi.MidiEntity.ReceivesBankSelectLSB
-P:CoreMidi.MidiEntity.ReceivesBankSelectMSB
-P:CoreMidi.MidiEntity.ReceivesClock
-P:CoreMidi.MidiEntity.ReceivesMTC
-P:CoreMidi.MidiEntity.ReceivesNotes
-P:CoreMidi.MidiEntity.ReceivesProgramChanges
-P:CoreMidi.MidiEntity.Sources
-P:CoreMidi.MidiEntity.SupportsGeneralMidi
-P:CoreMidi.MidiEntity.SupportsMMC
-P:CoreMidi.MidiEntity.SupportsShowControl
-P:CoreMidi.MidiEntity.TransmitsBankSelectLSB
-P:CoreMidi.MidiEntity.TransmitsBankSelectMSB
-P:CoreMidi.MidiEntity.TransmitsClock
-P:CoreMidi.MidiEntity.TransmitsMTC
-P:CoreMidi.MidiEntity.TransmitsNotes
-P:CoreMidi.MidiEntity.TransmitsProgramChanges
P:CoreMidi.MidiEntity.UmpActiveGroupBitmap
P:CoreMidi.MidiEntity.UmpCanTransmitGroupless
-P:CoreMidi.MidiException.ErrorCode
-P:CoreMidi.MidiNetworkConnection.Host
-P:CoreMidi.MidiNetworkHost.Address
-P:CoreMidi.MidiNetworkHost.Name
-P:CoreMidi.MidiNetworkHost.NetServiceDomain
-P:CoreMidi.MidiNetworkHost.NetServiceName
-P:CoreMidi.MidiNetworkHost.Port
-P:CoreMidi.MidiNetworkSession.ConnectionPolicy
-P:CoreMidi.MidiNetworkSession.Connections
-P:CoreMidi.MidiNetworkSession.Contacts
-P:CoreMidi.MidiNetworkSession.DefaultSession
-P:CoreMidi.MidiNetworkSession.Enabled
-P:CoreMidi.MidiNetworkSession.LocalName
-P:CoreMidi.MidiNetworkSession.NetworkName
-P:CoreMidi.MidiNetworkSession.NetworkPort
-P:CoreMidi.MidiObject.Handle
-P:CoreMidi.MidiPacketsEventArgs.PacketListRaw
-P:CoreMidi.MidiPacketsEventArgs.Packets
-P:CoreMidi.MidiPort.Client
-P:CoreMidi.MidiPort.PortName
-P:CoreMidi.MidiThruConnection.Handle
-P:CoreMidi.MidiThruConnectionParams.ChannelMap
-P:CoreMidi.MidiThruConnectionParams.ChannelPressure
-P:CoreMidi.MidiThruConnectionParams.Controls
-P:CoreMidi.MidiThruConnectionParams.Destinations
-P:CoreMidi.MidiThruConnectionParams.FilterOutAllControls
-P:CoreMidi.MidiThruConnectionParams.FilterOutBeatClock
-P:CoreMidi.MidiThruConnectionParams.FilterOutMtc
-P:CoreMidi.MidiThruConnectionParams.FilterOutSysEx
-P:CoreMidi.MidiThruConnectionParams.FilterOutTuneRequest
-P:CoreMidi.MidiThruConnectionParams.HighNote
-P:CoreMidi.MidiThruConnectionParams.HighVelocity
-P:CoreMidi.MidiThruConnectionParams.KeyPressure
-P:CoreMidi.MidiThruConnectionParams.LowNote
-P:CoreMidi.MidiThruConnectionParams.LowVelocity
-P:CoreMidi.MidiThruConnectionParams.Maps
-P:CoreMidi.MidiThruConnectionParams.NoteNumber
-P:CoreMidi.MidiThruConnectionParams.PitchBend
-P:CoreMidi.MidiThruConnectionParams.ProgramChange
-P:CoreMidi.MidiThruConnectionParams.Sources
-P:CoreMidi.MidiThruConnectionParams.Velocity
P:CoreMidi.MidiUmpCIProfile.EnabledChannelCount
P:CoreMidi.MidiUmpCIProfile.FirstChannel
P:CoreMidi.MidiUmpCIProfile.GroupOffset
@@ -79511,53 +54077,22 @@ P:CoreMidi.MidiUmpFunctionBlock.WasUpdatedNotification
P:CoreMidi.MidiUmpMutableEndpoint.IsEnabled
P:CoreMidi.MidiUmpMutableEndpoint.MutableFunctionBlocks
P:CoreMidi.MidiUmpMutableFunctionBlock.UmpEndpoint
-P:CoreMidi.MidiValueMap.Value
-P:CoreMidi.ObjectAddedOrRemovedEventArgs.Child
-P:CoreMidi.ObjectAddedOrRemovedEventArgs.Parent
-P:CoreMidi.ObjectPropertyChangedEventArgs.MidiObject
-P:CoreMidi.ObjectPropertyChangedEventArgs.PropertyName
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
P:CoreML.MLDictionaryFeatureProvider.Item(System.String)
P:CoreML.MLFeatureDescription.DictionaryConstraint
P:CoreML.MLFeatureDescription.ImageConstraint
P:CoreML.MLFeatureDescription.MultiArrayConstraint
-P:CoreML.MLFeatureDescription.Name
-P:CoreML.MLFeatureDescription.Optional
-P:CoreML.MLFeatureDescription.SequenceConstraint
P:CoreML.MLFeatureDescription.StateConstraint
-P:CoreML.MLFeatureDescription.Type
-P:CoreML.MLFeatureValue.DictionaryValue
-P:CoreML.MLFeatureValue.DoubleValue
-P:CoreML.MLFeatureValue.ImageBufferValue
-P:CoreML.MLFeatureValue.Int64Value
-P:CoreML.MLFeatureValue.MultiArrayValue
-P:CoreML.MLFeatureValue.SequenceValue
-P:CoreML.MLFeatureValue.StringValue
-P:CoreML.MLFeatureValue.Type
-P:CoreML.MLFeatureValue.Undefined
P:CoreML.MLFeatureValueImageOption.CropAndScale
P:CoreML.MLFeatureValueImageOption.CropRect
P:CoreML.MLGpuComputeDevice.MetalDevice
-P:CoreML.MLImageConstraint.PixelFormatType
-P:CoreML.MLImageConstraint.PixelsHigh
-P:CoreML.MLImageConstraint.PixelsWide
-P:CoreML.MLImageConstraint.SizeConstraint
-P:CoreML.MLImageSize.PixelsHigh
-P:CoreML.MLImageSize.PixelsWide
-P:CoreML.MLImageSizeConstraint.EnumeratedImageSizes
-P:CoreML.MLImageSizeConstraint.PixelsHighRange
-P:CoreML.MLImageSizeConstraint.PixelsWideRange
-P:CoreML.MLImageSizeConstraint.Type
P:CoreML.MLKey.Name
P:CoreML.MLKey.Scope
P:CoreML.MLMetricKey.EpochIndex
@@ -79565,8 +54100,6 @@ P:CoreML.MLMetricKey.LossValue
P:CoreML.MLMetricKey.MiniBatchIndex
P:CoreML.MLModel.AllComputeDevices
P:CoreML.MLModel.AvailableComputeDevices
-P:CoreML.MLModel.Configuration
-P:CoreML.MLModel.ModelDescription
P:CoreML.MLModelCollection.DeploymentId
P:CoreML.MLModelCollection.DidChangeNotification
P:CoreML.MLModelCollection.Entries
@@ -79622,18 +54155,10 @@ 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
P:CoreML.MLMultiArray.Item(Foundation.NSNumber[])
P:CoreML.MLMultiArray.Item(System.IntPtr)
P:CoreML.MLMultiArray.Item(System.IntPtr[])
P:CoreML.MLMultiArray.PixelBuffer
-P:CoreML.MLMultiArray.Shape
-P:CoreML.MLMultiArray.Strides
-P:CoreML.MLMultiArrayConstraint.DataType
-P:CoreML.MLMultiArrayConstraint.Shape
-P:CoreML.MLMultiArrayConstraint.ShapeConstraint
P:CoreML.MLMultiArrayDataPointer.Arg1
P:CoreML.MLMultiArrayDataPointer.Arg2
P:CoreML.MLMultiArrayMutableDataPointer.Arg1
@@ -79897,91 +54422,12 @@ P:CoreServices.FSEventStream.DeviceBeingWatched
P:CoreServices.FSEventStream.LatestEventId
P:CoreServices.FSEventStream.PathsBeingWatched
P:CoreServices.FSEventStreamEventsArgs.Events
-P:CoreSpotlight.CSCustomAttributeKey.KeyName
-P:CoreSpotlight.CSCustomAttributeKey.MultiValued
-P:CoreSpotlight.CSCustomAttributeKey.Searchable
-P:CoreSpotlight.CSCustomAttributeKey.SearchableByDefault
-P:CoreSpotlight.CSCustomAttributeKey.Unique
-P:CoreSpotlight.CSMailboxKey.Archive
-P:CoreSpotlight.CSMailboxKey.Drafts
-P:CoreSpotlight.CSMailboxKey.Inbox
-P:CoreSpotlight.CSMailboxKey.Junk
-P:CoreSpotlight.CSMailboxKey.Sent
-P:CoreSpotlight.CSMailboxKey.Trash
-P:CoreSpotlight.CSPerson.ContactIdentifier
-P:CoreSpotlight.CSPerson.DisplayName
-P:CoreSpotlight.CSPerson.HandleIdentifier
-P:CoreSpotlight.CSPerson.Handles
-P:CoreSpotlight.CSSearchableIndex.DefaultSearchableIndex
P:CoreSpotlight.CSSearchableIndex.IndexDelegate
-P:CoreSpotlight.CSSearchableIndex.IsIndexingAvailable
P:CoreSpotlight.CSSearchableIndexBundleDataResult.Arg1
-P:CoreSpotlight.CSSearchableItem.ActionType
-P:CoreSpotlight.CSSearchableItem.ActivityIdentifier
-P:CoreSpotlight.CSSearchableItem.AttributeSet
-P:CoreSpotlight.CSSearchableItem.ContinuationActionType
-P:CoreSpotlight.CSSearchableItem.DomainIdentifier
-P:CoreSpotlight.CSSearchableItem.ExpirationDate
P:CoreSpotlight.CSSearchableItem.IsUpdate
-P:CoreSpotlight.CSSearchableItem.QueryString
-P:CoreSpotlight.CSSearchableItem.UniqueIdentifier
-P:CoreSpotlight.CSSearchableItemAttributeSet.AccountHandles
-P:CoreSpotlight.CSSearchableItemAttributeSet.AccountIdentifier
-P:CoreSpotlight.CSSearchableItemAttributeSet.AcquisitionMake
-P:CoreSpotlight.CSSearchableItemAttributeSet.AcquisitionModel
P:CoreSpotlight.CSSearchableItemAttributeSet.ActionIdentifier
P:CoreSpotlight.CSSearchableItemAttributeSet.ActionIdentifiers
-P:CoreSpotlight.CSSearchableItemAttributeSet.AddedDate
-P:CoreSpotlight.CSSearchableItemAttributeSet.AdditionalRecipients
-P:CoreSpotlight.CSSearchableItemAttributeSet.Album
-P:CoreSpotlight.CSSearchableItemAttributeSet.AllDay
-P:CoreSpotlight.CSSearchableItemAttributeSet.AlternateNames
-P:CoreSpotlight.CSSearchableItemAttributeSet.Altitude
-P:CoreSpotlight.CSSearchableItemAttributeSet.Aperture
-P:CoreSpotlight.CSSearchableItemAttributeSet.Artist
-P:CoreSpotlight.CSSearchableItemAttributeSet.Audiences
-P:CoreSpotlight.CSSearchableItemAttributeSet.AudioBitRate
-P:CoreSpotlight.CSSearchableItemAttributeSet.AudioChannelCount
-P:CoreSpotlight.CSSearchableItemAttributeSet.AudioEncodingApplication
-P:CoreSpotlight.CSSearchableItemAttributeSet.AudioSampleRate
-P:CoreSpotlight.CSSearchableItemAttributeSet.AudioTrackNumber
-P:CoreSpotlight.CSSearchableItemAttributeSet.AuthorAddresses
-P:CoreSpotlight.CSSearchableItemAttributeSet.AuthorEmailAddresses
-P:CoreSpotlight.CSSearchableItemAttributeSet.AuthorNames
-P:CoreSpotlight.CSSearchableItemAttributeSet.Authors
-P:CoreSpotlight.CSSearchableItemAttributeSet.BitsPerSample
-P:CoreSpotlight.CSSearchableItemAttributeSet.CameraOwner
-P:CoreSpotlight.CSSearchableItemAttributeSet.City
-P:CoreSpotlight.CSSearchableItemAttributeSet.Codecs
-P:CoreSpotlight.CSSearchableItemAttributeSet.ColorSpace
-P:CoreSpotlight.CSSearchableItemAttributeSet.Comment
-P:CoreSpotlight.CSSearchableItemAttributeSet.CompletionDate
-P:CoreSpotlight.CSSearchableItemAttributeSet.Composer
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContactKeywords
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContainerDisplayName
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContainerIdentifier
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContainerOrder
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContainerTitle
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContentCreationDate
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContentDescription
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContentModificationDate
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContentRating
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContentSources
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContentType
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContentTypeTree
-P:CoreSpotlight.CSSearchableItemAttributeSet.ContentUrl
-P:CoreSpotlight.CSSearchableItemAttributeSet.Contributors
-P:CoreSpotlight.CSSearchableItemAttributeSet.Copyright
-P:CoreSpotlight.CSSearchableItemAttributeSet.Country
-P:CoreSpotlight.CSSearchableItemAttributeSet.Coverage
-P:CoreSpotlight.CSSearchableItemAttributeSet.Creator
P:CoreSpotlight.CSSearchableItemAttributeSet.DarkThumbnailUrl
-P:CoreSpotlight.CSSearchableItemAttributeSet.DeliveryType
-P:CoreSpotlight.CSSearchableItemAttributeSet.Director
-P:CoreSpotlight.CSSearchableItemAttributeSet.DisplayName
-P:CoreSpotlight.CSSearchableItemAttributeSet.DomainIdentifier
-P:CoreSpotlight.CSSearchableItemAttributeSet.DownloadedDate
-P:CoreSpotlight.CSSearchableItemAttributeSet.DueDate
P:CoreSpotlight.CSSearchableItemAttributeSet.Duration
P:CoreSpotlight.CSSearchableItemAttributeSet.Editors
P:CoreSpotlight.CSSearchableItemAttributeSet.EmailAddresses
@@ -80027,9 +54473,6 @@ P:CoreSpotlight.CSSearchableItemAttributeSet.Information
P:CoreSpotlight.CSSearchableItemAttributeSet.InstantMessageAddresses
P:CoreSpotlight.CSSearchableItemAttributeSet.Instructions
P:CoreSpotlight.CSSearchableItemAttributeSet.IsoSpeed
-P:CoreSpotlight.CSSearchableItemAttributeSet.IsUserCreated
-P:CoreSpotlight.CSSearchableItemAttributeSet.IsUserCurated
-P:CoreSpotlight.CSSearchableItemAttributeSet.IsUserOwned
P:CoreSpotlight.CSSearchableItemAttributeSet.Item(CoreSpotlight.CSCustomAttributeKey)
P:CoreSpotlight.CSSearchableItemAttributeSet.KeySignature
P:CoreSpotlight.CSSearchableItemAttributeSet.Keywords
@@ -80114,11 +54557,6 @@ P:CoreSpotlight.CSSearchableItemAttributeSet.Version
P:CoreSpotlight.CSSearchableItemAttributeSet.VideoBitRate
P:CoreSpotlight.CSSearchableItemAttributeSet.WeakRelatedUniqueIdentifier
P:CoreSpotlight.CSSearchableItemAttributeSet.WhiteBalance
-P:CoreSpotlight.CSSearchQuery.Cancelled
-P:CoreSpotlight.CSSearchQuery.CompletionHandler
-P:CoreSpotlight.CSSearchQuery.FoundItemCount
-P:CoreSpotlight.CSSearchQuery.FoundItemsHandler
-P:CoreSpotlight.CSSearchQuery.ProtectionClasses
P:CoreSpotlight.CSSearchQueryContext.FetchAttributes
P:CoreSpotlight.CSSearchQueryContext.FilterQueries
P:CoreSpotlight.CSSearchQueryContext.KeyboardLanguage
@@ -80136,19 +54574,6 @@ P:CoreSpotlight.CSUserQueryContext.MaxRankedResultCount
P:CoreSpotlight.CSUserQueryContext.MaxResultCount
P:CoreSpotlight.CSUserQueryContext.MaxSuggestionCount
P:CoreSpotlight.CSUserQueryContext.UserQueryContext
-P:CoreTelephony.CTCall.CallID
-P:CoreTelephony.CTCall.CallState
-P:CoreTelephony.CTCall.StateConnected
-P:CoreTelephony.CTCall.StateDialing
-P:CoreTelephony.CTCall.StateDisconnected
-P:CoreTelephony.CTCall.StateIncoming
-P:CoreTelephony.CTCallCenter.CallEventHandler
-P:CoreTelephony.CTCallCenter.CurrentCalls
-P:CoreTelephony.CTCarrier.AllowsVoip
-P:CoreTelephony.CTCarrier.CarrierName
-P:CoreTelephony.CTCarrier.IsoCountryCode
-P:CoreTelephony.CTCarrier.MobileCountryCode
-P:CoreTelephony.CTCarrier.MobileNetworkCode
P:CoreTelephony.CTCellularData.RestrictedState
P:CoreTelephony.CTCellularData.RestrictionDidUpdateNotifier
P:CoreTelephony.CTCellularPlanProvisioning.SupportsCellularPlan
@@ -80189,29 +54614,7 @@ P:CoreTelephony.CTTelephonyNetworkInfo.ServiceSubscriberCellularProviders
P:CoreTelephony.CTTelephonyNetworkInfo.ServiceSubscriberCellularProvidersDidUpdateNotifier
P:CoreTelephony.CTTelephonyNetworkInfo.SubscriberCellularProvider
P:CoreTelephony.CTTelephonyNetworkInfo.WeakDelegate
-P:CoreText.CTFont.AscentMetric
-P:CoreText.CTFont.BoundingBox
-P:CoreText.CTFont.CapHeightMetric
-P:CoreText.CTFont.CharacterSet
-P:CoreText.CTFont.DescentMetric
-P:CoreText.CTFont.DisplayName
-P:CoreText.CTFont.FamilyName
-P:CoreText.CTFont.FullName
-P:CoreText.CTFont.GlyphCount
-P:CoreText.CTFont.LeadingMetric
-P:CoreText.CTFont.Matrix
-P:CoreText.CTFont.PostScriptName
-P:CoreText.CTFont.Size
-P:CoreText.CTFont.SlantAngle
-P:CoreText.CTFont.StringEncoding
-P:CoreText.CTFont.SymbolicTraits
-P:CoreText.CTFont.UnderlinePosition
-P:CoreText.CTFont.UnderlineThickness
-P:CoreText.CTFont.UnitsPerEmMetric
-P:CoreText.CTFont.XHeightMetric
P:CoreText.CTFontCollectionOptionKey.RemoveDuplicates
-P:CoreText.CTFontCollectionOptions.Dictionary
-P:CoreText.CTFontCollectionOptions.RemoveDuplicates
P:CoreText.CTFontDescriptorAttributeKey.BaselineAdjust
P:CoreText.CTFontDescriptorAttributeKey.CascadeList
P:CoreText.CTFontDescriptorAttributeKey.CharacterSet
@@ -80235,30 +54638,7 @@ P:CoreText.CTFontDescriptorAttributeKey.StyleName
P:CoreText.CTFontDescriptorAttributeKey.Traits
P:CoreText.CTFontDescriptorAttributeKey.Url
P:CoreText.CTFontDescriptorAttributeKey.Variation
-P:CoreText.CTFontDescriptorAttributes.BaselineAdjust
-P:CoreText.CTFontDescriptorAttributes.CascadeList
-P:CoreText.CTFontDescriptorAttributes.CharacterSet
-P:CoreText.CTFontDescriptorAttributes.Dictionary
-P:CoreText.CTFontDescriptorAttributes.DisplayName
-P:CoreText.CTFontDescriptorAttributes.Enabled
-P:CoreText.CTFontDescriptorAttributes.FamilyName
-P:CoreText.CTFontDescriptorAttributes.Features
-P:CoreText.CTFontDescriptorAttributes.FeatureSettings
-P:CoreText.CTFontDescriptorAttributes.FixedAdvance
-P:CoreText.CTFontDescriptorAttributes.FontFormat
-P:CoreText.CTFontDescriptorAttributes.FontOrientation
-P:CoreText.CTFontDescriptorAttributes.Languages
-P:CoreText.CTFontDescriptorAttributes.MacintoshEncodings
-P:CoreText.CTFontDescriptorAttributes.Matrix
-P:CoreText.CTFontDescriptorAttributes.Name
-P:CoreText.CTFontDescriptorAttributes.Priority
-P:CoreText.CTFontDescriptorAttributes.RegistrationScope
P:CoreText.CTFontDescriptorAttributes.RegistrationUserInfo
-P:CoreText.CTFontDescriptorAttributes.Size
-P:CoreText.CTFontDescriptorAttributes.StyleName
-P:CoreText.CTFontDescriptorAttributes.Traits
-P:CoreText.CTFontDescriptorAttributes.Url
-P:CoreText.CTFontDescriptorAttributes.Variation
P:CoreText.CTFontDescriptorAttributes.WeakEnabled
P:CoreText.CTFontDescriptorMatchingProgress.CurrentAssetSize
P:CoreText.CTFontDescriptorMatchingProgress.Descriptors
@@ -80268,67 +54648,8 @@ P:CoreText.CTFontDescriptorMatchingProgress.Result
P:CoreText.CTFontDescriptorMatchingProgress.SourceDescriptor
P:CoreText.CTFontDescriptorMatchingProgress.TotalAssetSize
P:CoreText.CTFontDescriptorMatchingProgress.TotalDownloadedSize
-P:CoreText.CTFontFeatureAllTypographicFeatures.Feature
-P:CoreText.CTFontFeatureAlternateKana.Feature
-P:CoreText.CTFontFeatureAnnotation.Feature
-P:CoreText.CTFontFeatureCaseSensitiveLayout.Feature
-P:CoreText.CTFontFeatureCharacterAlternatives.Feature
-P:CoreText.CTFontFeatureCharacterShape.Feature
-P:CoreText.CTFontFeatureCJKRomanSpacing.Feature
-P:CoreText.CTFontFeatureCJKSymbolAlternatives.Feature
-P:CoreText.CTFontFeatureCJKVerticalRomanPlacement.Feature
-P:CoreText.CTFontFeatureContextualAlternates.Feature
-P:CoreText.CTFontFeatureCursiveConnection.Feature
-P:CoreText.CTFontFeatureDesignComplexity.Feature
-P:CoreText.CTFontFeatureDiacritics.Feature
-P:CoreText.CTFontFeatureFractions.Feature
-P:CoreText.CTFontFeatureIdeographicAlternatives.Feature
-P:CoreText.CTFontFeatureIdeographicSpacing.Feature
-P:CoreText.CTFontFeatureItalicCJKRoman.Feature
-P:CoreText.CTFontFeatureKanaSpacing.Feature
-P:CoreText.CTFontFeatureKey.Exclusive
-P:CoreText.CTFontFeatureKey.Identifier
-P:CoreText.CTFontFeatureKey.Name
-P:CoreText.CTFontFeatureKey.Selectors
-P:CoreText.CTFontFeatureLetterCase.Feature
-P:CoreText.CTFontFeatureLigatures.Feature
-P:CoreText.CTFontFeatureLinguisticRearrangementConnection.Feature
-P:CoreText.CTFontFeatureLowerCase.Feature
-P:CoreText.CTFontFeatureMathematicalExtras.Feature
-P:CoreText.CTFontFeatureNumberCase.Feature
-P:CoreText.CTFontFeatureNumberSpacing.Feature
-P:CoreText.CTFontFeatureOrnamentSets.Feature
-P:CoreText.CTFontFeatureOverlappingCharacters.Feature
-P:CoreText.CTFontFeatureRubyKana.Feature
-P:CoreText.CTFontFeatures.Dictionary
-P:CoreText.CTFontFeatures.Exclusive
-P:CoreText.CTFontFeatures.FeatureGroup
-P:CoreText.CTFontFeatures.Name
-P:CoreText.CTFontFeatures.Selectors
-P:CoreText.CTFontFeatureSelectorKey.Default
-P:CoreText.CTFontFeatureSelectorKey.Identifier
-P:CoreText.CTFontFeatureSelectorKey.Name
P:CoreText.CTFontFeatureSelectorKey.SampleText
-P:CoreText.CTFontFeatureSelectorKey.Setting
P:CoreText.CTFontFeatureSelectorKey.TooltipText
-P:CoreText.CTFontFeatureSelectors.Default
-P:CoreText.CTFontFeatureSelectors.Dictionary
-P:CoreText.CTFontFeatureSelectors.FeatureWeak
-P:CoreText.CTFontFeatureSelectors.Name
-P:CoreText.CTFontFeatureSelectors.Setting
-P:CoreText.CTFontFeatureSettings.Dictionary
-P:CoreText.CTFontFeatureSettings.FeatureGroup
-P:CoreText.CTFontFeatureSettings.FeatureWeak
-P:CoreText.CTFontFeatureSmartSwash.Feature
-P:CoreText.CTFontFeatureStyleOptions.Feature
-P:CoreText.CTFontFeatureStylisticAlternatives.Feature
-P:CoreText.CTFontFeatureTextSpacing.Feature
-P:CoreText.CTFontFeatureTransliteration.Feature
-P:CoreText.CTFontFeatureTypographicExtras.Feature
-P:CoreText.CTFontFeatureUnicodeDecomposition.Feature
-P:CoreText.CTFontFeatureUpperCase.Feature
-P:CoreText.CTFontFeatureVerticalPosition.Feature
-P:CoreText.CTFontFeatureVerticalSubstitutionConnection.Feature
P:CoreText.CTFontManagerErrorKeys.FontAssetNameKey
P:CoreText.CTFontManagerErrorKeys.FontDescriptorsKey
P:CoreText.CTFontManagerErrorKeys.FontUrlsKey
@@ -80336,21 +54657,6 @@ P:CoreText.CTFontTraitKey.Slant
P:CoreText.CTFontTraitKey.Symbolic
P:CoreText.CTFontTraitKey.Weight
P:CoreText.CTFontTraitKey.Width
-P:CoreText.CTFontTraits.Dictionary
-P:CoreText.CTFontTraits.Slant
-P:CoreText.CTFontTraits.StylisticClass
-P:CoreText.CTFontTraits.Symbolic
-P:CoreText.CTFontTraits.SymbolicTraits
-P:CoreText.CTFontTraits.Weight
-P:CoreText.CTFontTraits.Width
-P:CoreText.CTFontVariation.Dictionary
-P:CoreText.CTFontVariationAxes.DefaultValue
-P:CoreText.CTFontVariationAxes.Dictionary
-P:CoreText.CTFontVariationAxes.Hidden
-P:CoreText.CTFontVariationAxes.Identifier
-P:CoreText.CTFontVariationAxes.MaximumValue
-P:CoreText.CTFontVariationAxes.MinimumValue
-P:CoreText.CTFontVariationAxes.Name
P:CoreText.CTFontVariationAxisKey.DefaultValue
P:CoreText.CTFontVariationAxisKey.Hidden
P:CoreText.CTFontVariationAxisKey.Identifier
@@ -80362,50 +54668,6 @@ P:CoreText.CTFrameAttributeKey.PathClippingPath
P:CoreText.CTFrameAttributeKey.PathFillRule
P:CoreText.CTFrameAttributeKey.PathWidth
P:CoreText.CTFrameAttributeKey.Progression
-P:CoreText.CTFrameAttributes.Dictionary
-P:CoreText.CTFrameAttributes.Progression
-P:CoreText.CTGlyphInfo.CharacterCollection
-P:CoreText.CTGlyphInfo.CharacterIdentifier
-P:CoreText.CTGlyphInfo.GlyphName
-P:CoreText.CTLine.GlyphCount
-P:CoreText.CTLine.StringRange
-P:CoreText.CTLine.TrailingWhitespaceWidth
-P:CoreText.CTParagraphStyle.Alignment
-P:CoreText.CTParagraphStyle.BaseWritingDirection
-P:CoreText.CTParagraphStyle.DefaultTabInterval
-P:CoreText.CTParagraphStyle.FirstLineHeadIndent
-P:CoreText.CTParagraphStyle.HeadIndent
-P:CoreText.CTParagraphStyle.LineBreakMode
-P:CoreText.CTParagraphStyle.LineHeightMultiple
-P:CoreText.CTParagraphStyle.LineSpacing
-P:CoreText.CTParagraphStyle.MaximumLineHeight
-P:CoreText.CTParagraphStyle.MinimumLineHeight
-P:CoreText.CTParagraphStyle.ParagraphSpacing
-P:CoreText.CTParagraphStyle.ParagraphSpacingBefore
-P:CoreText.CTParagraphStyle.TailIndent
-P:CoreText.CTParagraphStyleSettings.Alignment
-P:CoreText.CTParagraphStyleSettings.BaseWritingDirection
-P:CoreText.CTParagraphStyleSettings.DefaultTabInterval
-P:CoreText.CTParagraphStyleSettings.FirstLineHeadIndent
-P:CoreText.CTParagraphStyleSettings.HeadIndent
-P:CoreText.CTParagraphStyleSettings.LineBoundsOptions
-P:CoreText.CTParagraphStyleSettings.LineBreakMode
-P:CoreText.CTParagraphStyleSettings.LineHeightMultiple
-P:CoreText.CTParagraphStyleSettings.LineSpacing
-P:CoreText.CTParagraphStyleSettings.LineSpacingAdjustment
-P:CoreText.CTParagraphStyleSettings.MaximumLineHeight
-P:CoreText.CTParagraphStyleSettings.MaximumLineSpacing
-P:CoreText.CTParagraphStyleSettings.MinimumLineHeight
-P:CoreText.CTParagraphStyleSettings.MinimumLineSpacing
-P:CoreText.CTParagraphStyleSettings.ParagraphSpacing
-P:CoreText.CTParagraphStyleSettings.ParagraphSpacingBefore
-P:CoreText.CTParagraphStyleSettings.TabStops
-P:CoreText.CTParagraphStyleSettings.TailIndent
-P:CoreText.CTRun.GlyphCount
-P:CoreText.CTRun.Status
-P:CoreText.CTRun.StringRange
-P:CoreText.CTRun.TextMatrix
-P:CoreText.CTRunDelegate.Operations
P:CoreText.CTRunDelegateOperations.Handle
P:CoreText.CTStringAttributeKey.AdaptiveImageProvider
P:CoreText.CTStringAttributeKey.BackgroundColor
@@ -80433,46 +54695,11 @@ P:CoreText.CTStringAttributeKey.UnderlineStyle
P:CoreText.CTStringAttributeKey.VerticalForms
P:CoreText.CTStringAttributeKey.WritingDirection
P:CoreText.CTStringAttributes.AdaptiveImageProvider
-P:CoreText.CTStringAttributes.BackgroundColor
-P:CoreText.CTStringAttributes.BaselineClass
-P:CoreText.CTStringAttributes.BaselineOffset
-P:CoreText.CTStringAttributes.CharacterShape
-P:CoreText.CTStringAttributes.Dictionary
-P:CoreText.CTStringAttributes.Font
-P:CoreText.CTStringAttributes.ForegroundColor
-P:CoreText.CTStringAttributes.ForegroundColorFromContext
-P:CoreText.CTStringAttributes.GlyphInfo
-P:CoreText.CTStringAttributes.HorizontalInVerticalForms
-P:CoreText.CTStringAttributes.KerningAdjustment
-P:CoreText.CTStringAttributes.LigatureFormation
-P:CoreText.CTStringAttributes.ParagraphStyle
-P:CoreText.CTStringAttributes.RunDelegate
-P:CoreText.CTStringAttributes.StrokeColor
-P:CoreText.CTStringAttributes.StrokeWidth
-P:CoreText.CTStringAttributes.Superscript
P:CoreText.CTStringAttributes.TrackingAdjustment
-P:CoreText.CTStringAttributes.UnderlineColor
-P:CoreText.CTStringAttributes.UnderlineStyle
-P:CoreText.CTStringAttributes.UnderlineStyleModifiers
-P:CoreText.CTStringAttributes.UnderlineStyleValue
-P:CoreText.CTStringAttributes.VerticalForms
-P:CoreText.CTTextTab.Location
-P:CoreText.CTTextTab.TextAlignment
P:CoreText.CTTextTabOptionKey.ColumnTerminators
-P:CoreText.CTTextTabOptions.ColumnTerminators
-P:CoreText.CTTextTabOptions.Dictionary
P:CoreText.CTTypesetterOptionKey.AllowUnboundedLayout
P:CoreText.CTTypesetterOptionKey.DisableBidiProcessing
P:CoreText.CTTypesetterOptionKey.ForceEmbeddingLevel
-P:CoreText.CTTypesetterOptions.AllowUnboundedLayout
-P:CoreText.CTTypesetterOptions.Dictionary
-P:CoreText.CTTypesetterOptions.DisableBidiProcessing
-P:CoreText.CTTypesetterOptions.ForceEmbeddingLevel
-P:CoreVideo.CVBuffer.MovieTimeKey
-P:CoreVideo.CVBuffer.NonPropagatedAttachmentsKey
-P:CoreVideo.CVBuffer.PropagatedAttachmentsKey
-P:CoreVideo.CVBuffer.TimeScaleKey
-P:CoreVideo.CVBuffer.TimeValueKey
P:CoreVideo.CVDisplayLink.ActualOutputVideoRefreshPeriod
P:CoreVideo.CVDisplayLink.IsRunning
P:CoreVideo.CVDisplayLink.NominalOutputVideoRefreshPeriod
@@ -80526,19 +54753,14 @@ P:CoreVideo.CVImageBuffer.IsFlipped
P:CoreVideo.CVImageBuffer.LogTransferFunctionAppleLogKey
P:CoreVideo.CVImageBuffer.LogTransferFunctionKey
P:CoreVideo.CVImageBuffer.MasteringDisplayColorVolumeKey
-P:CoreVideo.CVImageBuffer.MovieTimeKey
-P:CoreVideo.CVImageBuffer.NonPropagatedAttachmentsKey
P:CoreVideo.CVImageBuffer.PixelAspectRatioHorizontalSpacingKey
P:CoreVideo.CVImageBuffer.PixelAspectRatioKey
P:CoreVideo.CVImageBuffer.PixelAspectRatioVerticalSpacingKey
P:CoreVideo.CVImageBuffer.PostDecodeProcessingFrameMetadataKey
P:CoreVideo.CVImageBuffer.PostDecodeProcessingSequenceMetadataKey
P:CoreVideo.CVImageBuffer.PreferredCleanApertureKey
-P:CoreVideo.CVImageBuffer.PropagatedAttachmentsKey
P:CoreVideo.CVImageBuffer.RegionOfInterestKey
P:CoreVideo.CVImageBuffer.SceneIlluminationKey
-P:CoreVideo.CVImageBuffer.TimeScaleKey
-P:CoreVideo.CVImageBuffer.TimeValueKey
P:CoreVideo.CVImageBuffer.TransferFunction_ITU_R_2020
P:CoreVideo.CVImageBuffer.TransferFunction_ITU_R_2100_HLG
P:CoreVideo.CVImageBuffer.TransferFunction_ITU_R_709_2
@@ -80556,35 +54778,10 @@ P:CoreVideo.CVImageBuffer.YCbCrMatrix_P3_D65
P:CoreVideo.CVImageBuffer.YCbCrMatrix_SMPTE_240M_1995
P:CoreVideo.CVImageBuffer.YCbCrMatrixKey
P:CoreVideo.CVMetalBufferCacheAttributes.MaximumBufferAge
-P:CoreVideo.CVMetalTexture.IsFlipped
-P:CoreVideo.CVMetalTexture.Texture
-P:CoreVideo.CVMetalTextureAttributes.Usage
P:CoreVideo.CVMetalTextureCache.StorageMode
-P:CoreVideo.CVPixelBuffer.BaseAddress
-P:CoreVideo.CVPixelBuffer.BytesPerRow
-P:CoreVideo.CVPixelBuffer.BytesPerRowAlignmentKey
-P:CoreVideo.CVPixelBuffer.CGBitmapContextCompatibilityKey
-P:CoreVideo.CVPixelBuffer.CGImageCompatibilityKey
-P:CoreVideo.CVPixelBuffer.DataSize
-P:CoreVideo.CVPixelBuffer.ExtendedPixelsBottomKey
-P:CoreVideo.CVPixelBuffer.ExtendedPixelsLeftKey
-P:CoreVideo.CVPixelBuffer.ExtendedPixelsRightKey
-P:CoreVideo.CVPixelBuffer.ExtendedPixelsTopKey
-P:CoreVideo.CVPixelBuffer.Height
-P:CoreVideo.CVPixelBuffer.HeightKey
-P:CoreVideo.CVPixelBuffer.IOSurfacePropertiesKey
-P:CoreVideo.CVPixelBuffer.IsPlanar
-P:CoreVideo.CVPixelBuffer.MemoryAllocatorKey
P:CoreVideo.CVPixelBuffer.MetadataExtension
-P:CoreVideo.CVPixelBuffer.MetalCompatibilityKey
-P:CoreVideo.CVPixelBuffer.OpenGLCompatibilityKey
P:CoreVideo.CVPixelBuffer.OpenGLESCompatibilityKey
P:CoreVideo.CVPixelBuffer.OpenGLESTextureCacheCompatibilityKey
-P:CoreVideo.CVPixelBuffer.OpenGLTextureCacheCompatibilityKey
-P:CoreVideo.CVPixelBuffer.PixelFormatType
-P:CoreVideo.CVPixelBuffer.PixelFormatTypeKey
-P:CoreVideo.CVPixelBuffer.PlaneAlignmentKey
-P:CoreVideo.CVPixelBuffer.PlaneCount
P:CoreVideo.CVPixelBuffer.ProResRawKey_BlackLevel
P:CoreVideo.CVPixelBuffer.ProResRawKey_ColorMatrix
P:CoreVideo.CVPixelBuffer.ProResRawKey_GainFactor
@@ -80595,33 +54792,9 @@ P:CoreVideo.CVPixelBuffer.ProResRawKey_WhiteBalanceCct
P:CoreVideo.CVPixelBuffer.ProResRawKey_WhiteBalanceRedFactor
P:CoreVideo.CVPixelBuffer.ProResRawKey_WhiteLevel
P:CoreVideo.CVPixelBuffer.VersatileBayerKey_BayerPattern
-P:CoreVideo.CVPixelBuffer.Width
-P:CoreVideo.CVPixelBuffer.WidthKey
P:CoreVideo.CVPixelBufferAttributes.AllocateWithIOSurface
-P:CoreVideo.CVPixelBufferAttributes.BytesPerRowAlignment
-P:CoreVideo.CVPixelBufferAttributes.CGBitmapContextCompatibility
-P:CoreVideo.CVPixelBufferAttributes.CGImageCompatibility
-P:CoreVideo.CVPixelBufferAttributes.ExtendedPixelsBottom
-P:CoreVideo.CVPixelBufferAttributes.ExtendedPixelsLeft
-P:CoreVideo.CVPixelBufferAttributes.ExtendedPixelsRight
-P:CoreVideo.CVPixelBufferAttributes.ExtendedPixelsTop
-P:CoreVideo.CVPixelBufferAttributes.Height
-P:CoreVideo.CVPixelBufferAttributes.MemoryAllocator
P:CoreVideo.CVPixelBufferAttributes.MetalCompatibility
-P:CoreVideo.CVPixelBufferAttributes.OpenGLCompatibility
P:CoreVideo.CVPixelBufferAttributes.OpenGLESCompatibility
-P:CoreVideo.CVPixelBufferAttributes.PixelFormatType
-P:CoreVideo.CVPixelBufferAttributes.PlaneAlignment
-P:CoreVideo.CVPixelBufferAttributes.Width
-P:CoreVideo.CVPixelBufferPool.Attributes
-P:CoreVideo.CVPixelBufferPool.MaximumBufferAgeKey
-P:CoreVideo.CVPixelBufferPool.MinimumBufferCountKey
-P:CoreVideo.CVPixelBufferPool.PixelBufferAttributes
-P:CoreVideo.CVPixelBufferPool.Settings
-P:CoreVideo.CVPixelBufferPool.TypeID
-P:CoreVideo.CVPixelBufferPoolAllocationSettings.Threshold
-P:CoreVideo.CVPixelBufferPoolSettings.MaximumBufferAgeInSeconds
-P:CoreVideo.CVPixelBufferPoolSettings.MinimumBufferCount
P:CoreVideo.CVPixelFormatComponentRange.FullRange
P:CoreVideo.CVPixelFormatComponentRange.VideoRange
P:CoreVideo.CVPixelFormatComponentRange.WideRange
@@ -80746,96 +54919,11 @@ P:CoreWlan.CWWiFiClient.InterfaceNames
P:CoreWlan.CWWiFiClient.Interfaces
P:CoreWlan.CWWiFiClient.MainInterface
P:CoreWlan.CWWiFiClient.SharedWiFiClient
-P:CryptoTokenKit.TKSmartCard.AllowedProtocols
-P:CryptoTokenKit.TKSmartCard.Cla
-P:CryptoTokenKit.TKSmartCard.Context
-P:CryptoTokenKit.TKSmartCard.CurrentProtocol
-P:CryptoTokenKit.TKSmartCard.Sensitive
-P:CryptoTokenKit.TKSmartCard.Slot
-P:CryptoTokenKit.TKSmartCard.UseCommandChaining
-P:CryptoTokenKit.TKSmartCard.UseExtendedLength
-P:CryptoTokenKit.TKSmartCard.Valid
-P:CryptoTokenKit.TKSmartCardAtr.Bytes
-P:CryptoTokenKit.TKSmartCardAtr.HistoricalBytes
-P:CryptoTokenKit.TKSmartCardAtr.HistoricalRecords
-P:CryptoTokenKit.TKSmartCardAtr.Protocols
-P:CryptoTokenKit.TKSmartCardAtrInterfaceGroup.Protocol
-P:CryptoTokenKit.TKSmartCardAtrInterfaceGroup.TA
-P:CryptoTokenKit.TKSmartCardAtrInterfaceGroup.TB
-P:CryptoTokenKit.TKSmartCardAtrInterfaceGroup.TC
-P:CryptoTokenKit.TKSmartCardPinFormat.Charset
-P:CryptoTokenKit.TKSmartCardPinFormat.Encoding
-P:CryptoTokenKit.TKSmartCardPinFormat.MaxPinLength
-P:CryptoTokenKit.TKSmartCardPinFormat.MinPinLength
-P:CryptoTokenKit.TKSmartCardPinFormat.PinBitOffset
-P:CryptoTokenKit.TKSmartCardPinFormat.PinBlockByteLength
-P:CryptoTokenKit.TKSmartCardPinFormat.PinJustification
-P:CryptoTokenKit.TKSmartCardPinFormat.PinLengthBitOffset
-P:CryptoTokenKit.TKSmartCardPinFormat.PinLengthBitSize
-P:CryptoTokenKit.TKSmartCardSlot.Atr
-P:CryptoTokenKit.TKSmartCardSlot.MaxInputLength
-P:CryptoTokenKit.TKSmartCardSlot.MaxOutputLength
-P:CryptoTokenKit.TKSmartCardSlot.Name
-P:CryptoTokenKit.TKSmartCardSlot.State
-P:CryptoTokenKit.TKSmartCardSlotManager.DefaultManager
-P:CryptoTokenKit.TKSmartCardSlotManager.SlotNames
-P:CryptoTokenKit.TKSmartCardToken.Aid
-P:CryptoTokenKit.TKSmartCardTokenSession.SmartCard
P:CryptoTokenKit.TKSmartCardUserInteraction.Delegate
-P:CryptoTokenKit.TKSmartCardUserInteraction.InitialTimeout
-P:CryptoTokenKit.TKSmartCardUserInteraction.InteractionTimeout
-P:CryptoTokenKit.TKSmartCardUserInteraction.WeakDelegate
-P:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation.Locale
-P:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation.PinCompletion
-P:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation.PinMessageIndices
-P:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation.ResultData
-P:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation.ResultSW
-P:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinChange.PinConfirmation
-P:CryptoTokenKit.TKTlvRecord.Data
-P:CryptoTokenKit.TKTlvRecord.Tag
-P:CryptoTokenKit.TKTlvRecord.Value
-P:CryptoTokenKit.TKToken.Configuration
P:CryptoTokenKit.TKToken.Delegate
-P:CryptoTokenKit.TKToken.KeychainContents
-P:CryptoTokenKit.TKToken.TokenDriver
-P:CryptoTokenKit.TKToken.WeakDelegate
-P:CryptoTokenKit.TKTokenConfiguration.ConfigurationData
-P:CryptoTokenKit.TKTokenConfiguration.InstanceId
-P:CryptoTokenKit.TKTokenConfiguration.KeychainItems
P:CryptoTokenKit.TKTokenDriver.Delegate
-P:CryptoTokenKit.TKTokenDriver.WeakDelegate
-P:CryptoTokenKit.TKTokenDriverConfiguration.ClassId
-P:CryptoTokenKit.TKTokenDriverConfiguration.DriverConfigurations
-P:CryptoTokenKit.TKTokenDriverConfiguration.TokenConfigurations
-P:CryptoTokenKit.TKTokenKeychainCertificate.Data
-P:CryptoTokenKit.TKTokenKeychainContents.Items
-P:CryptoTokenKit.TKTokenKeychainItem.Constraints
-P:CryptoTokenKit.TKTokenKeychainItem.Label
-P:CryptoTokenKit.TKTokenKeychainItem.ObjectId
-P:CryptoTokenKit.TKTokenKeychainKey.ApplicationTag
-P:CryptoTokenKit.TKTokenKeychainKey.CanDecrypt
-P:CryptoTokenKit.TKTokenKeychainKey.CanPerformKeyExchange
-P:CryptoTokenKit.TKTokenKeychainKey.CanSign
-P:CryptoTokenKit.TKTokenKeychainKey.KeySizeInBits
-P:CryptoTokenKit.TKTokenKeychainKey.KeyType
-P:CryptoTokenKit.TKTokenKeychainKey.PublicKeyData
-P:CryptoTokenKit.TKTokenKeychainKey.PublicKeyHash
P:CryptoTokenKit.TKTokenKeychainKey.SuitableForLogin
-P:CryptoTokenKit.TKTokenKeyExchangeParameters.RequestedSize
-P:CryptoTokenKit.TKTokenKeyExchangeParameters.SharedInfo
-P:CryptoTokenKit.TKTokenPasswordAuthOperation.Password
P:CryptoTokenKit.TKTokenSession.Delegate
-P:CryptoTokenKit.TKTokenSession.Token
-P:CryptoTokenKit.TKTokenSession.WeakDelegate
-P:CryptoTokenKit.TKTokenSmartCardPinAuthOperation.ApduTemplate
-P:CryptoTokenKit.TKTokenSmartCardPinAuthOperation.Pin
-P:CryptoTokenKit.TKTokenSmartCardPinAuthOperation.PinByteOffset
-P:CryptoTokenKit.TKTokenSmartCardPinAuthOperation.PinFormat
-P:CryptoTokenKit.TKTokenSmartCardPinAuthOperation.SmartCard
-P:CryptoTokenKit.TKTokenWatcher.TokenIds
-P:CryptoTokenKit.TKTokenWatcherTokenInfo.DriverName
-P:CryptoTokenKit.TKTokenWatcherTokenInfo.SlotName
-P:CryptoTokenKit.TKTokenWatcherTokenInfo.TokenId
P:Darwin.KernelQueue.Handle
P:Darwin.Message.Facility
P:Darwin.Message.GID
@@ -80849,132 +54937,18 @@ 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.BluetoothIdentifier
-P:DeviceDiscoveryExtension.DDDevice.Category
-P:DeviceDiscoveryExtension.DDDevice.DeviceSupports
-P:DeviceDiscoveryExtension.DDDevice.DisplayImageName
-P:DeviceDiscoveryExtension.DDDevice.DisplayName
-P:DeviceDiscoveryExtension.DDDevice.Identifier
-P:DeviceDiscoveryExtension.DDDevice.MediaContentSubtitle
-P:DeviceDiscoveryExtension.DDDevice.MediaContentTitle
-P:DeviceDiscoveryExtension.DDDevice.MediaPlaybackState
P:DeviceDiscoveryExtension.DDDevice.NetworkEndpoint
-P:DeviceDiscoveryExtension.DDDevice.Protocol
-P:DeviceDiscoveryExtension.DDDevice.ProtocolType
-P:DeviceDiscoveryExtension.DDDevice.Ssid
-P:DeviceDiscoveryExtension.DDDevice.State
-P:DeviceDiscoveryExtension.DDDevice.SupportsGrouping
-P:DeviceDiscoveryExtension.DDDevice.TxtRecordData
-P:DeviceDiscoveryExtension.DDDevice.Url
-P:DeviceDiscoveryExtension.DDDeviceEvent.Device
-P:DeviceDiscoveryExtension.DDDeviceEvent.EventType
P:DeviceDiscoveryExtension.DDDeviceProtocolStrings.Dial
P:DeviceDiscoveryExtension.DDDeviceProtocolStrings.Invalid
-P:EventKit.EKAlarm.AbsoluteDate
-P:EventKit.EKAlarm.EmailAddress
-P:EventKit.EKAlarm.Proximity
-P:EventKit.EKAlarm.RelativeOffset
-P:EventKit.EKAlarm.SoundName
-P:EventKit.EKAlarm.StructuredLocation
-P:EventKit.EKAlarm.Type
-P:EventKit.EKAlarm.Url
-P:EventKit.EKCalendar.AllowedEntityTypes
-P:EventKit.EKCalendar.AllowsContentModifications
-P:EventKit.EKCalendar.CalendarIdentifier
-P:EventKit.EKCalendar.CGColor
-P:EventKit.EKCalendar.Color
P:EventKit.EKCalendar.Immutable
-P:EventKit.EKCalendar.Source
P:EventKit.EKCalendar.Subscribed
-P:EventKit.EKCalendar.SupportedEventAvailabilities
-P:EventKit.EKCalendar.Title
-P:EventKit.EKCalendar.Type
-P:EventKit.EKCalendarItem.Alarms
-P:EventKit.EKCalendarItem.Attendees
-P:EventKit.EKCalendarItem.Calendar
-P:EventKit.EKCalendarItem.CalendarItemExternalIdentifier
-P:EventKit.EKCalendarItem.CalendarItemIdentifier
-P:EventKit.EKCalendarItem.CreationDate
-P:EventKit.EKCalendarItem.HasAlarms
-P:EventKit.EKCalendarItem.HasAttendees
-P:EventKit.EKCalendarItem.HasNotes
-P:EventKit.EKCalendarItem.HasRecurrenceRules
-P:EventKit.EKCalendarItem.LastModifiedDate
-P:EventKit.EKCalendarItem.Location
-P:EventKit.EKCalendarItem.Notes
-P:EventKit.EKCalendarItem.RecurrenceRules
-P:EventKit.EKCalendarItem.TimeZone
-P:EventKit.EKCalendarItem.Title
-P:EventKit.EKCalendarItem.Url
-P:EventKit.EKCalendarItem.UUID
P:EventKit.EKEvent.AllDay
-P:EventKit.EKEvent.Availability
-P:EventKit.EKEvent.BirthdayContactIdentifier
-P:EventKit.EKEvent.BirthdayPersonID
-P:EventKit.EKEvent.BirthdayPersonUniqueID
-P:EventKit.EKEvent.EndDate
-P:EventKit.EKEvent.EventIdentifier
-P:EventKit.EKEvent.IsDetached
-P:EventKit.EKEvent.OccurrenceDate
-P:EventKit.EKEvent.Organizer
-P:EventKit.EKEvent.StartDate
-P:EventKit.EKEvent.Status
-P:EventKit.EKEvent.StructuredLocation
-P:EventKit.EKEventStore.Calendars
P:EventKit.EKEventStore.ChangedNotification
-P:EventKit.EKEventStore.DefaultCalendarForNewEvents
-P:EventKit.EKEventStore.DefaultCalendarForNewReminders
-P:EventKit.EKEventStore.DelegateSources
-P:EventKit.EKEventStore.EventStoreIdentifier
-P:EventKit.EKEventStore.Sources
-P:EventKit.EKObject.HasChanges
P:EventKit.EKObject.IsNew
-P:EventKit.EKParticipant.ContactPredicate
P:EventKit.EKParticipant.IsCurrentUser
-P:EventKit.EKParticipant.Name
-P:EventKit.EKParticipant.ParticipantRole
-P:EventKit.EKParticipant.ParticipantStatus
-P:EventKit.EKParticipant.ParticipantType
-P:EventKit.EKParticipant.Url
-P:EventKit.EKRecurrenceDayOfWeek.DayOfTheWeek
-P:EventKit.EKRecurrenceDayOfWeek.WeekNumber
-P:EventKit.EKRecurrenceEnd.EndDate
-P:EventKit.EKRecurrenceEnd.OccurrenceCount
-P:EventKit.EKRecurrenceRule.CalendarIdentifier
-P:EventKit.EKRecurrenceRule.DaysOfTheMonth
-P:EventKit.EKRecurrenceRule.DaysOfTheWeek
-P:EventKit.EKRecurrenceRule.DaysOfTheYear
-P:EventKit.EKRecurrenceRule.FirstDayOfTheWeek
-P:EventKit.EKRecurrenceRule.Frequency
-P:EventKit.EKRecurrenceRule.Interval
-P:EventKit.EKRecurrenceRule.MonthsOfTheYear
-P:EventKit.EKRecurrenceRule.RecurrenceEnd
-P:EventKit.EKRecurrenceRule.SetPositions
-P:EventKit.EKRecurrenceRule.WeeksOfTheYear
P:EventKit.EKReminder.Completed
-P:EventKit.EKReminder.CompletionDate
-P:EventKit.EKReminder.DueDateComponents
-P:EventKit.EKReminder.Priority
-P:EventKit.EKReminder.StartDateComponents
-P:EventKit.EKSource.Calendars
-P:EventKit.EKSource.IsDelegate
-P:EventKit.EKSource.SourceIdentifier
-P:EventKit.EKSource.SourceType
-P:EventKit.EKSource.Title
-P:EventKit.EKStructuredLocation.GeoLocation
-P:EventKit.EKStructuredLocation.Radius
-P:EventKit.EKStructuredLocation.Title
-P:EventKit.EKVirtualConferenceDescriptor.ConferenceDetails
-P:EventKit.EKVirtualConferenceDescriptor.Title
-P:EventKit.EKVirtualConferenceDescriptor.UrlDescriptors
-P:EventKit.EKVirtualConferenceRoomTypeDescriptor.Identifier
-P:EventKit.EKVirtualConferenceRoomTypeDescriptor.Title
-P:EventKit.EKVirtualConferenceUrlDescriptor.Title
-P:EventKit.EKVirtualConferenceUrlDescriptor.Url
P:EventKitUI.EKCalendarChooser.Delegate
P:EventKitUI.EKCalendarChooser.SelectedCalendars
P:EventKitUI.EKCalendarChooser.SelectionStyle
@@ -80996,23 +54970,10 @@ 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
-P:ExternalAccessory.EAAccessory.DockType
-P:ExternalAccessory.EAAccessory.FirmwareRevision
-P:ExternalAccessory.EAAccessory.HardwareRevision
-P:ExternalAccessory.EAAccessory.Manufacturer
-P:ExternalAccessory.EAAccessory.ModelNumber
P:ExternalAccessory.EAAccessory.Name
-P:ExternalAccessory.EAAccessory.ProtocolStrings
-P:ExternalAccessory.EAAccessory.SerialNumber
P:ExternalAccessory.EAAccessory.WeakDelegate
P:ExternalAccessory.EAAccessoryEventArgs.Accessory
P:ExternalAccessory.EAAccessoryEventArgs.Selected
-P:ExternalAccessory.EAAccessoryManager.ConnectedAccessories
P:ExternalAccessory.EAAccessoryManager.DidConnectNotification
P:ExternalAccessory.EAAccessoryManager.DidDisconnectNotification
P:ExternalAccessory.EAAccessoryManager.SharedAccessoryManager
@@ -81135,9 +55096,6 @@ P:FinderSync.FIFinderSyncController.TargetedURL
P:FinderSync.IFIFinderSyncProtocol.ToolbarItemImage
P:FinderSync.IFIFinderSyncProtocol.ToolbarItemName
P:FinderSync.IFIFinderSyncProtocol.ToolbarItemToolTip
-P:Foundation.AdviceAttribute.Message
-P:Foundation.ConnectAttribute.Name
-P:Foundation.DictionaryContainer.Dictionary
P:Foundation.EncodingDetectionOptions.EncodingDetectionAllowLossy
P:Foundation.EncodingDetectionOptions.EncodingDetectionDisallowedEncodings
P:Foundation.EncodingDetectionOptions.EncodingDetectionFromWindows
@@ -81145,11 +55103,6 @@ P:Foundation.EncodingDetectionOptions.EncodingDetectionLikelyLanguage
P:Foundation.EncodingDetectionOptions.EncodingDetectionLossySubstitution
P:Foundation.EncodingDetectionOptions.EncodingDetectionSuggestedEncodings
P:Foundation.EncodingDetectionOptions.EncodingDetectionUseOnlySuggestedEncodings
-P:Foundation.ExportAttribute.ArgumentSemantic
-P:Foundation.ExportAttribute.IsVariadic
-P:Foundation.ExportAttribute.Selector
-P:Foundation.FieldAttribute.LibraryName
-P:Foundation.FieldAttribute.SymbolName
P:Foundation.INSDiscardableContent.IsContentDiscarded
P:Foundation.INSFilePresenter.PresentedItemObservedUbiquityAttributes
P:Foundation.INSFilePresenter.PresentedItemOperationQueue
@@ -81162,55 +55115,20 @@ P:Foundation.INSObjectProtocol.RetainCount
P:Foundation.INSProgressReporting.Progress
P:Foundation.LoadInPlaceResult.FileUrl
P:Foundation.LoadInPlaceResult.IsInPlace
-P:Foundation.ModelAttribute.Name
P:Foundation.NotImplementedAttribute.Message
-P:Foundation.NSAffineTransform.TransformStruct
-P:Foundation.NSAppleEventDescriptor.BooleanValue
-P:Foundation.NSAppleEventDescriptor.CurrentProcessDescriptor
-P:Foundation.NSAppleEventDescriptor.Data
-P:Foundation.NSAppleEventDescriptor.DateValue
-P:Foundation.NSAppleEventDescriptor.DoubleValue
-P:Foundation.NSAppleEventDescriptor.EventClass
-P:Foundation.NSAppleEventDescriptor.EventID
-P:Foundation.NSAppleEventDescriptor.FileURLValue
-P:Foundation.NSAppleEventDescriptor.Int32Value
-P:Foundation.NSAppleEventDescriptor.IsRecordDescriptor
-P:Foundation.NSAppleEventDescriptor.ListDescriptor
-P:Foundation.NSAppleEventDescriptor.NullDescriptor
-P:Foundation.NSAppleEventDescriptor.NumberOfItems
-P:Foundation.NSAppleEventDescriptor.RecordDescriptor
-P:Foundation.NSAppleEventDescriptor.StringValue
-P:Foundation.NSAppleEventDescriptor.TypeCodeValue
-P:Foundation.NSAppleEventManager.CurrentAppleEvent
-P:Foundation.NSAppleEventManager.CurrentReplyAppleEvent
-P:Foundation.NSAppleEventManager.SharedAppleEventManager
P:Foundation.NSAppleEventManager.WillProcessFirstEventNotification
P:Foundation.NSAppleScript.Compiled
P:Foundation.NSAppleScript.RichTextSource
-P:Foundation.NSAppleScript.Source
P:Foundation.NSArchiveReplaceEventArgs.NewObject
P:Foundation.NSArchiveReplaceEventArgs.OldObject
-P:Foundation.NSArray.Count
P:Foundation.NSArray`1.Item(System.IntPtr)
-P:Foundation.NSAttributedString.AttributedStringByInflectingString
P:Foundation.NSAttributedString.CocoaVersionDocumentAttribute
P:Foundation.NSAttributedString.ContainsAttachments
-P:Foundation.NSAttributedString.Length
-P:Foundation.NSAttributedString.LowLevelValue
-P:Foundation.NSAttributedString.ReadableTypeIdentifiers
-P:Foundation.NSAttributedString.Size
P:Foundation.NSAttributedString.SourceTextScalingDocumentAttribute
-P:Foundation.NSAttributedString.TextLayoutSectionOrientation
-P:Foundation.NSAttributedString.TextLayoutSectionRange
-P:Foundation.NSAttributedString.TextLayoutSectionsAttribute
P:Foundation.NSAttributedString.TextScalingDocumentAttribute
P:Foundation.NSAttributedString.UnderlineByWordMaskAttributeName
-P:Foundation.NSAttributedString.Value
-P:Foundation.NSAttributedString.WritableTypeIdentifiers
-P:Foundation.NSAttributedString.WritableTypeIdentifiersForItemProvider
P:Foundation.NSAttributedStringDocumentAttributes.Appearance
P:Foundation.NSAttributedStringDocumentAttributes.Author
-P:Foundation.NSAttributedStringDocumentAttributes.BackgroundColor
P:Foundation.NSAttributedStringDocumentAttributes.BaseUrl
P:Foundation.NSAttributedStringDocumentAttributes.BottomMargin
P:Foundation.NSAttributedStringDocumentAttributes.Category
@@ -81222,21 +55140,15 @@ P:Foundation.NSAttributedStringDocumentAttributes.Converted
P:Foundation.NSAttributedStringDocumentAttributes.Copyright
P:Foundation.NSAttributedStringDocumentAttributes.CreationTime
P:Foundation.NSAttributedStringDocumentAttributes.DefaultAttributes
-P:Foundation.NSAttributedStringDocumentAttributes.DefaultTabInterval
-P:Foundation.NSAttributedStringDocumentAttributes.DocumentType
P:Foundation.NSAttributedStringDocumentAttributes.Editor
P:Foundation.NSAttributedStringDocumentAttributes.ExcludedElements
P:Foundation.NSAttributedStringDocumentAttributes.FileType
-P:Foundation.NSAttributedStringDocumentAttributes.HyphenationFactor
P:Foundation.NSAttributedStringDocumentAttributes.Keywords
P:Foundation.NSAttributedStringDocumentAttributes.LeftMargin
P:Foundation.NSAttributedStringDocumentAttributes.Manager
P:Foundation.NSAttributedStringDocumentAttributes.ModificationTime
-P:Foundation.NSAttributedStringDocumentAttributes.PaperMargin
-P:Foundation.NSAttributedStringDocumentAttributes.PaperSize
P:Foundation.NSAttributedStringDocumentAttributes.PrefixSpaces
P:Foundation.NSAttributedStringDocumentAttributes.ReadAccessUrl
-P:Foundation.NSAttributedStringDocumentAttributes.ReadOnly
P:Foundation.NSAttributedStringDocumentAttributes.RightMargin
P:Foundation.NSAttributedStringDocumentAttributes.SourceTextScaling
P:Foundation.NSAttributedStringDocumentAttributes.Subject
@@ -81246,315 +55158,42 @@ P:Foundation.NSAttributedStringDocumentAttributes.TextSizeMultiplier
P:Foundation.NSAttributedStringDocumentAttributes.Timeout
P:Foundation.NSAttributedStringDocumentAttributes.Title
P:Foundation.NSAttributedStringDocumentAttributes.TopMargin
-P:Foundation.NSAttributedStringDocumentAttributes.ViewMode
-P:Foundation.NSAttributedStringDocumentAttributes.ViewSize
-P:Foundation.NSAttributedStringDocumentAttributes.ViewZoom
-P:Foundation.NSAttributedStringDocumentAttributes.WeakDefaultAttributes
-P:Foundation.NSAttributedStringDocumentAttributes.WeakDocumentType
P:Foundation.NSAttributedStringDocumentAttributes.WebPreferences
P:Foundation.NSAttributedStringDocumentAttributes.WebResourceLoadDelegate
-P:Foundation.NSAttributedStringMarkdownParsingOptions.AllowsExtendedAttributes
-P:Foundation.NSAttributedStringMarkdownParsingOptions.AppliesSourcePositionAttributes
-P:Foundation.NSAttributedStringMarkdownParsingOptions.FailurePolicy
-P:Foundation.NSAttributedStringMarkdownParsingOptions.InterpretedSyntax
-P:Foundation.NSAttributedStringMarkdownParsingOptions.LanguageCode
-P:Foundation.NSAttributedStringMarkdownSourcePosition.EndColumn
-P:Foundation.NSAttributedStringMarkdownSourcePosition.EndLine
-P:Foundation.NSAttributedStringMarkdownSourcePosition.StartColumn
-P:Foundation.NSAttributedStringMarkdownSourcePosition.StartLine
-P:Foundation.NSBackgroundActivityScheduler.Identifier
-P:Foundation.NSBackgroundActivityScheduler.Interval
-P:Foundation.NSBackgroundActivityScheduler.QualityOfService
-P:Foundation.NSBackgroundActivityScheduler.Repeats
-P:Foundation.NSBackgroundActivityScheduler.ShouldDefer
-P:Foundation.NSBackgroundActivityScheduler.Tolerance
P:Foundation.NSBindingSelectionMarker.MultipleValuesSelectionMarker
P:Foundation.NSBindingSelectionMarker.NoSelectionMarker
P:Foundation.NSBindingSelectionMarker.NotApplicableSelectionMarker
-P:Foundation.NSBlockOperation.ExecutionBlocks
P:Foundation.NSBundle.AllBundles
-P:Foundation.NSBundle.AllFrameworks
-P:Foundation.NSBundle.AppStoreReceiptUrl
-P:Foundation.NSBundle.BuiltinPluginsPath
-P:Foundation.NSBundle.BuiltInPluginsUrl
P:Foundation.NSBundle.BundleDidLoadNotification
-P:Foundation.NSBundle.BundleIdentifier
-P:Foundation.NSBundle.BundlePath
-P:Foundation.NSBundle.BundleUrl
-P:Foundation.NSBundle.DevelopmentLocalization
-P:Foundation.NSBundle.ExecutablePath
-P:Foundation.NSBundle.ExecutableUrl
-P:Foundation.NSBundle.InfoDictionary
-P:Foundation.NSBundle.IsLoaded
-P:Foundation.NSBundle.Localizations
-P:Foundation.NSBundle.MainBundle
-P:Foundation.NSBundle.PreferredLocalizations
-P:Foundation.NSBundle.PrincipalClass
-P:Foundation.NSBundle.PrivateFrameworksPath
-P:Foundation.NSBundle.PrivateFrameworksUrl
-P:Foundation.NSBundle.ResourcePath
-P:Foundation.NSBundle.ResourceUrl
-P:Foundation.NSBundle.SharedFrameworksPath
-P:Foundation.NSBundle.SharedFrameworksUrl
-P:Foundation.NSBundle.SharedSupportPath
-P:Foundation.NSBundle.SharedSupportUrl
-P:Foundation.NSBundleResourceRequest.Bundle
-P:Foundation.NSBundleResourceRequest.LoadingPriority
-P:Foundation.NSBundleResourceRequest.LoadingPriorityUrgent
-P:Foundation.NSBundleResourceRequest.LowDiskSpaceNotification
-P:Foundation.NSBundleResourceRequest.Progress
-P:Foundation.NSBundleResourceRequest.Tags
P:Foundation.NSByteCountFormatter.Adaptive
-P:Foundation.NSByteCountFormatter.AllowedUnits
-P:Foundation.NSByteCountFormatter.AllowsNonnumericFormatting
-P:Foundation.NSByteCountFormatter.CountStyle
-P:Foundation.NSByteCountFormatter.FormattingContext
-P:Foundation.NSByteCountFormatter.IncludesActualByteCount
-P:Foundation.NSByteCountFormatter.IncludesCount
-P:Foundation.NSByteCountFormatter.IncludesUnit
-P:Foundation.NSByteCountFormatter.ZeroPadsFractionDigits
-P:Foundation.NSCache.CountLimit
P:Foundation.NSCache.Delegate
-P:Foundation.NSCache.EvictsObjectsWithDiscardedContent
-P:Foundation.NSCache.Name
-P:Foundation.NSCache.TotalCostLimit
-P:Foundation.NSCache.WeakDelegate
-P:Foundation.NSCachedUrlResponse.Data
-P:Foundation.NSCachedUrlResponse.Response
-P:Foundation.NSCachedUrlResponse.StoragePolicy
-P:Foundation.NSCachedUrlResponse.UserInfo
-P:Foundation.NSCalendar.AMSymbol
-P:Foundation.NSCalendar.CurrentCalendar
-P:Foundation.NSCalendar.DayChangedNotification
-P:Foundation.NSCalendar.EraSymbols
-P:Foundation.NSCalendar.FirstWeekDay
-P:Foundation.NSCalendar.Identifier
-P:Foundation.NSCalendar.Locale
-P:Foundation.NSCalendar.LongEraSymbols
-P:Foundation.NSCalendar.MinimumDaysInFirstWeek
-P:Foundation.NSCalendar.MonthSymbols
-P:Foundation.NSCalendar.PMSymbol
-P:Foundation.NSCalendar.QuarterSymbols
-P:Foundation.NSCalendar.ShortMonthSymbols
-P:Foundation.NSCalendar.ShortQuarterSymbols
-P:Foundation.NSCalendar.ShortStandaloneMonthSymbols
-P:Foundation.NSCalendar.ShortStandaloneQuarterSymbols
-P:Foundation.NSCalendar.ShortStandaloneWeekdaySymbols
-P:Foundation.NSCalendar.ShortWeekdaySymbols
-P:Foundation.NSCalendar.StandaloneMonthSymbols
-P:Foundation.NSCalendar.StandaloneQuarterSymbols
-P:Foundation.NSCalendar.StandaloneWeekdaySymbols
-P:Foundation.NSCalendar.TimeZone
-P:Foundation.NSCalendar.VeryShortMonthSymbols
-P:Foundation.NSCalendar.VeryShortStandaloneMonthSymbols
-P:Foundation.NSCalendar.VeryShortStandaloneWeekdaySymbols
-P:Foundation.NSCalendar.VeryShortWeekdaySymbols
-P:Foundation.NSCalendar.WeekdaySymbols
-P:Foundation.NSCalendarDate.CalendarFormat
-P:Foundation.NSCalendarDate.DayOfCommonEra
-P:Foundation.NSCalendarDate.DayOfMonth
-P:Foundation.NSCalendarDate.DayOfWeek
-P:Foundation.NSCalendarDate.DayOfYear
-P:Foundation.NSCalendarDate.HourOfDay
-P:Foundation.NSCalendarDate.MinuteOfHour
-P:Foundation.NSCalendarDate.MonthOfYear
-P:Foundation.NSCalendarDate.SecondOfMinute
-P:Foundation.NSCalendarDate.TimeZone
-P:Foundation.NSCalendarDate.YearOfCommonEra
-P:Foundation.NSCharacterSet.Alphanumerics
-P:Foundation.NSCharacterSet.Capitalized
-P:Foundation.NSCharacterSet.Controls
-P:Foundation.NSCharacterSet.DecimalDigits
-P:Foundation.NSCharacterSet.Decomposables
-P:Foundation.NSCharacterSet.Illegals
-P:Foundation.NSCharacterSet.InvertedSet
-P:Foundation.NSCharacterSet.Letters
-P:Foundation.NSCharacterSet.LowercaseLetters
-P:Foundation.NSCharacterSet.Marks
-P:Foundation.NSCharacterSet.Newlines
-P:Foundation.NSCharacterSet.Punctuation
-P:Foundation.NSCharacterSet.Symbols
-P:Foundation.NSCharacterSet.UppercaseLetters
-P:Foundation.NSCharacterSet.UrlFragmentAllowed
-P:Foundation.NSCharacterSet.UrlHostAllowed
-P:Foundation.NSCharacterSet.UrlPasswordAllowed
-P:Foundation.NSCharacterSet.UrlPathAllowed
-P:Foundation.NSCharacterSet.UrlQueryAllowed
-P:Foundation.NSCharacterSet.UrlUserAllowed
-P:Foundation.NSCharacterSet.WhitespaceAndNewlines
-P:Foundation.NSCharacterSet.Whitespaces
-P:Foundation.NSCoder.AllowedClasses
-P:Foundation.NSCoder.DecodingFailurePolicy
-P:Foundation.NSCoder.Error
-P:Foundation.NSCoder.SystemVersion
-P:Foundation.NSComparisonPredicate.ComparisonPredicateModifier
-P:Foundation.NSComparisonPredicate.CustomSelector
-P:Foundation.NSComparisonPredicate.LeftExpression
-P:Foundation.NSComparisonPredicate.Options
-P:Foundation.NSComparisonPredicate.PredicateOperatorType
-P:Foundation.NSComparisonPredicate.RightExpression
-P:Foundation.NSCompoundPredicate.Subpredicates
-P:Foundation.NSCompoundPredicate.Type
-P:Foundation.NSCondition.Name
-P:Foundation.NSConditionLock.Condition
-P:Foundation.NSConditionLock.Name
-P:Foundation.NSConnection.AllConnections
-P:Foundation.NSConnection.CurrentConversation
P:Foundation.NSConnection.Delegate
-P:Foundation.NSConnection.IndependentConversationQueueing
P:Foundation.NSConnection.IsValid
-P:Foundation.NSConnection.LocalObjects
-P:Foundation.NSConnection.ReceivePort
-P:Foundation.NSConnection.RemoteObjects
-P:Foundation.NSConnection.ReplyTimeout
-P:Foundation.NSConnection.RequestModes
-P:Foundation.NSConnection.RequestTimeout
-P:Foundation.NSConnection.RootObject
-P:Foundation.NSConnection.SendPort
-P:Foundation.NSConnection.Statistics
-P:Foundation.NSConnection.WeakDelegate
-P:Foundation.NSData.Bytes
P:Foundation.NSData.Item(System.IntPtr)
-P:Foundation.NSData.Length
-P:Foundation.NSDataDetector.CheckingTypes
-P:Foundation.NSDate.DistantFuture
-P:Foundation.NSDate.DistantPast
-P:Foundation.NSDate.Now
-P:Foundation.NSDate.SecondsSince1970
-P:Foundation.NSDate.SecondsSinceNow
-P:Foundation.NSDate.SecondsSinceReferenceDate
P:Foundation.NSDate.SrAbsoluteTime
P:Foundation.NSDate.SystemClockDidChangeNotification
-P:Foundation.NSDateComponents.Calendar
-P:Foundation.NSDateComponents.Date
-P:Foundation.NSDateComponents.Day
-P:Foundation.NSDateComponents.DayOfYear
-P:Foundation.NSDateComponents.Era
-P:Foundation.NSDateComponents.Hour
-P:Foundation.NSDateComponents.IsLeapMonth
-P:Foundation.NSDateComponents.IsValidDate
-P:Foundation.NSDateComponents.Minute
-P:Foundation.NSDateComponents.Month
-P:Foundation.NSDateComponents.Nanosecond
-P:Foundation.NSDateComponents.Quarter
-P:Foundation.NSDateComponents.Second
-P:Foundation.NSDateComponents.TimeZone
-P:Foundation.NSDateComponents.Week
-P:Foundation.NSDateComponents.Weekday
-P:Foundation.NSDateComponents.WeekdayOrdinal
-P:Foundation.NSDateComponents.WeekOfMonth
-P:Foundation.NSDateComponents.WeekOfYear
-P:Foundation.NSDateComponents.Year
-P:Foundation.NSDateComponents.YearForWeekOfYear
-P:Foundation.NSDateComponentsFormatter.AllowedUnits
-P:Foundation.NSDateComponentsFormatter.AllowsFractionalUnits
-P:Foundation.NSDateComponentsFormatter.Calendar
-P:Foundation.NSDateComponentsFormatter.CollapsesLargestUnit
-P:Foundation.NSDateComponentsFormatter.FormattingContext
-P:Foundation.NSDateComponentsFormatter.IncludesApproximationPhrase
-P:Foundation.NSDateComponentsFormatter.IncludesTimeRemainingPhrase
-P:Foundation.NSDateComponentsFormatter.MaximumUnitCount
-P:Foundation.NSDateComponentsFormatter.ReferenceDate
-P:Foundation.NSDateComponentsFormatter.UnitsStyle
-P:Foundation.NSDateComponentsFormatter.ZeroFormattingBehavior
-P:Foundation.NSDateFormatter.AMSymbol
-P:Foundation.NSDateFormatter.Behavior
-P:Foundation.NSDateFormatter.Calendar
-P:Foundation.NSDateFormatter.DateFormat
-P:Foundation.NSDateFormatter.DateStyle
-P:Foundation.NSDateFormatter.DefaultBehavior
-P:Foundation.NSDateFormatter.DefaultDate
-P:Foundation.NSDateFormatter.DoesRelativeDateFormatting
-P:Foundation.NSDateFormatter.EraSymbols
-P:Foundation.NSDateFormatter.FormattingContext
-P:Foundation.NSDateFormatter.GeneratesCalendarDates
-P:Foundation.NSDateFormatter.GregorianStartDate
P:Foundation.NSDateFormatter.IsLenient
-P:Foundation.NSDateFormatter.Locale
-P:Foundation.NSDateFormatter.LongEraSymbols
-P:Foundation.NSDateFormatter.MonthSymbols
-P:Foundation.NSDateFormatter.PMSymbol
-P:Foundation.NSDateFormatter.QuarterSymbols
-P:Foundation.NSDateFormatter.ShortMonthSymbols
-P:Foundation.NSDateFormatter.ShortQuarterSymbols
-P:Foundation.NSDateFormatter.ShortStandaloneMonthSymbols
-P:Foundation.NSDateFormatter.ShortStandaloneQuarterSymbols
-P:Foundation.NSDateFormatter.ShortStandaloneWeekdaySymbols
-P:Foundation.NSDateFormatter.ShortWeekdaySymbols
-P:Foundation.NSDateFormatter.StandaloneMonthSymbols
-P:Foundation.NSDateFormatter.StandaloneQuarterSymbols
-P:Foundation.NSDateFormatter.StandaloneWeekdaySymbols
-P:Foundation.NSDateFormatter.TimeStyle
-P:Foundation.NSDateFormatter.TimeZone
-P:Foundation.NSDateFormatter.TwoDigitStartDate
-P:Foundation.NSDateFormatter.VeryShortMonthSymbols
-P:Foundation.NSDateFormatter.VeryShortStandaloneMonthSymbols
-P:Foundation.NSDateFormatter.VeryShortStandaloneWeekdaySymbols
-P:Foundation.NSDateFormatter.VeryShortWeekdaySymbols
-P:Foundation.NSDateFormatter.WeekdaySymbols
-P:Foundation.NSDateInterval.Duration
-P:Foundation.NSDateInterval.EndDate
-P:Foundation.NSDateInterval.StartDate
-P:Foundation.NSDateIntervalFormatter.Calendar
-P:Foundation.NSDateIntervalFormatter.DateStyle
-P:Foundation.NSDateIntervalFormatter.DateTemplate
-P:Foundation.NSDateIntervalFormatter.Locale
-P:Foundation.NSDateIntervalFormatter.TimeStyle
-P:Foundation.NSDateIntervalFormatter.TimeZone
-P:Foundation.NSDecimalNumber.DefaultBehavior
-P:Foundation.NSDecimalNumber.DoubleValue
-P:Foundation.NSDecimalNumber.MaxValue
-P:Foundation.NSDecimalNumber.MinValue
-P:Foundation.NSDecimalNumber.NaN
-P:Foundation.NSDecimalNumber.NSDecimalValue
-P:Foundation.NSDecimalNumber.One
-P:Foundation.NSDecimalNumber.Zero
-P:Foundation.NSDictionary.Count
-P:Foundation.NSDictionary.DescriptionInStringsFileFormat
P:Foundation.NSDictionary.Item(Foundation.NSObject)
P:Foundation.NSDictionary.Item(Foundation.NSString)
P:Foundation.NSDictionary.Item(System.String)
-P:Foundation.NSDictionary.Keys
-P:Foundation.NSDictionary.ObjectEnumerator
-P:Foundation.NSDictionary.Values
P:Foundation.NSDictionary`2.Item(`0)
P:Foundation.NSDictionary`2.Keys
P:Foundation.NSDictionary`2.Values
P:Foundation.NSDimension.BaseUnit
-P:Foundation.NSDimension.Converter
-P:Foundation.NSDirectoryEnumerator.DirectoryAttributes
-P:Foundation.NSDirectoryEnumerator.FileAttributes
-P:Foundation.NSDirectoryEnumerator.IsEnumeratingDirectoryPostOrder
-P:Foundation.NSDirectoryEnumerator.Level
-P:Foundation.NSDistantObjectRequest.Connection
-P:Foundation.NSDistantObjectRequest.Conversation
-P:Foundation.NSDistantObjectRequest.Invocation
-P:Foundation.NSDistributedLock.LockDate
-P:Foundation.NSDistributedNotificationCenter.DefaultCenter
P:Foundation.NSDistributedNotificationCenter.NSLocalNotificationCenterType
-P:Foundation.NSDistributedNotificationCenter.Suspended
P:Foundation.NSEnergyFormatter.ForFoodEnergyUse
-P:Foundation.NSEnergyFormatter.NumberFormatter
-P:Foundation.NSEnergyFormatter.UnitStyle
P:Foundation.NSError.CarPlayErrorDomain
P:Foundation.NSError.CFNetworkErrorDomain
P:Foundation.NSError.CocoaErrorDomain
-P:Foundation.NSError.Code
P:Foundation.NSError.CoreLocationErrorDomain
P:Foundation.NSError.CoreMotionErrorDomain
P:Foundation.NSError.DebugDescriptionErrorKey
-P:Foundation.NSError.Domain
P:Foundation.NSError.FilePathErrorKey
-P:Foundation.NSError.HelpAnchor
P:Foundation.NSError.HelpAnchorErrorKey
-P:Foundation.NSError.LocalizedDescription
P:Foundation.NSError.LocalizedDescriptionKey
P:Foundation.NSError.LocalizedFailureErrorKey
-P:Foundation.NSError.LocalizedFailureReason
P:Foundation.NSError.LocalizedFailureReasonErrorKey
-P:Foundation.NSError.LocalizedRecoveryOptions
P:Foundation.NSError.LocalizedRecoveryOptionsErrorKey
-P:Foundation.NSError.LocalizedRecoverySuggestion
P:Foundation.NSError.LocalizedRecoverySuggestionErrorKey
P:Foundation.NSError.MachErrorDomain
P:Foundation.NSError.MultipleUnderlyingErrorsKey
@@ -81570,50 +55209,22 @@ P:Foundation.NSError.StringEncodingErrorKey
P:Foundation.NSError.UIApplicationCategoryDefaultRetryAvailabilityDateErrorKey
P:Foundation.NSError.UIApplicationCategoryDefaultStatusLastProvidedDateErrorKey
P:Foundation.NSError.UnderlyingErrorKey
-P:Foundation.NSError.UnderlyingErrors
P:Foundation.NSError.UrlErrorKey
-P:Foundation.NSError.UserInfo
P:Foundation.NSErrorEventArgs.Error
P:Foundation.NSErrorException.Code
P:Foundation.NSErrorException.Domain
P:Foundation.NSErrorException.Error
P:Foundation.NSErrorException.Message
P:Foundation.NSErrorException.UserInfo
-P:Foundation.NSException.CallStackReturnAddresses
-P:Foundation.NSException.CallStackSymbols
-P:Foundation.NSException.Name
-P:Foundation.NSException.Reason
-P:Foundation.NSException.UserInfo
P:Foundation.NSExceptionError.Exception
-P:Foundation.NSExpression.Arguments
-P:Foundation.NSExpression.Block
-P:Foundation.NSExpression.Collection
-P:Foundation.NSExpression.ConstantValue
-P:Foundation.NSExpression.ExpressionForEvaluatedObject
-P:Foundation.NSExpression.ExpressionType
-P:Foundation.NSExpression.FalseExpression
-P:Foundation.NSExpression.Function
-P:Foundation.NSExpression.KeyPath
-P:Foundation.NSExpression.LeftExpression
-P:Foundation.NSExpression.Operand
-P:Foundation.NSExpression.Predicate
-P:Foundation.NSExpression.RightExpression
-P:Foundation.NSExpression.TrueExpression
-P:Foundation.NSExpression.Variable
P:Foundation.NSExtensionContext.HostDidBecomeActiveNotification
P:Foundation.NSExtensionContext.HostDidEnterBackgroundNotification
P:Foundation.NSExtensionContext.HostWillEnterForegroundNotification
P:Foundation.NSExtensionContext.HostWillResignActiveNotification
-P:Foundation.NSExtensionContext.InputItems
P:Foundation.NSExtensionContext.ItemsAndErrorsKey
-P:Foundation.NSExtensionItem.Attachments
P:Foundation.NSExtensionItem.AttachmentsKey
-P:Foundation.NSExtensionItem.AttributedContentText
P:Foundation.NSExtensionItem.AttributedContentTextKey
-P:Foundation.NSExtensionItem.AttributedTitle
P:Foundation.NSExtensionItem.AttributedTitleKey
-P:Foundation.NSExtensionItem.UserInfo
-P:Foundation.NSFileAccessIntent.Url
P:Foundation.NSFileAttributes.AppendOnly
P:Foundation.NSFileAttributes.Busy
P:Foundation.NSFileAttributes.CreationDate
@@ -81634,11 +55245,8 @@ P:Foundation.NSFileAttributes.Size
P:Foundation.NSFileAttributes.SystemFileNumber
P:Foundation.NSFileAttributes.SystemNumber
P:Foundation.NSFileAttributes.Type
-P:Foundation.NSFileCoordinator.FilePresenters
-P:Foundation.NSFileCoordinator.PurposeIdentifier
P:Foundation.NSFileHandle.ConnectionAcceptedNotification
P:Foundation.NSFileHandle.DataAvailableNotification
-P:Foundation.NSFileHandle.FileDescriptor
P:Foundation.NSFileHandle.OperationException
P:Foundation.NSFileHandle.ReadCompletionNotification
P:Foundation.NSFileHandle.ReadToEndOfFileCompletionNotification
@@ -81650,7 +55258,6 @@ P:Foundation.NSFileManager.AppendOnly
P:Foundation.NSFileManager.Busy
P:Foundation.NSFileManager.CreationDate
P:Foundation.NSFileManager.CurrentDirectory
-P:Foundation.NSFileManager.DefaultManager
P:Foundation.NSFileManager.Delegate
P:Foundation.NSFileManager.DeviceIdentifier
P:Foundation.NSFileManager.ExtensionHidden
@@ -81684,49 +55291,22 @@ P:Foundation.NSFileManager.TypeSocket
P:Foundation.NSFileManager.TypeSymbolicLink
P:Foundation.NSFileManager.TypeUnknown
P:Foundation.NSFileManager.UbiquityIdentityDidChangeNotification
-P:Foundation.NSFileManager.UbiquityIdentityToken
P:Foundation.NSFileManager.UserName
-P:Foundation.NSFileManager.WeakDelegate
-P:Foundation.NSFilePresenter.PresentedItemObservedUbiquityAttributes
-P:Foundation.NSFilePresenter.PresentedItemOperationQueue
-P:Foundation.NSFilePresenter.PresentedItemUrl
-P:Foundation.NSFilePresenter.PrimaryPresentedItemUrl
-P:Foundation.NSFileProviderService.Name
P:Foundation.NSFileSystemAttributes.FreeNodes
P:Foundation.NSFileSystemAttributes.FreeSize
P:Foundation.NSFileSystemAttributes.Nodes
P:Foundation.NSFileSystemAttributes.Number
P:Foundation.NSFileSystemAttributes.Size
P:Foundation.NSFileVersion.Discardable
-P:Foundation.NSFileVersion.HasLocalContents
-P:Foundation.NSFileVersion.HasThumbnail
P:Foundation.NSFileVersion.IsConflict
-P:Foundation.NSFileVersion.LocalizedName
-P:Foundation.NSFileVersion.LocalizedNameOfSavingComputer
-P:Foundation.NSFileVersion.ModificationDate
-P:Foundation.NSFileVersion.OriginatorNameComponents
-P:Foundation.NSFileVersion.PersistentIdentifier
P:Foundation.NSFileVersion.Resolved
-P:Foundation.NSFileVersion.Url
-P:Foundation.NSFileWrapper.FileAttributes
-P:Foundation.NSFileWrapper.Filename
-P:Foundation.NSFileWrapper.FileWrappers
P:Foundation.NSFileWrapper.Icon
P:Foundation.NSFileWrapper.IsDirectory
P:Foundation.NSFileWrapper.IsRegularFile
P:Foundation.NSFileWrapper.IsSymbolicLink
-P:Foundation.NSFileWrapper.PreferredFilename
-P:Foundation.NSFileWrapper.SymbolicLinkDestinationURL
P:Foundation.NSHost.Address
P:Foundation.NSHost.Addresses
P:Foundation.NSHost.Current
-P:Foundation.NSHost.LocalizedName
-P:Foundation.NSHost.Name
-P:Foundation.NSHost.Names
-P:Foundation.NSHttpCookie.Comment
-P:Foundation.NSHttpCookie.CommentUrl
-P:Foundation.NSHttpCookie.Domain
-P:Foundation.NSHttpCookie.ExpiresDate
P:Foundation.NSHttpCookie.IsHttpOnly
P:Foundation.NSHttpCookie.IsSecure
P:Foundation.NSHttpCookie.IsSessionOnly
@@ -81747,37 +55327,8 @@ P:Foundation.NSHttpCookie.KeySecure
P:Foundation.NSHttpCookie.KeySetByJavaScript
P:Foundation.NSHttpCookie.KeyValue
P:Foundation.NSHttpCookie.KeyVersion
-P:Foundation.NSHttpCookie.Name
-P:Foundation.NSHttpCookie.Path
-P:Foundation.NSHttpCookie.PortList
-P:Foundation.NSHttpCookie.Properties
-P:Foundation.NSHttpCookie.SameSitePolicy
-P:Foundation.NSHttpCookie.Value
-P:Foundation.NSHttpCookie.Version
-P:Foundation.NSHttpCookieStorage.AcceptPolicy
P:Foundation.NSHttpCookieStorage.AcceptPolicyChangedNotification
-P:Foundation.NSHttpCookieStorage.Cookies
P:Foundation.NSHttpCookieStorage.CookiesChangedNotification
-P:Foundation.NSHttpCookieStorage.SharedStorage
-P:Foundation.NSHttpUrlResponse.AllHeaderFields
-P:Foundation.NSHttpUrlResponse.StatusCode
-P:Foundation.NSIndexPath.Item
-P:Foundation.NSIndexPath.Length
-P:Foundation.NSIndexPath.LongRow
-P:Foundation.NSIndexPath.LongSection
-P:Foundation.NSIndexPath.Row
-P:Foundation.NSIndexPath.Section
-P:Foundation.NSIndexSet.Count
-P:Foundation.NSIndexSet.FirstIndex
-P:Foundation.NSIndexSet.LastIndex
-P:Foundation.NSInflectionRule.AutomaticRule
-P:Foundation.NSInflectionRule.CanInflectPreferredLocalization
-P:Foundation.NSInflectionRuleExplicit.Morphology
-P:Foundation.NSInvocation.MethodSignature
-P:Foundation.NSInvocation.Selector
-P:Foundation.NSInvocation.Target
-P:Foundation.NSIso8601DateFormatter.FormatOptions
-P:Foundation.NSIso8601DateFormatter.TimeZone
P:Foundation.NSItemProvider.ContainerFrame
P:Foundation.NSItemProvider.ErrorDomain
P:Foundation.NSItemProvider.PreferredImageSizeKey
@@ -81785,81 +55336,41 @@ P:Foundation.NSItemProvider.PreferredPresentationSize
P:Foundation.NSItemProvider.PreferredPresentationStyle
P:Foundation.NSItemProvider.RegisteredContentTypes
P:Foundation.NSItemProvider.RegisteredContentTypesForOpenInPlace
-P:Foundation.NSItemProvider.RegisteredTypeIdentifiers
P:Foundation.NSItemProvider.SourceFrame
-P:Foundation.NSItemProvider.SuggestedName
P:Foundation.NSItemProvider.TeamData
P:Foundation.NSJavaScriptExtension.FinalizeArgumentKey
P:Foundation.NSJavaScriptExtension.PreprocessingResultsKey
P:Foundation.NSKeyedArchiver.Delegate
-P:Foundation.NSKeyedArchiver.EncodedData
-P:Foundation.NSKeyedArchiver.PropertyListFormat
-P:Foundation.NSKeyedArchiver.RequiresSecureCoding
P:Foundation.NSKeyedArchiver.RootObjectKey
-P:Foundation.NSKeyedArchiver.WeakDelegate
P:Foundation.NSKeyedArchiver.WillEncode
P:Foundation.NSKeyedUnarchiver.CannotDecodeClass
P:Foundation.NSKeyedUnarchiver.DecodedObject
P:Foundation.NSKeyedUnarchiver.Delegate
-P:Foundation.NSKeyedUnarchiver.RequiresSecureCoding
-P:Foundation.NSKeyedUnarchiver.WeakDelegate
P:Foundation.NSLengthFormatter.ForPersonHeightUse
-P:Foundation.NSLengthFormatter.NumberFormatter
-P:Foundation.NSLengthFormatter.UnitStyle
-P:Foundation.NSLinguisticTagger.AnalysisString
-P:Foundation.NSLinguisticTagger.DominantLanguage
-P:Foundation.NSLinguisticTagger.TagSchemes
-P:Foundation.NSListFormatter.ItemFormatter
-P:Foundation.NSListFormatter.Locale
P:Foundation.NSLoadFromHtmlResult.AttributedString
P:Foundation.NSLoadFromHtmlResult.Attributes
P:Foundation.NSLocale.AlternateQuotationBeginDelimiterKey
P:Foundation.NSLocale.AlternateQuotationEndDelimiterKey
-P:Foundation.NSLocale.AutoUpdatingCurrentLocale
-P:Foundation.NSLocale.AvailableLocaleIdentifiers
P:Foundation.NSLocale.Calendar
-P:Foundation.NSLocale.CalendarIdentifier
P:Foundation.NSLocale.CollationIdentifier
P:Foundation.NSLocale.CollatorIdentifier
-P:Foundation.NSLocale.CommonISOCurrencyCodes
P:Foundation.NSLocale.CountryCode
P:Foundation.NSLocale.CurrencyCode
P:Foundation.NSLocale.CurrencySymbol
-P:Foundation.NSLocale.CurrentLocale
P:Foundation.NSLocale.CurrentLocaleDidChangeNotification
P:Foundation.NSLocale.DecimalSeparator
P:Foundation.NSLocale.ExemplarCharacterSet
P:Foundation.NSLocale.GroupingSeparator
P:Foundation.NSLocale.Identifier
-P:Foundation.NSLocale.ISOCountryCodes
-P:Foundation.NSLocale.ISOCurrencyCodes
-P:Foundation.NSLocale.ISOLanguageCodes
P:Foundation.NSLocale.LanguageCode
-P:Foundation.NSLocale.LanguageIdentifier
-P:Foundation.NSLocale.LocaleIdentifier
P:Foundation.NSLocale.MeasurementSystem
-P:Foundation.NSLocale.PreferredLanguages
P:Foundation.NSLocale.QuotationBeginDelimiterKey
P:Foundation.NSLocale.QuotationEndDelimiterKey
-P:Foundation.NSLocale.RegionCode
P:Foundation.NSLocale.ScriptCode
-P:Foundation.NSLocale.SystemLocale
P:Foundation.NSLocale.UsesMetricSystem
P:Foundation.NSLocale.VariantCode
-P:Foundation.NSLocalizedNumberFormatRule.Automatic
-P:Foundation.NSLock.Name
P:Foundation.NSMachPort.Delegate
-P:Foundation.NSMachPort.MachPort
-P:Foundation.NSMachPort.WeakDelegate
P:Foundation.NSMassFormatter.ForPersonMassUse
-P:Foundation.NSMassFormatter.NumberFormatter
-P:Foundation.NSMassFormatter.UnitStyle
-P:Foundation.NSMeasurement`1.DoubleValue
-P:Foundation.NSMeasurement`1.Unit
-P:Foundation.NSMeasurementFormatter.Locale
-P:Foundation.NSMeasurementFormatter.NumberFormatter
-P:Foundation.NSMeasurementFormatter.UnitOptions
-P:Foundation.NSMeasurementFormatter.UnitStyle
P:Foundation.NSMetadataItem.AcquisitionMake
P:Foundation.NSMetadataItem.AcquisitionModel
P:Foundation.NSMetadataItem.Album
@@ -81870,7 +55381,6 @@ P:Foundation.NSMetadataItem.AppleLoopsKeyFilterType
P:Foundation.NSMetadataItem.AppleLoopsLoopMode
P:Foundation.NSMetadataItem.AppleLoopsRoot
P:Foundation.NSMetadataItem.ApplicationCategories
-P:Foundation.NSMetadataItem.Attributes
P:Foundation.NSMetadataItem.Audiences
P:Foundation.NSMetadataItem.AudioBitRate
P:Foundation.NSMetadataItem.AudioChannelCount
@@ -82109,8 +55619,6 @@ P:Foundation.NSMetadataQuery.GpsMeasureModeKey
P:Foundation.NSMetadataQuery.GpsProcessingMethodKey
P:Foundation.NSMetadataQuery.GpsStatusKey
P:Foundation.NSMetadataQuery.GpsTrackKey
-P:Foundation.NSMetadataQuery.GroupedResults
-P:Foundation.NSMetadataQuery.GroupingAttributes
P:Foundation.NSMetadataQuery.HasAlphaChannelKey
P:Foundation.NSMetadataQuery.HeadlineKey
P:Foundation.NSMetadataQuery.IdentifierKey
@@ -82153,9 +55661,7 @@ P:Foundation.NSMetadataQuery.MusicalInstrumentCategoryKey
P:Foundation.NSMetadataQuery.MusicalInstrumentNameKey
P:Foundation.NSMetadataQuery.NamedLocationKey
P:Foundation.NSMetadataQuery.NetworkScope
-P:Foundation.NSMetadataQuery.NotificationBatchingInterval
P:Foundation.NSMetadataQuery.NumberOfPagesKey
-P:Foundation.NSMetadataQuery.OperationQueue
P:Foundation.NSMetadataQuery.OrganizationsKey
P:Foundation.NSMetadataQuery.OrientationKey
P:Foundation.NSMetadataQuery.OriginalFormatKey
@@ -82168,7 +55674,6 @@ P:Foundation.NSMetadataQuery.PhoneNumbersKey
P:Foundation.NSMetadataQuery.PixelCountKey
P:Foundation.NSMetadataQuery.PixelHeightKey
P:Foundation.NSMetadataQuery.PixelWidthKey
-P:Foundation.NSMetadataQuery.Predicate
P:Foundation.NSMetadataQuery.ProducerKey
P:Foundation.NSMetadataQuery.ProfileNameKey
P:Foundation.NSMetadataQuery.ProjectsKey
@@ -82187,13 +55692,8 @@ P:Foundation.NSMetadataQuery.ReplacementValueForAttributevalue
P:Foundation.NSMetadataQuery.ResolutionHeightDpiKey
P:Foundation.NSMetadataQuery.ResolutionWidthDpiKey
P:Foundation.NSMetadataQuery.ResultContentRelevanceAttribute
-P:Foundation.NSMetadataQuery.ResultCount
-P:Foundation.NSMetadataQuery.Results
P:Foundation.NSMetadataQuery.RightsKey
-P:Foundation.NSMetadataQuery.SearchItems
-P:Foundation.NSMetadataQuery.SearchScopes
P:Foundation.NSMetadataQuery.SecurityMethodKey
-P:Foundation.NSMetadataQuery.SortDescriptors
P:Foundation.NSMetadataQuery.SpeedKey
P:Foundation.NSMetadataQuery.StarRatingKey
P:Foundation.NSMetadataQuery.StateOrProvinceKey
@@ -82232,64 +55732,13 @@ P:Foundation.NSMetadataQuery.UbiquitousSharedItemPermissionsReadWrite
P:Foundation.NSMetadataQuery.UbiquitousSharedItemRoleOwner
P:Foundation.NSMetadataQuery.UbiquitousSharedItemRoleParticipant
P:Foundation.NSMetadataQuery.UserHomeScope
-P:Foundation.NSMetadataQuery.ValueListAttributes
-P:Foundation.NSMetadataQuery.ValueLists
P:Foundation.NSMetadataQuery.VersionKey
P:Foundation.NSMetadataQuery.VideoBitRateKey
-P:Foundation.NSMetadataQuery.WeakDelegate
P:Foundation.NSMetadataQuery.WhereFromsKey
P:Foundation.NSMetadataQuery.WhiteBalanceKey
-P:Foundation.NSMetadataQueryAttributeValueTuple.Attribute
-P:Foundation.NSMetadataQueryAttributeValueTuple.Count
-P:Foundation.NSMetadataQueryAttributeValueTuple.Value
-P:Foundation.NSMetadataQueryResultGroup.Attribute
-P:Foundation.NSMetadataQueryResultGroup.ResultCount
-P:Foundation.NSMetadataQueryResultGroup.Results
-P:Foundation.NSMetadataQueryResultGroup.Subgroups
-P:Foundation.NSMetadataQueryResultGroup.Value
-P:Foundation.NSMethodSignature.FrameLength
-P:Foundation.NSMethodSignature.IsOneway
-P:Foundation.NSMethodSignature.MethodReturnLength
-P:Foundation.NSMethodSignature.MethodReturnType
-P:Foundation.NSMethodSignature.NumberOfArguments
-P:Foundation.NSMorphology.Definiteness
-P:Foundation.NSMorphology.Determination
-P:Foundation.NSMorphology.GrammaticalCase
-P:Foundation.NSMorphology.GrammaticalGender
-P:Foundation.NSMorphology.GrammaticalPerson
-P:Foundation.NSMorphology.Number
-P:Foundation.NSMorphology.PartOfSpeech
-P:Foundation.NSMorphology.PronounType
P:Foundation.NSMorphology.Unspecified
-P:Foundation.NSMorphology.UserMorphology
-P:Foundation.NSMorphologyCustomPronoun.ObjectForm
-P:Foundation.NSMorphologyCustomPronoun.PossessiveAdjectiveForm
-P:Foundation.NSMorphologyCustomPronoun.PossessiveForm
-P:Foundation.NSMorphologyCustomPronoun.ReflexiveForm
-P:Foundation.NSMorphologyCustomPronoun.SubjectForm
-P:Foundation.NSMorphologyPronoun.DependentMorphology
-P:Foundation.NSMorphologyPronoun.Morphology
-P:Foundation.NSMorphologyPronoun.Pronoun
P:Foundation.NSMutableArray`1.Item(System.UIntPtr)
-P:Foundation.NSMutableAttributedString.MutableString
-P:Foundation.NSMutableCharacterSet.Alphanumerics
-P:Foundation.NSMutableCharacterSet.Capitalized
-P:Foundation.NSMutableCharacterSet.Controls
-P:Foundation.NSMutableCharacterSet.DecimalDigits
-P:Foundation.NSMutableCharacterSet.Decomposables
-P:Foundation.NSMutableCharacterSet.Illegals
-P:Foundation.NSMutableCharacterSet.Letters
-P:Foundation.NSMutableCharacterSet.LowercaseLetters
-P:Foundation.NSMutableCharacterSet.Marks
-P:Foundation.NSMutableCharacterSet.Newlines
-P:Foundation.NSMutableCharacterSet.Punctuation
-P:Foundation.NSMutableCharacterSet.Symbols
-P:Foundation.NSMutableCharacterSet.UppercaseLetters
-P:Foundation.NSMutableCharacterSet.WhitespaceAndNewlines
-P:Foundation.NSMutableCharacterSet.Whitespaces
P:Foundation.NSMutableData.Item(System.IntPtr)
-P:Foundation.NSMutableData.Length
-P:Foundation.NSMutableData.MutableBytes
P:Foundation.NSMutableDictionary.Item(Foundation.NSObject)
P:Foundation.NSMutableDictionary.Item(Foundation.NSString)
P:Foundation.NSMutableDictionary.Item(System.String)
@@ -82299,129 +55748,23 @@ P:Foundation.NSMutableDictionary`2.Values
P:Foundation.NSMutableOrderedSet.Item(System.IntPtr)
P:Foundation.NSMutableOrderedSet`1.Item(System.IntPtr)
P:Foundation.NSMutableSet`1.AnyObject
-P:Foundation.NSMutableUrlRequest.AllowsCellularAccess
-P:Foundation.NSMutableUrlRequest.AllowsConstrainedNetworkAccess
-P:Foundation.NSMutableUrlRequest.AllowsExpensiveNetworkAccess
-P:Foundation.NSMutableUrlRequest.AllowsPersistentDns
-P:Foundation.NSMutableUrlRequest.AssumesHttp3Capable
-P:Foundation.NSMutableUrlRequest.Attribution
-P:Foundation.NSMutableUrlRequest.Body
-P:Foundation.NSMutableUrlRequest.BodyStream
-P:Foundation.NSMutableUrlRequest.CachePolicy
-P:Foundation.NSMutableUrlRequest.CookiePartitionIdentifier
-P:Foundation.NSMutableUrlRequest.Headers
-P:Foundation.NSMutableUrlRequest.HttpMethod
P:Foundation.NSMutableUrlRequest.Item(System.String)
-P:Foundation.NSMutableUrlRequest.MainDocumentURL
-P:Foundation.NSMutableUrlRequest.NetworkServiceType
-P:Foundation.NSMutableUrlRequest.RequiresDnsSecValidation
-P:Foundation.NSMutableUrlRequest.ShouldHandleCookies
-P:Foundation.NSMutableUrlRequest.TimeoutInterval
-P:Foundation.NSMutableUrlRequest.Url
P:Foundation.NSNetDomainEventArgs.Domain
P:Foundation.NSNetDomainEventArgs.MoreComing
-P:Foundation.NSNetService.Addresses
P:Foundation.NSNetService.Delegate
-P:Foundation.NSNetService.Domain
-P:Foundation.NSNetService.HostName
-P:Foundation.NSNetService.IncludesPeerToPeer
-P:Foundation.NSNetService.Name
-P:Foundation.NSNetService.Port
P:Foundation.NSNetService.TxtRecordData
-P:Foundation.NSNetService.Type
-P:Foundation.NSNetService.WeakDelegate
P:Foundation.NSNetServiceBrowser.Delegate
-P:Foundation.NSNetServiceBrowser.IncludesPeerToPeer
-P:Foundation.NSNetServiceBrowser.WeakDelegate
P:Foundation.NSNetServiceConnectionEventArgs.InputStream
P:Foundation.NSNetServiceConnectionEventArgs.OutputStream
P:Foundation.NSNetServiceDataEventArgs.Data
P:Foundation.NSNetServiceErrorEventArgs.Errors
P:Foundation.NSNetServiceEventArgs.MoreComing
P:Foundation.NSNetServiceEventArgs.Service
-P:Foundation.NSNotification.Name
-P:Foundation.NSNotification.Object
-P:Foundation.NSNotification.UserInfo
-P:Foundation.NSNotificationCenter.DefaultCenter
P:Foundation.NSNotificationEventArgs.Notification
-P:Foundation.NSNotificationQueue.DefaultQueue
P:Foundation.NSNull.Null
-P:Foundation.NSNumber.BoolValue
-P:Foundation.NSNumber.ByteValue
-P:Foundation.NSNumber.DoubleValue
-P:Foundation.NSNumber.FloatValue
-P:Foundation.NSNumber.Int16Value
-P:Foundation.NSNumber.Int32Value
-P:Foundation.NSNumber.Int64Value
-P:Foundation.NSNumber.LongValue
P:Foundation.NSNumber.NFloatValue
-P:Foundation.NSNumber.NIntValue
-P:Foundation.NSNumber.NSDecimalValue
-P:Foundation.NSNumber.NUIntValue
-P:Foundation.NSNumber.SByteValue
-P:Foundation.NSNumber.StringValue
-P:Foundation.NSNumber.UInt16Value
-P:Foundation.NSNumber.UInt32Value
-P:Foundation.NSNumber.UInt64Value
-P:Foundation.NSNumber.UnsignedLongValue
-P:Foundation.NSNumberFormatter.AllowsFloats
-P:Foundation.NSNumberFormatter.AlwaysShowsDecimalSeparator
-P:Foundation.NSNumberFormatter.CurrencyCode
-P:Foundation.NSNumberFormatter.CurrencyDecimalSeparator
-P:Foundation.NSNumberFormatter.CurrencyGroupingSeparator
-P:Foundation.NSNumberFormatter.CurrencySymbol
-P:Foundation.NSNumberFormatter.DecimalSeparator
-P:Foundation.NSNumberFormatter.DefaultFormatterBehavior
-P:Foundation.NSNumberFormatter.ExponentSymbol
-P:Foundation.NSNumberFormatter.FormatterBehavior
-P:Foundation.NSNumberFormatter.FormatWidth
-P:Foundation.NSNumberFormatter.GeneratesDecimalNumbers
-P:Foundation.NSNumberFormatter.GroupingSeparator
-P:Foundation.NSNumberFormatter.GroupingSize
-P:Foundation.NSNumberFormatter.InternationalCurrencySymbol
P:Foundation.NSNumberFormatter.Lenient
-P:Foundation.NSNumberFormatter.Locale
-P:Foundation.NSNumberFormatter.Maximum
-P:Foundation.NSNumberFormatter.MaximumFractionDigits
-P:Foundation.NSNumberFormatter.MaximumIntegerDigits
-P:Foundation.NSNumberFormatter.MaximumSignificantDigits
-P:Foundation.NSNumberFormatter.Minimum
-P:Foundation.NSNumberFormatter.MinimumFractionDigits
-P:Foundation.NSNumberFormatter.MinimumGroupingDigits
-P:Foundation.NSNumberFormatter.MinimumIntegerDigits
-P:Foundation.NSNumberFormatter.MinimumSignificantDigits
-P:Foundation.NSNumberFormatter.MinusSign
-P:Foundation.NSNumberFormatter.Multiplier
-P:Foundation.NSNumberFormatter.NegativeFormat
-P:Foundation.NSNumberFormatter.NegativeInfinitySymbol
-P:Foundation.NSNumberFormatter.NegativePrefix
-P:Foundation.NSNumberFormatter.NegativeSuffix
-P:Foundation.NSNumberFormatter.NilSymbol
-P:Foundation.NSNumberFormatter.NotANumberSymbol
-P:Foundation.NSNumberFormatter.NumberStyle
-P:Foundation.NSNumberFormatter.PaddingCharacter
-P:Foundation.NSNumberFormatter.PaddingPosition
P:Foundation.NSNumberFormatter.PartialStringValidationEnabled
-P:Foundation.NSNumberFormatter.PercentSymbol
-P:Foundation.NSNumberFormatter.PerMillSymbol
-P:Foundation.NSNumberFormatter.PlusSign
-P:Foundation.NSNumberFormatter.PositiveFormat
-P:Foundation.NSNumberFormatter.PositiveInfinitySymbol
-P:Foundation.NSNumberFormatter.PositivePrefix
-P:Foundation.NSNumberFormatter.PositiveSuffix
-P:Foundation.NSNumberFormatter.RoundingIncrement
-P:Foundation.NSNumberFormatter.RoundingMode
-P:Foundation.NSNumberFormatter.SecondaryGroupingSize
-P:Foundation.NSNumberFormatter.TextAttributesForNegativeInfinity
-P:Foundation.NSNumberFormatter.TextAttributesForNegativeValues
-P:Foundation.NSNumberFormatter.TextAttributesForNil
-P:Foundation.NSNumberFormatter.TextAttributesForNotANumber
-P:Foundation.NSNumberFormatter.TextAttributesForPositiveInfinity
-P:Foundation.NSNumberFormatter.TextAttributesForPositiveValues
-P:Foundation.NSNumberFormatter.TextAttributesForZero
-P:Foundation.NSNumberFormatter.UsesGroupingSeparator
-P:Foundation.NSNumberFormatter.UsesSignificantDigits
-P:Foundation.NSNumberFormatter.ZeroSymbol
P:Foundation.NSObject.AccessibilityAttributedUserInputLabels
P:Foundation.NSObject.AccessibilityRespondsToUserInteraction
P:Foundation.NSObject.AccessibilityTextualContext
@@ -82431,8 +55774,6 @@ P:Foundation.NSObject.ChangeKindKey
P:Foundation.NSObject.ChangeNewKey
P:Foundation.NSObject.ChangeNotificationIsPriorKey
P:Foundation.NSObject.ChangeOldKey
-P:Foundation.NSObject.DebugDescription
-P:Foundation.NSObject.Description
P:Foundation.NSObject.ExposedBindings
P:Foundation.NSObject.RetainCount
P:Foundation.NSObjectEventArgs.Obj
@@ -82442,35 +55783,14 @@ P:Foundation.NSObservedChange.IsPrior
P:Foundation.NSObservedChange.NewValue
P:Foundation.NSObservedChange.OldValue
P:Foundation.NSOperation.Asynchronous
-P:Foundation.NSOperation.CompletionBlock
-P:Foundation.NSOperation.Dependencies
P:Foundation.NSOperation.IsCancelled
P:Foundation.NSOperation.IsConcurrent
P:Foundation.NSOperation.IsExecuting
P:Foundation.NSOperation.IsFinished
P:Foundation.NSOperation.IsReady
-P:Foundation.NSOperation.Name
-P:Foundation.NSOperation.QualityOfService
-P:Foundation.NSOperation.QueuePriority
-P:Foundation.NSOperation.ThreadPriority
-P:Foundation.NSOperationQueue.CurrentQueue
-P:Foundation.NSOperationQueue.MainQueue
-P:Foundation.NSOperationQueue.MaxConcurrentOperationCount
-P:Foundation.NSOperationQueue.Name
-P:Foundation.NSOperationQueue.OperationCount
-P:Foundation.NSOperationQueue.Operations
-P:Foundation.NSOperationQueue.Progress
-P:Foundation.NSOperationQueue.QualityOfService
P:Foundation.NSOperationQueue.Suspended
-P:Foundation.NSOperationQueue.UnderlyingQueue
-P:Foundation.NSOrderedSet.Count
P:Foundation.NSOrderedSet.Item(System.IntPtr)
P:Foundation.NSOrderedSet`1.Item(System.IntPtr)
-P:Foundation.NSOrthography.AllLanguages
-P:Foundation.NSOrthography.AllScripts
-P:Foundation.NSOrthography.DominantLanguage
-P:Foundation.NSOrthography.DominantScript
-P:Foundation.NSOrthography.LanguageMap
P:Foundation.NSPersonNameComponent.ComponentKey
P:Foundation.NSPersonNameComponent.Delimiter
P:Foundation.NSPersonNameComponent.FamilyName
@@ -82479,66 +55799,18 @@ P:Foundation.NSPersonNameComponent.MiddleName
P:Foundation.NSPersonNameComponent.Nickname
P:Foundation.NSPersonNameComponent.Prefix
P:Foundation.NSPersonNameComponent.Suffix
-P:Foundation.NSPersonNameComponents.FamilyName
-P:Foundation.NSPersonNameComponents.GivenName
-P:Foundation.NSPersonNameComponents.MiddleName
-P:Foundation.NSPersonNameComponents.NamePrefix
-P:Foundation.NSPersonNameComponents.NameSuffix
-P:Foundation.NSPersonNameComponents.Nickname
-P:Foundation.NSPersonNameComponents.PhoneticRepresentation
-P:Foundation.NSPersonNameComponentsFormatter.Locale
P:Foundation.NSPersonNameComponentsFormatter.Phonetic
-P:Foundation.NSPersonNameComponentsFormatter.Style
-P:Foundation.NSPipe.ReadHandle
-P:Foundation.NSPipe.WriteHandle
P:Foundation.NSPort.Delegate
P:Foundation.NSPort.IsValid
P:Foundation.NSPort.PortDidBecomeInvalidNotification
-P:Foundation.NSPort.WeakDelegate
-P:Foundation.NSPortMessage.Components
-P:Foundation.NSPortMessage.MsgId
-P:Foundation.NSPortMessage.ReceivePort
-P:Foundation.NSPortMessage.SendPort
-P:Foundation.NSPortNameServer.SystemDefault
-P:Foundation.NSPredicate.PredicateFormat
-P:Foundation.NSPresentationIntent.Column
-P:Foundation.NSPresentationIntent.ColumnAlignments
-P:Foundation.NSPresentationIntent.ColumnCount
-P:Foundation.NSPresentationIntent.HeaderLevel
-P:Foundation.NSPresentationIntent.Identity
-P:Foundation.NSPresentationIntent.IndentationLevel
-P:Foundation.NSPresentationIntent.IntentKind
-P:Foundation.NSPresentationIntent.LanguageHint
-P:Foundation.NSPresentationIntent.Ordinal
-P:Foundation.NSPresentationIntent.ParentIntent
-P:Foundation.NSPresentationIntent.Row
-P:Foundation.NSProcessInfo.ActiveProcessorCount
-P:Foundation.NSProcessInfo.Arguments
-P:Foundation.NSProcessInfo.AutomaticTerminationSupportEnabled
-P:Foundation.NSProcessInfo.Environment
-P:Foundation.NSProcessInfo.GloballyUniqueString
-P:Foundation.NSProcessInfo.HostName
P:Foundation.NSProcessInfo.IsiOSApplicationOnMac
P:Foundation.NSProcessInfo.IsMacCatalystApplication
P:Foundation.NSProcessInfo.LowPowerModeEnabled
-P:Foundation.NSProcessInfo.OperatingSystem
-P:Foundation.NSProcessInfo.OperatingSystemName
-P:Foundation.NSProcessInfo.OperatingSystemVersion
-P:Foundation.NSProcessInfo.OperatingSystemVersionString
P:Foundation.NSProcessInfo.PerformanceProfileDidChangeNotification
-P:Foundation.NSProcessInfo.PhysicalMemory
P:Foundation.NSProcessInfo.PowerStateDidChangeNotification
-P:Foundation.NSProcessInfo.ProcessIdentifier
-P:Foundation.NSProcessInfo.ProcessInfo
-P:Foundation.NSProcessInfo.ProcessName
-P:Foundation.NSProcessInfo.ProcessorCount
-P:Foundation.NSProcessInfo.SystemUptime
-P:Foundation.NSProcessInfo.ThermalState
P:Foundation.NSProcessInfo.ThermalStateDidChangeNotification
P:Foundation.NSProgress.Cancellable
P:Foundation.NSProgress.Cancelled
-P:Foundation.NSProgress.CompletedUnitCount
-P:Foundation.NSProgress.CurrentProgress
P:Foundation.NSProgress.EstimatedTimeRemaining
P:Foundation.NSProgress.EstimatedTimeRemainingKey
P:Foundation.NSProgress.FileAnimationImageKey
@@ -82546,7 +55818,6 @@ P:Foundation.NSProgress.FileAnimationImageOriginalRectKey
P:Foundation.NSProgress.FileCompletedCount
P:Foundation.NSProgress.FileCompletedCountKey
P:Foundation.NSProgress.FileIconKey
-P:Foundation.NSProgress.FileOperationKind
P:Foundation.NSProgress.FileOperationKindCopying
P:Foundation.NSProgress.FileOperationKindDecompressingAfterDownloading
P:Foundation.NSProgress.FileOperationKindDownloading
@@ -82556,38 +55827,16 @@ P:Foundation.NSProgress.FileOperationKindReceiving
P:Foundation.NSProgress.FileOperationKindUploading
P:Foundation.NSProgress.FileTotalCount
P:Foundation.NSProgress.FileTotalCountKey
-P:Foundation.NSProgress.FileUrl
P:Foundation.NSProgress.FileURLKey
P:Foundation.NSProgress.Finished
-P:Foundation.NSProgress.FractionCompleted
P:Foundation.NSProgress.Indeterminate
-P:Foundation.NSProgress.Kind
P:Foundation.NSProgress.KindFile
-P:Foundation.NSProgress.LocalizedAdditionalDescription
-P:Foundation.NSProgress.LocalizedDescription
P:Foundation.NSProgress.Old
P:Foundation.NSProgress.Pausable
P:Foundation.NSProgress.Paused
P:Foundation.NSProgress.Throughput
P:Foundation.NSProgress.ThroughputKey
-P:Foundation.NSProgress.TotalUnitCount
-P:Foundation.NSProgress.UserInfo
-P:Foundation.NSPurgeableData.IsContentDiscarded
-P:Foundation.NSRecursiveLock.Name
-P:Foundation.NSRegularExpression.NumberOfCaptureGroups
-P:Foundation.NSRegularExpression.Options
-P:Foundation.NSRegularExpression.Pattern
-P:Foundation.NSRelativeDateTimeFormatter.Calendar
-P:Foundation.NSRelativeDateTimeFormatter.DateTimeStyle
-P:Foundation.NSRelativeDateTimeFormatter.FormattingContext
-P:Foundation.NSRelativeDateTimeFormatter.Locale
-P:Foundation.NSRelativeDateTimeFormatter.UnitsStyle
-P:Foundation.NSRunLoop.Current
-P:Foundation.NSRunLoop.CurrentMode
P:Foundation.NSRunLoop.CurrentRunLoopMode
-P:Foundation.NSRunLoop.Main
-P:Foundation.NSScriptCommand.AppleEvent
-P:Foundation.NSScriptCommand.EvaluatedReceivers
P:Foundation.NSScriptCommandArgumentDescription.AppleEventCode
P:Foundation.NSScriptCommandArgumentDescription.IsOptional
P:Foundation.NSScriptCommandArgumentDescription.Name
@@ -82599,12 +55848,7 @@ P:Foundation.NSScriptCommandArgumentDescriptionKeys.TypeKey
P:Foundation.NSScriptCommandDescription.AppleEventClassCode
P:Foundation.NSScriptCommandDescription.AppleEventCode
P:Foundation.NSScriptCommandDescription.AppleEventCodeForReturnType
-P:Foundation.NSScriptCommandDescription.ArgumentNames
-P:Foundation.NSScriptCommandDescription.ClassName
P:Foundation.NSScriptCommandDescription.Dictionary
-P:Foundation.NSScriptCommandDescription.Name
-P:Foundation.NSScriptCommandDescription.ReturnType
-P:Foundation.NSScriptCommandDescription.SuitName
P:Foundation.NSScriptCommandDescriptionDictionary.AppleEventClassCode
P:Foundation.NSScriptCommandDescriptionDictionary.AppleEventCode
P:Foundation.NSScriptCommandDescriptionDictionary.Arguments
@@ -82617,19 +55861,11 @@ P:Foundation.NSScriptCommandDescriptionDictionaryKeys.ArgumentsKey
P:Foundation.NSScriptCommandDescriptionDictionaryKeys.CommandClassKey
P:Foundation.NSScriptCommandDescriptionDictionaryKeys.ResultAppleEventCodeKey
P:Foundation.NSScriptCommandDescriptionDictionaryKeys.TypeKey
-P:Foundation.NSSecureUnarchiveFromDataTransformer.AllowedTopLevelClasses
P:Foundation.NSSecureUnarchiveFromDataTransformer.AllowedTopLevelTypes
-P:Foundation.NSSet.AnyObject
-P:Foundation.NSSet.Count
P:Foundation.NSSet`1.AnyObject
-P:Foundation.NSSortDescriptor.Ascending
-P:Foundation.NSSortDescriptor.Key
-P:Foundation.NSSortDescriptor.ReversedSortDescriptor
-P:Foundation.NSSortDescriptor.Selector
P:Foundation.NSStream.DataWrittenToMemoryStream
P:Foundation.NSStream.DataWrittenToMemoryStreamKey
P:Foundation.NSStream.Delegate
-P:Foundation.NSStream.Error
P:Foundation.NSStream.FileCurrentOffset
P:Foundation.NSStream.FileCurrentOffsetKey
P:Foundation.NSStream.Item(Foundation.NSString)
@@ -82658,49 +55894,16 @@ P:Foundation.NSStream.SocksProxyUserKey
P:Foundation.NSStream.SocksProxyVersion4
P:Foundation.NSStream.SocksProxyVersion5
P:Foundation.NSStream.SocksProxyVersionKey
-P:Foundation.NSStream.Status
-P:Foundation.NSStream.WeakDelegate
P:Foundation.NSStreamEventArgs.StreamEvent
P:Foundation.NSString.IsAbsolutePath
P:Foundation.NSString.Item(System.IntPtr)
-P:Foundation.NSString.LastPathComponent
-P:Foundation.NSString.Length
-P:Foundation.NSString.LocalizedCapitalizedString
-P:Foundation.NSString.LocalizedLowercaseString
-P:Foundation.NSString.LocalizedUppercaseString
-P:Foundation.NSString.PathComponents
-P:Foundation.NSString.PathExtension
-P:Foundation.NSString.ReadableTypeIdentifiers
-P:Foundation.NSString.WritableTypeIdentifiers
-P:Foundation.NSString.WritableTypeIdentifiersForItemProvider
P:Foundation.NSStringDrawingContext.ActualScaleFactor
P:Foundation.NSStringDrawingContext.ActualTrackingAdjustment
P:Foundation.NSStringDrawingContext.MinimumScaleFactor
P:Foundation.NSStringDrawingContext.MinimumTrackingAdjustment
P:Foundation.NSStringDrawingContext.TotalBounds
-P:Foundation.NSTask.Arguments
-P:Foundation.NSTask.CurrentDirectoryPath
-P:Foundation.NSTask.CurrentDirectoryUrl
P:Foundation.NSTask.DidTerminateNotification
-P:Foundation.NSTask.Environment
-P:Foundation.NSTask.ExecutableUrl
P:Foundation.NSTask.IsRunning
-P:Foundation.NSTask.LaunchPath
-P:Foundation.NSTask.LaunchRequirementData
-P:Foundation.NSTask.ProcessIdentifier
-P:Foundation.NSTask.QualityOfService
-P:Foundation.NSTask.StandardError
-P:Foundation.NSTask.StandardInput
-P:Foundation.NSTask.StandardOutput
-P:Foundation.NSTask.TerminationHandler
-P:Foundation.NSTask.TerminationReason
-P:Foundation.NSTask.TerminationStatus
-P:Foundation.NSTermOfAddress.CurrentUser
-P:Foundation.NSTermOfAddress.Feminine
-P:Foundation.NSTermOfAddress.LanguageIdentifier
-P:Foundation.NSTermOfAddress.Masculine
-P:Foundation.NSTermOfAddress.Neutral
-P:Foundation.NSTermOfAddress.Pronouns
P:Foundation.NSTextChecking.AirlineKey
P:Foundation.NSTextChecking.CityKey
P:Foundation.NSTextChecking.CountryKey
@@ -82722,339 +55925,58 @@ P:Foundation.NSTextCheckingAddressComponents.State
P:Foundation.NSTextCheckingAddressComponents.Street
P:Foundation.NSTextCheckingAddressComponents.ZIP
P:Foundation.NSTextCheckingResult.AddressComponents
-P:Foundation.NSTextCheckingResult.AlternativeStrings
P:Foundation.NSTextCheckingResult.Components
-P:Foundation.NSTextCheckingResult.Date
-P:Foundation.NSTextCheckingResult.GrammarDetails
-P:Foundation.NSTextCheckingResult.NumberOfRanges
-P:Foundation.NSTextCheckingResult.Orthography
-P:Foundation.NSTextCheckingResult.PhoneNumber
-P:Foundation.NSTextCheckingResult.Range
-P:Foundation.NSTextCheckingResult.ReplacementString
-P:Foundation.NSTextCheckingResult.ResultType
-P:Foundation.NSTextCheckingResult.TimeInterval
-P:Foundation.NSTextCheckingResult.TimeZone
-P:Foundation.NSTextCheckingResult.Url
P:Foundation.NSTextCheckingTransitComponents.Airline
P:Foundation.NSTextCheckingTransitComponents.Flight
-P:Foundation.NSThread.Current
P:Foundation.NSThread.IsCancelled
P:Foundation.NSThread.IsExecuting
P:Foundation.NSThread.IsFinished
-P:Foundation.NSThread.IsMain
-P:Foundation.NSThread.IsMainThread
-P:Foundation.NSThread.IsMultiThreaded
-P:Foundation.NSThread.MainThread
-P:Foundation.NSThread.Name
-P:Foundation.NSThread.NativeCallStack
P:Foundation.NSThread.Priority
-P:Foundation.NSThread.QualityOfService
-P:Foundation.NSThread.StackSize
P:Foundation.NSThread.ThreadWillExitNotification
P:Foundation.NSThread.WillBecomeMultiThreadedNotification
-P:Foundation.NSTimer.FireDate
P:Foundation.NSTimer.IsValid
-P:Foundation.NSTimer.TimeInterval
-P:Foundation.NSTimer.Tolerance
-P:Foundation.NSTimer.UserInfo
-P:Foundation.NSTimeZone.Abbreviations
-P:Foundation.NSTimeZone.Data
-P:Foundation.NSTimeZone.DataVersion
-P:Foundation.NSTimeZone.DefaultTimeZone
-P:Foundation.NSTimeZone.GetSecondsFromGMT
P:Foundation.NSTimeZone.KnownTimeZoneNames
-P:Foundation.NSTimeZone.LocalTimeZone
-P:Foundation.NSTimeZone.Name
-P:Foundation.NSTimeZone.SystemTimeZone
P:Foundation.NSTimeZone.SystemTimeZoneDidChangeNotification
P:Foundation.NSUbiquitousKeyValueStore.ChangedKeysKey
P:Foundation.NSUbiquitousKeyValueStore.ChangeReasonKey
-P:Foundation.NSUbiquitousKeyValueStore.DefaultStore
P:Foundation.NSUbiquitousKeyValueStore.DidChangeExternallyNotification
P:Foundation.NSUbiquitousKeyValueStore.Item(Foundation.NSString)
P:Foundation.NSUbiquitousKeyValueStore.Item(System.String)
P:Foundation.NSUbiquitousKeyValueStoreChangeEventArgs.ChangedKeys
P:Foundation.NSUbiquitousKeyValueStoreChangeEventArgs.ChangeReason
-P:Foundation.NSUndoManager.CanRedo
-P:Foundation.NSUndoManager.CanUndo
P:Foundation.NSUndoManager.CheckpointNotification
P:Foundation.NSUndoManager.DidCloseUndoGroupNotification
P:Foundation.NSUndoManager.DidOpenUndoGroupNotification
P:Foundation.NSUndoManager.DidRedoChangeNotification
P:Foundation.NSUndoManager.DidUndoChangeNotification
-P:Foundation.NSUndoManager.GroupingLevel
P:Foundation.NSUndoManager.GroupIsDiscardableKey
-P:Foundation.NSUndoManager.GroupsByEvent
P:Foundation.NSUndoManager.IsRedoing
P:Foundation.NSUndoManager.IsUndoing
P:Foundation.NSUndoManager.IsUndoRegistrationEnabled
-P:Foundation.NSUndoManager.LevelsOfUndo
-P:Foundation.NSUndoManager.RedoActionIsDiscardable
-P:Foundation.NSUndoManager.RedoActionName
-P:Foundation.NSUndoManager.RedoCount
-P:Foundation.NSUndoManager.RedoMenuItemTitle
P:Foundation.NSUndoManager.RunLoopModes
-P:Foundation.NSUndoManager.UndoActionIsDiscardable
-P:Foundation.NSUndoManager.UndoActionName
-P:Foundation.NSUndoManager.UndoCount
-P:Foundation.NSUndoManager.UndoMenuItemTitle
-P:Foundation.NSUndoManager.WeakRunLoopModes
P:Foundation.NSUndoManager.WillCloseUndoGroupNotification
P:Foundation.NSUndoManager.WillRedoChangeNotification
P:Foundation.NSUndoManager.WillUndoChangeNotification
P:Foundation.NSUndoManagerCloseUndoGroupEventArgs.Discardable
-P:Foundation.NSUnit.Symbol
-P:Foundation.NSUnitAcceleration.BaseUnit
-P:Foundation.NSUnitAcceleration.Gravity
-P:Foundation.NSUnitAcceleration.MetersPerSecondSquared
-P:Foundation.NSUnitAngle.ArcMinutes
-P:Foundation.NSUnitAngle.ArcSeconds
-P:Foundation.NSUnitAngle.BaseUnit
-P:Foundation.NSUnitAngle.Degrees
-P:Foundation.NSUnitAngle.Gradians
-P:Foundation.NSUnitAngle.Radians
-P:Foundation.NSUnitAngle.Revolutions
-P:Foundation.NSUnitArea.Acres
-P:Foundation.NSUnitArea.Ares
-P:Foundation.NSUnitArea.BaseUnit
-P:Foundation.NSUnitArea.Hectares
-P:Foundation.NSUnitArea.SquareCentimeters
-P:Foundation.NSUnitArea.SquareFeet
-P:Foundation.NSUnitArea.SquareInches
-P:Foundation.NSUnitArea.SquareKilometers
-P:Foundation.NSUnitArea.SquareMegameters
-P:Foundation.NSUnitArea.SquareMeters
-P:Foundation.NSUnitArea.SquareMicrometers
-P:Foundation.NSUnitArea.SquareMiles
-P:Foundation.NSUnitArea.SquareMillimeters
-P:Foundation.NSUnitArea.SquareNanometers
-P:Foundation.NSUnitArea.SquareYards
-P:Foundation.NSUnitConcentrationMass.BaseUnit
-P:Foundation.NSUnitConcentrationMass.GramsPerLiter
-P:Foundation.NSUnitConcentrationMass.MilligramsPerDeciliter
-P:Foundation.NSUnitConverterLinear.Coefficient
-P:Foundation.NSUnitConverterLinear.Constant
-P:Foundation.NSUnitDispersion.BaseUnit
-P:Foundation.NSUnitDispersion.PartsPerMillion
-P:Foundation.NSUnitDuration.BaseUnit
-P:Foundation.NSUnitDuration.Hours
-P:Foundation.NSUnitDuration.Microseconds
-P:Foundation.NSUnitDuration.Milliseconds
-P:Foundation.NSUnitDuration.Minutes
-P:Foundation.NSUnitDuration.Nanoseconds
-P:Foundation.NSUnitDuration.Picoseconds
-P:Foundation.NSUnitDuration.Seconds
-P:Foundation.NSUnitElectricCharge.AmpereHours
-P:Foundation.NSUnitElectricCharge.BaseUnit
-P:Foundation.NSUnitElectricCharge.Coulombs
-P:Foundation.NSUnitElectricCharge.KiloampereHours
-P:Foundation.NSUnitElectricCharge.MegaampereHours
-P:Foundation.NSUnitElectricCharge.MicroampereHours
-P:Foundation.NSUnitElectricCharge.MilliampereHours
-P:Foundation.NSUnitElectricCurrent.Amperes
-P:Foundation.NSUnitElectricCurrent.BaseUnit
-P:Foundation.NSUnitElectricCurrent.Kiloamperes
-P:Foundation.NSUnitElectricCurrent.Megaamperes
-P:Foundation.NSUnitElectricCurrent.Microamperes
-P:Foundation.NSUnitElectricCurrent.Milliamperes
-P:Foundation.NSUnitElectricPotentialDifference.BaseUnit
-P:Foundation.NSUnitElectricPotentialDifference.Kilovolts
-P:Foundation.NSUnitElectricPotentialDifference.Megavolts
-P:Foundation.NSUnitElectricPotentialDifference.Microvolts
-P:Foundation.NSUnitElectricPotentialDifference.Millivolts
-P:Foundation.NSUnitElectricPotentialDifference.Volts
-P:Foundation.NSUnitElectricResistance.BaseUnit
-P:Foundation.NSUnitElectricResistance.Kiloohms
-P:Foundation.NSUnitElectricResistance.Megaohms
-P:Foundation.NSUnitElectricResistance.Microohms
-P:Foundation.NSUnitElectricResistance.Milliohms
-P:Foundation.NSUnitElectricResistance.Ohms
-P:Foundation.NSUnitEnergy.BaseUnit
-P:Foundation.NSUnitEnergy.Calories
-P:Foundation.NSUnitEnergy.Joules
-P:Foundation.NSUnitEnergy.Kilocalories
-P:Foundation.NSUnitEnergy.Kilojoules
-P:Foundation.NSUnitEnergy.KilowattHours
-P:Foundation.NSUnitFrequency.BaseUnit
-P:Foundation.NSUnitFrequency.FramesPerSecond
-P:Foundation.NSUnitFrequency.Gigahertz
-P:Foundation.NSUnitFrequency.Hertz
-P:Foundation.NSUnitFrequency.Kilohertz
-P:Foundation.NSUnitFrequency.Megahertz
-P:Foundation.NSUnitFrequency.Microhertz
-P:Foundation.NSUnitFrequency.Millihertz
-P:Foundation.NSUnitFrequency.Nanohertz
-P:Foundation.NSUnitFrequency.Terahertz
-P:Foundation.NSUnitFuelEfficiency.BaseUnit
-P:Foundation.NSUnitFuelEfficiency.LitersPer100Kilometers
-P:Foundation.NSUnitFuelEfficiency.MilesPerGallon
-P:Foundation.NSUnitFuelEfficiency.MilesPerImperialGallon
-P:Foundation.NSUnitIlluminance.BaseUnit
-P:Foundation.NSUnitIlluminance.Lux
-P:Foundation.NSUnitInformationStorage.Bits
-P:Foundation.NSUnitInformationStorage.Bytes
-P:Foundation.NSUnitInformationStorage.Exabits
-P:Foundation.NSUnitInformationStorage.Exabytes
-P:Foundation.NSUnitInformationStorage.Exbibits
-P:Foundation.NSUnitInformationStorage.Exbibytes
-P:Foundation.NSUnitInformationStorage.Gibibits
-P:Foundation.NSUnitInformationStorage.Gibibytes
-P:Foundation.NSUnitInformationStorage.Gigabits
-P:Foundation.NSUnitInformationStorage.Gigabytes
-P:Foundation.NSUnitInformationStorage.Kibibits
-P:Foundation.NSUnitInformationStorage.Kibibytes
-P:Foundation.NSUnitInformationStorage.Kilobits
-P:Foundation.NSUnitInformationStorage.Kilobytes
-P:Foundation.NSUnitInformationStorage.Mebibits
-P:Foundation.NSUnitInformationStorage.Mebibytes
-P:Foundation.NSUnitInformationStorage.Megabits
-P:Foundation.NSUnitInformationStorage.Megabytes
-P:Foundation.NSUnitInformationStorage.Nibbles
-P:Foundation.NSUnitInformationStorage.Pebibits
-P:Foundation.NSUnitInformationStorage.Pebibytes
-P:Foundation.NSUnitInformationStorage.Petabits
-P:Foundation.NSUnitInformationStorage.Petabytes
-P:Foundation.NSUnitInformationStorage.Tebibits
-P:Foundation.NSUnitInformationStorage.Tebibytes
-P:Foundation.NSUnitInformationStorage.Terabits
-P:Foundation.NSUnitInformationStorage.Terabytes
-P:Foundation.NSUnitInformationStorage.Yobibits
-P:Foundation.NSUnitInformationStorage.Yobibytes
-P:Foundation.NSUnitInformationStorage.Yottabits
-P:Foundation.NSUnitInformationStorage.Yottabytes
-P:Foundation.NSUnitInformationStorage.Zebibits
-P:Foundation.NSUnitInformationStorage.Zebibytes
-P:Foundation.NSUnitInformationStorage.Zettabits
-P:Foundation.NSUnitInformationStorage.Zettabytes
-P:Foundation.NSUnitLength.AstronomicalUnits
-P:Foundation.NSUnitLength.BaseUnit
-P:Foundation.NSUnitLength.Centimeters
-P:Foundation.NSUnitLength.Decameters
-P:Foundation.NSUnitLength.Decimeters
-P:Foundation.NSUnitLength.Fathoms
-P:Foundation.NSUnitLength.Feet
-P:Foundation.NSUnitLength.Furlongs
-P:Foundation.NSUnitLength.Hectometers
-P:Foundation.NSUnitLength.Inches
-P:Foundation.NSUnitLength.Kilometers
-P:Foundation.NSUnitLength.Lightyears
-P:Foundation.NSUnitLength.Megameters
-P:Foundation.NSUnitLength.Meters
-P:Foundation.NSUnitLength.Micrometers
-P:Foundation.NSUnitLength.Miles
-P:Foundation.NSUnitLength.Millimeters
-P:Foundation.NSUnitLength.Nanometers
-P:Foundation.NSUnitLength.NauticalMiles
-P:Foundation.NSUnitLength.Parsecs
-P:Foundation.NSUnitLength.Picometers
-P:Foundation.NSUnitLength.ScandinavianMiles
-P:Foundation.NSUnitLength.Yards
-P:Foundation.NSUnitMass.BaseUnit
-P:Foundation.NSUnitMass.Carats
-P:Foundation.NSUnitMass.Centigrams
-P:Foundation.NSUnitMass.Decigrams
-P:Foundation.NSUnitMass.Grams
-P:Foundation.NSUnitMass.Kilograms
-P:Foundation.NSUnitMass.MetricTons
-P:Foundation.NSUnitMass.Micrograms
-P:Foundation.NSUnitMass.Milligrams
-P:Foundation.NSUnitMass.Nanograms
-P:Foundation.NSUnitMass.Ounces
-P:Foundation.NSUnitMass.OuncesTroy
-P:Foundation.NSUnitMass.Picograms
-P:Foundation.NSUnitMass.Pounds
-P:Foundation.NSUnitMass.ShortTons
-P:Foundation.NSUnitMass.Slugs
-P:Foundation.NSUnitMass.Stones
-P:Foundation.NSUnitPower.BaseUnit
-P:Foundation.NSUnitPower.Femtowatts
-P:Foundation.NSUnitPower.Gigawatts
-P:Foundation.NSUnitPower.Horsepower
-P:Foundation.NSUnitPower.Kilowatts
-P:Foundation.NSUnitPower.Megawatts
-P:Foundation.NSUnitPower.Microwatts
-P:Foundation.NSUnitPower.Milliwatts
-P:Foundation.NSUnitPower.Nanowatts
-P:Foundation.NSUnitPower.Picowatts
-P:Foundation.NSUnitPower.Terawatts
-P:Foundation.NSUnitPower.Watts
-P:Foundation.NSUnitPressure.Bars
-P:Foundation.NSUnitPressure.BaseUnit
-P:Foundation.NSUnitPressure.Gigapascals
-P:Foundation.NSUnitPressure.Hectopascals
-P:Foundation.NSUnitPressure.InchesOfMercury
-P:Foundation.NSUnitPressure.Kilopascals
-P:Foundation.NSUnitPressure.Megapascals
-P:Foundation.NSUnitPressure.Millibars
-P:Foundation.NSUnitPressure.MillimetersOfMercury
-P:Foundation.NSUnitPressure.NewtonsPerMetersSquared
-P:Foundation.NSUnitPressure.PoundsForcePerSquareInch
-P:Foundation.NSUnitSpeed.BaseUnit
-P:Foundation.NSUnitSpeed.KilometersPerHour
-P:Foundation.NSUnitSpeed.Knots
-P:Foundation.NSUnitSpeed.MetersPerSecond
-P:Foundation.NSUnitSpeed.MilesPerHour
-P:Foundation.NSUnitTemperature.BaseUnit
-P:Foundation.NSUnitTemperature.Celsius
-P:Foundation.NSUnitTemperature.Fahrenheit
-P:Foundation.NSUnitTemperature.Kelvin
-P:Foundation.NSUnitVolume.AcreFeet
-P:Foundation.NSUnitVolume.BaseUnit
-P:Foundation.NSUnitVolume.Bushels
-P:Foundation.NSUnitVolume.Centiliters
-P:Foundation.NSUnitVolume.CubicCentimeters
-P:Foundation.NSUnitVolume.CubicDecimeters
-P:Foundation.NSUnitVolume.CubicFeet
-P:Foundation.NSUnitVolume.CubicInches
-P:Foundation.NSUnitVolume.CubicKilometers
-P:Foundation.NSUnitVolume.CubicMeters
-P:Foundation.NSUnitVolume.CubicMiles
-P:Foundation.NSUnitVolume.CubicMillimeters
-P:Foundation.NSUnitVolume.CubicYards
-P:Foundation.NSUnitVolume.Cups
-P:Foundation.NSUnitVolume.Deciliters
-P:Foundation.NSUnitVolume.FluidOunces
-P:Foundation.NSUnitVolume.Gallons
-P:Foundation.NSUnitVolume.ImperialFluidOunces
-P:Foundation.NSUnitVolume.ImperialGallons
-P:Foundation.NSUnitVolume.ImperialPints
-P:Foundation.NSUnitVolume.ImperialQuarts
-P:Foundation.NSUnitVolume.ImperialTablespoons
-P:Foundation.NSUnitVolume.ImperialTeaspoons
-P:Foundation.NSUnitVolume.Kiloliters
-P:Foundation.NSUnitVolume.Liters
-P:Foundation.NSUnitVolume.Megaliters
-P:Foundation.NSUnitVolume.MetricCups
-P:Foundation.NSUnitVolume.Milliliters
-P:Foundation.NSUnitVolume.Pints
-P:Foundation.NSUnitVolume.Quarts
-P:Foundation.NSUnitVolume.Tablespoons
-P:Foundation.NSUnitVolume.Teaspoons
-P:Foundation.NSUrl.AbsoluteString
-P:Foundation.NSUrl.AbsoluteUrl
P:Foundation.NSUrl.AddedToDirectoryDateKey
P:Foundation.NSUrl.AttributeModificationDateKey
-P:Foundation.NSUrl.BaseUrl
P:Foundation.NSUrl.ContentAccessDateKey
P:Foundation.NSUrl.ContentModificationDateKey
P:Foundation.NSUrl.ContentTypeKey
P:Foundation.NSUrl.CreationDateKey
P:Foundation.NSUrl.CustomIconKey
-P:Foundation.NSUrl.DataRepresentation
P:Foundation.NSUrl.DirectoryEntryCountKey
P:Foundation.NSUrl.DocumentIdentifierKey
P:Foundation.NSUrl.EffectiveIconKey
P:Foundation.NSUrl.FileAllocatedSizeKey
P:Foundation.NSUrl.FileContentIdentifierKey
P:Foundation.NSUrl.FileIdentifierKey
-P:Foundation.NSUrl.FilePathUrl
P:Foundation.NSUrl.FileProtectionComplete
P:Foundation.NSUrl.FileProtectionCompleteUnlessOpen
P:Foundation.NSUrl.FileProtectionCompleteUntilFirstUserAuthentication
P:Foundation.NSUrl.FileProtectionCompleteWhenUserInactive
P:Foundation.NSUrl.FileProtectionKey
P:Foundation.NSUrl.FileProtectionNone
-P:Foundation.NSUrl.FileReferenceUrl
P:Foundation.NSUrl.FileResourceIdentifierKey
P:Foundation.NSUrl.FileResourceTypeBlockSpecial
P:Foundation.NSUrl.FileResourceTypeCharacterSpecial
@@ -83067,18 +55989,13 @@ P:Foundation.NSUrl.FileResourceTypeSymbolicLink
P:Foundation.NSUrl.FileResourceTypeUnknown
P:Foundation.NSUrl.FileSecurityKey
P:Foundation.NSUrl.FileSizeKey
-P:Foundation.NSUrl.Fragment
P:Foundation.NSUrl.GenerationIdentifierKey
-P:Foundation.NSUrl.GetFileSystemRepresentationAsUtf8Ptr
-P:Foundation.NSUrl.HasDirectoryPath
P:Foundation.NSUrl.HasHiddenExtensionKey
-P:Foundation.NSUrl.Host
P:Foundation.NSUrl.IsAliasFileKey
P:Foundation.NSUrl.IsApplicationKey
P:Foundation.NSUrl.IsDirectoryKey
P:Foundation.NSUrl.IsExcludedFromBackupKey
P:Foundation.NSUrl.IsExecutableKey
-P:Foundation.NSUrl.IsFileReferenceUrl
P:Foundation.NSUrl.IsFileUrl
P:Foundation.NSUrl.IsHiddenKey
P:Foundation.NSUrl.IsMountTriggerKey
@@ -83096,7 +56013,6 @@ P:Foundation.NSUrl.IsWritableKey
P:Foundation.NSUrl.KeysOfUnsetValuesKey
P:Foundation.NSUrl.LabelColorKey
P:Foundation.NSUrl.LabelNumberKey
-P:Foundation.NSUrl.LastPathComponent
P:Foundation.NSUrl.LinkCountKey
P:Foundation.NSUrl.LocalizedLabelKey
P:Foundation.NSUrl.LocalizedNameKey
@@ -83104,25 +56020,13 @@ P:Foundation.NSUrl.LocalizedTypeDescriptionKey
P:Foundation.NSUrl.MayHaveExtendedAttributesKey
P:Foundation.NSUrl.MayShareFileContentKey
P:Foundation.NSUrl.NameKey
-P:Foundation.NSUrl.ParameterString
P:Foundation.NSUrl.ParentDirectoryURLKey
-P:Foundation.NSUrl.Password
-P:Foundation.NSUrl.Path
-P:Foundation.NSUrl.PathComponents
-P:Foundation.NSUrl.PathExtension
P:Foundation.NSUrl.PathKey
P:Foundation.NSUrl.Port
P:Foundation.NSUrl.PreferredIOBlockSizeKey
P:Foundation.NSUrl.PreviewItemDisplayState
P:Foundation.NSUrl.PreviewItemTitle
P:Foundation.NSUrl.PreviewItemUrl
-P:Foundation.NSUrl.Query
-P:Foundation.NSUrl.ReadableTypeIdentifiers
-P:Foundation.NSUrl.RelativePath
-P:Foundation.NSUrl.RelativeString
-P:Foundation.NSUrl.ResourceSpecifier
-P:Foundation.NSUrl.Scheme
-P:Foundation.NSUrl.StandardizedUrl
P:Foundation.NSUrl.ThumbnailDictionaryKey
P:Foundation.NSUrl.TotalFileAllocatedSizeKey
P:Foundation.NSUrl.TotalFileSizeKey
@@ -83152,7 +56056,6 @@ P:Foundation.NSUrl.UbiquitousSharedItemPermissionsReadOnly
P:Foundation.NSUrl.UbiquitousSharedItemPermissionsReadWrite
P:Foundation.NSUrl.UbiquitousSharedItemRoleOwner
P:Foundation.NSUrl.UbiquitousSharedItemRoleParticipant
-P:Foundation.NSUrl.User
P:Foundation.NSUrl.VolumeAvailableCapacityForImportantUsageKey
P:Foundation.NSUrl.VolumeAvailableCapacityForOpportunisticUsageKey
P:Foundation.NSUrl.VolumeAvailableCapacityKey
@@ -83200,63 +56103,11 @@ P:Foundation.NSUrl.VolumeTypeNameKey
P:Foundation.NSUrl.VolumeURLForRemountingKey
P:Foundation.NSUrl.VolumeURLKey
P:Foundation.NSUrl.VolumeUUIDStringKey
-P:Foundation.NSUrl.WritableTypeIdentifiers
-P:Foundation.NSUrl.WritableTypeIdentifiersForItemProvider
P:Foundation.NSUrlAsyncResult.Data
P:Foundation.NSUrlAsyncResult.Response
-P:Foundation.NSUrlAuthenticationChallenge.Error
-P:Foundation.NSUrlAuthenticationChallenge.FailureResponse
-P:Foundation.NSUrlAuthenticationChallenge.PreviousFailureCount
-P:Foundation.NSUrlAuthenticationChallenge.ProposedCredential
-P:Foundation.NSUrlAuthenticationChallenge.ProtectionSpace
-P:Foundation.NSUrlAuthenticationChallenge.Sender
-P:Foundation.NSUrlCache.CurrentDiskUsage
-P:Foundation.NSUrlCache.CurrentMemoryUsage
-P:Foundation.NSUrlCache.DiskCapacity
-P:Foundation.NSUrlCache.MemoryCapacity
-P:Foundation.NSUrlCache.SharedCache
-P:Foundation.NSUrlComponents.EncodedHost
-P:Foundation.NSUrlComponents.Fragment
-P:Foundation.NSUrlComponents.Host
-P:Foundation.NSUrlComponents.Password
-P:Foundation.NSUrlComponents.Path
-P:Foundation.NSUrlComponents.PercentEncodedFragment
-P:Foundation.NSUrlComponents.PercentEncodedHost
-P:Foundation.NSUrlComponents.PercentEncodedPassword
-P:Foundation.NSUrlComponents.PercentEncodedPath
-P:Foundation.NSUrlComponents.PercentEncodedQuery
-P:Foundation.NSUrlComponents.PercentEncodedQueryItems
-P:Foundation.NSUrlComponents.PercentEncodedUser
-P:Foundation.NSUrlComponents.Port
-P:Foundation.NSUrlComponents.Query
-P:Foundation.NSUrlComponents.QueryItems
-P:Foundation.NSUrlComponents.RangeOfFragment
-P:Foundation.NSUrlComponents.RangeOfHost
-P:Foundation.NSUrlComponents.RangeOfPassword
-P:Foundation.NSUrlComponents.RangeOfPath
-P:Foundation.NSUrlComponents.RangeOfPort
-P:Foundation.NSUrlComponents.RangeOfQuery
-P:Foundation.NSUrlComponents.RangeOfScheme
-P:Foundation.NSUrlComponents.RangeOfUser
-P:Foundation.NSUrlComponents.Scheme
-P:Foundation.NSUrlComponents.Url
-P:Foundation.NSUrlComponents.User
-P:Foundation.NSUrlConnection.CurrentRequest
-P:Foundation.NSUrlConnection.OriginalRequest
-P:Foundation.NSUrlCredential.Certificates
-P:Foundation.NSUrlCredential.HasPassword
-P:Foundation.NSUrlCredential.Password
-P:Foundation.NSUrlCredential.Persistence
P:Foundation.NSUrlCredential.SecIdentity
-P:Foundation.NSUrlCredential.User
-P:Foundation.NSUrlCredentialStorage.AllCredentials
P:Foundation.NSUrlCredentialStorage.ChangedNotification
P:Foundation.NSUrlCredentialStorage.RemoveSynchronizableCredentials
-P:Foundation.NSUrlCredentialStorage.SharedCredentialStorage
-P:Foundation.NSUrlDownload.DeletesFileUponFailure
-P:Foundation.NSUrlDownload.Request
-P:Foundation.NSUrlDownload.ResumeData
-P:Foundation.NSUrlProtectionSpace.AuthenticationMethod
P:Foundation.NSUrlProtectionSpace.AuthenticationMethodClientCertificate
P:Foundation.NSUrlProtectionSpace.AuthenticationMethodDefault
P:Foundation.NSUrlProtectionSpace.AuthenticationMethodHTMLForm
@@ -83265,95 +56116,26 @@ P:Foundation.NSUrlProtectionSpace.AuthenticationMethodHTTPDigest
P:Foundation.NSUrlProtectionSpace.AuthenticationMethodNegotiate
P:Foundation.NSUrlProtectionSpace.AuthenticationMethodNTLM
P:Foundation.NSUrlProtectionSpace.AuthenticationMethodServerTrust
-P:Foundation.NSUrlProtectionSpace.DistinguishedNames
P:Foundation.NSUrlProtectionSpace.FTP
P:Foundation.NSUrlProtectionSpace.FTPProxy
-P:Foundation.NSUrlProtectionSpace.Host
P:Foundation.NSUrlProtectionSpace.HTTP
P:Foundation.NSUrlProtectionSpace.HTTPProxy
P:Foundation.NSUrlProtectionSpace.HTTPS
P:Foundation.NSUrlProtectionSpace.HTTPSProxy
-P:Foundation.NSUrlProtectionSpace.IsProxy
-P:Foundation.NSUrlProtectionSpace.Port
-P:Foundation.NSUrlProtectionSpace.Protocol
-P:Foundation.NSUrlProtectionSpace.ProxyType
-P:Foundation.NSUrlProtectionSpace.Realm
-P:Foundation.NSUrlProtectionSpace.ReceivesCredentialSecurely
P:Foundation.NSUrlProtectionSpace.ServerSecTrust
P:Foundation.NSUrlProtectionSpace.SOCKSProxy
-P:Foundation.NSUrlProtocol.CachedResponse
-P:Foundation.NSUrlProtocol.Client
-P:Foundation.NSUrlProtocol.Request
-P:Foundation.NSUrlQueryItem.Name
-P:Foundation.NSUrlQueryItem.Value
-P:Foundation.NSUrlRequest.AllowsCellularAccess
-P:Foundation.NSUrlRequest.AllowsConstrainedNetworkAccess
-P:Foundation.NSUrlRequest.AllowsExpensiveNetworkAccess
-P:Foundation.NSUrlRequest.AllowsPersistentDns
-P:Foundation.NSUrlRequest.AssumesHttp3Capable
-P:Foundation.NSUrlRequest.Attribution
-P:Foundation.NSUrlRequest.Body
-P:Foundation.NSUrlRequest.BodyStream
-P:Foundation.NSUrlRequest.CachePolicy
-P:Foundation.NSUrlRequest.CookiePartitionIdentifier
-P:Foundation.NSUrlRequest.Headers
-P:Foundation.NSUrlRequest.HttpMethod
P:Foundation.NSUrlRequest.Item(System.String)
-P:Foundation.NSUrlRequest.MainDocumentURL
-P:Foundation.NSUrlRequest.NetworkServiceType
-P:Foundation.NSUrlRequest.RequiresDnsSecValidation
-P:Foundation.NSUrlRequest.ShouldHandleCookies
-P:Foundation.NSUrlRequest.TimeoutInterval
-P:Foundation.NSUrlRequest.Url
-P:Foundation.NSUrlResponse.ExpectedContentLength
-P:Foundation.NSUrlResponse.MimeType
-P:Foundation.NSUrlResponse.SuggestedFilename
-P:Foundation.NSUrlResponse.TextEncodingName
-P:Foundation.NSUrlResponse.Url
-P:Foundation.NSUrlSession.Configuration
P:Foundation.NSUrlSession.Delegate
-P:Foundation.NSUrlSession.DelegateQueue
-P:Foundation.NSUrlSession.SessionDescription
-P:Foundation.NSUrlSession.SharedSession
-P:Foundation.NSUrlSession.WeakDelegate
P:Foundation.NSUrlSessionActiveTasks.DataTasks
P:Foundation.NSUrlSessionActiveTasks.DownloadTasks
P:Foundation.NSUrlSessionActiveTasks.UploadTasks
P:Foundation.NSUrlSessionCombinedTasks.Tasks
-P:Foundation.NSUrlSessionConfiguration.AllowsCellularAccess
-P:Foundation.NSUrlSessionConfiguration.AllowsConstrainedNetworkAccess
-P:Foundation.NSUrlSessionConfiguration.AllowsExpensiveNetworkAccess
-P:Foundation.NSUrlSessionConfiguration.ConnectionProxyDictionary
P:Foundation.NSUrlSessionConfiguration.DefaultSessionConfiguration
P:Foundation.NSUrlSessionConfiguration.Discretionary
P:Foundation.NSUrlSessionConfiguration.EphemeralSessionConfiguration
-P:Foundation.NSUrlSessionConfiguration.HttpAdditionalHeaders
-P:Foundation.NSUrlSessionConfiguration.HttpCookieAcceptPolicy
-P:Foundation.NSUrlSessionConfiguration.HttpCookieStorage
-P:Foundation.NSUrlSessionConfiguration.HttpMaximumConnectionsPerHost
-P:Foundation.NSUrlSessionConfiguration.HttpShouldSetCookies
-P:Foundation.NSUrlSessionConfiguration.HttpShouldUsePipelining
-P:Foundation.NSUrlSessionConfiguration.Identifier
-P:Foundation.NSUrlSessionConfiguration.MultipathServiceType
-P:Foundation.NSUrlSessionConfiguration.NetworkServiceType
P:Foundation.NSUrlSessionConfiguration.ProxyConfigurations
-P:Foundation.NSUrlSessionConfiguration.RequestCachePolicy
-P:Foundation.NSUrlSessionConfiguration.RequiresDnsSecValidation
-P:Foundation.NSUrlSessionConfiguration.SessionSendsLaunchEvents
P:Foundation.NSUrlSessionConfiguration.SessionType
-P:Foundation.NSUrlSessionConfiguration.SharedContainerIdentifier
-P:Foundation.NSUrlSessionConfiguration.ShouldUseExtendedBackgroundIdleMode
P:Foundation.NSUrlSessionConfiguration.StrongConnectionProxyDictionary
-P:Foundation.NSUrlSessionConfiguration.TimeoutIntervalForRequest
-P:Foundation.NSUrlSessionConfiguration.TimeoutIntervalForResource
-P:Foundation.NSUrlSessionConfiguration.TLSMaximumSupportedProtocol
-P:Foundation.NSUrlSessionConfiguration.TlsMaximumSupportedProtocolVersion
-P:Foundation.NSUrlSessionConfiguration.TLSMinimumSupportedProtocol
-P:Foundation.NSUrlSessionConfiguration.TlsMinimumSupportedProtocolVersion
-P:Foundation.NSUrlSessionConfiguration.URLCache
-P:Foundation.NSUrlSessionConfiguration.URLCredentialStorage
-P:Foundation.NSUrlSessionConfiguration.WaitsForConnectivity
-P:Foundation.NSUrlSessionConfiguration.WeakProtocolClasses
P:Foundation.NSUrlSessionDataTaskRequest.Data
P:Foundation.NSUrlSessionDataTaskRequest.Response
P:Foundation.NSUrlSessionDownloadDelegate.TaskResumeDataKey
@@ -83376,82 +56158,26 @@ P:Foundation.NSUrlSessionHandler.UseCookies
P:Foundation.NSUrlSessionHandler.UseProxy
P:Foundation.NSUrlSessionStreamDataRead.AtEof
P:Foundation.NSUrlSessionStreamDataRead.Data
-P:Foundation.NSUrlSessionTask.BytesExpectedToReceive
-P:Foundation.NSUrlSessionTask.BytesExpectedToSend
-P:Foundation.NSUrlSessionTask.BytesReceived
-P:Foundation.NSUrlSessionTask.BytesSent
-P:Foundation.NSUrlSessionTask.CountOfBytesClientExpectsToReceive
-P:Foundation.NSUrlSessionTask.CountOfBytesClientExpectsToSend
-P:Foundation.NSUrlSessionTask.CurrentRequest
P:Foundation.NSUrlSessionTask.Delegate
-P:Foundation.NSUrlSessionTask.EarliestBeginDate
-P:Foundation.NSUrlSessionTask.Error
-P:Foundation.NSUrlSessionTask.OriginalRequest
-P:Foundation.NSUrlSessionTask.PrefersIncrementalDelivery
-P:Foundation.NSUrlSessionTask.Priority
-P:Foundation.NSUrlSessionTask.Progress
-P:Foundation.NSUrlSessionTask.Response
-P:Foundation.NSUrlSessionTask.State
-P:Foundation.NSUrlSessionTask.TaskDescription
-P:Foundation.NSUrlSessionTask.TaskIdentifier
P:Foundation.NSUrlSessionTask.TransferSizeUnknown
-P:Foundation.NSUrlSessionTask.WeakDelegate
-P:Foundation.NSUrlSessionTaskMetrics.RedirectCount
-P:Foundation.NSUrlSessionTaskMetrics.TaskInterval
-P:Foundation.NSUrlSessionTaskMetrics.TransactionMetrics
P:Foundation.NSUrlSessionTaskPriority.Default
P:Foundation.NSUrlSessionTaskPriority.High
P:Foundation.NSUrlSessionTaskPriority.Low
P:Foundation.NSUrlSessionTaskTransactionMetrics.Cellular
-P:Foundation.NSUrlSessionTaskTransactionMetrics.ConnectEndDate
-P:Foundation.NSUrlSessionTaskTransactionMetrics.ConnectStartDate
P:Foundation.NSUrlSessionTaskTransactionMetrics.Constrained
-P:Foundation.NSUrlSessionTaskTransactionMetrics.CountOfRequestBodyBytesBeforeEncoding
-P:Foundation.NSUrlSessionTaskTransactionMetrics.CountOfRequestBodyBytesSent
-P:Foundation.NSUrlSessionTaskTransactionMetrics.CountOfRequestHeaderBytesSent
-P:Foundation.NSUrlSessionTaskTransactionMetrics.CountOfResponseBodyBytesAfterDecoding
-P:Foundation.NSUrlSessionTaskTransactionMetrics.CountOfResponseBodyBytesReceived
-P:Foundation.NSUrlSessionTaskTransactionMetrics.CountOfResponseHeaderBytesReceived
-P:Foundation.NSUrlSessionTaskTransactionMetrics.DomainLookupEndDate
-P:Foundation.NSUrlSessionTaskTransactionMetrics.DomainLookupStartDate
-P:Foundation.NSUrlSessionTaskTransactionMetrics.DomainResolutionProtocol
P:Foundation.NSUrlSessionTaskTransactionMetrics.Expensive
-P:Foundation.NSUrlSessionTaskTransactionMetrics.FetchStartDate
-P:Foundation.NSUrlSessionTaskTransactionMetrics.LocalAddress
-P:Foundation.NSUrlSessionTaskTransactionMetrics.LocalPort
P:Foundation.NSUrlSessionTaskTransactionMetrics.Multipath
-P:Foundation.NSUrlSessionTaskTransactionMetrics.NegotiatedTlsCipherSuite
-P:Foundation.NSUrlSessionTaskTransactionMetrics.NegotiatedTlsProtocolVersion
-P:Foundation.NSUrlSessionTaskTransactionMetrics.NetworkProtocolName
P:Foundation.NSUrlSessionTaskTransactionMetrics.ProxyConnection
-P:Foundation.NSUrlSessionTaskTransactionMetrics.RemoteAddress
-P:Foundation.NSUrlSessionTaskTransactionMetrics.RemotePort
-P:Foundation.NSUrlSessionTaskTransactionMetrics.Request
-P:Foundation.NSUrlSessionTaskTransactionMetrics.RequestEndDate
-P:Foundation.NSUrlSessionTaskTransactionMetrics.RequestStartDate
-P:Foundation.NSUrlSessionTaskTransactionMetrics.ResourceFetchType
-P:Foundation.NSUrlSessionTaskTransactionMetrics.Response
-P:Foundation.NSUrlSessionTaskTransactionMetrics.ResponseEndDate
-P:Foundation.NSUrlSessionTaskTransactionMetrics.ResponseStartDate
P:Foundation.NSUrlSessionTaskTransactionMetrics.ReusedConnection
-P:Foundation.NSUrlSessionTaskTransactionMetrics.SecureConnectionEndDate
-P:Foundation.NSUrlSessionTaskTransactionMetrics.SecureConnectionStartDate
P:Foundation.NSUrlSessionUploadTask.ResumeDataKey
P:Foundation.NSUrlSessionUploadTaskResumeRequest.Arg1
P:Foundation.NSUrlSessionUploadTaskResumeRequest.Arg2
-P:Foundation.NSUrlSessionWebSocketMessage.Data
-P:Foundation.NSUrlSessionWebSocketMessage.String
-P:Foundation.NSUrlSessionWebSocketMessage.Type
-P:Foundation.NSUrlSessionWebSocketTask.CloseCode
-P:Foundation.NSUrlSessionWebSocketTask.CloseReason
-P:Foundation.NSUrlSessionWebSocketTask.MaximumMessageSize
P:Foundation.NSUrlUtilities_NSCharacterSet.UrlFragmentAllowedCharacterSet
P:Foundation.NSUrlUtilities_NSCharacterSet.UrlHostAllowedCharacterSet
P:Foundation.NSUrlUtilities_NSCharacterSet.UrlPasswordAllowedCharacterSet
P:Foundation.NSUrlUtilities_NSCharacterSet.UrlPathAllowedCharacterSet
P:Foundation.NSUrlUtilities_NSCharacterSet.UrlQueryAllowedCharacterSet
P:Foundation.NSUrlUtilities_NSCharacterSet.UrlUserAllowedCharacterSet
-P:Foundation.NSUserActivity.ActivityType
P:Foundation.NSUserActivity.AppClipActivationPayload
P:Foundation.NSUserActivity.ContentAttributeSet
P:Foundation.NSUserActivity.ContextIdentifierPath
@@ -83461,23 +56187,9 @@ P:Foundation.NSUserActivity.EligibleForHandoff
P:Foundation.NSUserActivity.EligibleForPrediction
P:Foundation.NSUserActivity.EligibleForPublicIndexing
P:Foundation.NSUserActivity.EligibleForSearch
-P:Foundation.NSUserActivity.ExpirationDate
P:Foundation.NSUserActivity.IsClassKitDeepLink
-P:Foundation.NSUserActivity.Keywords
-P:Foundation.NSUserActivity.NeedsSave
-P:Foundation.NSUserActivity.PersistentIdentifier
-P:Foundation.NSUserActivity.ReadableTypeIdentifiers
-P:Foundation.NSUserActivity.ReferrerUrl
-P:Foundation.NSUserActivity.RequiredUserInfoKeys
P:Foundation.NSUserActivity.SuggestedInvocationPhrase
-P:Foundation.NSUserActivity.SupportsContinuationStreams
P:Foundation.NSUserActivity.TargetContentIdentifier
-P:Foundation.NSUserActivity.Title
-P:Foundation.NSUserActivity.UserInfo
-P:Foundation.NSUserActivity.WeakDelegate
-P:Foundation.NSUserActivity.WebPageUrl
-P:Foundation.NSUserActivity.WritableTypeIdentifiers
-P:Foundation.NSUserActivity.WritableTypeIdentifiersForItemProvider
P:Foundation.NSUserActivityContinuation.Arg1
P:Foundation.NSUserActivityContinuation.Arg2
P:Foundation.NSUserActivityType.BrowsingWeb
@@ -83490,43 +56202,13 @@ P:Foundation.NSUserDefaults.Item(System.String)
P:Foundation.NSUserDefaults.NoCloudAccountNotification
P:Foundation.NSUserDefaults.RegistrationDomain
P:Foundation.NSUserDefaults.SizeLimitExceededNotification
-P:Foundation.NSUserDefaults.StandardUserDefaults
-P:Foundation.NSUserNotification.ActionButtonTitle
-P:Foundation.NSUserNotification.ActivationType
-P:Foundation.NSUserNotification.ActualDeliveryDate
-P:Foundation.NSUserNotification.AdditionalActions
-P:Foundation.NSUserNotification.AdditionalActivationAction
-P:Foundation.NSUserNotification.ContentImage
-P:Foundation.NSUserNotification.DeliveryDate
-P:Foundation.NSUserNotification.DeliveryRepeatInterval
-P:Foundation.NSUserNotification.DeliveryTimeZone
-P:Foundation.NSUserNotification.HasActionButton
-P:Foundation.NSUserNotification.HasReplyButton
-P:Foundation.NSUserNotification.Identifier
-P:Foundation.NSUserNotification.InformativeText
P:Foundation.NSUserNotification.NSUserNotificationDefaultSoundName
-P:Foundation.NSUserNotification.OtherButtonTitle
P:Foundation.NSUserNotification.Presented
P:Foundation.NSUserNotification.Remote
-P:Foundation.NSUserNotification.Response
-P:Foundation.NSUserNotification.ResponsePlaceholder
-P:Foundation.NSUserNotification.SoundName
-P:Foundation.NSUserNotification.Subtitle
-P:Foundation.NSUserNotification.Title
-P:Foundation.NSUserNotification.UserInfo
-P:Foundation.NSUserNotificationAction.Identifier
-P:Foundation.NSUserNotificationAction.Title
-P:Foundation.NSUserNotificationCenter.DefaultUserNotificationCenter
P:Foundation.NSUserNotificationCenter.Delegate
-P:Foundation.NSUserNotificationCenter.DeliveredNotifications
-P:Foundation.NSUserNotificationCenter.ScheduledNotifications
P:Foundation.NSUserNotificationCenter.ShouldPresentNotification
-P:Foundation.NSUserNotificationCenter.WeakDelegate
P:Foundation.NSValue.CATransform3DValue
P:Foundation.NSValue.CGAffineTransformValue
-P:Foundation.NSValue.CGPointValue
-P:Foundation.NSValue.CGRectValue
-P:Foundation.NSValue.CGSizeValue
P:Foundation.NSValue.CGVectorValue
P:Foundation.NSValue.CMTimeMappingValue
P:Foundation.NSValue.CMTimeRangeValue
@@ -83535,11 +56217,8 @@ P:Foundation.NSValue.CMVideoDimensionsValue
P:Foundation.NSValue.CoordinateSpanValue
P:Foundation.NSValue.CoordinateValue
P:Foundation.NSValue.DirectionalEdgeInsetsValue
-P:Foundation.NSValue.NonretainedObjectValue
P:Foundation.NSValue.ObjCType
-P:Foundation.NSValue.PointerValue
P:Foundation.NSValue.PointFValue
-P:Foundation.NSValue.RangeValue
P:Foundation.NSValue.RectangleFValue
P:Foundation.NSValue.SCNMatrix4Value
P:Foundation.NSValue.SizeFValue
@@ -83547,33 +56226,13 @@ P:Foundation.NSValue.UIEdgeInsetsValue
P:Foundation.NSValue.UIOffsetValue
P:Foundation.NSValue.Vector3Value
P:Foundation.NSValue.Vector4Value
-P:Foundation.NSValueTransformer.AllowsReverseTransformation
P:Foundation.NSValueTransformer.BooleanTransformerName
P:Foundation.NSValueTransformer.IsNilTransformerName
P:Foundation.NSValueTransformer.IsNotNilTransformerName
P:Foundation.NSValueTransformer.KeyedUnarchiveFromDataTransformerName
P:Foundation.NSValueTransformer.SecureUnarchiveFromDataTransformerName
-P:Foundation.NSValueTransformer.TransformedValueClass
P:Foundation.NSValueTransformer.UnarchiveFromDataTransformerName
-P:Foundation.NSValueTransformer.ValueTransformerNames
-P:Foundation.NSXpcConnection.AuditSessionIdentifier
-P:Foundation.NSXpcConnection.CurrentConnection
-P:Foundation.NSXpcConnection.Endpoint
-P:Foundation.NSXpcConnection.ExportedInterface
-P:Foundation.NSXpcConnection.ExportedObject
-P:Foundation.NSXpcConnection.InterruptionHandler
-P:Foundation.NSXpcConnection.InvalidationHandler
-P:Foundation.NSXpcConnection.PeerEffectiveGroupId
-P:Foundation.NSXpcConnection.PeerEffectiveUserId
-P:Foundation.NSXpcConnection.PeerProcessIdentifier
-P:Foundation.NSXpcConnection.RemoteInterface
-P:Foundation.NSXpcConnection.ServiceName
-P:Foundation.NSXpcInterface.Protocol
-P:Foundation.NSXpcListener.AnonymousListener
P:Foundation.NSXpcListener.Delegate
-P:Foundation.NSXpcListener.Endpoint
-P:Foundation.NSXpcListener.ServiceListener
-P:Foundation.NSXpcListener.WeakDelegate
P:Foundation.NSZone.Handle
P:Foundation.NSZone.Name
P:Foundation.ProtocolAttribute.FormalSince
@@ -83609,46 +56268,20 @@ P:Foundation.UNCDidDeliverNotificationEventArgs.Notification
P:GameController.GCColor.Blue
P:GameController.GCColor.Green
P:GameController.GCColor.Red
-P:GameController.GCController.AttachedToDevice
P:GameController.GCController.Battery
-P:GameController.GCController.ControllerPausedHandler
-P:GameController.GCController.Controllers
P:GameController.GCController.Current
P:GameController.GCController.DidBecomeCurrentNotification
-P:GameController.GCController.DidConnectNotification
-P:GameController.GCController.DidDisconnectNotification
P:GameController.GCController.DidStopBeingCurrentNotification
-P:GameController.GCController.ExtendedGamepad
-P:GameController.GCController.Gamepad
-P:GameController.GCController.HandlerQueue
P:GameController.GCController.Haptics
P:GameController.GCController.Light
-P:GameController.GCController.MicroGamepad
-P:GameController.GCController.Motion
P:GameController.GCController.PhysicalInputProfile
-P:GameController.GCController.PlayerIndex
P:GameController.GCController.ProductCategory
P:GameController.GCController.ShouldMonitorBackgroundEvents
P:GameController.GCController.Snapshot
-P:GameController.GCController.VendorName
-P:GameController.GCControllerAxisInput.Value
-P:GameController.GCControllerAxisInput.ValueChangedHandler
-P:GameController.GCControllerButtonInput.IsPressed
-P:GameController.GCControllerButtonInput.PressedChangedHandler
P:GameController.GCControllerButtonInput.Touched
P:GameController.GCControllerButtonInput.TouchedChangedHandler
-P:GameController.GCControllerButtonInput.Value
-P:GameController.GCControllerButtonInput.ValueChangedHandler
-P:GameController.GCControllerDirectionPad.Down
-P:GameController.GCControllerDirectionPad.Left
-P:GameController.GCControllerDirectionPad.Right
-P:GameController.GCControllerDirectionPad.Up
-P:GameController.GCControllerDirectionPad.ValueChangedHandler
-P:GameController.GCControllerDirectionPad.XAxis
-P:GameController.GCControllerDirectionPad.YAxis
P:GameController.GCControllerElement.Aliases
P:GameController.GCControllerElement.Collection
-P:GameController.GCControllerElement.IsAnalog
P:GameController.GCControllerElement.IsBoundToSystemGesture
P:GameController.GCControllerElement.LocalizedName
P:GameController.GCControllerElement.PreferredSystemGestureState
@@ -83681,27 +56314,10 @@ P:GameController.GCDualShockGamepad.TouchpadPrimary
P:GameController.GCDualShockGamepad.TouchpadSecondary
P:GameController.GCEventInteraction.HandledEventTypes
P:GameController.GCEventInteraction.View
-P:GameController.GCEventViewController.ControllerUserInteractionEnabled
-P:GameController.GCExtendedGamepad.ButtonA
-P:GameController.GCExtendedGamepad.ButtonB
P:GameController.GCExtendedGamepad.ButtonHome
P:GameController.GCExtendedGamepad.ButtonMenu
P:GameController.GCExtendedGamepad.ButtonOptions
-P:GameController.GCExtendedGamepad.ButtonX
-P:GameController.GCExtendedGamepad.ButtonY
P:GameController.GCExtendedGamepad.Controller
-P:GameController.GCExtendedGamepad.DPad
-P:GameController.GCExtendedGamepad.LeftShoulder
-P:GameController.GCExtendedGamepad.LeftThumbstick
-P:GameController.GCExtendedGamepad.LeftThumbstickButton
-P:GameController.GCExtendedGamepad.LeftTrigger
-P:GameController.GCExtendedGamepad.RightShoulder
-P:GameController.GCExtendedGamepad.RightThumbstick
-P:GameController.GCExtendedGamepad.RightThumbstickButton
-P:GameController.GCExtendedGamepad.RightTrigger
-P:GameController.GCExtendedGamepad.ValueChangedHandler
-P:GameController.GCExtendedGamepadSnapshot.DataVersion
-P:GameController.GCExtendedGamepadSnapshot.SnapshotData
P:GameController.GCGameControllerActivationContext.PreviousApplicationBundleId
P:GameController.GCGamepad.ButtonA
P:GameController.GCGamepad.ButtonB
@@ -83713,7 +56329,6 @@ P:GameController.GCGamepad.LeftShoulder
P:GameController.GCGamepad.RightShoulder
P:GameController.GCGamepad.SaveSnapshot
P:GameController.GCGamepad.ValueChangedHandler
-P:GameController.GCGamepadSnapshot.SnapshotData
P:GameController.GCGearShifterElement.Aliases
P:GameController.GCGearShifterElement.LocalizedName
P:GameController.GCGearShifterElement.PatternInput
@@ -84036,30 +56651,15 @@ P:GameController.GCKeyCode.Three
P:GameController.GCKeyCode.Two
P:GameController.GCKeyCode.UpArrow
P:GameController.GCKeyCode.Zero
-P:GameController.GCMicroGamepad.AllowsRotation
-P:GameController.GCMicroGamepad.ButtonA
P:GameController.GCMicroGamepad.ButtonMenu
-P:GameController.GCMicroGamepad.ButtonX
P:GameController.GCMicroGamepad.Controller
-P:GameController.GCMicroGamepad.Dpad
-P:GameController.GCMicroGamepad.ReportsAbsoluteDpadValues
-P:GameController.GCMicroGamepad.SaveSnapshot
-P:GameController.GCMicroGamepad.ValueChangedHandler
-P:GameController.GCMicroGamepadSnapshot.DataVersion
-P:GameController.GCMicroGamepadSnapshot.SnapshotData
P:GameController.GCMotion.Acceleration
-P:GameController.GCMotion.Attitude
P:GameController.GCMotion.Controller
-P:GameController.GCMotion.Gravity
P:GameController.GCMotion.HasAttitude
-P:GameController.GCMotion.HasAttitudeAndRotationRate
P:GameController.GCMotion.HasGravityAndUserAcceleration
P:GameController.GCMotion.HasRotationRate
-P:GameController.GCMotion.RotationRate
P:GameController.GCMotion.SensorsActive
P:GameController.GCMotion.SensorsRequireManualActivation
-P:GameController.GCMotion.UserAcceleration
-P:GameController.GCMotion.ValueChangedHandler
P:GameController.GCMouse.Current
P:GameController.GCMouse.DidBecomeCurrentNotification
P:GameController.GCMouse.DidConnectNotification
@@ -84211,48 +56811,12 @@ P:GameController.IGCTouchedStateInput.Touched
P:GameController.IGCTouchedStateInput.TouchedDidChangeHandler
P:GameKit.GKAccessPoint.Active
P:GameKit.GKAccessPoint.Focused
-P:GameKit.GKAccessPoint.FrameInScreenCoordinates
-P:GameKit.GKAccessPoint.IsPresentingGameCenter
-P:GameKit.GKAccessPoint.Location
-P:GameKit.GKAccessPoint.ParentWindow
-P:GameKit.GKAccessPoint.Shared
-P:GameKit.GKAccessPoint.ShowHighlights
P:GameKit.GKAccessPoint.Visible
P:GameKit.GKAchievement.Completed
P:GameKit.GKAchievement.Hidden
-P:GameKit.GKAchievement.Identifier
-P:GameKit.GKAchievement.LastReportedDate
-P:GameKit.GKAchievement.PercentComplete
-P:GameKit.GKAchievement.Player
-P:GameKit.GKAchievement.PlayerID
-P:GameKit.GKAchievement.ShowsCompletionBanner
-P:GameKit.GKAchievementChallenge.Achievement
-P:GameKit.GKAchievementDescription.AchievedDescription
-P:GameKit.GKAchievementDescription.GroupIdentifier
-P:GameKit.GKAchievementDescription.Hidden
-P:GameKit.GKAchievementDescription.Identifier
-P:GameKit.GKAchievementDescription.Image
-P:GameKit.GKAchievementDescription.IncompleteAchievementImage
-P:GameKit.GKAchievementDescription.MaximumPoints
-P:GameKit.GKAchievementDescription.PlaceholderCompletedAchievementImage
-P:GameKit.GKAchievementDescription.RarityPercent
-P:GameKit.GKAchievementDescription.Replayable
-P:GameKit.GKAchievementDescription.Title
-P:GameKit.GKAchievementDescription.UnachievedDescription
P:GameKit.GKAchievementViewController.Delegate
-P:GameKit.GKAchievementViewController.WeakDelegate
-P:GameKit.GKBasePlayer.DisplayName
-P:GameKit.GKBasePlayer.PlayerID
P:GameKit.GKCategoryResult.Categories
P:GameKit.GKCategoryResult.Titles
-P:GameKit.GKChallenge.CompletionDate
-P:GameKit.GKChallenge.IssueDate
-P:GameKit.GKChallenge.IssuingPlayer
-P:GameKit.GKChallenge.IssuingPlayerID
-P:GameKit.GKChallenge.Message
-P:GameKit.GKChallenge.ReceivingPlayer
-P:GameKit.GKChallenge.ReceivingPlayerID
-P:GameKit.GKChallenge.State
P:GameKit.GKChallengeComposeControllerResult.ComposeController
P:GameKit.GKChallengeComposeControllerResult.IssuedChallenge
P:GameKit.GKChallengeComposeControllerResult.SentPlayers
@@ -84260,22 +56824,14 @@ P:GameKit.GKChallengeComposeResult.ComposeController
P:GameKit.GKChallengeComposeResult.IssuedChallenge
P:GameKit.GKChallengeComposeResult.SentPlayerIDs
P:GameKit.GKChallengeEventHandler.Delegate
-P:GameKit.GKChallengeEventHandler.Instance
P:GameKit.GKChallengeEventHandler.ShouldShowBannerForLocallyCompletedChallenge
P:GameKit.GKChallengeEventHandler.ShouldShowBannerForLocallyReceivedChallenge
P:GameKit.GKChallengeEventHandler.ShouldShowBannerForRemotelyCompletedChallenge
-P:GameKit.GKChallengeEventHandler.WeakDelegate
-P:GameKit.GKChallengesViewController.ChallengeDelegate
P:GameKit.GKDataEventArgs.Data
P:GameKit.GKDataEventArgs.PlayerId
-P:GameKit.GKDataReceivedEventArgs.Data
-P:GameKit.GKDataReceivedEventArgs.PeerID
-P:GameKit.GKDataReceivedEventArgs.Session
P:GameKit.GKDataReceivedForRecipientEventArgs.Data
P:GameKit.GKDataReceivedForRecipientEventArgs.Player
P:GameKit.GKDataReceivedForRecipientEventArgs.Recipient
-P:GameKit.GKDialogController.ParentWindow
-P:GameKit.GKDialogController.SharedDialogController
P:GameKit.GKEntriesForPlayerScopeResult.Entries
P:GameKit.GKEntriesForPlayerScopeResult.LocalPlayerEntry
P:GameKit.GKEntriesForPlayerScopeResult.TotalPlayerCount
@@ -84287,530 +56843,61 @@ P:GameKit.GKFetchItemsForIdentityVerificationSignature.Salt
P:GameKit.GKFetchItemsForIdentityVerificationSignature.Signature
P:GameKit.GKFetchItemsForIdentityVerificationSignature.Timestamp
P:GameKit.GKFriendRequestComposeViewController.ComposeViewDelegate
-P:GameKit.GKFriendRequestComposeViewController.MaxNumberOfRecipients
-P:GameKit.GKFriendRequestComposeViewController.WeakComposeViewDelegate
-P:GameKit.GKGameCenterViewController.Delegate
-P:GameKit.GKGameCenterViewController.LeaderboardCategory
-P:GameKit.GKGameCenterViewController.LeaderboardIdentifier
-P:GameKit.GKGameCenterViewController.LeaderboardTimeScope
-P:GameKit.GKGameCenterViewController.ViewState
-P:GameKit.GKGameCenterViewController.WeakDelegate
-P:GameKit.GKGameSession.BadgedPlayers
-P:GameKit.GKGameSession.Identifier
-P:GameKit.GKGameSession.LastModifiedDate
-P:GameKit.GKGameSession.LastModifiedPlayer
-P:GameKit.GKGameSession.MaxNumberOfConnectedPlayers
-P:GameKit.GKGameSession.Owner
-P:GameKit.GKGameSession.Players
-P:GameKit.GKGameSession.Title
-P:GameKit.GKGameSessionSharingViewController.Delegate
-P:GameKit.GKGameSessionSharingViewController.Session
P:GameKit.GKIdentityVerificationSignatureResult.PublicKeyUrl
P:GameKit.GKIdentityVerificationSignatureResult.Salt
P:GameKit.GKIdentityVerificationSignatureResult.Signature
P:GameKit.GKIdentityVerificationSignatureResult.Timestamp
-P:GameKit.GKInvite.Hosted
-P:GameKit.GKInvite.Inviter
-P:GameKit.GKInvite.PlayerAttributes
-P:GameKit.GKInvite.PlayerGroup
-P:GameKit.GKInvite.Sender
-P:GameKit.GKLeaderboard.BaseLeaderboardId
-P:GameKit.GKLeaderboard.Category
-P:GameKit.GKLeaderboard.Duration
-P:GameKit.GKLeaderboard.GroupIdentifier
-P:GameKit.GKLeaderboard.Identifier
-P:GameKit.GKLeaderboard.IsLoading
-P:GameKit.GKLeaderboard.LocalPlayerScore
-P:GameKit.GKLeaderboard.MaxRange
-P:GameKit.GKLeaderboard.NextStartDate
-P:GameKit.GKLeaderboard.PlayerScope
-P:GameKit.GKLeaderboard.Range
-P:GameKit.GKLeaderboard.Scores
-P:GameKit.GKLeaderboard.StartDate
-P:GameKit.GKLeaderboard.TimeScope
-P:GameKit.GKLeaderboard.Title
-P:GameKit.GKLeaderboard.Type
-P:GameKit.GKLeaderboardEntry.Context
-P:GameKit.GKLeaderboardEntry.Date
-P:GameKit.GKLeaderboardEntry.FormattedScore
-P:GameKit.GKLeaderboardEntry.Player
-P:GameKit.GKLeaderboardEntry.Rank
-P:GameKit.GKLeaderboardEntry.Score
-P:GameKit.GKLeaderboardScore.Context
-P:GameKit.GKLeaderboardScore.LeaderboardId
-P:GameKit.GKLeaderboardScore.Player
-P:GameKit.GKLeaderboardScore.Value
-P:GameKit.GKLeaderboardSet.GroupIdentifier
-P:GameKit.GKLeaderboardSet.Identifier
-P:GameKit.GKLeaderboardSet.Title
-P:GameKit.GKLeaderboardViewController.Category
P:GameKit.GKLeaderboardViewController.Delegate
-P:GameKit.GKLeaderboardViewController.TimeScope
-P:GameKit.GKLeaderboardViewController.WeakDelegate
P:GameKit.GKLocalPlayer.Authenticated
-P:GameKit.GKLocalPlayer.AuthenticateHandler
P:GameKit.GKLocalPlayer.AuthenticationDidChangeNotificationName
-P:GameKit.GKLocalPlayer.Friends
-P:GameKit.GKLocalPlayer.IsPresentingFriendRequestViewController
P:GameKit.GKLocalPlayer.IsUnderage
-P:GameKit.GKLocalPlayer.Local
-P:GameKit.GKLocalPlayer.LocalPlayer
P:GameKit.GKLocalPlayer.MultiplayerGamingRestricted
P:GameKit.GKLocalPlayer.PersonalizedCommunicationRestricted
P:GameKit.GKMatch.Delegate
-P:GameKit.GKMatch.ExpectedPlayerCount
-P:GameKit.GKMatch.PlayerProperties
-P:GameKit.GKMatch.Players
-P:GameKit.GKMatch.PlayersIDs
-P:GameKit.GKMatch.Properties
P:GameKit.GKMatch.ShouldReinviteDisconnectedPlayer
P:GameKit.GKMatch.ShouldReinvitePlayer
-P:GameKit.GKMatch.WeakDelegate
P:GameKit.GKMatchConnectionChangedEventArgs.Player
P:GameKit.GKMatchConnectionChangedEventArgs.State
-P:GameKit.GKMatchedPlayers.PlayerProperties
-P:GameKit.GKMatchedPlayers.Players
-P:GameKit.GKMatchedPlayers.Properties
P:GameKit.GKMatchEventArgs.Match
-P:GameKit.GKMatchmaker.InviteHandler
-P:GameKit.GKMatchmaker.SharedMatchmaker
-P:GameKit.GKMatchmakerViewController.CanStartWithMinimumPlayers
-P:GameKit.GKMatchmakerViewController.DefaultInvitationMessage
-P:GameKit.GKMatchmakerViewController.Hosted
-P:GameKit.GKMatchmakerViewController.MatchmakerDelegate
-P:GameKit.GKMatchmakerViewController.MatchmakingMode
-P:GameKit.GKMatchmakerViewController.MatchRequest
-P:GameKit.GKMatchmakerViewController.WeakMatchmakerDelegate
P:GameKit.GKMatchmakingPlayerEventArgs.PlayerID
P:GameKit.GKMatchmakingPlayersEventArgs.PlayerIDs
P:GameKit.GKMatchReceivedDataFromRemotePlayerEventArgs.Data
P:GameKit.GKMatchReceivedDataFromRemotePlayerEventArgs.Player
-P:GameKit.GKMatchRequest.DefaultNumberOfPlayers
-P:GameKit.GKMatchRequest.InviteeResponseHandler
-P:GameKit.GKMatchRequest.InviteMessage
-P:GameKit.GKMatchRequest.MaxPlayers
-P:GameKit.GKMatchRequest.MinPlayers
-P:GameKit.GKMatchRequest.PlayerAttributes
-P:GameKit.GKMatchRequest.PlayerGroup
-P:GameKit.GKMatchRequest.PlayersToInvite
-P:GameKit.GKMatchRequest.Properties
-P:GameKit.GKMatchRequest.QueueName
-P:GameKit.GKMatchRequest.RecipientProperties
-P:GameKit.GKMatchRequest.RecipientResponseHandler
-P:GameKit.GKMatchRequest.Recipients
-P:GameKit.GKMatchRequest.RestrictToAutomatch
-P:GameKit.GKPeerChangedStateEventArgs.PeerID
-P:GameKit.GKPeerChangedStateEventArgs.Session
-P:GameKit.GKPeerChangedStateEventArgs.State
-P:GameKit.GKPeerConnectionEventArgs.Error
-P:GameKit.GKPeerConnectionEventArgs.PeerID
-P:GameKit.GKPeerConnectionEventArgs.Session
-P:GameKit.GKPeerPickerController.ClassHandle
-P:GameKit.GKPeerPickerController.ConnectionTypesMask
-P:GameKit.GKPeerPickerController.Delegate
-P:GameKit.GKPeerPickerController.Visible
-P:GameKit.GKPeerPickerController.WeakDelegate
-P:GameKit.GKPlayer.Alias
-P:GameKit.GKPlayer.DidChangeNotificationNameNotification
-P:GameKit.GKPlayer.DisplayName
-P:GameKit.GKPlayer.GamePlayerId
-P:GameKit.GKPlayer.GuestIdentifier
P:GameKit.GKPlayer.IdNoLongerAvailable
-P:GameKit.GKPlayer.IsFriend
-P:GameKit.GKPlayer.IsInvitable
-P:GameKit.GKPlayer.PlayerID
-P:GameKit.GKPlayer.ScopedIdsArePersistent
-P:GameKit.GKPlayer.TeamPlayerId
P:GameKit.GKPlayerEventArgs.PlayerID
P:GameKit.GKPlayersEventArgs.PlayerIDs
-P:GameKit.GKSavedGame.DeviceName
-P:GameKit.GKSavedGame.ModificationDate
-P:GameKit.GKSavedGame.Name
-P:GameKit.GKScore.Category
-P:GameKit.GKScore.Context
-P:GameKit.GKScore.Date
-P:GameKit.GKScore.FormattedValue
-P:GameKit.GKScore.LeaderboardIdentifier
-P:GameKit.GKScore.Player
-P:GameKit.GKScore.Rank
-P:GameKit.GKScore.ShouldSetDefaultLeaderboard
-P:GameKit.GKScore.Value
-P:GameKit.GKScoreChallenge.LeaderboardEntry
-P:GameKit.GKScoreChallenge.Score
-P:GameKit.GKSession.Available
-P:GameKit.GKSession.Delegate
-P:GameKit.GKSession.DisconnectTimeout
-P:GameKit.GKSession.DisplayName
-P:GameKit.GKSession.PeerID
-P:GameKit.GKSession.SessionID
-P:GameKit.GKSession.SessionMode
-P:GameKit.GKSession.WeakDelegate
P:GameKit.GKStateEventArgs.PlayerId
P:GameKit.GKStateEventArgs.State
-P:GameKit.GKTurnBasedEventHandler.Delegate
-P:GameKit.GKTurnBasedEventHandler.SharedTurnBasedEventHandler
-P:GameKit.GKTurnBasedEventHandler.WeakDelegate
-P:GameKit.GKTurnBasedExchange.CompletionDate
-P:GameKit.GKTurnBasedExchange.Data
-P:GameKit.GKTurnBasedExchange.ExchangeID
-P:GameKit.GKTurnBasedExchange.Message
-P:GameKit.GKTurnBasedExchange.Recipients
-P:GameKit.GKTurnBasedExchange.Replies
-P:GameKit.GKTurnBasedExchange.SendDate
-P:GameKit.GKTurnBasedExchange.Sender
-P:GameKit.GKTurnBasedExchange.Status
-P:GameKit.GKTurnBasedExchange.TimeoutDate
P:GameKit.GKTurnBasedExchange.TimeoutDefault
P:GameKit.GKTurnBasedExchange.TimeoutNone
-P:GameKit.GKTurnBasedExchangeReply.Data
-P:GameKit.GKTurnBasedExchangeReply.Message
-P:GameKit.GKTurnBasedExchangeReply.Recipient
-P:GameKit.GKTurnBasedExchangeReply.ReplyDate
-P:GameKit.GKTurnBasedMatch.ActiveExchanges
-P:GameKit.GKTurnBasedMatch.CompletedExchanges
-P:GameKit.GKTurnBasedMatch.CreationDate
-P:GameKit.GKTurnBasedMatch.CurrentParticipant
-P:GameKit.GKTurnBasedMatch.DefaultTimeout
-P:GameKit.GKTurnBasedMatch.ExchangeMaxInitiatedExchangesPerPlayer
-P:GameKit.GKTurnBasedMatch.Exchanges
-P:GameKit.GKTurnBasedMatch.ExhangeDataMaximumSize
-P:GameKit.GKTurnBasedMatch.MatchData
-P:GameKit.GKTurnBasedMatch.MatchDataMaximumSize
-P:GameKit.GKTurnBasedMatch.MatchID
-P:GameKit.GKTurnBasedMatch.Message
-P:GameKit.GKTurnBasedMatch.NoTimeout
-P:GameKit.GKTurnBasedMatch.Participants
-P:GameKit.GKTurnBasedMatch.Status
P:GameKit.GKTurnBasedMatchmakerViewController.Delegate
-P:GameKit.GKTurnBasedMatchmakerViewController.MatchmakingMode
-P:GameKit.GKTurnBasedMatchmakerViewController.ShowExistingMatches
-P:GameKit.GKTurnBasedMatchmakerViewController.WeakDelegate
-P:GameKit.GKTurnBasedParticipant.LastTurnDate
-P:GameKit.GKTurnBasedParticipant.MatchOutcome
-P:GameKit.GKTurnBasedParticipant.Player
-P:GameKit.GKTurnBasedParticipant.PlayerID
-P:GameKit.GKTurnBasedParticipant.Status
-P:GameKit.GKTurnBasedParticipant.TimeoutDate
P:GameKit.GKVoiceChat.Active
-P:GameKit.GKVoiceChat.Name
-P:GameKit.GKVoiceChat.PlayerIDs
-P:GameKit.GKVoiceChat.Players
-P:GameKit.GKVoiceChat.PlayerStateUpdateHandler
-P:GameKit.GKVoiceChat.PlayerVoiceChatStateDidChangeHandler
-P:GameKit.GKVoiceChat.Volume
-P:GameKit.GKVoiceChatService.Client
-P:GameKit.GKVoiceChatService.Default
-P:GameKit.GKVoiceChatService.InputMeteringEnabled
-P:GameKit.GKVoiceChatService.InputMeterLevel
-P:GameKit.GKVoiceChatService.IsVoIPAllowed
-P:GameKit.GKVoiceChatService.MicrophoneMuted
-P:GameKit.GKVoiceChatService.OutputMeteringEnabled
-P:GameKit.GKVoiceChatService.OutputMeterLevel
-P:GameKit.GKVoiceChatService.RemoteParticipantVolume
-P:GameplayKit.GKAgent.Behavior
-P:GameplayKit.GKAgent.Delegate
-P:GameplayKit.GKAgent.Mass
-P:GameplayKit.GKAgent.MaxAcceleration
-P:GameplayKit.GKAgent.MaxSpeed
-P:GameplayKit.GKAgent.Radius
-P:GameplayKit.GKAgent.Speed
-P:GameplayKit.GKAgent2D.Position
-P:GameplayKit.GKAgent2D.Rotation
-P:GameplayKit.GKAgent2D.Velocity
-P:GameplayKit.GKAgent3D.Position
-P:GameplayKit.GKAgent3D.RightHanded
-P:GameplayKit.GKAgent3D.Rotation
-P:GameplayKit.GKAgent3D.Velocity
-P:GameplayKit.GKARC4RandomSource.Seed
-P:GameplayKit.GKBehavior.GoalCount
P:GameplayKit.GKBehavior.Item(GameplayKit.GKGoal)
P:GameplayKit.GKBehavior.Item(System.UIntPtr)
-P:GameplayKit.GKBillowNoiseSource.Persistence
-P:GameplayKit.GKCheckerboardNoiseSource.SquareSize
-P:GameplayKit.GKCircleObstacle.Position
-P:GameplayKit.GKCircleObstacle.Radius
-P:GameplayKit.GKCoherentNoiseSource.Frequency
-P:GameplayKit.GKCoherentNoiseSource.Lacunarity
-P:GameplayKit.GKCoherentNoiseSource.OctaveCount
-P:GameplayKit.GKCoherentNoiseSource.Seed
-P:GameplayKit.GKComponent.Entity
-P:GameplayKit.GKComponentSystem`1.ComponentClass
-P:GameplayKit.GKComponentSystem`1.Components
P:GameplayKit.GKComponentSystem`1.ComponentType
P:GameplayKit.GKComponentSystem`1.Item(System.UIntPtr)
-P:GameplayKit.GKCompositeBehavior.BehaviorCount
P:GameplayKit.GKCompositeBehavior.Item(GameplayKit.GKBehavior)
P:GameplayKit.GKCompositeBehavior.Item(System.UIntPtr)
-P:GameplayKit.GKConstantNoiseSource.Value
-P:GameplayKit.GKCylindersNoiseSource.Frequency
-P:GameplayKit.GKDecisionTree.RandomSource
-P:GameplayKit.GKDecisionTree.RootNode
-P:GameplayKit.GKEntity.Components
-P:GameplayKit.GKGaussianDistribution.Deviation
-P:GameplayKit.GKGaussianDistribution.Mean
-P:GameplayKit.GKGraph.Nodes
-P:GameplayKit.GKGraphNode.ConnectedNodes
-P:GameplayKit.GKGraphNode2D.Position
-P:GameplayKit.GKGraphNode3D.Position
-P:GameplayKit.GKGridGraph.DiagonalsAllowed
-P:GameplayKit.GKGridGraph.GridHeight
-P:GameplayKit.GKGridGraph.GridOrigin
-P:GameplayKit.GKGridGraph.GridWidth
-P:GameplayKit.GKGridGraphNode.GridPosition
P:GameplayKit.GKHybridStrategist.Budget
P:GameplayKit.GKHybridStrategist.ExplorationParameter
P:GameplayKit.GKHybridStrategist.GameModel
P:GameplayKit.GKHybridStrategist.MaxLookAheadDepth
P:GameplayKit.GKHybridStrategist.RandomSource
-P:GameplayKit.GKLinearCongruentialRandomSource.Seed
-P:GameplayKit.GKMersenneTwisterRandomSource.Seed
-P:GameplayKit.GKMeshGraph`1.BufferRadius
-P:GameplayKit.GKMeshGraph`1.Obstacles
-P:GameplayKit.GKMeshGraph`1.TriangleCount
-P:GameplayKit.GKMeshGraph`1.TriangulationMode
-P:GameplayKit.GKMinMaxStrategist.GameModel
-P:GameplayKit.GKMinMaxStrategist.MaxLookAheadDepth
-P:GameplayKit.GKMinMaxStrategist.RandomSource
-P:GameplayKit.GKMonteCarloStrategist.Budget
-P:GameplayKit.GKMonteCarloStrategist.ExplorationParameter
-P:GameplayKit.GKMonteCarloStrategist.GameModel
-P:GameplayKit.GKMonteCarloStrategist.RandomSource
-P:GameplayKit.GKNoise.GradientColors
-P:GameplayKit.GKNoiseMap.Origin
-P:GameplayKit.GKNoiseMap.SampleCount
P:GameplayKit.GKNoiseMap.Seamless
-P:GameplayKit.GKNoiseMap.Size
-P:GameplayKit.GKNSPredicateRule.Predicate
-P:GameplayKit.GKObstacleGraph.BufferRadius
-P:GameplayKit.GKObstacleGraph.Obstacles
-P:GameplayKit.GKOctreeNode.Box
P:GameplayKit.GKPath.Cyclical
-P:GameplayKit.GKPath.NumPoints
-P:GameplayKit.GKPath.Radius
-P:GameplayKit.GKPerlinNoiseSource.Persistence
-P:GameplayKit.GKPolygonObstacle.VertexCount
-P:GameplayKit.GKQuadTreeNode.Quad
-P:GameplayKit.GKRandomDistribution.HighestValue
-P:GameplayKit.GKRandomDistribution.LowestValue
-P:GameplayKit.GKRandomDistribution.NumberOfPossibleOutcomes
-P:GameplayKit.GKRandomSource.SharedRandom
-P:GameplayKit.GKRTree`1.QueryReserve
-P:GameplayKit.GKRule.Salience
-P:GameplayKit.GKRuleSystem.Agenda
-P:GameplayKit.GKRuleSystem.Executed
-P:GameplayKit.GKRuleSystem.Facts
-P:GameplayKit.GKRuleSystem.Rules
-P:GameplayKit.GKRuleSystem.State
-P:GameplayKit.GKScene.Entities
-P:GameplayKit.GKScene.Graphs
-P:GameplayKit.GKScene.RootNode
-P:GameplayKit.GKSCNNodeComponent.Node
-P:GameplayKit.GKSKNodeComponent.Node
-P:GameplayKit.GKSphereObstacle.Position
-P:GameplayKit.GKSphereObstacle.Radius
-P:GameplayKit.GKSpheresNoiseSource.Frequency
-P:GameplayKit.GKState.StateMachine
-P:GameplayKit.GKStateMachine.CurrentState
P:GameplayKit.GKTriangle.Points
-P:GameplayKit.GKVoronoiNoiseSource.Displacement
P:GameplayKit.GKVoronoiNoiseSource.DistanceEnabled
-P:GameplayKit.GKVoronoiNoiseSource.Frequency
-P:GameplayKit.GKVoronoiNoiseSource.Seed
P:GameplayKit.IGKGameModelPlayer.PlayerId
P:GameplayKit.IGKGameModelUpdate.Value
P:GameplayKit.IGKStrategist.GameModel
P:GameplayKit.IGKStrategist.RandomSource
-P:GLKit.GLKBaseEffect.ColorMaterialEnabled
-P:GLKit.GLKBaseEffect.ConstantColor
-P:GLKit.GLKBaseEffect.Fog
-P:GLKit.GLKBaseEffect.Label
-P:GLKit.GLKBaseEffect.Light0
-P:GLKit.GLKBaseEffect.Light1
-P:GLKit.GLKBaseEffect.Light2
-P:GLKit.GLKBaseEffect.LightingType
-P:GLKit.GLKBaseEffect.LightModelAmbientColor
-P:GLKit.GLKBaseEffect.LightModelTwoSided
-P:GLKit.GLKBaseEffect.Material
-P:GLKit.GLKBaseEffect.Texture2d0
-P:GLKit.GLKBaseEffect.Texture2d1
-P:GLKit.GLKBaseEffect.TextureOrder
-P:GLKit.GLKBaseEffect.Transform
-P:GLKit.GLKBaseEffect.UseConstantColor
-P:GLKit.GLKEffectPropertyFog.Color
-P:GLKit.GLKEffectPropertyFog.Density
-P:GLKit.GLKEffectPropertyFog.Enabled
-P:GLKit.GLKEffectPropertyFog.End
-P:GLKit.GLKEffectPropertyFog.Mode
-P:GLKit.GLKEffectPropertyFog.Start
-P:GLKit.GLKEffectPropertyLight.AmbientColor
-P:GLKit.GLKEffectPropertyLight.ConstantAttenuation
-P:GLKit.GLKEffectPropertyLight.DiffuseColor
-P:GLKit.GLKEffectPropertyLight.Enabled
-P:GLKit.GLKEffectPropertyLight.LinearAttenuation
-P:GLKit.GLKEffectPropertyLight.Position
-P:GLKit.GLKEffectPropertyLight.QuadraticAttenuation
-P:GLKit.GLKEffectPropertyLight.SpecularColor
-P:GLKit.GLKEffectPropertyLight.SpotCutoff
-P:GLKit.GLKEffectPropertyLight.SpotDirection
-P:GLKit.GLKEffectPropertyLight.SpotExponent
-P:GLKit.GLKEffectPropertyLight.Transform
-P:GLKit.GLKEffectPropertyMaterial.AmbientColor
-P:GLKit.GLKEffectPropertyMaterial.DiffuseColor
-P:GLKit.GLKEffectPropertyMaterial.EmissiveColor
-P:GLKit.GLKEffectPropertyMaterial.Shininess
-P:GLKit.GLKEffectPropertyMaterial.SpecularColor
-P:GLKit.GLKEffectPropertyTexture.Enabled
-P:GLKit.GLKEffectPropertyTexture.EnvMode
-P:GLKit.GLKEffectPropertyTexture.GLName
-P:GLKit.GLKEffectPropertyTexture.Target
-P:GLKit.GLKEffectPropertyTransform.ModelViewMatrix
-P:GLKit.GLKEffectPropertyTransform.NormalMatrix
-P:GLKit.GLKEffectPropertyTransform.ProjectionMatrix
-P:GLKit.GLKMesh.Name
-P:GLKit.GLKMesh.Submeshes
-P:GLKit.GLKMesh.VertexBuffers
-P:GLKit.GLKMesh.VertexCount
-P:GLKit.GLKMesh.VertexDescriptor
-P:GLKit.GLKMeshBuffer.Allocator
-P:GLKit.GLKMeshBuffer.GlBufferName
-P:GLKit.GLKMeshBuffer.Length
P:GLKit.GLKMeshBuffer.Map
-P:GLKit.GLKMeshBuffer.Offset
-P:GLKit.GLKMeshBuffer.Type
-P:GLKit.GLKMeshBuffer.Zone
-P:GLKit.GLKModelError.Domain
-P:GLKit.GLKModelError.Key
-P:GLKit.GLKReflectionMapEffect.Matrix
-P:GLKit.GLKReflectionMapEffect.TextureCubeMap
-P:GLKit.GLKSkyboxEffect.Center
-P:GLKit.GLKSkyboxEffect.Label
-P:GLKit.GLKSkyboxEffect.TextureCubeMap
-P:GLKit.GLKSkyboxEffect.Transform
-P:GLKit.GLKSkyboxEffect.XSize
-P:GLKit.GLKSkyboxEffect.YSize
-P:GLKit.GLKSkyboxEffect.ZSize
-P:GLKit.GLKSubmesh.ElementBuffer
-P:GLKit.GLKSubmesh.ElementCount
-P:GLKit.GLKSubmesh.Mesh
-P:GLKit.GLKSubmesh.Mode
-P:GLKit.GLKSubmesh.Name
-P:GLKit.GLKSubmesh.Type
-P:GLKit.GLKTextureInfo.AlphaState
-P:GLKit.GLKTextureInfo.ArrayLength
-P:GLKit.GLKTextureInfo.ContainsMipmaps
-P:GLKit.GLKTextureInfo.Depth
-P:GLKit.GLKTextureInfo.Height
-P:GLKit.GLKTextureInfo.MimapLevelCount
-P:GLKit.GLKTextureInfo.Name
-P:GLKit.GLKTextureInfo.Target
-P:GLKit.GLKTextureInfo.TextureOrigin
-P:GLKit.GLKTextureInfo.Width
-P:GLKit.GLKTextureLoader.ApplyPremultiplication
-P:GLKit.GLKTextureLoader.ErrorDomain
-P:GLKit.GLKTextureLoader.ErrorKey
-P:GLKit.GLKTextureLoader.GenerateMipmaps
-P:GLKit.GLKTextureLoader.GLErrorKey
-P:GLKit.GLKTextureLoader.GrayscaleAsAlpha
-P:GLKit.GLKTextureLoader.OriginBottomLeft
-P:GLKit.GLKTextureLoader.SRGB
-P:GLKit.GLKTextureOperations.ApplyPremultiplication
-P:GLKit.GLKTextureOperations.GenerateMipmaps
-P:GLKit.GLKTextureOperations.GrayscaleAsAlpha
-P:GLKit.GLKTextureOperations.OriginBottomLeft
-P:GLKit.GLKTextureOperations.SRGB
-P:GLKit.GLKView.Context
-P:GLKit.GLKView.Delegate
-P:GLKit.GLKView.DrawableColorFormat
-P:GLKit.GLKView.DrawableDepthFormat
-P:GLKit.GLKView.DrawableHeight
-P:GLKit.GLKView.DrawableMultisample
-P:GLKit.GLKView.DrawableStencilFormat
-P:GLKit.GLKView.DrawableWidth
-P:GLKit.GLKView.EnableSetNeedsDisplay
-P:GLKit.GLKView.WeakDelegate
P:GLKit.GLKViewController.Delegate
-P:GLKit.GLKViewController.FramesDisplayed
-P:GLKit.GLKViewController.FramesPerSecond
P:GLKit.GLKViewController.Paused
-P:GLKit.GLKViewController.PauseOnWillResignActive
-P:GLKit.GLKViewController.PreferredFramesPerSecond
-P:GLKit.GLKViewController.ResumeOnDidBecomeActive
-P:GLKit.GLKViewController.TimeSinceFirstResume
-P:GLKit.GLKViewController.TimeSinceLastDraw
-P:GLKit.GLKViewController.TimeSinceLastResume
-P:GLKit.GLKViewController.TimeSinceLastUpdate
-P:GLKit.GLKViewController.WeakDelegate
P:GLKit.GLKViewDrawEventArgs.Rect
-P:HealthKit.HKActivityMoveModeObject.ActivityMoveMode
-P:HealthKit.HKActivitySummary.ActiveEnergyBurned
-P:HealthKit.HKActivitySummary.ActiveEnergyBurnedGoal
-P:HealthKit.HKActivitySummary.ActivityMoveMode
-P:HealthKit.HKActivitySummary.AppleExerciseTime
-P:HealthKit.HKActivitySummary.AppleExerciseTimeGoal
-P:HealthKit.HKActivitySummary.AppleMoveTime
-P:HealthKit.HKActivitySummary.AppleMoveTimeGoal
-P:HealthKit.HKActivitySummary.AppleStandHours
-P:HealthKit.HKActivitySummary.AppleStandHoursGoal
-P:HealthKit.HKActivitySummary.ExerciseTimeGoal
P:HealthKit.HKActivitySummary.Paused
-P:HealthKit.HKActivitySummary.StandHoursGoal
-P:HealthKit.HKActivitySummaryQuery.UpdateHandler
-P:HealthKit.HKAnchoredObjectQuery.UpdateHandler
-P:HealthKit.HKAttachment.ContentType
-P:HealthKit.HKAttachment.CreationDate
-P:HealthKit.HKAttachment.Identifier
-P:HealthKit.HKAttachment.Metadata
-P:HealthKit.HKAttachment.Name
-P:HealthKit.HKAttachment.Size
-P:HealthKit.HKAudiogramSample.SensitivityPoints
-P:HealthKit.HKAudiogramSensitivityPoint.Frequency
-P:HealthKit.HKAudiogramSensitivityPoint.LeftEarSensitivity
-P:HealthKit.HKAudiogramSensitivityPoint.RightEarSensitivity
-P:HealthKit.HKAudiogramSensitivityPoint.Tests
-P:HealthKit.HKAudiogramSensitivityPointClampingRange.LowerBound
-P:HealthKit.HKAudiogramSensitivityPointClampingRange.UpperBound
-P:HealthKit.HKAudiogramSensitivityTest.ClampingRange
-P:HealthKit.HKAudiogramSensitivityTest.Masked
-P:HealthKit.HKAudiogramSensitivityTest.Sensitivity
-P:HealthKit.HKAudiogramSensitivityTest.Side
-P:HealthKit.HKAudiogramSensitivityTest.Type
-P:HealthKit.HKBiologicalSexObject.BiologicalSex
-P:HealthKit.HKBloodTypeObject.BloodType
-P:HealthKit.HKCategorySample.CategoryType
-P:HealthKit.HKCategorySample.Value
-P:HealthKit.HKCdaDocument.AuthorName
-P:HealthKit.HKCdaDocument.CustodianName
-P:HealthKit.HKCdaDocument.DocumentData
-P:HealthKit.HKCdaDocument.PatientName
-P:HealthKit.HKCdaDocument.Title
-P:HealthKit.HKCdaDocumentSample.Document
-P:HealthKit.HKClinicalRecord.ClinicalType
-P:HealthKit.HKClinicalRecord.DisplayName
-P:HealthKit.HKClinicalRecord.FhirResource
-P:HealthKit.HKContactsLensSpecification.BaseCurve
-P:HealthKit.HKContactsLensSpecification.Diameter
-P:HealthKit.HKContactsPrescription.Brand
-P:HealthKit.HKContactsPrescription.LeftEye
-P:HealthKit.HKContactsPrescription.RightEye
-P:HealthKit.HKCorrelation.CorrelationType
-P:HealthKit.HKCorrelation.Objects
-P:HealthKit.HKCorrelationQuery.CorrelationType
-P:HealthKit.HKCorrelationQuery.SamplePredicates
-P:HealthKit.HKCumulativeQuantitySample.SumQuantity
-P:HealthKit.HKCumulativeQuantitySeriesSample.Sum
P:HealthKit.HKDeletedObject.Metadata
-P:HealthKit.HKDeletedObject.Uuid
-P:HealthKit.HKDeletedObject.WeakMetadata
P:HealthKit.HKDetailedCdaErrors.ValidationError
-P:HealthKit.HKDevice.FirmwareVersion
-P:HealthKit.HKDevice.HardwareVersion
-P:HealthKit.HKDevice.LocalDevice
-P:HealthKit.HKDevice.LocalIdentifier
-P:HealthKit.HKDevice.Manufacturer
-P:HealthKit.HKDevice.Model
-P:HealthKit.HKDevice.Name
-P:HealthKit.HKDevice.SoftwareVersion
-P:HealthKit.HKDevice.UdiDeviceIdentifier
P:HealthKit.HKDevicePropertyKey.FirmwareVersion
P:HealthKit.HKDevicePropertyKey.HardwareVersion
P:HealthKit.HKDevicePropertyKey.LocalIdentifier
@@ -84819,61 +56906,9 @@ P:HealthKit.HKDevicePropertyKey.Model
P:HealthKit.HKDevicePropertyKey.Name
P:HealthKit.HKDevicePropertyKey.SoftwareVersion
P:HealthKit.HKDevicePropertyKey.UdiDeviceIdentifier
-P:HealthKit.HKDiscreteQuantitySample.Average
-P:HealthKit.HKDiscreteQuantitySample.Maximum
-P:HealthKit.HKDiscreteQuantitySample.Minimum
-P:HealthKit.HKDiscreteQuantitySample.MostRecent
-P:HealthKit.HKDiscreteQuantitySample.MostRecentDateInterval
-P:HealthKit.HKDocumentQuery.IncludeDocumentData
-P:HealthKit.HKDocumentQuery.Limit
-P:HealthKit.HKDocumentQuery.SortDescriptors
-P:HealthKit.HKDocumentSample.DocumentType
-P:HealthKit.HKElectrocardiogram.AverageHeartRate
-P:HealthKit.HKElectrocardiogram.Classification
-P:HealthKit.HKElectrocardiogram.NumberOfVoltageMeasurements
-P:HealthKit.HKElectrocardiogram.SamplingFrequency
-P:HealthKit.HKElectrocardiogram.SymptomsStatus
-P:HealthKit.HKElectrocardiogramVoltageMeasurement.TimeSinceSampleStart
-P:HealthKit.HKFhirResource.Data
-P:HealthKit.HKFhirResource.FhirVersion
-P:HealthKit.HKFhirResource.Identifier
P:HealthKit.HKFhirResource.ResourceType
-P:HealthKit.HKFhirResource.SourceUrl
-P:HealthKit.HKFhirVersion.FhirRelease
-P:HealthKit.HKFhirVersion.MajorVersion
-P:HealthKit.HKFhirVersion.MinorVersion
-P:HealthKit.HKFhirVersion.PatchVersion
-P:HealthKit.HKFhirVersion.PrimaryDstu2Version
-P:HealthKit.HKFhirVersion.PrimaryR4Version
-P:HealthKit.HKFhirVersion.StringRepresentation
-P:HealthKit.HKFitzpatrickSkinTypeObject.SkinType
-P:HealthKit.HKGad7Assessment.Answers
-P:HealthKit.HKGad7Assessment.Risk
-P:HealthKit.HKGlassesLensSpecification.FarPupillaryDistance
-P:HealthKit.HKGlassesLensSpecification.NearPupillaryDistance
-P:HealthKit.HKGlassesLensSpecification.Prism
-P:HealthKit.HKGlassesLensSpecification.VertexDistance
-P:HealthKit.HKGlassesPrescription.LeftEye
-P:HealthKit.HKGlassesPrescription.RightEye
-P:HealthKit.HKHealthStore.AuthorizationViewControllerPresenter
-P:HealthKit.HKHealthStore.EarliestPermittedSampleDate
-P:HealthKit.HKHealthStore.IsHealthDataAvailable
-P:HealthKit.HKHealthStore.SupportsHealthRecords
P:HealthKit.HKHealthStore.UserPreferencesDidChangeNotification
-P:HealthKit.HKHealthStore.WorkoutSessionMirroringStartHandler
-P:HealthKit.HKHeartbeatSeriesBuilder.MaximumCount
-P:HealthKit.HKLensSpecification.AddPower
-P:HealthKit.HKLensSpecification.Axis
-P:HealthKit.HKLensSpecification.Cylinder
-P:HealthKit.HKLensSpecification.Sphere
-P:HealthKit.HKLiveWorkoutBuilder.CurrentWorkoutActivity
-P:HealthKit.HKLiveWorkoutBuilder.DataSource
P:HealthKit.HKLiveWorkoutBuilder.Delegate
-P:HealthKit.HKLiveWorkoutBuilder.ElapsedTime
-P:HealthKit.HKLiveWorkoutBuilder.ShouldCollectWorkoutEvents
-P:HealthKit.HKLiveWorkoutBuilder.WeakDelegate
-P:HealthKit.HKLiveWorkoutBuilder.WorkoutSession
-P:HealthKit.HKLiveWorkoutDataSource.TypesToCollect
P:HealthKit.HKMetadata.AlpineSlopeGrade
P:HealthKit.HKMetadata.AppleFitnessPlusCatalogIdentifier
P:HealthKit.HKMetadata.AverageSpeed
@@ -84988,22 +57023,7 @@ P:HealthKit.HKMetadataKey.WeatherCondition
P:HealthKit.HKMetadataKey.WeatherHumidity
P:HealthKit.HKMetadataKey.WeatherTemperature
P:HealthKit.HKMetadataKey.WorkoutBrandName
-P:HealthKit.HKObject.Device
P:HealthKit.HKObject.Metadata
-P:HealthKit.HKObject.Source
-P:HealthKit.HKObject.SourceRevision
-P:HealthKit.HKObject.Uuid
-P:HealthKit.HKObject.WeakMetadata
-P:HealthKit.HKObjectType.ActivitySummaryType
-P:HealthKit.HKObjectType.AudiogramSampleType
-P:HealthKit.HKObjectType.ElectrocardiogramType
-P:HealthKit.HKObjectType.Identifier
-P:HealthKit.HKObjectType.RequiresPerObjectAuthorization
-P:HealthKit.HKObjectType.StateOfMindType
-P:HealthKit.HKObjectType.VisionPrescriptionType
-P:HealthKit.HKObjectType.WorkoutType
-P:HealthKit.HKPhq9Assessment.Answers
-P:HealthKit.HKPhq9Assessment.Risk
P:HealthKit.HKPredicateKeyPath.Average
P:HealthKit.HKPredicateKeyPath.AverageHeartRate
P:HealthKit.HKPredicateKeyPath.CategoryValue
@@ -85054,347 +57074,62 @@ P:HealthKit.HKPredicateKeyPath.WorkoutTotalDistance
P:HealthKit.HKPredicateKeyPath.WorkoutTotalEnergyBurned
P:HealthKit.HKPredicateKeyPath.WorkoutTotalSwimmingStrokeCount
P:HealthKit.HKPredicateKeyPath.WorkoutType
-P:HealthKit.HKQuantitySample.Count
-P:HealthKit.HKQuantitySample.Quantity
-P:HealthKit.HKQuantitySample.QuantityType
-P:HealthKit.HKQuantitySeriesSampleBuilder.Device
-P:HealthKit.HKQuantitySeriesSampleBuilder.QuantityType
-P:HealthKit.HKQuantitySeriesSampleBuilder.StartDate
-P:HealthKit.HKQuantitySeriesSampleQuery.IncludeSample
-P:HealthKit.HKQuantitySeriesSampleQuery.OrderByQuantitySampleStartDate
-P:HealthKit.HKQuantityType.AggregationStyle
-P:HealthKit.HKQuery.ObjectType
-P:HealthKit.HKQuery.Predicate
-P:HealthKit.HKQuery.SampleType
-P:HealthKit.HKQueryDescriptor.Predicate
-P:HealthKit.HKQueryDescriptor.SampleType
-P:HealthKit.HKSample.EndDate
-P:HealthKit.HKSample.HasUndeterminedDuration
-P:HealthKit.HKSample.SampleType
P:HealthKit.HKSample.SortIdentifierEndDate
P:HealthKit.HKSample.SortIdentifierStartDate
-P:HealthKit.HKSample.StartDate
-P:HealthKit.HKSampleQuery.Limit
-P:HealthKit.HKSampleQuery.SortDescriptors
-P:HealthKit.HKSampleType.AllowsRecalibrationForEstimates
-P:HealthKit.HKSampleType.IsMaximumDurationRestricted
-P:HealthKit.HKSampleType.IsMinimumDurationRestricted
-P:HealthKit.HKSampleType.MaximumAllowedDuration
-P:HealthKit.HKSampleType.MinimumAllowedDuration
-P:HealthKit.HKScoredAssessment.Score
-P:HealthKit.HKSeriesSample.Count
-P:HealthKit.HKSeriesType.HeartbeatSeriesType
-P:HealthKit.HKSeriesType.WorkoutRouteType
-P:HealthKit.HKSource.BundleIdentifier
-P:HealthKit.HKSource.GetDefaultSource
-P:HealthKit.HKSource.Name
-P:HealthKit.HKSourceRevision.OperatingSystemVersion
-P:HealthKit.HKSourceRevision.ProductType
-P:HealthKit.HKSourceRevision.Source
-P:HealthKit.HKSourceRevision.Version
P:HealthKit.HKSourceRevisionInfo.AnyProductType
P:HealthKit.HKSourceRevisionInfo.AnyVersion
-P:HealthKit.HKStateOfMind.Associations
-P:HealthKit.HKStateOfMind.Kind
-P:HealthKit.HKStateOfMind.Labels
-P:HealthKit.HKStateOfMind.Valence
-P:HealthKit.HKStateOfMind.ValenceClassification
-P:HealthKit.HKStatistics.Duration
-P:HealthKit.HKStatistics.EndDate
-P:HealthKit.HKStatistics.MostRecentQuantity
-P:HealthKit.HKStatistics.MostRecentQuantityDateInterval
-P:HealthKit.HKStatistics.QuantityType
-P:HealthKit.HKStatistics.Sources
-P:HealthKit.HKStatistics.StartDate
-P:HealthKit.HKStatisticsCollection.Sources
-P:HealthKit.HKStatisticsCollection.Statistics
-P:HealthKit.HKStatisticsCollectionQuery.AnchorDate
-P:HealthKit.HKStatisticsCollectionQuery.InitialResultsHandler
-P:HealthKit.HKStatisticsCollectionQuery.IntervalComponents
-P:HealthKit.HKStatisticsCollectionQuery.Options
-P:HealthKit.HKStatisticsCollectionQuery.StatisticsUpdated
-P:HealthKit.HKUnit.AppleEffortScoreUnit
-P:HealthKit.HKUnit.Atmosphere
-P:HealthKit.HKUnit.Calorie
-P:HealthKit.HKUnit.CentimeterOfWater
-P:HealthKit.HKUnit.Count
-P:HealthKit.HKUnit.CupImperialUnit
-P:HealthKit.HKUnit.CupUSUnit
-P:HealthKit.HKUnit.Day
-P:HealthKit.HKUnit.DecibelAWeightedSoundPressureLevelUnit
-P:HealthKit.HKUnit.DecibelHearingLevelUnit
-P:HealthKit.HKUnit.DegreeAngle
-P:HealthKit.HKUnit.DegreeCelsius
-P:HealthKit.HKUnit.DegreeFahrenheit
-P:HealthKit.HKUnit.Diopter
-P:HealthKit.HKUnit.FluidOunceImperialUnit
-P:HealthKit.HKUnit.FluidOunceUSUnit
-P:HealthKit.HKUnit.Foot
-P:HealthKit.HKUnit.Gram
-P:HealthKit.HKUnit.HertzUnit
-P:HealthKit.HKUnit.Hour
-P:HealthKit.HKUnit.Inch
-P:HealthKit.HKUnit.InchesOfMercury
-P:HealthKit.HKUnit.InternationalUnit
-P:HealthKit.HKUnit.IsNull
-P:HealthKit.HKUnit.Joule
-P:HealthKit.HKUnit.Kelvin
-P:HealthKit.HKUnit.Kilocalorie
-P:HealthKit.HKUnit.LargeCalorie
-P:HealthKit.HKUnit.Liter
-P:HealthKit.HKUnit.Lux
-P:HealthKit.HKUnit.Meter
-P:HealthKit.HKUnit.Mile
-P:HealthKit.HKUnit.MillimeterOfMercury
-P:HealthKit.HKUnit.Minute
-P:HealthKit.HKUnit.Ounce
-P:HealthKit.HKUnit.Pascal
-P:HealthKit.HKUnit.Percent
-P:HealthKit.HKUnit.PintImperialUnit
-P:HealthKit.HKUnit.PintUSUnit
-P:HealthKit.HKUnit.Pound
-P:HealthKit.HKUnit.PrismDiopter
-P:HealthKit.HKUnit.RadianAngle
-P:HealthKit.HKUnit.Second
-P:HealthKit.HKUnit.Siemen
-P:HealthKit.HKUnit.SmallCalorie
-P:HealthKit.HKUnit.Stone
-P:HealthKit.HKUnit.UnitString
-P:HealthKit.HKUnit.Volt
-P:HealthKit.HKUnit.Watt
-P:HealthKit.HKUnit.Yard
-P:HealthKit.HKVerifiableClinicalRecord.DataRepresentation
-P:HealthKit.HKVerifiableClinicalRecord.ExpirationDate
-P:HealthKit.HKVerifiableClinicalRecord.IssuedDate
-P:HealthKit.HKVerifiableClinicalRecord.IssuerIdentifier
-P:HealthKit.HKVerifiableClinicalRecord.ItemNames
-P:HealthKit.HKVerifiableClinicalRecord.JwsRepresentation
-P:HealthKit.HKVerifiableClinicalRecord.RecordTypes
-P:HealthKit.HKVerifiableClinicalRecord.RelevantDate
-P:HealthKit.HKVerifiableClinicalRecord.SourceType
-P:HealthKit.HKVerifiableClinicalRecord.Subject
-P:HealthKit.HKVerifiableClinicalRecordQuery.RecordTypes
-P:HealthKit.HKVerifiableClinicalRecordQuery.SourceTypes
-P:HealthKit.HKVerifiableClinicalRecordSubject.DateOfBirthComponents
-P:HealthKit.HKVerifiableClinicalRecordSubject.FullName
-P:HealthKit.HKVisionPrescription.DateIssued
-P:HealthKit.HKVisionPrescription.ExpirationDate
-P:HealthKit.HKVisionPrescription.PrescriptionType
P:HealthKit.HKVisionPrescription.TypeIdentifier
-P:HealthKit.HKVisionPrism.Amount
-P:HealthKit.HKVisionPrism.Angle
-P:HealthKit.HKVisionPrism.Eye
-P:HealthKit.HKVisionPrism.HorizontalAmount
-P:HealthKit.HKVisionPrism.HorizontalBase
-P:HealthKit.HKVisionPrism.VerticalAmount
-P:HealthKit.HKVisionPrism.VerticalBase
-P:HealthKit.HKWheelchairUseObject.WheelchairUse
-P:HealthKit.HKWorkout.AllStatistics
-P:HealthKit.HKWorkout.Duration
P:HealthKit.HKWorkout.SortIdentifierDuration
P:HealthKit.HKWorkout.SortIdentifierTotalDistance
P:HealthKit.HKWorkout.SortIdentifierTotalEnergyBurned
P:HealthKit.HKWorkout.SortIdentifierTotalFlightsClimbed
P:HealthKit.HKWorkout.SortIdentifierTotalSwimmingStrokeCount
-P:HealthKit.HKWorkout.TotalDistance
-P:HealthKit.HKWorkout.TotalEnergyBurned
-P:HealthKit.HKWorkout.TotalFlightsClimbed
-P:HealthKit.HKWorkout.TotalSwimmingStrokeCount
-P:HealthKit.HKWorkout.WorkoutActivities
-P:HealthKit.HKWorkout.WorkoutActivityType
-P:HealthKit.HKWorkout.WorkoutEvents
-P:HealthKit.HKWorkoutActivity.AllStatistics
-P:HealthKit.HKWorkoutActivity.Duration
-P:HealthKit.HKWorkoutActivity.EndDate
-P:HealthKit.HKWorkoutActivity.Metadata
-P:HealthKit.HKWorkoutActivity.StartDate
-P:HealthKit.HKWorkoutActivity.Uuid
-P:HealthKit.HKWorkoutActivity.WorkoutConfiguration
-P:HealthKit.HKWorkoutActivity.WorkoutEvents
-P:HealthKit.HKWorkoutBuilder.AllStatistics
-P:HealthKit.HKWorkoutBuilder.Device
-P:HealthKit.HKWorkoutBuilder.EndDate
P:HealthKit.HKWorkoutBuilder.Metadata
-P:HealthKit.HKWorkoutBuilder.NativeMetadata
-P:HealthKit.HKWorkoutBuilder.StartDate
-P:HealthKit.HKWorkoutBuilder.WorkoutActivities
-P:HealthKit.HKWorkoutBuilder.WorkoutConfiguration
-P:HealthKit.HKWorkoutBuilder.WorkoutEvents
-P:HealthKit.HKWorkoutConfiguration.ActivityType
-P:HealthKit.HKWorkoutConfiguration.LapLength
-P:HealthKit.HKWorkoutConfiguration.LocationType
-P:HealthKit.HKWorkoutConfiguration.SwimmingLocationType
-P:HealthKit.HKWorkoutEffortRelationship.Activity
-P:HealthKit.HKWorkoutEffortRelationship.Samples
-P:HealthKit.HKWorkoutEffortRelationship.Workout
-P:HealthKit.HKWorkoutEvent.Date
-P:HealthKit.HKWorkoutEvent.DateInterval
P:HealthKit.HKWorkoutEvent.Metadata
-P:HealthKit.HKWorkoutEvent.Type
-P:HealthKit.HKWorkoutEvent.WeakMetadata
P:HealthKit.HKWorkoutRoute.TypeIdentifier
-P:HealthKit.HKWorkoutSession.ActivityType
-P:HealthKit.HKWorkoutSession.AssociatedWorkoutBuilder
-P:HealthKit.HKWorkoutSession.CurrentActivity
P:HealthKit.HKWorkoutSession.Delegate
-P:HealthKit.HKWorkoutSession.EndDate
-P:HealthKit.HKWorkoutSession.LocationType
-P:HealthKit.HKWorkoutSession.StartDate
-P:HealthKit.HKWorkoutSession.State
-P:HealthKit.HKWorkoutSession.Type
-P:HealthKit.HKWorkoutSession.WeakDelegate
-P:HealthKit.HKWorkoutSession.WorkoutConfiguration
P:HealthKit.HKWorkoutType.Identifier
P:HealthKitUI.HKActivityRingView.ActivitySummary
P:HomeKit.HMAccessory.Blocked
P:HomeKit.HMAccessory.Bridged
-P:HomeKit.HMAccessory.CameraProfiles
-P:HomeKit.HMAccessory.Category
P:HomeKit.HMAccessory.Delegate
-P:HomeKit.HMAccessory.FirmwareVersion
-P:HomeKit.HMAccessory.Identifier
-P:HomeKit.HMAccessory.IdentifiersForBridgedAccessories
-P:HomeKit.HMAccessory.Manufacturer
-P:HomeKit.HMAccessory.MatterNodeId
-P:HomeKit.HMAccessory.Model
-P:HomeKit.HMAccessory.Name
-P:HomeKit.HMAccessory.Profiles
P:HomeKit.HMAccessory.Reachable
-P:HomeKit.HMAccessory.Room
-P:HomeKit.HMAccessory.Services
-P:HomeKit.HMAccessory.SupportsIdentify
-P:HomeKit.HMAccessory.UniqueIdentifier
-P:HomeKit.HMAccessory.UniqueIdentifiersForBridgedAccessories
-P:HomeKit.HMAccessory.WeakDelegate
P:HomeKit.HMAccessoryBrowser.Delegate
-P:HomeKit.HMAccessoryBrowser.DiscoveredAccessories
-P:HomeKit.HMAccessoryBrowser.WeakDelegate
P:HomeKit.HMAccessoryBrowserEventArgs.Accessory
P:HomeKit.HMAccessoryCategory.CategoryType
-P:HomeKit.HMAccessoryCategory.LocalizedDescription
P:HomeKit.HMAccessoryFirmwareVersionEventArgs.FirmwareVersion
-P:HomeKit.HMAccessoryProfile.Accessory
-P:HomeKit.HMAccessoryProfile.Services
-P:HomeKit.HMAccessoryProfile.UniqueIdentifier
P:HomeKit.HMAccessoryProfileEventArgs.Profile
P:HomeKit.HMAccessoryServiceUpdateCharacteristicEventArgs.Characteristic
P:HomeKit.HMAccessoryServiceUpdateCharacteristicEventArgs.Service
-P:HomeKit.HMAccessorySetupRequest.HomeUniqueIdentifier
-P:HomeKit.HMAccessorySetupRequest.Payload
-P:HomeKit.HMAccessorySetupRequest.SuggestedAccessoryName
-P:HomeKit.HMAccessorySetupRequest.SuggestedRoomUniqueIdentifier
-P:HomeKit.HMAccessorySetupResult.AccessoryUniqueIdentifiers
-P:HomeKit.HMAccessorySetupResult.HomeUniqueIdentifier
P:HomeKit.HMAccessoryUpdateEventArgs.Service
-P:HomeKit.HMAction.UniqueIdentifier
-P:HomeKit.HMActionSet.Actions
P:HomeKit.HMActionSet.ActionSetType
P:HomeKit.HMActionSet.Executing
-P:HomeKit.HMActionSet.LastExecutionDate
-P:HomeKit.HMActionSet.Name
-P:HomeKit.HMActionSet.UniqueIdentifier
-P:HomeKit.HMAddAccessoryRequest.AccessoryCategory
-P:HomeKit.HMAddAccessoryRequest.AccessoryName
-P:HomeKit.HMAddAccessoryRequest.Home
-P:HomeKit.HMAddAccessoryRequest.RequiresSetupPayloadUrl
-P:HomeKit.HMCalendarEvent.FireDateComponents
-P:HomeKit.HMCameraAudioControl.Mute
-P:HomeKit.HMCameraAudioControl.Volume
-P:HomeKit.HMCameraProfile.MicrophoneControl
-P:HomeKit.HMCameraProfile.SettingsControl
-P:HomeKit.HMCameraProfile.SnapshotControl
-P:HomeKit.HMCameraProfile.SpeakerControl
-P:HomeKit.HMCameraProfile.StreamControl
-P:HomeKit.HMCameraSettingsControl.CurrentHorizontalTilt
-P:HomeKit.HMCameraSettingsControl.CurrentVerticalTilt
-P:HomeKit.HMCameraSettingsControl.DigitalZoom
-P:HomeKit.HMCameraSettingsControl.ImageMirroring
-P:HomeKit.HMCameraSettingsControl.ImageRotation
-P:HomeKit.HMCameraSettingsControl.NightVision
-P:HomeKit.HMCameraSettingsControl.OpticalZoom
-P:HomeKit.HMCameraSettingsControl.TargetHorizontalTilt
-P:HomeKit.HMCameraSettingsControl.TargetVerticalTilt
-P:HomeKit.HMCameraSnapshot.CaptureDate
-P:HomeKit.HMCameraSnapshotControl.Delegate
-P:HomeKit.HMCameraSnapshotControl.MostRecentSnapshot
-P:HomeKit.HMCameraSource.AspectRatio
-P:HomeKit.HMCameraStream.AudioStreamSetting
-P:HomeKit.HMCameraStreamControl.CameraStream
-P:HomeKit.HMCameraStreamControl.Delegate
-P:HomeKit.HMCameraStreamControl.StreamState
-P:HomeKit.HMCameraView.CameraSource
P:HomeKit.HMCharacteristic.CharacteristicType
P:HomeKit.HMCharacteristic.Hidden
P:HomeKit.HMCharacteristic.KeyPath
-P:HomeKit.HMCharacteristic.LocalizedDescription
-P:HomeKit.HMCharacteristic.Metadata
P:HomeKit.HMCharacteristic.NotificationEnabled
-P:HomeKit.HMCharacteristic.Properties
P:HomeKit.HMCharacteristic.Readable
-P:HomeKit.HMCharacteristic.Service
P:HomeKit.HMCharacteristic.SupportsEventNotification
-P:HomeKit.HMCharacteristic.UniqueIdentifier
-P:HomeKit.HMCharacteristic.Value
P:HomeKit.HMCharacteristic.ValueKeyPath
P:HomeKit.HMCharacteristic.Writable
-P:HomeKit.HMCharacteristicEvent.Characteristic
-P:HomeKit.HMCharacteristicEvent.TriggerValue
P:HomeKit.HMCharacteristicMetadata.Format
-P:HomeKit.HMCharacteristicMetadata.ManufacturerDescription
-P:HomeKit.HMCharacteristicMetadata.MaximumValue
-P:HomeKit.HMCharacteristicMetadata.MaxLength
-P:HomeKit.HMCharacteristicMetadata.MinimumValue
-P:HomeKit.HMCharacteristicMetadata.StepValue
P:HomeKit.HMCharacteristicMetadata.Units
-P:HomeKit.HMCharacteristicMetadata.ValidValues
P:HomeKit.HMCharacteristicProperties.Readable
P:HomeKit.HMCharacteristicProperties.SupportsBonjourNotification
P:HomeKit.HMCharacteristicProperties.SupportsChangeNumber
P:HomeKit.HMCharacteristicProperties.SupportsEventNotification
P:HomeKit.HMCharacteristicProperties.Writable
-P:HomeKit.HMCharacteristicThresholdRangeEvent.Characteristic
-P:HomeKit.HMCharacteristicThresholdRangeEvent.ThresholdRange
-P:HomeKit.HMCharacteristicWriteAction.Characteristic
-P:HomeKit.HMCharacteristicWriteAction.TargetValue
-P:HomeKit.HMDurationEvent.Duration
P:HomeKit.HMErrors.HMErrorDomain
-P:HomeKit.HMEvent.UniqueIdentifier
-P:HomeKit.HMEventTrigger.EndEvents
-P:HomeKit.HMEventTrigger.Events
-P:HomeKit.HMEventTrigger.ExecuteOnce
-P:HomeKit.HMEventTrigger.Predicate
-P:HomeKit.HMEventTrigger.Recurrences
-P:HomeKit.HMEventTrigger.TriggerActivationState
-P:HomeKit.HMHome.Accessories
-P:HomeKit.HMHome.ActionSets
-P:HomeKit.HMHome.CurrentUser
P:HomeKit.HMHome.Delegate
-P:HomeKit.HMHome.HomeHubState
-P:HomeKit.HMHome.MatterControllerId
-P:HomeKit.HMHome.MatterControllerXPCConnectBlock
-P:HomeKit.HMHome.MatterStartupParametersXPCConnectHandler
-P:HomeKit.HMHome.Name
P:HomeKit.HMHome.Primary
-P:HomeKit.HMHome.Rooms
-P:HomeKit.HMHome.ServiceGroups
-P:HomeKit.HMHome.SupportsAddingNetworkRouter
-P:HomeKit.HMHome.Triggers
-P:HomeKit.HMHome.UniqueIdentifier
P:HomeKit.HMHome.UserFailedAccessoriesKey
-P:HomeKit.HMHome.Users
-P:HomeKit.HMHome.WeakDelegate
-P:HomeKit.HMHome.Zones
P:HomeKit.HMHomeAccessControl.Administrator
P:HomeKit.HMHomeAccessoryEventArgs.Accessory
P:HomeKit.HMHomeActionSetEventArgs.ActionSet
P:HomeKit.HMHomeErrorAccessoryEventArgs.Accessory
P:HomeKit.HMHomeErrorAccessoryEventArgs.Error
P:HomeKit.HMHomeHubStateEventArgs.HomeHubState
-P:HomeKit.HMHomeManager.AuthorizationStatus
P:HomeKit.HMHomeManager.Delegate
-P:HomeKit.HMHomeManager.Homes
-P:HomeKit.HMHomeManager.PrimaryHome
-P:HomeKit.HMHomeManager.WeakDelegate
P:HomeKit.HMHomeManagerAddAccessoryRequestEventArgs.Request
P:HomeKit.HMHomeManagerAuthorizationStatusEventArgs.Status
P:HomeKit.HMHomeManagerEventArgs.Home
@@ -85409,7 +57144,6 @@ P:HomeKit.HMHomeServiceServiceGroupEventArgs.Service
P:HomeKit.HMHomeTriggerEventArgs.Trigger
P:HomeKit.HMHomeUserEventArgs.User
P:HomeKit.HMHomeZoneEventArgs.Zone
-P:HomeKit.HMLocationEvent.Region
P:HomeKit.HMMatterHome.ClassHandle
P:HomeKit.HMMatterHome.Name
P:HomeKit.HMMatterHome.Uuid
@@ -85419,58 +57153,15 @@ P:HomeKit.HMMatterRoom.Name
P:HomeKit.HMMatterRoom.Uuid
P:HomeKit.HMMatterTopology.ClassHandle
P:HomeKit.HMMatterTopology.Homes
-P:HomeKit.HMMutableCalendarEvent.FireDateComponents
-P:HomeKit.HMMutableCharacteristicEvent.Characteristic
-P:HomeKit.HMMutableCharacteristicEvent.TriggerValue
-P:HomeKit.HMMutableCharacteristicThresholdRangeEvent.Characteristic
-P:HomeKit.HMMutableCharacteristicThresholdRangeEvent.ThresholdRange
-P:HomeKit.HMMutableDurationEvent.Duration
-P:HomeKit.HMMutableLocationEvent.Region
-P:HomeKit.HMMutablePresenceEvent.PresenceEventType
-P:HomeKit.HMMutablePresenceEvent.PresenceUserType
-P:HomeKit.HMMutableSignificantTimeEvent.Offset
P:HomeKit.HMMutableSignificantTimeEvent.SignificantEvent
P:HomeKit.HMNetworkConfigurationProfile.Delegate
P:HomeKit.HMNetworkConfigurationProfile.NetworkAccessRestricted
-P:HomeKit.HMNetworkConfigurationProfile.WeakDelegate
-P:HomeKit.HMNumberRange.Max
-P:HomeKit.HMNumberRange.Min
P:HomeKit.HMPresenceEvent.KeyPath
-P:HomeKit.HMPresenceEvent.PresenceEventType
-P:HomeKit.HMPresenceEvent.PresenceUserType
-P:HomeKit.HMRoom.Accessories
-P:HomeKit.HMRoom.Name
-P:HomeKit.HMRoom.UniqueIdentifier
-P:HomeKit.HMService.Accessory
-P:HomeKit.HMService.AssociatedServiceType
-P:HomeKit.HMService.Characteristics
-P:HomeKit.HMService.LinkedServices
-P:HomeKit.HMService.LocalizedDescription
-P:HomeKit.HMService.MatterEndpointId
-P:HomeKit.HMService.Name
P:HomeKit.HMService.PrimaryService
P:HomeKit.HMService.ServiceType
-P:HomeKit.HMService.UniqueIdentifier
P:HomeKit.HMService.UserInteractive
-P:HomeKit.HMServiceGroup.Name
-P:HomeKit.HMServiceGroup.Services
-P:HomeKit.HMServiceGroup.UniqueIdentifier
-P:HomeKit.HMSignificantTimeEvent.Offset
P:HomeKit.HMSignificantTimeEvent.SignificantEvent
-P:HomeKit.HMTimerTrigger.FireDate
-P:HomeKit.HMTimerTrigger.Recurrence
-P:HomeKit.HMTimerTrigger.RecurrenceCalendar
-P:HomeKit.HMTimerTrigger.TimeZone
-P:HomeKit.HMTrigger.ActionSets
P:HomeKit.HMTrigger.Enabled
-P:HomeKit.HMTrigger.LastFireDate
-P:HomeKit.HMTrigger.Name
-P:HomeKit.HMTrigger.UniqueIdentifier
-P:HomeKit.HMUser.Name
-P:HomeKit.HMUser.UniqueIdentifier
-P:HomeKit.HMZone.Name
-P:HomeKit.HMZone.Rooms
-P:HomeKit.HMZone.UniqueIdentifier
P:IdentityLookup.ILCallClassificationRequest.CallCommunications
P:IdentityLookup.ILClassificationResponse.Action
P:IdentityLookup.ILClassificationResponse.UserInfo
@@ -85496,15 +57187,7 @@ P:ImageCaptureCore.ICButtonType.Print
P:ImageCaptureCore.ICButtonType.Scan
P:ImageCaptureCore.ICButtonType.Transfer
P:ImageCaptureCore.ICButtonType.Web
-P:ImageCaptureCore.ICCameraDevice.BatteryLevel
-P:ImageCaptureCore.ICCameraDevice.BatteryLevelAvailable
-P:ImageCaptureCore.ICCameraDevice.ContentCatalogPercentCompleted
-P:ImageCaptureCore.ICCameraDevice.Contents
P:ImageCaptureCore.ICCameraDevice.IsAccessRestrictedAppleDevice
-P:ImageCaptureCore.ICCameraDevice.MediaFiles
-P:ImageCaptureCore.ICCameraDevice.MountPoint
-P:ImageCaptureCore.ICCameraDevice.TetheredCaptureEnabled
-P:ImageCaptureCore.ICCameraDevice.TimeOffset
P:ImageCaptureCore.ICCameraDownloadOptionKeys.DeleteAfterSuccessfulDownload
P:ImageCaptureCore.ICCameraDownloadOptionKeys.DownloadsDirectoryUrl
P:ImageCaptureCore.ICCameraDownloadOptionKeys.DownloadSidecarFiles
@@ -85512,58 +57195,18 @@ P:ImageCaptureCore.ICCameraDownloadOptionKeys.Overwrite
P:ImageCaptureCore.ICCameraDownloadOptionKeys.SaveAsFilename
P:ImageCaptureCore.ICCameraDownloadOptionKeys.SavedAncillaryFiles
P:ImageCaptureCore.ICCameraDownloadOptionKeys.SavedFilename
-P:ImageCaptureCore.ICCameraFile.Duration
-P:ImageCaptureCore.ICCameraFile.FileSize
-P:ImageCaptureCore.ICCameraFile.Orientation
-P:ImageCaptureCore.ICCameraFile.SidecarFiles
-P:ImageCaptureCore.ICCameraFolder.Contents
P:ImageCaptureCore.ICCameraItem.AddedAfterContentCatalogCompleted
-P:ImageCaptureCore.ICCameraItem.CreationDate
-P:ImageCaptureCore.ICCameraItem.Device
-P:ImageCaptureCore.ICCameraItem.FileSystemPath
P:ImageCaptureCore.ICCameraItem.InTemporaryStore
-P:ImageCaptureCore.ICCameraItem.LargeThumbnailIfAvailable
P:ImageCaptureCore.ICCameraItem.Locked
-P:ImageCaptureCore.ICCameraItem.MetadataIfAvailable
-P:ImageCaptureCore.ICCameraItem.ModificationDate
-P:ImageCaptureCore.ICCameraItem.Name
-P:ImageCaptureCore.ICCameraItem.ParentFolder
-P:ImageCaptureCore.ICCameraItem.PtpObjectHandle
P:ImageCaptureCore.ICCameraItem.Raw
-P:ImageCaptureCore.ICCameraItem.ThumbnailIfAvailable
-P:ImageCaptureCore.ICCameraItem.UserData
-P:ImageCaptureCore.ICCameraItem.Uti
-P:ImageCaptureCore.ICDevice.AutolaunchApplicationPath
P:ImageCaptureCore.ICDevice.ButtonPressed
-P:ImageCaptureCore.ICDevice.Capabilities
P:ImageCaptureCore.ICDevice.Delegate
P:ImageCaptureCore.ICDevice.FireWireGuid
P:ImageCaptureCore.ICDevice.HasConfigurableWiFiInterface
-P:ImageCaptureCore.ICDevice.HasOpenSession
-P:ImageCaptureCore.ICDevice.Icon
-P:ImageCaptureCore.ICDevice.LocationDescription
-P:ImageCaptureCore.ICDevice.ModuleExecutableArchitecture
-P:ImageCaptureCore.ICDevice.ModulePath
-P:ImageCaptureCore.ICDevice.ModuleVersion
-P:ImageCaptureCore.ICDevice.Name
-P:ImageCaptureCore.ICDevice.PersistentId
P:ImageCaptureCore.ICDevice.Remote
-P:ImageCaptureCore.ICDevice.SerialNumber
P:ImageCaptureCore.ICDevice.Shared
-P:ImageCaptureCore.ICDevice.TransportType
-P:ImageCaptureCore.ICDevice.Type
-P:ImageCaptureCore.ICDevice.UsbLocationId
-P:ImageCaptureCore.ICDevice.UsbProductId
-P:ImageCaptureCore.ICDevice.UsbVendorId
-P:ImageCaptureCore.ICDevice.UserData
-P:ImageCaptureCore.ICDevice.Uuid
-P:ImageCaptureCore.ICDevice.WeakDelegate
-P:ImageCaptureCore.ICDeviceBrowser.BrowsedDeviceTypeMask
P:ImageCaptureCore.ICDeviceBrowser.Browsing
P:ImageCaptureCore.ICDeviceBrowser.Delegate
-P:ImageCaptureCore.ICDeviceBrowser.Devices
-P:ImageCaptureCore.ICDeviceBrowser.PreferredDevice
-P:ImageCaptureCore.ICDeviceBrowser.WeakDelegate
P:ImageCaptureCore.ICDeviceCapabilities.CameraDeviceCanAcceptPtpCommands
P:ImageCaptureCore.ICDeviceCapabilities.CameraDeviceCanDeleteAllFiles
P:ImageCaptureCore.ICDeviceCapabilities.CameraDeviceCanDeleteOneFile
@@ -85577,137 +57220,21 @@ P:ImageCaptureCore.ICDeviceLocationDescriptions.FireWire
P:ImageCaptureCore.ICDeviceLocationDescriptions.MassStorage
P:ImageCaptureCore.ICDeviceLocationDescriptions.Usb
P:ImageCaptureCore.ICScannerBandData.BigEndian
-P:ImageCaptureCore.ICScannerBandData.BitsPerComponent
-P:ImageCaptureCore.ICScannerBandData.BitsPerPixel
-P:ImageCaptureCore.ICScannerBandData.BytesPerRow
-P:ImageCaptureCore.ICScannerBandData.ColorSyncProfilePath
-P:ImageCaptureCore.ICScannerBandData.DataBuffer
-P:ImageCaptureCore.ICScannerBandData.DataNumRows
-P:ImageCaptureCore.ICScannerBandData.DataSize
-P:ImageCaptureCore.ICScannerBandData.DataStartRow
-P:ImageCaptureCore.ICScannerBandData.FullImageHeight
-P:ImageCaptureCore.ICScannerBandData.FullImageWidth
-P:ImageCaptureCore.ICScannerBandData.NumComponents
-P:ImageCaptureCore.ICScannerBandData.PixelDataType
-P:ImageCaptureCore.ICScannerDevice.AvailableFunctionalUnitTypes
-P:ImageCaptureCore.ICScannerDevice.DefaultUsername
-P:ImageCaptureCore.ICScannerDevice.DocumentName
-P:ImageCaptureCore.ICScannerDevice.DocumentUti
-P:ImageCaptureCore.ICScannerDevice.DownloadsDirectory
-P:ImageCaptureCore.ICScannerDevice.MaxMemoryBandSize
-P:ImageCaptureCore.ICScannerDevice.SelectedFunctionalUnit
-P:ImageCaptureCore.ICScannerDevice.TransferMode
-P:ImageCaptureCore.ICScannerFeature.HumanReadableName
-P:ImageCaptureCore.ICScannerFeature.InternalName
-P:ImageCaptureCore.ICScannerFeature.Tooltip
-P:ImageCaptureCore.ICScannerFeature.Type
-P:ImageCaptureCore.ICScannerFeatureBoolean.Value
-P:ImageCaptureCore.ICScannerFeatureEnumeration.CurrentValue
-P:ImageCaptureCore.ICScannerFeatureEnumeration.DefaultValue
-P:ImageCaptureCore.ICScannerFeatureEnumeration.MenuItemLabels
-P:ImageCaptureCore.ICScannerFeatureEnumeration.MenuItemLabelsTooltips
-P:ImageCaptureCore.ICScannerFeatureEnumeration.Values
-P:ImageCaptureCore.ICScannerFeatureRange.CurrentValue
-P:ImageCaptureCore.ICScannerFeatureRange.DefaultValue
-P:ImageCaptureCore.ICScannerFeatureRange.MaxValue
-P:ImageCaptureCore.ICScannerFeatureRange.MinValue
-P:ImageCaptureCore.ICScannerFeatureRange.StepSize
-P:ImageCaptureCore.ICScannerFeatureTemplate.Targets
-P:ImageCaptureCore.ICScannerFunctionalUnit.AcceptsThresholdForBlackAndWhiteScanning
-P:ImageCaptureCore.ICScannerFunctionalUnit.BitDepth
-P:ImageCaptureCore.ICScannerFunctionalUnit.CanPerformOverviewScan
-P:ImageCaptureCore.ICScannerFunctionalUnit.DefaultThresholdForBlackAndWhiteScanning
-P:ImageCaptureCore.ICScannerFunctionalUnit.MeasurementUnit
-P:ImageCaptureCore.ICScannerFunctionalUnit.NativeXResolution
-P:ImageCaptureCore.ICScannerFunctionalUnit.NativeYResolution
-P:ImageCaptureCore.ICScannerFunctionalUnit.OverviewImage
-P:ImageCaptureCore.ICScannerFunctionalUnit.OverviewResolution
-P:ImageCaptureCore.ICScannerFunctionalUnit.OverviewScanInProgress
-P:ImageCaptureCore.ICScannerFunctionalUnit.PhysicalSize
-P:ImageCaptureCore.ICScannerFunctionalUnit.PixelDataType
-P:ImageCaptureCore.ICScannerFunctionalUnit.PreferredResolutions
-P:ImageCaptureCore.ICScannerFunctionalUnit.PreferredScaleFactors
-P:ImageCaptureCore.ICScannerFunctionalUnit.Resolution
-P:ImageCaptureCore.ICScannerFunctionalUnit.ScaleFactor
-P:ImageCaptureCore.ICScannerFunctionalUnit.ScanArea
-P:ImageCaptureCore.ICScannerFunctionalUnit.ScanAreaOrientation
-P:ImageCaptureCore.ICScannerFunctionalUnit.ScanInProgress
-P:ImageCaptureCore.ICScannerFunctionalUnit.ScanProgressPercentDone
-P:ImageCaptureCore.ICScannerFunctionalUnit.State
-P:ImageCaptureCore.ICScannerFunctionalUnit.SupportedBitDepths
-P:ImageCaptureCore.ICScannerFunctionalUnit.SupportedMeasurementUnits
-P:ImageCaptureCore.ICScannerFunctionalUnit.SupportedResolutions
-P:ImageCaptureCore.ICScannerFunctionalUnit.SupportedScaleFactors
-P:ImageCaptureCore.ICScannerFunctionalUnit.Templates
-P:ImageCaptureCore.ICScannerFunctionalUnit.ThresholdForBlackAndWhiteScanning
-P:ImageCaptureCore.ICScannerFunctionalUnit.Type
-P:ImageCaptureCore.ICScannerFunctionalUnit.UsesThresholdForBlackAndWhiteScanning
-P:ImageCaptureCore.ICScannerFunctionalUnit.VendorFeatures
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.DocumentLoaded
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.DocumentSize
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.DocumentType
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.DuplexScanningEnabled
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.EvenPageOrientation
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.OddPageOrientation
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.ReverseFeederPageOrder
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.SupportedDocumentTypes
-P:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder.SupportsDuplexScanning
-P:ImageCaptureCore.ICScannerFunctionalUnitFlatbed.DocumentSize
-P:ImageCaptureCore.ICScannerFunctionalUnitFlatbed.DocumentType
-P:ImageCaptureCore.ICScannerFunctionalUnitFlatbed.SupportedDocumentTypes
-P:ImageCaptureCore.ICScannerFunctionalUnitNegativeTransparency.DocumentSize
-P:ImageCaptureCore.ICScannerFunctionalUnitNegativeTransparency.DocumentType
-P:ImageCaptureCore.ICScannerFunctionalUnitNegativeTransparency.SupportedDocumentTypes
-P:ImageCaptureCore.ICScannerFunctionalUnitPositiveTransparency.DocumentSize
-P:ImageCaptureCore.ICScannerFunctionalUnitPositiveTransparency.DocumentType
-P:ImageCaptureCore.ICScannerFunctionalUnitPositiveTransparency.SupportedDocumentTypes
P:ImageCaptureCore.ICScannerStatus.RequestsOverviewScan
P:ImageCaptureCore.ICScannerStatus.WarmingUp
P:ImageCaptureCore.ICScannerStatus.WarmUpDone
P:ImageCaptureCore.ICStatusNotificationKeys.CodeKey
P:ImageCaptureCore.ICStatusNotificationKeys.LocalizedNotificationKey
P:ImageCaptureCore.ICStatusNotificationKeys.NotificationKey
-P:ImageIO.CGCopyImageSourceOptions.DateTime
-P:ImageIO.CGCopyImageSourceOptions.MergeMetadata
-P:ImageIO.CGCopyImageSourceOptions.Metadata
-P:ImageIO.CGCopyImageSourceOptions.Orientation
-P:ImageIO.CGCopyImageSourceOptions.ShouldExcludeGPS
-P:ImageIO.CGCopyImageSourceOptions.ShouldExcludeXMP
P:ImageIO.CGImageAnimationOptions.DelayTime
P:ImageIO.CGImageAnimationOptions.LoopCount
P:ImageIO.CGImageAnimationOptions.StartIndex
P:ImageIO.CGImageAuxiliaryDataInfo.ColorSpace
-P:ImageIO.CGImageAuxiliaryDataInfo.Data
-P:ImageIO.CGImageAuxiliaryDataInfo.DataDescription
-P:ImageIO.CGImageAuxiliaryDataInfo.Metadata
-P:ImageIO.CGImageDestination.TypeIdentifiers
P:ImageIO.CGImageDestinationOptions.AvisDictionary
-P:ImageIO.CGImageDestinationOptions.CiffDictionary
-P:ImageIO.CGImageDestinationOptions.DestinationBackgroundColor
-P:ImageIO.CGImageDestinationOptions.DngDictionary
-P:ImageIO.CGImageDestinationOptions.EightBimDictionary
-P:ImageIO.CGImageDestinationOptions.EmbedThumbnail
-P:ImageIO.CGImageDestinationOptions.ExifAuxDictionary
-P:ImageIO.CGImageDestinationOptions.ExifDictionary
-P:ImageIO.CGImageDestinationOptions.GifDictionary
-P:ImageIO.CGImageDestinationOptions.GpsDictionary
-P:ImageIO.CGImageDestinationOptions.ImageMaxPixelSize
-P:ImageIO.CGImageDestinationOptions.IptcDictionary
-P:ImageIO.CGImageDestinationOptions.JfifDictionary
-P:ImageIO.CGImageDestinationOptions.LossyCompressionQuality
-P:ImageIO.CGImageDestinationOptions.OptimizeColorForSharing
-P:ImageIO.CGImageDestinationOptions.PngDictionary
P:ImageIO.CGImageDestinationOptions.PreserveGainMap
-P:ImageIO.CGImageDestinationOptions.RawDictionary
P:ImageIO.CGImageDestinationOptions.TgaDictionary
-P:ImageIO.CGImageDestinationOptions.TiffDictionary
P:ImageIO.CGImageDestinationOptions.WebPDictionary
P:ImageIO.CGImageDestinationOptionsKeys.AvisDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.BackgroundColor
-P:ImageIO.CGImageDestinationOptionsKeys.CIFFDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.DNGDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.EightBIMDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.EmbedThumbnail
P:ImageIO.CGImageDestinationOptionsKeys.EncodeBaseIsSdr
P:ImageIO.CGImageDestinationOptionsKeys.EncodeRequest
P:ImageIO.CGImageDestinationOptionsKeys.EncodeRequestOptions
@@ -85715,313 +57242,22 @@ P:ImageIO.CGImageDestinationOptionsKeys.EncodeToIsoGainmap
P:ImageIO.CGImageDestinationOptionsKeys.EncodeToIsoHdr
P:ImageIO.CGImageDestinationOptionsKeys.EncodeTonemapMode
P:ImageIO.CGImageDestinationOptionsKeys.EncodeToSdr
-P:ImageIO.CGImageDestinationOptionsKeys.ExifAuxDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.ExifDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.GIFDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.GPSDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.ImageMaxPixelSize
-P:ImageIO.CGImageDestinationOptionsKeys.IPTCDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.JFIFDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.LossyCompressionQuality
-P:ImageIO.CGImageDestinationOptionsKeys.OptimizeColorForSharing
-P:ImageIO.CGImageDestinationOptionsKeys.PNGDictionary
P:ImageIO.CGImageDestinationOptionsKeys.PreserveGainMapKey
-P:ImageIO.CGImageDestinationOptionsKeys.RawDictionary
P:ImageIO.CGImageDestinationOptionsKeys.TgaDictionary
-P:ImageIO.CGImageDestinationOptionsKeys.TIFFDictionary
P:ImageIO.CGImageDestinationOptionsKeys.WebPDictionary
-P:ImageIO.CGImageMetadataEnumerateOptions.Recursive
-P:ImageIO.CGImageMetadataTag.Name
-P:ImageIO.CGImageMetadataTag.Namespace
-P:ImageIO.CGImageMetadataTag.Prefix
-P:ImageIO.CGImageMetadataTag.Type
-P:ImageIO.CGImageMetadataTag.Value
-P:ImageIO.CGImageMetadataTagNamespaces.DublinCore
-P:ImageIO.CGImageMetadataTagNamespaces.Exif
-P:ImageIO.CGImageMetadataTagNamespaces.ExifAux
-P:ImageIO.CGImageMetadataTagNamespaces.ExifEx
-P:ImageIO.CGImageMetadataTagNamespaces.IPTCCore
-P:ImageIO.CGImageMetadataTagNamespaces.IPTCExtension
-P:ImageIO.CGImageMetadataTagNamespaces.Photoshop
-P:ImageIO.CGImageMetadataTagNamespaces.TIFF
-P:ImageIO.CGImageMetadataTagNamespaces.XMPBasic
-P:ImageIO.CGImageMetadataTagNamespaces.XMPRights
-P:ImageIO.CGImageMetadataTagPrefixes.DublinCore
-P:ImageIO.CGImageMetadataTagPrefixes.Exif
-P:ImageIO.CGImageMetadataTagPrefixes.ExifAux
-P:ImageIO.CGImageMetadataTagPrefixes.ExifEx
-P:ImageIO.CGImageMetadataTagPrefixes.IPTCCore
-P:ImageIO.CGImageMetadataTagPrefixes.IPTCExtension
-P:ImageIO.CGImageMetadataTagPrefixes.Photoshop
-P:ImageIO.CGImageMetadataTagPrefixes.TIFF
-P:ImageIO.CGImageMetadataTagPrefixes.XMPBasic
-P:ImageIO.CGImageMetadataTagPrefixes.XMPRights
-P:ImageIO.CGImageOptions.BestGuessTypeIdentifier
-P:ImageIO.CGImageOptions.ShouldAllowFloat
-P:ImageIO.CGImageOptions.ShouldCache
-P:ImageIO.CGImageOptions.ShouldCacheImmediately
P:ImageIO.CGImageProperties.ApngCanvasPixelHeight
P:ImageIO.CGImageProperties.ApngCanvasPixelWidth
P:ImageIO.CGImageProperties.ApngFrameInfoArray
-P:ImageIO.CGImageProperties.AuxiliaryData
-P:ImageIO.CGImageProperties.AuxiliaryDataType
P:ImageIO.CGImageProperties.AvisDictionary
-P:ImageIO.CGImageProperties.BytesPerRow
-P:ImageIO.CGImageProperties.CIFFCameraSerialNumber
-P:ImageIO.CGImageProperties.CIFFContinuousDrive
-P:ImageIO.CGImageProperties.CIFFDescription
-P:ImageIO.CGImageProperties.CIFFDictionary
-P:ImageIO.CGImageProperties.CIFFFirmware
-P:ImageIO.CGImageProperties.CIFFFlashExposureComp
-P:ImageIO.CGImageProperties.CIFFFocusMode
-P:ImageIO.CGImageProperties.CIFFImageFileName
-P:ImageIO.CGImageProperties.CIFFImageName
-P:ImageIO.CGImageProperties.CIFFImageSerialNumber
-P:ImageIO.CGImageProperties.CIFFLensMaxMM
-P:ImageIO.CGImageProperties.CIFFLensMinMM
-P:ImageIO.CGImageProperties.CIFFLensModel
-P:ImageIO.CGImageProperties.CIFFMeasuredEV
-P:ImageIO.CGImageProperties.CIFFMeteringMode
-P:ImageIO.CGImageProperties.CIFFOwnerName
-P:ImageIO.CGImageProperties.CIFFRecordID
-P:ImageIO.CGImageProperties.CIFFReleaseMethod
-P:ImageIO.CGImageProperties.CIFFReleaseTiming
-P:ImageIO.CGImageProperties.CIFFSelfTimingTime
-P:ImageIO.CGImageProperties.CIFFShootingMode
-P:ImageIO.CGImageProperties.CIFFWhiteBalanceIndex
-P:ImageIO.CGImageProperties.ColorModel
-P:ImageIO.CGImageProperties.ColorModelCMYK
-P:ImageIO.CGImageProperties.ColorModelGray
-P:ImageIO.CGImageProperties.ColorModelLab
-P:ImageIO.CGImageProperties.ColorModelRGB
-P:ImageIO.CGImageProperties.Depth
-P:ImageIO.CGImageProperties.DNGActiveArea
-P:ImageIO.CGImageProperties.DNGAnalogBalance
-P:ImageIO.CGImageProperties.DNGAntiAliasStrength
-P:ImageIO.CGImageProperties.DNGAsShotICCProfile
-P:ImageIO.CGImageProperties.DNGAsShotNeutral
-P:ImageIO.CGImageProperties.DNGAsShotPreProfileMatrix
-P:ImageIO.CGImageProperties.DNGAsShotProfileName
-P:ImageIO.CGImageProperties.DNGAsShotWhiteXY
-P:ImageIO.CGImageProperties.DNGBackwardVersion
-P:ImageIO.CGImageProperties.DNGBaselineExposure
-P:ImageIO.CGImageProperties.DNGBaselineExposureOffset
-P:ImageIO.CGImageProperties.DNGBaselineNoise
-P:ImageIO.CGImageProperties.DNGBaselineSharpness
-P:ImageIO.CGImageProperties.DNGBayerGreenSplit
-P:ImageIO.CGImageProperties.DNGBestQualityScale
-P:ImageIO.CGImageProperties.DNGBlackLevel
-P:ImageIO.CGImageProperties.DNGBlackLevelDeltaHorizontal
-P:ImageIO.CGImageProperties.DNGBlackLevelDeltaVertical
-P:ImageIO.CGImageProperties.DNGBlackLevelRepeatDim
-P:ImageIO.CGImageProperties.DNGCalibrationIlluminant1
-P:ImageIO.CGImageProperties.DNGCalibrationIlluminant2
-P:ImageIO.CGImageProperties.DNGCameraCalibration1
-P:ImageIO.CGImageProperties.DNGCameraCalibration2
-P:ImageIO.CGImageProperties.DNGCameraCalibrationSignature
-P:ImageIO.CGImageProperties.DNGCameraSerialNumber
-P:ImageIO.CGImageProperties.DNGCfaLayout
-P:ImageIO.CGImageProperties.DNGCfaPlaneColor
-P:ImageIO.CGImageProperties.DNGChromaBlurRadius
-P:ImageIO.CGImageProperties.DNGColorimetricReference
-P:ImageIO.CGImageProperties.DNGColorMatrix1
-P:ImageIO.CGImageProperties.DNGColorMatrix2
-P:ImageIO.CGImageProperties.DNGCurrentICCProfile
-P:ImageIO.CGImageProperties.DNGCurrentPreProfileMatrix
-P:ImageIO.CGImageProperties.DNGDefaultBlackRender
-P:ImageIO.CGImageProperties.DNGDefaultCropOrigin
-P:ImageIO.CGImageProperties.DNGDefaultCropSize
-P:ImageIO.CGImageProperties.DNGDefaultScale
-P:ImageIO.CGImageProperties.DNGDefaultUserCrop
-P:ImageIO.CGImageProperties.DNGDictionary
-P:ImageIO.CGImageProperties.DNGExtraCameraProfiles
-P:ImageIO.CGImageProperties.DNGFixVignetteRadial
-P:ImageIO.CGImageProperties.DNGForwardMatrix1
-P:ImageIO.CGImageProperties.DNGForwardMatrix2
-P:ImageIO.CGImageProperties.DNGLensInfo
-P:ImageIO.CGImageProperties.DNGLinearizationTable
-P:ImageIO.CGImageProperties.DNGLinearResponseLimit
-P:ImageIO.CGImageProperties.DNGLocalizedCameraModel
-P:ImageIO.CGImageProperties.DNGMakerNoteSafety
-P:ImageIO.CGImageProperties.DNGMaskedAreas
-P:ImageIO.CGImageProperties.DNGNewRawImageDigest
-P:ImageIO.CGImageProperties.DNGNoiseProfile
-P:ImageIO.CGImageProperties.DNGNoiseReductionApplied
-P:ImageIO.CGImageProperties.DNGOpcodeList1
-P:ImageIO.CGImageProperties.DNGOpcodeList2
-P:ImageIO.CGImageProperties.DNGOpcodeList3
-P:ImageIO.CGImageProperties.DNGOriginalBestQualityFinalSize
-P:ImageIO.CGImageProperties.DNGOriginalDefaultCropSize
-P:ImageIO.CGImageProperties.DNGOriginalDefaultFinalSize
-P:ImageIO.CGImageProperties.DNGOriginalRawFileData
-P:ImageIO.CGImageProperties.DNGOriginalRawFileDigest
-P:ImageIO.CGImageProperties.DNGOriginalRawFileName
-P:ImageIO.CGImageProperties.DNGPreviewApplicationName
-P:ImageIO.CGImageProperties.DNGPreviewApplicationVersion
-P:ImageIO.CGImageProperties.DNGPreviewColorSpace
-P:ImageIO.CGImageProperties.DNGPreviewDateTime
-P:ImageIO.CGImageProperties.DNGPreviewSettingsDigest
-P:ImageIO.CGImageProperties.DNGPreviewSettingsName
-P:ImageIO.CGImageProperties.DNGPrivateData
-P:ImageIO.CGImageProperties.DNGProfileCalibrationSignature
-P:ImageIO.CGImageProperties.DNGProfileCopyright
-P:ImageIO.CGImageProperties.DNGProfileEmbedPolicy
-P:ImageIO.CGImageProperties.DNGProfileHueSatMapData1
-P:ImageIO.CGImageProperties.DNGProfileHueSatMapData2
-P:ImageIO.CGImageProperties.DNGProfileHueSatMapDims
-P:ImageIO.CGImageProperties.DNGProfileHueSatMapEncoding
-P:ImageIO.CGImageProperties.DNGProfileLookTableData
-P:ImageIO.CGImageProperties.DNGProfileLookTableDims
-P:ImageIO.CGImageProperties.DNGProfileLookTableEncoding
-P:ImageIO.CGImageProperties.DNGProfileName
-P:ImageIO.CGImageProperties.DNGProfileToneCurve
-P:ImageIO.CGImageProperties.DNGRawDataUniqueId
-P:ImageIO.CGImageProperties.DNGRawImageDigest
-P:ImageIO.CGImageProperties.DNGRawToPreviewGain
-P:ImageIO.CGImageProperties.DNGReductionMatrix1
-P:ImageIO.CGImageProperties.DNGReductionMatrix2
-P:ImageIO.CGImageProperties.DNGRowInterleaveFactor
-P:ImageIO.CGImageProperties.DNGShadowScale
-P:ImageIO.CGImageProperties.DNGSubTileBlockSize
-P:ImageIO.CGImageProperties.DNGUniqueCameraModel
-P:ImageIO.CGImageProperties.DNGVersion
-P:ImageIO.CGImageProperties.DNGWarpFisheye
-P:ImageIO.CGImageProperties.DNGWarpRectilinear
-P:ImageIO.CGImageProperties.DNGWhiteLevel
-P:ImageIO.CGImageProperties.DPIHeight
-P:ImageIO.CGImageProperties.DPIWidth
-P:ImageIO.CGImageProperties.EightBIMDictionary
-P:ImageIO.CGImageProperties.EightBIMLayerNames
-P:ImageIO.CGImageProperties.ExifApertureValue
-P:ImageIO.CGImageProperties.ExifAuxDictionary
-P:ImageIO.CGImageProperties.ExifAuxFirmware
-P:ImageIO.CGImageProperties.ExifAuxFlashCompensation
-P:ImageIO.CGImageProperties.ExifAuxImageNumber
-P:ImageIO.CGImageProperties.ExifAuxLensID
-P:ImageIO.CGImageProperties.ExifAuxLensInfo
-P:ImageIO.CGImageProperties.ExifAuxLensModel
-P:ImageIO.CGImageProperties.ExifAuxLensSerialNumber
-P:ImageIO.CGImageProperties.ExifAuxOwnerName
-P:ImageIO.CGImageProperties.ExifAuxSerialNumber
-P:ImageIO.CGImageProperties.ExifBodySerialNumber
-P:ImageIO.CGImageProperties.ExifBrightnessValue
-P:ImageIO.CGImageProperties.ExifCameraOwnerName
-P:ImageIO.CGImageProperties.ExifCFAPattern
-P:ImageIO.CGImageProperties.ExifColorSpace
-P:ImageIO.CGImageProperties.ExifComponentsConfiguration
P:ImageIO.CGImageProperties.ExifCompositeImage
-P:ImageIO.CGImageProperties.ExifCompressedBitsPerPixel
-P:ImageIO.CGImageProperties.ExifContrast
-P:ImageIO.CGImageProperties.ExifCustomRendered
-P:ImageIO.CGImageProperties.ExifDateTimeDigitized
-P:ImageIO.CGImageProperties.ExifDateTimeOriginal
-P:ImageIO.CGImageProperties.ExifDeviceSettingDescription
-P:ImageIO.CGImageProperties.ExifDictionary
-P:ImageIO.CGImageProperties.ExifDigitalZoomRatio
-P:ImageIO.CGImageProperties.ExifExposureBiasValue
-P:ImageIO.CGImageProperties.ExifExposureIndex
-P:ImageIO.CGImageProperties.ExifExposureMode
-P:ImageIO.CGImageProperties.ExifExposureProgram
-P:ImageIO.CGImageProperties.ExifExposureTime
-P:ImageIO.CGImageProperties.ExifFileSource
-P:ImageIO.CGImageProperties.ExifFlash
-P:ImageIO.CGImageProperties.ExifFlashEnergy
-P:ImageIO.CGImageProperties.ExifFlashPixVersion
-P:ImageIO.CGImageProperties.ExifFNumber
-P:ImageIO.CGImageProperties.ExifFocalLength
-P:ImageIO.CGImageProperties.ExifFocalLenIn35mmFilm
-P:ImageIO.CGImageProperties.ExifFocalPlaneResolutionUnit
-P:ImageIO.CGImageProperties.ExifFocalPlaneXResolution
-P:ImageIO.CGImageProperties.ExifFocalPlaneYResolution
-P:ImageIO.CGImageProperties.ExifGainControl
-P:ImageIO.CGImageProperties.ExifGamma
-P:ImageIO.CGImageProperties.ExifImageUniqueID
-P:ImageIO.CGImageProperties.ExifISOSpeed
-P:ImageIO.CGImageProperties.ExifISOSpeedLatitudeYyy
-P:ImageIO.CGImageProperties.ExifISOSpeedLatitudeZzz
-P:ImageIO.CGImageProperties.ExifISOSpeedRatings
-P:ImageIO.CGImageProperties.ExifLensMake
-P:ImageIO.CGImageProperties.ExifLensModel
-P:ImageIO.CGImageProperties.ExifLensSerialNumber
-P:ImageIO.CGImageProperties.ExifLensSpecification
-P:ImageIO.CGImageProperties.ExifLightSource
-P:ImageIO.CGImageProperties.ExifMakerNote
-P:ImageIO.CGImageProperties.ExifMaxApertureValue
-P:ImageIO.CGImageProperties.ExifMeteringMode
-P:ImageIO.CGImageProperties.ExifOECF
P:ImageIO.CGImageProperties.ExifOffsetTime
P:ImageIO.CGImageProperties.ExifOffsetTimeDigitized
P:ImageIO.CGImageProperties.ExifOffsetTimeOriginal
-P:ImageIO.CGImageProperties.ExifPixelXDimension
-P:ImageIO.CGImageProperties.ExifPixelYDimension
-P:ImageIO.CGImageProperties.ExifRecommendedExposureIndex
-P:ImageIO.CGImageProperties.ExifRelatedSoundFile
-P:ImageIO.CGImageProperties.ExifSaturation
-P:ImageIO.CGImageProperties.ExifSceneCaptureType
-P:ImageIO.CGImageProperties.ExifSceneType
-P:ImageIO.CGImageProperties.ExifSensingMethod
-P:ImageIO.CGImageProperties.ExifSensitivityType
-P:ImageIO.CGImageProperties.ExifSharpness
-P:ImageIO.CGImageProperties.ExifShutterSpeedValue
P:ImageIO.CGImageProperties.ExifSourceExposureTimesOfCompositeImage
P:ImageIO.CGImageProperties.ExifSourceImageNumberOfCompositeImage
-P:ImageIO.CGImageProperties.ExifSpatialFrequencyResponse
-P:ImageIO.CGImageProperties.ExifSpectralSensitivity
-P:ImageIO.CGImageProperties.ExifStandardOutputSensitivity
-P:ImageIO.CGImageProperties.ExifSubjectArea
-P:ImageIO.CGImageProperties.ExifSubjectDistance
-P:ImageIO.CGImageProperties.ExifSubjectDistRange
-P:ImageIO.CGImageProperties.ExifSubjectLocation
-P:ImageIO.CGImageProperties.ExifSubsecTime
-P:ImageIO.CGImageProperties.ExifSubsecTimeDigitized
-P:ImageIO.CGImageProperties.ExifSubsecTimeOrginal
-P:ImageIO.CGImageProperties.ExifSubsecTimeOriginal
-P:ImageIO.CGImageProperties.ExifUserComment
-P:ImageIO.CGImageProperties.ExifVersion
-P:ImageIO.CGImageProperties.ExifWhiteBalance
-P:ImageIO.CGImageProperties.FileContentsDictionary
-P:ImageIO.CGImageProperties.FileSize
P:ImageIO.CGImageProperties.GifCanvasPixelHeight
P:ImageIO.CGImageProperties.GifCanvasPixelWidth
-P:ImageIO.CGImageProperties.GIFDelayTime
-P:ImageIO.CGImageProperties.GIFDictionary
P:ImageIO.CGImageProperties.GifFrameInfoArray
-P:ImageIO.CGImageProperties.GIFHasGlobalColorMap
-P:ImageIO.CGImageProperties.GIFImageColorMap
-P:ImageIO.CGImageProperties.GIFLoopCount
-P:ImageIO.CGImageProperties.GIFUnclampedDelayTime
-P:ImageIO.CGImageProperties.GPSAltitude
-P:ImageIO.CGImageProperties.GPSAltitudeRef
-P:ImageIO.CGImageProperties.GPSAreaInformation
-P:ImageIO.CGImageProperties.GPSDateStamp
-P:ImageIO.CGImageProperties.GPSDestBearing
-P:ImageIO.CGImageProperties.GPSDestBearingRef
-P:ImageIO.CGImageProperties.GPSDestDistance
-P:ImageIO.CGImageProperties.GPSDestDistanceRef
-P:ImageIO.CGImageProperties.GPSDestLatitude
-P:ImageIO.CGImageProperties.GPSDestLatitudeRef
-P:ImageIO.CGImageProperties.GPSDestLongitude
-P:ImageIO.CGImageProperties.GPSDestLongitudeRef
-P:ImageIO.CGImageProperties.GPSDictionary
-P:ImageIO.CGImageProperties.GPSDifferental
-P:ImageIO.CGImageProperties.GPSDOP
-P:ImageIO.CGImageProperties.GPSHPositioningError
-P:ImageIO.CGImageProperties.GPSImgDirection
-P:ImageIO.CGImageProperties.GPSImgDirectionRef
-P:ImageIO.CGImageProperties.GPSLatitude
-P:ImageIO.CGImageProperties.GPSLatitudeRef
-P:ImageIO.CGImageProperties.GPSLongitude
-P:ImageIO.CGImageProperties.GPSLongitudeRef
-P:ImageIO.CGImageProperties.GPSMapDatum
-P:ImageIO.CGImageProperties.GPSMeasureMode
-P:ImageIO.CGImageProperties.GPSSatellites
-P:ImageIO.CGImageProperties.GPSSpeed
-P:ImageIO.CGImageProperties.GPSSpeedRef
-P:ImageIO.CGImageProperties.GPSStatus
-P:ImageIO.CGImageProperties.GPSTimeStamp
-P:ImageIO.CGImageProperties.GPSTrack
-P:ImageIO.CGImageProperties.GPSTrackRef
-P:ImageIO.CGImageProperties.GPSVersion
P:ImageIO.CGImageProperties.GroupImageBaseline
P:ImageIO.CGImageProperties.GroupImageDisparityAdjustment
P:ImageIO.CGImageProperties.GroupImageIndexLeft
@@ -86401,14 +57637,6 @@ P:ImageIO.CGImageProperties.WebPFrameInfoArray
P:ImageIO.CGImageProperties.WebPLoopCount
P:ImageIO.CGImageProperties.WebPUnclampedDelayTime
P:ImageIO.CGImageProperties.Width
-P:ImageIO.CGImageSource.ImageCount
-P:ImageIO.CGImageSource.TypeIdentifier
-P:ImageIO.CGImageSource.TypeIdentifiers
-P:ImageIO.CGImageThumbnailOptions.CreateThumbnailFromImageAlways
-P:ImageIO.CGImageThumbnailOptions.CreateThumbnailFromImageIfAbsent
-P:ImageIO.CGImageThumbnailOptions.CreateThumbnailWithTransform
-P:ImageIO.CGImageThumbnailOptions.MaxPixelSize
-P:ImageIO.CGImageThumbnailOptions.SubsampleFactor
P:ImageIO.IOCameraExtrinsics.CoordinateSystemId
P:ImageIO.IOCameraExtrinsics.Position
P:ImageIO.IOCameraExtrinsics.Rotation
@@ -86974,8 +58202,6 @@ P:Intents.INIntent.DonationMetadata
P:Intents.INIntent.Identifier
P:Intents.INIntent.IdentifierString
P:Intents.INIntent.IntentDescription
-P:Intents.INIntent.ShortcutAvailability
-P:Intents.INIntent.SuggestedInvocationPhrase
P:Intents.INIntentResolutionResult.NeedsValue
P:Intents.INIntentResolutionResult.NotRequired
P:Intents.INIntentResolutionResult.Unsupported
@@ -86984,7 +58210,6 @@ P:Intents.INInteraction.DateInterval
P:Intents.INInteraction.Direction
P:Intents.INInteraction.GroupIdentifier
P:Intents.INInteraction.Identifier
-P:Intents.INInteraction.Intent
P:Intents.INInteraction.IntentHandlingStatus
P:Intents.INInteraction.IntentResponse
P:Intents.INLengthResolutionResult.NeedsValue
@@ -87533,7 +58758,6 @@ P:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult.NotRequired
P:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult.Unsupported
P:Intents.INShareFocusStatusIntent.FocusStatus
P:Intents.INShareFocusStatusIntentResponse.Code
-P:Intents.INShortcut.Intent
P:Intents.INShortcut.UserActivity
P:Intents.INSnoozeTasksIntent.All
P:Intents.INSnoozeTasksIntent.NextTriggerTime
@@ -87709,30 +58933,12 @@ P:IntentsUI.IINUIHostedViewSiriProviding.DisplaysMap
P:IntentsUI.IINUIHostedViewSiriProviding.DisplaysMessage
P:IntentsUI.IINUIHostedViewSiriProviding.DisplaysPaymentTransaction
P:IntentsUI.INUIAddVoiceShortcutButton.CornerRadius
-P:IntentsUI.INUIAddVoiceShortcutButton.Delegate
P:IntentsUI.INUIAddVoiceShortcutButton.Shortcut
P:IntentsUI.INUIAddVoiceShortcutButton.Style
P:IntentsUI.INUIAddVoiceShortcutButton.WeakDelegate
-P:IntentsUI.INUIAddVoiceShortcutViewController.Delegate
P:IntentsUI.INUIAddVoiceShortcutViewController.WeakDelegate
-P:IntentsUI.INUIEditVoiceShortcutViewController.Delegate
P:IntentsUI.INUIEditVoiceShortcutViewController.WeakDelegate
-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.SurfaceId
-P:IOSurface.IOSurface.Width
P:IOSurface.IOSurfaceOptions.AllocSize
P:IOSurface.IOSurfaceOptions.BytesPerElement
P:IOSurface.IOSurfaceOptions.BytesPerRow
@@ -87851,39 +59057,16 @@ 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.IsBigInt
-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
@@ -87946,312 +59129,45 @@ 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
P:MapKit.IMKOverlay.BoundingMapRect
P:MapKit.IMKOverlay.CanReplaceMapContent
-P:MapKit.MKAddressFilter.ExcludingAll
-P:MapKit.MKAddressFilter.IncludingAll
P:MapKit.MKAnnotation.CalloutInfoDidChangeNotification
-P:MapKit.MKAnnotation.Coordinate
-P:MapKit.MKAnnotation.Subtitle
-P:MapKit.MKAnnotation.Title
P:MapKit.MKAnnotationEventArgs.Annotation
-P:MapKit.MKAnnotationView.AccessoryOffset
-P:MapKit.MKAnnotationView.Annotation
-P:MapKit.MKAnnotationView.CalloutOffset
-P:MapKit.MKAnnotationView.CanShowCallout
-P:MapKit.MKAnnotationView.CenterOffset
-P:MapKit.MKAnnotationView.ClusterAnnotationView
-P:MapKit.MKAnnotationView.ClusteringIdentifier
-P:MapKit.MKAnnotationView.CollisionMode
-P:MapKit.MKAnnotationView.DetailCalloutAccessoryView
-P:MapKit.MKAnnotationView.DisplayPriority
-P:MapKit.MKAnnotationView.Draggable
-P:MapKit.MKAnnotationView.DragState
-P:MapKit.MKAnnotationView.Enabled
-P:MapKit.MKAnnotationView.Highlighted
-P:MapKit.MKAnnotationView.Image
-P:MapKit.MKAnnotationView.LeftCalloutAccessoryView
-P:MapKit.MKAnnotationView.LeftCalloutOffset
-P:MapKit.MKAnnotationView.ReuseIdentifier
-P:MapKit.MKAnnotationView.RightCalloutAccessoryView
-P:MapKit.MKAnnotationView.RightCallpoutOffset
-P:MapKit.MKAnnotationView.Selected
-P:MapKit.MKAnnotationView.SelectedZPriority
-P:MapKit.MKAnnotationView.ZPriority
P:MapKit.MKAnnotationViewEventArgs.View
-P:MapKit.MKCircle.BoundingMapRect
-P:MapKit.MKCircle.CanReplaceMapContent
-P:MapKit.MKCircle.Coordinate
-P:MapKit.MKCircle.Radius
-P:MapKit.MKCircleRenderer.Circle
-P:MapKit.MKCircleRenderer.StrokeEnd
-P:MapKit.MKCircleRenderer.StrokeStart
-P:MapKit.MKCircleView.Circle
P:MapKit.MKClusterAnnotation.CalloutInfoDidChangeNotification
-P:MapKit.MKClusterAnnotation.Coordinate
-P:MapKit.MKClusterAnnotation.MemberAnnotations
-P:MapKit.MKClusterAnnotation.Subtitle
-P:MapKit.MKClusterAnnotation.Title
-P:MapKit.MKCompassButton.CompassVisibility
-P:MapKit.MKCompassButton.MapView
P:MapKit.MKDidAddOverlayRenderersEventArgs.Renderers
P:MapKit.MKDidFinishRenderingMapEventArgs.FullyRendered
P:MapKit.MKDirections.Calculating
-P:MapKit.MKDirectionsRequest.ArrivalDate
-P:MapKit.MKDirectionsRequest.DepartureDate
-P:MapKit.MKDirectionsRequest.Destination
-P:MapKit.MKDirectionsRequest.HighwayPreference
-P:MapKit.MKDirectionsRequest.RequestsAlternateRoutes
-P:MapKit.MKDirectionsRequest.Source
-P:MapKit.MKDirectionsRequest.TollPreference
-P:MapKit.MKDirectionsRequest.TransportType
-P:MapKit.MKDirectionsResponse.Destination
-P:MapKit.MKDirectionsResponse.Routes
-P:MapKit.MKDirectionsResponse.Source
-P:MapKit.MKDistanceFormatter.Locale
-P:MapKit.MKDistanceFormatter.Units
-P:MapKit.MKDistanceFormatter.UnitStyle
-P:MapKit.MKETAResponse.Destination
-P:MapKit.MKETAResponse.Distance
-P:MapKit.MKETAResponse.ExpectedArrivalDate
-P:MapKit.MKETAResponse.ExpectedDepartureDate
-P:MapKit.MKETAResponse.ExpectedTravelTime
-P:MapKit.MKETAResponse.Source
-P:MapKit.MKETAResponse.TransportType
-P:MapKit.MKGeoJsonFeature.Geometry
-P:MapKit.MKGeoJsonFeature.Identifier
-P:MapKit.MKGeoJsonFeature.Properties
-P:MapKit.MKGradientPolylineRenderer.Colors
-P:MapKit.MKGradientPolylineRenderer.Locations
-P:MapKit.MKHybridMapConfiguration.PointOfInterestFilter
-P:MapKit.MKHybridMapConfiguration.ShowsTraffic
-P:MapKit.MKIconStyle.BackgroundColor
-P:MapKit.MKIconStyle.Image
-P:MapKit.MKLaunchOptions.Camera
-P:MapKit.MKLaunchOptions.DirectionsMode
-P:MapKit.MKLaunchOptions.MapCenter
-P:MapKit.MKLaunchOptions.MapSpan
-P:MapKit.MKLaunchOptions.MapType
-P:MapKit.MKLaunchOptions.ShowTraffic
-P:MapKit.MKLocalPointsOfInterestRequest.Coordinate
-P:MapKit.MKLocalPointsOfInterestRequest.PointOfInterestFilter
-P:MapKit.MKLocalPointsOfInterestRequest.Radius
-P:MapKit.MKLocalPointsOfInterestRequest.Region
P:MapKit.MKLocalPointsOfInterestRequest.RequestMaxRadius
-P:MapKit.MKLocalSearch.IsSearching
-P:MapKit.MKLocalSearchCompleter.AddressFilter
-P:MapKit.MKLocalSearchCompleter.Delegate
-P:MapKit.MKLocalSearchCompleter.FilterType
-P:MapKit.MKLocalSearchCompleter.PointOfInterestFilter
-P:MapKit.MKLocalSearchCompleter.QueryFragment
-P:MapKit.MKLocalSearchCompleter.Region
-P:MapKit.MKLocalSearchCompleter.RegionPriority
-P:MapKit.MKLocalSearchCompleter.Results
-P:MapKit.MKLocalSearchCompleter.ResultTypes
-P:MapKit.MKLocalSearchCompleter.Searching
-P:MapKit.MKLocalSearchCompleter.WeakDelegate
-P:MapKit.MKLocalSearchCompletion.Subtitle
-P:MapKit.MKLocalSearchCompletion.SubtitleHighlightRanges
-P:MapKit.MKLocalSearchCompletion.Title
-P:MapKit.MKLocalSearchCompletion.TitleHighlightRanges
-P:MapKit.MKLocalSearchRequest.AddressFilter
-P:MapKit.MKLocalSearchRequest.NaturalLanguageQuery
-P:MapKit.MKLocalSearchRequest.PointOfInterestFilter
-P:MapKit.MKLocalSearchRequest.Region
-P:MapKit.MKLocalSearchRequest.RegionPriority
-P:MapKit.MKLocalSearchRequest.ResultTypes
-P:MapKit.MKLocalSearchResponse.MapItems
-P:MapKit.MKLocalSearchResponse.Region
-P:MapKit.MKLookAroundSceneRequest.Coordinate
P:MapKit.MKLookAroundSceneRequest.IsCancelled
P:MapKit.MKLookAroundSceneRequest.IsLoading
-P:MapKit.MKLookAroundSceneRequest.MapItem
-P:MapKit.MKLookAroundSnapshot.Image
-P:MapKit.MKLookAroundSnapshotOptions.PointOfInterestFilter
-P:MapKit.MKLookAroundSnapshotOptions.Size
-P:MapKit.MKLookAroundSnapshotOptions.TraitCollection
P:MapKit.MKLookAroundSnapshotter.IsLoading
-P:MapKit.MKLookAroundViewController.BadgePosition
P:MapKit.MKLookAroundViewController.Delegate
P:MapKit.MKLookAroundViewController.NavigationEnabled
-P:MapKit.MKLookAroundViewController.PointOfInterestFilter
-P:MapKit.MKLookAroundViewController.Scene
-P:MapKit.MKLookAroundViewController.ShowsRoadLabels
-P:MapKit.MKLookAroundViewController.WeakDelegate
-P:MapKit.MKMapCamera.Altitude
-P:MapKit.MKMapCamera.Camera
-P:MapKit.MKMapCamera.CenterCoordinate
-P:MapKit.MKMapCamera.CenterCoordinateDistance
-P:MapKit.MKMapCamera.Heading
-P:MapKit.MKMapCamera.Pitch
-P:MapKit.MKMapCameraBoundary.MapRect
-P:MapKit.MKMapCameraBoundary.Region
-P:MapKit.MKMapCameraZoomRange.MaxCenterCoordinateDistance
-P:MapKit.MKMapCameraZoomRange.MinCenterCoordinateDistance
P:MapKit.MKMapCameraZoomRange.ZoomDefault
-P:MapKit.MKMapConfiguration.ElevationStyle
P:MapKit.MKMapFeatureAnnotation.CalloutInfoDidChangeNotification
-P:MapKit.MKMapFeatureAnnotation.Coordinate
-P:MapKit.MKMapFeatureAnnotation.FeatureType
-P:MapKit.MKMapFeatureAnnotation.IconStyle
-P:MapKit.MKMapFeatureAnnotation.PointOfInterestCategory
-P:MapKit.MKMapFeatureAnnotation.Subtitle
-P:MapKit.MKMapFeatureAnnotation.Title
-P:MapKit.MKMapItem.AlternateIdentifiers
-P:MapKit.MKMapItem.Identifier
-P:MapKit.MKMapItem.IsCurrentLocation
-P:MapKit.MKMapItem.Name
-P:MapKit.MKMapItem.PhoneNumber
-P:MapKit.MKMapItem.Placemark
-P:MapKit.MKMapItem.PointOfInterestCategory
P:MapKit.MKMapItem.ReadableTypeIdentifiers
-P:MapKit.MKMapItem.TimeZone
-P:MapKit.MKMapItem.TypeIdentifier
-P:MapKit.MKMapItem.Url
P:MapKit.MKMapItem.WritableTypeIdentifiers
P:MapKit.MKMapItem.WritableTypeIdentifiersForItemProvider
P:MapKit.MKMapItemAnnotation.CalloutInfoDidChangeNotification
-P:MapKit.MKMapItemAnnotation.Coordinate
-P:MapKit.MKMapItemAnnotation.MapItem
-P:MapKit.MKMapItemAnnotation.Subtitle
-P:MapKit.MKMapItemAnnotation.Title
-P:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle.Callout
-P:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle.OpenInMaps
P:MapKit.MKMapItemDetailViewController.Delegate
-P:MapKit.MKMapItemDetailViewController.MapItem
-P:MapKit.MKMapItemDetailViewController.WeakDelegate
-P:MapKit.MKMapItemIdentifier.IdentifierString
-P:MapKit.MKMapItemRequest.FeatureAnnotation
P:MapKit.MKMapItemRequest.IsCancelled
P:MapKit.MKMapItemRequest.IsLoading
-P:MapKit.MKMapItemRequest.MapFeatureAnnotation
-P:MapKit.MKMapItemRequest.MapItemIdentifier
-P:MapKit.MKMapRect.Height
-P:MapKit.MKMapRect.IsEmpty
-P:MapKit.MKMapRect.IsNull
-P:MapKit.MKMapRect.MaxX
-P:MapKit.MKMapRect.MaxY
-P:MapKit.MKMapRect.MidX
-P:MapKit.MKMapRect.MidY
-P:MapKit.MKMapRect.MinX
-P:MapKit.MKMapRect.MinY
-P:MapKit.MKMapRect.Spans180thMeridian
-P:MapKit.MKMapRect.Width
-P:MapKit.MKMapRect.World
-P:MapKit.MKMapSize.World
-P:MapKit.MKMapSnapshot.Appearance
-P:MapKit.MKMapSnapshot.Image
-P:MapKit.MKMapSnapshot.TraitCollection
-P:MapKit.MKMapSnapshotOptions.Appearance
-P:MapKit.MKMapSnapshotOptions.Camera
-P:MapKit.MKMapSnapshotOptions.MapRect
-P:MapKit.MKMapSnapshotOptions.MapType
-P:MapKit.MKMapSnapshotOptions.PointOfInterestFilter
-P:MapKit.MKMapSnapshotOptions.PreferredConfiguration
-P:MapKit.MKMapSnapshotOptions.Region
-P:MapKit.MKMapSnapshotOptions.Scale
-P:MapKit.MKMapSnapshotOptions.ShowsBuildings
-P:MapKit.MKMapSnapshotOptions.ShowsPointsOfInterest
-P:MapKit.MKMapSnapshotOptions.Size
-P:MapKit.MKMapSnapshotOptions.TraitCollection
P:MapKit.MKMapSnapshotter.Loading
-P:MapKit.MKMapView.Annotations
-P:MapKit.MKMapView.AnnotationVisibleRect
-P:MapKit.MKMapView.Camera
-P:MapKit.MKMapView.CameraBoundary
-P:MapKit.MKMapView.CameraZoomRange
-P:MapKit.MKMapView.CenterCoordinate
P:MapKit.MKMapView.CreateClusterAnnotation
P:MapKit.MKMapView.Delegate
P:MapKit.MKMapView.GetSelectionAccessory
P:MapKit.MKMapView.GetViewForAnnotation
P:MapKit.MKMapView.GetViewForOverlay
-P:MapKit.MKMapView.MapType
P:MapKit.MKMapView.OverlayRenderer
-P:MapKit.MKMapView.Overlays
-P:MapKit.MKMapView.PitchButtonVisibility
P:MapKit.MKMapView.PitchEnabled
-P:MapKit.MKMapView.PointOfInterestFilter
-P:MapKit.MKMapView.PreferredConfiguration
-P:MapKit.MKMapView.Region
P:MapKit.MKMapView.RotateEnabled
P:MapKit.MKMapView.ScrollEnabled
-P:MapKit.MKMapView.SelectableMapFeatures
-P:MapKit.MKMapView.SelectedAnnotations
-P:MapKit.MKMapView.ShowsBuildings
-P:MapKit.MKMapView.ShowsCompass
-P:MapKit.MKMapView.ShowsPitchControl
-P:MapKit.MKMapView.ShowsPointsOfInterest
-P:MapKit.MKMapView.ShowsScale
-P:MapKit.MKMapView.ShowsTraffic
-P:MapKit.MKMapView.ShowsUserLocation
-P:MapKit.MKMapView.ShowsUserTrackingButton
-P:MapKit.MKMapView.ShowsZoomControls
-P:MapKit.MKMapView.UserLocation
P:MapKit.MKMapView.UserLocationVisible
-P:MapKit.MKMapView.UserTrackingMode
-P:MapKit.MKMapView.VisibleMapRect
-P:MapKit.MKMapView.WeakDelegate
P:MapKit.MKMapView.ZoomEnabled
P:MapKit.MKMapViewAccessoryTappedEventArgs.Control
P:MapKit.MKMapViewAccessoryTappedEventArgs.View
@@ -88262,150 +59178,31 @@ P:MapKit.MKMapViewDefault.ClusterAnnotationViewReuseIdentifier
P:MapKit.MKMapViewDragStateEventArgs.AnnotationView
P:MapKit.MKMapViewDragStateEventArgs.NewState
P:MapKit.MKMapViewDragStateEventArgs.OldState
-P:MapKit.MKMarkerAnnotationView.AnimatesWhenAdded
-P:MapKit.MKMarkerAnnotationView.GlyphImage
-P:MapKit.MKMarkerAnnotationView.GlyphText
-P:MapKit.MKMarkerAnnotationView.GlyphTintColor
-P:MapKit.MKMarkerAnnotationView.MarkerTintColor
P:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.GlyphImage
P:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.GlyphText
P:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.GlyphTintColor
P:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.MarkerTintColor
P:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.SelectedGlyphImage
-P:MapKit.MKMarkerAnnotationView.SelectedGlyphImage
-P:MapKit.MKMarkerAnnotationView.SubtitleVisibility
-P:MapKit.MKMarkerAnnotationView.TitleVisibility
-P:MapKit.MKMultiPoint.PointCount
-P:MapKit.MKMultiPoint.Points
-P:MapKit.MKMultiPolygon.BoundingMapRect
-P:MapKit.MKMultiPolygon.CanReplaceMapContent
-P:MapKit.MKMultiPolygon.Polygons
-P:MapKit.MKMultiPolygonRenderer.MultiPolygon
-P:MapKit.MKMultiPolyline.BoundingMapRect
-P:MapKit.MKMultiPolyline.CanReplaceMapContent
-P:MapKit.MKMultiPolyline.Polylines
-P:MapKit.MKMultiPolylineRenderer.MultiPolyline
-P:MapKit.MKOverlay.BoundingMapRect
-P:MapKit.MKOverlay.CanReplaceMapContent
-P:MapKit.MKOverlayPathRenderer.FillColor
-P:MapKit.MKOverlayPathRenderer.LineCap
-P:MapKit.MKOverlayPathRenderer.LineDashPattern
-P:MapKit.MKOverlayPathRenderer.LineDashPhase
-P:MapKit.MKOverlayPathRenderer.LineJoin
-P:MapKit.MKOverlayPathRenderer.LineWidth
-P:MapKit.MKOverlayPathRenderer.MiterLimit
-P:MapKit.MKOverlayPathRenderer.Path
-P:MapKit.MKOverlayPathRenderer.ShouldRasterize
-P:MapKit.MKOverlayPathRenderer.StrokeColor
-P:MapKit.MKOverlayPathView.FillColor
-P:MapKit.MKOverlayPathView.Linecap
-P:MapKit.MKOverlayPathView.LineDashPattern
-P:MapKit.MKOverlayPathView.LineDashPhase
-P:MapKit.MKOverlayPathView.LineJoin
-P:MapKit.MKOverlayPathView.LineWidth
-P:MapKit.MKOverlayPathView.MiterLimit
-P:MapKit.MKOverlayPathView.Path
-P:MapKit.MKOverlayPathView.StrokeColor
-P:MapKit.MKOverlayRenderer.Alpha
-P:MapKit.MKOverlayRenderer.BlendMode
-P:MapKit.MKOverlayRenderer.ContentScaleFactor
-P:MapKit.MKOverlayRenderer.Overlay
-P:MapKit.MKOverlayView.Overlay
P:MapKit.MKOverlayViewsEventArgs.OverlayViews
-P:MapKit.MKPinAnnotationView.AnimatesDrop
-P:MapKit.MKPinAnnotationView.GreenPinColor
P:MapKit.MKPinAnnotationView.MKPinAnnotationViewAppearance.PinTintColor
-P:MapKit.MKPinAnnotationView.PinColor
-P:MapKit.MKPinAnnotationView.PinTintColor
-P:MapKit.MKPinAnnotationView.PurplePinColor
-P:MapKit.MKPinAnnotationView.RedPinColor
-P:MapKit.MKPitchControl.MapView
P:MapKit.MKPlacemark.CalloutInfoDidChangeNotification
-P:MapKit.MKPlacemark.Coordinate
-P:MapKit.MKPlacemark.CountryCode
-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.MKPointAnnotation.Coordinate
-P:MapKit.MKPointOfInterestFilter.FilterExcludingAllCategories
-P:MapKit.MKPointOfInterestFilter.FilterIncludingAllCategories
-P:MapKit.MKPolygon.BoundingMapRect
-P:MapKit.MKPolygon.CanReplaceMapContent
-P:MapKit.MKPolygon.Coordinate
-P:MapKit.MKPolygon.InteriorPolygons
-P:MapKit.MKPolygonRenderer.Polygon
-P:MapKit.MKPolygonRenderer.StrokeEnd
-P:MapKit.MKPolygonRenderer.StrokeStart
-P:MapKit.MKPolygonView.Polygon
-P:MapKit.MKPolyline.BoundingMapRect
-P:MapKit.MKPolyline.CanReplaceMapContent
-P:MapKit.MKPolyline.Coordinate
-P:MapKit.MKPolylineRenderer.Polyline
-P:MapKit.MKPolylineRenderer.StrokeEnd
-P:MapKit.MKPolylineRenderer.StrokeStart
-P:MapKit.MKPolylineView.Polyline
-P:MapKit.MKReverseGeocoder.Coordinate
P:MapKit.MKReverseGeocoder.Delegate
-P:MapKit.MKReverseGeocoder.Placemark
P:MapKit.MKReverseGeocoder.Querying
-P:MapKit.MKReverseGeocoder.WeakDelegate
-P:MapKit.MKRoute.AdvisoryNotices
-P:MapKit.MKRoute.Distance
-P:MapKit.MKRoute.ExpectedTravelTime
-P:MapKit.MKRoute.HasHighways
-P:MapKit.MKRoute.HasTolls
-P:MapKit.MKRoute.Name
-P:MapKit.MKRoute.Polyline
-P:MapKit.MKRoute.Steps
-P:MapKit.MKRoute.TransportType
-P:MapKit.MKRouteStep.Distance
-P:MapKit.MKRouteStep.Instructions
-P:MapKit.MKRouteStep.Notice
-P:MapKit.MKRouteStep.Polyline
-P:MapKit.MKRouteStep.TransportType
-P:MapKit.MKScaleView.LegendAlignment
-P:MapKit.MKScaleView.MapView
-P:MapKit.MKScaleView.ScaleVisibility
P:MapKit.MKShape.CalloutInfoDidChangeNotification
-P:MapKit.MKShape.Coordinate
-P:MapKit.MKShape.Subtitle
-P:MapKit.MKShape.Title
-P:MapKit.MKStandardMapConfiguration.EmphasisStyle
-P:MapKit.MKStandardMapConfiguration.PointOfInterestFilter
-P:MapKit.MKStandardMapConfiguration.ShowsTraffic
-P:MapKit.MKTileOverlay.BoundingMapRect
-P:MapKit.MKTileOverlay.CanReplaceMapContent
-P:MapKit.MKTileOverlay.Coordinate
P:MapKit.MKTileOverlay.GeometryFlipped
-P:MapKit.MKTileOverlay.MaximumZ
-P:MapKit.MKTileOverlay.MinimumZ
-P:MapKit.MKTileOverlay.TileSize
-P:MapKit.MKTileOverlay.URLTemplate
-P:MapKit.MKUserLocation.Coordinate
-P:MapKit.MKUserLocation.Heading
-P:MapKit.MKUserLocation.Location
-P:MapKit.MKUserLocation.Subtitle
-P:MapKit.MKUserLocation.Title
-P:MapKit.MKUserLocation.Updating
P:MapKit.MKUserLocationEventArgs.UserLocation
-P:MapKit.MKUserTrackingBarButtonItem.MapView
-P:MapKit.MKUserTrackingButton.MapView
-P:MapKit.MKZoomControl.MapView
P:MapKit.MMapViewUserTrackingEventArgs.Animated
P:MapKit.MMapViewUserTrackingEventArgs.Mode
-P:MediaAccessibility.MAAudibleMedia.SettingsChangedNotification
P:MediaAccessibility.MACaptionAppearance.SettingsChangedNotification
P:MediaAccessibility.MAFlashingLightsProcessorResult.IntensityLevel
P:MediaAccessibility.MAFlashingLightsProcessorResult.MitigationLevel
P:MediaAccessibility.MAFlashingLightsProcessorResult.SurfaceProcessed
-P:MediaAccessibility.MAMediaCharacteristic.DescribesMusicAndSoundForAccessibility
-P:MediaAccessibility.MAMediaCharacteristic.DescribesVideoForAccessibility
-P:MediaAccessibility.MAMediaCharacteristic.TranscribesSpokenDialogForAccessibility
P:MediaAccessibility.MAMusicHapticsManager.ActiveStatusDidChangeNotification
P:MediaAccessibility.MAMusicHapticsManager.IsActive
P:MediaAccessibility.MAMusicHapticsManager.SharedManager
@@ -88428,69 +59225,13 @@ P:MediaExtension.IMEVideoDecoder.ReadyForMoreMediaData
P:MediaExtension.IMEVideoDecoder.RecommendedThreadCount
P:MediaExtension.IMEVideoDecoder.ReducedResolution
P:MediaExtension.IMEVideoDecoder.SupportedPixelFormatsOrderedByQuality
-P:MediaExtension.MEByteSource.ContentType
-P:MediaExtension.MEByteSource.FileLength
-P:MediaExtension.MEByteSource.FileName
-P:MediaExtension.MEByteSource.RelatedFileNamesInSameDirectory
-P:MediaExtension.MEDecodeFrameOptions.DoNotOutputFrame
-P:MediaExtension.MEDecodeFrameOptions.RealTimePlayback
-P:MediaExtension.MEEstimatedSampleLocation.ByteSource
-P:MediaExtension.MEEstimatedSampleLocation.EstimatedSampleLocation
-P:MediaExtension.MEEstimatedSampleLocation.RefinementDataLocation
-P:MediaExtension.MEFileInfo.Duration
-P:MediaExtension.MEFileInfo.FragmentsStatus
-P:MediaExtension.MEFormatReaderInstantiationOptions.AllowIncrementalFragmentParsing
-P:MediaExtension.MEHevcDependencyInfo.ConstraintIndicatorFlags
-P:MediaExtension.MEHevcDependencyInfo.LevelIndex
-P:MediaExtension.MEHevcDependencyInfo.ProfileCompatibilityFlags
-P:MediaExtension.MEHevcDependencyInfo.ProfileIndex
-P:MediaExtension.MEHevcDependencyInfo.ProfileSpace
P:MediaExtension.MEHevcDependencyInfo.StepwiseTemporalSubLayerAccess
-P:MediaExtension.MEHevcDependencyInfo.SyncSampleNALUnitType
-P:MediaExtension.MEHevcDependencyInfo.TemporalLevel
P:MediaExtension.MEHevcDependencyInfo.TemporalSubLayerAccess
-P:MediaExtension.MEHevcDependencyInfo.TierFlag
-P:MediaExtension.MERawProcessingBooleanParameter.CurrentValue
-P:MediaExtension.MERawProcessingBooleanParameter.InitialValue
-P:MediaExtension.MERawProcessingFloatParameter.CurrentValue
-P:MediaExtension.MERawProcessingFloatParameter.InitialValue
-P:MediaExtension.MERawProcessingFloatParameter.MaximumValue
-P:MediaExtension.MERawProcessingFloatParameter.MinimumValue
-P:MediaExtension.MERawProcessingIntegerParameter.CurrentValue
-P:MediaExtension.MERawProcessingIntegerParameter.InitialValue
-P:MediaExtension.MERawProcessingIntegerParameter.MaximumValue
-P:MediaExtension.MERawProcessingIntegerParameter.MinimumValue
-P:MediaExtension.MERawProcessingListElementParameter.ListElementId
-P:MediaExtension.MERawProcessingListParameter.CurrentValue
-P:MediaExtension.MERawProcessingListParameter.InitialValue
-P:MediaExtension.MERawProcessingListParameter.ListElements
-P:MediaExtension.MERawProcessingParameter.Enabled
-P:MediaExtension.MERawProcessingParameter.Key
-P:MediaExtension.MERawProcessingParameter.LongDescription
-P:MediaExtension.MERawProcessingParameter.Name
-P:MediaExtension.MERawProcessingSubGroupParameter.SubGroupParameters
P:MediaExtension.MERawProcessorFields.ReadyForMoreMediaDataDidChangeNotification
P:MediaExtension.MERawProcessorFields.ValuesDidChangeNotification
-P:MediaExtension.MERawProcessorPixelBufferManager.PixelBufferAttributes
-P:MediaExtension.MESampleCursorChunk.ByteSource
P:MediaExtension.MESampleCursorChunk.ChunkInfo
-P:MediaExtension.MESampleCursorChunk.ChunkStorageRange
-P:MediaExtension.MESampleCursorChunk.SampleIndexWithinChunk
-P:MediaExtension.MESampleLocation.ByteSource
-P:MediaExtension.MESampleLocation.SampleLocation
P:MediaExtension.METrackInfo.Enabled
-P:MediaExtension.METrackInfo.ExtendedLanguageTag
-P:MediaExtension.METrackInfo.MediaType
-P:MediaExtension.METrackInfo.NaturalSize
-P:MediaExtension.METrackInfo.NaturalTimescale
-P:MediaExtension.METrackInfo.NominalFrameRate
-P:MediaExtension.METrackInfo.PreferredTransform
-P:MediaExtension.METrackInfo.RequiresFrameReordering
-P:MediaExtension.METrackInfo.TrackEdits
-P:MediaExtension.METrackInfo.TrackId
-P:MediaExtension.METrackInfo.WeakFormatDescriptions
P:MediaExtension.MEVideoDecoderFields.ReadyForMoreMediaDataDidChangeNotification
-P:MediaExtension.MEVideoDecoderPixelBufferManager.PixelBufferAttributes
P:MediaLibrary.MediaLibraryTypeIdentifierKey.ApertureAllPhotosTypeIdentifier
P:MediaLibrary.MediaLibraryTypeIdentifierKey.ApertureAllProjectsTypeIdentifier
P:MediaLibrary.MediaLibraryTypeIdentifierKey.ApertureFacebookAlbumTypeIdentifier
@@ -88674,9 +59415,6 @@ P:MediaPlayer.IMPMediaPlayback.CurrentPlaybackTime
P:MediaPlayer.IMPMediaPlayback.IsPreparedToPlay
P:MediaPlayer.ItemsPickedEventArgs.MediaItemCollection
P:MediaPlayer.MPAdTimeRange.TimeRange
-P:MediaPlayer.MPChangeLanguageOptionCommandEvent.LanguageOption
-P:MediaPlayer.MPChangeLanguageOptionCommandEvent.Setting
-P:MediaPlayer.MPChangePlaybackPositionCommandEvent.PositionTime
P:MediaPlayer.MPChangePlaybackRateCommand.SupportedPlaybackRates
P:MediaPlayer.MPChangePlaybackRateCommandEvent.PlaybackRate
P:MediaPlayer.MPChangeRepeatModeCommand.CurrentRepeatType
@@ -88710,46 +59448,8 @@ P:MediaPlayer.MPLanguageOptionCharacteristics.TranscribesSpokenDialog
P:MediaPlayer.MPLanguageOptionCharacteristics.VoiceOverTranslation
P:MediaPlayer.MPMediaEntity.PersistentID
P:MediaPlayer.MPMediaEntity.PropertyPersistentID
-P:MediaPlayer.MPMediaItem.AlbumArtist
-P:MediaPlayer.MPMediaItem.AlbumArtistPersistentID
-P:MediaPlayer.MPMediaItem.AlbumPersistentID
-P:MediaPlayer.MPMediaItem.AlbumTitle
-P:MediaPlayer.MPMediaItem.AlbumTrackCount
-P:MediaPlayer.MPMediaItem.AlbumTrackNumber
-P:MediaPlayer.MPMediaItem.Artist
-P:MediaPlayer.MPMediaItem.ArtistPersistentID
-P:MediaPlayer.MPMediaItem.Artwork
-P:MediaPlayer.MPMediaItem.AssetURL
-P:MediaPlayer.MPMediaItem.BeatsPerMinute
-P:MediaPlayer.MPMediaItem.BookmarkTime
-P:MediaPlayer.MPMediaItem.Comments
-P:MediaPlayer.MPMediaItem.Composer
-P:MediaPlayer.MPMediaItem.ComposerPersistentID
-P:MediaPlayer.MPMediaItem.DateAdded
-P:MediaPlayer.MPMediaItem.DiscCount
-P:MediaPlayer.MPMediaItem.DiscNumber
-P:MediaPlayer.MPMediaItem.Genre
-P:MediaPlayer.MPMediaItem.GenrePersistentID
-P:MediaPlayer.MPMediaItem.HasProtectedAsset
-P:MediaPlayer.MPMediaItem.IsCloudItem
-P:MediaPlayer.MPMediaItem.IsCompilation
-P:MediaPlayer.MPMediaItem.IsExplicitItem
P:MediaPlayer.MPMediaItem.IsPreorder
-P:MediaPlayer.MPMediaItem.LastPlayedDate
-P:MediaPlayer.MPMediaItem.Lyrics
-P:MediaPlayer.MPMediaItem.MediaType
-P:MediaPlayer.MPMediaItem.PersistentID
-P:MediaPlayer.MPMediaItem.PlaybackDuration
-P:MediaPlayer.MPMediaItem.PlaybackStoreID
-P:MediaPlayer.MPMediaItem.PlayCount
-P:MediaPlayer.MPMediaItem.PodcastPersistentID
-P:MediaPlayer.MPMediaItem.PodcastTitle
P:MediaPlayer.MPMediaItem.PropertyPersistentID
-P:MediaPlayer.MPMediaItem.Rating
-P:MediaPlayer.MPMediaItem.ReleaseDate
-P:MediaPlayer.MPMediaItem.SkipCount
-P:MediaPlayer.MPMediaItem.Title
-P:MediaPlayer.MPMediaItem.UserGrouping
P:MediaPlayer.MPMediaItemArtwork.Bounds
P:MediaPlayer.MPMediaItemArtwork.ImageCropRectangle
P:MediaPlayer.MPMediaItemCollection.Count
@@ -89029,46 +59729,7 @@ P:MediaSetup.MSServiceAccount.ConfigurationUrl
P:MediaSetup.MSServiceAccount.ServiceName
P:MediaSetup.MSSetupSession.Account
P:MediaSetup.MSSetupSession.PresentationContext
-P:MediaToolbox.MTAudioProcessingTapCallbacks.Finalize
-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
@@ -89324,515 +59985,38 @@ P:Metal.IMTLTextureBinding.TextureType
P:Metal.IMTLThreadgroupBinding.ThreadgroupMemoryAlignment
P:Metal.IMTLThreadgroupBinding.ThreadgroupMemoryDataSize
P:Metal.IMTLVisibleFunctionTable.GpuResourceId
-P:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor.BoundingBoxBuffer
-P:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor.BoundingBoxBufferOffset
-P:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor.BoundingBoxCount
-P:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor.BoundingBoxStride
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.ControlPointBuffer
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.ControlPointBufferOffset
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.ControlPointCount
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.ControlPointFormat
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.ControlPointStride
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.CurveBasis
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.CurveEndCaps
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.CurveType
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.IndexBuffer
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.IndexBufferOffset
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.IndexType
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.RadiusBuffer
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.RadiusBufferOffset
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.RadiusFormat
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.RadiusStride
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.SegmentControlPointCount
-P:Metal.MTLAccelerationStructureCurveGeometryDescriptor.SegmentCount
-P:Metal.MTLAccelerationStructureDescriptor.Usage
-P:Metal.MTLAccelerationStructureGeometryDescriptor.AllowDuplicateIntersectionFunctionInvocation
-P:Metal.MTLAccelerationStructureGeometryDescriptor.IntersectionFunctionTableOffset
-P:Metal.MTLAccelerationStructureGeometryDescriptor.Label
-P:Metal.MTLAccelerationStructureGeometryDescriptor.Opaque
-P:Metal.MTLAccelerationStructureGeometryDescriptor.PrimitiveDataBuffer
-P:Metal.MTLAccelerationStructureGeometryDescriptor.PrimitiveDataBufferOffset
-P:Metal.MTLAccelerationStructureGeometryDescriptor.PrimitiveDataElementSize
-P:Metal.MTLAccelerationStructureGeometryDescriptor.PrimitiveDataStride
-P:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor.BoundingBoxBuffers
-P:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor.BoundingBoxCount
-P:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor.BoundingBoxStride
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.ControlPointBuffers
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.ControlPointCount
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.ControlPointFormat
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.ControlPointStride
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.CurveBasis
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.CurveEndCaps
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.CurveType
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.IndexBuffer
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.IndexBufferOffset
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.IndexType
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.RadiusBuffers
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.RadiusFormat
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.RadiusStride
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.SegmentControlPointCount
-P:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor.SegmentCount
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.IndexBuffer
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.IndexBufferOffset
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.IndexType
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.TransformationMatrixBuffer
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.TransformationMatrixBufferOffset
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.TransformationMatrixLayout
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.TriangleCount
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.VertexBuffers
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.VertexFormat
-P:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor.VertexStride
-P:Metal.MTLAccelerationStructurePassDescriptor.AccelerationStructurePassDescriptor
-P:Metal.MTLAccelerationStructurePassDescriptor.SampleBufferAttachments
-P:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.EndOfEncoderSampleIndex
-P:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.SampleBuffer
-P:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.StartOfEncoderSampleIndex
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.IndexBuffer
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.IndexBufferOffset
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.IndexType
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.TransformationMatrixBuffer
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.TransformationMatrixBufferOffset
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.TransformationMatrixLayout
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.TriangleCount
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.VertexBuffer
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.VertexBufferOffset
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.VertexFormat
-P:Metal.MTLAccelerationStructureTriangleGeometryDescriptor.VertexStride
-P:Metal.MTLArchitecture.Name
-P:Metal.MTLArgument.Access
P:Metal.MTLArgument.Active
-P:Metal.MTLArgument.ArrayLength
-P:Metal.MTLArgument.BufferAlignment
-P:Metal.MTLArgument.BufferDataSize
-P:Metal.MTLArgument.BufferDataType
-P:Metal.MTLArgument.BufferPointerType
-P:Metal.MTLArgument.BufferStructType
-P:Metal.MTLArgument.Index
-P:Metal.MTLArgument.IsDepthTexture
-P:Metal.MTLArgument.Name
-P:Metal.MTLArgument.TextureDataType
-P:Metal.MTLArgument.TextureType
-P:Metal.MTLArgument.ThreadgroupMemoryAlignment
-P:Metal.MTLArgument.ThreadgroupMemoryDataSize
-P:Metal.MTLArgument.Type
-P:Metal.MTLArgumentDescriptor.Access
-P:Metal.MTLArgumentDescriptor.ArrayLength
-P:Metal.MTLArgumentDescriptor.ConstantBlockAlignment
-P:Metal.MTLArgumentDescriptor.DataType
-P:Metal.MTLArgumentDescriptor.Index
-P:Metal.MTLArgumentDescriptor.TextureType
-P:Metal.MTLArrayType.ArgumentIndexStride
-P:Metal.MTLArrayType.ElementPointerType
-P:Metal.MTLArrayType.ElementTextureReferenceType
-P:Metal.MTLArrayType.ElementType
-P:Metal.MTLArrayType.Length
-P:Metal.MTLArrayType.Stride
P:Metal.MTLAttribute.Active
-P:Metal.MTLAttribute.AttributeIndex
-P:Metal.MTLAttribute.AttributeType
P:Metal.MTLAttribute.IsPatchControlPointData
P:Metal.MTLAttribute.IsPatchData
-P:Metal.MTLAttribute.Name
-P:Metal.MTLAttributeDescriptor.BufferIndex
-P:Metal.MTLAttributeDescriptor.Format
-P:Metal.MTLAttributeDescriptor.Offset
P:Metal.MTLAttributeDescriptorArray.Item(System.UIntPtr)
-P:Metal.MTLBinaryArchiveDescriptor.Url
-P:Metal.MTLBlitPassDescriptor.SampleBufferAttachments
-P:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.EndOfEncoderSampleIndex
-P:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.SampleBuffer
-P:Metal.MTLBlitPassSampleBufferAttachmentDescriptor.StartOfEncoderSampleIndex
P:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray.Item(System.UIntPtr)
-P:Metal.MTLBufferLayoutDescriptor.StepFunction
-P:Metal.MTLBufferLayoutDescriptor.StepRate
-P:Metal.MTLBufferLayoutDescriptor.Stride
P:Metal.MTLBufferLayoutDescriptorArray.Item(System.UIntPtr)
-P:Metal.MTLCaptureDescriptor.CaptureObject
-P:Metal.MTLCaptureDescriptor.Destination
-P:Metal.MTLCaptureDescriptor.OutputUrl
-P:Metal.MTLCaptureManager.DefaultCaptureScope
-P:Metal.MTLCaptureManager.IsCapturing
-P:Metal.MTLCaptureManager.Shared
-P:Metal.MTLCaptureScope.CommandQueue
-P:Metal.MTLCaptureScope.Device
-P:Metal.MTLCaptureScope.Label
P:Metal.MTLCommandBufferDescriptor.BufferEncoderInfoErrorKey
-P:Metal.MTLCommandBufferDescriptor.ErrorOptions
-P:Metal.MTLCommandBufferDescriptor.LogState
-P:Metal.MTLCommandBufferDescriptor.RetainedReferences
-P:Metal.MTLCommandQueueDescriptor.LogState
-P:Metal.MTLCommandQueueDescriptor.MaxCommandBufferCount
-P:Metal.MTLCompileOptions.AllowReferencingUndefinedSymbols
-P:Metal.MTLCompileOptions.CompileSymbolVisibility
-P:Metal.MTLCompileOptions.EnableLogging
-P:Metal.MTLCompileOptions.FastMathEnabled
-P:Metal.MTLCompileOptions.InstallName
-P:Metal.MTLCompileOptions.LanguageVersion
-P:Metal.MTLCompileOptions.Libraries
-P:Metal.MTLCompileOptions.LibraryType
-P:Metal.MTLCompileOptions.MathFloatingPointFunctions
-P:Metal.MTLCompileOptions.MathMode
-P:Metal.MTLCompileOptions.MaxTotalThreadsPerThreadgroup
-P:Metal.MTLCompileOptions.OptimizationLevel
-P:Metal.MTLCompileOptions.PreprocessorMacros
-P:Metal.MTLCompileOptions.PreserveInvariance
-P:Metal.MTLComputePassDescriptor.DispatchType
-P:Metal.MTLComputePassDescriptor.SampleBufferAttachments
-P:Metal.MTLComputePassSampleBufferAttachmentDescriptor.EndOfEncoderSampleIndex
-P:Metal.MTLComputePassSampleBufferAttachmentDescriptor.SampleBuffer
-P:Metal.MTLComputePassSampleBufferAttachmentDescriptor.StartOfEncoderSampleIndex
P:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray.Item(System.UIntPtr)
-P:Metal.MTLComputePipelineDescriptor.BinaryArchives
-P:Metal.MTLComputePipelineDescriptor.Buffers
-P:Metal.MTLComputePipelineDescriptor.ComputeFunction
-P:Metal.MTLComputePipelineDescriptor.InsertLibraries
-P:Metal.MTLComputePipelineDescriptor.Label
-P:Metal.MTLComputePipelineDescriptor.LinkedFunctions
-P:Metal.MTLComputePipelineDescriptor.MaxCallStackDepth
-P:Metal.MTLComputePipelineDescriptor.MaxTotalThreadsPerThreadgroup
-P:Metal.MTLComputePipelineDescriptor.PreloadedLibraries
-P:Metal.MTLComputePipelineDescriptor.ShaderValidation
-P:Metal.MTLComputePipelineDescriptor.StageInputDescriptor
-P:Metal.MTLComputePipelineDescriptor.SupportAddingBinaryFunctions
-P:Metal.MTLComputePipelineDescriptor.SupportIndirectCommandBuffers
-P:Metal.MTLComputePipelineDescriptor.ThreadGroupSizeIsMultipleOfThreadExecutionWidth
-P:Metal.MTLComputePipelineReflection.Arguments
-P:Metal.MTLComputePipelineReflection.Bindings
-P:Metal.MTLCounterSampleBufferDescriptor.CounterSet
-P:Metal.MTLCounterSampleBufferDescriptor.Label
-P:Metal.MTLCounterSampleBufferDescriptor.SampleCount
-P:Metal.MTLCounterSampleBufferDescriptor.StorageMode
-P:Metal.MTLDepthStencilDescriptor.BackFaceStencil
-P:Metal.MTLDepthStencilDescriptor.DepthCompareFunction
P:Metal.MTLDepthStencilDescriptor.DepthWriteEnabled
-P:Metal.MTLDepthStencilDescriptor.FrontFaceStencil
-P:Metal.MTLDepthStencilDescriptor.Label
-P:Metal.MTLDevice.SystemDefault
-P:Metal.MTLDrawable.DrawableId
-P:Metal.MTLDrawable.PresentedTime
-P:Metal.MTLFunctionConstant.Index
-P:Metal.MTLFunctionConstant.IsRequired
-P:Metal.MTLFunctionConstant.Name
-P:Metal.MTLFunctionConstant.Type
-P:Metal.MTLFunctionDescriptor.BinaryArchives
-P:Metal.MTLFunctionDescriptor.ConstantValues
-P:Metal.MTLFunctionDescriptor.Name
-P:Metal.MTLFunctionDescriptor.Options
-P:Metal.MTLFunctionDescriptor.SpecializedName
-P:Metal.MTLFunctionStitchingFunctionNode.Arguments
-P:Metal.MTLFunctionStitchingFunctionNode.ControlDependencies
-P:Metal.MTLFunctionStitchingFunctionNode.Name
-P:Metal.MTLFunctionStitchingGraph.Attributes
-P:Metal.MTLFunctionStitchingGraph.FunctionName
-P:Metal.MTLFunctionStitchingGraph.Nodes
-P:Metal.MTLFunctionStitchingGraph.OutputNode
-P:Metal.MTLFunctionStitchingInputNode.ArgumentIndex
-P:Metal.MTLHeapDescriptor.CpuCacheMode
-P:Metal.MTLHeapDescriptor.HazardTrackingMode
-P:Metal.MTLHeapDescriptor.ResourceOptions
-P:Metal.MTLHeapDescriptor.Size
-P:Metal.MTLHeapDescriptor.SparsePageSize
-P:Metal.MTLHeapDescriptor.StorageMode
-P:Metal.MTLHeapDescriptor.Type
-P:Metal.MTLIndirectCommandBufferDescriptor.CommandTypes
-P:Metal.MTLIndirectCommandBufferDescriptor.InheritBuffers
-P:Metal.MTLIndirectCommandBufferDescriptor.InheritPipelineState
-P:Metal.MTLIndirectCommandBufferDescriptor.MaxFragmentBufferBindCount
-P:Metal.MTLIndirectCommandBufferDescriptor.MaxKernelBufferBindCount
-P:Metal.MTLIndirectCommandBufferDescriptor.MaxKernelThreadgroupMemoryBindCount
-P:Metal.MTLIndirectCommandBufferDescriptor.MaxMeshBufferBindCount
-P:Metal.MTLIndirectCommandBufferDescriptor.MaxObjectBufferBindCount
-P:Metal.MTLIndirectCommandBufferDescriptor.MaxObjectThreadgroupMemoryBindCount
-P:Metal.MTLIndirectCommandBufferDescriptor.MaxVertexBufferBindCount
-P:Metal.MTLIndirectCommandBufferDescriptor.SupportDynamicAttributeStride
-P:Metal.MTLIndirectCommandBufferDescriptor.SupportRayTracing
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.InstanceCountBuffer
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.InstanceCountBufferOffset
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.InstanceDescriptorBuffer
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.InstanceDescriptorBufferOffset
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.InstanceDescriptorStride
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.InstanceDescriptorType
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.InstanceTransformationMatrixLayout
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.MaxInstanceCount
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.MaxMotionTransformCount
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.MotionTransformBuffer
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.MotionTransformBufferOffset
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.MotionTransformCountBuffer
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.MotionTransformCountBufferOffset
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.MotionTransformStride
-P:Metal.MTLIndirectInstanceAccelerationStructureDescriptor.MotionTransformType
-P:Metal.MTLInstanceAccelerationStructureDescriptor.InstanceCount
-P:Metal.MTLInstanceAccelerationStructureDescriptor.InstancedAccelerationStructures
-P:Metal.MTLInstanceAccelerationStructureDescriptor.InstanceDescriptorBuffer
-P:Metal.MTLInstanceAccelerationStructureDescriptor.InstanceDescriptorBufferOffset
-P:Metal.MTLInstanceAccelerationStructureDescriptor.InstanceDescriptorStride
-P:Metal.MTLInstanceAccelerationStructureDescriptor.InstanceDescriptorType
-P:Metal.MTLInstanceAccelerationStructureDescriptor.InstanceTransformationMatrixLayout
-P:Metal.MTLInstanceAccelerationStructureDescriptor.MotionTransformBuffer
-P:Metal.MTLInstanceAccelerationStructureDescriptor.MotionTransformBufferOffset
-P:Metal.MTLInstanceAccelerationStructureDescriptor.MotionTransformCount
-P:Metal.MTLInstanceAccelerationStructureDescriptor.MotionTransformStride
-P:Metal.MTLInstanceAccelerationStructureDescriptor.MotionTransformType
-P:Metal.MTLIntersectionFunctionTableDescriptor.FunctionCount
P:Metal.MTLIOCompressionContext.DefaultChunkSize
-P:Metal.MTLLinkedFunctions.BinaryFunctions
-P:Metal.MTLLinkedFunctions.Functions
-P:Metal.MTLLinkedFunctions.Groups
-P:Metal.MTLLinkedFunctions.InstanceDescriptorType
-P:Metal.MTLLinkedFunctions.MotionTransformBuffer
-P:Metal.MTLLinkedFunctions.MotionTransformBufferOffset
-P:Metal.MTLLinkedFunctions.MotionTransformCount
-P:Metal.MTLLinkedFunctions.PrivateFunctions
-P:Metal.MTLLogStateDescriptor.BufferSize
-P:Metal.MTLLogStateDescriptor.Level
P:Metal.MTLMeshRenderPipelineDescriptor.AlphaToCoverageEnabled
P:Metal.MTLMeshRenderPipelineDescriptor.AlphaToOneEnabled
-P:Metal.MTLMeshRenderPipelineDescriptor.BinaryArchives
-P:Metal.MTLMeshRenderPipelineDescriptor.ColorAttachments
-P:Metal.MTLMeshRenderPipelineDescriptor.DepthAttachmentPixelFormat
-P:Metal.MTLMeshRenderPipelineDescriptor.FragmentBuffers
-P:Metal.MTLMeshRenderPipelineDescriptor.FragmentFunction
-P:Metal.MTLMeshRenderPipelineDescriptor.FragmentLinkedFunctions
-P:Metal.MTLMeshRenderPipelineDescriptor.Label
-P:Metal.MTLMeshRenderPipelineDescriptor.MaxTotalThreadgroupsPerMeshGrid
-P:Metal.MTLMeshRenderPipelineDescriptor.MaxTotalThreadsPerMeshThreadgroup
-P:Metal.MTLMeshRenderPipelineDescriptor.MaxTotalThreadsPerObjectThreadgroup
-P:Metal.MTLMeshRenderPipelineDescriptor.MaxVertexAmplificationCount
-P:Metal.MTLMeshRenderPipelineDescriptor.MeshBuffers
-P:Metal.MTLMeshRenderPipelineDescriptor.MeshFunction
-P:Metal.MTLMeshRenderPipelineDescriptor.MeshLinkedFunctions
-P:Metal.MTLMeshRenderPipelineDescriptor.MeshThreadgroupSizeIsMultipleOfThreadExecutionWidth
-P:Metal.MTLMeshRenderPipelineDescriptor.ObjectBuffers
-P:Metal.MTLMeshRenderPipelineDescriptor.ObjectFunction
-P:Metal.MTLMeshRenderPipelineDescriptor.ObjectLinkedFunctions
-P:Metal.MTLMeshRenderPipelineDescriptor.ObjectThreadgroupSizeIsMultipleOfThreadExecutionWidth
-P:Metal.MTLMeshRenderPipelineDescriptor.PayloadMemoryLength
P:Metal.MTLMeshRenderPipelineDescriptor.RasterizationEnabled
-P:Metal.MTLMeshRenderPipelineDescriptor.RasterSampleCount
-P:Metal.MTLMeshRenderPipelineDescriptor.ShaderValidation
-P:Metal.MTLMeshRenderPipelineDescriptor.StencilAttachmentPixelFormat
-P:Metal.MTLMeshRenderPipelineDescriptor.SupportIndirectCommandBuffers
-P:Metal.MTLMotionKeyframeData.Buffer
-P:Metal.MTLMotionKeyframeData.Offset
-P:Metal.MTLPipelineBufferDescriptor.Mutability
P:Metal.MTLPipelineBufferDescriptorArray.Item(System.UIntPtr)
-P:Metal.MTLPointerType.Access
-P:Metal.MTLPointerType.Alignment
-P:Metal.MTLPointerType.DataSize
-P:Metal.MTLPointerType.ElementArrayType
-P:Metal.MTLPointerType.ElementIsArgumentBuffer
-P:Metal.MTLPointerType.ElementStructType
-P:Metal.MTLPointerType.ElementType
-P:Metal.MTLPrimitiveAccelerationStructureDescriptor.GeometryDescriptors
-P:Metal.MTLPrimitiveAccelerationStructureDescriptor.MotionEndBorderMode
-P:Metal.MTLPrimitiveAccelerationStructureDescriptor.MotionEndTime
-P:Metal.MTLPrimitiveAccelerationStructureDescriptor.MotionKeyframeCount
-P:Metal.MTLPrimitiveAccelerationStructureDescriptor.MotionStartBorderMode
-P:Metal.MTLPrimitiveAccelerationStructureDescriptor.MotionStartTime
-P:Metal.MTLRasterizationRateLayerDescriptor.Horizontal
P:Metal.MTLRasterizationRateLayerDescriptor.HorizontalSampleStorage
-P:Metal.MTLRasterizationRateLayerDescriptor.MaxSampleCount
-P:Metal.MTLRasterizationRateLayerDescriptor.SampleCount
-P:Metal.MTLRasterizationRateLayerDescriptor.Vertical
P:Metal.MTLRasterizationRateLayerDescriptor.VerticalSampleStorage
-P:Metal.MTLRasterizationRateMapDescriptor.Label
-P:Metal.MTLRasterizationRateMapDescriptor.LayerCount
-P:Metal.MTLRasterizationRateMapDescriptor.Layers
-P:Metal.MTLRasterizationRateMapDescriptor.ScreenSize
-P:Metal.MTLRenderPassAttachmentDescriptor.DepthPlane
-P:Metal.MTLRenderPassAttachmentDescriptor.Level
-P:Metal.MTLRenderPassAttachmentDescriptor.LoadAction
-P:Metal.MTLRenderPassAttachmentDescriptor.ResolveDepthPlane
-P:Metal.MTLRenderPassAttachmentDescriptor.ResolveLevel
-P:Metal.MTLRenderPassAttachmentDescriptor.ResolveSlice
-P:Metal.MTLRenderPassAttachmentDescriptor.ResolveTexture
-P:Metal.MTLRenderPassAttachmentDescriptor.Slice
-P:Metal.MTLRenderPassAttachmentDescriptor.StoreAction
-P:Metal.MTLRenderPassAttachmentDescriptor.StoreActionOptions
-P:Metal.MTLRenderPassAttachmentDescriptor.Texture
-P:Metal.MTLRenderPassColorAttachmentDescriptor.ClearColor
P:Metal.MTLRenderPassColorAttachmentDescriptorArray.Item(System.IntPtr)
-P:Metal.MTLRenderPassDepthAttachmentDescriptor.ClearDepth
-P:Metal.MTLRenderPassDepthAttachmentDescriptor.DepthResolveFilter
-P:Metal.MTLRenderPassDescriptor.ColorAttachments
-P:Metal.MTLRenderPassDescriptor.DefaultRasterSampleCount
-P:Metal.MTLRenderPassDescriptor.DepthAttachment
-P:Metal.MTLRenderPassDescriptor.ImageblockSampleLength
-P:Metal.MTLRenderPassDescriptor.RasterizationRateMap
-P:Metal.MTLRenderPassDescriptor.RenderTargetArrayLength
-P:Metal.MTLRenderPassDescriptor.RenderTargetHeight
-P:Metal.MTLRenderPassDescriptor.RenderTargetWidth
-P:Metal.MTLRenderPassDescriptor.SampleBufferAttachments
-P:Metal.MTLRenderPassDescriptor.StencilAttachment
-P:Metal.MTLRenderPassDescriptor.ThreadgroupMemoryLength
-P:Metal.MTLRenderPassDescriptor.TileHeight
-P:Metal.MTLRenderPassDescriptor.TileWidth
-P:Metal.MTLRenderPassDescriptor.VisibilityResultBuffer
-P:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.EndOfFragmentSampleIndex
-P:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.EndOfVertexSampleIndex
-P:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.SampleBuffer
-P:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.StartOfFragmentSampleIndex
-P:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.StartOfVertexSampleIndex
P:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray.Item(System.UIntPtr)
-P:Metal.MTLRenderPassStencilAttachmentDescriptor.ClearStencil
-P:Metal.MTLRenderPassStencilAttachmentDescriptor.StencilResolveFilter
-P:Metal.MTLRenderPipelineColorAttachmentDescriptor.AlphaBlendOperation
P:Metal.MTLRenderPipelineColorAttachmentDescriptor.BlendingEnabled
-P:Metal.MTLRenderPipelineColorAttachmentDescriptor.DestinationAlphaBlendFactor
-P:Metal.MTLRenderPipelineColorAttachmentDescriptor.DestinationRgbBlendFactor
-P:Metal.MTLRenderPipelineColorAttachmentDescriptor.PixelFormat
-P:Metal.MTLRenderPipelineColorAttachmentDescriptor.RgbBlendOperation
-P:Metal.MTLRenderPipelineColorAttachmentDescriptor.SourceAlphaBlendFactor
-P:Metal.MTLRenderPipelineColorAttachmentDescriptor.SourceRgbBlendFactor
-P:Metal.MTLRenderPipelineColorAttachmentDescriptor.WriteMask
P:Metal.MTLRenderPipelineColorAttachmentDescriptorArray.Item(System.IntPtr)
P:Metal.MTLRenderPipelineDescriptor.AlphaToCoverageEnabled
P:Metal.MTLRenderPipelineDescriptor.AlphaToOneEnabled
-P:Metal.MTLRenderPipelineDescriptor.BinaryArchives
-P:Metal.MTLRenderPipelineDescriptor.ColorAttachments
-P:Metal.MTLRenderPipelineDescriptor.DepthAttachmentPixelFormat
-P:Metal.MTLRenderPipelineDescriptor.FragmentBuffers
-P:Metal.MTLRenderPipelineDescriptor.FragmentFunction
-P:Metal.MTLRenderPipelineDescriptor.FragmentLinkedFunctions
-P:Metal.MTLRenderPipelineDescriptor.FragmentPreloadedLibraries
-P:Metal.MTLRenderPipelineDescriptor.InputPrimitiveTopology
P:Metal.MTLRenderPipelineDescriptor.IsTessellationFactorScaleEnabled
-P:Metal.MTLRenderPipelineDescriptor.Label
-P:Metal.MTLRenderPipelineDescriptor.MaxFragmentCallStackDepth
-P:Metal.MTLRenderPipelineDescriptor.MaxTessellationFactor
-P:Metal.MTLRenderPipelineDescriptor.MaxVertexAmplificationCount
-P:Metal.MTLRenderPipelineDescriptor.MaxVertexCallStackDepth
P:Metal.MTLRenderPipelineDescriptor.RasterizationEnabled
-P:Metal.MTLRenderPipelineDescriptor.RasterSampleCount
-P:Metal.MTLRenderPipelineDescriptor.SampleCount
-P:Metal.MTLRenderPipelineDescriptor.ShaderValidation
-P:Metal.MTLRenderPipelineDescriptor.StencilAttachmentPixelFormat
-P:Metal.MTLRenderPipelineDescriptor.SupportAddingFragmentBinaryFunctions
-P:Metal.MTLRenderPipelineDescriptor.SupportAddingVertexBinaryFunctions
-P:Metal.MTLRenderPipelineDescriptor.SupportIndirectCommandBuffers
-P:Metal.MTLRenderPipelineDescriptor.TessellationControlPointIndexType
-P:Metal.MTLRenderPipelineDescriptor.TessellationFactorFormat
-P:Metal.MTLRenderPipelineDescriptor.TessellationFactorStepFunction
-P:Metal.MTLRenderPipelineDescriptor.TessellationOutputWindingOrder
-P:Metal.MTLRenderPipelineDescriptor.TessellationPartitionMode
-P:Metal.MTLRenderPipelineDescriptor.VertexBuffers
-P:Metal.MTLRenderPipelineDescriptor.VertexDescriptor
-P:Metal.MTLRenderPipelineDescriptor.VertexFunction
-P:Metal.MTLRenderPipelineDescriptor.VertexLinkedFunctions
-P:Metal.MTLRenderPipelineDescriptor.VertexPreloadedLibraries
-P:Metal.MTLRenderPipelineFunctionsDescriptor.FragmentAdditionalBinaryFunctions
-P:Metal.MTLRenderPipelineFunctionsDescriptor.TileAdditionalBinaryFunctions
-P:Metal.MTLRenderPipelineFunctionsDescriptor.VertexAdditionalBinaryFunctions
-P:Metal.MTLRenderPipelineReflection.FragmentArguments
-P:Metal.MTLRenderPipelineReflection.FragmentBindings
-P:Metal.MTLRenderPipelineReflection.MeshBindings
-P:Metal.MTLRenderPipelineReflection.ObjectBindings
-P:Metal.MTLRenderPipelineReflection.TileArguments
-P:Metal.MTLRenderPipelineReflection.TileBindings
-P:Metal.MTLRenderPipelineReflection.VertexArguments
-P:Metal.MTLRenderPipelineReflection.VertexBindings
-P:Metal.MTLResidencySetDescriptor.InitialCapacity
-P:Metal.MTLResidencySetDescriptor.Label
-P:Metal.MTLResourceStatePassDescriptor.SampleBufferAttachments
-P:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.EndOfEncoderSampleIndex
-P:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.SampleBuffer
-P:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.StartOfEncoderSampleIndex
P:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray.Item(System.UIntPtr)
-P:Metal.MTLSamplerDescriptor.BorderColor
-P:Metal.MTLSamplerDescriptor.CompareFunction
-P:Metal.MTLSamplerDescriptor.Label
-P:Metal.MTLSamplerDescriptor.LodAverage
-P:Metal.MTLSamplerDescriptor.LodMaxClamp
-P:Metal.MTLSamplerDescriptor.LodMinClamp
-P:Metal.MTLSamplerDescriptor.MagFilter
-P:Metal.MTLSamplerDescriptor.MaxAnisotropy
-P:Metal.MTLSamplerDescriptor.MinFilter
-P:Metal.MTLSamplerDescriptor.MipFilter
-P:Metal.MTLSamplerDescriptor.NormalizedCoordinates
-P:Metal.MTLSamplerDescriptor.RAddressMode
-P:Metal.MTLSamplerDescriptor.SAddressMode
-P:Metal.MTLSamplerDescriptor.SupportArgumentBuffers
-P:Metal.MTLSamplerDescriptor.TAddressMode
-P:Metal.MTLSharedEventHandle.Label
-P:Metal.MTLSharedEventListener.DispatchQueue
-P:Metal.MTLSharedTextureHandle.Device
-P:Metal.MTLSharedTextureHandle.Label
-P:Metal.MTLStageInputOutputDescriptor.Attributes
-P:Metal.MTLStageInputOutputDescriptor.IndexBufferIndex
-P:Metal.MTLStageInputOutputDescriptor.IndexType
-P:Metal.MTLStageInputOutputDescriptor.Layouts
-P:Metal.MTLStencilDescriptor.DepthFailureOperation
-P:Metal.MTLStencilDescriptor.DepthStencilPassOperation
-P:Metal.MTLStencilDescriptor.ReadMask
-P:Metal.MTLStencilDescriptor.StencilCompareFunction
-P:Metal.MTLStencilDescriptor.StencilFailureOperation
-P:Metal.MTLStencilDescriptor.WriteMask
-P:Metal.MTLStitchedLibraryDescriptor.BinaryArchives
-P:Metal.MTLStitchedLibraryDescriptor.FunctionGraphs
-P:Metal.MTLStitchedLibraryDescriptor.Functions
-P:Metal.MTLStitchedLibraryDescriptor.Options
-P:Metal.MTLStructMember.ArgumentIndex
-P:Metal.MTLStructMember.ArrayType
-P:Metal.MTLStructMember.DataType
-P:Metal.MTLStructMember.Name
-P:Metal.MTLStructMember.Offset
-P:Metal.MTLStructMember.PointerType
-P:Metal.MTLStructMember.StructType
-P:Metal.MTLStructMember.TextureReferenceType
-P:Metal.MTLStructType.Members
-P:Metal.MTLTextureDescriptor.AllowGpuOptimizedContents
-P:Metal.MTLTextureDescriptor.ArrayLength
-P:Metal.MTLTextureDescriptor.CompressionType
-P:Metal.MTLTextureDescriptor.CpuCacheMode
-P:Metal.MTLTextureDescriptor.Depth
-P:Metal.MTLTextureDescriptor.HazardTrackingMode
-P:Metal.MTLTextureDescriptor.Height
-P:Metal.MTLTextureDescriptor.MipmapLevelCount
-P:Metal.MTLTextureDescriptor.PixelFormat
-P:Metal.MTLTextureDescriptor.ResourceOptions
-P:Metal.MTLTextureDescriptor.SampleCount
-P:Metal.MTLTextureDescriptor.StorageMode
-P:Metal.MTLTextureDescriptor.Swizzle
-P:Metal.MTLTextureDescriptor.TextureType
-P:Metal.MTLTextureDescriptor.Usage
-P:Metal.MTLTextureDescriptor.Width
-P:Metal.MTLTextureReferenceType.Access
-P:Metal.MTLTextureReferenceType.IsDepthTexture
-P:Metal.MTLTextureReferenceType.TextureDataType
-P:Metal.MTLTextureReferenceType.TextureType
-P:Metal.MTLTileRenderPipelineColorAttachmentDescriptor.PixelFormat
P:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray.Item(System.UIntPtr)
-P:Metal.MTLTileRenderPipelineDescriptor.BinaryArchives
-P:Metal.MTLTileRenderPipelineDescriptor.ColorAttachments
-P:Metal.MTLTileRenderPipelineDescriptor.Label
-P:Metal.MTLTileRenderPipelineDescriptor.LinkedFunctions
-P:Metal.MTLTileRenderPipelineDescriptor.MaxCallStackDepth
-P:Metal.MTLTileRenderPipelineDescriptor.MaxTotalThreadsPerThreadgroup
-P:Metal.MTLTileRenderPipelineDescriptor.PreloadedLibraries
-P:Metal.MTLTileRenderPipelineDescriptor.RasterSampleCount
-P:Metal.MTLTileRenderPipelineDescriptor.ShaderValidation
-P:Metal.MTLTileRenderPipelineDescriptor.SupportAddingBinaryFunctions
-P:Metal.MTLTileRenderPipelineDescriptor.ThreadgroupSizeMatchesTileSize
-P:Metal.MTLTileRenderPipelineDescriptor.TileBuffers
-P:Metal.MTLTileRenderPipelineDescriptor.TileFunction
-P:Metal.MTLType.DataType
P:Metal.MTLVertexAttribute.Active
-P:Metal.MTLVertexAttribute.AttributeIndex
-P:Metal.MTLVertexAttribute.AttributeType
-P:Metal.MTLVertexAttribute.Name
P:Metal.MTLVertexAttribute.PatchControlPointData
P:Metal.MTLVertexAttribute.PatchData
-P:Metal.MTLVertexAttributeDescriptor.BufferIndex
-P:Metal.MTLVertexAttributeDescriptor.Format
-P:Metal.MTLVertexAttributeDescriptor.Offset
P:Metal.MTLVertexAttributeDescriptorArray.Item(System.IntPtr)
-P:Metal.MTLVertexBufferLayoutDescriptor.StepFunction
-P:Metal.MTLVertexBufferLayoutDescriptor.StepRate
-P:Metal.MTLVertexBufferLayoutDescriptor.Stride
P:Metal.MTLVertexBufferLayoutDescriptorArray.Item(System.IntPtr)
-P:Metal.MTLVertexDescriptor.Attributes
-P:Metal.MTLVertexDescriptor.Layouts
-P:Metal.MTLVisibleFunctionTableDescriptor.FunctionCount
P:MetalFX.IMTLFXSpatialScaler.ColorProcessingMode
P:MetalFX.IMTLFXSpatialScaler.ColorTexture
P:MetalFX.IMTLFXSpatialScaler.ColorTextureFormat
@@ -89878,51 +60062,12 @@ P:MetalFX.IMTLFXTemporalScaler.PreExposure
P:MetalFX.IMTLFXTemporalScaler.ReactiveMaskTexture
P:MetalFX.IMTLFXTemporalScaler.ReactiveTextureUsage
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:MetalFX.MTLFXTemporalScalerDescriptor.ReactiveMaskTextureEnabled
-P:MetalFX.MTLFXTemporalScalerDescriptor.ReactiveMaskTextureFormat
-P:MetalFX.MTLFXTemporalScalerDescriptor.RequiresSynchronousInitialization
-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
@@ -89934,32 +60079,8 @@ 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.Epsilon
P:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.Gamma
@@ -90970,156 +61091,9 @@ 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
@@ -91382,153 +61356,8 @@ P:MLCompute.MLCYoloLossDescriptor.ScaleSpatialPositionLoss
P:MLCompute.MLCYoloLossDescriptor.ScaleSpatialSizeLoss
P:MLCompute.MLCYoloLossDescriptor.ShouldRescore
P:MLCompute.MLCYoloLossLayer.YoloLossDescriptor
-P:MobileCoreServices.UTType.Alembic
-P:MobileCoreServices.UTType.AliasFile
-P:MobileCoreServices.UTType.AliasRecord
-P:MobileCoreServices.UTType.AppleICNS
-P:MobileCoreServices.UTType.AppleProtectedMPEG4Audio
-P:MobileCoreServices.UTType.AppleProtectedMPEG4Video
-P:MobileCoreServices.UTType.AppleScript
-P:MobileCoreServices.UTType.Application
-P:MobileCoreServices.UTType.ApplicationBundle
-P:MobileCoreServices.UTType.ApplicationFile
-P:MobileCoreServices.UTType.Archive
-P:MobileCoreServices.UTType.AssemblyLanguageSource
-P:MobileCoreServices.UTType.Audio
-P:MobileCoreServices.UTType.AudioInterchangeFileFormat
-P:MobileCoreServices.UTType.AudiovisualContent
-P:MobileCoreServices.UTType.AVIMovie
-P:MobileCoreServices.UTType.BinaryPropertyList
-P:MobileCoreServices.UTType.BMP
-P:MobileCoreServices.UTType.Bookmark
-P:MobileCoreServices.UTType.Bundle
-P:MobileCoreServices.UTType.Bzip2Archive
-P:MobileCoreServices.UTType.CalendarEvent
-P:MobileCoreServices.UTType.CHeader
-P:MobileCoreServices.UTType.CommaSeparatedText
-P:MobileCoreServices.UTType.CompositeContent
-P:MobileCoreServices.UTType.ConformsToKey
-P:MobileCoreServices.UTType.Contact
-P:MobileCoreServices.UTType.Content
-P:MobileCoreServices.UTType.CPlusPlusHeader
-P:MobileCoreServices.UTType.CPlusPlusSource
-P:MobileCoreServices.UTType.CSource
-P:MobileCoreServices.UTType.Data
-P:MobileCoreServices.UTType.Database
-P:MobileCoreServices.UTType.DelimitedText
-P:MobileCoreServices.UTType.DescriptionKey
-P:MobileCoreServices.UTType.Directory
-P:MobileCoreServices.UTType.DiskImage
-P:MobileCoreServices.UTType.ElectronicPublication
-P:MobileCoreServices.UTType.EmailMessage
-P:MobileCoreServices.UTType.Executable
-P:MobileCoreServices.UTType.ExportedTypeDeclarationsKey
-P:MobileCoreServices.UTType.FileURL
-P:MobileCoreServices.UTType.FlatRTFD
-P:MobileCoreServices.UTType.Folder
-P:MobileCoreServices.UTType.Font
-P:MobileCoreServices.UTType.Framework
-P:MobileCoreServices.UTType.GIF
-P:MobileCoreServices.UTType.GNUZipArchive
-P:MobileCoreServices.UTType.HTML
-P:MobileCoreServices.UTType.ICO
-P:MobileCoreServices.UTType.IconFileKey
-P:MobileCoreServices.UTType.IdentifierKey
-P:MobileCoreServices.UTType.Image
-P:MobileCoreServices.UTType.ImportedTypeDeclarationsKey
-P:MobileCoreServices.UTType.InkText
-P:MobileCoreServices.UTType.InternetLocation
-P:MobileCoreServices.UTType.Item
-P:MobileCoreServices.UTType.JavaArchive
-P:MobileCoreServices.UTType.JavaClass
-P:MobileCoreServices.UTType.JavaScript
-P:MobileCoreServices.UTType.JavaSource
-P:MobileCoreServices.UTType.JPEG
-P:MobileCoreServices.UTType.JPEG2000
-P:MobileCoreServices.UTType.JSON
-P:MobileCoreServices.UTType.k3dObject
P:MobileCoreServices.UTType.LivePhoto
-P:MobileCoreServices.UTType.Log
-P:MobileCoreServices.UTType.M3UPlaylist
-P:MobileCoreServices.UTType.Message
-P:MobileCoreServices.UTType.MIDIAudio
-P:MobileCoreServices.UTType.MountPoint
-P:MobileCoreServices.UTType.Movie
-P:MobileCoreServices.UTType.MP3
-P:MobileCoreServices.UTType.MPEG
-P:MobileCoreServices.UTType.MPEG2TransportStream
-P:MobileCoreServices.UTType.MPEG2Video
-P:MobileCoreServices.UTType.MPEG4
-P:MobileCoreServices.UTType.MPEG4Audio
-P:MobileCoreServices.UTType.ObjectiveCPlusPlusSource
-P:MobileCoreServices.UTType.ObjectiveCSource
-P:MobileCoreServices.UTType.OSAScript
-P:MobileCoreServices.UTType.OSAScriptBundle
-P:MobileCoreServices.UTType.Package
-P:MobileCoreServices.UTType.PDF
-P:MobileCoreServices.UTType.PerlScript
-P:MobileCoreServices.UTType.PHPScript
-P:MobileCoreServices.UTType.PICT
-P:MobileCoreServices.UTType.PKCS12
-P:MobileCoreServices.UTType.PlainText
-P:MobileCoreServices.UTType.Playlist
-P:MobileCoreServices.UTType.PluginBundle
-P:MobileCoreServices.UTType.PNG
-P:MobileCoreServices.UTType.Polygon
-P:MobileCoreServices.UTType.Presentation
-P:MobileCoreServices.UTType.PropertyList
-P:MobileCoreServices.UTType.PythonScript
-P:MobileCoreServices.UTType.QuickLookGenerator
-P:MobileCoreServices.UTType.QuickTimeImage
-P:MobileCoreServices.UTType.QuickTimeMovie
-P:MobileCoreServices.UTType.RawImage
-P:MobileCoreServices.UTType.ReferenceURLKey
-P:MobileCoreServices.UTType.Resolvable
-P:MobileCoreServices.UTType.RTF
-P:MobileCoreServices.UTType.RTFD
-P:MobileCoreServices.UTType.RubyScript
-P:MobileCoreServices.UTType.ScalableVectorGraphics
-P:MobileCoreServices.UTType.Script
-P:MobileCoreServices.UTType.ShellScript
-P:MobileCoreServices.UTType.SourceCode
-P:MobileCoreServices.UTType.SpotlightImporter
-P:MobileCoreServices.UTType.Spreadsheet
-P:MobileCoreServices.UTType.Stereolithography
-P:MobileCoreServices.UTType.SwiftSource
-P:MobileCoreServices.UTType.SymLink
-P:MobileCoreServices.UTType.SystemPreferencesPane
-P:MobileCoreServices.UTType.TabSeparatedText
-P:MobileCoreServices.UTType.TagClassFilenameExtension
-P:MobileCoreServices.UTType.TagClassMIMEType
-P:MobileCoreServices.UTType.TagClassNSPboardType
-P:MobileCoreServices.UTType.TagClassOSType
-P:MobileCoreServices.UTType.TagSpecificationKey
-P:MobileCoreServices.UTType.Text
-P:MobileCoreServices.UTType.ThreeDContent
-P:MobileCoreServices.UTType.TIFF
-P:MobileCoreServices.UTType.ToDoItem
-P:MobileCoreServices.UTType.TXNTextAndMultimediaData
-P:MobileCoreServices.UTType.UniversalSceneDescription
P:MobileCoreServices.UTType.UniversalSceneDescriptionMobile
-P:MobileCoreServices.UTType.UnixExecutable
-P:MobileCoreServices.UTType.URL
-P:MobileCoreServices.UTType.URLBookmarkData
-P:MobileCoreServices.UTType.UTF16ExternalPlainText
-P:MobileCoreServices.UTType.UTF16PlainText
-P:MobileCoreServices.UTType.UTF8PlainText
-P:MobileCoreServices.UTType.UTF8TabSeparatedText
-P:MobileCoreServices.UTType.VCard
-P:MobileCoreServices.UTType.VersionKey
-P:MobileCoreServices.UTType.Video
-P:MobileCoreServices.UTType.Volume
-P:MobileCoreServices.UTType.WaveformAudio
-P:MobileCoreServices.UTType.WebArchive
-P:MobileCoreServices.UTType.WindowsExecutable
-P:MobileCoreServices.UTType.X509Certificate
-P:MobileCoreServices.UTType.XML
-P:MobileCoreServices.UTType.XMLPropertyList
-P:MobileCoreServices.UTType.XPCService
-P:MobileCoreServices.UTType.ZipArchive
P:ModelIO.IMDLLightProbeIrradianceDataSource.BoundingBox
P:ModelIO.IMDLLightProbeIrradianceDataSource.SphericalHarmonicsLevel
P:ModelIO.IMDLMeshBuffer.Allocator
@@ -91548,63 +61377,12 @@ P:ModelIO.IMDLTransformComponent.MinimumTime
P:ModelIO.IMDLTransformComponent.ResetsTransform
P:ModelIO.IMDLTransformOp.IsInverseOp
P:ModelIO.IMDLTransformOp.Name
-P:ModelIO.MDLAnimatedQuaternionArray.ElementCount
-P:ModelIO.MDLAnimatedScalarArray.ElementCount
-P:ModelIO.MDLAnimatedValue.Interpolation
-P:ModelIO.MDLAnimatedValue.IsAnimated
-P:ModelIO.MDLAnimatedValue.KeyTimes
-P:ModelIO.MDLAnimatedValue.MaximumTime
-P:ModelIO.MDLAnimatedValue.MinimumTime
-P:ModelIO.MDLAnimatedValue.Precision
-P:ModelIO.MDLAnimatedValue.TimeSampleCount
-P:ModelIO.MDLAnimatedValue.WeakKeyTimes
-P:ModelIO.MDLAnimatedVector3Array.ElementCount
-P:ModelIO.MDLAnimationBindComponent.GeometryBindTransform
-P:ModelIO.MDLAnimationBindComponent.JointAnimation
-P:ModelIO.MDLAnimationBindComponent.JointPaths
-P:ModelIO.MDLAnimationBindComponent.Skeleton
P:ModelIO.MDLAreaLight.AreaRadius
P:ModelIO.MDLAreaLight.Aspect
P:ModelIO.MDLAreaLight.SuperEllipticPower
-P:ModelIO.MDLAsset.Animations
-P:ModelIO.MDLAsset.BoundingBox
-P:ModelIO.MDLAsset.BufferAllocator
-P:ModelIO.MDLAsset.Components
-P:ModelIO.MDLAsset.Count
-P:ModelIO.MDLAsset.EndTime
-P:ModelIO.MDLAsset.FrameInterval
P:ModelIO.MDLAsset.Item(System.UIntPtr)
-P:ModelIO.MDLAsset.Masters
P:ModelIO.MDLAsset.Originals
-P:ModelIO.MDLAsset.Resolver
-P:ModelIO.MDLAsset.StartTime
-P:ModelIO.MDLAsset.UpAxis
-P:ModelIO.MDLAsset.Url
-P:ModelIO.MDLAsset.VertexDescriptor
P:ModelIO.MDLBundleAssetResolver.Path
-P:ModelIO.MDLCamera.ApertureBladeCount
-P:ModelIO.MDLCamera.BarrelDistortion
-P:ModelIO.MDLCamera.ChromaticAberration
-P:ModelIO.MDLCamera.Exposure
-P:ModelIO.MDLCamera.ExposureCompression
-P:ModelIO.MDLCamera.FarVisibilityDistance
-P:ModelIO.MDLCamera.FieldOfView
-P:ModelIO.MDLCamera.FisheyeDistortion
-P:ModelIO.MDLCamera.Flash
-P:ModelIO.MDLCamera.FocalLength
-P:ModelIO.MDLCamera.FocusDistance
-P:ModelIO.MDLCamera.FStop
-P:ModelIO.MDLCamera.MaximumCircleOfConfusion
-P:ModelIO.MDLCamera.NearVisibilityDistance
-P:ModelIO.MDLCamera.OpticalVignetting
-P:ModelIO.MDLCamera.Projection
-P:ModelIO.MDLCamera.ProjectionMatrix
-P:ModelIO.MDLCamera.SensorAspect
-P:ModelIO.MDLCamera.SensorEnlargement
-P:ModelIO.MDLCamera.SensorShift
-P:ModelIO.MDLCamera.SensorVerticalAperture
-P:ModelIO.MDLCamera.ShutterOpenInterval
-P:ModelIO.MDLCamera.WorldToMetersConversionScale
P:ModelIO.MDLCheckerboardTexture.Color1
P:ModelIO.MDLCheckerboardTexture.Color2
P:ModelIO.MDLCheckerboardTexture.Divisions
@@ -91645,8 +61423,6 @@ P:ModelIO.MDLMaterialPropertyNode.EvaluationFunction
P:ModelIO.MDLMaterialPropertyNode.Inputs
P:ModelIO.MDLMaterialPropertyNode.Name
P:ModelIO.MDLMaterialPropertyNode.Outputs
-P:ModelIO.MDLMatrix4x4Array.ElementCount
-P:ModelIO.MDLMatrix4x4Array.Precision
P:ModelIO.MDLMesh.Allocator
P:ModelIO.MDLMesh.AnisotropyVertexData
P:ModelIO.MDLMesh.BinormalVertexData
@@ -91786,10 +61562,6 @@ P:ModelIO.MDLTransform.Matrix
P:ModelIO.MDLTransform.MaximumTime
P:ModelIO.MDLTransform.MinimumTime
P:ModelIO.MDLTransform.ResetsTransform
-P:ModelIO.MDLTransform.Rotation
-P:ModelIO.MDLTransform.Scale
-P:ModelIO.MDLTransform.Shear
-P:ModelIO.MDLTransform.Translation
P:ModelIO.MDLTransformMatrixOp.AnimatedValue
P:ModelIO.MDLTransformMatrixOp.IsInverseOp
P:ModelIO.MDLTransformMatrixOp.Name
@@ -91849,8 +61621,6 @@ P:ModelIO.MDLVertexAttributes.SubdivisionStencil
P:ModelIO.MDLVertexAttributes.Tangent
P:ModelIO.MDLVertexAttributes.TextureCoordinate
P:ModelIO.MDLVertexBufferLayout.Stride
-P:ModelIO.MDLVertexDescriptor.Attributes
-P:ModelIO.MDLVertexDescriptor.Layouts
P:ModelIO.MDLVoxelArray.BoundingBox
P:ModelIO.MDLVoxelArray.Count
P:ModelIO.MDLVoxelArray.IsValidSignedShellField
@@ -91859,10 +61629,6 @@ P:ModelIO.MDLVoxelArray.ShellFieldInteriorThickness
P:ModelIO.MDLVoxelArray.VoxelIndexExtent
P:ModelIO.MDLVoxelIndexExtent.MaximumExtent
P:ModelIO.MDLVoxelIndexExtent.MinimumExtent
-P:MultipeerConnectivity.MCAdvertiserAssistant.Delegate
-P:MultipeerConnectivity.MCAdvertiserAssistant.DiscoveryInfo
-P:MultipeerConnectivity.MCAdvertiserAssistant.ServiceType
-P:MultipeerConnectivity.MCAdvertiserAssistant.Session
P:MultipeerConnectivity.MCAdvertiserAssistant.WeakDelegate
P:MultipeerConnectivity.MCBrowserViewController.Browser
P:MultipeerConnectivity.MCBrowserViewController.Delegate
@@ -91870,23 +61636,8 @@ P:MultipeerConnectivity.MCBrowserViewController.MaximumNumberOfPeers
P:MultipeerConnectivity.MCBrowserViewController.MinimumNumberOfPeers
P:MultipeerConnectivity.MCBrowserViewController.Session
P:MultipeerConnectivity.MCBrowserViewController.WeakDelegate
-P:MultipeerConnectivity.MCNearbyServiceAdvertiser.Delegate
-P:MultipeerConnectivity.MCNearbyServiceAdvertiser.DiscoveryInfo
-P:MultipeerConnectivity.MCNearbyServiceAdvertiser.MyPeerID
-P:MultipeerConnectivity.MCNearbyServiceAdvertiser.ServiceType
P:MultipeerConnectivity.MCNearbyServiceAdvertiser.WeakDelegate
-P:MultipeerConnectivity.MCNearbyServiceBrowser.Delegate
-P:MultipeerConnectivity.MCNearbyServiceBrowser.MyPeerID
-P:MultipeerConnectivity.MCNearbyServiceBrowser.ServiceType
P:MultipeerConnectivity.MCNearbyServiceBrowser.WeakDelegate
-P:MultipeerConnectivity.MCPeerID.DisplayName
-P:MultipeerConnectivity.MCSession.ConnectedPeers
-P:MultipeerConnectivity.MCSession.Delegate
-P:MultipeerConnectivity.MCSession.EncryptionPreference
-P:MultipeerConnectivity.MCSession.MaximumNumberOfPeers
-P:MultipeerConnectivity.MCSession.MinimumNumberOfPeers
-P:MultipeerConnectivity.MCSession.MyPeerID
-P:MultipeerConnectivity.MCSession.SecurityIdentity
P:MultipeerConnectivity.MCSession.WeakDelegate
P:NaturalLanguage.NLContextualEmbedding.Dimension
P:NaturalLanguage.NLContextualEmbedding.HasAvailableAssets
@@ -91904,10 +61655,6 @@ P:NaturalLanguage.NLEmbedding.Revision
P:NaturalLanguage.NLEmbedding.VocabularySize
P:NaturalLanguage.NLGazetteer.Data
P:NaturalLanguage.NLGazetteer.Language
-P:NaturalLanguage.NLLanguageRecognizer.DominantLanguage
-P:NaturalLanguage.NLLanguageRecognizer.LanguageConstraints
-P:NaturalLanguage.NLLanguageRecognizer.LanguageHints
-P:NaturalLanguage.NLModel.Configuration
P:NaturalLanguage.NLModelConfiguration.Language
P:NaturalLanguage.NLModelConfiguration.Revision
P:NaturalLanguage.NLModelConfiguration.Type
@@ -91944,9 +61691,6 @@ P:NaturalLanguage.NLTag.Verb
P:NaturalLanguage.NLTag.Whitespace
P:NaturalLanguage.NLTag.Word
P:NaturalLanguage.NLTag.WordJoiner
-P:NaturalLanguage.NLTagger.DominantLanguage
-P:NaturalLanguage.NLTagger.String
-P:NaturalLanguage.NLTagger.TagSchemes
P:NaturalLanguage.NLTokenizer.String
P:NaturalLanguage.NLTokenizer.Unit
P:NaturalLanguage.NLVectorDictionary.Item(Foundation.NSString)
@@ -92518,57 +62262,17 @@ P:NotificationCenter.NCWidgetSearchViewController.SearchResultsPlaceholderString
P:NotificationCenter.NSWidgetSearchForTermEventArgs.Max
P:NotificationCenter.NSWidgetSearchForTermEventArgs.SearchTerm
P:NotificationCenter.NSWidgetSearchResultSelectedEventArgs.Obj
-P:ObjCRuntime.AdoptsAttribute.ProtocolHandle
-P:ObjCRuntime.AdoptsAttribute.ProtocolType
-P:ObjCRuntime.AssemblyRegistrationEventArgs.AssemblyName
-P:ObjCRuntime.AssemblyRegistrationEventArgs.Register
-P:ObjCRuntime.BindingImplAttribute.Options
-P:ObjCRuntime.BlockLiteral.Target
-P:ObjCRuntime.BlockProxyAttribute.Type
-P:ObjCRuntime.CategoryAttribute.Name
-P:ObjCRuntime.CategoryAttribute.Type
-P:ObjCRuntime.Class.Handle
-P:ObjCRuntime.Class.Name
-P:ObjCRuntime.Class.SuperClass
-P:ObjCRuntime.DelayedRegistrationAttribute.Delay
-P:ObjCRuntime.DelegateProxyAttribute.DelegateType
P:ObjCRuntime.DisposableObject.Handle
P:ObjCRuntime.DisposableObject.Owns
-P:ObjCRuntime.INativeObject.Handle
-P:ObjCRuntime.LinkWithAttribute.Dlsym
-P:ObjCRuntime.LinkWithAttribute.ForceLoad
-P:ObjCRuntime.LinkWithAttribute.Frameworks
-P:ObjCRuntime.LinkWithAttribute.IsCxx
-P:ObjCRuntime.LinkWithAttribute.LibraryName
-P:ObjCRuntime.LinkWithAttribute.LinkerFlags
-P:ObjCRuntime.LinkWithAttribute.LinkTarget
-P:ObjCRuntime.LinkWithAttribute.NeedsGccExceptionHandling
-P:ObjCRuntime.LinkWithAttribute.SmartLink
-P:ObjCRuntime.LinkWithAttribute.WeakFrameworks
-P:ObjCRuntime.MonoPInvokeCallbackAttribute.DelegateType
P:ObjCRuntime.NativeAttribute.ConvertToManaged
P:ObjCRuntime.NativeAttribute.ConvertToNative
-P:ObjCRuntime.NativeAttribute.NativeName
P:ObjCRuntime.NativeHandle.Handle
P:ObjCRuntime.NativeNameAttribute.NativeName
P:ObjCRuntime.ObjCException.Message
P:ObjCRuntime.ObjCException.Name
P:ObjCRuntime.ObjCException.NSException
P:ObjCRuntime.ObjCException.Reason
-P:ObjCRuntime.Protocol.Handle
-P:ObjCRuntime.Protocol.Name
-P:ObjCRuntime.RequiredFrameworkAttribute.Name
-P:ObjCRuntime.Runtime.DynamicRegistrationSupported
-P:ObjCRuntime.Runtime.FrameworksPath
-P:ObjCRuntime.Runtime.OriginalWorkingDirectory
-P:ObjCRuntime.Runtime.ResourcesPath
-P:ObjCRuntime.RuntimeException.Code
-P:ObjCRuntime.RuntimeException.Error
-P:ObjCRuntime.Selector.Handle
-P:ObjCRuntime.Selector.Name
-P:ObjCRuntime.ThreadSafeAttribute.Safe
P:ObjCRuntime.TrampolineBlockBase.BlockPointer
-P:ObjCRuntime.UserDelegateTypeAttribute.UserDelegateType
P:OpenGL.CGLContext.CurrentContext
P:OpenGLES.EAGLContext.API
P:OpenGLES.EAGLContext.CurrentContext
@@ -92586,46 +62290,6 @@ 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
@@ -93014,104 +62678,9 @@ P:PassKit.PKVehicleConnectionSession.ConnectionStatus
P:PassKit.PKVehicleConnectionSession.Delegate
P:PassKit.PKVehicleConnectionSession.WeakDelegate
P:PdfKit.IPdfViewDelegate.ParentViewController
-P:PdfKit.PdfAction.Type
-P:PdfKit.PdfActionGoTo.Destination
-P:PdfKit.PdfActionNamed.Name
-P:PdfKit.PdfActionRemoteGoTo.PageIndex
-P:PdfKit.PdfActionRemoteGoTo.Point
-P:PdfKit.PdfActionRemoteGoTo.Url
-P:PdfKit.PdfActionResetForm.Fields
-P:PdfKit.PdfActionResetForm.FieldsIncludedAreCleared
-P:PdfKit.PdfActionUrl.Url
-P:PdfKit.PdfAnnotation.Action
P:PdfKit.PdfAnnotation.ActivatableTextField
-P:PdfKit.PdfAnnotation.Alignment
-P:PdfKit.PdfAnnotation.AllowsToggleToOff
-P:PdfKit.PdfAnnotation.AnnotationKeyValues
-P:PdfKit.PdfAnnotation.AnnotationType
-P:PdfKit.PdfAnnotation.BackgroundColor
-P:PdfKit.PdfAnnotation.Border
-P:PdfKit.PdfAnnotation.Bounds
-P:PdfKit.PdfAnnotation.ButtonWidgetState
-P:PdfKit.PdfAnnotation.ButtonWidgetStateString
-P:PdfKit.PdfAnnotation.Caption
-P:PdfKit.PdfAnnotation.Choices
-P:PdfKit.PdfAnnotation.Color
-P:PdfKit.PdfAnnotation.Comb
-P:PdfKit.PdfAnnotation.Contents
-P:PdfKit.PdfAnnotation.Destination
-P:PdfKit.PdfAnnotation.EndLineStyle
-P:PdfKit.PdfAnnotation.EndPoint
-P:PdfKit.PdfAnnotation.FieldName
-P:PdfKit.PdfAnnotation.Font
-P:PdfKit.PdfAnnotation.FontColor
-P:PdfKit.PdfAnnotation.HasAppearanceStream
-P:PdfKit.PdfAnnotation.Highlighted
-P:PdfKit.PdfAnnotation.IconType
-P:PdfKit.PdfAnnotation.InteriorColor
-P:PdfKit.PdfAnnotation.IsPasswordField
-P:PdfKit.PdfAnnotation.ListChoice
-P:PdfKit.PdfAnnotation.MarkupType
-P:PdfKit.PdfAnnotation.MaximumLength
-P:PdfKit.PdfAnnotation.ModificationDate
-P:PdfKit.PdfAnnotation.MouseUpAction
-P:PdfKit.PdfAnnotation.Multiline
-P:PdfKit.PdfAnnotation.Open
-P:PdfKit.PdfAnnotation.Page
-P:PdfKit.PdfAnnotation.Paths
-P:PdfKit.PdfAnnotation.Popup
-P:PdfKit.PdfAnnotation.QuadrilateralPoints
-P:PdfKit.PdfAnnotation.RadiosInUnison
-P:PdfKit.PdfAnnotation.ReadOnly
-P:PdfKit.PdfAnnotation.ShouldDisplay
-P:PdfKit.PdfAnnotation.ShouldPrint
-P:PdfKit.PdfAnnotation.StampName
-P:PdfKit.PdfAnnotation.StartLineStyle
-P:PdfKit.PdfAnnotation.StartPoint
-P:PdfKit.PdfAnnotation.ToolTip
-P:PdfKit.PdfAnnotation.Type
-P:PdfKit.PdfAnnotation.Url
-P:PdfKit.PdfAnnotation.UserName
-P:PdfKit.PdfAnnotation.Values
-P:PdfKit.PdfAnnotation.WidgetControlType
-P:PdfKit.PdfAnnotation.WidgetDefaultStringValue
-P:PdfKit.PdfAnnotation.WidgetFieldType
-P:PdfKit.PdfAnnotation.WidgetStringValue
-P:PdfKit.PdfAnnotationButtonWidget.AllowsToggleToOff
-P:PdfKit.PdfAnnotationButtonWidget.BackgroundColor
-P:PdfKit.PdfAnnotationButtonWidget.Caption
-P:PdfKit.PdfAnnotationButtonWidget.ControlType
-P:PdfKit.PdfAnnotationButtonWidget.FieldName
-P:PdfKit.PdfAnnotationButtonWidget.Font
-P:PdfKit.PdfAnnotationButtonWidget.FontColor
-P:PdfKit.PdfAnnotationButtonWidget.Highlighted
-P:PdfKit.PdfAnnotationButtonWidget.OnStateValue
-P:PdfKit.PdfAnnotationButtonWidget.State
-P:PdfKit.PdfAnnotationChoiceWidget.BackgroundColor
-P:PdfKit.PdfAnnotationChoiceWidget.Choices
-P:PdfKit.PdfAnnotationChoiceWidget.FieldName
-P:PdfKit.PdfAnnotationChoiceWidget.Font
-P:PdfKit.PdfAnnotationChoiceWidget.FontColor
-P:PdfKit.PdfAnnotationChoiceWidget.IsListChoice
-P:PdfKit.PdfAnnotationChoiceWidget.Text
-P:PdfKit.PdfAnnotationCircle.InteriorColor
-P:PdfKit.PdfAnnotationFreeText.Alignment
-P:PdfKit.PdfAnnotationFreeText.Font
-P:PdfKit.PdfAnnotationFreeText.FontColor
-P:PdfKit.PdfAnnotationInk.Paths
-P:PdfKit.PdfAnnotationLine.EndLineStyle
-P:PdfKit.PdfAnnotationLine.EndPoint
-P:PdfKit.PdfAnnotationLine.InteriorColor
-P:PdfKit.PdfAnnotationLine.StartLineStyle
-P:PdfKit.PdfAnnotationLine.StartPoint
-P:PdfKit.PdfAnnotationLink.Destination
-P:PdfKit.PdfAnnotationLink.Url
-P:PdfKit.PdfAnnotationMarkup.MarkupType
P:PdfKit.PdfAnnotationMarkup.QuadrilateralPoints
P:PdfKit.PdfAnnotationMarkup.WeakQuadrilateralPoints
-P:PdfKit.PdfAnnotationPopup.IsOpen
-P:PdfKit.PdfAnnotationSquare.InteriorColor
-P:PdfKit.PdfAnnotationStamp.Name
P:PdfKit.PdfAnnotationText.IconType
P:PdfKit.PdfAnnotationTextWidget.Alignment
P:PdfKit.PdfAnnotationTextWidget.AttributedStringValue
@@ -93138,9 +62707,6 @@ P:PdfKit.PdfAppearanceCharacteristicsKeys.DownCaptionKey
P:PdfKit.PdfAppearanceCharacteristicsKeys.RolloverCaptionKey
P:PdfKit.PdfAppearanceCharacteristicsKeys.RotationKey
P:PdfKit.PdfBorder.DashPattern
-P:PdfKit.PdfBorder.LineWidth
-P:PdfKit.PdfBorder.Style
-P:PdfKit.PdfBorder.WeakBorderKeyValues
P:PdfKit.PdfBorder.WeakDashPattern
P:PdfKit.PdfBorderKeys.DashPatternKey
P:PdfKit.PdfBorderKeys.LineWidthKey
@@ -93303,82 +62869,13 @@ P:PdfKit.PdfViewActionEventArgs.Action
P:PdfKit.PdfViewAnnotationHitEventArgs.AnnotationHit
P:PdfKit.PdfViewDelegate.ParentViewController
P:PdfKit.PdfViewUrlEventArgs.Url
-P:PencilKit.PKCanvasView.AllowsFingerDrawing
P:PencilKit.PKCanvasView.Delegate
-P:PencilKit.PKCanvasView.Drawing
P:PencilKit.PKCanvasView.DrawingEnabled
-P:PencilKit.PKCanvasView.DrawingGestureRecognizer
-P:PencilKit.PKCanvasView.DrawingPolicy
-P:PencilKit.PKCanvasView.MaximumSupportedContentVersion
P:PencilKit.PKCanvasView.RulerActive
-P:PencilKit.PKCanvasView.Tool
P:PencilKit.PKDrawing.AppleDrawingTypeIdentifier
-P:PencilKit.PKDrawing.Bounds
-P:PencilKit.PKDrawing.DataRepresentation
-P:PencilKit.PKDrawing.RequiredContentVersion
-P:PencilKit.PKDrawing.Strokes
-P:PencilKit.PKEraserTool.EraserType
-P:PencilKit.PKEraserTool.Width
-P:PencilKit.PKFloatRange.LowerBound
-P:PencilKit.PKFloatRange.UpperBound
-P:PencilKit.PKInk.Color
P:PencilKit.PKInk.InkType
-P:PencilKit.PKInk.RequiredContentVersion
-P:PencilKit.PKInkingTool.Color
-P:PencilKit.PKInkingTool.Ink
-P:PencilKit.PKInkingTool.InkType
-P:PencilKit.PKInkingTool.RequiredContentVersion
-P:PencilKit.PKInkingTool.Width
-P:PencilKit.PKStroke.Ink
-P:PencilKit.PKStroke.Mask
-P:PencilKit.PKStroke.MaskedPathRanges
-P:PencilKit.PKStroke.Path
-P:PencilKit.PKStroke.RandomSeed
-P:PencilKit.PKStroke.RenderBounds
-P:PencilKit.PKStroke.RequiredContentVersion
-P:PencilKit.PKStroke.Transform
-P:PencilKit.PKStrokePath.Count
-P:PencilKit.PKStrokePath.CreationDate
-P:PencilKit.PKStrokePoint.Altitude
-P:PencilKit.PKStrokePoint.Azimuth
-P:PencilKit.PKStrokePoint.Force
-P:PencilKit.PKStrokePoint.Location
-P:PencilKit.PKStrokePoint.Opacity
-P:PencilKit.PKStrokePoint.SecondaryScale
-P:PencilKit.PKStrokePoint.Size
-P:PencilKit.PKStrokePoint.TimeOffset
-P:PencilKit.PKToolPicker.AccessoryItem
-P:PencilKit.PKToolPicker.ColorUserInterfaceStyle
P:PencilKit.PKToolPicker.Delegate
-P:PencilKit.PKToolPicker.IsVisible
-P:PencilKit.PKToolPicker.MaximumSupportedContentVersion
-P:PencilKit.PKToolPicker.OverrideUserInterfaceStyle
P:PencilKit.PKToolPicker.RulerActive
-P:PencilKit.PKToolPicker.SelectedTool
-P:PencilKit.PKToolPicker.SelectedToolItem
-P:PencilKit.PKToolPicker.SelectedToolItemIdentifier
-P:PencilKit.PKToolPicker.ShowsDrawingPolicyControls
-P:PencilKit.PKToolPicker.StateAutosaveName
-P:PencilKit.PKToolPicker.ToolItems
-P:PencilKit.PKToolPicker.WeakDelegate
-P:PencilKit.PKToolPickerCustomItem.AllowsColorSelection
-P:PencilKit.PKToolPickerCustomItem.Color
-P:PencilKit.PKToolPickerCustomItem.Configuration
-P:PencilKit.PKToolPickerCustomItem.Width
-P:PencilKit.PKToolPickerCustomItemConfiguration.AllowsColorSelection
-P:PencilKit.PKToolPickerCustomItemConfiguration.DefaultColor
-P:PencilKit.PKToolPickerCustomItemConfiguration.DefaultWidth
-P:PencilKit.PKToolPickerCustomItemConfiguration.Identifier
-P:PencilKit.PKToolPickerCustomItemConfiguration.ImageProvider
-P:PencilKit.PKToolPickerCustomItemConfiguration.Name
-P:PencilKit.PKToolPickerCustomItemConfiguration.ToolAttributeControls
-P:PencilKit.PKToolPickerCustomItemConfiguration.ViewControllerProvider
-P:PencilKit.PKToolPickerCustomItemConfiguration.WidthVariants
-P:PencilKit.PKToolPickerEraserItem.EraserTool
-P:PencilKit.PKToolPickerInkingItem.AllowsColorSelection
-P:PencilKit.PKToolPickerInkingItem.InkingTool
-P:PencilKit.PKToolPickerItem.Identifier
-P:PencilKit.PKToolPickerLassoItem.LassoTool
P:Phase.PhaseAmbientMixerDefinition.InputChannelLayout
P:Phase.PhaseAmbientMixerDefinition.Orientation
P:Phase.PhaseAsset.Identifier
@@ -93804,13 +63301,7 @@ 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
@@ -93935,31 +63426,15 @@ P:QuickLookUI.QLPreviewView.DisplayState
P:QuickLookUI.QLPreviewView.PreviewItem
P:QuickLookUI.QLPreviewView.ShouldCloseWithWindow
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.ISFAddToHomeScreenActivityItem.IconItemProvider
P:SafariServices.ISFAddToHomeScreenActivityItem.Title
P:SafariServices.ISFAddToHomeScreenActivityItem.Url
@@ -93995,15 +63470,9 @@ 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
@@ -94043,192 +63512,15 @@ P:SceneKit.ISCNShadable.MinimumLanguageVersion
P:SceneKit.ISCNShadable.Program
P:SceneKit.ISCNShadable.WeakShaderModifiers
P:SceneKit.ISCNTechniqueSupport.Technique
-P:SceneKit.SCNAccelerationConstraint.Damping
-P:SceneKit.SCNAccelerationConstraint.DecelerationDistance
-P:SceneKit.SCNAccelerationConstraint.MaximumLinearAcceleration
-P:SceneKit.SCNAccelerationConstraint.MaximumLinearVelocity
-P:SceneKit.SCNAction.DurationInSeconds
-P:SceneKit.SCNAction.Speed
-P:SceneKit.SCNAction.TimingFunction
-P:SceneKit.SCNAction.TimingMode
-P:SceneKit.SCNActionable.ActionKeys
P:SceneKit.SCNAnimation.Additive
-P:SceneKit.SCNAnimation.AnimationDidStart
-P:SceneKit.SCNAnimation.AnimationDidStop
-P:SceneKit.SCNAnimation.AnimationEvents
P:SceneKit.SCNAnimation.AppliedOnCompletion
-P:SceneKit.SCNAnimation.Autoreverses
-P:SceneKit.SCNAnimation.BlendInDuration
-P:SceneKit.SCNAnimation.BlendOutDuration
P:SceneKit.SCNAnimation.Cumulative
-P:SceneKit.SCNAnimation.Duration
-P:SceneKit.SCNAnimation.FillsBackward
-P:SceneKit.SCNAnimation.FillsForward
-P:SceneKit.SCNAnimation.KeyPath
P:SceneKit.SCNAnimation.RemovedOnCompletion
-P:SceneKit.SCNAnimation.RepeatCount
-P:SceneKit.SCNAnimation.StartDelay
-P:SceneKit.SCNAnimation.TimeOffset
-P:SceneKit.SCNAnimation.TimingFunction
-P:SceneKit.SCNAnimation.UsesSceneTimeBase
-P:SceneKit.SCNAnimationPlayer.Animation
-P:SceneKit.SCNAnimationPlayer.BlendFactor
-P:SceneKit.SCNAnimationPlayer.Paused
-P:SceneKit.SCNAnimationPlayer.Speed
-P:SceneKit.SCNAudioPlayer.AudioNode
-P:SceneKit.SCNAudioPlayer.AudioSource
-P:SceneKit.SCNAudioPlayer.DidFinishPlayback
-P:SceneKit.SCNAudioPlayer.WillStartPlayback
-P:SceneKit.SCNAudioSource.Loops
-P:SceneKit.SCNAudioSource.Positional
-P:SceneKit.SCNAudioSource.Rate
-P:SceneKit.SCNAudioSource.ReverbBlend
-P:SceneKit.SCNAudioSource.ShouldStream
-P:SceneKit.SCNAudioSource.Volume
-P:SceneKit.SCNAvoidOccluderConstraint.Bias
-P:SceneKit.SCNAvoidOccluderConstraint.Delegate
-P:SceneKit.SCNAvoidOccluderConstraint.OccluderCategoryBitMask
-P:SceneKit.SCNAvoidOccluderConstraint.Target
-P:SceneKit.SCNBillboardConstraint.FreeAxes
-P:SceneKit.SCNBox.ChamferRadius
-P:SceneKit.SCNBox.ChamferSegmentCount
-P:SceneKit.SCNBox.Height
-P:SceneKit.SCNBox.HeightSegmentCount
-P:SceneKit.SCNBox.Length
-P:SceneKit.SCNBox.LengthSegmentCount
-P:SceneKit.SCNBox.Width
-P:SceneKit.SCNBox.WidthSegmentCount
-P:SceneKit.SCNCamera.Aperture
-P:SceneKit.SCNCamera.ApertureBladeCount
-P:SceneKit.SCNCamera.AutomaticallyAdjustsZRange
-P:SceneKit.SCNCamera.AverageGray
-P:SceneKit.SCNCamera.BloomBlurRadius
-P:SceneKit.SCNCamera.BloomIntensity
-P:SceneKit.SCNCamera.BloomIterationCount
-P:SceneKit.SCNCamera.BloomIterationSpread
-P:SceneKit.SCNCamera.BloomThreshold
-P:SceneKit.SCNCamera.CategoryBitMask
-P:SceneKit.SCNCamera.ColorFringeIntensity
-P:SceneKit.SCNCamera.ColorFringeStrength
-P:SceneKit.SCNCamera.ColorGrading
-P:SceneKit.SCNCamera.Contrast
-P:SceneKit.SCNCamera.ExposureAdaptationBrighteningSpeedFactor
-P:SceneKit.SCNCamera.ExposureAdaptationDarkeningSpeedFactor
-P:SceneKit.SCNCamera.ExposureOffset
-P:SceneKit.SCNCamera.FieldOfView
-P:SceneKit.SCNCamera.FocalBlurRadius
-P:SceneKit.SCNCamera.FocalBlurSampleCount
-P:SceneKit.SCNCamera.FocalDistance
-P:SceneKit.SCNCamera.FocalLength
-P:SceneKit.SCNCamera.FocalSize
-P:SceneKit.SCNCamera.FocusDistance
-P:SceneKit.SCNCamera.FStop
-P:SceneKit.SCNCamera.GrainIntensity
-P:SceneKit.SCNCamera.GrainIsColored
-P:SceneKit.SCNCamera.GrainScale
-P:SceneKit.SCNCamera.MaximumExposure
-P:SceneKit.SCNCamera.MinimumExposure
-P:SceneKit.SCNCamera.MotionBlurIntensity
-P:SceneKit.SCNCamera.Name
-P:SceneKit.SCNCamera.OrthographicScale
-P:SceneKit.SCNCamera.ProjectionDirection
-P:SceneKit.SCNCamera.ProjectionTransform
-P:SceneKit.SCNCamera.Saturation
-P:SceneKit.SCNCamera.ScreenSpaceAmbientOcclusionBias
-P:SceneKit.SCNCamera.ScreenSpaceAmbientOcclusionDepthThreshold
-P:SceneKit.SCNCamera.ScreenSpaceAmbientOcclusionIntensity
-P:SceneKit.SCNCamera.ScreenSpaceAmbientOcclusionNormalThreshold
-P:SceneKit.SCNCamera.ScreenSpaceAmbientOcclusionRadius
-P:SceneKit.SCNCamera.SensorHeight
-P:SceneKit.SCNCamera.Technique
-P:SceneKit.SCNCamera.UsesOrthographicProjection
-P:SceneKit.SCNCamera.VignettingIntensity
-P:SceneKit.SCNCamera.VignettingPower
-P:SceneKit.SCNCamera.WantsDepthOfField
-P:SceneKit.SCNCamera.WantsExposureAdaptation
-P:SceneKit.SCNCamera.WantsHdr
-P:SceneKit.SCNCamera.WhiteBalanceTemperature
-P:SceneKit.SCNCamera.WhiteBalanceTint
-P:SceneKit.SCNCamera.WhitePoint
-P:SceneKit.SCNCamera.XFov
-P:SceneKit.SCNCamera.YFov
-P:SceneKit.SCNCamera.ZFar
-P:SceneKit.SCNCamera.ZNear
-P:SceneKit.SCNCameraController.AutomaticTarget
-P:SceneKit.SCNCameraController.Delegate
-P:SceneKit.SCNCameraController.InertiaEnabled
-P:SceneKit.SCNCameraController.InertiaFriction
P:SceneKit.SCNCameraController.InertiaRunning
-P:SceneKit.SCNCameraController.InteractionMode
-P:SceneKit.SCNCameraController.MaximumHorizontalAngle
-P:SceneKit.SCNCameraController.MaximumVerticalAngle
-P:SceneKit.SCNCameraController.MinimumHorizontalAngle
-P:SceneKit.SCNCameraController.MinimumVerticalAngle
-P:SceneKit.SCNCameraController.PointOfView
-P:SceneKit.SCNCameraController.Target
-P:SceneKit.SCNCameraController.WorldUp
-P:SceneKit.SCNCapsule.CapRadius
-P:SceneKit.SCNCapsule.CapSegmentCount
-P:SceneKit.SCNCapsule.Height
-P:SceneKit.SCNCapsule.HeightSegmentCount
-P:SceneKit.SCNCapsule.RadialSegmentCount
-P:SceneKit.SCNCone.BottomRadius
-P:SceneKit.SCNCone.Height
-P:SceneKit.SCNCone.HeightSegmentCount
-P:SceneKit.SCNCone.RadialSegmentCount
-P:SceneKit.SCNCone.TopRadius
P:SceneKit.SCNConstraint.Enabled
P:SceneKit.SCNConstraint.Incremental
-P:SceneKit.SCNConstraint.InfluenceFactor
-P:SceneKit.SCNCylinder.Height
-P:SceneKit.SCNCylinder.HeightSegmentCount
-P:SceneKit.SCNCylinder.RadialSegmentCount
-P:SceneKit.SCNCylinder.Radius
-P:SceneKit.SCNDistanceConstraint.MaximumDistance
-P:SceneKit.SCNDistanceConstraint.MinimumDistance
-P:SceneKit.SCNDistanceConstraint.Target
-P:SceneKit.SCNFloor.Length
-P:SceneKit.SCNFloor.ReflectionCategoryBitMask
-P:SceneKit.SCNFloor.ReflectionFalloffEnd
-P:SceneKit.SCNFloor.ReflectionFalloffStart
-P:SceneKit.SCNFloor.ReflectionResolutionScaleFactor
-P:SceneKit.SCNFloor.Reflectivity
-P:SceneKit.SCNFloor.Width
-P:SceneKit.SCNGeometry.EdgeCreasesElement
-P:SceneKit.SCNGeometry.EdgeCreasesSource
-P:SceneKit.SCNGeometry.FirstMaterial
-P:SceneKit.SCNGeometry.GeometryElementCount
-P:SceneKit.SCNGeometry.GeometryElements
-P:SceneKit.SCNGeometry.GeometrySourceChannels
-P:SceneKit.SCNGeometry.GeometrySources
-P:SceneKit.SCNGeometry.LevelsOfDetail
-P:SceneKit.SCNGeometry.Materials
-P:SceneKit.SCNGeometry.MinimumLanguageVersion
-P:SceneKit.SCNGeometry.Name
-P:SceneKit.SCNGeometry.Program
P:SceneKit.SCNGeometry.ShaderModifiers
-P:SceneKit.SCNGeometry.SubdivisionLevel
-P:SceneKit.SCNGeometry.Tessellator
-P:SceneKit.SCNGeometry.WantsAdaptiveSubdivision
-P:SceneKit.SCNGeometry.WeakShaderModifiers
-P:SceneKit.SCNGeometryElement.BytesPerIndex
-P:SceneKit.SCNGeometryElement.Data
-P:SceneKit.SCNGeometryElement.IndicesChannelCount
P:SceneKit.SCNGeometryElement.InterleavedIndicesChannels
-P:SceneKit.SCNGeometryElement.MaximumPointScreenSpaceRadius
-P:SceneKit.SCNGeometryElement.MinimumPointScreenSpaceRadius
-P:SceneKit.SCNGeometryElement.PointSize
-P:SceneKit.SCNGeometryElement.PrimitiveCount
-P:SceneKit.SCNGeometryElement.PrimitiveRange
-P:SceneKit.SCNGeometryElement.PrimitiveType
-P:SceneKit.SCNGeometrySource.BytesPerComponent
-P:SceneKit.SCNGeometrySource.ComponentsPerVector
-P:SceneKit.SCNGeometrySource.Data
-P:SceneKit.SCNGeometrySource.DataOffset
-P:SceneKit.SCNGeometrySource.DataStride
-P:SceneKit.SCNGeometrySource.FloatComponents
-P:SceneKit.SCNGeometrySource.Semantic
-P:SceneKit.SCNGeometrySource.VectorCount
P:SceneKit.SCNGeometrySourceSemantic.BoneIndices
P:SceneKit.SCNGeometrySourceSemantic.BoneWeights
P:SceneKit.SCNGeometrySourceSemantic.Color
@@ -94239,13 +63531,7 @@ P:SceneKit.SCNGeometrySourceSemantic.Texcoord
P:SceneKit.SCNGeometrySourceSemantic.Vertex
P:SceneKit.SCNGeometrySourceSemantic.VertexCrease
P:SceneKit.SCNGeometryTessellator.Adaptive
-P:SceneKit.SCNGeometryTessellator.EdgeTessellationFactor
-P:SceneKit.SCNGeometryTessellator.InsideTessellationFactor
-P:SceneKit.SCNGeometryTessellator.MaximumEdgeLength
P:SceneKit.SCNGeometryTessellator.ScreenSpace
-P:SceneKit.SCNGeometryTessellator.SmoothingMode
-P:SceneKit.SCNGeometryTessellator.TessellationFactorScale
-P:SceneKit.SCNGeometryTessellator.TessellationPartitionMode
P:SceneKit.SCNHitTest.BackFaceCullingKey
P:SceneKit.SCNHitTest.BoundingBoxOnlyKey
P:SceneKit.SCNHitTest.ClipToZRangeKey
@@ -94266,96 +63552,12 @@ P:SceneKit.SCNHitTestOptions.IgnoreLightArea
P:SceneKit.SCNHitTestOptions.RootNode
P:SceneKit.SCNHitTestOptions.SearchMode
P:SceneKit.SCNHitTestOptions.SortResults
-P:SceneKit.SCNHitTestResult.BoneNode
-P:SceneKit.SCNHitTestResult.FaceIndex
-P:SceneKit.SCNHitTestResult.GeometryIndex
-P:SceneKit.SCNHitTestResult.LocalCoordinates
-P:SceneKit.SCNHitTestResult.LocalNormal
-P:SceneKit.SCNHitTestResult.ModelTransform
-P:SceneKit.SCNHitTestResult.Node
-P:SceneKit.SCNHitTestResult.WorldCoordinates
-P:SceneKit.SCNHitTestResult.WorldNormal
-P:SceneKit.SCNIKConstraint.ChainRootNode
-P:SceneKit.SCNIKConstraint.TargetPosition
-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.Scene
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.SCNLevelOfDetail.Geometry
-P:SceneKit.SCNLevelOfDetail.ScreenSpaceRadius
-P:SceneKit.SCNLevelOfDetail.WorldSpaceDistance
-P:SceneKit.SCNLight.AreaExtents
-P:SceneKit.SCNLight.AreaPolygonVertices
-P:SceneKit.SCNLight.AreaType
-P:SceneKit.SCNLight.AttenuationEndDistance
-P:SceneKit.SCNLight.AttenuationFalloffExponent
-P:SceneKit.SCNLight.AttenuationStartDistance
-P:SceneKit.SCNLight.AutomaticallyAdjustsShadowProjection
-P:SceneKit.SCNLight.CastsShadow
-P:SceneKit.SCNLight.CategoryBitMask
P:SceneKit.SCNLight.Color
-P:SceneKit.SCNLight.DoubleSided
-P:SceneKit.SCNLight.DrawsArea
-P:SceneKit.SCNLight.ForcesBackFaceCasters
-P:SceneKit.SCNLight.Gobo
-P:SceneKit.SCNLight.IesProfileUrl
-P:SceneKit.SCNLight.Intensity
-P:SceneKit.SCNLight.LightType
-P:SceneKit.SCNLight.MaximumShadowDistance
-P:SceneKit.SCNLight.Name
-P:SceneKit.SCNLight.OrthographicScale
-P:SceneKit.SCNLight.ParallaxCenterOffset
-P:SceneKit.SCNLight.ParallaxCorrectionEnabled
-P:SceneKit.SCNLight.ParallaxExtentsFactor
-P:SceneKit.SCNLight.ProbeEnvironment
-P:SceneKit.SCNLight.ProbeExtents
-P:SceneKit.SCNLight.ProbeOffset
-P:SceneKit.SCNLight.ProbeType
-P:SceneKit.SCNLight.ProbeUpdateType
-P:SceneKit.SCNLight.SampleDistributedShadowMaps
-P:SceneKit.SCNLight.ShadowBias
-P:SceneKit.SCNLight.ShadowCascadeCount
-P:SceneKit.SCNLight.ShadowCascadeSplittingFactor
P:SceneKit.SCNLight.ShadowColor
-P:SceneKit.SCNLight.ShadowMapSize
-P:SceneKit.SCNLight.ShadowMode
-P:SceneKit.SCNLight.ShadowRadius
-P:SceneKit.SCNLight.ShadowSampleCount
-P:SceneKit.SCNLight.SphericalHarmonicsCoefficients
-P:SceneKit.SCNLight.SpotInnerAngle
-P:SceneKit.SCNLight.SpotOuterAngle
-P:SceneKit.SCNLight.Technique
-P:SceneKit.SCNLight.Temperature
-P:SceneKit.SCNLight.WeakColor
-P:SceneKit.SCNLight.WeakShadowColor
-P:SceneKit.SCNLight.ZFar
-P:SceneKit.SCNLight.ZNear
P:SceneKit.SCNLightAttribute.AttenuationEndKey
P:SceneKit.SCNLightAttribute.AttenuationFalloffExponentKey
P:SceneKit.SCNLightAttribute.AttenuationStartKey
@@ -94376,123 +63578,30 @@ P:SceneKit.SCNLightType.Ies
P:SceneKit.SCNLightType.Omni
P:SceneKit.SCNLightType.Probe
P:SceneKit.SCNLightType.Spot
-P:SceneKit.SCNLookAtConstraint.GimbalLockEnabled
-P:SceneKit.SCNLookAtConstraint.LocalFront
-P:SceneKit.SCNLookAtConstraint.Target
-P:SceneKit.SCNLookAtConstraint.TargetOffset
-P:SceneKit.SCNLookAtConstraint.WorldUp
-P:SceneKit.SCNMaterial.Ambient
-P:SceneKit.SCNMaterial.AmbientOcclusion
-P:SceneKit.SCNMaterial.BlendMode
-P:SceneKit.SCNMaterial.ClearCoat
-P:SceneKit.SCNMaterial.ClearCoatNormal
-P:SceneKit.SCNMaterial.ClearCoatRoughness
-P:SceneKit.SCNMaterial.ColorBufferWriteMask
-P:SceneKit.SCNMaterial.CullMode
-P:SceneKit.SCNMaterial.Diffuse
-P:SceneKit.SCNMaterial.Displacement
P:SceneKit.SCNMaterial.DoubleSided
-P:SceneKit.SCNMaterial.Emission
-P:SceneKit.SCNMaterial.FillMode
-P:SceneKit.SCNMaterial.FresnelExponent
-P:SceneKit.SCNMaterial.LightingModelName
P:SceneKit.SCNMaterial.LitPerPixel
-P:SceneKit.SCNMaterial.LocksAmbientWithDiffuse
-P:SceneKit.SCNMaterial.Metalness
-P:SceneKit.SCNMaterial.MinimumLanguageVersion
-P:SceneKit.SCNMaterial.Multiply
-P:SceneKit.SCNMaterial.Name
-P:SceneKit.SCNMaterial.Normal
-P:SceneKit.SCNMaterial.Program
-P:SceneKit.SCNMaterial.ReadsFromDepthBuffer
-P:SceneKit.SCNMaterial.Reflective
-P:SceneKit.SCNMaterial.Roughness
-P:SceneKit.SCNMaterial.SelfIllumination
P:SceneKit.SCNMaterial.ShaderModifiers
-P:SceneKit.SCNMaterial.Shininess
-P:SceneKit.SCNMaterial.Specular
-P:SceneKit.SCNMaterial.Transparency
-P:SceneKit.SCNMaterial.TransparencyMode
-P:SceneKit.SCNMaterial.Transparent
-P:SceneKit.SCNMaterial.WeakShaderModifiers
-P:SceneKit.SCNMaterial.WritesToDepthBuffer
-P:SceneKit.SCNMaterialProperty.BorderColor
P:SceneKit.SCNMaterialProperty.ContentColor
P:SceneKit.SCNMaterialProperty.ContentImage
P:SceneKit.SCNMaterialProperty.ContentImageCube
P:SceneKit.SCNMaterialProperty.ContentLayer
P:SceneKit.SCNMaterialProperty.ContentPath
-P:SceneKit.SCNMaterialProperty.Contents
P:SceneKit.SCNMaterialProperty.ContentScene
-P:SceneKit.SCNMaterialProperty.ContentsTransform
P:SceneKit.SCNMaterialProperty.ContentTexture
P:SceneKit.SCNMaterialProperty.ContentUrl
-P:SceneKit.SCNMaterialProperty.Intensity
-P:SceneKit.SCNMaterialProperty.MagnificationFilter
-P:SceneKit.SCNMaterialProperty.MappingChannel
-P:SceneKit.SCNMaterialProperty.MaxAnisotropy
-P:SceneKit.SCNMaterialProperty.MinificationFilter
-P:SceneKit.SCNMaterialProperty.MipFilter
-P:SceneKit.SCNMaterialProperty.TextureComponents
-P:SceneKit.SCNMaterialProperty.WrapS
-P:SceneKit.SCNMaterialProperty.WrapT
-P:SceneKit.SCNMorpher.CalculationMode
-P:SceneKit.SCNMorpher.Targets
-P:SceneKit.SCNMorpher.UnifiesNormals
-P:SceneKit.SCNMorpher.Weights
-P:SceneKit.SCNNode.ActionKeys
-P:SceneKit.SCNNode.AudioPlayers
-P:SceneKit.SCNNode.Camera
P:SceneKit.SCNNode.CanBecomeFocused
-P:SceneKit.SCNNode.CastsShadow
-P:SceneKit.SCNNode.CategoryBitMask
-P:SceneKit.SCNNode.ChildNodes
-P:SceneKit.SCNNode.Constraints
-P:SceneKit.SCNNode.EulerAngles
-P:SceneKit.SCNNode.Filters
-P:SceneKit.SCNNode.FocusBehavior
P:SceneKit.SCNNode.FocusEffect
P:SceneKit.SCNNode.FocusGroupIdentifier
P:SceneKit.SCNNode.FocusGroupPriority
P:SceneKit.SCNNode.FocusItemContainer
P:SceneKit.SCNNode.FocusItemDeferralMode
-P:SceneKit.SCNNode.Frame
-P:SceneKit.SCNNode.Geometry
P:SceneKit.SCNNode.Hidden
P:SceneKit.SCNNode.IsTransparentFocusItem
-P:SceneKit.SCNNode.Light
-P:SceneKit.SCNNode.LocalFront
-P:SceneKit.SCNNode.LocalRight
-P:SceneKit.SCNNode.LocalUp
-P:SceneKit.SCNNode.Morpher
-P:SceneKit.SCNNode.MovabilityHint
-P:SceneKit.SCNNode.Name
-P:SceneKit.SCNNode.Opacity
-P:SceneKit.SCNNode.Orientation
P:SceneKit.SCNNode.ParentFocusEnvironment
-P:SceneKit.SCNNode.ParentNode
-P:SceneKit.SCNNode.ParticleSystems
P:SceneKit.SCNNode.Paused
-P:SceneKit.SCNNode.PhysicsBody
-P:SceneKit.SCNNode.PhysicsField
-P:SceneKit.SCNNode.Pivot
-P:SceneKit.SCNNode.Position
P:SceneKit.SCNNode.PreferredFocusedView
P:SceneKit.SCNNode.PreferredFocusEnvironments
-P:SceneKit.SCNNode.PresentationNode
P:SceneKit.SCNNode.RendererDelegate
-P:SceneKit.SCNNode.RenderingOrder
-P:SceneKit.SCNNode.Rotation
-P:SceneKit.SCNNode.Scale
-P:SceneKit.SCNNode.Skinner
-P:SceneKit.SCNNode.Transform
-P:SceneKit.SCNNode.WeakRendererDelegate
-P:SceneKit.SCNNode.WorldFront
-P:SceneKit.SCNNode.WorldOrientation
-P:SceneKit.SCNNode.WorldPosition
-P:SceneKit.SCNNode.WorldRight
-P:SceneKit.SCNNode.WorldTransform
-P:SceneKit.SCNNode.WorldUp
P:SceneKit.SCNParticleProperty.Angle
P:SceneKit.SCNParticleProperty.AngularVelocity
P:SceneKit.SCNParticleProperty.Bounce
@@ -94509,141 +63618,15 @@ P:SceneKit.SCNParticleProperty.Position
P:SceneKit.SCNParticleProperty.RotationAxis
P:SceneKit.SCNParticleProperty.Size
P:SceneKit.SCNParticleProperty.Velocity
-P:SceneKit.SCNParticlePropertyController.Animation
-P:SceneKit.SCNParticlePropertyController.InputBias
-P:SceneKit.SCNParticlePropertyController.InputMode
-P:SceneKit.SCNParticlePropertyController.InputOrigin
-P:SceneKit.SCNParticlePropertyController.InputProperty
-P:SceneKit.SCNParticlePropertyController.InputScale
-P:SceneKit.SCNParticleSystem.Acceleration
-P:SceneKit.SCNParticleSystem.AffectedByGravity
-P:SceneKit.SCNParticleSystem.AffectedByPhysicsFields
-P:SceneKit.SCNParticleSystem.BirthDirection
-P:SceneKit.SCNParticleSystem.BirthLocation
-P:SceneKit.SCNParticleSystem.BirthRate
-P:SceneKit.SCNParticleSystem.BirthRateVariation
P:SceneKit.SCNParticleSystem.BlackPassEnabled
-P:SceneKit.SCNParticleSystem.BlendMode
-P:SceneKit.SCNParticleSystem.ColliderNodes
-P:SceneKit.SCNParticleSystem.DampingFactor
-P:SceneKit.SCNParticleSystem.EmissionDuration
-P:SceneKit.SCNParticleSystem.EmissionDurationVariation
-P:SceneKit.SCNParticleSystem.EmitterShape
-P:SceneKit.SCNParticleSystem.EmittingDirection
-P:SceneKit.SCNParticleSystem.FresnelExponent
-P:SceneKit.SCNParticleSystem.IdleDuration
-P:SceneKit.SCNParticleSystem.IdleDurationVariation
-P:SceneKit.SCNParticleSystem.ImageSequenceAnimationMode
-P:SceneKit.SCNParticleSystem.ImageSequenceColumnCount
-P:SceneKit.SCNParticleSystem.ImageSequenceFrameRate
-P:SceneKit.SCNParticleSystem.ImageSequenceFrameRateVariation
-P:SceneKit.SCNParticleSystem.ImageSequenceInitialFrame
-P:SceneKit.SCNParticleSystem.ImageSequenceInitialFrameVariation
-P:SceneKit.SCNParticleSystem.ImageSequenceRowCount
P:SceneKit.SCNParticleSystem.LightingEnabled
P:SceneKit.SCNParticleSystem.Local
-P:SceneKit.SCNParticleSystem.Loops
-P:SceneKit.SCNParticleSystem.OrientationDirection
-P:SceneKit.SCNParticleSystem.OrientationMode
-P:SceneKit.SCNParticleSystem.ParticleAngle
-P:SceneKit.SCNParticleSystem.ParticleAngleVariation
-P:SceneKit.SCNParticleSystem.ParticleAngularVelocity
-P:SceneKit.SCNParticleSystem.ParticleAngularVelocityVariation
-P:SceneKit.SCNParticleSystem.ParticleBounce
-P:SceneKit.SCNParticleSystem.ParticleBounceVariation
-P:SceneKit.SCNParticleSystem.ParticleCharge
-P:SceneKit.SCNParticleSystem.ParticleChargeVariation
-P:SceneKit.SCNParticleSystem.ParticleColor
-P:SceneKit.SCNParticleSystem.ParticleColorVariation
-P:SceneKit.SCNParticleSystem.ParticleDiesOnCollision
-P:SceneKit.SCNParticleSystem.ParticleFriction
-P:SceneKit.SCNParticleSystem.ParticleFrictionVariation
-P:SceneKit.SCNParticleSystem.ParticleImage
-P:SceneKit.SCNParticleSystem.ParticleIntensity
-P:SceneKit.SCNParticleSystem.ParticleIntensityVariation
-P:SceneKit.SCNParticleSystem.ParticleLifeSpan
-P:SceneKit.SCNParticleSystem.ParticleLifeSpanVariation
-P:SceneKit.SCNParticleSystem.ParticleMass
-P:SceneKit.SCNParticleSystem.ParticleMassVariation
-P:SceneKit.SCNParticleSystem.ParticleSize
-P:SceneKit.SCNParticleSystem.ParticleSizeVariation
-P:SceneKit.SCNParticleSystem.ParticleVelocity
-P:SceneKit.SCNParticleSystem.ParticleVelocityVariation
P:SceneKit.SCNParticleSystem.PropertyControllers
-P:SceneKit.SCNParticleSystem.SortingMode
-P:SceneKit.SCNParticleSystem.SpeedFactor
-P:SceneKit.SCNParticleSystem.SpreadingAngle
-P:SceneKit.SCNParticleSystem.StretchFactor
-P:SceneKit.SCNParticleSystem.SystemSpawnedOnCollision
-P:SceneKit.SCNParticleSystem.SystemSpawnedOnDying
-P:SceneKit.SCNParticleSystem.SystemSpawnedOnLiving
-P:SceneKit.SCNParticleSystem.WarmupDuration
-P:SceneKit.SCNParticleSystem.WeakPropertyControllers
-P:SceneKit.SCNParticleSystem.WritesToDepthBuffer
-P:SceneKit.SCNPhysicsBallSocketJoint.AnchorA
-P:SceneKit.SCNPhysicsBallSocketJoint.AnchorB
-P:SceneKit.SCNPhysicsBallSocketJoint.BodyA
-P:SceneKit.SCNPhysicsBallSocketJoint.BodyB
P:SceneKit.SCNPhysicsBody.AffectedByGravity
-P:SceneKit.SCNPhysicsBody.AllowsResting
-P:SceneKit.SCNPhysicsBody.AngularDamping
-P:SceneKit.SCNPhysicsBody.AngularRestingThreshold
-P:SceneKit.SCNPhysicsBody.AngularVelocity
-P:SceneKit.SCNPhysicsBody.AngularVelocityFactor
-P:SceneKit.SCNPhysicsBody.CategoryBitMask
-P:SceneKit.SCNPhysicsBody.CenterOfMassOffset
-P:SceneKit.SCNPhysicsBody.Charge
-P:SceneKit.SCNPhysicsBody.CollisionBitMask
-P:SceneKit.SCNPhysicsBody.ContactTestBitMask
-P:SceneKit.SCNPhysicsBody.ContinuousCollisionDetectionThreshold
-P:SceneKit.SCNPhysicsBody.Damping
-P:SceneKit.SCNPhysicsBody.Friction
-P:SceneKit.SCNPhysicsBody.IsResting
-P:SceneKit.SCNPhysicsBody.LinearRestingThreshold
-P:SceneKit.SCNPhysicsBody.Mass
-P:SceneKit.SCNPhysicsBody.MomentOfInertia
-P:SceneKit.SCNPhysicsBody.PhysicsShape
-P:SceneKit.SCNPhysicsBody.Restitution
-P:SceneKit.SCNPhysicsBody.RollingFriction
-P:SceneKit.SCNPhysicsBody.Type
-P:SceneKit.SCNPhysicsBody.UsesDefaultMomentOfInertia
-P:SceneKit.SCNPhysicsBody.Velocity
-P:SceneKit.SCNPhysicsBody.VelocityFactor
-P:SceneKit.SCNPhysicsConeTwistJoint.BodyA
-P:SceneKit.SCNPhysicsConeTwistJoint.BodyB
-P:SceneKit.SCNPhysicsConeTwistJoint.FrameA
-P:SceneKit.SCNPhysicsConeTwistJoint.FrameB
-P:SceneKit.SCNPhysicsConeTwistJoint.MaximumAngularLimit1
-P:SceneKit.SCNPhysicsConeTwistJoint.MaximumAngularLimit2
-P:SceneKit.SCNPhysicsConeTwistJoint.MaximumTwistAngle
-P:SceneKit.SCNPhysicsContact.CollisionImpulse
-P:SceneKit.SCNPhysicsContact.ContactNormal
-P:SceneKit.SCNPhysicsContact.ContactPoint
-P:SceneKit.SCNPhysicsContact.NodeA
-P:SceneKit.SCNPhysicsContact.NodeB
-P:SceneKit.SCNPhysicsContact.PenetrationDistance
-P:SceneKit.SCNPhysicsContact.SweepTestFraction
P:SceneKit.SCNPhysicsContactEventArgs.Contact
P:SceneKit.SCNPhysicsField.Active
-P:SceneKit.SCNPhysicsField.CategoryBitMask
-P:SceneKit.SCNPhysicsField.Direction
P:SceneKit.SCNPhysicsField.Exclusive
-P:SceneKit.SCNPhysicsField.FalloffExponent
-P:SceneKit.SCNPhysicsField.HalfExtent
-P:SceneKit.SCNPhysicsField.MinimumDistance
-P:SceneKit.SCNPhysicsField.Offset
-P:SceneKit.SCNPhysicsField.Scope
-P:SceneKit.SCNPhysicsField.Strength
-P:SceneKit.SCNPhysicsField.UsesEllipsoidalExtent
-P:SceneKit.SCNPhysicsHingeJoint.AnchorA
-P:SceneKit.SCNPhysicsHingeJoint.AnchorB
-P:SceneKit.SCNPhysicsHingeJoint.AxisA
-P:SceneKit.SCNPhysicsHingeJoint.AxisB
-P:SceneKit.SCNPhysicsHingeJoint.BodyA
-P:SceneKit.SCNPhysicsHingeJoint.BodyB
P:SceneKit.SCNPhysicsShape.Options
-P:SceneKit.SCNPhysicsShape.SourceObject
-P:SceneKit.SCNPhysicsShape.Transforms
P:SceneKit.SCNPhysicsShapeOptions.KeepAsCompound
P:SceneKit.SCNPhysicsShapeOptions.Scale
P:SceneKit.SCNPhysicsShapeOptions.ShapeType
@@ -94654,20 +63637,6 @@ P:SceneKit.SCNPhysicsShapeOptionsKeys.Type
P:SceneKit.SCNPhysicsShapeOptionsTypes.BoundingBox
P:SceneKit.SCNPhysicsShapeOptionsTypes.ConcavePolyhedron
P:SceneKit.SCNPhysicsShapeOptionsTypes.ConvexHull
-P:SceneKit.SCNPhysicsSliderJoint.AnchorA
-P:SceneKit.SCNPhysicsSliderJoint.AnchorB
-P:SceneKit.SCNPhysicsSliderJoint.AxisA
-P:SceneKit.SCNPhysicsSliderJoint.AxisB
-P:SceneKit.SCNPhysicsSliderJoint.BodyA
-P:SceneKit.SCNPhysicsSliderJoint.BodyB
-P:SceneKit.SCNPhysicsSliderJoint.MaximumAngularLimit
-P:SceneKit.SCNPhysicsSliderJoint.MaximumLinearLimit
-P:SceneKit.SCNPhysicsSliderJoint.MinimumAngularLimit
-P:SceneKit.SCNPhysicsSliderJoint.MinimumLinearLimit
-P:SceneKit.SCNPhysicsSliderJoint.MotorMaximumForce
-P:SceneKit.SCNPhysicsSliderJoint.MotorMaximumTorque
-P:SceneKit.SCNPhysicsSliderJoint.MotorTargetAngularVelocity
-P:SceneKit.SCNPhysicsSliderJoint.MotorTargetLinearVelocity
P:SceneKit.SCNPhysicsTest.BackfaceCulling
P:SceneKit.SCNPhysicsTest.CollisionBitMask
P:SceneKit.SCNPhysicsTest.SearchMode
@@ -94677,41 +63646,9 @@ P:SceneKit.SCNPhysicsTestKeys.SearchModeKey
P:SceneKit.SCNPhysicsTestSearchModeKeys.All
P:SceneKit.SCNPhysicsTestSearchModeKeys.Any
P:SceneKit.SCNPhysicsTestSearchModeKeys.Closest
-P:SceneKit.SCNPhysicsVehicle.ChassisBody
-P:SceneKit.SCNPhysicsVehicle.SpeedInKilometersPerHour
-P:SceneKit.SCNPhysicsVehicle.Wheels
-P:SceneKit.SCNPhysicsVehicleWheel.Axle
-P:SceneKit.SCNPhysicsVehicleWheel.ConnectionPosition
-P:SceneKit.SCNPhysicsVehicleWheel.FrictionSlip
-P:SceneKit.SCNPhysicsVehicleWheel.MaximumSuspensionForce
-P:SceneKit.SCNPhysicsVehicleWheel.MaximumSuspensionTravel
-P:SceneKit.SCNPhysicsVehicleWheel.Node
-P:SceneKit.SCNPhysicsVehicleWheel.Radius
-P:SceneKit.SCNPhysicsVehicleWheel.SteeringAxis
-P:SceneKit.SCNPhysicsVehicleWheel.SuspensionCompression
-P:SceneKit.SCNPhysicsVehicleWheel.SuspensionDamping
-P:SceneKit.SCNPhysicsVehicleWheel.SuspensionRestLength
-P:SceneKit.SCNPhysicsVehicleWheel.SuspensionStiffness
-P:SceneKit.SCNPhysicsWorld.AllBehaviors
P:SceneKit.SCNPhysicsWorld.ContactDelegate
-P:SceneKit.SCNPhysicsWorld.Gravity
-P:SceneKit.SCNPhysicsWorld.Speed
-P:SceneKit.SCNPhysicsWorld.TimeStep
-P:SceneKit.SCNPhysicsWorld.WeakContactDelegate
-P:SceneKit.SCNPlane.CornerRadius
-P:SceneKit.SCNPlane.CornerSegmentCount
-P:SceneKit.SCNPlane.Height
-P:SceneKit.SCNPlane.HeightSegmentCount
-P:SceneKit.SCNPlane.Width
-P:SceneKit.SCNPlane.WidthSegmentCount
P:SceneKit.SCNProgram.Delegate
-P:SceneKit.SCNProgram.FragmentFunctionName
-P:SceneKit.SCNProgram.FragmentShader
-P:SceneKit.SCNProgram.Library
P:SceneKit.SCNProgram.Opaque
-P:SceneKit.SCNProgram.VertexFunctionName
-P:SceneKit.SCNProgram.VertexShader
-P:SceneKit.SCNProgram.WeakDelegate
P:SceneKit.SCNProgramSemanticOptions.MappingChannel
P:SceneKit.SCNPropertyControllers.Angle
P:SceneKit.SCNPropertyControllers.AngularVelocity
@@ -94727,47 +63664,11 @@ P:SceneKit.SCNPropertyControllers.Position
P:SceneKit.SCNPropertyControllers.RotationAxis
P:SceneKit.SCNPropertyControllers.Size
P:SceneKit.SCNPropertyControllers.Velocity
-P:SceneKit.SCNPyramid.Height
-P:SceneKit.SCNPyramid.HeightSegmentCount
-P:SceneKit.SCNPyramid.Length
-P:SceneKit.SCNPyramid.LengthSegmentCount
-P:SceneKit.SCNPyramid.Width
-P:SceneKit.SCNPyramid.WidthSegmentCount
P:SceneKit.SCNReferenceNode.Loaded
-P:SceneKit.SCNReferenceNode.LoadingPolicy
-P:SceneKit.SCNReferenceNode.ReferenceUrl
-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.NextFrameTimeInSeconds
-P:SceneKit.SCNRenderer.OverlayScene
P:SceneKit.SCNRenderer.Playing
-P:SceneKit.SCNRenderer.PointOfView
-P:SceneKit.SCNRenderer.RenderingApi
-P:SceneKit.SCNRenderer.Scene
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
P:SceneKit.SCNRenderingArguments.NormalTransform
@@ -94776,32 +63677,12 @@ P:SceneKit.SCNRenderingArguments.ViewTransform
P:SceneKit.SCNRenderingOptions.Device
P:SceneKit.SCNRenderingOptions.LowPowerDevice
P:SceneKit.SCNRenderingOptions.RenderingApi
-P:SceneKit.SCNReplicatorConstraint.OrientationOffset
-P:SceneKit.SCNReplicatorConstraint.PositionOffset
-P:SceneKit.SCNReplicatorConstraint.ReplicatesOrientation
-P:SceneKit.SCNReplicatorConstraint.ReplicatesPosition
-P:SceneKit.SCNReplicatorConstraint.ReplicatesScale
-P:SceneKit.SCNReplicatorConstraint.ScaleOffset
-P:SceneKit.SCNReplicatorConstraint.Target
-P:SceneKit.SCNScene.Background
P:SceneKit.SCNScene.EndTimeAttributeKey
P:SceneKit.SCNScene.ExportDestinationUrl
-P:SceneKit.SCNScene.FogColor
-P:SceneKit.SCNScene.FogDensityExponent
-P:SceneKit.SCNScene.FogEndDistance
-P:SceneKit.SCNScene.FogStartDistance
P:SceneKit.SCNScene.FrameRateAttributeKey
-P:SceneKit.SCNScene.LightingEnvironment
-P:SceneKit.SCNScene.ParticleSystems
P:SceneKit.SCNScene.Paused
-P:SceneKit.SCNScene.PhysicsWorld
-P:SceneKit.SCNScene.RootNode
-P:SceneKit.SCNScene.ScreenSpaceReflectionMaximumDistance
-P:SceneKit.SCNScene.ScreenSpaceReflectionSampleCount
-P:SceneKit.SCNScene.ScreenSpaceReflectionStride
P:SceneKit.SCNScene.StartTimeAttributeKey
P:SceneKit.SCNScene.UpAxisAttributeKey
-P:SceneKit.SCNScene.WantsScreenSpaceReflection
P:SceneKit.SCNSceneLoadingOptions.AnimationImportPolicy
P:SceneKit.SCNSceneLoadingOptions.AssetDirectoryUrls
P:SceneKit.SCNSceneLoadingOptions.CheckConsistency
@@ -94813,37 +63694,10 @@ P:SceneKit.SCNSceneLoadingOptions.OverrideAssetUrls
P:SceneKit.SCNSceneLoadingOptions.PreserveOriginalTopology
P:SceneKit.SCNSceneLoadingOptions.StrictConformance
P:SceneKit.SCNSceneLoadingOptions.UseSafeMode
-P:SceneKit.SCNSceneRenderer.AudioEngine
-P:SceneKit.SCNSceneRenderer.AudioEnvironmentNode
-P:SceneKit.SCNSceneRenderer.AudioListener
-P:SceneKit.SCNSceneRenderer.AutoenablesDefaultLighting
-P:SceneKit.SCNSceneRenderer.ColorPixelFormat
-P:SceneKit.SCNSceneRenderer.CommandQueue
-P:SceneKit.SCNSceneRenderer.Context
-P:SceneKit.SCNSceneRenderer.CurrentRenderCommandEncoder
-P:SceneKit.SCNSceneRenderer.CurrentRenderPassDescriptor
-P:SceneKit.SCNSceneRenderer.CurrentTime
-P:SceneKit.SCNSceneRenderer.CurrentViewport
-P:SceneKit.SCNSceneRenderer.DebugOptions
-P:SceneKit.SCNSceneRenderer.DepthPixelFormat
-P:SceneKit.SCNSceneRenderer.Device
P:SceneKit.SCNSceneRenderer.JitteringEnabled
-P:SceneKit.SCNSceneRenderer.Loops
-P:SceneKit.SCNSceneRenderer.OverlayScene
P:SceneKit.SCNSceneRenderer.Playing
-P:SceneKit.SCNSceneRenderer.PointOfView
-P:SceneKit.SCNSceneRenderer.RenderingApi
-P:SceneKit.SCNSceneRenderer.Scene
P:SceneKit.SCNSceneRenderer.SceneRendererDelegate
-P:SceneKit.SCNSceneRenderer.SceneTimeInSeconds
-P:SceneKit.SCNSceneRenderer.ShowsStatistics
-P:SceneKit.SCNSceneRenderer.StencilPixelFormat
P:SceneKit.SCNSceneRenderer.TemporalAntialiasingEnabled
-P:SceneKit.SCNSceneRenderer.UsesReverseZ
-P:SceneKit.SCNSceneRenderer.WeakSceneRendererDelegate
-P:SceneKit.SCNSceneRenderer.WorkingColorSpace
-P:SceneKit.SCNSceneSource.Data
-P:SceneKit.SCNSceneSource.Url
P:SceneKit.SCNSceneSourceLoadErrors.ConsistencyElementIDErrorKey
P:SceneKit.SCNSceneSourceLoadErrors.ConsistencyElementTypeErrorKey
P:SceneKit.SCNSceneSourceLoadErrors.ConsistencyLineNumberErrorKey
@@ -94872,167 +63726,19 @@ P:SceneKit.SCNSceneSourceProperties.AssetUnitKey
P:SceneKit.SCNSceneSourceProperties.AssetUnitMeterKey
P:SceneKit.SCNSceneSourceProperties.AssetUnitNameKey
P:SceneKit.SCNSceneSourceProperties.AssetUpAxisKey
-P:SceneKit.SCNShadable.MinimumLanguageVersion
-P:SceneKit.SCNShadable.Program
P:SceneKit.SCNShadable.ShaderModifiers
-P:SceneKit.SCNShadable.WeakShaderModifiers
P:SceneKit.SCNShaderModifiers.EntryPointFragment
P:SceneKit.SCNShaderModifiers.EntryPointGeometry
P:SceneKit.SCNShaderModifiers.EntryPointLightingModel
P:SceneKit.SCNShaderModifiers.EntryPointSurface
-P:SceneKit.SCNShape.ChamferMode
-P:SceneKit.SCNShape.ChamferProfile
-P:SceneKit.SCNShape.ChamferRadius
-P:SceneKit.SCNShape.ExtrusionDepth
-P:SceneKit.SCNShape.Path
-P:SceneKit.SCNSkinner.BaseGeometry
-P:SceneKit.SCNSkinner.BaseGeometryBindTransform
-P:SceneKit.SCNSkinner.BoneIndices
P:SceneKit.SCNSkinner.BoneInverseBindTransforms
-P:SceneKit.SCNSkinner.Bones
-P:SceneKit.SCNSkinner.BoneWeights
-P:SceneKit.SCNSkinner.Skeleton
-P:SceneKit.SCNSliderConstraint.CollisionCategoryBitMask
-P:SceneKit.SCNSliderConstraint.Offset
-P:SceneKit.SCNSliderConstraint.Radius
P:SceneKit.SCNSphere.Geodesic
-P:SceneKit.SCNSphere.Radius
-P:SceneKit.SCNSphere.SegmentCount
P:SceneKit.SCNTechnique.Item(Foundation.NSString)
-P:SceneKit.SCNTechnique.Library
-P:SceneKit.SCNTechniqueSupport.Technique
-P:SceneKit.SCNText.AlignmentMode
-P:SceneKit.SCNText.ChamferProfile
-P:SceneKit.SCNText.ChamferRadius
-P:SceneKit.SCNText.ContainerFrame
-P:SceneKit.SCNText.ExtrusionDepth
-P:SceneKit.SCNText.Flatness
-P:SceneKit.SCNText.Font
-P:SceneKit.SCNText.String
-P:SceneKit.SCNText.TextSize
-P:SceneKit.SCNText.TruncationMode
-P:SceneKit.SCNText.Wrapped
-P:SceneKit.SCNTorus.PipeRadius
-P:SceneKit.SCNTorus.PipeSegmentCount
-P:SceneKit.SCNTorus.RingRadius
-P:SceneKit.SCNTorus.RingSegmentCount
-P:SceneKit.SCNTransaction.AnimationDuration
-P:SceneKit.SCNTransaction.AnimationTimingFunction
-P:SceneKit.SCNTransaction.DisableActions
-P:SceneKit.SCNTube.Height
-P:SceneKit.SCNTube.HeightSegmentCount
-P:SceneKit.SCNTube.InnerRadius
-P:SceneKit.SCNTube.OuterRadius
-P:SceneKit.SCNTube.RadialSegmentCount
-P:SceneKit.SCNView.AllowsCameraControl
-P:SceneKit.SCNView.AntialiasingMode
-P:SceneKit.SCNView.AudioEngine
-P:SceneKit.SCNView.AudioEnvironmentNode
-P:SceneKit.SCNView.AudioListener
-P:SceneKit.SCNView.AutoenablesDefaultLighting
-P:SceneKit.SCNView.BackgroundColor
-P:SceneKit.SCNView.CameraControlConfiguration
-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.DefaultCameraController
-P:SceneKit.SCNView.DepthPixelFormat
-P:SceneKit.SCNView.Device
-P:SceneKit.SCNView.DrawableResizesAsynchronously
-P:SceneKit.SCNView.EAGLContext
P:SceneKit.SCNView.JitteringEnabled
-P:SceneKit.SCNView.Loops
-P:SceneKit.SCNView.OpenGLContext
-P:SceneKit.SCNView.OverlayScene
-P:SceneKit.SCNView.PixelFormat
P:SceneKit.SCNView.Playing
-P:SceneKit.SCNView.PointOfView
-P:SceneKit.SCNView.PreferredFramesPerSecond
-P:SceneKit.SCNView.RenderingApi
-P:SceneKit.SCNView.RendersContinuously
-P:SceneKit.SCNView.Scene
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:SceneKit.SCNView.UsesReverseZ
-P:SceneKit.SCNView.WeakSceneRendererDelegate
-P:SceneKit.SCNView.WorkingColorSpace
-P:ScreenCaptureKit.SCContentFilter.ContentRect
-P:ScreenCaptureKit.SCContentFilter.IncludedApplications
-P:ScreenCaptureKit.SCContentFilter.IncludedDisplays
-P:ScreenCaptureKit.SCContentFilter.IncludedWindows
-P:ScreenCaptureKit.SCContentFilter.IncludeMenuBar
-P:ScreenCaptureKit.SCContentFilter.PointPixelScale
-P:ScreenCaptureKit.SCContentFilter.StreamType
-P:ScreenCaptureKit.SCContentFilter.Style
P:ScreenCaptureKit.SCContentSharingPicker.Active
-P:ScreenCaptureKit.SCContentSharingPicker.DefaultConfiguration
-P:ScreenCaptureKit.SCContentSharingPicker.MaximumStreamCount
-P:ScreenCaptureKit.SCContentSharingPicker.SharedPicker
-P:ScreenCaptureKit.SCContentSharingPickerConfiguration.AllowedPickerModes
-P:ScreenCaptureKit.SCContentSharingPickerConfiguration.AllowsChangingSelectedContent
-P:ScreenCaptureKit.SCContentSharingPickerConfiguration.ExcludedBundleIds
-P:ScreenCaptureKit.SCContentSharingPickerConfiguration.ExcludedWindowIds
-P:ScreenCaptureKit.SCDisplay.DisplayId
-P:ScreenCaptureKit.SCDisplay.Frame
-P:ScreenCaptureKit.SCDisplay.Height
-P:ScreenCaptureKit.SCDisplay.Width
-P:ScreenCaptureKit.SCRecordingOutput.RecordedDuration
-P:ScreenCaptureKit.SCRecordingOutput.RecordedFileSize
-P:ScreenCaptureKit.SCRecordingOutputConfiguration.AvailableOutputFileTypes
-P:ScreenCaptureKit.SCRecordingOutputConfiguration.AvailableVideoCodecTypes
-P:ScreenCaptureKit.SCRecordingOutputConfiguration.OutputFileType
-P:ScreenCaptureKit.SCRecordingOutputConfiguration.OutputUrl
-P:ScreenCaptureKit.SCRecordingOutputConfiguration.VideoCodecType
-P:ScreenCaptureKit.SCRunningApplication.ApplicationName
-P:ScreenCaptureKit.SCRunningApplication.BundleIdentifier
-P:ScreenCaptureKit.SCRunningApplication.ProcessId
-P:ScreenCaptureKit.SCShareableContent.Applications
-P:ScreenCaptureKit.SCShareableContent.Displays
-P:ScreenCaptureKit.SCShareableContent.Windows
-P:ScreenCaptureKit.SCShareableContentInfo.ContentRect
-P:ScreenCaptureKit.SCShareableContentInfo.PointPixelScale
-P:ScreenCaptureKit.SCShareableContentInfo.Style
-P:ScreenCaptureKit.SCStream.SynchronizationClock
-P:ScreenCaptureKit.SCStreamConfiguration.BackgroundColor
-P:ScreenCaptureKit.SCStreamConfiguration.CaptureDynamicRange
-P:ScreenCaptureKit.SCStreamConfiguration.CaptureMicrophone
-P:ScreenCaptureKit.SCStreamConfiguration.CaptureResolution
-P:ScreenCaptureKit.SCStreamConfiguration.CapturesAudio
-P:ScreenCaptureKit.SCStreamConfiguration.CapturesShadowsOnly
-P:ScreenCaptureKit.SCStreamConfiguration.ChannelCount
-P:ScreenCaptureKit.SCStreamConfiguration.DestinationRect
-P:ScreenCaptureKit.SCStreamConfiguration.ExcludesCurrentProcessAudio
-P:ScreenCaptureKit.SCStreamConfiguration.Height
-P:ScreenCaptureKit.SCStreamConfiguration.IgnoreGlobalClipDisplay
-P:ScreenCaptureKit.SCStreamConfiguration.IgnoreGlobalClipSingleWindow
-P:ScreenCaptureKit.SCStreamConfiguration.IgnoreShadowsDisplay
-P:ScreenCaptureKit.SCStreamConfiguration.IgnoreShadowsSingleWindow
-P:ScreenCaptureKit.SCStreamConfiguration.IncludeChildWindows
-P:ScreenCaptureKit.SCStreamConfiguration.MicrophoneCaptureDeviceId
-P:ScreenCaptureKit.SCStreamConfiguration.MinimumFrameInterval
-P:ScreenCaptureKit.SCStreamConfiguration.PixelFormat
-P:ScreenCaptureKit.SCStreamConfiguration.PresenterOverlayPrivacyAlertSetting
-P:ScreenCaptureKit.SCStreamConfiguration.PreservesAspectRatio
-P:ScreenCaptureKit.SCStreamConfiguration.QueueDepth
-P:ScreenCaptureKit.SCStreamConfiguration.SampleRate
-P:ScreenCaptureKit.SCStreamConfiguration.ScalesToFit
-P:ScreenCaptureKit.SCStreamConfiguration.ShouldBeOpaque
-P:ScreenCaptureKit.SCStreamConfiguration.ShowMouseClicks
-P:ScreenCaptureKit.SCStreamConfiguration.ShowsCursor
-P:ScreenCaptureKit.SCStreamConfiguration.SourceRect
-P:ScreenCaptureKit.SCStreamConfiguration.StreamName
-P:ScreenCaptureKit.SCStreamConfiguration.WeakColorMatrix
-P:ScreenCaptureKit.SCStreamConfiguration.WeakColorSpaceName
-P:ScreenCaptureKit.SCStreamConfiguration.Width
P:ScreenCaptureKit.SCStreamFrameInfoKeys.BoundingRect
P:ScreenCaptureKit.SCStreamFrameInfoKeys.ContentRect
P:ScreenCaptureKit.SCStreamFrameInfoKeys.ContentScale
@@ -95043,12 +63749,7 @@ P:ScreenCaptureKit.SCStreamFrameInfoKeys.PresenterOverlayContentRect
P:ScreenCaptureKit.SCStreamFrameInfoKeys.ScreenRect
P:ScreenCaptureKit.SCStreamFrameInfoKeys.Status
P:ScreenCaptureKit.SCWindow.Active
-P:ScreenCaptureKit.SCWindow.Frame
P:ScreenCaptureKit.SCWindow.OnScreen
-P:ScreenCaptureKit.SCWindow.OwningApplication
-P:ScreenCaptureKit.SCWindow.Title
-P:ScreenCaptureKit.SCWindow.WindowId
-P:ScreenCaptureKit.SCWindow.WindowLayer
P:ScreenTime.STScreenTimeConfiguration.EnforcesChildRestrictions
P:ScreenTime.STScreenTimeConfigurationObserver.Configuration
P:ScreenTime.STWebpageController.SuppressUsageRecording
@@ -95280,263 +63981,18 @@ P:Security.SslContext.PeerTrust
P:Security.SslContext.SessionState
P:Security.SslStreamConnection.InnerStream
P:SensitiveContentAnalysis.SCSensitivityAnalysis.Sensitive
-P:SensitiveContentAnalysis.SCSensitivityAnalyzer.AnalysisPolicy
-P:SensorKit.SRAmbientLightSample.Chromaticity
-P:SensorKit.SRAmbientLightSample.Lux
-P:SensorKit.SRAmbientLightSample.Placement
-P:SensorKit.SRApplicationUsage.BundleIdentifier
-P:SensorKit.SRApplicationUsage.RelativeStartTime
-P:SensorKit.SRApplicationUsage.ReportApplicationIdentifier
-P:SensorKit.SRApplicationUsage.SupplementalCategories
-P:SensorKit.SRApplicationUsage.TextInputSessions
-P:SensorKit.SRApplicationUsage.UsageTime
-P:SensorKit.SRAudioLevel.Loudness
-P:SensorKit.SRAudioLevel.TimeRange
-P:SensorKit.SRDeletionRecord.EndTime
-P:SensorKit.SRDeletionRecord.Reason
-P:SensorKit.SRDeletionRecord.StartTime
-P:SensorKit.SRDevice.CurrentDevice
-P:SensorKit.SRDevice.Model
-P:SensorKit.SRDevice.Name
-P:SensorKit.SRDevice.ProductType
-P:SensorKit.SRDevice.SystemName
-P:SensorKit.SRDevice.SystemVersion
-P:SensorKit.SRDeviceUsageReport.ApplicationUsageByCategory
-P:SensorKit.SRDeviceUsageReport.Duration
-P:SensorKit.SRDeviceUsageReport.NotificationUsageByCategory
-P:SensorKit.SRDeviceUsageReport.TotalScreenWakes
-P:SensorKit.SRDeviceUsageReport.TotalUnlockDuration
-P:SensorKit.SRDeviceUsageReport.TotalUnlocks
-P:SensorKit.SRDeviceUsageReport.Version
-P:SensorKit.SRDeviceUsageReport.WebUsageByCategory
-P:SensorKit.SRElectrocardiogramData.Flags
-P:SensorKit.SRElectrocardiogramData.Value
-P:SensorKit.SRElectrocardiogramSample.Data
-P:SensorKit.SRElectrocardiogramSample.Date
-P:SensorKit.SRElectrocardiogramSample.Frequency
-P:SensorKit.SRElectrocardiogramSample.Lead
-P:SensorKit.SRElectrocardiogramSample.Session
-P:SensorKit.SRElectrocardiogramSession.Identifier
-P:SensorKit.SRElectrocardiogramSession.SessionGuidance
-P:SensorKit.SRElectrocardiogramSession.State
-P:SensorKit.SRFaceMetrics.Context
-P:SensorKit.SRFaceMetrics.FaceAnchor
-P:SensorKit.SRFaceMetrics.PartialFaceExpressions
-P:SensorKit.SRFaceMetrics.SessionIdentifier
-P:SensorKit.SRFaceMetrics.Version
-P:SensorKit.SRFaceMetrics.WholeFaceExpressions
-P:SensorKit.SRFaceMetricsExpression.Identifier
-P:SensorKit.SRFaceMetricsExpression.Value
-P:SensorKit.SRFetchRequest.Device
-P:SensorKit.SRFetchRequest.From
-P:SensorKit.SRFetchRequest.To
-P:SensorKit.SRFetchResult`1.Sample
-P:SensorKit.SRFetchResult`1.Timestamp
-P:SensorKit.SRKeyboardMetrics.AnyTapToCharKey
-P:SensorKit.SRKeyboardMetrics.AnyTapToPlaneChangeKey
-P:SensorKit.SRKeyboardMetrics.CharKeyToAnyTapKey
-P:SensorKit.SRKeyboardMetrics.CharKeyToDelete
-P:SensorKit.SRKeyboardMetrics.CharKeyToPlaneChangeKey
-P:SensorKit.SRKeyboardMetrics.CharKeyToPrediction
-P:SensorKit.SRKeyboardMetrics.CharKeyToSpaceKey
-P:SensorKit.SRKeyboardMetrics.DeleteDownErrorDistance
-P:SensorKit.SRKeyboardMetrics.DeleteToCharKey
-P:SensorKit.SRKeyboardMetrics.DeleteToDelete
-P:SensorKit.SRKeyboardMetrics.DeleteToDeletes
-P:SensorKit.SRKeyboardMetrics.DeleteToPath
-P:SensorKit.SRKeyboardMetrics.DeleteToPlaneChangeKey
-P:SensorKit.SRKeyboardMetrics.DeleteToShiftKey
-P:SensorKit.SRKeyboardMetrics.DeleteToSpaceKey
-P:SensorKit.SRKeyboardMetrics.DeleteTouchDownUp
-P:SensorKit.SRKeyboardMetrics.DeleteUpErrorDistance
-P:SensorKit.SRKeyboardMetrics.DownErrorDistance
-P:SensorKit.SRKeyboardMetrics.Duration
-P:SensorKit.SRKeyboardMetrics.Height
-P:SensorKit.SRKeyboardMetrics.InputModes
-P:SensorKit.SRKeyboardMetrics.KeyboardIdentifier
-P:SensorKit.SRKeyboardMetrics.LongWordDownErrorDistance
-P:SensorKit.SRKeyboardMetrics.LongWordTouchDownDown
-P:SensorKit.SRKeyboardMetrics.LongWordTouchDownUp
-P:SensorKit.SRKeyboardMetrics.LongWordTouchUpDown
-P:SensorKit.SRKeyboardMetrics.LongWordUpErrorDistance
-P:SensorKit.SRKeyboardMetrics.PathErrorDistanceRatio
-P:SensorKit.SRKeyboardMetrics.PathToDelete
-P:SensorKit.SRKeyboardMetrics.PathToPath
-P:SensorKit.SRKeyboardMetrics.PathToSpace
-P:SensorKit.SRKeyboardMetrics.PathTypingSpeed
-P:SensorKit.SRKeyboardMetrics.PlaneChangeKeyToCharKey
-P:SensorKit.SRKeyboardMetrics.PlaneChangeToAnyTap
-P:SensorKit.SRKeyboardMetrics.SessionIdentifiers
-P:SensorKit.SRKeyboardMetrics.ShortWordCharKeyDownErrorDistance
-P:SensorKit.SRKeyboardMetrics.ShortWordCharKeyToCharKey
-P:SensorKit.SRKeyboardMetrics.ShortWordCharKeyTouchDownUp
-P:SensorKit.SRKeyboardMetrics.ShortWordCharKeyUpErrorDistance
-P:SensorKit.SRKeyboardMetrics.SpaceDownErrorDistance
-P:SensorKit.SRKeyboardMetrics.SpaceToCharKey
-P:SensorKit.SRKeyboardMetrics.SpaceToDeleteKey
-P:SensorKit.SRKeyboardMetrics.SpaceToPath
-P:SensorKit.SRKeyboardMetrics.SpaceToPlaneChangeKey
-P:SensorKit.SRKeyboardMetrics.SpaceToPredictionKey
-P:SensorKit.SRKeyboardMetrics.SpaceToShiftKey
-P:SensorKit.SRKeyboardMetrics.SpaceToSpaceKey
-P:SensorKit.SRKeyboardMetrics.SpaceTouchDownUp
-P:SensorKit.SRKeyboardMetrics.SpaceUpErrorDistance
-P:SensorKit.SRKeyboardMetrics.TotalAlteredWords
-P:SensorKit.SRKeyboardMetrics.TotalAutoCorrections
-P:SensorKit.SRKeyboardMetrics.TotalDeletes
-P:SensorKit.SRKeyboardMetrics.TotalDrags
-P:SensorKit.SRKeyboardMetrics.TotalEmojis
-P:SensorKit.SRKeyboardMetrics.TotalHitTestCorrections
-P:SensorKit.SRKeyboardMetrics.TotalInsertKeyCorrections
-P:SensorKit.SRKeyboardMetrics.TotalNearKeyCorrections
-P:SensorKit.SRKeyboardMetrics.TotalPathLength
-P:SensorKit.SRKeyboardMetrics.TotalPathPauses
-P:SensorKit.SRKeyboardMetrics.TotalPaths
-P:SensorKit.SRKeyboardMetrics.TotalPathTime
-P:SensorKit.SRKeyboardMetrics.TotalPauses
-P:SensorKit.SRKeyboardMetrics.TotalRetroCorrections
-P:SensorKit.SRKeyboardMetrics.TotalSkipTouchCorrections
-P:SensorKit.SRKeyboardMetrics.TotalSpaceCorrections
-P:SensorKit.SRKeyboardMetrics.TotalSubstitutionCorrections
-P:SensorKit.SRKeyboardMetrics.TotalTaps
-P:SensorKit.SRKeyboardMetrics.TotalTranspositionCorrections
-P:SensorKit.SRKeyboardMetrics.TotalTypingDuration
-P:SensorKit.SRKeyboardMetrics.TotalTypingEpisodes
-P:SensorKit.SRKeyboardMetrics.TotalWords
-P:SensorKit.SRKeyboardMetrics.TouchDownDown
-P:SensorKit.SRKeyboardMetrics.TouchDownUp
-P:SensorKit.SRKeyboardMetrics.TouchUpDown
-P:SensorKit.SRKeyboardMetrics.TypingSpeed
-P:SensorKit.SRKeyboardMetrics.UpErrorDistance
-P:SensorKit.SRKeyboardMetrics.Version
-P:SensorKit.SRKeyboardMetrics.Width
-P:SensorKit.SRKeyboardProbabilityMetric`1.DistributionSampleValues
-P:SensorKit.SRMediaEvent.EventType
-P:SensorKit.SRMediaEvent.MediaIdentifier
-P:SensorKit.SRMessagesUsageReport.Duration
-P:SensorKit.SRMessagesUsageReport.TotalIncomingMessages
-P:SensorKit.SRMessagesUsageReport.TotalOutgoingMessages
-P:SensorKit.SRMessagesUsageReport.TotalUniqueContacts
-P:SensorKit.SRNotificationUsage.BundleIdentifier
-P:SensorKit.SRNotificationUsage.Event
-P:SensorKit.SRPhoneUsageReport.Duration
-P:SensorKit.SRPhoneUsageReport.TotalIncomingCalls
-P:SensorKit.SRPhoneUsageReport.TotalOutgoingCalls
-P:SensorKit.SRPhoneUsageReport.TotalPhoneCallDuration
-P:SensorKit.SRPhoneUsageReport.TotalUniqueContacts
-P:SensorKit.SRPhotoplethysmogramAccelerometerSample.NanosecondsSinceStart
-P:SensorKit.SRPhotoplethysmogramAccelerometerSample.SamplingFrequency
-P:SensorKit.SRPhotoplethysmogramAccelerometerSample.X
-P:SensorKit.SRPhotoplethysmogramAccelerometerSample.Y
-P:SensorKit.SRPhotoplethysmogramAccelerometerSample.Z
-P:SensorKit.SRPhotoplethysmogramOpticalSample.ActivePhotodiodeIndexes
-P:SensorKit.SRPhotoplethysmogramOpticalSample.BackgroundNoise
-P:SensorKit.SRPhotoplethysmogramOpticalSample.BackgroundNoiseOffset
-P:SensorKit.SRPhotoplethysmogramOpticalSample.Conditions
-P:SensorKit.SRPhotoplethysmogramOpticalSample.EffectiveWavelength
-P:SensorKit.SRPhotoplethysmogramOpticalSample.Emitter
-P:SensorKit.SRPhotoplethysmogramOpticalSample.NanosecondsSinceStart
-P:SensorKit.SRPhotoplethysmogramOpticalSample.NominalWavelength
-P:SensorKit.SRPhotoplethysmogramOpticalSample.NormalizedReflectance
-P:SensorKit.SRPhotoplethysmogramOpticalSample.PinkNoise
-P:SensorKit.SRPhotoplethysmogramOpticalSample.SamplingFrequency
-P:SensorKit.SRPhotoplethysmogramOpticalSample.SignalIdentifier
-P:SensorKit.SRPhotoplethysmogramOpticalSample.WhiteNoise
-P:SensorKit.SRPhotoplethysmogramSample.AccelerometerSamples
-P:SensorKit.SRPhotoplethysmogramSample.NanosecondsSinceStart
-P:SensorKit.SRPhotoplethysmogramSample.OpticalSamples
-P:SensorKit.SRPhotoplethysmogramSample.StartDate
-P:SensorKit.SRPhotoplethysmogramSample.Temperature
-P:SensorKit.SRPhotoplethysmogramSample.Usage
-P:SensorKit.SRSensorReader.AuthorizationStatus
P:SensorKit.SRSensorReader.Delegate
P:SensorKit.SRSensorReader.Sensor
-P:SensorKit.SRSensorReader.WeakDelegate
-P:SensorKit.SRSensorReader.WeakSensor
-P:SensorKit.SRSpeechExpression.Activation
-P:SensorKit.SRSpeechExpression.Confidence
-P:SensorKit.SRSpeechExpression.Dominance
-P:SensorKit.SRSpeechExpression.Mood
-P:SensorKit.SRSpeechExpression.TimeRange
-P:SensorKit.SRSpeechExpression.Valence
-P:SensorKit.SRSpeechExpression.Version
-P:SensorKit.SRSpeechMetrics.AudioLevel
-P:SensorKit.SRSpeechMetrics.SessionFlags
-P:SensorKit.SRSpeechMetrics.SessionIdentifier
-P:SensorKit.SRSpeechMetrics.SoundClassification
-P:SensorKit.SRSpeechMetrics.SpeechExpression
-P:SensorKit.SRSpeechMetrics.SpeechRecognition
-P:SensorKit.SRSpeechMetrics.TimeSinceAudioStart
-P:SensorKit.SRSpeechMetrics.Timestamp
-P:SensorKit.SRSupplementalCategory.Identifier
-P:SensorKit.SRTextInputSession.Duration
-P:SensorKit.SRTextInputSession.SessionIdentifier
-P:SensorKit.SRTextInputSession.SessionType
-P:SensorKit.SRVisit.ArrivalDateInterval
-P:SensorKit.SRVisit.DepartureDateInterval
-P:SensorKit.SRVisit.DistanceFromHome
-P:SensorKit.SRVisit.Identifier
-P:SensorKit.SRVisit.LocationCategory
-P:SensorKit.SRWebUsage.TotalUsageTime
-P:SensorKit.SRWristDetection.CrownOrientation
-P:SensorKit.SRWristDetection.OffWristDate
-P:SensorKit.SRWristDetection.OnWrist
-P:SensorKit.SRWristDetection.OnWristDate
-P:SensorKit.SRWristDetection.WristLocation
-P:SensorKit.SRWristTemperature.Condition
-P:SensorKit.SRWristTemperature.ErrorEstimate
-P:SensorKit.SRWristTemperature.Timestamp
-P:SensorKit.SRWristTemperature.Value
-P:SensorKit.SRWristTemperatureSession.Duration
-P:SensorKit.SRWristTemperatureSession.StartDate
-P:SensorKit.SRWristTemperatureSession.Temperatures
-P:SensorKit.SRWristTemperatureSession.Version
P:ServiceManagement.SMAppService.MainApp
P:ServiceManagement.SMAppService.Status
P:SharedWithYou.ISWHighlightEvent.HighlightUrl
-P:SharedWithYou.SWAttributionView.BackgroundStyle
-P:SharedWithYou.SWAttributionView.DisplayContext
-P:SharedWithYou.SWAttributionView.EnablesMarquee
-P:SharedWithYou.SWAttributionView.Highlight
-P:SharedWithYou.SWAttributionView.HighlightMenu
-P:SharedWithYou.SWAttributionView.HorizontalAlignment
-P:SharedWithYou.SWAttributionView.MenuTitleForHideAction
-P:SharedWithYou.SWAttributionView.PreferredMaxLayoutWidth
-P:SharedWithYou.SWAttributionView.SupplementalMenu
-P:SharedWithYou.SWCollaborationHighlight.CollaborationIdentifier
-P:SharedWithYou.SWCollaborationHighlight.ContentType
-P:SharedWithYou.SWCollaborationHighlight.CreationDate
-P:SharedWithYou.SWCollaborationHighlight.Title
-P:SharedWithYou.SWCollaborationView.ActiveParticipantCount
P:SharedWithYou.SWCollaborationView.CloudSharingControllerDelegate
P:SharedWithYou.SWCollaborationView.CloudSharingDelegate
P:SharedWithYou.SWCollaborationView.CloudSharingServiceDelegate
P:SharedWithYou.SWCollaborationView.Delegate
-P:SharedWithYou.SWCollaborationView.HeaderImage
-P:SharedWithYou.SWCollaborationView.HeaderSubtitle
-P:SharedWithYou.SWCollaborationView.HeaderTitle
-P:SharedWithYou.SWCollaborationView.ManageButtonTitle
-P:SharedWithYou.SWCollaborationView.MenuFormRepresentation
-P:SharedWithYou.SWCollaborationView.WeakCloudSharingControllerDelegate
-P:SharedWithYou.SWCollaborationView.WeakCloudSharingDelegate
-P:SharedWithYou.SWCollaborationView.WeakCloudSharingServiceDelegate
-P:SharedWithYou.SWCollaborationView.WeakDelegate
-P:SharedWithYou.SWHighlight.Identifier
P:SharedWithYou.SWHighlight.MetadataTypeIdentifier
-P:SharedWithYou.SWHighlight.Url
P:SharedWithYou.SWHighlightCenter.Delegate
-P:SharedWithYou.SWHighlightCenter.HighlightCollectionTitle
-P:SharedWithYou.SWHighlightCenter.Highlights
P:SharedWithYou.SWHighlightCenter.SystemCollaborationSupportAvailable
-P:SharedWithYou.SWHighlightCenter.WeakDelegate
-P:SharedWithYou.SWHighlightChangeEvent.ChangeEventTrigger
-P:SharedWithYou.SWHighlightChangeEvent.HighlightUrl
-P:SharedWithYou.SWHighlightMembershipEvent.HighlightUrl
-P:SharedWithYou.SWHighlightMembershipEvent.MembershipEventTrigger
-P:SharedWithYou.SWHighlightMentionEvent.HighlightUrl
-P:SharedWithYou.SWHighlightMentionEvent.MentionedPersonHandle
-P:SharedWithYou.SWHighlightPersistenceEvent.HighlightUrl
-P:SharedWithYou.SWHighlightPersistenceEvent.PersistenceEventTrigger
P:SharedWithYouCore.SWAction.Complete
P:SharedWithYouCore.SWAction.Uuid
P:SharedWithYouCore.SWCollaborationCoordinator.ActionHandler
@@ -95573,53 +64029,7 @@ P:SharedWithYouCore.SWStartCollaborationAction.CollaborationMetadata
P:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.AddedIdentities
P:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.CollaborationMetadata
P:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.RemovedIdentities
-P:ShazamKit.SHCatalog.MaximumQuerySignatureDuration
-P:ShazamKit.SHCatalog.MinimumQuerySignatureDuration
-P:ShazamKit.SHCustomCatalog.DataRepresentation
-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
-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
@@ -95638,404 +64048,39 @@ P:SoundAnalysis.SNClassifySoundRequest.WindowDurationConstraint
P:SoundAnalysis.SNTimeDurationConstraint.DurationRange
P:SoundAnalysis.SNTimeDurationConstraint.EnumeratedDurations
P:SoundAnalysis.SNTimeDurationConstraint.Type
-P:Speech.SFAcousticFeature.AcousticFeatureValuePerFrame
-P:Speech.SFAcousticFeature.FrameDuration
-P:Speech.SFSpeechAudioBufferRecognitionRequest.NativeAudioFormat
-P:Speech.SFSpeechLanguageModelConfiguration.LanguageModel
-P:Speech.SFSpeechLanguageModelConfiguration.Vocabulary
-P:Speech.SFSpeechRecognitionMetadata.AveragePauseDuration
-P:Speech.SFSpeechRecognitionMetadata.SpeakingRate
-P:Speech.SFSpeechRecognitionMetadata.SpeechDuration
-P:Speech.SFSpeechRecognitionMetadata.SpeechStartTimestamp
-P:Speech.SFSpeechRecognitionMetadata.VoiceAnalytics
-P:Speech.SFSpeechRecognitionRequest.AddsPunctuation
-P:Speech.SFSpeechRecognitionRequest.ContextualStrings
-P:Speech.SFSpeechRecognitionRequest.CustomizedLanguageModel
-P:Speech.SFSpeechRecognitionRequest.InteractionIdentifier
-P:Speech.SFSpeechRecognitionRequest.RequiresOnDeviceRecognition
-P:Speech.SFSpeechRecognitionRequest.ShouldReportPartialResults
-P:Speech.SFSpeechRecognitionRequest.TaskHint
-P:Speech.SFSpeechRecognitionResult.BestTranscription
-P:Speech.SFSpeechRecognitionResult.Final
-P:Speech.SFSpeechRecognitionResult.SpeechRecognitionMetadata
-P:Speech.SFSpeechRecognitionResult.Transcriptions
-P:Speech.SFSpeechRecognitionTask.Cancelled
-P:Speech.SFSpeechRecognitionTask.Error
-P:Speech.SFSpeechRecognitionTask.Finishing
-P:Speech.SFSpeechRecognitionTask.State
-P:Speech.SFSpeechRecognizer.AuthorizationStatus
-P:Speech.SFSpeechRecognizer.Available
-P:Speech.SFSpeechRecognizer.DefaultTaskHint
-P:Speech.SFSpeechRecognizer.Delegate
-P:Speech.SFSpeechRecognizer.Locale
-P:Speech.SFSpeechRecognizer.Queue
-P:Speech.SFSpeechRecognizer.SupportedLocales
-P:Speech.SFSpeechRecognizer.SupportsOnDeviceRecognition
-P:Speech.SFSpeechUrlRecognitionRequest.Url
-P:Speech.SFTranscription.AveragePauseDuration
-P:Speech.SFTranscription.FormattedString
-P:Speech.SFTranscription.Segments
-P:Speech.SFTranscription.SpeakingRate
-P:Speech.SFTranscriptionSegment.AlternativeSubstrings
-P:Speech.SFTranscriptionSegment.Confidence
-P:Speech.SFTranscriptionSegment.Duration
-P:Speech.SFTranscriptionSegment.Substring
-P:Speech.SFTranscriptionSegment.SubstringRange
-P:Speech.SFTranscriptionSegment.Timestamp
-P:Speech.SFTranscriptionSegment.VoiceAnalytics
-P:Speech.SFVoiceAnalytics.Jitter
-P:Speech.SFVoiceAnalytics.Pitch
-P:Speech.SFVoiceAnalytics.Shimmer
-P:Speech.SFVoiceAnalytics.Voicing
P:SpriteKit.ISKWarpable.SubdivisionLevels
P:SpriteKit.ISKWarpable.WarpGeometry
-P:SpriteKit.SK3DNode.AutoenablesDefaultLighting
-P:SpriteKit.SK3DNode.Loops
-P:SpriteKit.SK3DNode.Playing
-P:SpriteKit.SK3DNode.PointOfView
-P:SpriteKit.SK3DNode.SceneTime
-P:SpriteKit.SK3DNode.ScnScene
-P:SpriteKit.SK3DNode.ViewportSize
-P:SpriteKit.SKAction.Duration
-P:SpriteKit.SKAction.ReversedAction
-P:SpriteKit.SKAction.Speed
-P:SpriteKit.SKAction.TimingFunction2
-P:SpriteKit.SKAction.TimingMode
-P:SpriteKit.SKAttribute.Name
-P:SpriteKit.SKAttribute.Type
-P:SpriteKit.SKAttributeValue.FloatValue
-P:SpriteKit.SKAttributeValue.VectorFloat2Value
-P:SpriteKit.SKAttributeValue.VectorFloat3Value
-P:SpriteKit.SKAttributeValue.VectorFloat4Value
-P:SpriteKit.SKAudioNode.AutoplayLooped
-P:SpriteKit.SKAudioNode.AvAudioNode
P:SpriteKit.SKAudioNode.Positional
-P:SpriteKit.SKCameraNode.ContainedNodeSet
-P:SpriteKit.SKConstraint.Enabled
-P:SpriteKit.SKConstraint.ReferenceNode
-P:SpriteKit.SKCropNode.MaskNode
-P:SpriteKit.SKEffectNode.AttributeValues
-P:SpriteKit.SKEffectNode.BlendMode
-P:SpriteKit.SKEffectNode.Filter
-P:SpriteKit.SKEffectNode.Shader
-P:SpriteKit.SKEffectNode.ShouldCenterFilter
-P:SpriteKit.SKEffectNode.ShouldEnableEffects
-P:SpriteKit.SKEffectNode.ShouldRasterize
-P:SpriteKit.SKEffectNode.SubdivisionLevels
-P:SpriteKit.SKEffectNode.WarpGeometry
-P:SpriteKit.SKEmitterNode.AttributeValues
-P:SpriteKit.SKEmitterNode.EmissionAngle
-P:SpriteKit.SKEmitterNode.EmissionAngleRange
-P:SpriteKit.SKEmitterNode.FieldBitMask
-P:SpriteKit.SKEmitterNode.NumParticlesToEmit
-P:SpriteKit.SKEmitterNode.ParticleAction
-P:SpriteKit.SKEmitterNode.ParticleAlpha
-P:SpriteKit.SKEmitterNode.ParticleAlphaRange
-P:SpriteKit.SKEmitterNode.ParticleAlphaSequence
-P:SpriteKit.SKEmitterNode.ParticleAlphaSpeed
-P:SpriteKit.SKEmitterNode.ParticleBirthRate
-P:SpriteKit.SKEmitterNode.ParticleBlendMode
-P:SpriteKit.SKEmitterNode.ParticleColor
-P:SpriteKit.SKEmitterNode.ParticleColorAlphaRange
-P:SpriteKit.SKEmitterNode.ParticleColorAlphaSpeed
-P:SpriteKit.SKEmitterNode.ParticleColorBlendFactor
-P:SpriteKit.SKEmitterNode.ParticleColorBlendFactorRange
-P:SpriteKit.SKEmitterNode.ParticleColorBlendFactorSequence
-P:SpriteKit.SKEmitterNode.ParticleColorBlendFactorSpeed
-P:SpriteKit.SKEmitterNode.ParticleColorBlueRange
-P:SpriteKit.SKEmitterNode.ParticleColorBlueSpeed
-P:SpriteKit.SKEmitterNode.ParticleColorGreenRange
-P:SpriteKit.SKEmitterNode.ParticleColorGreenSpeed
-P:SpriteKit.SKEmitterNode.ParticleColorRedRange
-P:SpriteKit.SKEmitterNode.ParticleColorRedSpeed
-P:SpriteKit.SKEmitterNode.ParticleColorSequence
-P:SpriteKit.SKEmitterNode.ParticleLifetime
-P:SpriteKit.SKEmitterNode.ParticleLifetimeRange
-P:SpriteKit.SKEmitterNode.ParticlePosition
-P:SpriteKit.SKEmitterNode.ParticlePositionRange
-P:SpriteKit.SKEmitterNode.ParticleRenderOrder
-P:SpriteKit.SKEmitterNode.ParticleRotation
-P:SpriteKit.SKEmitterNode.ParticleRotationRange
-P:SpriteKit.SKEmitterNode.ParticleRotationSpeed
-P:SpriteKit.SKEmitterNode.ParticleScale
-P:SpriteKit.SKEmitterNode.ParticleScaleRange
-P:SpriteKit.SKEmitterNode.ParticleScaleSequence
-P:SpriteKit.SKEmitterNode.ParticleScaleSpeed
-P:SpriteKit.SKEmitterNode.ParticleSize
-P:SpriteKit.SKEmitterNode.ParticleSpeed
-P:SpriteKit.SKEmitterNode.ParticleSpeedRange
-P:SpriteKit.SKEmitterNode.ParticleTexture
-P:SpriteKit.SKEmitterNode.ParticleZPosition
-P:SpriteKit.SKEmitterNode.ParticleZPositionRange
-P:SpriteKit.SKEmitterNode.ParticleZPositionSpeed
-P:SpriteKit.SKEmitterNode.Shader
-P:SpriteKit.SKEmitterNode.TargetNode
-P:SpriteKit.SKEmitterNode.XAcceleration
-P:SpriteKit.SKEmitterNode.YAcceleration
-P:SpriteKit.SKFieldNode.AnimationSpeed
-P:SpriteKit.SKFieldNode.CategoryBitMask
-P:SpriteKit.SKFieldNode.Direction
P:SpriteKit.SKFieldNode.Enabled
P:SpriteKit.SKFieldNode.Exclusive
-P:SpriteKit.SKFieldNode.Falloff
-P:SpriteKit.SKFieldNode.MinimumRadius
-P:SpriteKit.SKFieldNode.Region
-P:SpriteKit.SKFieldNode.Smoothness
-P:SpriteKit.SKFieldNode.Strength
-P:SpriteKit.SKFieldNode.Texture
-P:SpriteKit.SKKeyframeSequence.Count
-P:SpriteKit.SKKeyframeSequence.InterpolationMode
-P:SpriteKit.SKKeyframeSequence.RepeatMode
-P:SpriteKit.SKLabelNode.AttributedText
-P:SpriteKit.SKLabelNode.BlendMode
-P:SpriteKit.SKLabelNode.Color
-P:SpriteKit.SKLabelNode.ColorBlendFactor
-P:SpriteKit.SKLabelNode.FontColor
-P:SpriteKit.SKLabelNode.FontName
-P:SpriteKit.SKLabelNode.FontSize
-P:SpriteKit.SKLabelNode.HorizontalAlignmentMode
-P:SpriteKit.SKLabelNode.LineBreakMode
-P:SpriteKit.SKLabelNode.NumberOfLines
-P:SpriteKit.SKLabelNode.PreferredMaxLayoutWidth
-P:SpriteKit.SKLabelNode.Text
-P:SpriteKit.SKLabelNode.VerticalAlignmentMode
-P:SpriteKit.SKLightNode.AmbientColor
-P:SpriteKit.SKLightNode.CategoryBitMask
P:SpriteKit.SKLightNode.Enabled
-P:SpriteKit.SKLightNode.Falloff
-P:SpriteKit.SKLightNode.LightColor
-P:SpriteKit.SKLightNode.ShadowColor
-P:SpriteKit.SKNode.Alpha
P:SpriteKit.SKNode.Bounds
P:SpriteKit.SKNode.CanBecomeFocused
-P:SpriteKit.SKNode.Children
-P:SpriteKit.SKNode.Constraints
P:SpriteKit.SKNode.CoordinateSpace
-P:SpriteKit.SKNode.FocusBehavior
P:SpriteKit.SKNode.FocusEffect
P:SpriteKit.SKNode.FocusGroupIdentifier
P:SpriteKit.SKNode.FocusGroupPriority
P:SpriteKit.SKNode.FocusItemContainer
P:SpriteKit.SKNode.FocusItemDeferralMode
-P:SpriteKit.SKNode.Frame
-P:SpriteKit.SKNode.HasActions
P:SpriteKit.SKNode.Hidden
P:SpriteKit.SKNode.IsTransparentFocusItem
-P:SpriteKit.SKNode.Name
-P:SpriteKit.SKNode.Parent
P:SpriteKit.SKNode.ParentFocusEnvironment
P:SpriteKit.SKNode.Paused
-P:SpriteKit.SKNode.PhysicsBody
-P:SpriteKit.SKNode.Position
P:SpriteKit.SKNode.PreferredFocusedView
P:SpriteKit.SKNode.PreferredFocusEnvironments
-P:SpriteKit.SKNode.ReachConstraints
-P:SpriteKit.SKNode.Scene
-P:SpriteKit.SKNode.Speed
-P:SpriteKit.SKNode.UserData
P:SpriteKit.SKNode.UserInteractionEnabled
-P:SpriteKit.SKNode.XScale
-P:SpriteKit.SKNode.YScale
-P:SpriteKit.SKNode.ZPosition
-P:SpriteKit.SKNode.ZRotation
-P:SpriteKit.SKPhysicsBody.AffectedByGravity
-P:SpriteKit.SKPhysicsBody.AllContactedBodies
-P:SpriteKit.SKPhysicsBody.AllowsRotation
-P:SpriteKit.SKPhysicsBody.AngularDamping
-P:SpriteKit.SKPhysicsBody.AngularVelocity
-P:SpriteKit.SKPhysicsBody.Area
-P:SpriteKit.SKPhysicsBody.CategoryBitMask
-P:SpriteKit.SKPhysicsBody.Charge
-P:SpriteKit.SKPhysicsBody.CollisionBitMask
-P:SpriteKit.SKPhysicsBody.ContactTestBitMask
-P:SpriteKit.SKPhysicsBody.Density
P:SpriteKit.SKPhysicsBody.Dynamic
-P:SpriteKit.SKPhysicsBody.FieldBitMask
-P:SpriteKit.SKPhysicsBody.Friction
-P:SpriteKit.SKPhysicsBody.Joints
-P:SpriteKit.SKPhysicsBody.LinearDamping
-P:SpriteKit.SKPhysicsBody.Mass
-P:SpriteKit.SKPhysicsBody.Node
-P:SpriteKit.SKPhysicsBody.Pinned
P:SpriteKit.SKPhysicsBody.Resting
-P:SpriteKit.SKPhysicsBody.Restitution
-P:SpriteKit.SKPhysicsBody.UsesPreciseCollisionDetection
-P:SpriteKit.SKPhysicsBody.Velocity
-P:SpriteKit.SKPhysicsContact.BodyA
-P:SpriteKit.SKPhysicsContact.BodyB
-P:SpriteKit.SKPhysicsContact.CollisionImpulse
-P:SpriteKit.SKPhysicsContact.ContactNormal
-P:SpriteKit.SKPhysicsContact.ContactPoint
-P:SpriteKit.SKPhysicsJoint.BodyA
-P:SpriteKit.SKPhysicsJoint.BodyB
-P:SpriteKit.SKPhysicsJoint.ReactionForce
-P:SpriteKit.SKPhysicsJoint.ReactionTorque
-P:SpriteKit.SKPhysicsJointLimit.MaxLength
-P:SpriteKit.SKPhysicsJointPin.FrictionTorque
-P:SpriteKit.SKPhysicsJointPin.LowerAngleLimit
-P:SpriteKit.SKPhysicsJointPin.RotationSpeed
-P:SpriteKit.SKPhysicsJointPin.ShouldEnableLimits
-P:SpriteKit.SKPhysicsJointPin.UpperAngleLimit
-P:SpriteKit.SKPhysicsJointSliding.LowerDistanceLimit
-P:SpriteKit.SKPhysicsJointSliding.ShouldEnableLimits
-P:SpriteKit.SKPhysicsJointSliding.UpperDistanceLimit
-P:SpriteKit.SKPhysicsJointSpring.Damping
-P:SpriteKit.SKPhysicsJointSpring.Frequency
P:SpriteKit.SKPhysicsWorld.ContactDelegate
-P:SpriteKit.SKPhysicsWorld.Gravity
-P:SpriteKit.SKPhysicsWorld.Speed
-P:SpriteKit.SKPhysicsWorld.WeakContactDelegate
-P:SpriteKit.SKRange.LowerLimit
-P:SpriteKit.SKRange.UpperLimit
-P:SpriteKit.SKReachConstraints.LowerAngleLimit
-P:SpriteKit.SKReachConstraints.UpperAngleLimit
-P:SpriteKit.SKRegion.InfiniteRegion
-P:SpriteKit.SKRegion.Path
-P:SpriteKit.SKRenderer.IgnoresSiblingOrder
-P:SpriteKit.SKRenderer.Scene
-P:SpriteKit.SKRenderer.ShouldCullNonVisibleNodes
-P:SpriteKit.SKRenderer.ShowsDrawCount
-P:SpriteKit.SKRenderer.ShowsFields
-P:SpriteKit.SKRenderer.ShowsNodeCount
-P:SpriteKit.SKRenderer.ShowsPhysics
-P:SpriteKit.SKRenderer.ShowsQuadCount
-P:SpriteKit.SKScene.AnchorPoint
-P:SpriteKit.SKScene.AudioEngine
-P:SpriteKit.SKScene.BackgroundColor
-P:SpriteKit.SKScene.Camera
P:SpriteKit.SKScene.Delegate
-P:SpriteKit.SKScene.Listener
-P:SpriteKit.SKScene.PhysicsWorld
-P:SpriteKit.SKScene.ScaleMode
-P:SpriteKit.SKScene.Size
-P:SpriteKit.SKScene.View
-P:SpriteKit.SKScene.WeakDelegate
-P:SpriteKit.SKShader.Attributes
-P:SpriteKit.SKShader.Source
-P:SpriteKit.SKShader.Uniforms
P:SpriteKit.SKShapeNode.Antialiased
-P:SpriteKit.SKShapeNode.AttributeValues
-P:SpriteKit.SKShapeNode.BlendMode
-P:SpriteKit.SKShapeNode.FillColor
-P:SpriteKit.SKShapeNode.FillShader
-P:SpriteKit.SKShapeNode.FillTexture
-P:SpriteKit.SKShapeNode.GlowWidth
-P:SpriteKit.SKShapeNode.LineCap
-P:SpriteKit.SKShapeNode.LineJoin
-P:SpriteKit.SKShapeNode.LineLength
-P:SpriteKit.SKShapeNode.LineWidth
-P:SpriteKit.SKShapeNode.MiterLimit
-P:SpriteKit.SKShapeNode.Path
-P:SpriteKit.SKShapeNode.StrokeColor
-P:SpriteKit.SKShapeNode.StrokeShader
-P:SpriteKit.SKShapeNode.StrokeTexture
-P:SpriteKit.SKSpriteNode.AnchorPoint
-P:SpriteKit.SKSpriteNode.AttributeValues
-P:SpriteKit.SKSpriteNode.BlendMode
-P:SpriteKit.SKSpriteNode.CenterRect
-P:SpriteKit.SKSpriteNode.Color
-P:SpriteKit.SKSpriteNode.ColorBlendFactor
-P:SpriteKit.SKSpriteNode.LightingBitMask
-P:SpriteKit.SKSpriteNode.NormalTexture
-P:SpriteKit.SKSpriteNode.Shader
-P:SpriteKit.SKSpriteNode.ShadowCastBitMask
-P:SpriteKit.SKSpriteNode.ShadowedBitMask
-P:SpriteKit.SKSpriteNode.Size
-P:SpriteKit.SKSpriteNode.SubdivisionLevels
-P:SpriteKit.SKSpriteNode.Texture
-P:SpriteKit.SKSpriteNode.WarpGeometry
-P:SpriteKit.SKTexture.CGImage
-P:SpriteKit.SKTexture.FilteringMode
-P:SpriteKit.SKTexture.Size
-P:SpriteKit.SKTexture.TextureRect
-P:SpriteKit.SKTexture.UsesMipmaps
-P:SpriteKit.SKTextureAtlas.TextureNames
P:SpriteKit.SKTextureAtlasLoadResult.Error
P:SpriteKit.SKTextureAtlasLoadResult.FoundAtlases
-P:SpriteKit.SKTileDefinition.FlipHorizontally
-P:SpriteKit.SKTileDefinition.FlipVertically
-P:SpriteKit.SKTileDefinition.Name
-P:SpriteKit.SKTileDefinition.NormalTextures
-P:SpriteKit.SKTileDefinition.PlacementWeight
-P:SpriteKit.SKTileDefinition.Rotation
-P:SpriteKit.SKTileDefinition.Size
-P:SpriteKit.SKTileDefinition.Textures
-P:SpriteKit.SKTileDefinition.TimePerFrame
-P:SpriteKit.SKTileDefinition.UserData
-P:SpriteKit.SKTileGroup.Name
-P:SpriteKit.SKTileGroup.Rules
-P:SpriteKit.SKTileGroupRule.Adjacency
-P:SpriteKit.SKTileGroupRule.Name
-P:SpriteKit.SKTileGroupRule.TileDefinitions
-P:SpriteKit.SKTileMapNode.AnchorPoint
-P:SpriteKit.SKTileMapNode.AttributeValues
-P:SpriteKit.SKTileMapNode.BlendMode
-P:SpriteKit.SKTileMapNode.Color
-P:SpriteKit.SKTileMapNode.ColorBlendFactor
-P:SpriteKit.SKTileMapNode.EnableAutomapping
-P:SpriteKit.SKTileMapNode.LightingBitMask
-P:SpriteKit.SKTileMapNode.MapSize
-P:SpriteKit.SKTileMapNode.NumberOfColumns
-P:SpriteKit.SKTileMapNode.NumberOfRows
-P:SpriteKit.SKTileMapNode.Shader
-P:SpriteKit.SKTileMapNode.TileSet
-P:SpriteKit.SKTileMapNode.TileSize
-P:SpriteKit.SKTileSet.DefaultTileGroup
-P:SpriteKit.SKTileSet.DefaultTileSize
-P:SpriteKit.SKTileSet.Name
-P:SpriteKit.SKTileSet.TileGroups
-P:SpriteKit.SKTileSet.Type
-P:SpriteKit.SKTransformNode.EulerAngles
-P:SpriteKit.SKTransformNode.Quaternion
-P:SpriteKit.SKTransformNode.RotationMatrix
-P:SpriteKit.SKTransformNode.XRotation
-P:SpriteKit.SKTransformNode.YRotation
-P:SpriteKit.SKTransition.PausesIncomingScene
-P:SpriteKit.SKTransition.PausesOutgoingScene
-P:SpriteKit.SKUniform.FloatValue
P:SpriteKit.SKUniform.FloatVector2Value
P:SpriteKit.SKUniform.FloatVector3Value
P:SpriteKit.SKUniform.FloatVector4Value
-P:SpriteKit.SKUniform.MatrixFloat2x2Value
-P:SpriteKit.SKUniform.MatrixFloat3x3Value
-P:SpriteKit.SKUniform.MatrixFloat4x4Value
-P:SpriteKit.SKUniform.Name
-P:SpriteKit.SKUniform.TextureValue
-P:SpriteKit.SKUniform.UniformType
-P:SpriteKit.SKVideoNode.AnchorPoint
-P:SpriteKit.SKVideoNode.Size
-P:SpriteKit.SKView.AllowsTransparency
P:SpriteKit.SKView.Asynchronous
-P:SpriteKit.SKView.Delegate
-P:SpriteKit.SKView.DisableDepthStencilBuffer
-P:SpriteKit.SKView.FrameInterval
-P:SpriteKit.SKView.IgnoresSiblingOrder
P:SpriteKit.SKView.Paused
-P:SpriteKit.SKView.PreferredFramesPerSecond
-P:SpriteKit.SKView.Scene
-P:SpriteKit.SKView.ShouldCullNonVisibleNodes
-P:SpriteKit.SKView.ShowsDrawCount
-P:SpriteKit.SKView.ShowsFields
-P:SpriteKit.SKView.ShowsFPS
-P:SpriteKit.SKView.ShowsNodeCount
-P:SpriteKit.SKView.ShowsPhysics
-P:SpriteKit.SKView.ShowsQuadCount
-P:SpriteKit.SKWarpGeometryGrid.NumberOfColumns
-P:SpriteKit.SKWarpGeometryGrid.NumberOfRows
-P:SpriteKit.SKWarpGeometryGrid.VertexCount
-P:StoreKit.SKAdImpression.AdCampaignIdentifier
-P:StoreKit.SKAdImpression.AdDescription
-P:StoreKit.SKAdImpression.AdImpressionIdentifier
-P:StoreKit.SKAdImpression.AdNetworkIdentifier
-P:StoreKit.SKAdImpression.AdPurchaserName
-P:StoreKit.SKAdImpression.AdType
-P:StoreKit.SKAdImpression.AdvertisedAppStoreItemIdentifier
-P:StoreKit.SKAdImpression.Signature
-P:StoreKit.SKAdImpression.SourceAppStoreItemIdentifier
-P:StoreKit.SKAdImpression.SourceIdentifier
-P:StoreKit.SKAdImpression.Timestamp
-P:StoreKit.SKAdImpression.Version
-P:StoreKit.SKCloudServiceController.AuthorizationStatus
P:StoreKit.SKCloudServiceController.CloudServiceCapabilitiesDidChangeNotification
P:StoreKit.SKCloudServiceController.StorefrontCountryCodeDidChangeNotification
P:StoreKit.SKCloudServiceController.StorefrontIdentifierDidChangeNotification
@@ -96044,111 +64089,19 @@ P:StoreKit.SKCloudServiceSetupOptions.AffiliateToken
P:StoreKit.SKCloudServiceSetupOptions.CampaignToken
P:StoreKit.SKCloudServiceSetupOptions.ITunesItemIdentifier
P:StoreKit.SKCloudServiceSetupOptions.MessageIdentifier
-P:StoreKit.SKCloudServiceSetupViewController.Delegate
-P:StoreKit.SKDownload.ContentIdentifier
-P:StoreKit.SKDownload.ContentLength
-P:StoreKit.SKDownload.ContentUrl
-P:StoreKit.SKDownload.ContentVersion
-P:StoreKit.SKDownload.DownloadState
-P:StoreKit.SKDownload.Error
-P:StoreKit.SKDownload.ExpectedContentLength
-P:StoreKit.SKDownload.Progress
-P:StoreKit.SKDownload.State
-P:StoreKit.SKDownload.TimeRemaining
P:StoreKit.SKDownload.TimeRemainingUnknown
-P:StoreKit.SKDownload.Transaction
-P:StoreKit.SKMutablePayment.ApplicationUsername
-P:StoreKit.SKMutablePayment.PaymentDiscount
-P:StoreKit.SKMutablePayment.ProductIdentifier
-P:StoreKit.SKMutablePayment.Quantity
-P:StoreKit.SKMutablePayment.RequestData
-P:StoreKit.SKMutablePayment.SimulatesAskToBuyInSandbox
-P:StoreKit.SKOverlay.Configuration
P:StoreKit.SKOverlay.Delegate
-P:StoreKit.SKOverlay.WeakDelegate
-P:StoreKit.SKOverlayAppClipConfiguration.CampaignToken
-P:StoreKit.SKOverlayAppClipConfiguration.CustomProductPageIdentifier
P:StoreKit.SKOverlayAppClipConfiguration.Item(System.String)
-P:StoreKit.SKOverlayAppClipConfiguration.LatestReleaseId
-P:StoreKit.SKOverlayAppClipConfiguration.Position
-P:StoreKit.SKOverlayAppClipConfiguration.ProviderToken
-P:StoreKit.SKOverlayAppConfiguration.AppIdentifier
-P:StoreKit.SKOverlayAppConfiguration.CampaignToken
-P:StoreKit.SKOverlayAppConfiguration.CustomProductPageIdentifier
P:StoreKit.SKOverlayAppConfiguration.Item(System.String)
-P:StoreKit.SKOverlayAppConfiguration.LatestReleaseId
-P:StoreKit.SKOverlayAppConfiguration.Position
-P:StoreKit.SKOverlayAppConfiguration.ProviderToken
-P:StoreKit.SKOverlayAppConfiguration.UserDismissible
-P:StoreKit.SKOverlayTransitionContext.EndFrame
-P:StoreKit.SKOverlayTransitionContext.StartFrame
-P:StoreKit.SKPayment.ApplicationUsername
-P:StoreKit.SKPayment.PaymentDiscount
-P:StoreKit.SKPayment.ProductIdentifier
-P:StoreKit.SKPayment.Quantity
-P:StoreKit.SKPayment.RequestData
-P:StoreKit.SKPayment.SimulatesAskToBuyInSandbox
-P:StoreKit.SKPaymentDiscount.Identifier
-P:StoreKit.SKPaymentDiscount.KeyIdentifier
-P:StoreKit.SKPaymentDiscount.Nonce
-P:StoreKit.SKPaymentDiscount.Signature
-P:StoreKit.SKPaymentDiscount.Timestamp
-P:StoreKit.SKPaymentQueue.CanMakePayments
-P:StoreKit.SKPaymentQueue.DefaultQueue
P:StoreKit.SKPaymentQueue.Delegate
-P:StoreKit.SKPaymentQueue.Storefront
-P:StoreKit.SKPaymentQueue.TransactionObservers
-P:StoreKit.SKPaymentQueue.Transactions
-P:StoreKit.SKPaymentQueue.WeakDelegate
-P:StoreKit.SKPaymentTransaction.Downloads
-P:StoreKit.SKPaymentTransaction.Error
-P:StoreKit.SKPaymentTransaction.OriginalTransaction
-P:StoreKit.SKPaymentTransaction.Payment
-P:StoreKit.SKPaymentTransaction.TransactionDate
-P:StoreKit.SKPaymentTransaction.TransactionIdentifier
-P:StoreKit.SKPaymentTransaction.TransactionReceipt
-P:StoreKit.SKPaymentTransaction.TransactionState
-P:StoreKit.SKProduct.ContentLengths
-P:StoreKit.SKProduct.ContentVersion
-P:StoreKit.SKProduct.Discounts
-P:StoreKit.SKProduct.Downloadable
-P:StoreKit.SKProduct.DownloadContentLengths
-P:StoreKit.SKProduct.DownloadContentVersion
-P:StoreKit.SKProduct.IntroductoryPrice
-P:StoreKit.SKProduct.IsDownloadable
-P:StoreKit.SKProduct.IsFamilyShareable
-P:StoreKit.SKProduct.LocalizedDescription
-P:StoreKit.SKProduct.LocalizedTitle
-P:StoreKit.SKProduct.Price
-P:StoreKit.SKProduct.PriceLocale
-P:StoreKit.SKProduct.ProductIdentifier
-P:StoreKit.SKProduct.SubscriptionGroupIdentifier
-P:StoreKit.SKProduct.SubscriptionPeriod
-P:StoreKit.SKProductDiscount.Identifier
-P:StoreKit.SKProductDiscount.NumberOfPeriods
-P:StoreKit.SKProductDiscount.PaymentMode
-P:StoreKit.SKProductDiscount.Price
-P:StoreKit.SKProductDiscount.PriceLocale
-P:StoreKit.SKProductDiscount.SubscriptionPeriod
-P:StoreKit.SKProductDiscount.Type
P:StoreKit.SKProductsRequest.Delegate
-P:StoreKit.SKProductsRequest.WeakDelegate
P:StoreKit.SKProductsRequestResponseEventArgs.Response
-P:StoreKit.SKProductsResponse.InvalidProducts
-P:StoreKit.SKProductsResponse.Products
-P:StoreKit.SKProductStorePromotionController.Default
-P:StoreKit.SKProductSubscriptionPeriod.NumberOfUnits
-P:StoreKit.SKProductSubscriptionPeriod.Unit
P:StoreKit.SKReceiptProperties.IsExpired
P:StoreKit.SKReceiptProperties.IsRevoked
P:StoreKit.SKReceiptProperties.IsVolumePurchase
P:StoreKit.SKReceiptRefreshRequest.ReceiptProperties
-P:StoreKit.SKReceiptRefreshRequest.WeakReceiptProperties
P:StoreKit.SKRequest.Delegate
-P:StoreKit.SKRequest.WeakDelegate
P:StoreKit.SKRequestErrorEventArgs.Error
-P:StoreKit.SKStorefront.CountryCode
-P:StoreKit.SKStorefront.Identifier
P:StoreKit.SKStoreProductParameterKey.AdNetworkAttributionSignature
P:StoreKit.SKStoreProductParameterKey.AdNetworkCampaignIdentifier
P:StoreKit.SKStoreProductParameterKey.AdNetworkIdentifier
@@ -96165,7 +64118,6 @@ P:StoreKit.SKStoreProductParameterKey.ITunesItemIdentifier
P:StoreKit.SKStoreProductParameterKey.ProductIdentifier
P:StoreKit.SKStoreProductParameterKey.ProviderToken
P:StoreKit.SKStoreProductViewController.Delegate
-P:StoreKit.SKStoreProductViewController.WeakDelegate
P:StoreKit.StoreProductParameters.AdNetworkAttributionSignature
P:StoreKit.StoreProductParameters.AdNetworkCampaignIdentifier
P:StoreKit.StoreProductParameters.AdNetworkIdentifier
@@ -96178,33 +64130,6 @@ P:StoreKit.StoreProductParameters.CampaignToken
P:StoreKit.StoreProductParameters.ITunesItemIdentifier
P:StoreKit.StoreProductParameters.ProductIdentifier
P:StoreKit.StoreProductParameters.ProviderToken
-P:Symbols.NSSymbolAppearEffect.ByLayer
-P:Symbols.NSSymbolAppearEffect.WholeSymbol
-P:Symbols.NSSymbolBounceEffect.ByLayer
-P:Symbols.NSSymbolBounceEffect.WholeSymbol
-P:Symbols.NSSymbolBreatheEffect.ByLayer
-P:Symbols.NSSymbolBreatheEffect.WholeSymbol
-P:Symbols.NSSymbolDisappearEffect.ByLayer
-P:Symbols.NSSymbolDisappearEffect.WholeSymbol
-P:Symbols.NSSymbolPulseEffect.ByLayer
-P:Symbols.NSSymbolPulseEffect.WholeSymbol
-P:Symbols.NSSymbolReplaceContentTransition.ByLayer
-P:Symbols.NSSymbolReplaceContentTransition.WholeSymbol
-P:Symbols.NSSymbolRotateEffect.ByLayer
-P:Symbols.NSSymbolRotateEffect.WholeSymbol
-P:Symbols.NSSymbolScaleEffect.ByLayer
-P:Symbols.NSSymbolScaleEffect.WholeSymbol
-P:Symbols.NSSymbolVariableColorEffect.Cumulative
-P:Symbols.NSSymbolVariableColorEffect.DimInactiveLayers
-P:Symbols.NSSymbolVariableColorEffect.HideInactiveLayers
-P:Symbols.NSSymbolVariableColorEffect.Iterative
-P:Symbols.NSSymbolVariableColorEffect.NonReversing
-P:Symbols.NSSymbolVariableColorEffect.Reversing
-P:Symbols.NSSymbolWiggleEffect.ByLayer
-P:Symbols.NSSymbolWiggleEffect.WholeSymbol
-P:System.Net.Http.CFNetworkHandler.AllowAutoRedirect
-P:System.Net.Http.CFNetworkHandler.CookieContainer
-P:System.Net.Http.CFNetworkHandler.UseSystemProxy
P:System.Net.Http.NSUrlSessionHandler.AllowAutoRedirect
P:System.Net.Http.NSUrlSessionHandler.AllowsCellularAccess
P:System.Net.Http.NSUrlSessionHandler.AutomaticDecompression
@@ -96223,124 +64148,16 @@ P:System.Net.Http.NSUrlSessionHandler.UseProxy
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.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.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
@@ -96392,81 +64209,8 @@ 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
@@ -96707,293 +64451,34 @@ P:UIKit.IUIViewControllerTransitionCoordinatorContext.PercentComplete
P:UIKit.IUIViewControllerTransitionCoordinatorContext.PresentationStyle
P:UIKit.IUIViewControllerTransitionCoordinatorContext.TransitionDuration
P:UIKit.IUIWindowSceneDelegate.Window
-P:UIKit.NSAdaptiveImageGlyph.ContentDescription
-P:UIKit.NSAdaptiveImageGlyph.ContentIdentifier
-P:UIKit.NSAdaptiveImageGlyph.ContentType
-P:UIKit.NSAdaptiveImageGlyph.ImageContent
P:UIKit.NSAttributedStringDocumentReadingOptions.CharacterEncoding
P:UIKit.NSAttributedStringDocumentReadingOptions.DefaultAttributes
P:UIKit.NSAttributedStringDocumentReadingOptions.DocumentType
P:UIKit.NSAttributedStringDocumentReadingOptions.SourceTextScaling
P:UIKit.NSAttributedStringDocumentReadingOptions.TargetTextScaling
P:UIKit.NSAttributedStringDocumentReadingOptions.TextKit1ListMarkerFormat
-P:UIKit.NSCollectionLayoutAnchor.Edges
-P:UIKit.NSCollectionLayoutAnchor.IsAbsoluteOffset
-P:UIKit.NSCollectionLayoutAnchor.IsFractionalOffset
-P:UIKit.NSCollectionLayoutAnchor.Offset
-P:UIKit.NSCollectionLayoutBoundarySupplementaryItem.Alignment
-P:UIKit.NSCollectionLayoutBoundarySupplementaryItem.ExtendsBoundary
-P:UIKit.NSCollectionLayoutBoundarySupplementaryItem.Offset
-P:UIKit.NSCollectionLayoutBoundarySupplementaryItem.PinToVisibleBounds
-P:UIKit.NSCollectionLayoutDecorationItem.ElementKind
-P:UIKit.NSCollectionLayoutDecorationItem.ZIndex
-P:UIKit.NSCollectionLayoutDimension.Dimension
-P:UIKit.NSCollectionLayoutDimension.IsAbsolute
-P:UIKit.NSCollectionLayoutDimension.IsEstimated
-P:UIKit.NSCollectionLayoutDimension.IsFractionalHeight
-P:UIKit.NSCollectionLayoutDimension.IsFractionalWidth
-P:UIKit.NSCollectionLayoutDimension.IsUniformAcrossSiblings
-P:UIKit.NSCollectionLayoutEdgeSpacing.Bottom
-P:UIKit.NSCollectionLayoutEdgeSpacing.Leading
-P:UIKit.NSCollectionLayoutEdgeSpacing.Top
-P:UIKit.NSCollectionLayoutEdgeSpacing.Trailing
-P:UIKit.NSCollectionLayoutGroup.InterItemSpacing
-P:UIKit.NSCollectionLayoutGroup.Subitems
-P:UIKit.NSCollectionLayoutGroup.SupplementaryItems
-P:UIKit.NSCollectionLayoutGroup.VisualDescription
-P:UIKit.NSCollectionLayoutGroupCustomItem.Frame
-P:UIKit.NSCollectionLayoutGroupCustomItem.ZIndex
-P:UIKit.NSCollectionLayoutItem.ContentInsets
-P:UIKit.NSCollectionLayoutItem.EdgeSpacing
-P:UIKit.NSCollectionLayoutItem.LayoutSize
-P:UIKit.NSCollectionLayoutItem.SupplementaryItems
-P:UIKit.NSCollectionLayoutSection.BoundarySupplementaryItems
-P:UIKit.NSCollectionLayoutSection.ContentInsets
-P:UIKit.NSCollectionLayoutSection.ContentInsetsReference
-P:UIKit.NSCollectionLayoutSection.DecorationItems
-P:UIKit.NSCollectionLayoutSection.InterGroupSpacing
-P:UIKit.NSCollectionLayoutSection.OrthogonalScrollingBehavior
-P:UIKit.NSCollectionLayoutSection.OrthogonalScrollingProperties
-P:UIKit.NSCollectionLayoutSection.SupplementariesFollowContentInsets
-P:UIKit.NSCollectionLayoutSection.SupplementaryContentInsetsReference
-P:UIKit.NSCollectionLayoutSection.VisibleItemsInvalidationHandler
-P:UIKit.NSCollectionLayoutSize.HeightDimension
-P:UIKit.NSCollectionLayoutSize.WidthDimension
-P:UIKit.NSCollectionLayoutSpacing.IsFixedSpacing
-P:UIKit.NSCollectionLayoutSpacing.IsFlexibleSpacing
-P:UIKit.NSCollectionLayoutSpacing.Spacing
-P:UIKit.NSCollectionLayoutSupplementaryItem.ContainerAnchor
-P:UIKit.NSCollectionLayoutSupplementaryItem.ElementKind
-P:UIKit.NSCollectionLayoutSupplementaryItem.ItemAnchor
-P:UIKit.NSCollectionLayoutSupplementaryItem.ZIndex
-P:UIKit.NSDataAsset.Data
-P:UIKit.NSDataAsset.Name
-P:UIKit.NSDataAsset.TypeIdentifier
-P:UIKit.NSDiffableDataSourceSectionSnapshot`1.ExpandedItems
-P:UIKit.NSDiffableDataSourceSectionSnapshot`1.Items
-P:UIKit.NSDiffableDataSourceSectionSnapshot`1.RootItems
-P:UIKit.NSDiffableDataSourceSectionSnapshot`1.VisibleItems
-P:UIKit.NSDiffableDataSourceSectionSnapshot`1.VisualDescription
-P:UIKit.NSDiffableDataSourceSectionTransaction`2.FinalSnapshot
-P:UIKit.NSDiffableDataSourceSectionTransaction`2.InitialSnapshot
-P:UIKit.NSDiffableDataSourceSectionTransaction`2.SectionIdentifier
-P:UIKit.NSDiffableDataSourceSnapshot`2.ItemIdentifiers
-P:UIKit.NSDiffableDataSourceSnapshot`2.NumberOfItems
-P:UIKit.NSDiffableDataSourceSnapshot`2.NumberOfSections
-P:UIKit.NSDiffableDataSourceSnapshot`2.ReconfiguredItemIdentifiers
-P:UIKit.NSDiffableDataSourceSnapshot`2.ReloadedItemIdentifiers
-P:UIKit.NSDiffableDataSourceSnapshot`2.ReloadedSectionIdentifiers
-P:UIKit.NSDiffableDataSourceSnapshot`2.SectionIdentifiers
-P:UIKit.NSDiffableDataSourceTransaction`2.FinalSnapshot
-P:UIKit.NSDiffableDataSourceTransaction`2.InitialSnapshot
-P:UIKit.NSDiffableDataSourceTransaction`2.SectionTransactions
P:UIKit.NSLayoutConstraint.Active
-P:UIKit.NSLayoutConstraint.Constant
-P:UIKit.NSLayoutConstraint.FirstAttribute
-P:UIKit.NSLayoutConstraint.FirstItem
-P:UIKit.NSLayoutConstraint.Identifier
-P:UIKit.NSLayoutConstraint.Multiplier
-P:UIKit.NSLayoutConstraint.Priority
-P:UIKit.NSLayoutConstraint.Relation
-P:UIKit.NSLayoutConstraint.SecondAttribute
-P:UIKit.NSLayoutConstraint.SecondItem
-P:UIKit.NSLayoutConstraint.ShouldBeArchived
-P:UIKit.NSLayoutManager.AllowsNonContiguousLayout
P:UIKit.NSLayoutManager.Delegate
-P:UIKit.NSLayoutManager.ExtraLineFragmentRect
-P:UIKit.NSLayoutManager.ExtraLineFragmentTextContainer
-P:UIKit.NSLayoutManager.ExtraLineFragmentUsedRect
-P:UIKit.NSLayoutManager.FirstUnlaidCharacterIndex
-P:UIKit.NSLayoutManager.FirstUnlaidGlyphIndex
-P:UIKit.NSLayoutManager.HasNonContiguousLayout
-P:UIKit.NSLayoutManager.HyphenationFactor
-P:UIKit.NSLayoutManager.LimitsLayoutForSuspiciousContents
-P:UIKit.NSLayoutManager.NumberOfGlyphs
-P:UIKit.NSLayoutManager.ShowsControlCharacters
-P:UIKit.NSLayoutManager.ShowsInvisibleCharacters
-P:UIKit.NSLayoutManager.TextContainers
-P:UIKit.NSLayoutManager.TextStorage
-P:UIKit.NSLayoutManager.UsesDefaultHyphenation
-P:UIKit.NSLayoutManager.UsesFontLeading
-P:UIKit.NSLayoutManager.WeakDelegate
-P:UIKit.NSMutableParagraphStyle.Alignment
-P:UIKit.NSMutableParagraphStyle.AllowsDefaultTighteningForTruncation
-P:UIKit.NSMutableParagraphStyle.BaseWritingDirection
-P:UIKit.NSMutableParagraphStyle.DefaultTabInterval
-P:UIKit.NSMutableParagraphStyle.FirstLineHeadIndent
-P:UIKit.NSMutableParagraphStyle.HeadIndent
-P:UIKit.NSMutableParagraphStyle.HyphenationFactor
-P:UIKit.NSMutableParagraphStyle.LineBreakMode
-P:UIKit.NSMutableParagraphStyle.LineBreakStrategy
-P:UIKit.NSMutableParagraphStyle.LineHeightMultiple
-P:UIKit.NSMutableParagraphStyle.LineSpacing
-P:UIKit.NSMutableParagraphStyle.MaximumLineHeight
-P:UIKit.NSMutableParagraphStyle.MinimumLineHeight
-P:UIKit.NSMutableParagraphStyle.ParagraphSpacing
-P:UIKit.NSMutableParagraphStyle.ParagraphSpacingBefore
-P:UIKit.NSMutableParagraphStyle.TabStops
-P:UIKit.NSMutableParagraphStyle.TailIndent
-P:UIKit.NSMutableParagraphStyle.TextLists
-P:UIKit.NSMutableParagraphStyle.UsesDefaultHyphenation
-P:UIKit.NSParagraphStyle.Alignment
-P:UIKit.NSParagraphStyle.AllowsDefaultTighteningForTruncation
-P:UIKit.NSParagraphStyle.BaseWritingDirection
-P:UIKit.NSParagraphStyle.Default
-P:UIKit.NSParagraphStyle.DefaultTabInterval
-P:UIKit.NSParagraphStyle.FirstLineHeadIndent
-P:UIKit.NSParagraphStyle.HeadIndent
-P:UIKit.NSParagraphStyle.HyphenationFactor
-P:UIKit.NSParagraphStyle.LineBreakMode
-P:UIKit.NSParagraphStyle.LineBreakStrategy
-P:UIKit.NSParagraphStyle.LineHeightMultiple
-P:UIKit.NSParagraphStyle.LineSpacing
-P:UIKit.NSParagraphStyle.MaximumLineHeight
-P:UIKit.NSParagraphStyle.MinimumLineHeight
-P:UIKit.NSParagraphStyle.ParagraphSpacing
-P:UIKit.NSParagraphStyle.ParagraphSpacingBefore
-P:UIKit.NSParagraphStyle.TabStops
-P:UIKit.NSParagraphStyle.TailIndent
-P:UIKit.NSParagraphStyle.TextLists
-P:UIKit.NSParagraphStyle.UsesDefaultHyphenation
P:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.Ended
P:UIKit.NSPreviewInteractionPreviewUpdateEventArgs.TransitionProgress
-P:UIKit.NSShadow.ShadowBlurRadius
-P:UIKit.NSShadow.ShadowColor
-P:UIKit.NSShadow.ShadowOffset
-P:UIKit.NSTextAttachment.AdjustsImageSizeForAccessibilityContentSizeCategory
-P:UIKit.NSTextAttachment.AllowsTextAttachmentView
-P:UIKit.NSTextAttachment.Bounds
-P:UIKit.NSTextAttachment.Contents
-P:UIKit.NSTextAttachment.FileType
-P:UIKit.NSTextAttachment.FileWrapper
-P:UIKit.NSTextAttachment.Image
-P:UIKit.NSTextAttachment.LineLayoutPadding
-P:UIKit.NSTextAttachment.UsesTextAttachmentView
-P:UIKit.NSTextAttachmentViewProvider.Location
-P:UIKit.NSTextAttachmentViewProvider.TextAttachment
-P:UIKit.NSTextAttachmentViewProvider.TextLayoutManager
-P:UIKit.NSTextAttachmentViewProvider.TracksTextAttachmentViewBounds
-P:UIKit.NSTextAttachmentViewProvider.View
-P:UIKit.NSTextContainer.ExclusionPaths
-P:UIKit.NSTextContainer.HeightTracksTextView
P:UIKit.NSTextContainer.IsSimpleRectangularTextContainer
-P:UIKit.NSTextContainer.LayoutManager
-P:UIKit.NSTextContainer.LayoutOrientation
-P:UIKit.NSTextContainer.LineBreakMode
-P:UIKit.NSTextContainer.LineFragmentPadding
-P:UIKit.NSTextContainer.MaximumNumberOfLines
-P:UIKit.NSTextContainer.Size
-P:UIKit.NSTextContainer.TextLayoutManager
-P:UIKit.NSTextContainer.WidthTracksTextView
-P:UIKit.NSTextContentManager.AutomaticallySynchronizesTextLayoutManagers
-P:UIKit.NSTextContentManager.AutomaticallySynchronizesToBackingStore
P:UIKit.NSTextContentManager.Delegate
-P:UIKit.NSTextContentManager.DocumentRange
-P:UIKit.NSTextContentManager.HasEditingTransaction
-P:UIKit.NSTextContentManager.PrimaryTextLayoutManager
P:UIKit.NSTextContentManager.StorageUnsupportedAttributeAddedNotification
-P:UIKit.NSTextContentManager.TextLayoutManagers
-P:UIKit.NSTextContentManager.WeakDelegate
-P:UIKit.NSTextContentStorage.AttributedString
P:UIKit.NSTextContentStorage.Delegate
-P:UIKit.NSTextContentStorage.TextStorage
-P:UIKit.NSTextContentStorage.WeakDelegate
-P:UIKit.NSTextElement.ChildElements
-P:UIKit.NSTextElement.ElementRange
-P:UIKit.NSTextElement.IsRepresentedElement
-P:UIKit.NSTextElement.ParentElement
-P:UIKit.NSTextElement.TextContentManager
-P:UIKit.NSTextLayoutFragment.BottomMargin
-P:UIKit.NSTextLayoutFragment.LayoutFragmentFrame
-P:UIKit.NSTextLayoutFragment.LayoutQueue
-P:UIKit.NSTextLayoutFragment.LeadingPadding
-P:UIKit.NSTextLayoutFragment.RangeInElement
-P:UIKit.NSTextLayoutFragment.RenderingSurfaceBounds
-P:UIKit.NSTextLayoutFragment.State
-P:UIKit.NSTextLayoutFragment.TextAttachmentViewProviders
-P:UIKit.NSTextLayoutFragment.TextElement
-P:UIKit.NSTextLayoutFragment.TextLayoutManager
-P:UIKit.NSTextLayoutFragment.TextLineFragments
-P:UIKit.NSTextLayoutFragment.TopMargin
-P:UIKit.NSTextLayoutFragment.TrailingPadding
P:UIKit.NSTextLayoutManager.Delegate
-P:UIKit.NSTextLayoutManager.DocumentRange
-P:UIKit.NSTextLayoutManager.LayoutQueue
-P:UIKit.NSTextLayoutManager.LimitsLayoutForSuspiciousContents
-P:UIKit.NSTextLayoutManager.LinkRenderingAttributes
-P:UIKit.NSTextLayoutManager.RenderingAttributesValidator
-P:UIKit.NSTextLayoutManager.TextContainer
-P:UIKit.NSTextLayoutManager.TextContentManager
-P:UIKit.NSTextLayoutManager.TextSelectionNavigation
-P:UIKit.NSTextLayoutManager.TextSelections
-P:UIKit.NSTextLayoutManager.TextViewportLayoutController
-P:UIKit.NSTextLayoutManager.UsageBoundsForTextContainer
-P:UIKit.NSTextLayoutManager.UsesFontLeading
-P:UIKit.NSTextLayoutManager.UsesHyphenation
-P:UIKit.NSTextLayoutManager.WeakDelegate
-P:UIKit.NSTextLineFragment.AttributedString
-P:UIKit.NSTextLineFragment.CharacterRange
-P:UIKit.NSTextLineFragment.GlyphOrigin
-P:UIKit.NSTextLineFragment.TypographicBounds
P:UIKit.NSTextList.CustomMarkerFormat
-P:UIKit.NSTextList.ListOptions
-P:UIKit.NSTextList.MarkerFormat
P:UIKit.NSTextList.Ordered
-P:UIKit.NSTextList.StartingItemNumber
-P:UIKit.NSTextListElement.AttributedString
-P:UIKit.NSTextListElement.ChildElements
-P:UIKit.NSTextListElement.Contents
-P:UIKit.NSTextListElement.ParentElement
-P:UIKit.NSTextListElement.TextList
-P:UIKit.NSTextListElement.WeakMarkerAttributes
-P:UIKit.NSTextParagraph.AttributedString
-P:UIKit.NSTextParagraph.ParagraphContentRange
-P:UIKit.NSTextParagraph.ParagraphSeparatorRange
P:UIKit.NSTextRange.Empty
-P:UIKit.NSTextRange.EndLocation
-P:UIKit.NSTextRange.Location
-P:UIKit.NSTextSelection.Affinity
-P:UIKit.NSTextSelection.AnchorPositionOffset
-P:UIKit.NSTextSelection.Granularity
P:UIKit.NSTextSelection.Logical
-P:UIKit.NSTextSelection.SecondarySelectionLocation
-P:UIKit.NSTextSelection.TextRanges
P:UIKit.NSTextSelection.Transient
-P:UIKit.NSTextSelection.TypingAttributes
-P:UIKit.NSTextSelectionDataSource.DocumentRange
-P:UIKit.NSTextSelectionNavigation.AllowsNonContiguousRanges
-P:UIKit.NSTextSelectionNavigation.RotatesCoordinateSystemForLayoutOrientation
P:UIKit.NSTextSelectionNavigation.TextSelectionDataSource
-P:UIKit.NSTextSelectionNavigation.WeakTextSelectionDataSource
-P:UIKit.NSTextStorage.ChangeInLength
P:UIKit.NSTextStorage.Delegate
-P:UIKit.NSTextStorage.EditedMask
-P:UIKit.NSTextStorage.EditedRange
-P:UIKit.NSTextStorage.FixesAttributesLazily
-P:UIKit.NSTextStorage.LayoutManagers
-P:UIKit.NSTextStorage.TextStorageObserver
-P:UIKit.NSTextStorage.WeakDelegate
P:UIKit.NSTextStorageEventArgs.Delta
P:UIKit.NSTextStorageEventArgs.EditedMask
P:UIKit.NSTextStorageEventArgs.EditedRange
-P:UIKit.NSTextTab.Alignment
P:UIKit.NSTextTab.ColumnTerminatorsAttributeName
-P:UIKit.NSTextTab.Location
-P:UIKit.NSTextTab.Options
P:UIKit.NSTextViewportLayoutController.Delegate
-P:UIKit.NSTextViewportLayoutController.TextLayoutManager
-P:UIKit.NSTextViewportLayoutController.ViewportBounds
-P:UIKit.NSTextViewportLayoutController.ViewportRange
-P:UIKit.NSTextViewportLayoutController.WeakDelegate
-P:UIKit.NSUIViewToolbarItem.UIView
-P:UIKit.UIAcceleration.Time
-P:UIKit.UIAcceleration.X
-P:UIKit.UIAcceleration.Y
-P:UIKit.UIAcceleration.Z
P:UIKit.UIAccelerometer.Delegate
-P:UIKit.UIAccelerometer.SharedAccelerometer
-P:UIKit.UIAccelerometer.UpdateInterval
-P:UIKit.UIAccelerometer.WeakDelegate
P:UIKit.UIAccelerometerEventArgs.Acceleration
P:UIKit.UIAccessibility.ButtonShapesEnabled
P:UIKit.UIAccessibility.DarkerSystemColorsEnabled
@@ -97018,81 +64503,11 @@ P:UIKit.UIAccessibility.PrefersCrossFadeTransitions
P:UIKit.UIAccessibility.ShouldDifferentiateWithoutColor
P:UIKit.UIAccessibilityAnnouncementFinishedEventArgs.Announcement
P:UIKit.UIAccessibilityAnnouncementFinishedEventArgs.WasSuccessful
-P:UIKit.UIAccessibilityContainerDataTable.AccessibilityColumnCount
-P:UIKit.UIAccessibilityContainerDataTable.AccessibilityRowCount
-P:UIKit.UIAccessibilityCustomAction.ActionHandler
-P:UIKit.UIAccessibilityCustomAction.AttributedName
-P:UIKit.UIAccessibilityCustomAction.Category
P:UIKit.UIAccessibilityCustomAction.CategoryEdit
-P:UIKit.UIAccessibilityCustomAction.Image
-P:UIKit.UIAccessibilityCustomAction.Name
-P:UIKit.UIAccessibilityCustomAction.Selector
-P:UIKit.UIAccessibilityCustomAction.Target
-P:UIKit.UIAccessibilityCustomRotor.AttributedName
-P:UIKit.UIAccessibilityCustomRotor.ItemSearchHandler
-P:UIKit.UIAccessibilityCustomRotor.Name
-P:UIKit.UIAccessibilityCustomRotor.SystemRotorType
-P:UIKit.UIAccessibilityCustomRotorItemResult.TargetElement
-P:UIKit.UIAccessibilityCustomRotorItemResult.TargetRange
-P:UIKit.UIAccessibilityCustomRotorSearchPredicate.CurrentItem
-P:UIKit.UIAccessibilityCustomRotorSearchPredicate.SearchDirection
-P:UIKit.UIAccessibilityElement.AccessibilityContainer
-P:UIKit.UIAccessibilityElement.AccessibilityFrame
-P:UIKit.UIAccessibilityElement.AccessibilityFrameInContainerSpace
-P:UIKit.UIAccessibilityElement.AccessibilityHint
-P:UIKit.UIAccessibilityElement.AccessibilityIdentifier
-P:UIKit.UIAccessibilityElement.AccessibilityLabel
-P:UIKit.UIAccessibilityElement.AccessibilityTraits
-P:UIKit.UIAccessibilityElement.AccessibilityValue
-P:UIKit.UIAccessibilityElement.IsAccessibilityElement
-P:UIKit.UIAccessibilityLocationDescriptor.AttributedName
-P:UIKit.UIAccessibilityLocationDescriptor.Name
-P:UIKit.UIAccessibilityLocationDescriptor.Point
-P:UIKit.UIAccessibilityLocationDescriptor.View
-P:UIKit.UIAction.Attributes
-P:UIKit.UIAction.DiscoverabilityTitle
-P:UIKit.UIAction.Identifier
-P:UIKit.UIAction.Image
-P:UIKit.UIAction.PresentationSourceItem
-P:UIKit.UIAction.SelectedImage
-P:UIKit.UIAction.Sender
-P:UIKit.UIAction.State
-P:UIKit.UIAction.Title
-P:UIKit.UIActionSheet.ButtonCount
-P:UIKit.UIActionSheet.CancelButtonIndex
P:UIKit.UIActionSheet.Delegate
-P:UIKit.UIActionSheet.DestructiveButtonIndex
-P:UIKit.UIActionSheet.FirstOtherButtonIndex
-P:UIKit.UIActionSheet.Style
-P:UIKit.UIActionSheet.Title
P:UIKit.UIActionSheet.Visible
-P:UIKit.UIActionSheet.WeakDelegate
-P:UIKit.UIActivity.Category
-P:UIKit.UIActivity.Image
-P:UIKit.UIActivity.Title
-P:UIKit.UIActivity.Type
-P:UIKit.UIActivity.ViewController
-P:UIKit.UIActivityCollaborationModeRestriction.AlertDismissButtonTitle
-P:UIKit.UIActivityCollaborationModeRestriction.AlertMessage
-P:UIKit.UIActivityCollaborationModeRestriction.AlertRecoverySuggestionButtonLaunchUrl
-P:UIKit.UIActivityCollaborationModeRestriction.AlertRecoverySuggestionButtonTitle
-P:UIKit.UIActivityCollaborationModeRestriction.AlertTitle
-P:UIKit.UIActivityCollaborationModeRestriction.DisabledMode
-P:UIKit.UIActivityIndicatorView.ActivityIndicatorViewStyle
-P:UIKit.UIActivityIndicatorView.Color
-P:UIKit.UIActivityIndicatorView.HidesWhenStopped
P:UIKit.UIActivityIndicatorView.IsAnimating
P:UIKit.UIActivityIndicatorView.UIActivityIndicatorViewAppearance.Color
-P:UIKit.UIActivityItemProvider.ActivityType
-P:UIKit.UIActivityItemProvider.Item
-P:UIKit.UIActivityItemProvider.PlaceholderItem
-P:UIKit.UIActivityItemsConfiguration.ApplicationActivitiesProvider
-P:UIKit.UIActivityItemsConfiguration.ItemProvidersForActivityItemsConfiguration
-P:UIKit.UIActivityItemsConfiguration.LocalObject
-P:UIKit.UIActivityItemsConfiguration.MetadataProvider
-P:UIKit.UIActivityItemsConfiguration.PerItemMetadataProvider
-P:UIKit.UIActivityItemsConfiguration.PreviewProvider
-P:UIKit.UIActivityItemsConfiguration.WeakSupportedInteractions
P:UIKit.UIActivityItemsConfigurationMetadataKey.CollaborationModeRestrictions
P:UIKit.UIActivityItemsConfigurationMetadataKey.LinkPresentationMetadata
P:UIKit.UIActivityItemsConfigurationMetadataKey.MessageBody
@@ -97118,74 +64533,23 @@ P:UIKit.UIActivityType.PostToWeibo
P:UIKit.UIActivityType.Print
P:UIKit.UIActivityType.SaveToCameraRoll
P:UIKit.UIActivityType.UIActivityTypeSharePlay
-P:UIKit.UIActivityViewController.AllowsProminentActivity
-P:UIKit.UIActivityViewController.CompletionHandler
-P:UIKit.UIActivityViewController.CompletionWithItemsHandler
-P:UIKit.UIActivityViewController.ExcludedActivitySectionTypes
-P:UIKit.UIActivityViewController.ExcludedActivityTypes
-P:UIKit.UIAlertAction.AccessibilityIdentifier
P:UIKit.UIAlertAction.Enabled
-P:UIKit.UIAlertAction.Style
-P:UIKit.UIAlertAction.Title
-P:UIKit.UIAlertController.Actions
-P:UIKit.UIAlertController.Message
-P:UIKit.UIAlertController.PreferredAction
-P:UIKit.UIAlertController.PreferredStyle
-P:UIKit.UIAlertController.Severity
P:UIKit.UIAlertController.SpringLoaded
-P:UIKit.UIAlertController.TextFields
-P:UIKit.UIAlertController.Title
-P:UIKit.UIAlertView.AlertViewStyle
-P:UIKit.UIAlertView.ButtonCount
-P:UIKit.UIAlertView.CancelButtonIndex
P:UIKit.UIAlertView.Delegate
-P:UIKit.UIAlertView.FirstOtherButtonIndex
-P:UIKit.UIAlertView.Message
P:UIKit.UIAlertView.ShouldEnableFirstOtherButton
-P:UIKit.UIAlertView.Title
P:UIKit.UIAlertView.Visible
-P:UIKit.UIAlertView.WeakDelegate
-P:UIKit.UIApplication.AccessibilityActivationPoint
-P:UIKit.UIApplication.AccessibilityAttributedHint
-P:UIKit.UIApplication.AccessibilityAttributedLabel
-P:UIKit.UIApplication.AccessibilityAttributedUserInputLabels
-P:UIKit.UIApplication.AccessibilityAttributedValue
-P:UIKit.UIApplication.AccessibilityDirectTouchOptions
-P:UIKit.UIApplication.AccessibilityElementsHidden
-P:UIKit.UIApplication.AccessibilityExpandedStatus
-P:UIKit.UIApplication.AccessibilityFrame
-P:UIKit.UIApplication.AccessibilityHeaderElements
-P:UIKit.UIApplication.AccessibilityHint
-P:UIKit.UIApplication.AccessibilityLabel
-P:UIKit.UIApplication.AccessibilityLanguage
-P:UIKit.UIApplication.AccessibilityNavigationStyle
-P:UIKit.UIApplication.AccessibilityPath
-P:UIKit.UIApplication.AccessibilityRespondsToUserInteraction
-P:UIKit.UIApplication.AccessibilityTextualContext
-P:UIKit.UIApplication.AccessibilityTraits
-P:UIKit.UIApplication.AccessibilityUserInputLabels
-P:UIKit.UIApplication.AccessibilityValue
-P:UIKit.UIApplication.AccessibilityViewIsModal
-P:UIKit.UIApplication.AlternateIconName
P:UIKit.UIApplication.AnnouncementDidFinishNotification
P:UIKit.UIApplication.AnnouncementNotification
-P:UIKit.UIApplication.ApplicationIconBadgeNumber
-P:UIKit.UIApplication.ApplicationState
-P:UIKit.UIApplication.ApplicationSupportsShakeToEdit
P:UIKit.UIApplication.AssistiveTechnologyKey
P:UIKit.UIApplication.AssistiveTouchStatusDidChangeNotification
P:UIKit.UIApplication.BackgroundFetchIntervalMinimum
P:UIKit.UIApplication.BackgroundFetchIntervalNever
-P:UIKit.UIApplication.BackgroundRefreshStatus
P:UIKit.UIApplication.BackgroundRefreshStatusDidChangeNotification
P:UIKit.UIApplication.BackgroundTaskInvalid
-P:UIKit.UIApplication.BackgroundTimeRemaining
P:UIKit.UIApplication.BoldTextStatusDidChangeNotification
P:UIKit.UIApplication.ButtonShapesEnabledStatusDidChangeNotification
P:UIKit.UIApplication.ClosedCaptioningStatusDidChangeNotification
-P:UIKit.UIApplication.ConnectedScenes
P:UIKit.UIApplication.ContentSizeCategoryChangedNotification
-P:UIKit.UIApplication.CurrentUserNotificationSettings
P:UIKit.UIApplication.DarkerSystemColorsStatusDidChangeNotification
P:UIKit.UIApplication.Delegate
P:UIKit.UIApplication.DidBecomeActiveNotification
@@ -97195,17 +64559,14 @@ P:UIKit.UIApplication.DidEnterBackgroundNotification
P:UIKit.UIApplication.DidFinishLaunchingNotification
P:UIKit.UIApplication.DidReceiveMemoryWarningNotification
P:UIKit.UIApplication.ElementFocusedNotification
-P:UIKit.UIApplication.EnabledRemoteNotificationTypes
P:UIKit.UIApplication.FocusedElementKey
P:UIKit.UIApplication.GrayscaleStatusDidChangeNotification
P:UIKit.UIApplication.GuidedAccessStatusDidChangeNotification
P:UIKit.UIApplication.HearingDevicePairedEarDidChangeNotification
P:UIKit.UIApplication.IdleTimerDisabled
P:UIKit.UIApplication.InvertColorsStatusDidChangeNotification
-P:UIKit.UIApplication.IsAccessibilityElement
P:UIKit.UIApplication.IsIgnoringInteractionEvents
P:UIKit.UIApplication.IsRegisteredForRemoteNotifications
-P:UIKit.UIApplication.KeyWindow
P:UIKit.UIApplication.LaunchOptionsAnnotationKey
P:UIKit.UIApplication.LaunchOptionsBluetoothCentralsKey
P:UIKit.UIApplication.LaunchOptionsBluetoothPeripheralsKey
@@ -97228,7 +64589,6 @@ P:UIKit.UIApplication.NotificationSwitchControlIdentifier
P:UIKit.UIApplication.NotificationVoiceOverIdentifier
P:UIKit.UIApplication.OnOffSwitchLabelsDidChangeNotification
P:UIKit.UIApplication.OpenNotificationSettingsUrl
-P:UIKit.UIApplication.OpenSessions
P:UIKit.UIApplication.OpenSettingsUrlString
P:UIKit.UIApplication.PageScrolledNotification
P:UIKit.UIApplication.PauseAssistiveTechnologyNotification
@@ -97239,13 +64599,9 @@ P:UIKit.UIApplication.ProtectedDataWillBecomeUnavailable
P:UIKit.UIApplication.ReduceMotionStatusDidChangeNotification
P:UIKit.UIApplication.ReduceTransparencyStatusDidChangeNotification
P:UIKit.UIApplication.ResumeAssistiveTechnologyNotification
-P:UIKit.UIApplication.ScheduledLocalNotifications
P:UIKit.UIApplication.ScreenChangedNotification
P:UIKit.UIApplication.ShakeToUndoDidChangeNotification
-P:UIKit.UIApplication.SharedApplication
-P:UIKit.UIApplication.ShortcutItems
P:UIKit.UIApplication.ShouldDifferentiateWithoutColorDidChangeNotification
-P:UIKit.UIApplication.ShouldGroupAccessibilityChildren
P:UIKit.UIApplication.SignificantTimeChangeNotification
P:UIKit.UIApplication.SpeakScreenStatusDidChangeNotification
P:UIKit.UIApplication.SpeakSelectionStatusDidChangeNotification
@@ -97260,15 +64616,9 @@ P:UIKit.UIApplication.StateRestorationBundleVersionKey
P:UIKit.UIApplication.StateRestorationSystemVersionKey
P:UIKit.UIApplication.StateRestorationTimestampKey
P:UIKit.UIApplication.StateRestorationUserInterfaceIdiomKey
-P:UIKit.UIApplication.StatusBarFrame
P:UIKit.UIApplication.StatusBarFrameUserInfoKey
P:UIKit.UIApplication.StatusBarHidden
-P:UIKit.UIApplication.StatusBarOrientation
-P:UIKit.UIApplication.StatusBarOrientationAnimationDuration
P:UIKit.UIApplication.StatusBarOrientationUserInfoKey
-P:UIKit.UIApplication.StatusBarStyle
-P:UIKit.UIApplication.SupportsAlternateIcons
-P:UIKit.UIApplication.SupportsMultipleScenes
P:UIKit.UIApplication.SwitchControlStatusDidChangeNotification
P:UIKit.UIApplication.TextAttributeContext
P:UIKit.UIApplication.TextAttributeCustom
@@ -97277,18 +64627,14 @@ P:UIKit.UIApplication.UIApplicationOpenDefaultApplicationsSettingsUrlString
P:UIKit.UIApplication.UITrackingRunLoopMode
P:UIKit.UIApplication.UnfocusedElementKey
P:UIKit.UIApplication.UserDidTakeScreenshotNotification
-P:UIKit.UIApplication.UserInterfaceLayoutDirection
P:UIKit.UIApplication.VideoAutoplayStatusDidChangeNotification
P:UIKit.UIApplication.VoiceOverStatusChanged
P:UIKit.UIApplication.VoiceOverStatusDidChangeNotification
-P:UIKit.UIApplication.WeakDelegate
P:UIKit.UIApplication.WillChangeStatusBarFrameNotification
P:UIKit.UIApplication.WillChangeStatusBarOrientationNotification
P:UIKit.UIApplication.WillEnterForegroundNotification
P:UIKit.UIApplication.WillResignActiveNotification
P:UIKit.UIApplication.WillTerminateNotification
-P:UIKit.UIApplication.Windows
-P:UIKit.UIApplicationDelegate.Window
P:UIKit.UIApplicationLaunchEventArgs.LocationLaunch
P:UIKit.UIApplicationLaunchEventArgs.RemoteNotifications
P:UIKit.UIApplicationLaunchEventArgs.SourceApplication
@@ -97297,119 +64643,15 @@ P:UIKit.UIApplicationOpenUrlOptions.Annotation
P:UIKit.UIApplicationOpenUrlOptions.OpenInPlace
P:UIKit.UIApplicationOpenUrlOptions.SourceApplication
P:UIKit.UIApplicationOpenUrlOptions.UniversalLinksOnly
-P:UIKit.UIApplicationShortcutItem.Icon
-P:UIKit.UIApplicationShortcutItem.LocalizedSubtitle
-P:UIKit.UIApplicationShortcutItem.LocalizedTitle
-P:UIKit.UIApplicationShortcutItem.TargetContentIdentifier
-P:UIKit.UIApplicationShortcutItem.Type
-P:UIKit.UIApplicationShortcutItem.UserInfo
-P:UIKit.UIAttachmentBehavior.AnchorPoint
-P:UIKit.UIAttachmentBehavior.AttachedBehaviorType
-P:UIKit.UIAttachmentBehavior.AttachmentRange
-P:UIKit.UIAttachmentBehavior.Damping
-P:UIKit.UIAttachmentBehavior.Frequency
-P:UIKit.UIAttachmentBehavior.FrictionTorque
-P:UIKit.UIAttachmentBehavior.Items
-P:UIKit.UIAttachmentBehavior.Length
-P:UIKit.UIBackgroundConfiguration.BackgroundColor
-P:UIKit.UIBackgroundConfiguration.BackgroundColorTransformer
-P:UIKit.UIBackgroundConfiguration.BackgroundInsets
-P:UIKit.UIBackgroundConfiguration.ClearConfiguration
-P:UIKit.UIBackgroundConfiguration.CornerRadius
-P:UIKit.UIBackgroundConfiguration.CustomView
-P:UIKit.UIBackgroundConfiguration.EdgesAddingLayoutMarginsToBackgroundInsets
-P:UIKit.UIBackgroundConfiguration.Image
-P:UIKit.UIBackgroundConfiguration.ImageContentMode
-P:UIKit.UIBackgroundConfiguration.ListAccompaniedSidebarCellConfiguration
-P:UIKit.UIBackgroundConfiguration.ListCellConfiguration
-P:UIKit.UIBackgroundConfiguration.ListFooterConfiguration
-P:UIKit.UIBackgroundConfiguration.ListGroupedCellConfiguration
-P:UIKit.UIBackgroundConfiguration.ListGroupedHeaderFooterConfiguration
-P:UIKit.UIBackgroundConfiguration.ListHeaderConfiguration
-P:UIKit.UIBackgroundConfiguration.ListPlainCellConfiguration
-P:UIKit.UIBackgroundConfiguration.ListPlainHeaderFooterConfiguration
-P:UIKit.UIBackgroundConfiguration.ListSidebarCellConfiguration
-P:UIKit.UIBackgroundConfiguration.ListSidebarHeaderConfiguration
-P:UIKit.UIBackgroundConfiguration.ShadowProperties
-P:UIKit.UIBackgroundConfiguration.StrokeColor
-P:UIKit.UIBackgroundConfiguration.StrokeColorTransformer
-P:UIKit.UIBackgroundConfiguration.StrokeOutset
-P:UIKit.UIBackgroundConfiguration.StrokeWidth
-P:UIKit.UIBackgroundConfiguration.VisualEffect
P:UIKit.UIBandSelectionInteraction.Enabled
-P:UIKit.UIBandSelectionInteraction.InitialModifierFlags
-P:UIKit.UIBandSelectionInteraction.SelectionRect
-P:UIKit.UIBandSelectionInteraction.ShouldBeginHandler
-P:UIKit.UIBandSelectionInteraction.State
-P:UIKit.UIBandSelectionInteraction.View
-P:UIKit.UIBarAppearance.BackgroundColor
-P:UIKit.UIBarAppearance.BackgroundEffect
-P:UIKit.UIBarAppearance.BackgroundImage
-P:UIKit.UIBarAppearance.BackgroundImageContentMode
-P:UIKit.UIBarAppearance.Idiom
-P:UIKit.UIBarAppearance.ShadowColor
-P:UIKit.UIBarAppearance.ShadowImage
-P:UIKit.UIBarButtonItem.Action
-P:UIKit.UIBarButtonItem.ButtonGroup
-P:UIKit.UIBarButtonItem.ChangesSelectionAsPrimaryAction
-P:UIKit.UIBarButtonItem.CreatingFixedGroup
-P:UIKit.UIBarButtonItem.CustomView
P:UIKit.UIBarButtonItem.Enabled
-P:UIKit.UIBarButtonItem.FlexibleSpaceItem
P:UIKit.UIBarButtonItem.Hidden
-P:UIKit.UIBarButtonItem.Image
-P:UIKit.UIBarButtonItem.ImageInsets
-P:UIKit.UIBarButtonItem.Menu
-P:UIKit.UIBarButtonItem.MenuRepresentation
-P:UIKit.UIBarButtonItem.PossibleTitles
-P:UIKit.UIBarButtonItem.PreferredMenuElementOrder
-P:UIKit.UIBarButtonItem.PrimaryAction
P:UIKit.UIBarButtonItem.Selected
P:UIKit.UIBarButtonItem.SpringLoaded
-P:UIKit.UIBarButtonItem.Style
P:UIKit.UIBarButtonItem.SymbolAnimationEnabled
-P:UIKit.UIBarButtonItem.Tag
-P:UIKit.UIBarButtonItem.Target
-P:UIKit.UIBarButtonItem.TintColor
-P:UIKit.UIBarButtonItem.Title
P:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.TintColor
-P:UIKit.UIBarButtonItem.Width
-P:UIKit.UIBarButtonItemAppearance.Disabled
-P:UIKit.UIBarButtonItemAppearance.Focused
-P:UIKit.UIBarButtonItemAppearance.Highlighted
-P:UIKit.UIBarButtonItemAppearance.Normal
-P:UIKit.UIBarButtonItemGroup.AlwaysAvailable
-P:UIKit.UIBarButtonItemGroup.BarButtonItems
P:UIKit.UIBarButtonItemGroup.DisplayingRepresentativeItem
P:UIKit.UIBarButtonItemGroup.Hidden
-P:UIKit.UIBarButtonItemGroup.MenuRepresentation
-P:UIKit.UIBarButtonItemGroup.RepresentativeItem
-P:UIKit.UIBarButtonItemStateAppearance.BackgroundImage
-P:UIKit.UIBarButtonItemStateAppearance.BackgroundImagePositionAdjustment
-P:UIKit.UIBarButtonItemStateAppearance.TitlePositionAdjustment
-P:UIKit.UIBarButtonItemStateAppearance.TitleTextAttributes
-P:UIKit.UIBarItem.AccessibilityActivationPoint
-P:UIKit.UIBarItem.AccessibilityAttributedHint
-P:UIKit.UIBarItem.AccessibilityAttributedLabel
-P:UIKit.UIBarItem.AccessibilityAttributedUserInputLabels
-P:UIKit.UIBarItem.AccessibilityAttributedValue
-P:UIKit.UIBarItem.AccessibilityDirectTouchOptions
-P:UIKit.UIBarItem.AccessibilityElementsHidden
-P:UIKit.UIBarItem.AccessibilityExpandedStatus
-P:UIKit.UIBarItem.AccessibilityFrame
-P:UIKit.UIBarItem.AccessibilityHeaderElements
-P:UIKit.UIBarItem.AccessibilityHint
-P:UIKit.UIBarItem.AccessibilityIdentifier
-P:UIKit.UIBarItem.AccessibilityLabel
-P:UIKit.UIBarItem.AccessibilityLanguage
-P:UIKit.UIBarItem.AccessibilityNavigationStyle
-P:UIKit.UIBarItem.AccessibilityPath
-P:UIKit.UIBarItem.AccessibilityRespondsToUserInteraction
-P:UIKit.UIBarItem.AccessibilityTextualContext
-P:UIKit.UIBarItem.AccessibilityTraits
-P:UIKit.UIBarItem.AccessibilityUserInputLabels
-P:UIKit.UIBarItem.AccessibilityValue
-P:UIKit.UIBarItem.AccessibilityViewIsModal
P:UIKit.UIBarItem.AnnouncementDidFinishNotification
P:UIKit.UIBarItem.AnnouncementNotification
P:UIKit.UIBarItem.AssistiveTechnologyKey
@@ -97424,14 +64666,7 @@ P:UIKit.UIBarItem.FocusedElementKey
P:UIKit.UIBarItem.GrayscaleStatusDidChangeNotification
P:UIKit.UIBarItem.GuidedAccessStatusDidChangeNotification
P:UIKit.UIBarItem.HearingDevicePairedEarDidChangeNotification
-P:UIKit.UIBarItem.Image
-P:UIKit.UIBarItem.ImageInsets
P:UIKit.UIBarItem.InvertColorsStatusDidChangeNotification
-P:UIKit.UIBarItem.IsAccessibilityElement
-P:UIKit.UIBarItem.LandscapeImagePhone
-P:UIKit.UIBarItem.LandscapeImagePhoneInsets
-P:UIKit.UIBarItem.LargeContentSizeImage
-P:UIKit.UIBarItem.LargeContentSizeImageInsets
P:UIKit.UIBarItem.LayoutChangedNotification
P:UIKit.UIBarItem.MonoAudioStatusDidChangeNotification
P:UIKit.UIBarItem.NotificationSwitchControlIdentifier
@@ -97446,7 +64681,6 @@ P:UIKit.UIBarItem.ResumeAssistiveTechnologyNotification
P:UIKit.UIBarItem.ScreenChangedNotification
P:UIKit.UIBarItem.ShakeToUndoDidChangeNotification
P:UIKit.UIBarItem.ShouldDifferentiateWithoutColorDidChangeNotification
-P:UIKit.UIBarItem.ShouldGroupAccessibilityChildren
P:UIKit.UIBarItem.SpeakScreenStatusDidChangeNotification
P:UIKit.UIBarItem.SpeakSelectionStatusDidChangeNotification
P:UIKit.UIBarItem.SpeechAttributeAnnouncementPriority
@@ -97457,727 +64691,126 @@ P:UIKit.UIBarItem.SpeechAttributePunctuation
P:UIKit.UIBarItem.SpeechAttributeQueueAnnouncement
P:UIKit.UIBarItem.SpeechAttributeSpellOut
P:UIKit.UIBarItem.SwitchControlStatusDidChangeNotification
-P:UIKit.UIBarItem.Tag
P:UIKit.UIBarItem.TextAttributeContext
P:UIKit.UIBarItem.TextAttributeCustom
P:UIKit.UIBarItem.TextAttributeHeadingLevel
-P:UIKit.UIBarItem.Title
P:UIKit.UIBarItem.UnfocusedElementKey
P:UIKit.UIBarItem.VideoAutoplayStatusDidChangeNotification
P:UIKit.UIBarItem.VoiceOverStatusChanged
P:UIKit.UIBarItem.VoiceOverStatusDidChangeNotification
-P:UIKit.UIBarPositioning.BarPosition
-P:UIKit.UIBezierPath.Bounds
-P:UIKit.UIBezierPath.CGPath
-P:UIKit.UIBezierPath.CurrentPoint
P:UIKit.UIBezierPath.Empty
-P:UIKit.UIBezierPath.Flatness
-P:UIKit.UIBezierPath.LineCapStyle
-P:UIKit.UIBezierPath.LineJoinStyle
-P:UIKit.UIBezierPath.LineWidth
-P:UIKit.UIBezierPath.MiterLimit
-P:UIKit.UIBezierPath.UsesEvenOddFillRule
-P:UIKit.UIButton.AdjustsImageSizeForAccessibilityContentSizeCategory
-P:UIKit.UIButton.AdjustsImageWhenDisabled
-P:UIKit.UIButton.AdjustsImageWhenHighlighted
-P:UIKit.UIButton.AutomaticallyUpdatesConfiguration
-P:UIKit.UIButton.BehavioralStyle
-P:UIKit.UIButton.ButtonType
-P:UIKit.UIButton.ChangesSelectionAsPrimaryAction
-P:UIKit.UIButton.Configuration
-P:UIKit.UIButton.ConfigurationUpdateHandler
-P:UIKit.UIButton.ContentEdgeInsets
-P:UIKit.UIButton.CurrentAttributedTitle
-P:UIKit.UIButton.CurrentBackgroundImage
-P:UIKit.UIButton.CurrentImage
-P:UIKit.UIButton.CurrentPreferredSymbolConfiguration
-P:UIKit.UIButton.CurrentTitle
-P:UIKit.UIButton.CurrentTitleColor
-P:UIKit.UIButton.CurrentTitleShadowColor
P:UIKit.UIButton.Held
P:UIKit.UIButton.Hovered
-P:UIKit.UIButton.ImageEdgeInsets
-P:UIKit.UIButton.ImageView
-P:UIKit.UIButton.Menu
P:UIKit.UIButton.PointerInteractionEnabled
-P:UIKit.UIButton.PointerStyleProvider
-P:UIKit.UIButton.PreferredBehavioralStyle
-P:UIKit.UIButton.PreferredMenuElementOrder
-P:UIKit.UIButton.ReverseTitleShadowWhenHighlighted
-P:UIKit.UIButton.Role
-P:UIKit.UIButton.ShowsTouchWhenHighlighted
P:UIKit.UIButton.SpringLoaded
-P:UIKit.UIButton.SubtitleLabel
-P:UIKit.UIButton.TitleEdgeInsets
-P:UIKit.UIButton.TitleLabel
P:UIKit.UIButton.UIButtonAppearance.ContentEdgeInsets
P:UIKit.UIButton.UIButtonAppearance.CurrentBackgroundImage
P:UIKit.UIButton.UIButtonAppearance.CurrentImage
P:UIKit.UIButton.UIButtonAppearance.CurrentTitleColor
P:UIKit.UIButton.UIButtonAppearance.CurrentTitleShadowColor
-P:UIKit.UIButtonConfiguration.ActivityIndicatorColorTransformer
-P:UIKit.UIButtonConfiguration.AttributedSubtitle
-P:UIKit.UIButtonConfiguration.AttributedTitle
-P:UIKit.UIButtonConfiguration.AutomaticallyUpdateForSelection
-P:UIKit.UIButtonConfiguration.Background
-P:UIKit.UIButtonConfiguration.BaseBackgroundColor
-P:UIKit.UIButtonConfiguration.BaseForegroundColor
-P:UIKit.UIButtonConfiguration.BorderedButtonConfiguration
-P:UIKit.UIButtonConfiguration.BorderedProminentButtonConfiguration
-P:UIKit.UIButtonConfiguration.BorderedTintedButtonConfiguration
-P:UIKit.UIButtonConfiguration.BorderlessButtonConfiguration
-P:UIKit.UIButtonConfiguration.ButtonSize
-P:UIKit.UIButtonConfiguration.ContentInsets
-P:UIKit.UIButtonConfiguration.CornerStyle
-P:UIKit.UIButtonConfiguration.FilledButtonConfiguration
-P:UIKit.UIButtonConfiguration.GrayButtonConfiguration
-P:UIKit.UIButtonConfiguration.Image
-P:UIKit.UIButtonConfiguration.ImageColorTransformer
-P:UIKit.UIButtonConfiguration.ImagePadding
-P:UIKit.UIButtonConfiguration.ImagePlacement
-P:UIKit.UIButtonConfiguration.Indicator
-P:UIKit.UIButtonConfiguration.IndicatorColorTransformer
-P:UIKit.UIButtonConfiguration.MacIdiomStyle
-P:UIKit.UIButtonConfiguration.PlainButtonConfiguration
-P:UIKit.UIButtonConfiguration.PreferredSymbolConfigurationForImage
-P:UIKit.UIButtonConfiguration.ShowsActivityIndicator
-P:UIKit.UIButtonConfiguration.Subtitle
-P:UIKit.UIButtonConfiguration.SubtitleLineBreakMode
-P:UIKit.UIButtonConfiguration.SubtitleTextAttributesTransformer
-P:UIKit.UIButtonConfiguration.TintedButtonConfiguration
-P:UIKit.UIButtonConfiguration.Title
-P:UIKit.UIButtonConfiguration.TitleAlignment
-P:UIKit.UIButtonConfiguration.TitleLineBreakMode
-P:UIKit.UIButtonConfiguration.TitlePadding
-P:UIKit.UIButtonConfiguration.TitleTextAttributesTransformer
P:UIKit.UIButtonEventArgs.ButtonIndex
P:UIKit.UICalendarSelectionMultiDate.Delegate
-P:UIKit.UICalendarSelectionMultiDate.SelectedDates
-P:UIKit.UICalendarSelectionMultiDate.WeakDelegate
P:UIKit.UICalendarSelectionSingleDate.Delegate
-P:UIKit.UICalendarSelectionSingleDate.SelectedDate
-P:UIKit.UICalendarSelectionSingleDate.WeakDelegate
P:UIKit.UICalendarSelectionWeekOfYear.Delegate
-P:UIKit.UICalendarSelectionWeekOfYear.SelectedWeekOfYear
-P:UIKit.UICalendarSelectionWeekOfYear.WeakDelegate
-P:UIKit.UICalendarView.AvailableDateRange
-P:UIKit.UICalendarView.Calendar
P:UIKit.UICalendarView.Delegate
-P:UIKit.UICalendarView.FontDesign
-P:UIKit.UICalendarView.Locale
-P:UIKit.UICalendarView.SelectionBehavior
-P:UIKit.UICalendarView.TimeZone
-P:UIKit.UICalendarView.VisibleDateComponents
-P:UIKit.UICalendarView.WantsDateDecorations
-P:UIKit.UICalendarView.WeakDelegate
-P:UIKit.UICellAccessory.DisplayedState
P:UIKit.UICellAccessory.IsHidden
-P:UIKit.UICellAccessory.ReservedLayoutWidth
P:UIKit.UICellAccessory.StandardDimension
-P:UIKit.UICellAccessory.TintColor
-P:UIKit.UICellAccessoryCustomView.CustomView
-P:UIKit.UICellAccessoryCustomView.MaintainsFixedSize
-P:UIKit.UICellAccessoryCustomView.Placement
-P:UIKit.UICellAccessoryCustomView.Position
-P:UIKit.UICellAccessoryDelete.ActionHandler
-P:UIKit.UICellAccessoryDelete.BackgroundColor
-P:UIKit.UICellAccessoryDetail.ActionHandler
-P:UIKit.UICellAccessoryInsert.ActionHandler
-P:UIKit.UICellAccessoryInsert.BackgroundColor
-P:UIKit.UICellAccessoryLabel.AdjustsFontForContentSizeCategory
-P:UIKit.UICellAccessoryLabel.Font
-P:UIKit.UICellAccessoryLabel.Text
-P:UIKit.UICellAccessoryMultiselect.BackgroundColor
-P:UIKit.UICellAccessoryOutlineDisclosure.ActionHandler
-P:UIKit.UICellAccessoryOutlineDisclosure.Style
-P:UIKit.UICellAccessoryPopUpMenu.Menu
-P:UIKit.UICellAccessoryPopUpMenu.SelectedElementDidChangeHandler
-P:UIKit.UICellAccessoryReorder.ShowsVerticalSeparator
-P:UIKit.UICellConfigurationState.CellDragState
-P:UIKit.UICellConfigurationState.CellDropState
P:UIKit.UICellConfigurationState.Editing
P:UIKit.UICellConfigurationState.Expanded
P:UIKit.UICellConfigurationState.Reordering
P:UIKit.UICellConfigurationState.Swiped
-P:UIKit.UICGFloatTraitDefinition.AffectsColorAppearance
-P:UIKit.UICGFloatTraitDefinition.DefaultValue
-P:UIKit.UICGFloatTraitDefinition.Identifier
-P:UIKit.UICGFloatTraitDefinition.Name
-P:UIKit.UICloudSharingController.ActivityItemSource
-P:UIKit.UICloudSharingController.AvailablePermissions
-P:UIKit.UICloudSharingController.Delegate
-P:UIKit.UICloudSharingController.Share
P:UIKit.UICollectionElementKindSectionKey.Footer
P:UIKit.UICollectionElementKindSectionKey.Header
-P:UIKit.UICollectionLayoutListConfiguration.Appearance
-P:UIKit.UICollectionLayoutListConfiguration.BackgroundColor
-P:UIKit.UICollectionLayoutListConfiguration.ContentHuggingElements
-P:UIKit.UICollectionLayoutListConfiguration.FooterMode
-P:UIKit.UICollectionLayoutListConfiguration.HeaderMode
-P:UIKit.UICollectionLayoutListConfiguration.HeaderTopPadding
-P:UIKit.UICollectionLayoutListConfiguration.ItemSeparatorHandler
-P:UIKit.UICollectionLayoutListConfiguration.LeadingSwipeActionsConfigurationProvider
-P:UIKit.UICollectionLayoutListConfiguration.SeparatorConfiguration
-P:UIKit.UICollectionLayoutListConfiguration.ShowsSeparators
-P:UIKit.UICollectionLayoutListConfiguration.TrailingSwipeActionsConfigurationProvider
P:UIKit.UICollectionLayoutSectionOrthogonalScrollingDecelerationRate.Automatic
P:UIKit.UICollectionLayoutSectionOrthogonalScrollingDecelerationRate.Fast
P:UIKit.UICollectionLayoutSectionOrthogonalScrollingDecelerationRate.Normal
-P:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.Bounce
-P:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.DecelerationRate
-P:UIKit.UICollectionReusableView.ReuseIdentifier
-P:UIKit.UICollectionView.AllowsFocus
-P:UIKit.UICollectionView.AllowsFocusDuringEditing
-P:UIKit.UICollectionView.AllowsMultipleSelection
-P:UIKit.UICollectionView.AllowsMultipleSelectionDuringEditing
-P:UIKit.UICollectionView.AllowsSelection
-P:UIKit.UICollectionView.AllowsSelectionDuringEditing
-P:UIKit.UICollectionView.BackgroundView
-P:UIKit.UICollectionView.CollectionViewLayout
-P:UIKit.UICollectionView.ContextMenuInteraction
P:UIKit.UICollectionView.DataSource
P:UIKit.UICollectionView.Delegate
-P:UIKit.UICollectionView.DragDelegate
-P:UIKit.UICollectionView.DragInteractionEnabled
-P:UIKit.UICollectionView.DropDelegate
P:UIKit.UICollectionView.Editing
-P:UIKit.UICollectionView.HasActiveDrag
-P:UIKit.UICollectionView.HasActiveDrop
-P:UIKit.UICollectionView.HasUncommittedUpdates
-P:UIKit.UICollectionView.IndexPathsForVisibleItems
-P:UIKit.UICollectionView.PrefetchDataSource
P:UIKit.UICollectionView.PrefetchingEnabled
-P:UIKit.UICollectionView.RemembersLastFocusedIndexPath
-P:UIKit.UICollectionView.ReorderingCadence
-P:UIKit.UICollectionView.SelectionFollowsFocus
-P:UIKit.UICollectionView.SelfSizingInvalidation
P:UIKit.UICollectionView.Source
P:UIKit.UICollectionView.SpringLoaded
-P:UIKit.UICollectionView.VisibleCells
-P:UIKit.UICollectionView.WeakDataSource
-P:UIKit.UICollectionView.WeakDelegate
-P:UIKit.UICollectionViewCell.AutomaticallyUpdatesBackgroundConfiguration
-P:UIKit.UICollectionViewCell.AutomaticallyUpdatesContentConfiguration
-P:UIKit.UICollectionViewCell.BackgroundConfiguration
-P:UIKit.UICollectionViewCell.BackgroundView
-P:UIKit.UICollectionViewCell.ConfigurationState
-P:UIKit.UICollectionViewCell.ConfigurationUpdateHandler
-P:UIKit.UICollectionViewCell.ContentConfiguration
-P:UIKit.UICollectionViewCell.ContentView
-P:UIKit.UICollectionViewCell.DefaultBackgroundConfiguration
P:UIKit.UICollectionViewCell.Highlighted
P:UIKit.UICollectionViewCell.Selected
-P:UIKit.UICollectionViewCell.SelectedBackgroundView
-P:UIKit.UICollectionViewCellRegistration.CellClass
-P:UIKit.UICollectionViewCellRegistration.CellNib
P:UIKit.UICollectionViewCellRegistration.CellType
-P:UIKit.UICollectionViewCellRegistration.ConfigurationHandler
-P:UIKit.UICollectionViewCompositionalLayout.Configuration
-P:UIKit.UICollectionViewCompositionalLayoutConfiguration.BoundarySupplementaryItems
-P:UIKit.UICollectionViewCompositionalLayoutConfiguration.ContentInsetsReference
-P:UIKit.UICollectionViewCompositionalLayoutConfiguration.InterSectionSpacing
-P:UIKit.UICollectionViewCompositionalLayoutConfiguration.ScrollDirection
-P:UIKit.UICollectionViewController.ClearsSelectionOnViewWillAppear
-P:UIKit.UICollectionViewController.CollectionView
-P:UIKit.UICollectionViewController.InstallsStandardGestureForInteractiveMovement
-P:UIKit.UICollectionViewController.Layout
-P:UIKit.UICollectionViewController.UseLayoutToLayoutNavigationTransitions
-P:UIKit.UICollectionViewDiffableDataSource`2.ReorderingHandlers
-P:UIKit.UICollectionViewDiffableDataSource`2.SectionSnapshotHandlers
-P:UIKit.UICollectionViewDiffableDataSource`2.Snapshot
-P:UIKit.UICollectionViewDiffableDataSource`2.SupplementaryViewProvider
-P:UIKit.UICollectionViewDropPlaceholder.PreviewParametersProvider
-P:UIKit.UICollectionViewDropProposal.Intent
P:UIKit.UICollectionViewFlowLayout.AutomaticSize
-P:UIKit.UICollectionViewFlowLayout.EstimatedItemSize
-P:UIKit.UICollectionViewFlowLayout.FooterReferenceSize
-P:UIKit.UICollectionViewFlowLayout.HeaderReferenceSize
-P:UIKit.UICollectionViewFlowLayout.ItemSize
-P:UIKit.UICollectionViewFlowLayout.MinimumInteritemSpacing
-P:UIKit.UICollectionViewFlowLayout.MinimumLineSpacing
-P:UIKit.UICollectionViewFlowLayout.ScrollDirection
-P:UIKit.UICollectionViewFlowLayout.SectionFootersPinToVisibleBounds
-P:UIKit.UICollectionViewFlowLayout.SectionHeadersPinToVisibleBounds
-P:UIKit.UICollectionViewFlowLayout.SectionInset
-P:UIKit.UICollectionViewFlowLayout.SectionInsetReference
-P:UIKit.UICollectionViewFlowLayoutInvalidationContext.InvalidateFlowLayoutAttributes
-P:UIKit.UICollectionViewFlowLayoutInvalidationContext.InvalidateFlowLayoutDelegateMetrics
-P:UIKit.UICollectionViewFocusUpdateContext.NextFocusedIndexPath
-P:UIKit.UICollectionViewFocusUpdateContext.PreviouslyFocusedIndexPath
P:UIKit.UICollectionViewLayout.AutomaticDimension
-P:UIKit.UICollectionViewLayout.CollectionView
-P:UIKit.UICollectionViewLayout.CollectionViewContentSize
-P:UIKit.UICollectionViewLayout.DevelopmentLayoutDirection
-P:UIKit.UICollectionViewLayout.FlipsHorizontallyInOppositeLayoutDirection
-P:UIKit.UICollectionViewLayout.LayoutAttributesClass
-P:UIKit.UICollectionViewLayoutAttributes.Alpha
-P:UIKit.UICollectionViewLayoutAttributes.Bounds
-P:UIKit.UICollectionViewLayoutAttributes.Center
-P:UIKit.UICollectionViewLayoutAttributes.CollisionBoundingPath
-P:UIKit.UICollectionViewLayoutAttributes.CollisionBoundsType
-P:UIKit.UICollectionViewLayoutAttributes.Frame
P:UIKit.UICollectionViewLayoutAttributes.Hidden
-P:UIKit.UICollectionViewLayoutAttributes.IndexPath
-P:UIKit.UICollectionViewLayoutAttributes.RepresentedElementCategory
-P:UIKit.UICollectionViewLayoutAttributes.RepresentedElementKind
-P:UIKit.UICollectionViewLayoutAttributes.Size
-P:UIKit.UICollectionViewLayoutAttributes.Transform
-P:UIKit.UICollectionViewLayoutAttributes.Transform3D
-P:UIKit.UICollectionViewLayoutAttributes.ZIndex
-P:UIKit.UICollectionViewLayoutInvalidationContext.ContentOffsetAdjustment
-P:UIKit.UICollectionViewLayoutInvalidationContext.ContentSizeAdjustment
-P:UIKit.UICollectionViewLayoutInvalidationContext.InteractiveMovementTarget
-P:UIKit.UICollectionViewLayoutInvalidationContext.InvalidateDataSourceCounts
-P:UIKit.UICollectionViewLayoutInvalidationContext.InvalidatedDecorationIndexPaths
-P:UIKit.UICollectionViewLayoutInvalidationContext.InvalidatedItemIndexPaths
-P:UIKit.UICollectionViewLayoutInvalidationContext.InvalidatedSupplementaryIndexPaths
-P:UIKit.UICollectionViewLayoutInvalidationContext.InvalidateEverything
-P:UIKit.UICollectionViewLayoutInvalidationContext.PreviousIndexPathsForInteractivelyMovingItems
-P:UIKit.UICollectionViewLayoutInvalidationContext.TargetIndexPathsForInteractivelyMovingItems
-P:UIKit.UICollectionViewListCell.Accessories
-P:UIKit.UICollectionViewListCell.DefaultContentConfiguration
-P:UIKit.UICollectionViewListCell.IndentationLevel
-P:UIKit.UICollectionViewListCell.IndentationWidth
-P:UIKit.UICollectionViewListCell.IndentsAccessories
-P:UIKit.UICollectionViewListCell.SeparatorLayoutGuide
-P:UIKit.UICollectionViewPlaceholder.CellUpdateHandler
-P:UIKit.UICollectionViewSupplementaryRegistration.ConfigurationHandler
-P:UIKit.UICollectionViewSupplementaryRegistration.ElementKind
-P:UIKit.UICollectionViewSupplementaryRegistration.SupplementaryClass
-P:UIKit.UICollectionViewSupplementaryRegistration.SupplementaryNib
P:UIKit.UICollectionViewSupplementaryRegistration.SupplementaryType
-P:UIKit.UICollectionViewTransitionLayout.CurrentLayout
-P:UIKit.UICollectionViewTransitionLayout.NextLayout
-P:UIKit.UICollectionViewTransitionLayout.TransitionProgress
P:UIKit.UICollectionViewTransitionResult.Completed
P:UIKit.UICollectionViewTransitionResult.Finished
-P:UIKit.UICollectionViewUpdateItem.IndexPathAfterUpdate
-P:UIKit.UICollectionViewUpdateItem.IndexPathBeforeUpdate
-P:UIKit.UICollectionViewUpdateItem.UpdateAction
P:UIKit.UICollisionBeganBoundaryContactEventArgs.AtPoint
P:UIKit.UICollisionBeganBoundaryContactEventArgs.BoundaryIdentifier
P:UIKit.UICollisionBeganBoundaryContactEventArgs.DynamicItem
P:UIKit.UICollisionBeganContactEventArgs.AtPoint
P:UIKit.UICollisionBeganContactEventArgs.FirstItem
P:UIKit.UICollisionBeganContactEventArgs.SecondItem
-P:UIKit.UICollisionBehavior.BoundaryIdentifiers
P:UIKit.UICollisionBehavior.CollisionDelegate
-P:UIKit.UICollisionBehavior.CollisionMode
-P:UIKit.UICollisionBehavior.Items
-P:UIKit.UICollisionBehavior.TranslatesReferenceBoundsIntoBoundary
-P:UIKit.UICollisionBehavior.WeakCollisionDelegate
P:UIKit.UICollisionEndedBoundaryContactEventArgs.BoundaryIdentifier
P:UIKit.UICollisionEndedBoundaryContactEventArgs.DynamicItem
P:UIKit.UICollisionEndedContactEventArgs.FirstItem
P:UIKit.UICollisionEndedContactEventArgs.SecondItem
-P:UIKit.UIColor.AccessibilityName
-P:UIKit.UIColor.Black
-P:UIKit.UIColor.Blue
-P:UIKit.UIColor.Brown
-P:UIKit.UIColor.CGColor
-P:UIKit.UIColor.CIColor
-P:UIKit.UIColor.Clear
-P:UIKit.UIColor.Cyan
-P:UIKit.UIColor.DarkGray
-P:UIKit.UIColor.DarkText
-P:UIKit.UIColor.Gray
-P:UIKit.UIColor.Green
-P:UIKit.UIColor.GroupTableViewBackground
-P:UIKit.UIColor.Label
-P:UIKit.UIColor.LightGray
-P:UIKit.UIColor.LightText
-P:UIKit.UIColor.Link
-P:UIKit.UIColor.Magenta
-P:UIKit.UIColor.OpaqueSeparator
-P:UIKit.UIColor.Orange
-P:UIKit.UIColor.PlaceholderText
-P:UIKit.UIColor.Prominence
-P:UIKit.UIColor.Purple
-P:UIKit.UIColor.QuaternaryLabel
-P:UIKit.UIColor.QuaternarySystemFill
P:UIKit.UIColor.ReadableTypeIdentifiers
-P:UIKit.UIColor.Red
-P:UIKit.UIColor.ScrollViewTexturedBackground
-P:UIKit.UIColor.SecondaryLabel
-P:UIKit.UIColor.SecondarySystemBackground
-P:UIKit.UIColor.SecondarySystemFill
-P:UIKit.UIColor.SecondarySystemGroupedBackground
-P:UIKit.UIColor.Separator
-P:UIKit.UIColor.SystemBackground
-P:UIKit.UIColor.SystemBlue
-P:UIKit.UIColor.SystemBrown
-P:UIKit.UIColor.SystemCyan
-P:UIKit.UIColor.SystemFill
-P:UIKit.UIColor.SystemGray
-P:UIKit.UIColor.SystemGray2
-P:UIKit.UIColor.SystemGray3
-P:UIKit.UIColor.SystemGray4
-P:UIKit.UIColor.SystemGray5
-P:UIKit.UIColor.SystemGray6
-P:UIKit.UIColor.SystemGreen
-P:UIKit.UIColor.SystemGroupedBackground
-P:UIKit.UIColor.SystemIndigo
-P:UIKit.UIColor.SystemMint
-P:UIKit.UIColor.SystemOrange
-P:UIKit.UIColor.SystemPink
-P:UIKit.UIColor.SystemPurple
-P:UIKit.UIColor.SystemRed
-P:UIKit.UIColor.SystemTeal
-P:UIKit.UIColor.SystemYellow
-P:UIKit.UIColor.TertiaryLabel
-P:UIKit.UIColor.TertiarySystemBackground
-P:UIKit.UIColor.TertiarySystemFill
-P:UIKit.UIColor.TertiarySystemGroupedBackground
-P:UIKit.UIColor.Tint
-P:UIKit.UIColor.UnderPageBackground
-P:UIKit.UIColor.ViewFlipsideBackground
-P:UIKit.UIColor.White
P:UIKit.UIColor.WritableTypeIdentifiers
P:UIKit.UIColor.WritableTypeIdentifiersForItemProvider
-P:UIKit.UIColor.Yellow
P:UIKit.UIColorPickerViewController.Delegate
-P:UIKit.UIColorPickerViewController.SelectedColor
-P:UIKit.UIColorPickerViewController.SupportsAlpha
-P:UIKit.UIColorPickerViewController.WeakDelegate
-P:UIKit.UIColorWell.SelectedColor
-P:UIKit.UIColorWell.SupportsAlpha
-P:UIKit.UIColorWell.Title
-P:UIKit.UICommand.Action
-P:UIKit.UICommand.Alternates
-P:UIKit.UICommand.Attributes
-P:UIKit.UICommand.DiscoverabilityTitle
-P:UIKit.UICommand.Image
-P:UIKit.UICommand.PresentationSourceItem
-P:UIKit.UICommand.PropertyList
-P:UIKit.UICommand.SelectedImage
-P:UIKit.UICommand.Sender
-P:UIKit.UICommand.State
-P:UIKit.UICommand.Title
P:UIKit.UICommand.UICommandTagShare
-P:UIKit.UICommandAlternate.Action
-P:UIKit.UICommandAlternate.ModifierFlags
-P:UIKit.UICommandAlternate.Title
P:UIKit.UIConfigurationColorTransformer.Grayscale
P:UIKit.UIConfigurationColorTransformer.MonochromeTint
P:UIKit.UIConfigurationColorTransformer.PreferredTint
-P:UIKit.UIContentContainer.PreferredContentSize
P:UIKit.UIContentSizeCategoryChangedEventArgs.NewValue
P:UIKit.UIContentSizeCategoryChangedEventArgs.WeakNewValue
P:UIKit.UIContentUnavailableButtonProperties.Enabled
-P:UIKit.UIContentUnavailableButtonProperties.Menu
-P:UIKit.UIContentUnavailableButtonProperties.PrimaryAction
-P:UIKit.UIContentUnavailableButtonProperties.Role
-P:UIKit.UIContentUnavailableConfiguration.Alignment
-P:UIKit.UIContentUnavailableConfiguration.AttributedText
-P:UIKit.UIContentUnavailableConfiguration.AxesPreservingSuperviewLayoutMargins
-P:UIKit.UIContentUnavailableConfiguration.Background
-P:UIKit.UIContentUnavailableConfiguration.Button
-P:UIKit.UIContentUnavailableConfiguration.ButtonProperties
-P:UIKit.UIContentUnavailableConfiguration.ButtonToSecondaryButtonPadding
-P:UIKit.UIContentUnavailableConfiguration.DirectionalLayoutMargins
-P:UIKit.UIContentUnavailableConfiguration.Image
-P:UIKit.UIContentUnavailableConfiguration.ImageProperties
-P:UIKit.UIContentUnavailableConfiguration.ImageToTextPadding
-P:UIKit.UIContentUnavailableConfiguration.SecondaryAttributedText
-P:UIKit.UIContentUnavailableConfiguration.SecondaryButton
-P:UIKit.UIContentUnavailableConfiguration.SecondaryButtonProperties
-P:UIKit.UIContentUnavailableConfiguration.SecondaryText
-P:UIKit.UIContentUnavailableConfiguration.SecondaryTextProperties
-P:UIKit.UIContentUnavailableConfiguration.Text
-P:UIKit.UIContentUnavailableConfiguration.TextProperties
-P:UIKit.UIContentUnavailableConfiguration.TextToButtonPadding
-P:UIKit.UIContentUnavailableConfiguration.TextToSecondaryTextPadding
-P:UIKit.UIContentUnavailableConfigurationState.SearchText
-P:UIKit.UIContentUnavailableConfigurationState.TraitCollection
-P:UIKit.UIContentUnavailableImageProperties.AccessibilityIgnoresInvertColors
-P:UIKit.UIContentUnavailableImageProperties.CornerRadius
-P:UIKit.UIContentUnavailableImageProperties.MaximumSize
-P:UIKit.UIContentUnavailableImageProperties.PreferredSymbolConfiguration
-P:UIKit.UIContentUnavailableImageProperties.TintColor
-P:UIKit.UIContentUnavailableTextProperties.AdjustsFontSizeToFitWidth
-P:UIKit.UIContentUnavailableTextProperties.AllowsDefaultTighteningForTruncation
-P:UIKit.UIContentUnavailableTextProperties.Color
-P:UIKit.UIContentUnavailableTextProperties.Font
-P:UIKit.UIContentUnavailableTextProperties.LineBreakMode
-P:UIKit.UIContentUnavailableTextProperties.MinimumScaleFactor
-P:UIKit.UIContentUnavailableTextProperties.NumberOfLines
-P:UIKit.UIContentUnavailableView.Configuration
P:UIKit.UIContentUnavailableView.ScrollEnabled
-P:UIKit.UIContextMenuConfiguration.BadgeCount
-P:UIKit.UIContextMenuConfiguration.Identifier
-P:UIKit.UIContextMenuConfiguration.PreferredMenuElementOrder
-P:UIKit.UIContextMenuConfiguration.SecondaryItemIdentifiers
P:UIKit.UIContextMenuInteraction.Delegate
-P:UIKit.UIContextMenuInteraction.MenuAppearance
-P:UIKit.UIContextMenuInteraction.View
-P:UIKit.UIContextMenuInteraction.WeakDelegate
-P:UIKit.UIContextualAction.BackgroundColor
-P:UIKit.UIContextualAction.Handler
-P:UIKit.UIContextualAction.Image
-P:UIKit.UIContextualAction.Style
-P:UIKit.UIContextualAction.Title
-P:UIKit.UIControl.AllControlEvents
-P:UIKit.UIControl.AllTargets
-P:UIKit.UIControl.ContextMenuInteraction
P:UIKit.UIControl.ContextMenuInteractionEnabled
-P:UIKit.UIControl.EffectiveContentHorizontalAlignment
P:UIKit.UIControl.Enabled
P:UIKit.UIControl.Highlighted
-P:UIKit.UIControl.HorizontalAlignment
P:UIKit.UIControl.Selected
-P:UIKit.UIControl.ShowsMenuAsPrimaryAction
-P:UIKit.UIControl.State
P:UIKit.UIControl.SymbolAnimationEnabled
-P:UIKit.UIControl.ToolTip
-P:UIKit.UIControl.ToolTipInteraction
P:UIKit.UIControl.TouchInside
P:UIKit.UIControl.Tracking
-P:UIKit.UIControl.VerticalAlignment
-P:UIKit.UICoordinateSpace.Bounds
-P:UIKit.UICubicTimingParameters.AnimationCurve
-P:UIKit.UICubicTimingParameters.ControlPoint1
-P:UIKit.UICubicTimingParameters.ControlPoint2
-P:UIKit.UICubicTimingParameters.CubicTimingParameters
-P:UIKit.UICubicTimingParameters.SpringTimingParameters
-P:UIKit.UICubicTimingParameters.TimingCurveType
-P:UIKit.UIDatePicker.Calendar
-P:UIKit.UIDatePicker.CountDownDuration
-P:UIKit.UIDatePicker.Date
-P:UIKit.UIDatePicker.DatePickerStyle
-P:UIKit.UIDatePicker.Locale
-P:UIKit.UIDatePicker.MaximumDate
-P:UIKit.UIDatePicker.MinimumDate
-P:UIKit.UIDatePicker.MinuteInterval
-P:UIKit.UIDatePicker.Mode
-P:UIKit.UIDatePicker.PreferredDatePickerStyle
-P:UIKit.UIDatePicker.RoundsToMinuteInterval
-P:UIKit.UIDatePicker.TimeZone
-P:UIKit.UIDevice.BatteryLevel
P:UIKit.UIDevice.BatteryLevelDidChangeNotification
P:UIKit.UIDevice.BatteryMonitoringEnabled
-P:UIKit.UIDevice.BatteryState
P:UIKit.UIDevice.BatteryStateDidChangeNotification
-P:UIKit.UIDevice.CurrentDevice
P:UIKit.UIDevice.GeneratesDeviceOrientationNotifications
-P:UIKit.UIDevice.IdentifierForVendor
P:UIKit.UIDevice.IsMultitaskingSupported
-P:UIKit.UIDevice.LocalizedModel
-P:UIKit.UIDevice.Model
-P:UIKit.UIDevice.Name
-P:UIKit.UIDevice.Orientation
P:UIKit.UIDevice.OrientationDidChangeNotification
P:UIKit.UIDevice.ProximityMonitoringEnabled
-P:UIKit.UIDevice.ProximityState
P:UIKit.UIDevice.ProximityStateDidChangeNotification
-P:UIKit.UIDevice.SystemName
-P:UIKit.UIDevice.SystemVersion
-P:UIKit.UIDevice.UserInterfaceIdiom
-P:UIKit.UIDictationPhrase.AlternativeInterpretations
-P:UIKit.UIDictationPhrase.Text
-P:UIKit.UIDocument.DocumentState
-P:UIKit.UIDocument.FileModificationDate
-P:UIKit.UIDocument.FileType
-P:UIKit.UIDocument.FileUrl
-P:UIKit.UIDocument.HasUnsavedChanges
-P:UIKit.UIDocument.LocalizedName
P:UIKit.UIDocument.PresentedItemObservedUbiquityAttributes
P:UIKit.UIDocument.PresentedItemOperationQueue
P:UIKit.UIDocument.PresentedItemUrl
-P:UIKit.UIDocument.Progress
-P:UIKit.UIDocument.SavingFileType
P:UIKit.UIDocument.StateChangedNotification
-P:UIKit.UIDocument.UndoManager
-P:UIKit.UIDocument.UserActivity
P:UIKit.UIDocument.UserActivityDocumentUrlKey
-P:UIKit.UIDocumentBrowserAction.Availability
-P:UIKit.UIDocumentBrowserAction.Identifier
-P:UIKit.UIDocumentBrowserAction.Image
-P:UIKit.UIDocumentBrowserAction.LocalizedTitle
-P:UIKit.UIDocumentBrowserAction.SupportedContentTypes
-P:UIKit.UIDocumentBrowserAction.SupportsMultipleItems
-P:UIKit.UIDocumentBrowserTransitionController.LoadingProgress
-P:UIKit.UIDocumentBrowserTransitionController.TargetView
-P:UIKit.UIDocumentBrowserViewController.ActiveDocumentCreationIntent
-P:UIKit.UIDocumentBrowserViewController.AdditionalLeadingNavigationBarButtonItems
-P:UIKit.UIDocumentBrowserViewController.AdditionalTrailingNavigationBarButtonItems
-P:UIKit.UIDocumentBrowserViewController.AllowedContentTypes
-P:UIKit.UIDocumentBrowserViewController.AllowsDocumentCreation
-P:UIKit.UIDocumentBrowserViewController.AllowsPickingMultipleItems
-P:UIKit.UIDocumentBrowserViewController.BrowserUserInterfaceStyle
-P:UIKit.UIDocumentBrowserViewController.ContentTypesForRecentDocuments
-P:UIKit.UIDocumentBrowserViewController.CustomActions
-P:UIKit.UIDocumentBrowserViewController.DefaultDocumentAspectRatio
-P:UIKit.UIDocumentBrowserViewController.Delegate
-P:UIKit.UIDocumentBrowserViewController.LocalizedCreateDocumentActionTitle
-P:UIKit.UIDocumentBrowserViewController.RecentDocumentsContentTypes
-P:UIKit.UIDocumentBrowserViewController.ShouldShowFileExtensions
-P:UIKit.UIDocumentInteractionController.Annotation
P:UIKit.UIDocumentInteractionController.CanPerformAction
P:UIKit.UIDocumentInteractionController.Delegate
-P:UIKit.UIDocumentInteractionController.GestureRecognizers
-P:UIKit.UIDocumentInteractionController.Icons
-P:UIKit.UIDocumentInteractionController.Name
P:UIKit.UIDocumentInteractionController.PerformAction
P:UIKit.UIDocumentInteractionController.RectangleForPreview
-P:UIKit.UIDocumentInteractionController.Url
-P:UIKit.UIDocumentInteractionController.Uti
P:UIKit.UIDocumentInteractionController.ViewControllerForPreview
P:UIKit.UIDocumentInteractionController.ViewForPreview
-P:UIKit.UIDocumentInteractionController.WeakDelegate
P:UIKit.UIDocumentMenuDocumentPickedEventArgs.DocumentPicker
P:UIKit.UIDocumentMenuViewController.Delegate
-P:UIKit.UIDocumentMenuViewController.WeakDelegate
P:UIKit.UIDocumentPickedAtUrlsEventArgs.Urls
P:UIKit.UIDocumentPickedEventArgs.Url
-P:UIKit.UIDocumentPickerExtensionViewController.DocumentPickerMode
-P:UIKit.UIDocumentPickerExtensionViewController.DocumentStorageUrl
-P:UIKit.UIDocumentPickerExtensionViewController.OriginalUrl
-P:UIKit.UIDocumentPickerExtensionViewController.ProviderIdentifier
-P:UIKit.UIDocumentPickerExtensionViewController.ValidTypes
-P:UIKit.UIDocumentPickerViewController.AllowsMultipleSelection
P:UIKit.UIDocumentPickerViewController.Delegate
-P:UIKit.UIDocumentPickerViewController.DirectoryUrl
-P:UIKit.UIDocumentPickerViewController.DocumentPickerMode
-P:UIKit.UIDocumentPickerViewController.ShouldShowFileExtensions
-P:UIKit.UIDocumentPickerViewController.WeakDelegate
-P:UIKit.UIDocumentProperties.ActivityViewControllerProvider
-P:UIKit.UIDocumentProperties.DragItemsProvider
-P:UIKit.UIDocumentProperties.Metadata
-P:UIKit.UIDocumentProperties.WantsIconRepresentation
P:UIKit.UIDocumentSendingToApplicationEventArgs.Application
-P:UIKit.UIDocumentViewControllerLaunchOptions.Background
-P:UIKit.UIDocumentViewControllerLaunchOptions.BackgroundAccessoryView
-P:UIKit.UIDocumentViewControllerLaunchOptions.BrowserViewController
-P:UIKit.UIDocumentViewControllerLaunchOptions.DocumentTargetView
-P:UIKit.UIDocumentViewControllerLaunchOptions.ForegroundAccessoryView
-P:UIKit.UIDocumentViewControllerLaunchOptions.PrimaryAction
-P:UIKit.UIDocumentViewControllerLaunchOptions.SecondaryAction
-P:UIKit.UIDocumentViewControllerLaunchOptions.Title
-P:UIKit.UIDocViewController.Document
-P:UIKit.UIDocViewController.LaunchOptions
-P:UIKit.UIDocViewController.UndoRedoItemGroup
-P:UIKit.UIDragInteraction.AllowsSimultaneousRecognitionDuringLift
-P:UIKit.UIDragInteraction.Delegate
P:UIKit.UIDragInteraction.Enabled
P:UIKit.UIDragInteraction.EnabledByDefault
-P:UIKit.UIDragInteraction.View
-P:UIKit.UIDragItem.ItemProvider
-P:UIKit.UIDragItem.LocalObject
-P:UIKit.UIDragItem.PreviewProvider
-P:UIKit.UIDragPreview.Parameters
-P:UIKit.UIDragPreview.View
-P:UIKit.UIDropInteraction.AllowsSimultaneousDropSessions
-P:UIKit.UIDropInteraction.Delegate
-P:UIKit.UIDropInteraction.View
-P:UIKit.UIDropProposal.Operation
P:UIKit.UIDropProposal.Precise
-P:UIKit.UIDropProposal.PrefersFullSizePreview
-P:UIKit.UIDynamicAnimator.Behaviors
P:UIKit.UIDynamicAnimator.Delegate
-P:UIKit.UIDynamicAnimator.ElapsedTime
-P:UIKit.UIDynamicAnimator.ReferenceView
P:UIKit.UIDynamicAnimator.Running
-P:UIKit.UIDynamicAnimator.WeakDelegate
-P:UIKit.UIDynamicBehavior.Action
-P:UIKit.UIDynamicBehavior.ChildBehaviors
-P:UIKit.UIDynamicBehavior.DynamicAnimator
-P:UIKit.UIDynamicItem.Bounds
-P:UIKit.UIDynamicItem.Center
-P:UIKit.UIDynamicItem.CollisionBoundingPath
-P:UIKit.UIDynamicItem.CollisionBoundsType
-P:UIKit.UIDynamicItem.Transform
-P:UIKit.UIDynamicItemBehavior.AllowsRotation
P:UIKit.UIDynamicItemBehavior.Anchored
-P:UIKit.UIDynamicItemBehavior.AngularResistance
-P:UIKit.UIDynamicItemBehavior.Charge
-P:UIKit.UIDynamicItemBehavior.Density
-P:UIKit.UIDynamicItemBehavior.Elasticity
-P:UIKit.UIDynamicItemBehavior.Friction
-P:UIKit.UIDynamicItemBehavior.Items
-P:UIKit.UIDynamicItemBehavior.Resistance
-P:UIKit.UIDynamicItemGroup.Bounds
-P:UIKit.UIDynamicItemGroup.Center
-P:UIKit.UIDynamicItemGroup.CollisionBoundingPath
-P:UIKit.UIDynamicItemGroup.CollisionBoundsType
-P:UIKit.UIDynamicItemGroup.Items
-P:UIKit.UIDynamicItemGroup.Transform
-P:UIKit.UIEditMenuConfiguration.Identifier
-P:UIKit.UIEditMenuConfiguration.PreferredArrowDirection
-P:UIKit.UIEditMenuConfiguration.SourcePoint
P:UIKit.UIEditMenuInteraction.Delegate
-P:UIKit.UIEditMenuInteraction.View
-P:UIKit.UIEditMenuInteraction.WeakDelegate
-P:UIKit.UIEvent.AllTouches
-P:UIKit.UIEvent.ButtonMask
-P:UIKit.UIEvent.ModifierFlags
-P:UIKit.UIEvent.Subtype
-P:UIKit.UIEvent.Timestamp
-P:UIKit.UIEvent.Type
-P:UIKit.UIEventAttribution.DestinationUrl
-P:UIKit.UIEventAttribution.Purchaser
-P:UIKit.UIEventAttribution.ReportEndpoint
-P:UIKit.UIEventAttribution.SourceDescription
-P:UIKit.UIEventAttribution.SourceIdentifier
P:UIKit.UIExtensionPointIdentifier.Keyboard
-P:UIKit.UIFeedbackGenerator.View
-P:UIKit.UIFieldBehavior.AnimationSpeed
-P:UIKit.UIFieldBehavior.Direction
-P:UIKit.UIFieldBehavior.Falloff
-P:UIKit.UIFieldBehavior.Items
-P:UIKit.UIFieldBehavior.MinimumRadius
-P:UIKit.UIFieldBehavior.Position
-P:UIKit.UIFieldBehavior.Region
-P:UIKit.UIFieldBehavior.Smoothness
-P:UIKit.UIFieldBehavior.Strength
-P:UIKit.UIFindInteraction.ActiveFindSession
P:UIKit.UIFindInteraction.Delegate
P:UIKit.UIFindInteraction.FindNavigatorVisible
-P:UIKit.UIFindInteraction.OptionsMenuProvider
-P:UIKit.UIFindInteraction.ReplacementText
-P:UIKit.UIFindInteraction.SearchText
-P:UIKit.UIFindInteraction.View
-P:UIKit.UIFindInteraction.WeakDelegate
-P:UIKit.UIFindSession.AllowsReplacementForCurrentlyHighlightedResult
-P:UIKit.UIFindSession.HighlightedResultIndex
-P:UIKit.UIFindSession.ResultCount
-P:UIKit.UIFindSession.SearchResultDisplayStyle
-P:UIKit.UIFindSession.SupportsReplacement
P:UIKit.UIFloatRange.IsInfinite
-P:UIKit.UIFocusDebugger.Help
-P:UIKit.UIFocusDebugger.Status
P:UIKit.UIFocusGuide.Enabled
-P:UIKit.UIFocusGuide.PreferredFocusedView
-P:UIKit.UIFocusGuide.PreferredFocusEnvironments
-P:UIKit.UIFocusHaloEffect.ContainerView
-P:UIKit.UIFocusHaloEffect.Position
-P:UIKit.UIFocusHaloEffect.ReferenceView
-P:UIKit.UIFocusMovementHint.InteractionTransform
-P:UIKit.UIFocusMovementHint.MovementDirection
-P:UIKit.UIFocusMovementHint.PerspectiveTransform
-P:UIKit.UIFocusMovementHint.Rotation
-P:UIKit.UIFocusMovementHint.Translation
-P:UIKit.UIFocusSystem.FocusedItem
P:UIKit.UIFocusUpdateContext.AnimationCoordinatorKey
P:UIKit.UIFocusUpdateContext.DidUpdateNotification
-P:UIKit.UIFocusUpdateContext.FocusHeading
P:UIKit.UIFocusUpdateContext.Key
P:UIKit.UIFocusUpdateContext.MovementDidFailNotification
-P:UIKit.UIFocusUpdateContext.NextFocusedItem
-P:UIKit.UIFocusUpdateContext.NextFocusedView
-P:UIKit.UIFocusUpdateContext.PreviouslyFocusedItem
-P:UIKit.UIFocusUpdateContext.PreviouslyFocusedView
-P:UIKit.UIFont.Ascender
-P:UIKit.UIFont.ButtonFontSize
-P:UIKit.UIFont.CapHeight
-P:UIKit.UIFont.Descender
-P:UIKit.UIFont.FamilyName
-P:UIKit.UIFont.FamilyNames
-P:UIKit.UIFont.FontDescriptor
-P:UIKit.UIFont.LabelFontSize
-P:UIKit.UIFont.Leading
-P:UIKit.UIFont.LineHeight
-P:UIKit.UIFont.Name
-P:UIKit.UIFont.PointSize
P:UIKit.UIFont.PreferredBody
P:UIKit.UIFont.PreferredCallout
P:UIKit.UIFont.PreferredCaption1
@@ -98188,9 +64821,6 @@ P:UIKit.UIFont.PreferredSubheadline
P:UIKit.UIFont.PreferredTitle1
P:UIKit.UIFont.PreferredTitle2
P:UIKit.UIFont.PreferredTitle3
-P:UIKit.UIFont.SmallSystemFontSize
-P:UIKit.UIFont.SystemFontSize
-P:UIKit.UIFont.XHeight
P:UIKit.UIFontAttributes.CascadeList
P:UIKit.UIFontAttributes.CharacterSet
P:UIKit.UIFontAttributes.Face
@@ -98211,10 +64841,7 @@ P:UIKit.UIFontDescriptor.Family
P:UIKit.UIFontDescriptor.FeatureSettings
P:UIKit.UIFontDescriptor.FixedAdvance
P:UIKit.UIFontDescriptor.FontAttributes
-P:UIKit.UIFontDescriptor.Matrix
P:UIKit.UIFontDescriptor.Name
-P:UIKit.UIFontDescriptor.PointSize
-P:UIKit.UIFontDescriptor.PostscriptName
P:UIKit.UIFontDescriptor.PreferredBody
P:UIKit.UIFontDescriptor.PreferredCallout
P:UIKit.UIFontDescriptor.PreferredCaption1
@@ -98226,23 +64853,13 @@ P:UIKit.UIFontDescriptor.PreferredTitle1
P:UIKit.UIFontDescriptor.PreferredTitle2
P:UIKit.UIFontDescriptor.PreferredTitle3
P:UIKit.UIFontDescriptor.Size
-P:UIKit.UIFontDescriptor.SymbolicTraits
P:UIKit.UIFontDescriptor.TextStyle
P:UIKit.UIFontDescriptor.Traits
P:UIKit.UIFontDescriptor.VisibleName
P:UIKit.UIFontDescriptor.WeakFeatureSettings
-P:UIKit.UIFontDescriptor.WeakFontAttributes
P:UIKit.UIFontFeature.FontFeature
P:UIKit.UIFontFeature.FontFeatureValue
-P:UIKit.UIFontMetrics.DefaultMetrics
-P:UIKit.UIFontPickerViewController.Configuration
P:UIKit.UIFontPickerViewController.Delegate
-P:UIKit.UIFontPickerViewController.SelectedFontDescriptor
-P:UIKit.UIFontPickerViewController.WeakDelegate
-P:UIKit.UIFontPickerViewControllerConfiguration.DisplayUsingSystemFont
-P:UIKit.UIFontPickerViewControllerConfiguration.FilteredLanguagesPredicate
-P:UIKit.UIFontPickerViewControllerConfiguration.FilteredTraits
-P:UIKit.UIFontPickerViewControllerConfiguration.IncludeFaces
P:UIKit.UIFontTraits.Slant
P:UIKit.UIFontTraits.SymbolicTrait
P:UIKit.UIFontTraits.Weight
@@ -98256,18 +64873,8 @@ P:UIKit.UIFontWeightConstants.Regular
P:UIKit.UIFontWeightConstants.Semibold
P:UIKit.UIFontWeightConstants.Thin
P:UIKit.UIFontWeightConstants.UltraLight
-P:UIKit.UIGestureRecognizer.AllowedPressTypes
-P:UIKit.UIGestureRecognizer.AllowedTouchTypes
-P:UIKit.UIGestureRecognizer.ButtonMask
-P:UIKit.UIGestureRecognizer.CancelsTouchesInView
-P:UIKit.UIGestureRecognizer.DelaysTouchesBegan
-P:UIKit.UIGestureRecognizer.DelaysTouchesEnded
P:UIKit.UIGestureRecognizer.Delegate
P:UIKit.UIGestureRecognizer.Enabled
-P:UIKit.UIGestureRecognizer.ModifierFlags
-P:UIKit.UIGestureRecognizer.Name
-P:UIKit.UIGestureRecognizer.NumberOfTouches
-P:UIKit.UIGestureRecognizer.RequiresExclusiveTouchType
P:UIKit.UIGestureRecognizer.ShouldBegin
P:UIKit.UIGestureRecognizer.ShouldBeRequiredToFailBy
P:UIKit.UIGestureRecognizer.ShouldReceiveEvent
@@ -98275,117 +64882,38 @@ P:UIKit.UIGestureRecognizer.ShouldReceivePress
P:UIKit.UIGestureRecognizer.ShouldReceiveTouch
P:UIKit.UIGestureRecognizer.ShouldRecognizeSimultaneously
P:UIKit.UIGestureRecognizer.ShouldRequireFailureOf
-P:UIKit.UIGestureRecognizer.State
-P:UIKit.UIGestureRecognizer.View
-P:UIKit.UIGestureRecognizer.WeakDelegate
P:UIKit.UIGraphics.PDFContextBounds
-P:UIKit.UIGraphicsImageRendererContext.CurrentImage
-P:UIKit.UIGraphicsImageRendererFormat.DefaultFormat
-P:UIKit.UIGraphicsImageRendererFormat.Opaque
-P:UIKit.UIGraphicsImageRendererFormat.PreferredRange
-P:UIKit.UIGraphicsImageRendererFormat.PrefersExtendedRange
-P:UIKit.UIGraphicsImageRendererFormat.Scale
-P:UIKit.UIGraphicsImageRendererFormat.SupportsHighDynamicRange
-P:UIKit.UIGraphicsPdfRendererContext.PdfContextBounds
-P:UIKit.UIGraphicsPdfRendererFormat.DefaultFormat
-P:UIKit.UIGraphicsPdfRendererFormat.DocumentInfo
-P:UIKit.UIGraphicsRenderer.AllowsImageOutput
-P:UIKit.UIGraphicsRenderer.Format
-P:UIKit.UIGraphicsRenderer.RendererContextClass
-P:UIKit.UIGraphicsRendererContext.CGContext
-P:UIKit.UIGraphicsRendererContext.Format
-P:UIKit.UIGraphicsRendererFormat.Bounds
-P:UIKit.UIGraphicsRendererFormat.DefaultFormat
-P:UIKit.UIGraphicsRendererFormat.PreferredFormat
-P:UIKit.UIGravityBehavior.Angle
-P:UIKit.UIGravityBehavior.GravityDirection
-P:UIKit.UIGravityBehavior.Items
-P:UIKit.UIGravityBehavior.Magnitude
-P:UIKit.UIHoverGestureRecognizer.AltitudeAngle
-P:UIKit.UIHoverGestureRecognizer.RollAngle
-P:UIKit.UIHoverGestureRecognizer.ZOffset
-P:UIKit.UIHoverStyle.Effect
P:UIKit.UIHoverStyle.Enabled
-P:UIKit.UIHoverStyle.Shape
-P:UIKit.UIImage.AccessibilityActivationPoint
-P:UIKit.UIImage.AccessibilityAttributedHint
-P:UIKit.UIImage.AccessibilityAttributedLabel
-P:UIKit.UIImage.AccessibilityAttributedUserInputLabels
-P:UIKit.UIImage.AccessibilityAttributedValue
-P:UIKit.UIImage.AccessibilityDirectTouchOptions
-P:UIKit.UIImage.AccessibilityElementsHidden
-P:UIKit.UIImage.AccessibilityExpandedStatus
-P:UIKit.UIImage.AccessibilityFrame
-P:UIKit.UIImage.AccessibilityHeaderElements
-P:UIKit.UIImage.AccessibilityHint
-P:UIKit.UIImage.AccessibilityIdentifier
-P:UIKit.UIImage.AccessibilityLabel
-P:UIKit.UIImage.AccessibilityLanguage
-P:UIKit.UIImage.AccessibilityNavigationStyle
-P:UIKit.UIImage.AccessibilityPath
-P:UIKit.UIImage.AccessibilityRespondsToUserInteraction
-P:UIKit.UIImage.AccessibilityTextualContext
-P:UIKit.UIImage.AccessibilityTraits
-P:UIKit.UIImage.AccessibilityUserInputLabels
-P:UIKit.UIImage.AccessibilityValue
-P:UIKit.UIImage.AccessibilityViewIsModal
-P:UIKit.UIImage.ActionsImage
-P:UIKit.UIImage.AddImage
-P:UIKit.UIImage.AlignmentRectInsets
P:UIKit.UIImage.AnnouncementDidFinishNotification
P:UIKit.UIImage.AnnouncementNotification
P:UIKit.UIImage.AssistiveTechnologyKey
P:UIKit.UIImage.AssistiveTouchStatusDidChangeNotification
-P:UIKit.UIImage.BaselineOffsetFromBottom
P:UIKit.UIImage.BoldTextStatusDidChangeNotification
P:UIKit.UIImage.ButtonShapesEnabledStatusDidChangeNotification
-P:UIKit.UIImage.CapInsets
-P:UIKit.UIImage.CGImage
-P:UIKit.UIImage.CheckmarkImage
-P:UIKit.UIImage.CIImage
P:UIKit.UIImage.ClosedCaptioningStatusDidChangeNotification
-P:UIKit.UIImage.Configuration
-P:UIKit.UIImage.CurrentScale
P:UIKit.UIImage.DarkerSystemColorsStatusDidChangeNotification
-P:UIKit.UIImage.Duration
P:UIKit.UIImage.ElementFocusedNotification
-P:UIKit.UIImage.FlipsForRightToLeftLayoutDirection
P:UIKit.UIImage.FocusedElementKey
P:UIKit.UIImage.GrayscaleStatusDidChangeNotification
P:UIKit.UIImage.GuidedAccessStatusDidChangeNotification
-P:UIKit.UIImage.HasBaseline
P:UIKit.UIImage.HearingDevicePairedEarDidChangeNotification
P:UIKit.UIImage.HeicRepresentation
-P:UIKit.UIImage.ImageAsset
-P:UIKit.UIImage.ImageRendererFormat
-P:UIKit.UIImage.ImageRestrictedToStandardDynamicRange
-P:UIKit.UIImage.Images
P:UIKit.UIImage.InvertColorsStatusDidChangeNotification
-P:UIKit.UIImage.IsAccessibilityElement
-P:UIKit.UIImage.IsHighDynamicRange
P:UIKit.UIImage.LayoutChangedNotification
-P:UIKit.UIImage.LeftCapWidth
P:UIKit.UIImage.MonoAudioStatusDidChangeNotification
P:UIKit.UIImage.NotificationSwitchControlIdentifier
P:UIKit.UIImage.NotificationVoiceOverIdentifier
P:UIKit.UIImage.OnOffSwitchLabelsDidChangeNotification
-P:UIKit.UIImage.Orientation
P:UIKit.UIImage.PageScrolledNotification
P:UIKit.UIImage.PauseAssistiveTechnologyNotification
-P:UIKit.UIImage.PreferredPresentationSizeForItemProvider
P:UIKit.UIImage.PrefersCrossFadeTransitionsStatusDidChangeNotification
P:UIKit.UIImage.ReadableTypeIdentifiers
P:UIKit.UIImage.ReduceMotionStatusDidChangeNotification
P:UIKit.UIImage.ReduceTransparencyStatusDidChangeNotification
-P:UIKit.UIImage.RemoveImage
-P:UIKit.UIImage.RenderingMode
-P:UIKit.UIImage.ResizingMode
P:UIKit.UIImage.ResumeAssistiveTechnologyNotification
P:UIKit.UIImage.ScreenChangedNotification
P:UIKit.UIImage.ShakeToUndoDidChangeNotification
P:UIKit.UIImage.ShouldDifferentiateWithoutColorDidChangeNotification
-P:UIKit.UIImage.ShouldGroupAccessibilityChildren
-P:UIKit.UIImage.Size
P:UIKit.UIImage.SpeakScreenStatusDidChangeNotification
P:UIKit.UIImage.SpeakSelectionStatusDidChangeNotification
P:UIKit.UIImage.SpeechAttributeAnnouncementPriority
@@ -98395,49 +64923,29 @@ P:UIKit.UIImage.SpeechAttributePitch
P:UIKit.UIImage.SpeechAttributePunctuation
P:UIKit.UIImage.SpeechAttributeQueueAnnouncement
P:UIKit.UIImage.SpeechAttributeSpellOut
-P:UIKit.UIImage.StrokedCheckmarkImage
P:UIKit.UIImage.SwitchControlStatusDidChangeNotification
-P:UIKit.UIImage.SymbolConfiguration
P:UIKit.UIImage.SymbolImage
P:UIKit.UIImage.TextAttributeContext
P:UIKit.UIImage.TextAttributeCustom
P:UIKit.UIImage.TextAttributeHeadingLevel
-P:UIKit.UIImage.TopCapHeight
-P:UIKit.UIImage.TraitCollection
P:UIKit.UIImage.UnfocusedElementKey
P:UIKit.UIImage.VideoAutoplayStatusDidChangeNotification
P:UIKit.UIImage.VoiceOverStatusChanged
P:UIKit.UIImage.VoiceOverStatusDidChangeNotification
P:UIKit.UIImage.WritableTypeIdentifiers
P:UIKit.UIImage.WritableTypeIdentifiersForItemProvider
-P:UIKit.UIImageConfiguration.Locale
-P:UIKit.UIImageConfiguration.TraitCollection
-P:UIKit.UIImagePickerController.AllowsEditing
-P:UIKit.UIImagePickerController.CameraCaptureMode
-P:UIKit.UIImagePickerController.CameraDevice
-P:UIKit.UIImagePickerController.CameraFlashMode
-P:UIKit.UIImagePickerController.CameraOverlayView
-P:UIKit.UIImagePickerController.CameraViewTransform
P:UIKit.UIImagePickerController.CropRect
-P:UIKit.UIImagePickerController.Delegate
P:UIKit.UIImagePickerController.EditedImage
-P:UIKit.UIImagePickerController.ImageExportPreset
P:UIKit.UIImagePickerController.ImagePickerControllerDelegate
P:UIKit.UIImagePickerController.ImageUrl
P:UIKit.UIImagePickerController.LivePhoto
P:UIKit.UIImagePickerController.MediaMetadata
P:UIKit.UIImagePickerController.MediaType
-P:UIKit.UIImagePickerController.MediaTypes
P:UIKit.UIImagePickerController.MediaURL
P:UIKit.UIImagePickerController.NavigationControllerDelegate
P:UIKit.UIImagePickerController.OriginalImage
P:UIKit.UIImagePickerController.PHAsset
P:UIKit.UIImagePickerController.ReferenceUrl
-P:UIKit.UIImagePickerController.ShowsCameraControls
-P:UIKit.UIImagePickerController.SourceType
-P:UIKit.UIImagePickerController.VideoExportPreset
-P:UIKit.UIImagePickerController.VideoMaximumDuration
-P:UIKit.UIImagePickerController.VideoQuality
P:UIKit.UIImagePickerMediaPickedEventArgs.CropRect
P:UIKit.UIImagePickerMediaPickedEventArgs.EditedImage
P:UIKit.UIImagePickerMediaPickedEventArgs.ImageUrl
@@ -98449,54 +64957,10 @@ P:UIKit.UIImagePickerMediaPickedEventArgs.MediaUrl
P:UIKit.UIImagePickerMediaPickedEventArgs.OriginalImage
P:UIKit.UIImagePickerMediaPickedEventArgs.PHAsset
P:UIKit.UIImagePickerMediaPickedEventArgs.ReferenceUrl
-P:UIKit.UIImageReader.Configuration
-P:UIKit.UIImageReader.DefaultReader
-P:UIKit.UIImageReaderConfiguration.PixelsPerInch
-P:UIKit.UIImageReaderConfiguration.PreferredThumbnailSize
-P:UIKit.UIImageReaderConfiguration.PrefersHighDynamicRange
-P:UIKit.UIImageReaderConfiguration.PreparesImagesForDisplay
-P:UIKit.UIImageSymbolConfiguration.ConfigurationPreferringMulticolor
-P:UIKit.UIImageSymbolConfiguration.ConfigurationWithoutPointSizeAndWeight
-P:UIKit.UIImageSymbolConfiguration.ConfigurationWithoutScale
-P:UIKit.UIImageSymbolConfiguration.ConfigurationWithoutTextStyle
-P:UIKit.UIImageSymbolConfiguration.ConfigurationWithoutWeight
-P:UIKit.UIImageSymbolConfiguration.UnspecifiedConfiguration
-P:UIKit.UIImageView.AdjustsImageSizeForAccessibilityContentSizeCategory
-P:UIKit.UIImageView.AdjustsImageWhenAncestorFocused
-P:UIKit.UIImageView.AnimationDuration
-P:UIKit.UIImageView.AnimationImages
-P:UIKit.UIImageView.AnimationRepeatCount
-P:UIKit.UIImageView.FocusedFrameGuide
P:UIKit.UIImageView.Highlighted
-P:UIKit.UIImageView.HighlightedAnimationImages
-P:UIKit.UIImageView.HighlightedImage
-P:UIKit.UIImageView.Image
-P:UIKit.UIImageView.ImageDynamicRange
P:UIKit.UIImageView.IsAnimating
-P:UIKit.UIImageView.MasksFocusEffectToContents
-P:UIKit.UIImageView.OverlayContentView
-P:UIKit.UIImageView.PreferredImageDynamicRange
-P:UIKit.UIImageView.PreferredSymbolConfiguration
P:UIKit.UIIndirectScribbleInteraction.Delegate
P:UIKit.UIIndirectScribbleInteraction.HandlingWriting
-P:UIKit.UIIndirectScribbleInteraction.View
-P:UIKit.UIIndirectScribbleInteraction.WeakDelegate
-P:UIKit.UIInputView.AllowsSelfSizing
-P:UIKit.UIInputView.InputViewStyle
-P:UIKit.UIInputViewController.HasDictationKey
-P:UIKit.UIInputViewController.HasFullAccess
-P:UIKit.UIInputViewController.InputView
-P:UIKit.UIInputViewController.NeedsInputModeSwitchKey
-P:UIKit.UIInputViewController.PrimaryLanguage
-P:UIKit.UIInputViewController.TextDocumentProxy
-P:UIKit.UIInterpolatingMotionEffect.KeyPath
-P:UIKit.UIInterpolatingMotionEffect.MaximumRelativeValue
-P:UIKit.UIInterpolatingMotionEffect.MinimumRelativeValue
-P:UIKit.UIInterpolatingMotionEffect.Type
-P:UIKit.UIKey.Characters
-P:UIKit.UIKey.CharactersIgnoringModifiers
-P:UIKit.UIKey.KeyCode
-P:UIKit.UIKey.ModifierFlags
P:UIKit.UIKeyboard.AnimationCurveUserInfoKey
P:UIKit.UIKeyboard.AnimationDurationUserInfoKey
P:UIKit.UIKeyboard.DidChangeFrameNotification
@@ -98512,15 +64976,7 @@ P:UIKit.UIKeyboardEventArgs.AnimationCurve
P:UIKit.UIKeyboardEventArgs.AnimationDuration
P:UIKit.UIKeyboardEventArgs.FrameBegin
P:UIKit.UIKeyboardEventArgs.FrameEnd
-P:UIKit.UIKeyboardLayoutGuide.FollowsUndockedKeyboard
-P:UIKit.UIKeyboardLayoutGuide.KeyboardDismissPadding
-P:UIKit.UIKeyboardLayoutGuide.UsesBottomSafeArea
-P:UIKit.UIKeyCommand.AllowsAutomaticLocalization
-P:UIKit.UIKeyCommand.AllowsAutomaticMirroring
-P:UIKit.UIKeyCommand.Alternates
-P:UIKit.UIKeyCommand.Attributes
P:UIKit.UIKeyCommand.Delete
-P:UIKit.UIKeyCommand.DiscoverabilityTitle
P:UIKit.UIKeyCommand.DownArrow
P:UIKit.UIKeyCommand.End
P:UIKit.UIKeyCommand.Escape
@@ -98537,43 +64993,13 @@ P:UIKit.UIKeyCommand.F7
P:UIKit.UIKeyCommand.F8
P:UIKit.UIKeyCommand.F9
P:UIKit.UIKeyCommand.Home
-P:UIKit.UIKeyCommand.Image
-P:UIKit.UIKeyCommand.Input
P:UIKit.UIKeyCommand.LeftArrow
-P:UIKit.UIKeyCommand.ModifierFlags
P:UIKit.UIKeyCommand.PageDown
P:UIKit.UIKeyCommand.PageUp
-P:UIKit.UIKeyCommand.PropertyList
P:UIKit.UIKeyCommand.RightArrow
-P:UIKit.UIKeyCommand.State
-P:UIKit.UIKeyCommand.Title
P:UIKit.UIKeyCommand.UpArrow
-P:UIKit.UIKeyCommand.WantsPriorityOverSystemBehavior
-P:UIKit.UILabel.AdjustsFontForContentSizeCategory
-P:UIKit.UILabel.AdjustsFontSizeToFitWidth
-P:UIKit.UILabel.AdjustsLetterSpacingToFitWidth
-P:UIKit.UILabel.AllowsDefaultTighteningForTruncation
-P:UIKit.UILabel.AttributedText
-P:UIKit.UILabel.BaselineAdjustment
P:UIKit.UILabel.Enabled
-P:UIKit.UILabel.EnablesMarqueeWhenAncestorFocused
-P:UIKit.UILabel.Font
P:UIKit.UILabel.Highlighted
-P:UIKit.UILabel.HighlightedTextColor
-P:UIKit.UILabel.LineBreakMode
-P:UIKit.UILabel.LineBreakStrategy
-P:UIKit.UILabel.Lines
-P:UIKit.UILabel.MinimumFontSize
-P:UIKit.UILabel.MinimumScaleFactor
-P:UIKit.UILabel.PreferredMaxLayoutWidth
-P:UIKit.UILabel.PreferredVibrancy
-P:UIKit.UILabel.ShadowColor
-P:UIKit.UILabel.ShadowOffset
-P:UIKit.UILabel.ShowsExpansionTextWhenTruncated
-P:UIKit.UILabel.SizingRule
-P:UIKit.UILabel.Text
-P:UIKit.UILabel.TextAlignment
-P:UIKit.UILabel.TextColor
P:UIKit.UILabel.UILabelAppearance.Font
P:UIKit.UILabel.UILabelAppearance.HighlightedTextColor
P:UIKit.UILabel.UILabelAppearance.PreferredVibrancy
@@ -98582,204 +65008,23 @@ P:UIKit.UILabel.UILabelAppearance.ShadowOffset
P:UIKit.UILabel.UILabelAppearance.TextColor
P:UIKit.UILargeContentViewerInteraction.Delegate
P:UIKit.UILargeContentViewerInteraction.Enabled
-P:UIKit.UILargeContentViewerInteraction.GestureRecognizerForExclusionRelationship
P:UIKit.UILargeContentViewerInteraction.InteractionEnabledStatusDidChangeNotification
-P:UIKit.UILargeContentViewerInteraction.View
-P:UIKit.UILargeContentViewerInteraction.WeakDelegate
-P:UIKit.UILayoutGuide.BottomAnchor
-P:UIKit.UILayoutGuide.CenterXAnchor
-P:UIKit.UILayoutGuide.CenterYAnchor
-P:UIKit.UILayoutGuide.HeightAnchor
-P:UIKit.UILayoutGuide.Identifier
-P:UIKit.UILayoutGuide.LayoutFrame
-P:UIKit.UILayoutGuide.LeadingAnchor
-P:UIKit.UILayoutGuide.LeftAnchor
-P:UIKit.UILayoutGuide.OwningView
-P:UIKit.UILayoutGuide.RightAnchor
-P:UIKit.UILayoutGuide.TopAnchor
-P:UIKit.UILayoutGuide.TrailingAnchor
-P:UIKit.UILayoutGuide.WidthAnchor
-P:UIKit.UILayoutSupport.BottomAnchor
-P:UIKit.UILayoutSupport.HeightAnchor
-P:UIKit.UILayoutSupport.Length
-P:UIKit.UILayoutSupport.TopAnchor
-P:UIKit.UILexicon.Entries
-P:UIKit.UILexiconEntry.DocumentText
-P:UIKit.UILexiconEntry.UserInput
-P:UIKit.UIListContentConfiguration.AccompaniedSidebarCellConfiguration
-P:UIKit.UIListContentConfiguration.AccompaniedSidebarSubtitleCellConfiguration
-P:UIKit.UIListContentConfiguration.Alpha
-P:UIKit.UIListContentConfiguration.AttributedText
-P:UIKit.UIListContentConfiguration.AxesPreservingSuperviewLayoutMargins
-P:UIKit.UIListContentConfiguration.CellConfiguration
-P:UIKit.UIListContentConfiguration.DirectionalLayoutMargins
-P:UIKit.UIListContentConfiguration.ExtraProminentInsetGroupedHeaderConfiguration
-P:UIKit.UIListContentConfiguration.FooterConfiguration
-P:UIKit.UIListContentConfiguration.GroupedFooterConfiguration
-P:UIKit.UIListContentConfiguration.GroupedHeaderConfiguration
-P:UIKit.UIListContentConfiguration.HeaderConfiguration
-P:UIKit.UIListContentConfiguration.Image
-P:UIKit.UIListContentConfiguration.ImageProperties
-P:UIKit.UIListContentConfiguration.ImageToTextPadding
-P:UIKit.UIListContentConfiguration.PlainFooterConfiguration
-P:UIKit.UIListContentConfiguration.PlainHeaderConfiguration
-P:UIKit.UIListContentConfiguration.PrefersSideBySideTextAndSecondaryText
-P:UIKit.UIListContentConfiguration.ProminentInsetGroupedHeaderConfiguration
-P:UIKit.UIListContentConfiguration.SecondaryAttributedText
-P:UIKit.UIListContentConfiguration.SecondaryText
-P:UIKit.UIListContentConfiguration.SecondaryTextProperties
-P:UIKit.UIListContentConfiguration.SidebarCellConfiguration
-P:UIKit.UIListContentConfiguration.SidebarHeaderConfiguration
-P:UIKit.UIListContentConfiguration.SidebarSubtitleCellConfiguration
-P:UIKit.UIListContentConfiguration.SubtitleCellConfiguration
-P:UIKit.UIListContentConfiguration.Text
-P:UIKit.UIListContentConfiguration.TextProperties
-P:UIKit.UIListContentConfiguration.TextToSecondaryTextHorizontalPadding
-P:UIKit.UIListContentConfiguration.TextToSecondaryTextVerticalPadding
-P:UIKit.UIListContentConfiguration.ValueCellConfiguration
-P:UIKit.UIListContentImageProperties.AccessibilityIgnoresInvertColors
-P:UIKit.UIListContentImageProperties.CornerRadius
-P:UIKit.UIListContentImageProperties.MaximumSize
-P:UIKit.UIListContentImageProperties.PreferredSymbolConfiguration
-P:UIKit.UIListContentImageProperties.ReservedLayoutSize
P:UIKit.UIListContentImageProperties.StandardDimension
-P:UIKit.UIListContentImageProperties.StrokeColor
-P:UIKit.UIListContentImageProperties.StrokeColorTransformer
-P:UIKit.UIListContentImageProperties.StrokeWidth
-P:UIKit.UIListContentImageProperties.TintColor
-P:UIKit.UIListContentImageProperties.TintColorTransformer
-P:UIKit.UIListContentTextProperties.AdjustsFontForContentSizeCategory
-P:UIKit.UIListContentTextProperties.AdjustsFontSizeToFitWidth
-P:UIKit.UIListContentTextProperties.Alignment
-P:UIKit.UIListContentTextProperties.AllowsDefaultTighteningForTruncation
-P:UIKit.UIListContentTextProperties.Color
-P:UIKit.UIListContentTextProperties.ColorTransformer
-P:UIKit.UIListContentTextProperties.Font
-P:UIKit.UIListContentTextProperties.LineBreakMode
-P:UIKit.UIListContentTextProperties.MinimumScaleFactor
-P:UIKit.UIListContentTextProperties.NumberOfLines
-P:UIKit.UIListContentTextProperties.ResolvedColor
-P:UIKit.UIListContentTextProperties.ShowsExpansionTextWhenTruncated
-P:UIKit.UIListContentTextProperties.Transform
-P:UIKit.UIListContentView.Configuration
-P:UIKit.UIListContentView.ImageLayoutGuide
P:UIKit.UIListContentView.ListContentConfiguration
-P:UIKit.UIListContentView.SecondaryTextLayoutGuide
-P:UIKit.UIListContentView.TextLayoutGuide
P:UIKit.UIListSeparatorConfiguration.AutomaticInsets
-P:UIKit.UIListSeparatorConfiguration.BottomSeparatorInsets
-P:UIKit.UIListSeparatorConfiguration.BottomSeparatorVisibility
-P:UIKit.UIListSeparatorConfiguration.Color
-P:UIKit.UIListSeparatorConfiguration.MultipleSelectionColor
-P:UIKit.UIListSeparatorConfiguration.TopSeparatorInsets
-P:UIKit.UIListSeparatorConfiguration.TopSeparatorVisibility
-P:UIKit.UIListSeparatorConfiguration.VisualEffect
-P:UIKit.UILocalizedIndexedCollation.SectionIndexTitles
-P:UIKit.UILocalizedIndexedCollation.SectionTitles
-P:UIKit.UILocalNotification.AlertAction
-P:UIKit.UILocalNotification.AlertBody
-P:UIKit.UILocalNotification.AlertLaunchImage
-P:UIKit.UILocalNotification.AlertTitle
-P:UIKit.UILocalNotification.ApplicationIconBadgeNumber
-P:UIKit.UILocalNotification.Category
P:UIKit.UILocalNotification.DefaultSoundName
-P:UIKit.UILocalNotification.FireDate
-P:UIKit.UILocalNotification.HasAction
-P:UIKit.UILocalNotification.Region
-P:UIKit.UILocalNotification.RegionTriggersOnce
-P:UIKit.UILocalNotification.RepeatCalendar
-P:UIKit.UILocalNotification.RepeatInterval
-P:UIKit.UILocalNotification.SoundName
-P:UIKit.UILocalNotification.TimeZone
-P:UIKit.UILocalNotification.UserInfo
-P:UIKit.UILongPressGestureRecognizer.AllowableMovement
-P:UIKit.UILongPressGestureRecognizer.MinimumPressDuration
-P:UIKit.UILongPressGestureRecognizer.NumberOfTapsRequired
-P:UIKit.UILongPressGestureRecognizer.NumberOfTouchesRequired
-P:UIKit.UIManagedDocument.ManagedObjectContext
-P:UIKit.UIManagedDocument.ManagedObjectModel
-P:UIKit.UIManagedDocument.ModelConfiguration
-P:UIKit.UIManagedDocument.PersistentStoreName
-P:UIKit.UIManagedDocument.PersistentStoreOptions
-P:UIKit.UIMarkupTextPrintFormatter.MarkupText
-P:UIKit.UIMenu.Children
-P:UIKit.UIMenu.DisplayPreferences
-P:UIKit.UIMenu.Identifier
-P:UIKit.UIMenu.Options
-P:UIKit.UIMenu.PreferredElementSize
P:UIKit.UIMenu.SelectedElements
-P:UIKit.UIMenuController.ArrowDirection
P:UIKit.UIMenuController.DidHideMenuNotification
P:UIKit.UIMenuController.DidShowMenuNotification
-P:UIKit.UIMenuController.MenuFrame
P:UIKit.UIMenuController.MenuFrameDidChangeNotification
-P:UIKit.UIMenuController.MenuItems
P:UIKit.UIMenuController.MenuVisible
-P:UIKit.UIMenuController.SharedMenuController
P:UIKit.UIMenuController.WillHideMenuNotification
P:UIKit.UIMenuController.WillShowMenuNotification
-P:UIKit.UIMenuDisplayPreferences.MaximumNumberOfTitleLines
-P:UIKit.UIMenuElement.AccessibilityIdentifier
-P:UIKit.UIMenuElement.Image
-P:UIKit.UIMenuElement.Subtitle
-P:UIKit.UIMenuElement.Title
-P:UIKit.UIMenuItem.Action
-P:UIKit.UIMenuItem.Title
-P:UIKit.UIMenuSystem.ContextSystem
-P:UIKit.UIMenuSystem.MainSystem
-P:UIKit.UIMotionEffectGroup.MotionEffects
-P:UIKit.UIMutableApplicationShortcutItem.Icon
-P:UIKit.UIMutableApplicationShortcutItem.LocalizedSubtitle
-P:UIKit.UIMutableApplicationShortcutItem.LocalizedTitle
-P:UIKit.UIMutableApplicationShortcutItem.TargetContentIdentifier
-P:UIKit.UIMutableApplicationShortcutItem.Type
-P:UIKit.UIMutableApplicationShortcutItem.UserInfo
-P:UIKit.UIMutableTraits.AccessibilityContrast
-P:UIKit.UIMutableTraits.ActiveAppearance
-P:UIKit.UIMutableTraits.DisplayGamut
-P:UIKit.UIMutableTraits.DisplayScale
-P:UIKit.UIMutableTraits.ForceTouchCapability
-P:UIKit.UIMutableTraits.HorizontalSizeClass
-P:UIKit.UIMutableTraits.ImageDynamicRange
-P:UIKit.UIMutableTraits.LayoutDirection
-P:UIKit.UIMutableTraits.LegibilityWeight
-P:UIKit.UIMutableTraits.ListEnvironment
-P:UIKit.UIMutableTraits.PreferredContentSizeCategory
-P:UIKit.UIMutableTraits.SceneCaptureState
-P:UIKit.UIMutableTraits.ToolbarItemPresentationSize
-P:UIKit.UIMutableTraits.TypesettingLanguage
-P:UIKit.UIMutableTraits.UserInterfaceIdiom
-P:UIKit.UIMutableTraits.UserInterfaceLevel
-P:UIKit.UIMutableTraits.UserInterfaceStyle
-P:UIKit.UIMutableTraits.VerticalSizeClass
-P:UIKit.UIMutableUserNotificationAction.ActivationMode
P:UIKit.UIMutableUserNotificationAction.AuthenticationRequired
-P:UIKit.UIMutableUserNotificationAction.Behavior
P:UIKit.UIMutableUserNotificationAction.Destructive
-P:UIKit.UIMutableUserNotificationAction.Identifier
-P:UIKit.UIMutableUserNotificationAction.Parameters
-P:UIKit.UIMutableUserNotificationAction.Title
-P:UIKit.UIMutableUserNotificationCategory.Identifier
-P:UIKit.UINavigationBar.BackIndicatorImage
-P:UIKit.UINavigationBar.BackIndicatorTransitionMaskImage
-P:UIKit.UINavigationBar.BackItem
-P:UIKit.UINavigationBar.BarPosition
-P:UIKit.UINavigationBar.BarStyle
-P:UIKit.UINavigationBar.BarTintColor
-P:UIKit.UINavigationBar.BehavioralStyle
-P:UIKit.UINavigationBar.CompactAppearance
-P:UIKit.UINavigationBar.CompactScrollEdgeAppearance
-P:UIKit.UINavigationBar.CurrentNSToolbarSection
P:UIKit.UINavigationBar.Delegate
-P:UIKit.UINavigationBar.Items
P:UIKit.UINavigationBar.LargeTitleTextAttributes
-P:UIKit.UINavigationBar.PreferredBehavioralStyle
-P:UIKit.UINavigationBar.PrefersLargeTitles
-P:UIKit.UINavigationBar.ScrollEdgeAppearance
-P:UIKit.UINavigationBar.ShadowImage
-P:UIKit.UINavigationBar.StandardAppearance
P:UIKit.UINavigationBar.TitleTextAttributes
-P:UIKit.UINavigationBar.TopItem
P:UIKit.UINavigationBar.Translucent
P:UIKit.UINavigationBar.UINavigationBarAppearance.BackIndicatorImage
P:UIKit.UINavigationBar.UINavigationBarAppearance.BackIndicatorTransitionMaskImage
@@ -98794,157 +65039,44 @@ P:UIKit.UINavigationBar.UINavigationBarAppearance.ShadowImage
P:UIKit.UINavigationBar.UINavigationBarAppearance.StandardAppearance
P:UIKit.UINavigationBar.UINavigationBarAppearance.TitleTextAttributes
P:UIKit.UINavigationBar.UINavigationBarAppearance.Translucent
-P:UIKit.UINavigationBar.WeakDelegate
-P:UIKit.UINavigationBarAppearance.BackButtonAppearance
-P:UIKit.UINavigationBarAppearance.BackIndicatorImage
-P:UIKit.UINavigationBarAppearance.BackIndicatorTransitionMaskImage
-P:UIKit.UINavigationBarAppearance.ButtonAppearance
-P:UIKit.UINavigationBarAppearance.DoneButtonAppearance
P:UIKit.UINavigationBarAppearance.LargeTitleTextAttributes
-P:UIKit.UINavigationBarAppearance.TitlePositionAdjustment
P:UIKit.UINavigationBarAppearance.TitleTextAttributes
-P:UIKit.UINavigationBarAppearance.WeakLargeTitleTextAttributes
-P:UIKit.UINavigationBarAppearance.WeakTitleTextAttributes
-P:UIKit.UINavigationController.BarHideOnSwipeGestureRecognizer
-P:UIKit.UINavigationController.BarHideOnTapGestureRecognizer
P:UIKit.UINavigationController.Delegate
-P:UIKit.UINavigationController.HidesBarsOnSwipe
-P:UIKit.UINavigationController.HidesBarsOnTap
-P:UIKit.UINavigationController.HidesBarsWhenKeyboardAppears
-P:UIKit.UINavigationController.HidesBarsWhenVerticallyCompact
P:UIKit.UINavigationController.HideShowBarDuration
-P:UIKit.UINavigationController.InteractivePopGestureRecognizer
-P:UIKit.UINavigationController.NavigationBar
P:UIKit.UINavigationController.NavigationBarHidden
-P:UIKit.UINavigationController.Toolbar
P:UIKit.UINavigationController.ToolbarHidden
-P:UIKit.UINavigationController.TopViewController
-P:UIKit.UINavigationController.ViewControllers
-P:UIKit.UINavigationController.VisibleViewController
-P:UIKit.UINavigationController.WeakDelegate
-P:UIKit.UINavigationItem.AdditionalOverflowItems
-P:UIKit.UINavigationItem.BackAction
-P:UIKit.UINavigationItem.BackBarButtonItem
-P:UIKit.UINavigationItem.BackButtonDisplayMode
-P:UIKit.UINavigationItem.BackButtonTitle
-P:UIKit.UINavigationItem.CenterItemGroups
-P:UIKit.UINavigationItem.CompactAppearance
-P:UIKit.UINavigationItem.CompactScrollEdgeAppearance
-P:UIKit.UINavigationItem.CustomizationIdentifier
-P:UIKit.UINavigationItem.DocumentProperties
-P:UIKit.UINavigationItem.HidesBackButton
-P:UIKit.UINavigationItem.HidesSearchBarWhenScrolling
-P:UIKit.UINavigationItem.LargeTitleDisplayMode
-P:UIKit.UINavigationItem.LeadingItemGroups
-P:UIKit.UINavigationItem.LeftBarButtonItem
-P:UIKit.UINavigationItem.LeftBarButtonItems
-P:UIKit.UINavigationItem.LeftItemsSupplementBackButton
-P:UIKit.UINavigationItem.OverflowPresentationSource
-P:UIKit.UINavigationItem.PinnedTrailingGroup
-P:UIKit.UINavigationItem.PreferredSearchBarPlacement
-P:UIKit.UINavigationItem.Prompt
P:UIKit.UINavigationItem.RenameDelegate
-P:UIKit.UINavigationItem.RightBarButtonItem
-P:UIKit.UINavigationItem.RightBarButtonItems
-P:UIKit.UINavigationItem.ScrollEdgeAppearance
-P:UIKit.UINavigationItem.SearchBarPlacement
-P:UIKit.UINavigationItem.SearchController
-P:UIKit.UINavigationItem.StandardAppearance
-P:UIKit.UINavigationItem.Style
-P:UIKit.UINavigationItem.Title
-P:UIKit.UINavigationItem.TitleMenuProvider
-P:UIKit.UINavigationItem.TitleView
-P:UIKit.UINavigationItem.TrailingItemGroups
-P:UIKit.UINavigationItem.WeakRenameDelegate
P:UIKit.UINib.ExternalObjectsKey
-P:UIKit.UINSIntegerTraitDefinition.AffectsColorAppearance
-P:UIKit.UINSIntegerTraitDefinition.DefaultValue
-P:UIKit.UINSIntegerTraitDefinition.Identifier
-P:UIKit.UINSIntegerTraitDefinition.Name
-P:UIKit.UIObjectTraitDefinition.AffectsColorAppearance
-P:UIKit.UIObjectTraitDefinition.DefaultValue
-P:UIKit.UIObjectTraitDefinition.Identifier
-P:UIKit.UIObjectTraitDefinition.Name
-P:UIKit.UIOpenUrlContext.Options
-P:UIKit.UIOpenUrlContext.Url
-P:UIKit.UIPageControl.AllowsContinuousInteraction
-P:UIKit.UIPageControl.BackgroundStyle
-P:UIKit.UIPageControl.CurrentPage
-P:UIKit.UIPageControl.CurrentPageIndicatorTintColor
-P:UIKit.UIPageControl.DefersCurrentPageDisplay
-P:UIKit.UIPageControl.Direction
-P:UIKit.UIPageControl.HidesForSinglePage
-P:UIKit.UIPageControl.InteractionState
-P:UIKit.UIPageControl.PageIndicatorTintColor
-P:UIKit.UIPageControl.Pages
-P:UIKit.UIPageControl.PreferredCurrentPageIndicatorImage
-P:UIKit.UIPageControl.PreferredIndicatorImage
-P:UIKit.UIPageControl.Progress
P:UIKit.UIPageControl.UIPageControlAppearance.CurrentPageIndicatorTintColor
P:UIKit.UIPageControl.UIPageControlAppearance.PageIndicatorTintColor
-P:UIKit.UIPageControlProgress.CurrentProgress
P:UIKit.UIPageControlProgress.Delegate
P:UIKit.UIPageControlProgress.ProgressVisible
-P:UIKit.UIPageControlProgress.WeakDelegate
P:UIKit.UIPageControlTimerProgress.Delegate
-P:UIKit.UIPageControlTimerProgress.PreferredDuration
-P:UIKit.UIPageControlTimerProgress.ResetsToInitialPageAfterEnd
P:UIKit.UIPageControlTimerProgress.Running
-P:UIKit.UIPageControlTimerProgress.WeakDelegate
P:UIKit.UIPageViewController.DataSource
P:UIKit.UIPageViewController.Delegate
P:UIKit.UIPageViewController.DoubleSided
-P:UIKit.UIPageViewController.GestureRecognizers
P:UIKit.UIPageViewController.GetNextViewController
P:UIKit.UIPageViewController.GetPreferredInterfaceOrientationForPresentation
P:UIKit.UIPageViewController.GetPresentationCount
P:UIKit.UIPageViewController.GetPresentationIndex
P:UIKit.UIPageViewController.GetPreviousViewController
P:UIKit.UIPageViewController.GetSpineLocation
-P:UIKit.UIPageViewController.NavigationOrientation
P:UIKit.UIPageViewController.OptionSpineLocationKey
-P:UIKit.UIPageViewController.SpineLocation
P:UIKit.UIPageViewController.SupportedInterfaceOrientations
-P:UIKit.UIPageViewController.TransitionStyle
-P:UIKit.UIPageViewController.ViewControllers
-P:UIKit.UIPageViewController.WeakDataSource
-P:UIKit.UIPageViewController.WeakDelegate
P:UIKit.UIPageViewControllerTransitionEventArgs.PendingViewControllers
P:UIKit.UIPageViewFinishedAnimationEventArgs.Completed
P:UIKit.UIPageViewFinishedAnimationEventArgs.Finished
P:UIKit.UIPageViewFinishedAnimationEventArgs.PreviousViewControllers
-P:UIKit.UIPanGestureRecognizer.AllowedScrollTypesMask
-P:UIKit.UIPanGestureRecognizer.MaximumNumberOfTouches
-P:UIKit.UIPanGestureRecognizer.MinimumNumberOfTouches
P:UIKit.UIPasteboard.Automatic
-P:UIKit.UIPasteboard.ChangeCount
P:UIKit.UIPasteboard.ChangedNotification
P:UIKit.UIPasteboard.ChangedTypesAddedKey
P:UIKit.UIPasteboard.ChangedTypesRemovedKey
-P:UIKit.UIPasteboard.Color
-P:UIKit.UIPasteboard.Colors
-P:UIKit.UIPasteboard.Count
-P:UIKit.UIPasteboard.General
-P:UIKit.UIPasteboard.HasColors
-P:UIKit.UIPasteboard.HasImages
-P:UIKit.UIPasteboard.HasStrings
-P:UIKit.UIPasteboard.HasUrls
-P:UIKit.UIPasteboard.Image
-P:UIKit.UIPasteboard.Images
-P:UIKit.UIPasteboard.ItemProviders
-P:UIKit.UIPasteboard.Items
-P:UIKit.UIPasteboard.Name
-P:UIKit.UIPasteboard.Persistent
P:UIKit.UIPasteboard.RemovedNotification
-P:UIKit.UIPasteboard.String
-P:UIKit.UIPasteboard.Strings
P:UIKit.UIPasteboard.TypeListColor
P:UIKit.UIPasteboard.TypeListImage
P:UIKit.UIPasteboard.TypeListString
P:UIKit.UIPasteboard.TypeListURL
-P:UIKit.UIPasteboard.Types
-P:UIKit.UIPasteboard.Url
-P:UIKit.UIPasteboard.Urls
P:UIKit.UIPasteboardChangeEventArgs.TypesAdded
P:UIKit.UIPasteboardChangeEventArgs.TypesRemoved
P:UIKit.UIPasteboardNames.Find
@@ -98953,53 +65085,12 @@ P:UIKit.UIPasteboardOptionKeys.ExpirationDateKey
P:UIKit.UIPasteboardOptionKeys.LocalOnlyKey
P:UIKit.UIPasteboardOptions.ExpirationDate
P:UIKit.UIPasteboardOptions.LocalOnly
-P:UIKit.UIPasteConfiguration.AcceptableTypeIdentifiers
-P:UIKit.UIPasteControl.Configuration
-P:UIKit.UIPasteControl.Target
-P:UIKit.UIPasteControlConfiguration.BaseBackgroundColor
-P:UIKit.UIPasteControlConfiguration.BaseForegroundColor
-P:UIKit.UIPasteControlConfiguration.CornerRadius
-P:UIKit.UIPasteControlConfiguration.CornerStyle
-P:UIKit.UIPasteControlConfiguration.DisplayMode
-P:UIKit.UIPasteControlConfiguration.ImagePlacement
P:UIKit.UIPathEventArgs.Path
-P:UIKit.UIPencilHoverPose.AltitudeAngle
-P:UIKit.UIPencilHoverPose.AzimuthAngle
-P:UIKit.UIPencilHoverPose.AzimuthUnitVector
-P:UIKit.UIPencilHoverPose.Location
-P:UIKit.UIPencilHoverPose.RollAngle
-P:UIKit.UIPencilHoverPose.ZOffset
P:UIKit.UIPencilInteraction.Delegate
P:UIKit.UIPencilInteraction.Enabled
-P:UIKit.UIPencilInteraction.PreferredSqueezeAction
-P:UIKit.UIPencilInteraction.PreferredTapAction
-P:UIKit.UIPencilInteraction.PrefersHoverToolPreview
-P:UIKit.UIPencilInteraction.PrefersPencilOnlyDrawing
-P:UIKit.UIPencilInteraction.View
-P:UIKit.UIPencilInteraction.WeakDelegate
-P:UIKit.UIPencilInteractionSqueeze.HoverPose
-P:UIKit.UIPencilInteractionSqueeze.Phase
-P:UIKit.UIPencilInteractionSqueeze.Timestamp
-P:UIKit.UIPencilInteractionTap.HoverPose
-P:UIKit.UIPencilInteractionTap.Timestamp
-P:UIKit.UIPercentDrivenInteractiveTransition.CompletionCurve
-P:UIKit.UIPercentDrivenInteractiveTransition.CompletionSpeed
-P:UIKit.UIPercentDrivenInteractiveTransition.Duration
-P:UIKit.UIPercentDrivenInteractiveTransition.PercentComplete
-P:UIKit.UIPercentDrivenInteractiveTransition.TimingCurve
-P:UIKit.UIPercentDrivenInteractiveTransition.WantsInteractiveStart
P:UIKit.UIPickerView.DataSource
P:UIKit.UIPickerView.Delegate
P:UIKit.UIPickerView.Model
-P:UIKit.UIPickerView.NumberOfComponents
-P:UIKit.UIPickerView.ShowSelectionIndicator
-P:UIKit.UIPickerView.WeakDataSource
-P:UIKit.UIPickerView.WeakDelegate
-P:UIKit.UIPinchGestureRecognizer.Scale
-P:UIKit.UIPinchGestureRecognizer.Velocity
-P:UIKit.UIPointerAccessory.OrientationMatchesAngle
-P:UIKit.UIPointerAccessory.Position
-P:UIKit.UIPointerAccessory.Shape
P:UIKit.UIPointerAccessoryPosition.Bottom
P:UIKit.UIPointerAccessoryPosition.BottomLeft
P:UIKit.UIPointerAccessoryPosition.BottomRight
@@ -99008,125 +65099,26 @@ P:UIKit.UIPointerAccessoryPosition.Right
P:UIKit.UIPointerAccessoryPosition.Top
P:UIKit.UIPointerAccessoryPosition.TopLeft
P:UIKit.UIPointerAccessoryPosition.TopRight
-P:UIKit.UIPointerEffect.Preview
-P:UIKit.UIPointerHoverEffect.PreferredTintMode
-P:UIKit.UIPointerHoverEffect.PrefersScaledContent
-P:UIKit.UIPointerHoverEffect.PrefersShadow
-P:UIKit.UIPointerInteraction.Delegate
P:UIKit.UIPointerInteraction.Enabled
-P:UIKit.UIPointerInteraction.View
P:UIKit.UIPointerLockState.DidChangeNotification
P:UIKit.UIPointerLockState.Locked
P:UIKit.UIPointerLockStateDidChangeEventArgs.Scene
-P:UIKit.UIPointerRegion.Identifier
-P:UIKit.UIPointerRegion.LatchingAxes
-P:UIKit.UIPointerRegion.Rect
-P:UIKit.UIPointerRegionRequest.Location
-P:UIKit.UIPointerRegionRequest.Modifiers
-P:UIKit.UIPointerStyle.Accessories
-P:UIKit.UIPopoverBackgroundView.ArrowDirection
-P:UIKit.UIPopoverBackgroundView.ArrowOffset
-P:UIKit.UIPopoverBackgroundView.WantsDefaultContentAppearance
-P:UIKit.UIPopoverController.BackgroundColor
-P:UIKit.UIPopoverController.ContentViewController
P:UIKit.UIPopoverController.Delegate
-P:UIKit.UIPopoverController.PassthroughViews
-P:UIKit.UIPopoverController.PopoverArrowDirection
P:UIKit.UIPopoverController.PopoverBackgroundViewType
-P:UIKit.UIPopoverController.PopoverContentSize
-P:UIKit.UIPopoverController.PopoverLayoutMargins
P:UIKit.UIPopoverController.PopoverVisible
P:UIKit.UIPopoverController.ShouldDismiss
-P:UIKit.UIPopoverController.WeakDelegate
P:UIKit.UIPopoverControllerRepositionEventArgs.Rect
P:UIKit.UIPopoverControllerRepositionEventArgs.View
-P:UIKit.UIPopoverPresentationController.AdaptiveSheetPresentationController
-P:UIKit.UIPopoverPresentationController.ArrowDirection
-P:UIKit.UIPopoverPresentationController.BackgroundColor
-P:UIKit.UIPopoverPresentationController.BarButtonItem
-P:UIKit.UIPopoverPresentationController.CanOverlapSourceViewRect
P:UIKit.UIPopoverPresentationController.Delegate
-P:UIKit.UIPopoverPresentationController.PassthroughViews
-P:UIKit.UIPopoverPresentationController.PermittedArrowDirections
P:UIKit.UIPopoverPresentationController.PopoverBackgroundViewType
-P:UIKit.UIPopoverPresentationController.PopoverLayoutMargins
P:UIKit.UIPopoverPresentationController.ShouldDismissPopover
-P:UIKit.UIPopoverPresentationController.SourceItem
-P:UIKit.UIPopoverPresentationController.SourceRect
-P:UIKit.UIPopoverPresentationController.SourceView
-P:UIKit.UIPopoverPresentationController.WeakDelegate
P:UIKit.UIPopoverPresentationControllerRepositionEventArgs.InView
P:UIKit.UIPopoverPresentationControllerRepositionEventArgs.TargetRect
-P:UIKit.UIPresentationController.ContainerView
P:UIKit.UIPresentationController.Delegate
-P:UIKit.UIPresentationController.FocusGroupIdentifier
-P:UIKit.UIPresentationController.FocusItemContainer
-P:UIKit.UIPresentationController.FrameOfPresentedViewInContainerView
-P:UIKit.UIPresentationController.OverrideTraitCollection
-P:UIKit.UIPresentationController.ParentFocusEnvironment
-P:UIKit.UIPresentationController.PreferredContentSize
-P:UIKit.UIPresentationController.PreferredFocusedView
-P:UIKit.UIPresentationController.PreferredFocusEnvironments
-P:UIKit.UIPresentationController.PresentationStyle
-P:UIKit.UIPresentationController.PresentedView
-P:UIKit.UIPresentationController.PresentedViewController
-P:UIKit.UIPresentationController.PresentingViewController
-P:UIKit.UIPresentationController.ShouldPresentInFullscreen
-P:UIKit.UIPresentationController.ShouldRemovePresentersView
-P:UIKit.UIPresentationController.TraitCollection
-P:UIKit.UIPresentationController.TraitOverrides
-P:UIKit.UIPresentationController.WeakDelegate
-P:UIKit.UIPress.Force
-P:UIKit.UIPress.GestureRecognizers
-P:UIKit.UIPress.Key
-P:UIKit.UIPress.Phase
-P:UIKit.UIPress.Responder
-P:UIKit.UIPress.Timestamp
-P:UIKit.UIPress.Type
-P:UIKit.UIPress.Window
-P:UIKit.UIPressesEvent.AllPresses
-P:UIKit.UIPreviewAction.Handler
-P:UIKit.UIPreviewAction.Title
-P:UIKit.UIPreviewActionGroup.Title
-P:UIKit.UIPreviewInteraction.Delegate
P:UIKit.UIPreviewInteraction.ShouldBegin
-P:UIKit.UIPreviewInteraction.View
-P:UIKit.UIPreviewParameters.BackgroundColor
-P:UIKit.UIPreviewParameters.ShadowPath
-P:UIKit.UIPreviewParameters.VisiblePath
-P:UIKit.UIPreviewTarget.Center
-P:UIKit.UIPreviewTarget.Container
-P:UIKit.UIPreviewTarget.Transform
-P:UIKit.UIPrinter.DisplayLocation
-P:UIKit.UIPrinter.DisplayName
-P:UIKit.UIPrinter.MakeAndModel
-P:UIKit.UIPrinter.SupportedJobTypes
-P:UIKit.UIPrinter.SupportsColor
-P:UIKit.UIPrinter.SupportsDuplex
-P:UIKit.UIPrinter.Url
-P:UIKit.UIPrinterDestination.DisplayName
-P:UIKit.UIPrinterDestination.TxtRecord
-P:UIKit.UIPrinterDestination.Url
P:UIKit.UIPrinterPickerCompletionResult.PrinterPickerController
P:UIKit.UIPrinterPickerCompletionResult.UserDidSelect
P:UIKit.UIPrinterPickerController.Delegate
-P:UIKit.UIPrinterPickerController.SelectedPrinter
-P:UIKit.UIPrinterPickerController.WeakDelegate
-P:UIKit.UIPrintFormatter.ContentInsets
-P:UIKit.UIPrintFormatter.MaximumContentHeight
-P:UIKit.UIPrintFormatter.MaximumContentWidth
-P:UIKit.UIPrintFormatter.PageCount
-P:UIKit.UIPrintFormatter.PerPageContentInsets
-P:UIKit.UIPrintFormatter.PrintPageRenderer
-P:UIKit.UIPrintFormatter.RequiresMainThread
-P:UIKit.UIPrintFormatter.StartPage
-P:UIKit.UIPrintInfo.Duplex
-P:UIKit.UIPrintInfo.JobName
-P:UIKit.UIPrintInfo.Orientation
-P:UIKit.UIPrintInfo.OutputType
-P:UIKit.UIPrintInfo.PrinterID
-P:UIKit.UIPrintInfo.PrintInfo
-P:UIKit.UIPrintInfo.ToDictionary
P:UIKit.UIPrintInteractionCompletionResult.Completed
P:UIKit.UIPrintInteractionCompletionResult.PrintInteractionController
P:UIKit.UIPrintInteractionController.ChooseCutterBehavior
@@ -99134,393 +65126,95 @@ P:UIKit.UIPrintInteractionController.ChoosePaper
P:UIKit.UIPrintInteractionController.CutLengthForPaper
P:UIKit.UIPrintInteractionController.Delegate
P:UIKit.UIPrintInteractionController.GetViewController
-P:UIKit.UIPrintInteractionController.PrintableUTIs
-P:UIKit.UIPrintInteractionController.PrintFormatter
-P:UIKit.UIPrintInteractionController.PrintInfo
P:UIKit.UIPrintInteractionController.PrintingAvailable
-P:UIKit.UIPrintInteractionController.PrintingItem
-P:UIKit.UIPrintInteractionController.PrintingItems
-P:UIKit.UIPrintInteractionController.PrintPageRenderer
-P:UIKit.UIPrintInteractionController.PrintPaper
-P:UIKit.UIPrintInteractionController.SharedPrintController
-P:UIKit.UIPrintInteractionController.ShowsNumberOfCopies
-P:UIKit.UIPrintInteractionController.ShowsPageRange
-P:UIKit.UIPrintInteractionController.ShowsPaperOrientation
-P:UIKit.UIPrintInteractionController.ShowsPaperSelectionForLoadedPapers
-P:UIKit.UIPrintInteractionController.WeakDelegate
P:UIKit.UIPrintInteractionResult.Completed
P:UIKit.UIPrintInteractionResult.PrintInteractionController
-P:UIKit.UIPrintPageRenderer.FooterHeight
-P:UIKit.UIPrintPageRenderer.HeaderHeight
-P:UIKit.UIPrintPageRenderer.NumberOfPages
-P:UIKit.UIPrintPageRenderer.PaperRect
-P:UIKit.UIPrintPageRenderer.PrintableRect
-P:UIKit.UIPrintPageRenderer.PrintFormatters
-P:UIKit.UIPrintPaper.PaperSize
-P:UIKit.UIPrintPaper.PrintableRect
-P:UIKit.UIProgressView.ObservedProgress
-P:UIKit.UIProgressView.Progress
-P:UIKit.UIProgressView.ProgressImage
-P:UIKit.UIProgressView.ProgressTintColor
-P:UIKit.UIProgressView.Style
-P:UIKit.UIProgressView.TrackImage
-P:UIKit.UIProgressView.TrackTintColor
P:UIKit.UIProgressView.UIProgressViewAppearance.ProgressImage
P:UIKit.UIProgressView.UIProgressViewAppearance.ProgressTintColor
P:UIKit.UIProgressView.UIProgressViewAppearance.TrackImage
P:UIKit.UIProgressView.UIProgressViewAppearance.TrackTintColor
-P:UIKit.UIPushBehavior.Active
-P:UIKit.UIPushBehavior.Angle
-P:UIKit.UIPushBehavior.Items
-P:UIKit.UIPushBehavior.Magnitude
-P:UIKit.UIPushBehavior.Mode
-P:UIKit.UIPushBehavior.PushDirection
-P:UIKit.UIRefreshControl.AttributedTitle
P:UIKit.UIRefreshControl.Refreshing
P:UIKit.UIRefreshControl.UIRefreshControlAppearance.AttributedTitle
-P:UIKit.UIRegion.Infinite
-P:UIKit.UIResolvedShape.BoundingRect
-P:UIKit.UIResolvedShape.Path
-P:UIKit.UIResolvedShape.Shape
-P:UIKit.UIResponder.AccessibilityAssistiveTechnologyFocusedIdentifiers
-P:UIKit.UIResponder.AccessibilityCustomActions
-P:UIKit.UIResponder.AccessibilityDragSourceDescriptors
-P:UIKit.UIResponder.AccessibilityDropPointDescriptors
-P:UIKit.UIResponder.ActivityItemsConfiguration
-P:UIKit.UIResponder.CanBecomeFirstResponder
-P:UIKit.UIResponder.CanResignFirstResponder
-P:UIKit.UIResponder.EditingInteractionConfiguration
-P:UIKit.UIResponder.InputAccessoryView
-P:UIKit.UIResponder.InputAccessoryViewController
-P:UIKit.UIResponder.InputAssistantItem
-P:UIKit.UIResponder.InputView
-P:UIKit.UIResponder.InputViewController
-P:UIKit.UIResponder.IsFirstResponder
-P:UIKit.UIResponder.KeyCommands
-P:UIKit.UIResponder.NextResponder
-P:UIKit.UIResponder.PasteConfiguration
-P:UIKit.UIResponder.TextInputContextIdentifier
-P:UIKit.UIResponder.TextInputMode
-P:UIKit.UIResponder.TouchBar
-P:UIKit.UIResponder.UndoManager
-P:UIKit.UIResponder.UserActivity
-P:UIKit.UIRotationGestureRecognizer.Rotation
-P:UIKit.UIRotationGestureRecognizer.Velocity
-P:UIKit.UIScene.ActivationConditions
-P:UIKit.UIScene.ActivationState
P:UIKit.UIScene.Delegate
P:UIKit.UIScene.DidActivateNotification
P:UIKit.UIScene.DidDisconnectNotification
P:UIKit.UIScene.DidEnterBackgroundNotification
-P:UIKit.UIScene.PointerLockState
-P:UIKit.UIScene.Session
-P:UIKit.UIScene.Subtitle
P:UIKit.UIScene.SystemProtectionDidChangeNotification
-P:UIKit.UIScene.SystemProtectionManager
-P:UIKit.UIScene.Title
-P:UIKit.UIScene.WeakDelegate
P:UIKit.UIScene.WillConnectNotification
P:UIKit.UIScene.WillDeactivateNotification
P:UIKit.UIScene.WillEnterForegroundNotification
-P:UIKit.UISceneActivationConditions.CanActivateForTargetContentIdentifierPredicate
-P:UIKit.UISceneActivationConditions.PrefersToActivateForTargetContentIdentifierPredicate
-P:UIKit.UISceneActivationRequestOptions.CollectionJoinBehavior
-P:UIKit.UISceneActivationRequestOptions.RequestingScene
-P:UIKit.UISceneConfiguration.DelegateClass
P:UIKit.UISceneConfiguration.DelegateType
-P:UIKit.UISceneConfiguration.Name
-P:UIKit.UISceneConfiguration.Role
-P:UIKit.UISceneConfiguration.SceneClass
P:UIKit.UISceneConfiguration.SceneType
-P:UIKit.UISceneConfiguration.Storyboard
-P:UIKit.UISceneConnectionOptions.CloudKitShareMetadata
-P:UIKit.UISceneConnectionOptions.HandoffUserActivityType
-P:UIKit.UISceneConnectionOptions.NotificationResponse
-P:UIKit.UISceneConnectionOptions.ShortcutItem
-P:UIKit.UISceneConnectionOptions.SourceApplication
-P:UIKit.UISceneConnectionOptions.UrlContexts
-P:UIKit.UISceneConnectionOptions.UserActivities
-P:UIKit.UISceneOpenExternalUrlOptions.EventAttribution
-P:UIKit.UISceneOpenExternalUrlOptions.UniversalLinksOnly
-P:UIKit.UISceneOpenUrlOptions.Annotation
-P:UIKit.UISceneOpenUrlOptions.EventAttribution
-P:UIKit.UISceneOpenUrlOptions.OpenInPlace
-P:UIKit.UISceneOpenUrlOptions.SourceApplication
-P:UIKit.UISceneSession.Configuration
-P:UIKit.UISceneSession.PersistentIdentifier
-P:UIKit.UISceneSession.Role
-P:UIKit.UISceneSession.Scene
-P:UIKit.UISceneSession.StateRestorationActivity
-P:UIKit.UISceneSession.UserInfo
-P:UIKit.UISceneSessionActivationRequest.Options
-P:UIKit.UISceneSessionActivationRequest.Role
-P:UIKit.UISceneSessionActivationRequest.Session
-P:UIKit.UISceneSessionActivationRequest.UserActivity
-P:UIKit.UISceneSizeRestrictions.AllowsFullScreen
-P:UIKit.UISceneSizeRestrictions.MaximumSize
-P:UIKit.UISceneSizeRestrictions.MinimumSize
P:UIKit.UISceneSystemProtectionManager.UserAuthenticationEnabled
P:UIKit.UISceneWindowingBehaviors.Closable
P:UIKit.UISceneWindowingBehaviors.Miniaturizable
-P:UIKit.UIScreen.ApplicationFrame
-P:UIKit.UIScreen.AvailableModes
-P:UIKit.UIScreen.Bounds
-P:UIKit.UIScreen.Brightness
P:UIKit.UIScreen.BrightnessDidChangeNotification
-P:UIKit.UIScreen.CalibratedLatency
P:UIKit.UIScreen.Captured
P:UIKit.UIScreen.CapturedDidChangeNotification
-P:UIKit.UIScreen.CoordinateSpace
-P:UIKit.UIScreen.CurrentEdrHeadroom
-P:UIKit.UIScreen.CurrentMode
P:UIKit.UIScreen.DidConnectNotification
P:UIKit.UIScreen.DidDisconnectNotification
-P:UIKit.UIScreen.FixedCoordinateSpace
-P:UIKit.UIScreen.FocusedItem
-P:UIKit.UIScreen.FocusedView
-P:UIKit.UIScreen.MainScreen
-P:UIKit.UIScreen.MaximumFramesPerSecond
-P:UIKit.UIScreen.MirroredScreen
P:UIKit.UIScreen.ModeDidChangeNotification
-P:UIKit.UIScreen.NativeBounds
-P:UIKit.UIScreen.NativeScale
-P:UIKit.UIScreen.OverscanCompensation
-P:UIKit.UIScreen.OverscanCompensationInsets
-P:UIKit.UIScreen.PotentialEdrHeadroom
-P:UIKit.UIScreen.PreferredMode
-P:UIKit.UIScreen.ReferenceDisplayModeStatus
P:UIKit.UIScreen.ReferenceDisplayModeStatusDidChangeNotification
-P:UIKit.UIScreen.Scale
-P:UIKit.UIScreen.Screens
-P:UIKit.UIScreen.SupportsFocus
-P:UIKit.UIScreen.TraitCollection
-P:UIKit.UIScreen.WantsSoftwareDimming
-P:UIKit.UIScreenEdgePanGestureRecognizer.Edges
-P:UIKit.UIScreenMode.PixelAspectRatio
-P:UIKit.UIScreenMode.Size
P:UIKit.UIScreenshotService.Delegate
-P:UIKit.UIScreenshotService.WeakDelegate
-P:UIKit.UIScreenshotService.WindowScene
P:UIKit.UIScribbleInteraction.Delegate
P:UIKit.UIScribbleInteraction.HandlingWriting
P:UIKit.UIScribbleInteraction.PencilInputExpected
-P:UIKit.UIScribbleInteraction.View
-P:UIKit.UIScribbleInteraction.WeakDelegate
-P:UIKit.UIScrollView.AdjustedContentInset
-P:UIKit.UIScrollView.AllowsKeyboardScrolling
-P:UIKit.UIScrollView.AlwaysBounceHorizontal
-P:UIKit.UIScrollView.AlwaysBounceVertical
-P:UIKit.UIScrollView.AutomaticallyAdjustsScrollIndicatorInsets
-P:UIKit.UIScrollView.Bounces
-P:UIKit.UIScrollView.BouncesHorizontally
-P:UIKit.UIScrollView.BouncesVertically
-P:UIKit.UIScrollView.BouncesZoom
-P:UIKit.UIScrollView.CanCancelContentTouches
-P:UIKit.UIScrollView.ContentAlignmentPoint
-P:UIKit.UIScrollView.ContentInset
-P:UIKit.UIScrollView.ContentInsetAdjustmentBehavior
-P:UIKit.UIScrollView.ContentLayoutGuide
-P:UIKit.UIScrollView.ContentOffset
-P:UIKit.UIScrollView.ContentSize
-P:UIKit.UIScrollView.CoordinateSpace
P:UIKit.UIScrollView.Decelerating
-P:UIKit.UIScrollView.DecelerationRate
P:UIKit.UIScrollView.DecelerationRateFast
P:UIKit.UIScrollView.DecelerationRateNormal
-P:UIKit.UIScrollView.DelaysContentTouches
P:UIKit.UIScrollView.Delegate
P:UIKit.UIScrollView.DirectionalLockEnabled
-P:UIKit.UIScrollView.DirectionalPressGestureRecognizer
P:UIKit.UIScrollView.Dragging
-P:UIKit.UIScrollView.FrameLayoutGuide
-P:UIKit.UIScrollView.HorizontalScrollIndicatorInsets
-P:UIKit.UIScrollView.IndexDisplayMode
-P:UIKit.UIScrollView.IndicatorStyle
-P:UIKit.UIScrollView.KeyboardDismissMode
-P:UIKit.UIScrollView.MaximumZoomScale
-P:UIKit.UIScrollView.MinimumZoomScale
P:UIKit.UIScrollView.PagingEnabled
-P:UIKit.UIScrollView.PanGestureRecognizer
-P:UIKit.UIScrollView.PinchGestureRecognizer
-P:UIKit.UIScrollView.RefreshControl
P:UIKit.UIScrollView.ScrollAnimating
P:UIKit.UIScrollView.ScrollEnabled
-P:UIKit.UIScrollView.ScrollIndicatorInsets
-P:UIKit.UIScrollView.ScrollsToTop
P:UIKit.UIScrollView.ShouldScrollToTop
-P:UIKit.UIScrollView.ShowsHorizontalScrollIndicator
-P:UIKit.UIScrollView.ShowsVerticalScrollIndicator
P:UIKit.UIScrollView.Tracking
-P:UIKit.UIScrollView.TransfersHorizontalScrollingToParent
-P:UIKit.UIScrollView.TransfersVerticalScrollingToParent
-P:UIKit.UIScrollView.VerticalScrollIndicatorInsets
P:UIKit.UIScrollView.ViewForZoomingInScrollView
-P:UIKit.UIScrollView.VisibleSize
-P:UIKit.UIScrollView.WeakDelegate
P:UIKit.UIScrollView.ZoomAnimating
P:UIKit.UIScrollView.ZoomBouncing
P:UIKit.UIScrollView.Zooming
-P:UIKit.UIScrollView.ZoomScale
P:UIKit.UIScrollViewZoomingEventArgs.View
-P:UIKit.UISearchBar.AllowedWritingToolsResultOptions
-P:UIKit.UISearchBar.AutocapitalizationType
-P:UIKit.UISearchBar.AutocorrectionType
-P:UIKit.UISearchBar.BackgroundImage
-P:UIKit.UISearchBar.BarPosition
-P:UIKit.UISearchBar.BarStyle
-P:UIKit.UISearchBar.BarTintColor
P:UIKit.UISearchBar.Delegate
P:UIKit.UISearchBar.Enabled
-P:UIKit.UISearchBar.EnablesReturnKeyAutomatically
-P:UIKit.UISearchBar.InlinePredictionType
-P:UIKit.UISearchBar.InputAccessoryView
-P:UIKit.UISearchBar.InputAssistantItem
-P:UIKit.UISearchBar.KeyboardAppearance
-P:UIKit.UISearchBar.KeyboardType
P:UIKit.UISearchBar.LookToDictateEnabled
-P:UIKit.UISearchBar.MathExpressionCompletionType
-P:UIKit.UISearchBar.PasswordRules
-P:UIKit.UISearchBar.Placeholder
-P:UIKit.UISearchBar.Prompt
-P:UIKit.UISearchBar.ReturnKeyType
-P:UIKit.UISearchBar.ScopeBarBackgroundImage
-P:UIKit.UISearchBar.ScopeButtonTitles
-P:UIKit.UISearchBar.SearchBarStyle
-P:UIKit.UISearchBar.SearchFieldBackgroundPositionAdjustment
P:UIKit.UISearchBar.SearchResultsButtonSelected
-P:UIKit.UISearchBar.SearchTextField
-P:UIKit.UISearchBar.SearchTextPositionAdjustment
P:UIKit.UISearchBar.SecureTextEntry
-P:UIKit.UISearchBar.SelectedScopeButtonIndex
P:UIKit.UISearchBar.ShouldBeginEditing
P:UIKit.UISearchBar.ShouldChangeTextInRange
P:UIKit.UISearchBar.ShouldEndEditing
-P:UIKit.UISearchBar.ShowsBookmarkButton
-P:UIKit.UISearchBar.ShowsCancelButton
-P:UIKit.UISearchBar.ShowsScopeBar
-P:UIKit.UISearchBar.ShowsSearchResultsButton
-P:UIKit.UISearchBar.SmartDashesType
-P:UIKit.UISearchBar.SmartInsertDeleteType
-P:UIKit.UISearchBar.SmartQuotesType
-P:UIKit.UISearchBar.SpellCheckingType
-P:UIKit.UISearchBar.Text
-P:UIKit.UISearchBar.TextContentType
P:UIKit.UISearchBar.Translucent
P:UIKit.UISearchBar.UISearchBarAppearance.BackgroundImage
P:UIKit.UISearchBar.UISearchBarAppearance.BarTintColor
P:UIKit.UISearchBar.UISearchBarAppearance.ScopeBarBackgroundImage
P:UIKit.UISearchBar.UISearchBarAppearance.SearchFieldBackgroundPositionAdjustment
P:UIKit.UISearchBar.UISearchBarAppearance.SearchTextPositionAdjustment
-P:UIKit.UISearchBar.WeakDelegate
-P:UIKit.UISearchBar.WritingToolsBehavior
P:UIKit.UISearchBarButtonIndexEventArgs.SelectedScope
P:UIKit.UISearchBarTextChangedEventArgs.SearchText
-P:UIKit.UISearchContainerViewController.SearchController
P:UIKit.UISearchController.Active
-P:UIKit.UISearchController.AutomaticallyShowsCancelButton
-P:UIKit.UISearchController.AutomaticallyShowsScopeBar
-P:UIKit.UISearchController.AutomaticallyShowsSearchResultsController
P:UIKit.UISearchController.Delegate
-P:UIKit.UISearchController.DimsBackgroundDuringPresentation
-P:UIKit.UISearchController.HidesNavigationBarDuringPresentation
-P:UIKit.UISearchController.IgnoresSearchSuggestionsForSearchBarPlacementStacked
-P:UIKit.UISearchController.ObscuresBackgroundDuringPresentation
-P:UIKit.UISearchController.ScopeBarActivation
-P:UIKit.UISearchController.SearchBar
-P:UIKit.UISearchController.SearchBarPlacement
-P:UIKit.UISearchController.SearchControllerObservedScrollView
-P:UIKit.UISearchController.SearchResultsController
P:UIKit.UISearchController.SearchResultsUpdater
-P:UIKit.UISearchController.SearchSuggestions
-P:UIKit.UISearchController.ShowsSearchResultsController
-P:UIKit.UISearchController.WeakDelegate
-P:UIKit.UISearchController.WeakSearchResultsUpdater
P:UIKit.UISearchDisplayController.Active
P:UIKit.UISearchDisplayController.Delegate
-P:UIKit.UISearchDisplayController.DisplaysSearchBarInNavigationBar
-P:UIKit.UISearchDisplayController.NavigationItem
-P:UIKit.UISearchDisplayController.SearchBar
-P:UIKit.UISearchDisplayController.SearchContentsController
P:UIKit.UISearchDisplayController.SearchResultsDataSource
P:UIKit.UISearchDisplayController.SearchResultsDelegate
P:UIKit.UISearchDisplayController.SearchResultsSource
-P:UIKit.UISearchDisplayController.SearchResultsTableView
-P:UIKit.UISearchDisplayController.SearchResultsTitle
-P:UIKit.UISearchDisplayController.SearchResultsWeakDataSource
-P:UIKit.UISearchDisplayController.SearchResultsWeakDelegate
-P:UIKit.UISearchDisplayController.WeakDelegate
-P:UIKit.UISearchSuggestionItem.LocalizedAttributedSuggestion
-P:UIKit.UISearchSuggestionItem.LocalizedSuggestion
-P:UIKit.UISearchSuggestionItem.RepresentedObject
-P:UIKit.UISearchTextField.AllowsCopyingTokens
-P:UIKit.UISearchTextField.AllowsDeletingTokens
-P:UIKit.UISearchTextField.SearchSuggestions
-P:UIKit.UISearchTextField.TextualRange
-P:UIKit.UISearchTextField.TokenBackgroundColor
-P:UIKit.UISearchTextField.Tokens
-P:UIKit.UISearchToken.RepresentedObject
-P:UIKit.UISegmentedControl.ApportionsSegmentWidthsByContent
-P:UIKit.UISegmentedControl.ControlStyle
P:UIKit.UISegmentedControl.Momentary
-P:UIKit.UISegmentedControl.NumberOfSegments
-P:UIKit.UISegmentedControl.SelectedSegment
-P:UIKit.UISegmentedControl.SelectedSegmentTintColor
P:UIKit.UISegmentedControl.SpringLoaded
P:UIKit.UISegmentedControl.UISegmentedControlAppearance.SelectedSegmentTintColor
-P:UIKit.UIShadowProperties.Color
-P:UIKit.UIShadowProperties.Offset
-P:UIKit.UIShadowProperties.Opacity
-P:UIKit.UIShadowProperties.Path
-P:UIKit.UIShadowProperties.Radius
-P:UIKit.UIShapeResolutionContext.ContentShape
P:UIKit.UISheetPresentationController.Delegate
-P:UIKit.UISheetPresentationController.Detents
-P:UIKit.UISheetPresentationController.LargestUndimmedDetentIdentifier
-P:UIKit.UISheetPresentationController.PreferredCornerRadius
-P:UIKit.UISheetPresentationController.PrefersEdgeAttachedInCompactHeight
-P:UIKit.UISheetPresentationController.PrefersGrabberVisible
-P:UIKit.UISheetPresentationController.PrefersPageSizing
-P:UIKit.UISheetPresentationController.PrefersScrollingExpandsWhenScrolledToEdge
-P:UIKit.UISheetPresentationController.SelectedDetentIdentifier
-P:UIKit.UISheetPresentationController.SourceView
-P:UIKit.UISheetPresentationController.WeakDelegate
-P:UIKit.UISheetPresentationController.WidthFollowsPreferredContentSizeWhenEdgeAttached
P:UIKit.UISheetPresentationControllerDetent.AutomaticDimension
P:UIKit.UISheetPresentationControllerDetent.DetentInactive
-P:UIKit.UISheetPresentationControllerDetent.Identifier
-P:UIKit.UISimpleTextPrintFormatter.AttributedText
-P:UIKit.UISimpleTextPrintFormatter.Color
-P:UIKit.UISimpleTextPrintFormatter.Font
-P:UIKit.UISimpleTextPrintFormatter.Text
-P:UIKit.UISimpleTextPrintFormatter.TextAlignment
-P:UIKit.UISlider.BehavioralStyle
P:UIKit.UISlider.Continuous
-P:UIKit.UISlider.CurrentMaxTrackImage
-P:UIKit.UISlider.CurrentMinTrackImage
-P:UIKit.UISlider.CurrentThumbImage
-P:UIKit.UISlider.MaximumTrackTintColor
-P:UIKit.UISlider.MaxValue
-P:UIKit.UISlider.MaxValueImage
-P:UIKit.UISlider.MinimumTrackTintColor
-P:UIKit.UISlider.MinValue
-P:UIKit.UISlider.MinValueImage
-P:UIKit.UISlider.PreferredBehavioralStyle
-P:UIKit.UISlider.ThumbTintColor
P:UIKit.UISlider.UISliderAppearance.MaximumTrackTintColor
P:UIKit.UISlider.UISliderAppearance.MaxValueImage
P:UIKit.UISlider.UISliderAppearance.MinimumTrackTintColor
P:UIKit.UISlider.UISliderAppearance.MinValueImage
P:UIKit.UISlider.UISliderAppearance.ThumbTintColor
-P:UIKit.UISlider.Value
-P:UIKit.UISnapBehavior.Damping
-P:UIKit.UISnapBehavior.SnapPoint
P:UIKit.UISplitViewController.AutomaticDimension
P:UIKit.UISplitViewController.Collapsed
P:UIKit.UISplitViewController.CollapseSecondViewController
P:UIKit.UISplitViewController.Delegate
-P:UIKit.UISplitViewController.DisplayMode
-P:UIKit.UISplitViewController.DisplayModeButtonItem
-P:UIKit.UISplitViewController.DisplayModeButtonVisibility
P:UIKit.UISplitViewController.EventShowDetailViewController
P:UIKit.UISplitViewController.EventShowViewController
P:UIKit.UISplitViewController.GetDisplayModeForExpanding
@@ -99529,29 +65223,9 @@ P:UIKit.UISplitViewController.GetPrimaryViewControllerForCollapsingSplitViewCont
P:UIKit.UISplitViewController.GetPrimaryViewControllerForExpandingSplitViewController
P:UIKit.UISplitViewController.GetTargetDisplayModeForAction
P:UIKit.UISplitViewController.GetTopColumnForCollapsing
-P:UIKit.UISplitViewController.MaximumPrimaryColumnWidth
-P:UIKit.UISplitViewController.MaximumSupplementaryColumnWidth
-P:UIKit.UISplitViewController.MinimumPrimaryColumnWidth
-P:UIKit.UISplitViewController.MinimumSupplementaryColumnWidth
-P:UIKit.UISplitViewController.PreferredDisplayMode
-P:UIKit.UISplitViewController.PreferredPrimaryColumnWidth
-P:UIKit.UISplitViewController.PreferredPrimaryColumnWidthFraction
-P:UIKit.UISplitViewController.PreferredSplitBehavior
-P:UIKit.UISplitViewController.PreferredSupplementaryColumnWidth
-P:UIKit.UISplitViewController.PreferredSupplementaryColumnWidthFraction
-P:UIKit.UISplitViewController.PresentsWithGesture
-P:UIKit.UISplitViewController.PrimaryBackgroundStyle
-P:UIKit.UISplitViewController.PrimaryColumnWidth
-P:UIKit.UISplitViewController.PrimaryEdge
P:UIKit.UISplitViewController.SeparateSecondaryViewController
P:UIKit.UISplitViewController.ShouldHideViewController
-P:UIKit.UISplitViewController.ShowsSecondaryOnlyButton
-P:UIKit.UISplitViewController.SplitBehavior
-P:UIKit.UISplitViewController.Style
-P:UIKit.UISplitViewController.SupplementaryColumnWidth
P:UIKit.UISplitViewController.SupportedInterfaceOrientations
-P:UIKit.UISplitViewController.ViewControllers
-P:UIKit.UISplitViewController.WeakDelegate
P:UIKit.UISplitViewControllerDisplayModeEventArgs.DisplayMode
P:UIKit.UISplitViewControllerWillShowHideColumnEventArgs.Column
P:UIKit.UISplitViewHideEventArgs.AViewController
@@ -99561,43 +65235,14 @@ P:UIKit.UISplitViewPresentEventArgs.AViewController
P:UIKit.UISplitViewPresentEventArgs.Pc
P:UIKit.UISplitViewShowEventArgs.AViewController
P:UIKit.UISplitViewShowEventArgs.Button
-P:UIKit.UISpringLoadedInteraction.InteractionBehavior
-P:UIKit.UISpringLoadedInteraction.InteractionEffect
-P:UIKit.UISpringLoadedInteraction.View
-P:UIKit.UISpringTimingParameters.CubicTimingParameters
-P:UIKit.UISpringTimingParameters.InitialVelocity
-P:UIKit.UISpringTimingParameters.SpringTimingParameters
-P:UIKit.UISpringTimingParameters.TimingCurveType
-P:UIKit.UIStackView.Alignment
-P:UIKit.UIStackView.ArrangedSubviews
-P:UIKit.UIStackView.Axis
P:UIKit.UIStackView.BaselineRelativeArrangement
-P:UIKit.UIStackView.Distribution
P:UIKit.UIStackView.LayoutMarginsRelativeArrangement
-P:UIKit.UIStackView.Spacing
P:UIKit.UIStandardTextCursorView.Blinking
P:UIKit.UIStateRestoration.ViewControllerStoryboardKey
-P:UIKit.UIStateRestoring.ObjectRestorationClass
-P:UIKit.UIStateRestoring.RestorationParent
P:UIKit.UIStatusBarFrameChangeEventArgs.StatusBarFrame
-P:UIKit.UIStatusBarManager.StatusBarFrame
P:UIKit.UIStatusBarManager.StatusBarHidden
-P:UIKit.UIStatusBarManager.StatusBarStyle
P:UIKit.UIStatusBarOrientationChangeEventArgs.StatusBarOrientation
-P:UIKit.UIStepper.AutoRepeat
P:UIKit.UIStepper.Continuous
-P:UIKit.UIStepper.MaximumValue
-P:UIKit.UIStepper.MinimumValue
-P:UIKit.UIStepper.StepValue
-P:UIKit.UIStepper.Value
-P:UIKit.UIStepper.Wraps
-P:UIKit.UIStoryboardPopoverSegue.PopoverController
-P:UIKit.UIStoryboardSegue.DestinationViewController
-P:UIKit.UIStoryboardSegue.Identifier
-P:UIKit.UIStoryboardSegue.SourceViewController
-P:UIKit.UIStoryboardUnwindSegueSource.Sender
-P:UIKit.UIStoryboardUnwindSegueSource.SourceViewController
-P:UIKit.UIStoryboardUnwindSegueSource.UnwindAction
P:UIKit.UIStringAttributeKey.AdaptiveImageGlyph
P:UIKit.UIStringAttributeKey.Attachment
P:UIKit.UIStringAttributeKey.BackgroundColor
@@ -99646,60 +65291,18 @@ P:UIKit.UIStringAttributes.UnderlineColor
P:UIKit.UIStringAttributes.UnderlineStyle
P:UIKit.UIStringAttributes.WeakTextEffect
P:UIKit.UIStringAttributes.WritingDirectionInt
-P:UIKit.UISwipeActionsConfiguration.Actions
-P:UIKit.UISwipeActionsConfiguration.PerformsFirstActionWithFullSwipe
-P:UIKit.UISwipeGestureRecognizer.Direction
-P:UIKit.UISwipeGestureRecognizer.NumberOfTouchesRequired
-P:UIKit.UISwitch.OffImage
P:UIKit.UISwitch.On
-P:UIKit.UISwitch.OnImage
-P:UIKit.UISwitch.OnTintColor
-P:UIKit.UISwitch.PreferredStyle
-P:UIKit.UISwitch.Style
-P:UIKit.UISwitch.ThumbTintColor
-P:UIKit.UISwitch.Title
P:UIKit.UISwitch.UISwitchAppearance.OffImage
P:UIKit.UISwitch.UISwitchAppearance.OnImage
P:UIKit.UISwitch.UISwitchAppearance.OnTintColor
P:UIKit.UISwitch.UISwitchAppearance.ThumbTintColor
-P:UIKit.UISymbolEffectCompletionContext.ContentTransition
-P:UIKit.UISymbolEffectCompletionContext.Effect
P:UIKit.UISymbolEffectCompletionContext.Finished
-P:UIKit.UISymbolEffectCompletionContext.Sender
-P:UIKit.UITab.AccessibilityIdentifier
-P:UIKit.UITab.AllowsHiding
-P:UIKit.UITab.BadgeValue
P:UIKit.UITab.Hidden
P:UIKit.UITab.HiddenByDefault
-P:UIKit.UITab.Identifier
-P:UIKit.UITab.Image
-P:UIKit.UITab.ManagingTabGroup
-P:UIKit.UITab.Parent
-P:UIKit.UITab.PreferredPlacement
P:UIKit.UITab.SpringLoaded
-P:UIKit.UITab.Subtitle
-P:UIKit.UITab.TabBarController
-P:UIKit.UITab.Title
-P:UIKit.UITab.UserInfo
-P:UIKit.UITab.ViewController
-P:UIKit.UITabBar.BackgroundImage
-P:UIKit.UITabBar.BarStyle
-P:UIKit.UITabBar.BarTintColor
P:UIKit.UITabBar.Delegate
P:UIKit.UITabBar.IsCustomizing
-P:UIKit.UITabBar.ItemPositioning
-P:UIKit.UITabBar.Items
-P:UIKit.UITabBar.ItemSpacing
-P:UIKit.UITabBar.ItemWidth
-P:UIKit.UITabBar.LeadingAccessoryView
-P:UIKit.UITabBar.ScrollEdgeAppearance
-P:UIKit.UITabBar.SelectedImageTintColor
-P:UIKit.UITabBar.SelectedItem
-P:UIKit.UITabBar.SelectionIndicatorImage
-P:UIKit.UITabBar.ShadowImage
P:UIKit.UITabBar.SpringLoaded
-P:UIKit.UITabBar.StandardAppearance
-P:UIKit.UITabBar.TrailingAccessoryView
P:UIKit.UITabBar.Translucent
P:UIKit.UITabBar.UITabBarAppearance.BackgroundImage
P:UIKit.UITabBar.UITabBarAppearance.BarStyle
@@ -99713,247 +65316,60 @@ P:UIKit.UITabBar.UITabBarAppearance.SelectionIndicatorImage
P:UIKit.UITabBar.UITabBarAppearance.ShadowImage
P:UIKit.UITabBar.UITabBarAppearance.StandardAppearance
P:UIKit.UITabBar.UITabBarAppearance.UnselectedItemTintColor
-P:UIKit.UITabBar.UnselectedItemTintColor
-P:UIKit.UITabBar.WeakDelegate
P:UIKit.UITabBarAcceptItemsEventArgs.Session
P:UIKit.UITabBarAcceptItemsEventArgs.Tab
-P:UIKit.UITabBarAppearance.CompactInlineLayoutAppearance
-P:UIKit.UITabBarAppearance.InlineLayoutAppearance
-P:UIKit.UITabBarAppearance.SelectionIndicatorImage
-P:UIKit.UITabBarAppearance.SelectionIndicatorTintColor
-P:UIKit.UITabBarAppearance.StackedItemPositioning
-P:UIKit.UITabBarAppearance.StackedItemSpacing
-P:UIKit.UITabBarAppearance.StackedItemWidth
-P:UIKit.UITabBarAppearance.StackedLayoutAppearance
-P:UIKit.UITabBarController.CompactTabIdentifiers
-P:UIKit.UITabBarController.CustomizableViewControllers
-P:UIKit.UITabBarController.CustomizationIdentifier
P:UIKit.UITabBarController.Delegate
P:UIKit.UITabBarController.GetAnimationControllerForTransition
P:UIKit.UITabBarController.GetDisplayedViewControllers
P:UIKit.UITabBarController.GetInteractionControllerForAnimationController
P:UIKit.UITabBarController.GetOperationForAcceptingItemsFromDropSession
P:UIKit.UITabBarController.GetPreferredInterfaceOrientation
-P:UIKit.UITabBarController.Mode
-P:UIKit.UITabBarController.MoreNavigationController
-P:UIKit.UITabBarController.SelectedIndex
-P:UIKit.UITabBarController.SelectedTab
-P:UIKit.UITabBarController.SelectedViewController
P:UIKit.UITabBarController.ShouldSelectTab
P:UIKit.UITabBarController.ShouldSelectViewController
-P:UIKit.UITabBarController.Sidebar
P:UIKit.UITabBarController.SupportedInterfaceOrientations
-P:UIKit.UITabBarController.TabBar
P:UIKit.UITabBarController.TabBarHidden
-P:UIKit.UITabBarController.Tabs
-P:UIKit.UITabBarController.ViewControllers
-P:UIKit.UITabBarController.WeakDelegate
-P:UIKit.UITabBarControllerSidebar.BottomBarView
P:UIKit.UITabBarControllerSidebar.Delegate
-P:UIKit.UITabBarControllerSidebar.FooterContentConfiguration
-P:UIKit.UITabBarControllerSidebar.HeaderContentConfiguration
P:UIKit.UITabBarControllerSidebar.Hidden
-P:UIKit.UITabBarControllerSidebar.PreferredLayout
-P:UIKit.UITabBarControllerSidebar.WeakDelegate
P:UIKit.UITabBarCustomizeChangeEventArgs.Changed
P:UIKit.UITabBarCustomizeChangeEventArgs.ViewControllers
P:UIKit.UITabBarCustomizeEventArgs.ViewControllers
P:UIKit.UITabBarDisplayOrderChangeEventArgs.Group
P:UIKit.UITabBarFinalItemsEventArgs.Changed
P:UIKit.UITabBarFinalItemsEventArgs.Items
-P:UIKit.UITabBarItem.BadgeColor
-P:UIKit.UITabBarItem.BadgeValue
P:UIKit.UITabBarItem.Enabled
-P:UIKit.UITabBarItem.FinishedSelectedImage
-P:UIKit.UITabBarItem.FinishedUnselectedImage
-P:UIKit.UITabBarItem.Image
-P:UIKit.UITabBarItem.ImageInsets
-P:UIKit.UITabBarItem.ScrollEdgeAppearance
-P:UIKit.UITabBarItem.SelectedImage
P:UIKit.UITabBarItem.SpringLoaded
-P:UIKit.UITabBarItem.StandardAppearance
-P:UIKit.UITabBarItem.Tag
-P:UIKit.UITabBarItem.Title
-P:UIKit.UITabBarItem.TitlePositionAdjustment
P:UIKit.UITabBarItem.UITabBarItemAppearance.BadgeColor
P:UIKit.UITabBarItem.UITabBarItemAppearance.ScrollEdgeAppearance
P:UIKit.UITabBarItem.UITabBarItemAppearance.StandardAppearance
P:UIKit.UITabBarItem.UITabBarItemAppearance.TitlePositionAdjustment
-P:UIKit.UITabBarItemAppearance.Disabled
-P:UIKit.UITabBarItemAppearance.Focused
-P:UIKit.UITabBarItemAppearance.Normal
-P:UIKit.UITabBarItemAppearance.Selected
P:UIKit.UITabBarItemEventArgs.Item
P:UIKit.UITabBarItemsEventArgs.Items
-P:UIKit.UITabBarItemStateAppearance.BadgeBackgroundColor
-P:UIKit.UITabBarItemStateAppearance.BadgePositionAdjustment
P:UIKit.UITabBarItemStateAppearance.BadgeTextAttributes
-P:UIKit.UITabBarItemStateAppearance.BadgeTitlePositionAdjustment
-P:UIKit.UITabBarItemStateAppearance.IconColor
-P:UIKit.UITabBarItemStateAppearance.TitlePositionAdjustment
P:UIKit.UITabBarItemStateAppearance.TitleTextAttributes
-P:UIKit.UITabBarItemStateAppearance.WeakBadgeTextAttributes
-P:UIKit.UITabBarItemStateAppearance.WeakTitleTextAttributes
P:UIKit.UITabBarSelectionEventArgs.ViewController
P:UIKit.UITabBarTabSelectionEventArgs.PreviousTab
P:UIKit.UITabBarTabSelectionEventArgs.Tab
P:UIKit.UITabBarTabVisibilityChangeEventArgs.Tabs
-P:UIKit.UITabGroup.AllowsReordering
-P:UIKit.UITabGroup.Children
-P:UIKit.UITabGroup.DefaultChildIdentifier
-P:UIKit.UITabGroup.DisplayOrder
-P:UIKit.UITabGroup.DisplayOrderIdentifiers
-P:UIKit.UITabGroup.ManagingNavigationController
-P:UIKit.UITabGroup.SelectedChild
-P:UIKit.UITabGroup.SidebarActions
-P:UIKit.UITabGroup.SidebarAppearance
-P:UIKit.UITableView.AllowsFocus
-P:UIKit.UITableView.AllowsFocusDuringEditing
-P:UIKit.UITableView.AllowsMultipleSelection
-P:UIKit.UITableView.AllowsMultipleSelectionDuringEditing
-P:UIKit.UITableView.AllowsSelection
-P:UIKit.UITableView.AllowsSelectionDuringEditing
P:UIKit.UITableView.AutomaticDimension
-P:UIKit.UITableView.BackgroundView
-P:UIKit.UITableView.CellLayoutMarginsFollowReadableWidth
-P:UIKit.UITableView.ContentHuggingElements
-P:UIKit.UITableView.ContextMenuInteraction
P:UIKit.UITableView.DataSource
P:UIKit.UITableView.Delegate
-P:UIKit.UITableView.DragDelegate
-P:UIKit.UITableView.DragInteractionEnabled
-P:UIKit.UITableView.DropDelegate
P:UIKit.UITableView.Editing
-P:UIKit.UITableView.EstimatedRowHeight
-P:UIKit.UITableView.EstimatedSectionFooterHeight
-P:UIKit.UITableView.EstimatedSectionHeaderHeight
-P:UIKit.UITableView.FillerRowHeight
-P:UIKit.UITableView.HasActiveDrag
-P:UIKit.UITableView.HasActiveDrop
-P:UIKit.UITableView.HasUncommittedUpdates
-P:UIKit.UITableView.IndexPathForSelectedRow
-P:UIKit.UITableView.IndexPathsForSelectedRows
-P:UIKit.UITableView.IndexPathsForVisibleRows
P:UIKit.UITableView.IndexSearch
-P:UIKit.UITableView.InsetsContentViewsToSafeArea
-P:UIKit.UITableView.PrefetchDataSource
P:UIKit.UITableView.PrefetchingEnabled
-P:UIKit.UITableView.RemembersLastFocusedIndexPath
-P:UIKit.UITableView.RowHeight
-P:UIKit.UITableView.SectionFooterHeight
-P:UIKit.UITableView.SectionHeaderHeight
-P:UIKit.UITableView.SectionHeaderTopPadding
-P:UIKit.UITableView.SectionIndexBackgroundColor
-P:UIKit.UITableView.SectionIndexColor
-P:UIKit.UITableView.SectionIndexMinimumDisplayRowCount
-P:UIKit.UITableView.SectionIndexTrackingBackgroundColor
P:UIKit.UITableView.SelectionDidChangeNotification
-P:UIKit.UITableView.SelectionFollowsFocus
-P:UIKit.UITableView.SelfSizingInvalidation
-P:UIKit.UITableView.SeparatorColor
-P:UIKit.UITableView.SeparatorEffect
-P:UIKit.UITableView.SeparatorInset
-P:UIKit.UITableView.SeparatorInsetReference
-P:UIKit.UITableView.SeparatorStyle
P:UIKit.UITableView.Source
P:UIKit.UITableView.SpringLoaded
-P:UIKit.UITableView.Style
-P:UIKit.UITableView.TableFooterView
-P:UIKit.UITableView.TableHeaderView
P:UIKit.UITableView.UITableViewAppearance.SectionIndexBackgroundColor
P:UIKit.UITableView.UITableViewAppearance.SectionIndexColor
P:UIKit.UITableView.UITableViewAppearance.SectionIndexTrackingBackgroundColor
P:UIKit.UITableView.UITableViewAppearance.SeparatorColor
P:UIKit.UITableView.UITableViewAppearance.SeparatorEffect
P:UIKit.UITableView.UITableViewAppearance.SeparatorInset
-P:UIKit.UITableView.VisibleCells
-P:UIKit.UITableView.WeakDataSource
-P:UIKit.UITableView.WeakDelegate
-P:UIKit.UITableViewCell.Accessory
-P:UIKit.UITableViewCell.AccessoryView
-P:UIKit.UITableViewCell.AutomaticallyUpdatesBackgroundConfiguration
-P:UIKit.UITableViewCell.AutomaticallyUpdatesContentConfiguration
-P:UIKit.UITableViewCell.BackgroundConfiguration
-P:UIKit.UITableViewCell.BackgroundView
-P:UIKit.UITableViewCell.ConfigurationState
-P:UIKit.UITableViewCell.ConfigurationUpdateHandler
-P:UIKit.UITableViewCell.ContentConfiguration
-P:UIKit.UITableViewCell.ContentView
-P:UIKit.UITableViewCell.DefaultBackgroundConfiguration
-P:UIKit.UITableViewCell.DefaultContentConfiguration
-P:UIKit.UITableViewCell.DetailTextLabel
P:UIKit.UITableViewCell.Editing
-P:UIKit.UITableViewCell.EditingAccessory
-P:UIKit.UITableViewCell.EditingAccessoryView
-P:UIKit.UITableViewCell.EditingStyle
-P:UIKit.UITableViewCell.FocusStyle
P:UIKit.UITableViewCell.Highlighted
-P:UIKit.UITableViewCell.ImageView
-P:UIKit.UITableViewCell.IndentationLevel
-P:UIKit.UITableViewCell.IndentationWidth
-P:UIKit.UITableViewCell.MultipleSelectionBackgroundView
-P:UIKit.UITableViewCell.ReuseIdentifier
P:UIKit.UITableViewCell.Selected
-P:UIKit.UITableViewCell.SelectedBackgroundView
-P:UIKit.UITableViewCell.SelectionStyle
-P:UIKit.UITableViewCell.SeparatorInset
-P:UIKit.UITableViewCell.ShouldIndentWhileEditing
-P:UIKit.UITableViewCell.ShowingDeleteConfirmation
-P:UIKit.UITableViewCell.ShowsReorderControl
-P:UIKit.UITableViewCell.TextLabel
P:UIKit.UITableViewCell.UITableViewCellAppearance.FocusStyle
P:UIKit.UITableViewCell.UITableViewCellAppearance.SeparatorInset
-P:UIKit.UITableViewCell.UserInteractionEnabledWhileDragging
-P:UIKit.UITableViewController.ClearsSelectionOnViewWillAppear
-P:UIKit.UITableViewController.RefreshControl
-P:UIKit.UITableViewController.TableView
-P:UIKit.UITableViewDiffableDataSource`2.DefaultRowAnimation
-P:UIKit.UITableViewDiffableDataSource`2.Snapshot
-P:UIKit.UITableViewDropPlaceholder.PreviewParametersProvider
-P:UIKit.UITableViewDropProposal.Intent
-P:UIKit.UITableViewFocusUpdateContext.NextFocusedIndexPath
-P:UIKit.UITableViewFocusUpdateContext.PreviouslyFocusedIndexPath
-P:UIKit.UITableViewHeaderFooterView.AutomaticallyUpdatesBackgroundConfiguration
-P:UIKit.UITableViewHeaderFooterView.AutomaticallyUpdatesContentConfiguration
-P:UIKit.UITableViewHeaderFooterView.BackgroundConfiguration
-P:UIKit.UITableViewHeaderFooterView.BackgroundView
-P:UIKit.UITableViewHeaderFooterView.ConfigurationState
-P:UIKit.UITableViewHeaderFooterView.ConfigurationUpdateHandler
-P:UIKit.UITableViewHeaderFooterView.ContentConfiguration
-P:UIKit.UITableViewHeaderFooterView.ContentView
-P:UIKit.UITableViewHeaderFooterView.DefaultBackgroundConfiguration
-P:UIKit.UITableViewHeaderFooterView.DefaultContentConfiguration
-P:UIKit.UITableViewHeaderFooterView.DetailTextLabel
-P:UIKit.UITableViewHeaderFooterView.ReuseIdentifier
-P:UIKit.UITableViewHeaderFooterView.TextLabel
-P:UIKit.UITableViewPlaceholder.CellUpdateHandler
-P:UIKit.UITableViewRowAction.BackgroundColor
-P:UIKit.UITableViewRowAction.BackgroundEffect
-P:UIKit.UITableViewRowAction.Style
-P:UIKit.UITableViewRowAction.Title
-P:UIKit.UITabSidebarItem.Accessories
-P:UIKit.UITabSidebarItem.Action
-P:UIKit.UITabSidebarItem.BackgroundConfiguration
-P:UIKit.UITabSidebarItem.ConfigurationState
-P:UIKit.UITabSidebarItem.ContentConfiguration
-P:UIKit.UITabSidebarItem.DefaultBackgroundConfiguration
-P:UIKit.UITabSidebarItem.DefaultContentConfiguration
-P:UIKit.UITabSidebarItem.Tab
-P:UIKit.UITabSidebarItemRequest.Action
-P:UIKit.UITabSidebarItemRequest.Tab
-P:UIKit.UITapGestureRecognizer.ButtonMaskRequired
-P:UIKit.UITapGestureRecognizer.NumberOfTapsRequired
-P:UIKit.UITapGestureRecognizer.NumberOfTouchesRequired
-P:UIKit.UITargetedDragPreview.Parameters
-P:UIKit.UITargetedDragPreview.Size
-P:UIKit.UITargetedDragPreview.Target
-P:UIKit.UITargetedDragPreview.View
-P:UIKit.UITargetedPreview.Parameters
-P:UIKit.UITargetedPreview.Size
-P:UIKit.UITargetedPreview.Target
-P:UIKit.UITargetedPreview.View
-P:UIKit.UITextChecker.AvailableLangauges
-P:UIKit.UITextChecker.IgnoredWords
P:UIKit.UITextContentType.AddressCity
P:UIKit.UITextContentType.AddressCityAndState
P:UIKit.UITextContentType.AddressState
@@ -99999,309 +65415,72 @@ P:UIKit.UITextContentType.Sublocality
P:UIKit.UITextContentType.TelephoneNumber
P:UIKit.UITextContentType.Url
P:UIKit.UITextContentType.Username
-P:UIKit.UITextCursorDropPositionAnimator.CursorView
-P:UIKit.UITextCursorDropPositionAnimator.TextInput
-P:UIKit.UITextDocumentProxy.AllowedWritingToolsResultOptions
-P:UIKit.UITextDocumentProxy.AutocapitalizationType
-P:UIKit.UITextDocumentProxy.AutocorrectionType
-P:UIKit.UITextDocumentProxy.DocumentContextAfterInput
-P:UIKit.UITextDocumentProxy.DocumentContextBeforeInput
-P:UIKit.UITextDocumentProxy.DocumentIdentifier
-P:UIKit.UITextDocumentProxy.DocumentInputMode
-P:UIKit.UITextDocumentProxy.EnablesReturnKeyAutomatically
-P:UIKit.UITextDocumentProxy.HasText
-P:UIKit.UITextDocumentProxy.InlinePredictionType
-P:UIKit.UITextDocumentProxy.KeyboardAppearance
-P:UIKit.UITextDocumentProxy.KeyboardType
-P:UIKit.UITextDocumentProxy.MathExpressionCompletionType
-P:UIKit.UITextDocumentProxy.PasswordRules
-P:UIKit.UITextDocumentProxy.ReturnKeyType
P:UIKit.UITextDocumentProxy.SecureTextEntry
-P:UIKit.UITextDocumentProxy.SelectedText
-P:UIKit.UITextDocumentProxy.SmartDashesType
-P:UIKit.UITextDocumentProxy.SmartInsertDeleteType
-P:UIKit.UITextDocumentProxy.SmartQuotesType
-P:UIKit.UITextDocumentProxy.SpellCheckingType
-P:UIKit.UITextDocumentProxy.TextContentType
-P:UIKit.UITextDocumentProxy.WritingToolsBehavior
-P:UIKit.UITextDragPreviewRenderer.BodyRect
-P:UIKit.UITextDragPreviewRenderer.FirstLineRect
-P:UIKit.UITextDragPreviewRenderer.Image
-P:UIKit.UITextDragPreviewRenderer.LastLineRect
-P:UIKit.UITextDragPreviewRenderer.LayoutManager
-P:UIKit.UITextDropProposal.DropAction
-P:UIKit.UITextDropProposal.DropPerformer
-P:UIKit.UITextDropProposal.DropProgressMode
-P:UIKit.UITextDropProposal.UseFastSameViewOperations
-P:UIKit.UITextField.AdjustsFontForContentSizeCategory
-P:UIKit.UITextField.AdjustsFontSizeToFitWidth
-P:UIKit.UITextField.AllowedWritingToolsResultOptions
-P:UIKit.UITextField.AllowsEditingTextAttributes
-P:UIKit.UITextField.AttributedPlaceholder
-P:UIKit.UITextField.AttributedText
-P:UIKit.UITextField.AutocapitalizationType
-P:UIKit.UITextField.AutocorrectionType
-P:UIKit.UITextField.Background
-P:UIKit.UITextField.BeginningOfDocument
-P:UIKit.UITextField.BorderStyle
-P:UIKit.UITextField.ClearButtonMode
-P:UIKit.UITextField.ClearsOnBeginEditing
-P:UIKit.UITextField.ClearsOnInsertion
P:UIKit.UITextField.CurrentInputModeDidChangeNotification
P:UIKit.UITextField.Delegate
P:UIKit.UITextField.DidEndEditingReasonKey
-P:UIKit.UITextField.DisabledBackground
P:UIKit.UITextField.Editable
-P:UIKit.UITextField.EnablesReturnKeyAutomatically
-P:UIKit.UITextField.EndOfDocument
-P:UIKit.UITextField.Font
-P:UIKit.UITextField.HasText
-P:UIKit.UITextField.InlinePredictionType
-P:UIKit.UITextField.InputAccessoryView
P:UIKit.UITextField.InputDelegate
-P:UIKit.UITextField.InputView
-P:UIKit.UITextField.InteractionState
P:UIKit.UITextField.IsEditing
-P:UIKit.UITextField.KeyboardAppearance
-P:UIKit.UITextField.KeyboardType
-P:UIKit.UITextField.LeftView
-P:UIKit.UITextField.LeftViewMode
-P:UIKit.UITextField.MarkedTextRange
-P:UIKit.UITextField.MarkedTextStyle
-P:UIKit.UITextField.MathExpressionCompletionType
-P:UIKit.UITextField.MinimumFontSize
-P:UIKit.UITextField.PasswordRules
-P:UIKit.UITextField.PasteConfiguration
-P:UIKit.UITextField.PasteDelegate
-P:UIKit.UITextField.Placeholder
-P:UIKit.UITextField.ReturnKeyType
-P:UIKit.UITextField.RightView
-P:UIKit.UITextField.RightViewMode
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
-P:UIKit.UITextField.SpellCheckingType
-P:UIKit.UITextField.SupportsAdaptiveImageGlyph
-P:UIKit.UITextField.Text
-P:UIKit.UITextField.TextAlignment
P:UIKit.UITextField.TextBackgroundColorKey
-P:UIKit.UITextField.TextColor
P:UIKit.UITextField.TextColorKey
-P:UIKit.UITextField.TextContentType
P:UIKit.UITextField.TextDidBeginEditingNotification
P:UIKit.UITextField.TextDidEndEditingNotification
P:UIKit.UITextField.TextDragActive
-P:UIKit.UITextField.TextDragDelegate
-P:UIKit.UITextField.TextDragInteraction
-P:UIKit.UITextField.TextDragOptions
P:UIKit.UITextField.TextDropActive
-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.TypingAttributes
-P:UIKit.UITextField.WeakDefaultTextAttributes
-P:UIKit.UITextField.WeakDelegate
-P:UIKit.UITextField.WeakInputDelegate
-P:UIKit.UITextField.WeakTokenizer
-P:UIKit.UITextField.WritingToolsBehavior
P:UIKit.UITextFieldEditingEndedEventArgs.Reason
P:UIKit.UITextFormattingCoordinator.Delegate
P:UIKit.UITextFormattingCoordinator.FontPanelVisible
-P:UIKit.UITextFormattingCoordinator.WeakDelegate
-P:UIKit.UITextFormattingViewController.Configuration
P:UIKit.UITextFormattingViewController.Delegate
-P:UIKit.UITextFormattingViewController.FormattingDescriptor
-P:UIKit.UITextFormattingViewController.WeakDelegate
-P:UIKit.UITextFormattingViewControllerChangeValue.ChangeType
-P:UIKit.UITextFormattingViewControllerChangeValue.Color
-P:UIKit.UITextFormattingViewControllerChangeValue.Font
-P:UIKit.UITextFormattingViewControllerChangeValue.FormattingStyleKey
-P:UIKit.UITextFormattingViewControllerChangeValue.Highlight
-P:UIKit.UITextFormattingViewControllerChangeValue.NumberValue
-P:UIKit.UITextFormattingViewControllerChangeValue.TextAlignment
-P:UIKit.UITextFormattingViewControllerChangeValue.TextList
-P:UIKit.UITextFormattingViewControllerComponent.ComponentKey
-P:UIKit.UITextFormattingViewControllerComponent.PreferredSize
-P:UIKit.UITextFormattingViewControllerComponentGroup.Components
-P:UIKit.UITextFormattingViewControllerConfiguration.FontPickerConfiguration
-P:UIKit.UITextFormattingViewControllerConfiguration.FormattingStyles
-P:UIKit.UITextFormattingViewControllerConfiguration.Groups
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.Fonts
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.FormattingStyleKey
P:UIKit.UITextFormattingViewControllerFormattingDescriptor.Highlights
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.LineHeight
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.StrikethroughPresent
P:UIKit.UITextFormattingViewControllerFormattingDescriptor.TextAlignments
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.TextColors
P:UIKit.UITextFormattingViewControllerFormattingDescriptor.TextLists
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.UnderlinePresent
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.WeakHighlights
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.WeakTextAlignments
-P:UIKit.UITextFormattingViewControllerFormattingDescriptor.WeakTextLists
P:UIKit.UITextFormattingViewControllerFormattingStyle.Attributes
-P:UIKit.UITextFormattingViewControllerFormattingStyle.StyleKey
-P:UIKit.UITextFormattingViewControllerFormattingStyle.Title
-P:UIKit.UITextFormattingViewControllerFormattingStyle.WeakAttributes
-P:UIKit.UITextInputAssistantItem.AllowsHidingShortcuts
-P:UIKit.UITextInputAssistantItem.LeadingBarButtonGroups
-P:UIKit.UITextInputAssistantItem.TrailingBarButtonGroups
-P:UIKit.UITextInputContext.Current
P:UIKit.UITextInputContext.DictationInputExpected
P:UIKit.UITextInputContext.HardwareKeyboardInputExpected
P:UIKit.UITextInputContext.PencilInputExpected
-P:UIKit.UITextInputMode.ActiveInputModes
-P:UIKit.UITextInputMode.CurrentInputMode
P:UIKit.UITextInputMode.CurrentInputModeDidChangeNotification
-P:UIKit.UITextInputMode.PrimaryLanguage
-P:UIKit.UITextInputPasswordRules.PasswordRulesDescriptor
P:UIKit.UITextInteraction.Delegate
-P:UIKit.UITextInteraction.GesturesForFailureRequirements
-P:UIKit.UITextInteraction.TextInput
-P:UIKit.UITextInteraction.TextInteractionMode
-P:UIKit.UITextInteraction.View
-P:UIKit.UITextInteraction.WeakDelegate
-P:UIKit.UITextItem.ContentType
-P:UIKit.UITextItem.Link
-P:UIKit.UITextItem.Range
-P:UIKit.UITextItem.TagIdentifier
-P:UIKit.UITextItem.TextAttachment
-P:UIKit.UITextItemMenuPreview.DefaultPreview
-P:UIKit.UITextPlaceholder.Rects
-P:UIKit.UITextRange.End
P:UIKit.UITextRange.IsEmpty
-P:UIKit.UITextRange.Start
-P:UIKit.UITextSearchingFindSession.SearchableObject
-P:UIKit.UITextSearchOptions.StringCompareOptions
-P:UIKit.UITextSearchOptions.WordMatchMethod
P:UIKit.UITextSelectionDisplayInteraction.Activated
-P:UIKit.UITextSelectionDisplayInteraction.CursorView
P:UIKit.UITextSelectionDisplayInteraction.Delegate
-P:UIKit.UITextSelectionDisplayInteraction.HandleViews
-P:UIKit.UITextSelectionDisplayInteraction.HighlightView
-P:UIKit.UITextSelectionDisplayInteraction.TextInput
-P:UIKit.UITextSelectionDisplayInteraction.View
-P:UIKit.UITextSelectionDisplayInteraction.WeakDelegate
-P:UIKit.UITextSelectionRect.ContainsEnd
-P:UIKit.UITextSelectionRect.ContainsStart
-P:UIKit.UITextSelectionRect.IsVertical
-P:UIKit.UITextSelectionRect.Rect
-P:UIKit.UITextSelectionRect.Transform
-P:UIKit.UITextSelectionRect.WritingDirection
-P:UIKit.UITextView.AdjustsFontForContentSizeCategory
-P:UIKit.UITextView.AllowedWritingToolsResultOptions
-P:UIKit.UITextView.AllowsEditingTextAttributes
P:UIKit.UITextView.AllowTextAttachmentInteraction
P:UIKit.UITextView.AllowUrlInteraction
-P:UIKit.UITextView.AttributedText
-P:UIKit.UITextView.AutocapitalizationType
-P:UIKit.UITextView.AutocorrectionType
-P:UIKit.UITextView.BeginningOfDocument
-P:UIKit.UITextView.BorderStyle
-P:UIKit.UITextView.ClearsOnInsertion
P:UIKit.UITextView.CurrentInputModeDidChangeNotification
-P:UIKit.UITextView.DataDetectorTypes
P:UIKit.UITextView.Delegate
P:UIKit.UITextView.Editable
-P:UIKit.UITextView.EnablesReturnKeyAutomatically
-P:UIKit.UITextView.EndOfDocument
-P:UIKit.UITextView.FindInteraction
P:UIKit.UITextView.FindInteractionEnabled
-P:UIKit.UITextView.Font
P:UIKit.UITextView.GetWritingToolsIgnoredRangesInEnclosingRange
-P:UIKit.UITextView.HasText
-P:UIKit.UITextView.InlinePredictionType
-P:UIKit.UITextView.InputAccessoryView
P:UIKit.UITextView.InputDelegate
-P:UIKit.UITextView.InputView
-P:UIKit.UITextView.InteractionState
-P:UIKit.UITextView.KeyboardAppearance
-P:UIKit.UITextView.KeyboardType
-P:UIKit.UITextView.LayoutManager
-P:UIKit.UITextView.MarkedTextRange
-P:UIKit.UITextView.MarkedTextStyle
-P:UIKit.UITextView.MathExpressionCompletionType
-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.SelectedRange
-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
-P:UIKit.UITextView.SpellCheckingType
-P:UIKit.UITextView.SupportsAdaptiveImageGlyph
-P:UIKit.UITextView.Text
-P:UIKit.UITextView.TextAlignment
P:UIKit.UITextView.TextBackgroundColorKey
-P:UIKit.UITextView.TextColor
P:UIKit.UITextView.TextColorKey
-P:UIKit.UITextView.TextContainer
-P:UIKit.UITextView.TextContainerInset
-P:UIKit.UITextView.TextContentType
P:UIKit.UITextView.TextDidBeginEditingNotification
P:UIKit.UITextView.TextDidChangeNotification
P:UIKit.UITextView.TextDidEndEditingNotification
P:UIKit.UITextView.TextDragActive
-P:UIKit.UITextView.TextDragDelegate
-P:UIKit.UITextView.TextDragInteraction
-P:UIKit.UITextView.TextDragOptions
P:UIKit.UITextView.TextDropActive
-P:UIKit.UITextView.TextDropDelegate
-P:UIKit.UITextView.TextDropInteraction
P:UIKit.UITextView.TextFontKey
-P:UIKit.UITextView.TextFormattingConfiguration
-P:UIKit.UITextView.TextHighlightAttributes
-P:UIKit.UITextView.TextInputView
-P:UIKit.UITextView.TextLayoutManager
-P:UIKit.UITextView.TextStorage
P:UIKit.UITextView.Tokenizer
P:UIKit.UITextView.TypingAttributes2
-P:UIKit.UITextView.UsesStandardTextScaling
-P:UIKit.UITextView.WeakDelegate
-P:UIKit.UITextView.WeakInputDelegate
-P:UIKit.UITextView.WeakLinkTextAttributes
-P:UIKit.UITextView.WeakTokenizer
P:UIKit.UITextView.WritingToolsActive
-P:UIKit.UITextView.WritingToolsBehavior
-P:UIKit.UITextView.WritingToolsCoordinator
P:UIKit.UITextViewTextFormattingViewControllerEventArgs.ViewController
-P:UIKit.UITitlebar.AutoHidesToolbarInFullScreen
-P:UIKit.UITitlebar.RepresentedUrl
-P:UIKit.UITitlebar.SeparatorStyle
-P:UIKit.UITitlebar.TitleVisibility
-P:UIKit.UITitlebar.Toolbar
-P:UIKit.UITitlebar.ToolbarStyle
-P:UIKit.UIToolbar.BarPosition
-P:UIKit.UIToolbar.BarStyle
-P:UIKit.UIToolbar.BarTintColor
-P:UIKit.UIToolbar.CompactAppearance
-P:UIKit.UIToolbar.CompactScrollEdgeAppearance
P:UIKit.UIToolbar.Delegate
-P:UIKit.UIToolbar.Items
-P:UIKit.UIToolbar.ScrollEdgeAppearance
-P:UIKit.UIToolbar.StandardAppearance
P:UIKit.UIToolbar.Translucent
P:UIKit.UIToolbar.UIToolbarAppearance.BarStyle
P:UIKit.UIToolbar.UIToolbarAppearance.BarTintColor
@@ -100310,300 +65489,57 @@ P:UIKit.UIToolbar.UIToolbarAppearance.CompactScrollEdgeAppearance
P:UIKit.UIToolbar.UIToolbarAppearance.ScrollEdgeAppearance
P:UIKit.UIToolbar.UIToolbarAppearance.StandardAppearance
P:UIKit.UIToolbar.UIToolbarAppearance.Translucent
-P:UIKit.UIToolbar.WeakDelegate
-P:UIKit.UIToolbarAppearance.ButtonAppearance
-P:UIKit.UIToolbarAppearance.DoneButtonAppearance
-P:UIKit.UIToolTipConfiguration.SourceRect
-P:UIKit.UIToolTipConfiguration.ToolTip
-P:UIKit.UIToolTipInteraction.DefaultToolTip
P:UIKit.UIToolTipInteraction.Delegate
P:UIKit.UIToolTipInteraction.Enabled
-P:UIKit.UIToolTipInteraction.View
-P:UIKit.UIToolTipInteraction.WeakDelegate
-P:UIKit.UITouch.AltitudeAngle
-P:UIKit.UITouch.EstimatedProperties
-P:UIKit.UITouch.EstimatedPropertiesExpectingUpdates
-P:UIKit.UITouch.EstimationUpdateIndex
-P:UIKit.UITouch.Force
-P:UIKit.UITouch.GestureRecognizers
-P:UIKit.UITouch.MajorRadius
-P:UIKit.UITouch.MajorRadiusTolerance
-P:UIKit.UITouch.MaximumPossibleForce
-P:UIKit.UITouch.Phase
-P:UIKit.UITouch.RollAngle
-P:UIKit.UITouch.TapCount
-P:UIKit.UITouch.Timestamp
-P:UIKit.UITouch.Type
-P:UIKit.UITouch.View
-P:UIKit.UITouch.Window
-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.AccessibilityContrast
-P:UIKit.UITraitCollection.ActiveAppearance
-P:UIKit.UITraitCollection.CurrentTraitCollection
-P:UIKit.UITraitCollection.DisplayGamut
-P:UIKit.UITraitCollection.DisplayScale
-P:UIKit.UITraitCollection.ForceTouchCapability
-P:UIKit.UITraitCollection.HorizontalSizeClass
-P:UIKit.UITraitCollection.ImageConfiguration
-P:UIKit.UITraitCollection.ImageDynamicRange
-P:UIKit.UITraitCollection.LayoutDirection
-P:UIKit.UITraitCollection.LegibilityWeight
-P:UIKit.UITraitCollection.ListEnvironment
-P:UIKit.UITraitCollection.PreferredContentSizeCategory
-P:UIKit.UITraitCollection.SceneCaptureState
P:UIKit.UITraitCollection.SystemTraitsAffectingColorAppearance2
P:UIKit.UITraitCollection.SystemTraitsAffectingImageLookup2
-P:UIKit.UITraitCollection.ToolbarItemPresentationSize
-P:UIKit.UITraitCollection.TypesettingLanguage
-P:UIKit.UITraitCollection.UserInterfaceIdiom
-P:UIKit.UITraitCollection.UserInterfaceLevel
-P:UIKit.UITraitCollection.UserInterfaceStyle
-P:UIKit.UITraitCollection.VerticalSizeClass
-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.UITraitListEnvironment.AffectsColorAppearance
-P:UIKit.UITraitListEnvironment.DefaultValue
-P:UIKit.UITraitListEnvironment.Identifier
-P:UIKit.UITraitListEnvironment.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
P:UIKit.UITransitionContext.FromViewKey
P:UIKit.UITransitionContext.ToViewControllerKey
P:UIKit.UITransitionContext.ToViewKey
-P:UIKit.UIUpdateActionPhase.AfterCADisplayLinkDispatch
-P:UIKit.UIUpdateActionPhase.AfterCATransactionCommit
-P:UIKit.UIUpdateActionPhase.AfterEventDispatch
-P:UIKit.UIUpdateActionPhase.AfterLowLatencyCATransactionCommit
-P:UIKit.UIUpdateActionPhase.AfterLowLatencyEventDispatch
-P:UIKit.UIUpdateActionPhase.AfterUpdateComplete
-P:UIKit.UIUpdateActionPhase.AfterUpdateScheduled
-P:UIKit.UIUpdateActionPhase.BeforeCADisplayLinkDispatch
-P:UIKit.UIUpdateActionPhase.BeforeCATransactionCommit
-P:UIKit.UIUpdateActionPhase.BeforeEventDispatch
-P:UIKit.UIUpdateActionPhase.BeforeLowLatencyCATransactionCommit
-P:UIKit.UIUpdateActionPhase.BeforeLowLatencyEventDispatch
-P:UIKit.UIUpdateInfo.CompletionDeadlineTime
-P:UIKit.UIUpdateInfo.EstimatedPresentationTime
P:UIKit.UIUpdateInfo.ImmediatePresentationExpected
P:UIKit.UIUpdateInfo.LowLatencyEventDispatchConfirmed
-P:UIKit.UIUpdateInfo.ModelTime
P:UIKit.UIUpdateInfo.PerformingLowLatencyPhases
-P:UIKit.UIUpdateLink.CurrentUpdateInfo
P:UIKit.UIUpdateLink.Enabled
-P:UIKit.UIUpdateLink.PreferredFrameRateRange
-P:UIKit.UIUpdateLink.RequiresContinuousUpdates
-P:UIKit.UIUpdateLink.WantsImmediatePresentation
-P:UIKit.UIUpdateLink.WantsLowLatencyEventDispatch
-P:UIKit.UIUserNotificationAction.ActivationMode
P:UIKit.UIUserNotificationAction.AuthenticationRequired
-P:UIKit.UIUserNotificationAction.Behavior
P:UIKit.UIUserNotificationAction.Destructive
-P:UIKit.UIUserNotificationAction.Identifier
-P:UIKit.UIUserNotificationAction.Parameters
P:UIKit.UIUserNotificationAction.ResponseTypedTextKey
P:UIKit.UIUserNotificationAction.TextInputActionButtonTitleKey
-P:UIKit.UIUserNotificationAction.Title
-P:UIKit.UIUserNotificationCategory.Identifier
-P:UIKit.UIUserNotificationSettings.Categories
-P:UIKit.UIUserNotificationSettings.Types
P:UIKit.UIVideoEditorController.Delegate
-P:UIKit.UIVideoEditorController.VideoMaximumDuration
-P:UIKit.UIVideoEditorController.VideoPath
-P:UIKit.UIVideoEditorController.VideoQuality
-P:UIKit.UIVideoEditorController.WeakDelegate
-P:UIKit.UIView.AccessibilityActivationPoint
-P:UIKit.UIView.AccessibilityAttributedHint
-P:UIKit.UIView.AccessibilityAttributedLabel
-P:UIKit.UIView.AccessibilityAttributedUserInputLabels
-P:UIKit.UIView.AccessibilityAttributedValue
-P:UIKit.UIView.AccessibilityDirectTouchOptions
-P:UIKit.UIView.AccessibilityElementsHidden
-P:UIKit.UIView.AccessibilityExpandedStatus
-P:UIKit.UIView.AccessibilityFrame
-P:UIKit.UIView.AccessibilityHeaderElements
-P:UIKit.UIView.AccessibilityHint
-P:UIKit.UIView.AccessibilityIdentifier
-P:UIKit.UIView.AccessibilityIgnoresInvertColors
-P:UIKit.UIView.AccessibilityLabel
-P:UIKit.UIView.AccessibilityLanguage
-P:UIKit.UIView.AccessibilityNavigationStyle
-P:UIKit.UIView.AccessibilityPath
-P:UIKit.UIView.AccessibilityRespondsToUserInteraction
-P:UIKit.UIView.AccessibilityTextualContext
-P:UIKit.UIView.AccessibilityTraits
-P:UIKit.UIView.AccessibilityUserInputLabels
-P:UIKit.UIView.AccessibilityValue
-P:UIKit.UIView.AccessibilityViewIsModal
-P:UIKit.UIView.AlignmentRectInsets
-P:UIKit.UIView.Alpha
-P:UIKit.UIView.AnchorPoint
-P:UIKit.UIView.AnimationsEnabled
P:UIKit.UIView.AnnouncementDidFinishNotification
P:UIKit.UIView.AnnouncementNotification
-P:UIKit.UIView.AppliedContentSizeCategoryLimitsDescription
P:UIKit.UIView.AssistiveTechnologyKey
P:UIKit.UIView.AssistiveTouchStatusDidChangeNotification
-P:UIKit.UIView.AutoresizingMask
-P:UIKit.UIView.AutosizesSubviews
-P:UIKit.UIView.BackgroundColor
P:UIKit.UIView.BoldTextStatusDidChangeNotification
-P:UIKit.UIView.BottomAnchor
-P:UIKit.UIView.Bounds
P:UIKit.UIView.ButtonShapesEnabledStatusDidChangeNotification
-P:UIKit.UIView.CanBecomeFocused
-P:UIKit.UIView.Center
-P:UIKit.UIView.CenterXAnchor
-P:UIKit.UIView.CenterYAnchor
-P:UIKit.UIView.ClearsContextBeforeDrawing
-P:UIKit.UIView.ClipsToBounds
P:UIKit.UIView.ClosedCaptioningStatusDidChangeNotification
-P:UIKit.UIView.CollisionBoundingPath
-P:UIKit.UIView.CollisionBoundsType
-P:UIKit.UIView.Constraints
-P:UIKit.UIView.ContentMode
-P:UIKit.UIView.ContentScaleFactor
-P:UIKit.UIView.ContentStretch
-P:UIKit.UIView.CoordinateSpace
P:UIKit.UIView.DarkerSystemColorsStatusDidChangeNotification
-P:UIKit.UIView.DirectionalLayoutMargins
-P:UIKit.UIView.EffectiveUserInterfaceLayoutDirection
P:UIKit.UIView.ElementFocusedNotification
P:UIKit.UIView.ExclusiveTouch
-P:UIKit.UIView.FirstBaselineAnchor
P:UIKit.UIView.Focused
P:UIKit.UIView.FocusedElementKey
-P:UIKit.UIView.FocusEffect
-P:UIKit.UIView.FocusGroupIdentifier
-P:UIKit.UIView.FocusGroupPriority
-P:UIKit.UIView.FocusItemContainer
-P:UIKit.UIView.FocusItemDeferralMode
-P:UIKit.UIView.Frame
-P:UIKit.UIView.GestureRecognizers
P:UIKit.UIView.GrayscaleStatusDidChangeNotification
P:UIKit.UIView.GuidedAccessStatusDidChangeNotification
-P:UIKit.UIView.HasAmbiguousLayout
P:UIKit.UIView.HearingDevicePairedEarDidChangeNotification
-P:UIKit.UIView.HeightAnchor
P:UIKit.UIView.Hidden
-P:UIKit.UIView.HoverStyle
-P:UIKit.UIView.InheritedAnimationDuration
-P:UIKit.UIView.InsetsLayoutMarginsFromSafeArea
-P:UIKit.UIView.Interactions
-P:UIKit.UIView.IntrinsicContentSize
P:UIKit.UIView.InvertColorsStatusDidChangeNotification
-P:UIKit.UIView.IsAccessibilityElement
-P:UIKit.UIView.IsTransparentFocusItem
-P:UIKit.UIView.KeyboardLayoutGuide
-P:UIKit.UIView.LargeContentImage
-P:UIKit.UIView.LargeContentImageInsets
-P:UIKit.UIView.LargeContentTitle
-P:UIKit.UIView.LastBaselineAnchor
-P:UIKit.UIView.Layer
P:UIKit.UIView.LayoutChangedNotification
-P:UIKit.UIView.LayoutGuides
-P:UIKit.UIView.LayoutMargins
-P:UIKit.UIView.LayoutMarginsGuide
-P:UIKit.UIView.LeadingAnchor
-P:UIKit.UIView.LeftAnchor
-P:UIKit.UIView.MaskView
-P:UIKit.UIView.MaximumContentSizeCategory
-P:UIKit.UIView.MinimumContentSizeCategory
P:UIKit.UIView.MonoAudioStatusDidChangeNotification
-P:UIKit.UIView.MotionEffects
P:UIKit.UIView.MultipleTouchEnabled
P:UIKit.UIView.NoIntrinsicMetric
P:UIKit.UIView.NotificationSwitchControlIdentifier
P:UIKit.UIView.NotificationVoiceOverIdentifier
P:UIKit.UIView.OnOffSwitchLabelsDidChangeNotification
P:UIKit.UIView.Opaque
-P:UIKit.UIView.OverrideUserInterfaceStyle
P:UIKit.UIView.PageScrolledNotification
-P:UIKit.UIView.ParentFocusEnvironment
P:UIKit.UIView.PauseAssistiveTechnologyNotification
-P:UIKit.UIView.PreferredFocusedView
-P:UIKit.UIView.PreferredFocusEnvironments
P:UIKit.UIView.PrefersCrossFadeTransitionsStatusDidChangeNotification
-P:UIKit.UIView.PreservesSuperviewLayoutMargins
-P:UIKit.UIView.ReadableContentGuide
P:UIKit.UIView.ReduceMotionStatusDidChangeNotification
P:UIKit.UIView.ReduceTransparencyStatusDidChangeNotification
-P:UIKit.UIView.RestorationIdentifier
P:UIKit.UIView.ResumeAssistiveTechnologyNotification
-P:UIKit.UIView.RightAnchor
-P:UIKit.UIView.SafeAreaInsets
-P:UIKit.UIView.SafeAreaLayoutGuide
-P:UIKit.UIView.ScalesLargeContentImage
P:UIKit.UIView.ScreenChangedNotification
-P:UIKit.UIView.SemanticContentAttribute
P:UIKit.UIView.ShakeToUndoDidChangeNotification
P:UIKit.UIView.ShouldDifferentiateWithoutColorDidChangeNotification
-P:UIKit.UIView.ShouldGroupAccessibilityChildren
-P:UIKit.UIView.ShowsLargeContentViewer
P:UIKit.UIView.SpeakScreenStatusDidChangeNotification
P:UIKit.UIView.SpeakSelectionStatusDidChangeNotification
P:UIKit.UIView.SpeechAttributeAnnouncementPriority
@@ -100613,22 +65549,10 @@ P:UIKit.UIView.SpeechAttributePitch
P:UIKit.UIView.SpeechAttributePunctuation
P:UIKit.UIView.SpeechAttributeQueueAnnouncement
P:UIKit.UIView.SpeechAttributeSpellOut
-P:UIKit.UIView.Subviews
-P:UIKit.UIView.Superview
P:UIKit.UIView.SwitchControlStatusDidChangeNotification
-P:UIKit.UIView.Tag
P:UIKit.UIView.TextAttributeContext
P:UIKit.UIView.TextAttributeCustom
P:UIKit.UIView.TextAttributeHeadingLevel
-P:UIKit.UIView.TintAdjustmentMode
-P:UIKit.UIView.TintColor
-P:UIKit.UIView.TopAnchor
-P:UIKit.UIView.TrailingAnchor
-P:UIKit.UIView.TraitCollection
-P:UIKit.UIView.TraitOverrides
-P:UIKit.UIView.Transform
-P:UIKit.UIView.Transform3D
-P:UIKit.UIView.TranslatesAutoresizingMaskIntoConstraints
P:UIKit.UIView.UILayoutFittingCompressedSize
P:UIKit.UIView.UILayoutFittingExpandedSize
P:UIKit.UIView.UIViewAppearance.BackgroundColor
@@ -100636,47 +65560,15 @@ P:UIKit.UIView.UIViewAppearance.TintColor
P:UIKit.UIView.UnfocusedElementKey
P:UIKit.UIView.UserInteractionEnabled
P:UIKit.UIView.VideoAutoplayStatusDidChangeNotification
-P:UIKit.UIView.ViewForBaselineLayout
-P:UIKit.UIView.ViewForFirstBaselineLayout
-P:UIKit.UIView.ViewForLastBaselineLayout
-P:UIKit.UIView.ViewPrintFormatter
P:UIKit.UIView.VoiceOverStatusChanged
P:UIKit.UIView.VoiceOverStatusDidChangeNotification
-P:UIKit.UIView.WidthAnchor
-P:UIKit.UIView.Window
P:UIKit.UIViewConfigurationState.Disabled
P:UIKit.UIViewConfigurationState.Focused
P:UIKit.UIViewConfigurationState.Highlighted
P:UIKit.UIViewConfigurationState.Pinned
P:UIKit.UIViewConfigurationState.Selected
-P:UIKit.UIViewConfigurationState.TraitCollection
-P:UIKit.UIViewController.ActivePresentationController
-P:UIKit.UIViewController.AdditionalSafeAreaInsets
-P:UIKit.UIViewController.AutomaticallyAdjustsScrollViewInsets
-P:UIKit.UIViewController.AutomaticallyForwardAppearanceAndRotationMethodsToChildViewControllers
-P:UIKit.UIViewController.BottomLayoutGuide
-P:UIKit.UIViewController.ChildViewControllerForHomeIndicatorAutoHidden
-P:UIKit.UIViewController.ChildViewControllerForPointerLock
-P:UIKit.UIViewController.ChildViewControllerForScreenEdgesDeferringSystemGestures
-P:UIKit.UIViewController.ChildViewControllerForTouchBar
-P:UIKit.UIViewController.ChildViewControllerForUserInterfaceStyle
-P:UIKit.UIViewController.ChildViewControllers
-P:UIKit.UIViewController.ContentSizeForViewInPopover
-P:UIKit.UIViewController.ContentUnavailableConfiguration
-P:UIKit.UIViewController.ContentUnavailableConfigurationState
-P:UIKit.UIViewController.DefinesPresentationContext
-P:UIKit.UIViewController.DisablesAutomaticKeyboardDismissal
-P:UIKit.UIViewController.EdgesForExtendedLayout
-P:UIKit.UIViewController.EditButtonItem
P:UIKit.UIViewController.Editing
-P:UIKit.UIViewController.ExtendedLayoutIncludesOpaqueBars
-P:UIKit.UIViewController.ExtensionContext
-P:UIKit.UIViewController.FocusGroupIdentifier
-P:UIKit.UIViewController.FocusItemContainer
-P:UIKit.UIViewController.HidesBottomBarWhenPushed
P:UIKit.UIViewController.HierarchyInconsistencyException
-P:UIKit.UIViewController.InteractionActivityTrackingBaseName
-P:UIKit.UIViewController.InterfaceOrientation
P:UIKit.UIViewController.IsBeingDismissed
P:UIKit.UIViewController.IsBeingPresented
P:UIKit.UIViewController.IsMovingFromParentViewController
@@ -100684,188 +65576,28 @@ P:UIKit.UIViewController.IsMovingToParentViewController
P:UIKit.UIViewController.IsViewLoaded
P:UIKit.UIViewController.ModalInPopover
P:UIKit.UIViewController.ModalInPresentation
-P:UIKit.UIViewController.ModalPresentationCapturesStatusBarAppearance
-P:UIKit.UIViewController.ModalPresentationStyle
-P:UIKit.UIViewController.ModalTransitionStyle
-P:UIKit.UIViewController.ModalViewController
-P:UIKit.UIViewController.NavigationController
-P:UIKit.UIViewController.NavigationItem
-P:UIKit.UIViewController.NibBundle
-P:UIKit.UIViewController.NibName
-P:UIKit.UIViewController.OverrideUserInterfaceStyle
-P:UIKit.UIViewController.ParentFocusEnvironment
-P:UIKit.UIViewController.ParentViewController
-P:UIKit.UIViewController.PerformsActionsWhilePresentingModally
-P:UIKit.UIViewController.PopoverPresentationController
-P:UIKit.UIViewController.PreferredContentSize
-P:UIKit.UIViewController.PreferredFocusedView
-P:UIKit.UIViewController.PreferredFocusEnvironments
-P:UIKit.UIViewController.PreferredScreenEdgesDeferringSystemGestures
-P:UIKit.UIViewController.PreferredStatusBarUpdateAnimation
-P:UIKit.UIViewController.PreferredTransition
-P:UIKit.UIViewController.PreferredUserInterfaceStyle
-P:UIKit.UIViewController.PrefersHomeIndicatorAutoHidden
-P:UIKit.UIViewController.PrefersPointerLocked
-P:UIKit.UIViewController.PresentationController
-P:UIKit.UIViewController.PresentedViewController
-P:UIKit.UIViewController.PresentingViewController
-P:UIKit.UIViewController.PreviewActionItems
-P:UIKit.UIViewController.ProvidesPresentationContextTransitionStyle
-P:UIKit.UIViewController.RestorationClass
-P:UIKit.UIViewController.RestorationIdentifier
-P:UIKit.UIViewController.RestoresFocusAfterTransition
-P:UIKit.UIViewController.RotatingFooterView
-P:UIKit.UIViewController.RotatingHeaderView
-P:UIKit.UIViewController.SearchDisplayController
-P:UIKit.UIViewController.SheetPresentationController
-P:UIKit.UIViewController.ShouldAutomaticallyForwardAppearanceMethods
-P:UIKit.UIViewController.ShouldAutomaticallyForwardRotationMethods
P:UIKit.UIViewController.ShowDetailTargetDidChangeNotification
-P:UIKit.UIViewController.SplitViewController
-P:UIKit.UIViewController.Storyboard
-P:UIKit.UIViewController.SystemMinimumLayoutMargins
-P:UIKit.UIViewController.Tab
-P:UIKit.UIViewController.TabBarController
-P:UIKit.UIViewController.TabBarItem
-P:UIKit.UIViewController.TabBarObservedScrollView
-P:UIKit.UIViewController.Title
-P:UIKit.UIViewController.ToolbarItems
-P:UIKit.UIViewController.TopLayoutGuide
-P:UIKit.UIViewController.TraitCollection
-P:UIKit.UIViewController.TraitOverrides
P:UIKit.UIViewController.TransitioningDelegate
-P:UIKit.UIViewController.View
-P:UIKit.UIViewController.ViewIfLoaded
-P:UIKit.UIViewController.ViewRespectsSystemMinimumLayoutMargins
-P:UIKit.UIViewController.WantsFullScreenLayout
-P:UIKit.UIViewController.WeakTransitioningDelegate
-P:UIKit.UIViewControllerContextTransitioning.ContainerView
P:UIKit.UIViewControllerContextTransitioning.IsAnimated
P:UIKit.UIViewControllerContextTransitioning.IsInteractive
-P:UIKit.UIViewControllerContextTransitioning.PresentationStyle
-P:UIKit.UIViewControllerContextTransitioning.TargetTransform
-P:UIKit.UIViewControllerContextTransitioning.TransitionWasCancelled
-P:UIKit.UIViewControllerInteractiveTransitioning.CompletionCurve
-P:UIKit.UIViewControllerInteractiveTransitioning.CompletionSpeed
-P:UIKit.UIViewControllerInteractiveTransitioning.WantsInteractiveStart
-P:UIKit.UIViewControllerTransition.CoverVerticalTransition
-P:UIKit.UIViewControllerTransition.CrossDissolveTransition
-P:UIKit.UIViewControllerTransition.FlipHorizontalTransition
-P:UIKit.UIViewControllerTransition.PartialCurlTransition
-P:UIKit.UIViewPrintFormatter.View
-P:UIKit.UIViewPropertyAnimator.Delay
-P:UIKit.UIViewPropertyAnimator.Duration
-P:UIKit.UIViewPropertyAnimator.FractionComplete
-P:UIKit.UIViewPropertyAnimator.Interruptible
P:UIKit.UIViewPropertyAnimator.ManualHitTestingEnabled
-P:UIKit.UIViewPropertyAnimator.PausesOnCompletion
P:UIKit.UIViewPropertyAnimator.Reversed
P:UIKit.UIViewPropertyAnimator.Running
-P:UIKit.UIViewPropertyAnimator.ScrubsLinearly
-P:UIKit.UIViewPropertyAnimator.State
-P:UIKit.UIViewPropertyAnimator.TimingParameters
P:UIKit.UIViewPropertyAnimator.UserInteractionEnabled
-P:UIKit.UIVisualEffectView.ContentView
-P:UIKit.UIVisualEffectView.Effect
P:UIKit.UIWebErrorArgs.Error
-P:UIKit.UIWebView.AllowsInlineMediaPlayback
-P:UIKit.UIWebView.AllowsLinkPreview
-P:UIKit.UIWebView.AllowsPictureInPictureMediaPlayback
-P:UIKit.UIWebView.CanGoBack
-P:UIKit.UIWebView.CanGoForward
-P:UIKit.UIWebView.DataDetectorTypes
P:UIKit.UIWebView.Delegate
-P:UIKit.UIWebView.GapBetweenPages
P:UIKit.UIWebView.IsLoading
-P:UIKit.UIWebView.KeyboardDisplayRequiresUserAction
-P:UIKit.UIWebView.MediaPlaybackAllowsAirPlay
-P:UIKit.UIWebView.MediaPlaybackRequiresUserAction
-P:UIKit.UIWebView.PageCount
-P:UIKit.UIWebView.PageLength
-P:UIKit.UIWebView.PaginationBreakingMode
-P:UIKit.UIWebView.PaginationMode
-P:UIKit.UIWebView.Request
-P:UIKit.UIWebView.ScalesPageToFit
-P:UIKit.UIWebView.ScrollView
P:UIKit.UIWebView.ShouldStartLoad
-P:UIKit.UIWebView.SuppressesIncrementalRendering
-P:UIKit.UIWebView.WeakDelegate
-P:UIKit.UIWindow.CanBecomeKeyWindow
-P:UIKit.UIWindow.CanResizeToFitContent
P:UIKit.UIWindow.DidBecomeHiddenNotification
P:UIKit.UIWindow.DidBecomeKeyNotification
P:UIKit.UIWindow.DidBecomeVisibleNotification
P:UIKit.UIWindow.DidResignKeyNotification
P:UIKit.UIWindow.IsKeyWindow
-P:UIKit.UIWindow.RootViewController
-P:UIKit.UIWindow.SafeAreaAspectFitLayoutGuide
-P:UIKit.UIWindow.Screen
-P:UIKit.UIWindow.WindowLevel
-P:UIKit.UIWindow.WindowScene
P:UIKit.UIWindowLevel.Alert
P:UIKit.UIWindowLevel.Normal
P:UIKit.UIWindowLevel.StatusBar
-P:UIKit.UIWindowScene.ActivityItemsConfigurationSource
-P:UIKit.UIWindowScene.CoordinateSpace
-P:UIKit.UIWindowScene.EffectiveGeometry
-P:UIKit.UIWindowScene.FocusSystem
P:UIKit.UIWindowScene.FullScreen
-P:UIKit.UIWindowScene.InterfaceOrientation
-P:UIKit.UIWindowScene.KeyWindow
-P:UIKit.UIWindowScene.Screen
-P:UIKit.UIWindowScene.ScreenshotService
-P:UIKit.UIWindowScene.SizeRestrictions
-P:UIKit.UIWindowScene.StatusBarManager
-P:UIKit.UIWindowScene.Titlebar
-P:UIKit.UIWindowScene.TraitCollection
-P:UIKit.UIWindowScene.TraitOverrides
-P:UIKit.UIWindowScene.WindowingBehaviors
-P:UIKit.UIWindowScene.Windows
-P:UIKit.UIWindowSceneActivationAction.Title
-P:UIKit.UIWindowSceneActivationConfiguration.Options
-P:UIKit.UIWindowSceneActivationConfiguration.Preview
-P:UIKit.UIWindowSceneActivationConfiguration.UserActivity
-P:UIKit.UIWindowSceneActivationInteraction.View
-P:UIKit.UIWindowSceneActivationRequestOptions.Placement
-P:UIKit.UIWindowSceneActivationRequestOptions.PreferredPresentationStyle
-P:UIKit.UIWindowSceneDelegate.Window
-P:UIKit.UIWindowSceneDestructionRequestOptions.WindowDismissalAnimation
-P:UIKit.UIWindowSceneDragInteraction.GestureForFailureRelationships
-P:UIKit.UIWindowSceneDragInteraction.View
-P:UIKit.UIWindowSceneGeometry.InterfaceOrientation
-P:UIKit.UIWindowSceneGeometry.SystemFrame
-P:UIKit.UIWindowSceneGeometryPreferencesIOS.InterfaceOrientations
-P:UIKit.UIWindowSceneGeometryPreferencesMac.SystemFrame
-P:UIKit.UIWritingToolsCoordinator.Behavior
-P:UIKit.UIWritingToolsCoordinator.DecorationContainerView
P:UIKit.UIWritingToolsCoordinator.Delegate
-P:UIKit.UIWritingToolsCoordinator.EffectContainerView
-P:UIKit.UIWritingToolsCoordinator.IsWritingToolsAvailable
-P:UIKit.UIWritingToolsCoordinator.PreferredBehavior
-P:UIKit.UIWritingToolsCoordinator.PreferredResultOptions
-P:UIKit.UIWritingToolsCoordinator.ResultOptions
-P:UIKit.UIWritingToolsCoordinator.State
-P:UIKit.UIWritingToolsCoordinator.View
-P:UIKit.UIWritingToolsCoordinator.WeakDelegate
-P:UIKit.UIWritingToolsCoordinatorAnimationParameters.CompletionHandler
-P:UIKit.UIWritingToolsCoordinatorAnimationParameters.Delay
-P:UIKit.UIWritingToolsCoordinatorAnimationParameters.Duration
-P:UIKit.UIWritingToolsCoordinatorAnimationParameters.ProgressHandler
-P:UIKit.UIWritingToolsCoordinatorContext.AttributedString
-P:UIKit.UIWritingToolsCoordinatorContext.Identifier
-P:UIKit.UIWritingToolsCoordinatorContext.Range
-P:UIKit.UIWritingToolsCoordinatorContext.ResolvedRange
-P:UIKit.UIZoomTransitionAlignmentRectContext.SourceView
-P:UIKit.UIZoomTransitionAlignmentRectContext.ZoomedViewController
-P:UIKit.UIZoomTransitionInteractionContext.Location
-P:UIKit.UIZoomTransitionInteractionContext.Velocity
-P:UIKit.UIZoomTransitionInteractionContext.WillBegin
-P:UIKit.UIZoomTransitionOptions.AlignmentRectProvider
-P:UIKit.UIZoomTransitionOptions.DimmingColor
-P:UIKit.UIZoomTransitionOptions.DimmingVisualEffect
-P:UIKit.UIZoomTransitionOptions.InteractiveDismissShouldBegin
-P:UIKit.UIZoomTransitionSourceViewProviderContext.SourceViewController
-P:UIKit.UIZoomTransitionSourceViewProviderContext.ZoomedViewController
P:UIKit.WillEndDraggingEventArgs.TargetContentOffset
P:UIKit.WillEndDraggingEventArgs.Velocity
P:UIKit.ZoomingEndedEventArgs.AtScale
@@ -101023,34 +65755,11 @@ P:UniformTypeIdentifiers.UTTypes.XmlPropertyList
P:UniformTypeIdentifiers.UTTypes.XpcService
P:UniformTypeIdentifiers.UTTypes.Yaml
P:UniformTypeIdentifiers.UTTypes.Zip
-P:UserNotifications.UNCalendarNotificationTrigger.DateComponents
-P:UserNotifications.UNCalendarNotificationTrigger.NextTriggerDate
-P:UserNotifications.UNLocationNotificationTrigger.Region
-P:UserNotifications.UNMutableNotificationContent.Attachments
-P:UserNotifications.UNMutableNotificationContent.Badge
-P:UserNotifications.UNMutableNotificationContent.Body
-P:UserNotifications.UNMutableNotificationContent.CategoryIdentifier
P:UserNotifications.UNMutableNotificationContent.FilterCriteria
P:UserNotifications.UNMutableNotificationContent.InterruptionLevel
-P:UserNotifications.UNMutableNotificationContent.LaunchImageName
P:UserNotifications.UNMutableNotificationContent.RelevanceScore
-P:UserNotifications.UNMutableNotificationContent.Sound
-P:UserNotifications.UNMutableNotificationContent.Subtitle
-P:UserNotifications.UNMutableNotificationContent.SummaryArgument
-P:UserNotifications.UNMutableNotificationContent.SummaryArgumentCount
P:UserNotifications.UNMutableNotificationContent.TargetContentIdentifier
-P:UserNotifications.UNMutableNotificationContent.ThreadIdentifier
-P:UserNotifications.UNMutableNotificationContent.Title
-P:UserNotifications.UNMutableNotificationContent.UserInfo
-P:UserNotifications.UNNotification.Date
-P:UserNotifications.UNNotification.Request
P:UserNotifications.UNNotificationAction.Icon
-P:UserNotifications.UNNotificationAction.Identifier
-P:UserNotifications.UNNotificationAction.Options
-P:UserNotifications.UNNotificationAction.Title
-P:UserNotifications.UNNotificationAttachment.Identifier
-P:UserNotifications.UNNotificationAttachment.Type
-P:UserNotifications.UNNotificationAttachment.Url
P:UserNotifications.UNNotificationAttachmentOptions.ThumbnailClippingRect
P:UserNotifications.UNNotificationAttachmentOptions.ThumbnailHidden
P:UserNotifications.UNNotificationAttachmentOptions.ThumbnailTime
@@ -101171,113 +65880,55 @@ P:VideoSubscriberAccount.VSUserAccount.SubscriptionBillingCycleEndDate
P:VideoSubscriberAccount.VSUserAccount.TierIdentifiers
P:VideoSubscriberAccount.VSUserAccount.UpdateUrl
P:VideoSubscriberAccount.VSUserAccountManager.SharedUserAccountManager
-P:VideoToolbox.VTCompressionProperties.AllowFrameReordering
-P:VideoToolbox.VTCompressionProperties.AllowOpenGop
-P:VideoToolbox.VTCompressionProperties.AllowTemporalCompression
P:VideoToolbox.VTCompressionProperties.AlphaChannelMode
-P:VideoToolbox.VTCompressionProperties.AspectRatio16x9
-P:VideoToolbox.VTCompressionProperties.AverageBitRate
P:VideoToolbox.VTCompressionProperties.BaseLayerBitRateFraction
-P:VideoToolbox.VTCompressionProperties.BaseLayerFrameRate
P:VideoToolbox.VTCompressionProperties.CalculateMeanSquaredError
-P:VideoToolbox.VTCompressionProperties.CleanAperture
-P:VideoToolbox.VTCompressionProperties.ColorPrimaries
P:VideoToolbox.VTCompressionProperties.ConstantBitRate
-P:VideoToolbox.VTCompressionProperties.ContentLightLevelInfo
-P:VideoToolbox.VTCompressionProperties.DataRateLimits
-P:VideoToolbox.VTCompressionProperties.Depth
P:VideoToolbox.VTCompressionProperties.EnableLowLatencyRateControl
P:VideoToolbox.VTCompressionProperties.EnableLtr
-P:VideoToolbox.VTCompressionProperties.EncoderId
P:VideoToolbox.VTCompressionProperties.EstimatedAverageBytesPerFrame
-P:VideoToolbox.VTCompressionProperties.ExpectedDuration
-P:VideoToolbox.VTCompressionProperties.ExpectedFrameRate
-P:VideoToolbox.VTCompressionProperties.FieldCount
-P:VideoToolbox.VTCompressionProperties.FieldDetail
P:VideoToolbox.VTCompressionProperties.GammaLevel
-P:VideoToolbox.VTCompressionProperties.H264EntropyMode
P:VideoToolbox.VTCompressionProperties.HasLeftStereoEyeView
P:VideoToolbox.VTCompressionProperties.HasRightStereoEyeView
P:VideoToolbox.VTCompressionProperties.HeroEye
P:VideoToolbox.VTCompressionProperties.HorizontalDisparityAdjustment
P:VideoToolbox.VTCompressionProperties.HorizontalFieldOfView
-P:VideoToolbox.VTCompressionProperties.ICCProfile
-P:VideoToolbox.VTCompressionProperties.MasteringDisplayColorVolume
P:VideoToolbox.VTCompressionProperties.MaxAllowedFrameQP
-P:VideoToolbox.VTCompressionProperties.MaxFrameDelayCount
-P:VideoToolbox.VTCompressionProperties.MaxH264SliceBytes
-P:VideoToolbox.VTCompressionProperties.MaximizePowerEfficiency
P:VideoToolbox.VTCompressionProperties.MaximumRealTimeFrameRate
-P:VideoToolbox.VTCompressionProperties.MaxKeyFrameInterval
-P:VideoToolbox.VTCompressionProperties.MaxKeyFrameIntervalDuration
P:VideoToolbox.VTCompressionProperties.MinAllowedFrameQP
-P:VideoToolbox.VTCompressionProperties.MoreFramesAfterEnd
-P:VideoToolbox.VTCompressionProperties.MoreFramesBeforeStart
-P:VideoToolbox.VTCompressionProperties.MultiPassStorage
P:VideoToolbox.VTCompressionProperties.MvHevcLeftAndRightViewIds
P:VideoToolbox.VTCompressionProperties.MvHevcVideoLayerIds
P:VideoToolbox.VTCompressionProperties.MvHevcViewIds
-P:VideoToolbox.VTCompressionProperties.NumberOfPendingFrames
P:VideoToolbox.VTCompressionProperties.OutputBitDepth
-P:VideoToolbox.VTCompressionProperties.PixelAspectRatio
-P:VideoToolbox.VTCompressionProperties.PixelBufferPoolIsShared
-P:VideoToolbox.VTCompressionProperties.PixelTransferProperties
P:VideoToolbox.VTCompressionProperties.PreserveAlphaChannel
P:VideoToolbox.VTCompressionProperties.PreserveDynamicHdrMetadata
-P:VideoToolbox.VTCompressionProperties.ProfileLevel
-P:VideoToolbox.VTCompressionProperties.ProgressiveScan
P:VideoToolbox.VTCompressionProperties.ProjectionKind
-P:VideoToolbox.VTCompressionProperties.Quality
-P:VideoToolbox.VTCompressionProperties.RealTime
P:VideoToolbox.VTCompressionProperties.RecommendedParallelizationLimit
P:VideoToolbox.VTCompressionProperties.RecommendedParallelizedSubdivisionMinimumDuration
P:VideoToolbox.VTCompressionProperties.RecommendedParallelizedSubdivisionMinimumFrameCount
P:VideoToolbox.VTCompressionProperties.ReferenceBufferCount
-P:VideoToolbox.VTCompressionProperties.SourceFrameCount
P:VideoToolbox.VTCompressionProperties.SpatialAdaptiveQPLevel
P:VideoToolbox.VTCompressionProperties.StereoCameraBaseline
P:VideoToolbox.VTCompressionProperties.SuggestedLookAheadFrameCount
P:VideoToolbox.VTCompressionProperties.SupportsBaseFrameQP
P:VideoToolbox.VTCompressionProperties.TargetQualityForAlpha
-P:VideoToolbox.VTCompressionProperties.TransferFunction
P:VideoToolbox.VTCompressionProperties.UsingGpuRegistryId
-P:VideoToolbox.VTCompressionProperties.UsingHardwareAcceleratedVideoEncoder
-P:VideoToolbox.VTCompressionProperties.VideoEncoderPixelBufferAttributes
P:VideoToolbox.VTCompressionProperties.ViewPackingKind
-P:VideoToolbox.VTCompressionProperties.YCbCrMatrix
-P:VideoToolbox.VTCompressionPropertyKey.AllowFrameReordering
-P:VideoToolbox.VTCompressionPropertyKey.AllowOpenGop
-P:VideoToolbox.VTCompressionPropertyKey.AllowTemporalCompression
P:VideoToolbox.VTCompressionPropertyKey.AlphaChannelMode
-P:VideoToolbox.VTCompressionPropertyKey.AspectRatio16x9
-P:VideoToolbox.VTCompressionPropertyKey.AverageBitRate
P:VideoToolbox.VTCompressionPropertyKey.BaseLayerBitRateFraction
-P:VideoToolbox.VTCompressionPropertyKey.BaseLayerFrameRate
P:VideoToolbox.VTCompressionPropertyKey.BaseLayerFrameRateFraction
P:VideoToolbox.VTCompressionPropertyKey.CalculateMeanSquaredError
-P:VideoToolbox.VTCompressionPropertyKey.CleanAperture
-P:VideoToolbox.VTCompressionPropertyKey.ColorPrimaries
P:VideoToolbox.VTCompressionPropertyKey.ConstantBitRate
-P:VideoToolbox.VTCompressionPropertyKey.ContentLightLevelInfo
-P:VideoToolbox.VTCompressionPropertyKey.DataRateLimits
-P:VideoToolbox.VTCompressionPropertyKey.Depth
P:VideoToolbox.VTCompressionPropertyKey.EnableLowLatencyRateControl
P:VideoToolbox.VTCompressionPropertyKey.EnableLtr
-P:VideoToolbox.VTCompressionPropertyKey.EncoderId
P:VideoToolbox.VTCompressionPropertyKey.EstimatedAverageBytesPerFrame
-P:VideoToolbox.VTCompressionPropertyKey.ExpectedDuration
-P:VideoToolbox.VTCompressionPropertyKey.ExpectedFrameRate
-P:VideoToolbox.VTCompressionPropertyKey.FieldCount
-P:VideoToolbox.VTCompressionPropertyKey.FieldDetail
P:VideoToolbox.VTCompressionPropertyKey.GammaLevel
-P:VideoToolbox.VTCompressionPropertyKey.H264EntropyMode
P:VideoToolbox.VTCompressionPropertyKey.HasLeftStereoEyeView
P:VideoToolbox.VTCompressionPropertyKey.HasRightStereoEyeView
P:VideoToolbox.VTCompressionPropertyKey.HdrMetadataInsertionMode
P:VideoToolbox.VTCompressionPropertyKey.HeroEye
P:VideoToolbox.VTCompressionPropertyKey.HorizontalDisparityAdjustment
P:VideoToolbox.VTCompressionPropertyKey.HorizontalFieldOfView
-P:VideoToolbox.VTCompressionPropertyKey.ICCProfile
P:VideoToolbox.VTCompressionPropertyKey.MasteringDisplayColorVolume
P:VideoToolbox.VTCompressionPropertyKey.MaxAllowedFrameQP
P:VideoToolbox.VTCompressionPropertyKey.MaxFrameDelayCount
@@ -101322,8 +65973,6 @@ P:VideoToolbox.VTCompressionPropertyKey.UsingHardwareAcceleratedVideoEncoder
P:VideoToolbox.VTCompressionPropertyKey.VideoEncoderPixelBufferAttributes
P:VideoToolbox.VTCompressionPropertyKey.ViewPackingKind
P:VideoToolbox.VTCompressionPropertyKey.YCbCrMatrix
-P:VideoToolbox.VTDataRateLimit.NumberOfBytes
-P:VideoToolbox.VTDataRateLimit.Seconds
P:VideoToolbox.VTDecoderExtensionProperties.CodecName
P:VideoToolbox.VTDecoderExtensionProperties.ContainingBundleName
P:VideoToolbox.VTDecoderExtensionProperties.ContainingBundleUrl
@@ -101331,129 +65980,43 @@ P:VideoToolbox.VTDecoderExtensionProperties.ExtensionIdentifier
P:VideoToolbox.VTDecoderExtensionProperties.ExtensionName
P:VideoToolbox.VTDecoderExtensionProperties.ExtensionUrl
P:VideoToolbox.VTDecompressionProperties.AllowBitstreamToChangeFrameDimensions
-P:VideoToolbox.VTDecompressionProperties.ContentHasInterframeDependencies
P:VideoToolbox.VTDecompressionProperties.DecoderProducesRawOutput
-P:VideoToolbox.VTDecompressionProperties.DeinterlaceMode
-P:VideoToolbox.VTDecompressionProperties.FieldMode
P:VideoToolbox.VTDecompressionProperties.GeneratePerFrameHdrDisplayMetadata
-P:VideoToolbox.VTDecompressionProperties.MaximizePowerEfficiency
-P:VideoToolbox.VTDecompressionProperties.MaxOutputPresentationTimeStampOfFramesBeingDecoded
-P:VideoToolbox.VTDecompressionProperties.MinOutputPresentationTimeStampOfFramesBeingDecoded
-P:VideoToolbox.VTDecompressionProperties.NumberOfFramesBeingDecoded
-P:VideoToolbox.VTDecompressionProperties.OnlyTheseFrames
-P:VideoToolbox.VTDecompressionProperties.OutputPoolRequestedMinimumBufferCount
-P:VideoToolbox.VTDecompressionProperties.PixelBufferPool
-P:VideoToolbox.VTDecompressionProperties.PixelBufferPoolIsShared
-P:VideoToolbox.VTDecompressionProperties.PixelFormatsWithReducedResolutionSupport
-P:VideoToolbox.VTDecompressionProperties.PixelTransferProperties
-P:VideoToolbox.VTDecompressionProperties.PixelTransferSettings
P:VideoToolbox.VTDecompressionProperties.PropagatePerFrameHhrDisplayMetadata
-P:VideoToolbox.VTDecompressionProperties.RealTime
-P:VideoToolbox.VTDecompressionProperties.ReducedCoefficientDecode
-P:VideoToolbox.VTDecompressionProperties.ReducedFrameDelivery
-P:VideoToolbox.VTDecompressionProperties.ReducedResolutionDecode
P:VideoToolbox.VTDecompressionProperties.RequestedMvHevcVideoLayerIds
P:VideoToolbox.VTDecompressionProperties.RequestRawWOutput
-P:VideoToolbox.VTDecompressionProperties.SuggestedQualityOfServiceTiers
-P:VideoToolbox.VTDecompressionProperties.SupportedPixelFormatsOrderedByPerformance
-P:VideoToolbox.VTDecompressionProperties.SupportedPixelFormatsOrderedByQuality
-P:VideoToolbox.VTDecompressionProperties.TemporalLevelLimit
-P:VideoToolbox.VTDecompressionProperties.ThreadCount
P:VideoToolbox.VTDecompressionProperties.UsingGpuRegistryId
-P:VideoToolbox.VTDecompressionProperties.UsingHardwareAcceleratedVideoDecoder
P:VideoToolbox.VTDecompressionPropertyKey.AllowBitstreamToChangeFrameDimensions
-P:VideoToolbox.VTDecompressionPropertyKey.ContentHasInterframeDependencies
P:VideoToolbox.VTDecompressionPropertyKey.DecoderProducesRawOutput
-P:VideoToolbox.VTDecompressionPropertyKey.DeinterlaceMode
-P:VideoToolbox.VTDecompressionPropertyKey.DeinterlaceMode_Temporal
-P:VideoToolbox.VTDecompressionPropertyKey.DeinterlaceMode_VerticalFilter
-P:VideoToolbox.VTDecompressionPropertyKey.FieldMode
-P:VideoToolbox.VTDecompressionPropertyKey.FieldMode_BothFields
-P:VideoToolbox.VTDecompressionPropertyKey.FieldMode_BottomFieldOnly
-P:VideoToolbox.VTDecompressionPropertyKey.FieldMode_DeinterlaceFields
-P:VideoToolbox.VTDecompressionPropertyKey.FieldMode_SingleField
-P:VideoToolbox.VTDecompressionPropertyKey.FieldMode_TopFieldOnly
P:VideoToolbox.VTDecompressionPropertyKey.GeneratePerFrameHdrDisplayMetadata
-P:VideoToolbox.VTDecompressionPropertyKey.MaximizePowerEfficiency
-P:VideoToolbox.VTDecompressionPropertyKey.MaxOutputPresentationTimeStampOfFramesBeingDecoded
-P:VideoToolbox.VTDecompressionPropertyKey.MinOutputPresentationTimeStampOfFramesBeingDecoded
-P:VideoToolbox.VTDecompressionPropertyKey.NumberOfFramesBeingDecoded
-P:VideoToolbox.VTDecompressionPropertyKey.OnlyTheseFrames
-P:VideoToolbox.VTDecompressionPropertyKey.OnlyTheseFrames_AllFrames
-P:VideoToolbox.VTDecompressionPropertyKey.OnlyTheseFrames_IFrames
-P:VideoToolbox.VTDecompressionPropertyKey.OnlyTheseFrames_KeyFrames
-P:VideoToolbox.VTDecompressionPropertyKey.OnlyTheseFrames_NonDroppableFrames
-P:VideoToolbox.VTDecompressionPropertyKey.OutputPoolRequestedMinimumBufferCount
-P:VideoToolbox.VTDecompressionPropertyKey.PixelBufferPool
-P:VideoToolbox.VTDecompressionPropertyKey.PixelBufferPoolIsShared
-P:VideoToolbox.VTDecompressionPropertyKey.PixelFormatsWithReducedResolutionSupport
-P:VideoToolbox.VTDecompressionPropertyKey.PixelTransferProperties
P:VideoToolbox.VTDecompressionPropertyKey.PropagatePerFrameHdrDisplayMetadata
-P:VideoToolbox.VTDecompressionPropertyKey.RealTime
-P:VideoToolbox.VTDecompressionPropertyKey.ReducedCoefficientDecode
-P:VideoToolbox.VTDecompressionPropertyKey.ReducedFrameDelivery
-P:VideoToolbox.VTDecompressionPropertyKey.ReducedResolutionDecode
P:VideoToolbox.VTDecompressionPropertyKey.RequestedMvHevcVideoLayerIds
P:VideoToolbox.VTDecompressionPropertyKey.RequestRawWOutput
-P:VideoToolbox.VTDecompressionPropertyKey.SuggestedQualityOfServiceTiers
-P:VideoToolbox.VTDecompressionPropertyKey.SupportedPixelFormatsOrderedByPerformance
-P:VideoToolbox.VTDecompressionPropertyKey.SupportedPixelFormatsOrderedByQuality
-P:VideoToolbox.VTDecompressionPropertyKey.TemporalLevelLimit
-P:VideoToolbox.VTDecompressionPropertyKey.ThreadCount
P:VideoToolbox.VTDecompressionPropertyKey.UsingGpuRegistryId
-P:VideoToolbox.VTDecompressionPropertyKey.UsingHardwareAcceleratedVideoDecoder
P:VideoToolbox.VTDecompressionResolutionKeys.Height
P:VideoToolbox.VTDecompressionResolutionKeys.Width
P:VideoToolbox.VTDecompressionResolutionOptions.Height
P:VideoToolbox.VTDecompressionResolutionOptions.Width
P:VideoToolbox.VTEncodeFrameOptionKey.AcknowledgedLtrTokens
P:VideoToolbox.VTEncodeFrameOptionKey.BaseFrameQP
-P:VideoToolbox.VTEncodeFrameOptionKey.ForceKeyFrame
P:VideoToolbox.VTEncodeFrameOptionKey.ForceLtrRefresh
P:VideoToolbox.VTEncodeFrameOptionKey.RequireLtrAcknowledgementToken
-P:VideoToolbox.VTEncodeFrameOptions.ForceKeyFrame
P:VideoToolbox.VTExtensionPropertiesKey.CodecName
P:VideoToolbox.VTExtensionPropertiesKey.ContainingBundleName
P:VideoToolbox.VTExtensionPropertiesKey.ContainingBundleUrl
P:VideoToolbox.VTExtensionPropertiesKey.ExtensionIdentifier
P:VideoToolbox.VTExtensionPropertiesKey.ExtensionName
P:VideoToolbox.VTExtensionPropertiesKey.ExtensionUrl
-P:VideoToolbox.VTH264EntropyModeKeys.CABAC
-P:VideoToolbox.VTH264EntropyModeKeys.CAVLC
P:VideoToolbox.VTHdrPerFrameMetadataGenerationOptions.HdrFormats
P:VideoToolbox.VTHdrPerFrameMetadataGenerationOptionsKey.HdrFormats
-P:VideoToolbox.VTMultiPassStorageCreationOptionKeys.DoNotDelete
-P:VideoToolbox.VTMultiPassStorageCreationOptions.DoNotDelete
P:VideoToolbox.VTPixelRotationProperties.FlipHorizontalOrientation
P:VideoToolbox.VTPixelRotationProperties.FlipVerticalOrientation
P:VideoToolbox.VTPixelRotationProperties.Rotation
P:VideoToolbox.VTPixelRotationPropertyKeys.FlipHorizontalOrientation
P:VideoToolbox.VTPixelRotationPropertyKeys.FlipVerticalOrientation
P:VideoToolbox.VTPixelRotationPropertyKeys.Rotation
-P:VideoToolbox.VTPixelTransferProperties.DestinationCleanAperture
-P:VideoToolbox.VTPixelTransferProperties.DestinationColorPrimaries
-P:VideoToolbox.VTPixelTransferProperties.DestinationICCProfile
-P:VideoToolbox.VTPixelTransferProperties.DestinationPixelAspectRatio
-P:VideoToolbox.VTPixelTransferProperties.DestinationTransferFunction
-P:VideoToolbox.VTPixelTransferProperties.DestinationYCbCrMatrix
-P:VideoToolbox.VTPixelTransferProperties.DownsamplingMode
P:VideoToolbox.VTPixelTransferProperties.RealTime
-P:VideoToolbox.VTPixelTransferProperties.ScalingMode
-P:VideoToolbox.VTPixelTransferPropertyKeys.DestinationCleanAperture
-P:VideoToolbox.VTPixelTransferPropertyKeys.DestinationColorPrimaries
-P:VideoToolbox.VTPixelTransferPropertyKeys.DestinationICCProfile
-P:VideoToolbox.VTPixelTransferPropertyKeys.DestinationPixelAspectRatio
-P:VideoToolbox.VTPixelTransferPropertyKeys.DestinationTransferFunction
-P:VideoToolbox.VTPixelTransferPropertyKeys.DestinationYCbCrMatrix
-P:VideoToolbox.VTPixelTransferPropertyKeys.DownsamplingMode
-P:VideoToolbox.VTPixelTransferPropertyKeys.DownsamplingMode_Average
-P:VideoToolbox.VTPixelTransferPropertyKeys.DownsamplingMode_Decimate
P:VideoToolbox.VTPixelTransferPropertyKeys.RealTime
-P:VideoToolbox.VTPixelTransferPropertyKeys.ScalingMode
-P:VideoToolbox.VTPixelTransferPropertyKeys.ScalingMode_CropSourceToCleanAperture
-P:VideoToolbox.VTPixelTransferPropertyKeys.ScalingMode_Letterbox
-P:VideoToolbox.VTPixelTransferPropertyKeys.ScalingMode_Normal
-P:VideoToolbox.VTPixelTransferPropertyKeys.ScalingMode_Trim
P:VideoToolbox.VTProfileLevelKeys.H263_Profile0_Level10
P:VideoToolbox.VTProfileLevelKeys.H263_Profile0_Level45
P:VideoToolbox.VTProfileLevelKeys.H263_Profile3_Level45
@@ -101509,25 +66072,6 @@ P:VideoToolbox.VTProfileLevelKeys.MP4V_Simple_L0
P:VideoToolbox.VTProfileLevelKeys.MP4V_Simple_L1
P:VideoToolbox.VTProfileLevelKeys.MP4V_Simple_L2
P:VideoToolbox.VTProfileLevelKeys.MP4V_Simple_L3
-P:VideoToolbox.VTPropertyKeys.DocumentationKey
-P:VideoToolbox.VTPropertyKeys.ReadWriteStatus
-P:VideoToolbox.VTPropertyKeys.ShouldBeSerialized
-P:VideoToolbox.VTPropertyKeys.SupportedValueListKey
-P:VideoToolbox.VTPropertyKeys.SupportedValueMaximumKey
-P:VideoToolbox.VTPropertyKeys.SupportedValueMinimumKey
-P:VideoToolbox.VTPropertyKeys.Type
-P:VideoToolbox.VTPropertyOptions.Documentation
-P:VideoToolbox.VTPropertyOptions.ReadWriteStatus
-P:VideoToolbox.VTPropertyOptions.ShouldBeSerialized
-P:VideoToolbox.VTPropertyOptions.SupportedValueList
-P:VideoToolbox.VTPropertyOptions.SupportedValueMaximum
-P:VideoToolbox.VTPropertyOptions.SupportedValueMinimum
-P:VideoToolbox.VTPropertyOptions.Type
-P:VideoToolbox.VTPropertyReadWriteStatusKeys.ReadOnly
-P:VideoToolbox.VTPropertyReadWriteStatusKeys.ReadWrite
-P:VideoToolbox.VTPropertyTypeKeys.Boolean
-P:VideoToolbox.VTPropertyTypeKeys.Enumeration
-P:VideoToolbox.VTPropertyTypeKeys.Number
P:VideoToolbox.VTRawProcessingParameterKey.CameraValue
P:VideoToolbox.VTRawProcessingParameterKey.CurrentValue
P:VideoToolbox.VTRawProcessingParameterKey.Description
@@ -101582,8 +66126,6 @@ P:VideoToolbox.VTSampleAttachmentQualityMetricsKey.ChromaRedMeanSquaredError
P:VideoToolbox.VTSampleAttachmentQualityMetricsKey.LumaMeanSquaredError
P:VideoToolbox.VTSampleAttachments.QualityMetrics
P:VideoToolbox.VTSampleAttachments.RequireLtrAcknowledgementToken
-P:VideoToolbox.VTSupportedEncoderProperties.EncoderId
-P:VideoToolbox.VTSupportedEncoderProperties.SupportedProperties
P:VideoToolbox.VTVideoDecoderSpecification.EnableHardwareAcceleratedVideoDecoder
P:VideoToolbox.VTVideoDecoderSpecification.PreferredDecoderGpuRegistryId
P:VideoToolbox.VTVideoDecoderSpecification.RequiredDecoderGpuRegistryId
@@ -101592,11 +66134,6 @@ P:VideoToolbox.VTVideoDecoderSpecificationKeys.EnableHardwareAcceleratedVideoDec
P:VideoToolbox.VTVideoDecoderSpecificationKeys.PreferredDecoderGpuRegistryId
P:VideoToolbox.VTVideoDecoderSpecificationKeys.RequiredDecoderGpuRegistryId
P:VideoToolbox.VTVideoDecoderSpecificationKeys.RequireHardwareAcceleratedVideoDecoder
-P:VideoToolbox.VTVideoEncoder.CodecName
-P:VideoToolbox.VTVideoEncoder.CodecType
-P:VideoToolbox.VTVideoEncoder.DisplayName
-P:VideoToolbox.VTVideoEncoder.EncoderId
-P:VideoToolbox.VTVideoEncoder.EncoderName
P:VideoToolbox.VTVideoEncoder.GpuRegistryId
P:VideoToolbox.VTVideoEncoder.IncludeStandardDefinitionDVEncoders
P:VideoToolbox.VTVideoEncoder.InstanceLimit
@@ -101619,369 +66156,49 @@ P:Vision.IVNFaceObservationAccepting.InputFaceObservations
P:Vision.IVNRequestProgressProviding.Indeterminate
P:Vision.IVNRequestProgressProviding.ProgressHandler
P:Vision.IVNRequestRevisionProviding.RequestRevision
-P:Vision.VNAnimalBodyPoseObservation.AvailableJointGroupNames
-P:Vision.VNAnimalBodyPoseObservation.AvailableJointNames
-P:Vision.VNBarcodeObservation.BarcodeDescriptor
-P:Vision.VNBarcodeObservation.IsColorInverted
-P:Vision.VNBarcodeObservation.IsGS1DataCarrier
-P:Vision.VNBarcodeObservation.PayloadData
-P:Vision.VNBarcodeObservation.PayloadStringValue
-P:Vision.VNBarcodeObservation.SupplementalCompositeType
-P:Vision.VNBarcodeObservation.SupplementalPayloadData
-P:Vision.VNBarcodeObservation.SupplementalPayloadString
P:Vision.VNBarcodeObservation.Symbology
-P:Vision.VNBarcodeObservation.WeakSymbology
-P:Vision.VNCalculateImageAestheticsScoresRequest.Results
-P:Vision.VNCircle.Center
-P:Vision.VNCircle.Diameter
-P:Vision.VNCircle.Radius
-P:Vision.VNCircle.Zero
-P:Vision.VNClassificationObservation.HasPrecisionRecallCurve
-P:Vision.VNClassificationObservation.Identifier
-P:Vision.VNClassifyImageRequest.CurrentRevision
-P:Vision.VNClassifyImageRequest.DefaultRevision
-P:Vision.VNClassifyImageRequest.Results
-P:Vision.VNClassifyImageRequest.Revision
P:Vision.VNClassifyImageRequest.SupportedRevisions
-P:Vision.VNClassifyImageRequest.WeakSupportedRevisions
-P:Vision.VNContour.AspectRatio
-P:Vision.VNContour.ChildContourCount
-P:Vision.VNContour.ChildContours
-P:Vision.VNContour.IndexPath
-P:Vision.VNContour.NormalizedPath
-P:Vision.VNContour.NormalizedPoints
-P:Vision.VNContour.PointCount
-P:Vision.VNContour.RequestRevision
-P:Vision.VNContoursObservation.ContourCount
-P:Vision.VNContoursObservation.NormalizedPath
P:Vision.VNContoursObservation.RecognizedPointGroupKeyAll
-P:Vision.VNContoursObservation.TopLevelContourCount
-P:Vision.VNContoursObservation.TopLevelContours
-P:Vision.VNCoreMLFeatureValueObservation.FeatureName
-P:Vision.VNCoreMLFeatureValueObservation.FeatureValue
-P:Vision.VNCoreMLModel.FeatureProvider
-P:Vision.VNCoreMLModel.InputImageFeatureName
-P:Vision.VNCoreMLRequest.CurrentRevision
-P:Vision.VNCoreMLRequest.DefaultRevision
-P:Vision.VNCoreMLRequest.ImageCropAndScaleOption
-P:Vision.VNCoreMLRequest.Model
-P:Vision.VNCoreMLRequest.Revision
P:Vision.VNCoreMLRequest.SupportedRevisions
-P:Vision.VNCoreMLRequest.WeakSupportedRevisions
-P:Vision.VNDetectAnimalBodyPoseRequest.Results
-P:Vision.VNDetectBarcodesRequest.CoalesceCompositeSymbologies
-P:Vision.VNDetectBarcodesRequest.CurrentRevision
-P:Vision.VNDetectBarcodesRequest.DefaultRevision
-P:Vision.VNDetectBarcodesRequest.Results
-P:Vision.VNDetectBarcodesRequest.Revision
P:Vision.VNDetectBarcodesRequest.SupportedRevisions
P:Vision.VNDetectBarcodesRequest.SupportedSymbologies
P:Vision.VNDetectBarcodesRequest.Symbologies
-P:Vision.VNDetectBarcodesRequest.WeakSupportedRevisions
-P:Vision.VNDetectBarcodesRequest.WeakSupportedSymbologies
-P:Vision.VNDetectBarcodesRequest.WeakSymbologies
-P:Vision.VNDetectContoursRequest.ContrastAdjustment
-P:Vision.VNDetectContoursRequest.ContrastPivot
-P:Vision.VNDetectContoursRequest.CurrentRevision
-P:Vision.VNDetectContoursRequest.DefaultRevision
-P:Vision.VNDetectContoursRequest.DetectsDarkOnLight
-P:Vision.VNDetectContoursRequest.MaximumImageDimension
-P:Vision.VNDetectContoursRequest.Results
-P:Vision.VNDetectContoursRequest.Revision
P:Vision.VNDetectContoursRequest.SupportedRevisions
-P:Vision.VNDetectContoursRequest.WeakSupportedRevisions
-P:Vision.VNDetectDocumentSegmentationRequest.Results
-P:Vision.VNDetectedObjectObservation.BoundingBox
-P:Vision.VNDetectedObjectObservation.GlobalSegmentationMask
-P:Vision.VNDetectedPoint.Confidence
-P:Vision.VNDetectFaceCaptureQualityRequest.CurrentRevision
-P:Vision.VNDetectFaceCaptureQualityRequest.DefaultRevision
-P:Vision.VNDetectFaceCaptureQualityRequest.InputFaceObservations
-P:Vision.VNDetectFaceCaptureQualityRequest.Results
-P:Vision.VNDetectFaceCaptureQualityRequest.Revision
P:Vision.VNDetectFaceCaptureQualityRequest.SupportedRevisions
-P:Vision.VNDetectFaceCaptureQualityRequest.WeakSupportedRevisions
-P:Vision.VNDetectFaceLandmarksRequest.Constellation
-P:Vision.VNDetectFaceLandmarksRequest.CurrentRevision
-P:Vision.VNDetectFaceLandmarksRequest.DefaultRevision
-P:Vision.VNDetectFaceLandmarksRequest.InputFaceObservations
-P:Vision.VNDetectFaceLandmarksRequest.Results
-P:Vision.VNDetectFaceLandmarksRequest.Revision
P:Vision.VNDetectFaceLandmarksRequest.SupportedRevisions
-P:Vision.VNDetectFaceLandmarksRequest.WeakSupportedRevisions
-P:Vision.VNDetectFaceRectanglesRequest.CurrentRevision
-P:Vision.VNDetectFaceRectanglesRequest.DefaultRevision
-P:Vision.VNDetectFaceRectanglesRequest.Results
-P:Vision.VNDetectFaceRectanglesRequest.Revision
P:Vision.VNDetectFaceRectanglesRequest.SupportedRevisions
-P:Vision.VNDetectFaceRectanglesRequest.WeakSupportedRevisions
-P:Vision.VNDetectHorizonRequest.CurrentRevision
-P:Vision.VNDetectHorizonRequest.DefaultRevision
-P:Vision.VNDetectHorizonRequest.Results
-P:Vision.VNDetectHorizonRequest.Revision
P:Vision.VNDetectHorizonRequest.SupportedRevisions
-P:Vision.VNDetectHorizonRequest.WeakSupportedRevisions
-P:Vision.VNDetectHumanBodyPose3DRequest.CurrentRevision
-P:Vision.VNDetectHumanBodyPose3DRequest.DefaultRevision
-P:Vision.VNDetectHumanBodyPose3DRequest.Results
-P:Vision.VNDetectHumanBodyPose3DRequest.Revision
P:Vision.VNDetectHumanBodyPose3DRequest.SupportedRevisions
-P:Vision.VNDetectHumanBodyPose3DRequest.WeakSupportedRevisions
-P:Vision.VNDetectHumanBodyPoseRequest.CurrentRevision
-P:Vision.VNDetectHumanBodyPoseRequest.DefaultRevision
-P:Vision.VNDetectHumanBodyPoseRequest.Results
-P:Vision.VNDetectHumanBodyPoseRequest.Revision
P:Vision.VNDetectHumanBodyPoseRequest.SupportedRevisions
-P:Vision.VNDetectHumanBodyPoseRequest.WeakSupportedRevisions
-P:Vision.VNDetectHumanHandPoseRequest.CurrentRevision
-P:Vision.VNDetectHumanHandPoseRequest.DefaultRevision
-P:Vision.VNDetectHumanHandPoseRequest.MaximumHandCount
-P:Vision.VNDetectHumanHandPoseRequest.Results
-P:Vision.VNDetectHumanHandPoseRequest.Revision
P:Vision.VNDetectHumanHandPoseRequest.SupportedRevisions
-P:Vision.VNDetectHumanHandPoseRequest.WeakSupportedRevisions
-P:Vision.VNDetectHumanRectanglesRequest.CurrentRevision
-P:Vision.VNDetectHumanRectanglesRequest.DefaultRevision
-P:Vision.VNDetectHumanRectanglesRequest.Results
-P:Vision.VNDetectHumanRectanglesRequest.Revision
P:Vision.VNDetectHumanRectanglesRequest.SupportedRevisions
-P:Vision.VNDetectHumanRectanglesRequest.UpperBodyOnly
-P:Vision.VNDetectHumanRectanglesRequest.WeakSupportedRevisions
-P:Vision.VNDetectRectanglesRequest.CurrentRevision
-P:Vision.VNDetectRectanglesRequest.DefaultRevision
-P:Vision.VNDetectRectanglesRequest.MaximumAspectRatio
-P:Vision.VNDetectRectanglesRequest.MaximumObservations
-P:Vision.VNDetectRectanglesRequest.MinimumAspectRatio
-P:Vision.VNDetectRectanglesRequest.MinimumConfidence
-P:Vision.VNDetectRectanglesRequest.MinimumSize
-P:Vision.VNDetectRectanglesRequest.QuadratureTolerance
-P:Vision.VNDetectRectanglesRequest.Results
-P:Vision.VNDetectRectanglesRequest.Revision
P:Vision.VNDetectRectanglesRequest.SupportedRevisions
-P:Vision.VNDetectRectanglesRequest.WeakSupportedRevisions
-P:Vision.VNDetectTextRectanglesRequest.CurrentRevision
-P:Vision.VNDetectTextRectanglesRequest.DefaultRevision
-P:Vision.VNDetectTextRectanglesRequest.ReportCharacterBoxes
-P:Vision.VNDetectTextRectanglesRequest.Results
-P:Vision.VNDetectTextRectanglesRequest.Revision
P:Vision.VNDetectTextRectanglesRequest.SupportedRevisions
-P:Vision.VNDetectTextRectanglesRequest.WeakSupportedRevisions
-P:Vision.VNDetectTrajectoriesRequest.CurrentRevision
-P:Vision.VNDetectTrajectoriesRequest.DefaultRevision
-P:Vision.VNDetectTrajectoriesRequest.ObjectMaximumNormalizedRadius
-P:Vision.VNDetectTrajectoriesRequest.ObjectMinimumNormalizedRadius
-P:Vision.VNDetectTrajectoriesRequest.Results
-P:Vision.VNDetectTrajectoriesRequest.Revision
P:Vision.VNDetectTrajectoriesRequest.SupportedRevisions
-P:Vision.VNDetectTrajectoriesRequest.TargetFrameTime
-P:Vision.VNDetectTrajectoriesRequest.TrajectoryLength
-P:Vision.VNDetectTrajectoriesRequest.WeakSupportedRevisions
-P:Vision.VNFaceLandmarkRegion.PointCount
-P:Vision.VNFaceLandmarkRegion.RequestRevision
P:Vision.VNFaceLandmarkRegion2D.NormalizedPoints
-P:Vision.VNFaceLandmarkRegion2D.PointsClassification
-P:Vision.VNFaceLandmarkRegion2D.PrecisionEstimatesPerPoint
-P:Vision.VNFaceLandmarks.Confidence
-P:Vision.VNFaceLandmarks.RequestRevision
-P:Vision.VNFaceLandmarks2D.AllPoints
-P:Vision.VNFaceLandmarks2D.FaceContour
-P:Vision.VNFaceLandmarks2D.InnerLips
-P:Vision.VNFaceLandmarks2D.LeftEye
-P:Vision.VNFaceLandmarks2D.LeftEyebrow
-P:Vision.VNFaceLandmarks2D.LeftPupil
-P:Vision.VNFaceLandmarks2D.MedianLine
-P:Vision.VNFaceLandmarks2D.Nose
-P:Vision.VNFaceLandmarks2D.NoseCrest
-P:Vision.VNFaceLandmarks2D.OuterLips
-P:Vision.VNFaceLandmarks2D.RightEye
-P:Vision.VNFaceLandmarks2D.RightEyebrow
-P:Vision.VNFaceLandmarks2D.RightPupil
-P:Vision.VNFaceObservation.FaceCaptureQuality
-P:Vision.VNFaceObservation.Landmarks
-P:Vision.VNFaceObservation.Pitch
-P:Vision.VNFaceObservation.Roll
-P:Vision.VNFaceObservation.Yaw
-P:Vision.VNFeaturePrintObservation.Data
-P:Vision.VNFeaturePrintObservation.ElementCount
-P:Vision.VNFeaturePrintObservation.ElementType
-P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.CurrentRevision
-P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.DefaultRevision
-P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.Results
-P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.Revision
P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.SupportedRevisions
-P:Vision.VNGenerateAttentionBasedSaliencyImageRequest.WeakSupportedRevisions
-P:Vision.VNGenerateForegroundInstanceMaskRequest.Results
-P:Vision.VNGenerateImageFeaturePrintRequest.CurrentRevision
-P:Vision.VNGenerateImageFeaturePrintRequest.DefaultRevision
-P:Vision.VNGenerateImageFeaturePrintRequest.ImageCropAndScaleOption
-P:Vision.VNGenerateImageFeaturePrintRequest.Results
-P:Vision.VNGenerateImageFeaturePrintRequest.Revision
P:Vision.VNGenerateImageFeaturePrintRequest.SupportedRevisions
-P:Vision.VNGenerateImageFeaturePrintRequest.WeakSupportedRevisions
-P:Vision.VNGenerateObjectnessBasedSaliencyImageRequest.CurrentRevision
-P:Vision.VNGenerateObjectnessBasedSaliencyImageRequest.DefaultRevision
-P:Vision.VNGenerateObjectnessBasedSaliencyImageRequest.Results
-P:Vision.VNGenerateObjectnessBasedSaliencyImageRequest.Revision
P:Vision.VNGenerateObjectnessBasedSaliencyImageRequest.SupportedRevisions
-P:Vision.VNGenerateObjectnessBasedSaliencyImageRequest.WeakSupportedRevisions
-P:Vision.VNGenerateOpticalFlowRequest.ComputationAccuracy
-P:Vision.VNGenerateOpticalFlowRequest.CurrentRevision
-P:Vision.VNGenerateOpticalFlowRequest.DefaultRevision
-P:Vision.VNGenerateOpticalFlowRequest.KeepNetworkOutput
-P:Vision.VNGenerateOpticalFlowRequest.OutputPixelFormat
-P:Vision.VNGenerateOpticalFlowRequest.Results
-P:Vision.VNGenerateOpticalFlowRequest.Revision
P:Vision.VNGenerateOpticalFlowRequest.SupportedRevisions
-P:Vision.VNGenerateOpticalFlowRequest.WeakSupportedRevisions
-P:Vision.VNGeneratePersonInstanceMaskRequest.Results
-P:Vision.VNGeneratePersonSegmentationRequest.OutputPixelFormat
-P:Vision.VNGeneratePersonSegmentationRequest.QualityLevel
-P:Vision.VNGeneratePersonSegmentationRequest.Results
-P:Vision.VNHomographicImageRegistrationRequest.CurrentRevision
-P:Vision.VNHomographicImageRegistrationRequest.DefaultRevision
-P:Vision.VNHomographicImageRegistrationRequest.Results
-P:Vision.VNHomographicImageRegistrationRequest.Revision
P:Vision.VNHomographicImageRegistrationRequest.SupportedRevisions
-P:Vision.VNHomographicImageRegistrationRequest.WeakSupportedRevisions
-P:Vision.VNHorizonObservation.Angle
-P:Vision.VNHorizonObservation.Transform
-P:Vision.VNHumanBodyPose3DObservation.AvailableJointNames
-P:Vision.VNHumanBodyPose3DObservation.AvailableJointsGroupNames
-P:Vision.VNHumanBodyPose3DObservation.BodyHeight
-P:Vision.VNHumanBodyPose3DObservation.CameraOriginMatrix
-P:Vision.VNHumanBodyPose3DObservation.HeightEstimation
-P:Vision.VNHumanBodyPoseObservation.AvailableJointNames
-P:Vision.VNHumanBodyPoseObservation.AvailableJointsGroupNames
-P:Vision.VNHumanBodyRecognizedPoint3D.LocalPosition
-P:Vision.VNHumanBodyRecognizedPoint3D.ParentJoint
-P:Vision.VNHumanHandPoseObservation.AvailableJointNames
-P:Vision.VNHumanHandPoseObservation.AvailableJointsGroupNames
-P:Vision.VNHumanHandPoseObservation.Chirality
-P:Vision.VNHumanObservation.UpperBodyOnly
-P:Vision.VNImageAestheticsScoresObservation.IsUtility
-P:Vision.VNImageAestheticsScoresObservation.OverallScore
-P:Vision.VNImageBasedRequest.RegionOfInterest
-P:Vision.VNImageHomographicAlignmentObservation.WarpTransform
P:Vision.VNImageOptions.CameraIntrinsics
P:Vision.VNImageOptions.CIContext
P:Vision.VNImageOptions.Properties
P:Vision.VNImageOptions.WeakProperties
-P:Vision.VNImageTranslationAlignmentObservation.AlignmentTransform
-P:Vision.VNInstanceMaskObservation.AllInstances
-P:Vision.VNInstanceMaskObservation.InstanceMask
-P:Vision.VNObservation.Confidence
-P:Vision.VNObservation.RequestRevision
-P:Vision.VNObservation.TimeRange
-P:Vision.VNObservation.Uuid
-P:Vision.VNPixelBufferObservation.FeatureName
-P:Vision.VNPixelBufferObservation.PixelBuffer
-P:Vision.VNPoint.Location
-P:Vision.VNPoint.X
-P:Vision.VNPoint.Y
-P:Vision.VNPoint.Zero
-P:Vision.VNPoint3D.Position
-P:Vision.VNRecognizeAnimalsRequest.CurrentRevision
-P:Vision.VNRecognizeAnimalsRequest.DefaultRevision
-P:Vision.VNRecognizeAnimalsRequest.Results
-P:Vision.VNRecognizeAnimalsRequest.Revision
P:Vision.VNRecognizeAnimalsRequest.SupportedRevisions
-P:Vision.VNRecognizeAnimalsRequest.WeakSupportedRevisions
-P:Vision.VNRecognizedObjectObservation.Labels
-P:Vision.VNRecognizedPoint.Identifier
P:Vision.VNRecognizedPoint3D.GroupKeyAll
-P:Vision.VNRecognizedPoint3D.Identifier
-P:Vision.VNRecognizedPoints3DObservation.AvailableGroupKeys
-P:Vision.VNRecognizedPoints3DObservation.AvailableKeys
-P:Vision.VNRecognizedPointsObservation.AvailableGroupKeys
-P:Vision.VNRecognizedPointsObservation.AvailableKeys
-P:Vision.VNRecognizedText.Confidence
-P:Vision.VNRecognizedText.RequestRevision
-P:Vision.VNRecognizedText.String
-P:Vision.VNRecognizeTextRequest.AutomaticallyDetectsLanguage
-P:Vision.VNRecognizeTextRequest.CurrentRevision
-P:Vision.VNRecognizeTextRequest.CustomWords
-P:Vision.VNRecognizeTextRequest.DefaultRevision
-P:Vision.VNRecognizeTextRequest.Indeterminate
-P:Vision.VNRecognizeTextRequest.MinimumTextHeight
-P:Vision.VNRecognizeTextRequest.ProgressHandler
-P:Vision.VNRecognizeTextRequest.RecognitionLanguages
-P:Vision.VNRecognizeTextRequest.RecognitionLevel
-P:Vision.VNRecognizeTextRequest.Results
-P:Vision.VNRecognizeTextRequest.Revision
P:Vision.VNRecognizeTextRequest.SupportedRevisions
-P:Vision.VNRecognizeTextRequest.UsesLanguageCorrection
-P:Vision.VNRecognizeTextRequest.WeakSupportedRevisions
-P:Vision.VNRectangleObservation.BottomLeft
-P:Vision.VNRectangleObservation.BottomRight
-P:Vision.VNRectangleObservation.TopLeft
-P:Vision.VNRectangleObservation.TopRight
-P:Vision.VNRequest.CompletionHandler
-P:Vision.VNRequest.PreferBackgroundProcessing
-P:Vision.VNRequest.UsesCpuOnly
-P:Vision.VNSaliencyImageObservation.SalientObjects
-P:Vision.VNStatefulRequest.CurrentRevision
-P:Vision.VNStatefulRequest.DefaultRevision
-P:Vision.VNStatefulRequest.FrameAnalysisSpacing
-P:Vision.VNStatefulRequest.MinimumLatencyFrameCount
-P:Vision.VNStatefulRequest.Revision
P:Vision.VNStatefulRequest.SupportedRevisions
-P:Vision.VNStatefulRequest.WeakSupportedRevisions
-P:Vision.VNTextObservation.CharacterBoxes
-P:Vision.VNTrackHomographicImageRegistrationRequest.CurrentRevision
-P:Vision.VNTrackHomographicImageRegistrationRequest.DefaultRevision
-P:Vision.VNTrackHomographicImageRegistrationRequest.Results
-P:Vision.VNTrackHomographicImageRegistrationRequest.Revision
P:Vision.VNTrackHomographicImageRegistrationRequest.SupportedRevisions
-P:Vision.VNTrackHomographicImageRegistrationRequest.WeakSupportedRevisions
-P:Vision.VNTrackingRequest.InputObservation
P:Vision.VNTrackingRequest.LastFrame
-P:Vision.VNTrackingRequest.TrackingLevel
-P:Vision.VNTrackObjectRequest.CurrentRevision
-P:Vision.VNTrackObjectRequest.DefaultRevision
-P:Vision.VNTrackObjectRequest.Revision
P:Vision.VNTrackObjectRequest.SupportedRevisions
-P:Vision.VNTrackObjectRequest.WeakSupportedRevisions
-P:Vision.VNTrackOpticalFlowRequest.ComputationAccuracy
-P:Vision.VNTrackOpticalFlowRequest.KeepNetworkOutput
-P:Vision.VNTrackOpticalFlowRequest.OutputPixelFormat
-P:Vision.VNTrackOpticalFlowRequest.Results
-P:Vision.VNTrackRectangleRequest.CurrentRevision
-P:Vision.VNTrackRectangleRequest.DefaultRevision
-P:Vision.VNTrackRectangleRequest.Revision
P:Vision.VNTrackRectangleRequest.SupportedRevisions
-P:Vision.VNTrackRectangleRequest.WeakSupportedRevisions
-P:Vision.VNTrackTranslationalImageRegistrationRequest.CurrentRevision
-P:Vision.VNTrackTranslationalImageRegistrationRequest.DefaultRevision
-P:Vision.VNTrackTranslationalImageRegistrationRequest.Results
-P:Vision.VNTrackTranslationalImageRegistrationRequest.Revision
P:Vision.VNTrackTranslationalImageRegistrationRequest.SupportedRevisions
-P:Vision.VNTrackTranslationalImageRegistrationRequest.WeakSupportedRevisions
-P:Vision.VNTrajectoryObservation.DetectedPoints
-P:Vision.VNTrajectoryObservation.EquationCoefficients
-P:Vision.VNTrajectoryObservation.MovingAverageRadius
-P:Vision.VNTrajectoryObservation.ProjectedPoints
-P:Vision.VNTranslationalImageRegistrationRequest.CurrentRevision
-P:Vision.VNTranslationalImageRegistrationRequest.DefaultRevision
-P:Vision.VNTranslationalImageRegistrationRequest.Results
P:Vision.VNTranslationalImageRegistrationRequest.SupportedRevisions
-P:Vision.VNTranslationalImageRegistrationRequest.WeakSupportedRevisions
P:Vision.VNUtils.NormalizedIdentityRect
P:Vision.VNUtils.VisionVersionNumber
-P:Vision.VNVector.Length
-P:Vision.VNVector.R
-P:Vision.VNVector.SquaredLength
-P:Vision.VNVector.Theta
-P:Vision.VNVector.X
-P:Vision.VNVector.Y
-P:Vision.VNVector.Zero
-P:Vision.VNVideoProcessorFrameRateCadence.FrameRate
-P:Vision.VNVideoProcessorRequestProcessingOptions.Cadence
-P:Vision.VNVideoProcessorTimeIntervalCadence.TimeInterval
-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
@@ -102006,561 +66223,19 @@ P:WatchConnectivity.WCSessionFileTransfer.Transferring
P:WatchConnectivity.WCSessionUserInfoTransfer.CurrentComplicationInfo
P:WatchConnectivity.WCSessionUserInfoTransfer.Transferring
P:WatchConnectivity.WCSessionUserInfoTransfer.UserInfo
-P:WebKit.DomAbstractView.Document
-P:WebKit.DomAttr.Name
-P:WebKit.DomAttr.OwnerElement
-P:WebKit.DomAttr.Specified
-P:WebKit.DomAttr.Style
-P:WebKit.DomAttr.Value
-P:WebKit.DomBlob.Size
-P:WebKit.DomCharacterData.Count
-P:WebKit.DomCharacterData.Data
-P:WebKit.DomCssCharsetRule.Encoding
-P:WebKit.DomCssFontFaceRule.Style
-P:WebKit.DomCssMediaRule.CssRules
-P:WebKit.DomCssMediaRule.Media
-P:WebKit.DomCssPageRule.SelectorText
-P:WebKit.DomCssPageRule.Style
-P:WebKit.DomCssRule.CssText
-P:WebKit.DomCssRule.ParentRule
-P:WebKit.DomCssRule.ParentStyleSheet
-P:WebKit.DomCssRule.Type
-P:WebKit.DomCssRuleList.Count
P:WebKit.DomCssRuleList.Item(System.Int32)
-P:WebKit.DomCssStyleDeclaration.Count
-P:WebKit.DomCssStyleDeclaration.CssText
P:WebKit.DomCssStyleDeclaration.Item(System.Int32)
-P:WebKit.DomCssStyleDeclaration.ParentRule
-P:WebKit.DomCssStyleRule.SelectorText
-P:WebKit.DomCssStyleRule.Style
-P:WebKit.DomCssStyleSheet.CssRules
-P:WebKit.DomCssStyleSheet.OwnerRule
-P:WebKit.DomCssStyleSheet.Rules
-P:WebKit.DomCssValue.CssText
-P:WebKit.DomCssValue.Type
-P:WebKit.DomDocument.Anchors
-P:WebKit.DomDocument.Applets
-P:WebKit.DomDocument.Body
-P:WebKit.DomDocument.CharacterSet
-P:WebKit.DomDocument.Charset
-P:WebKit.DomDocument.Cookie
-P:WebKit.DomDocument.DefaultCharset
-P:WebKit.DomDocument.DefaultView
-P:WebKit.DomDocument.DocumentElement
-P:WebKit.DomDocument.DocumentType
-P:WebKit.DomDocument.DocumentURI
-P:WebKit.DomDocument.Domain
-P:WebKit.DomDocument.Forms
-P:WebKit.DomDocument.Images
-P:WebKit.DomDocument.Implementation
-P:WebKit.DomDocument.InputEncoding
-P:WebKit.DomDocument.LastModified
-P:WebKit.DomDocument.Links
-P:WebKit.DomDocument.PreferredStylesheetSet
-P:WebKit.DomDocument.ReadyState
-P:WebKit.DomDocument.Referrer
-P:WebKit.DomDocument.SelectedStylesheetSet
-P:WebKit.DomDocument.StyleSheets
-P:WebKit.DomDocument.Title
-P:WebKit.DomDocument.Url
-P:WebKit.DomDocument.XmlEncoding
-P:WebKit.DomDocument.XmlStandalone
-P:WebKit.DomDocument.XmlVersion
-P:WebKit.DomDocumentType.Entities
-P:WebKit.DomDocumentType.InternalSubset
-P:WebKit.DomDocumentType.Name
-P:WebKit.DomDocumentType.Notations
-P:WebKit.DomDocumentType.PublicId
-P:WebKit.DomDocumentType.SystemId
-P:WebKit.DomElement.ChildElementCount
-P:WebKit.DomElement.ClassName
-P:WebKit.DomElement.ClientHeight
-P:WebKit.DomElement.ClientLeft
-P:WebKit.DomElement.ClientTop
-P:WebKit.DomElement.ClientWidth
-P:WebKit.DomElement.FirstElementChild
-P:WebKit.DomElement.InnerText
-P:WebKit.DomElement.LastElementChild
-P:WebKit.DomElement.NextElementSibling
-P:WebKit.DomElement.OffsetHeight
-P:WebKit.DomElement.OffsetLeft
-P:WebKit.DomElement.OffsetParent
-P:WebKit.DomElement.OffsetTop
-P:WebKit.DomElement.OffsetWidth
-P:WebKit.DomElement.PreviousElementSibling
-P:WebKit.DomElement.ScrollHeight
-P:WebKit.DomElement.ScrollLeft
-P:WebKit.DomElement.ScrollTop
-P:WebKit.DomElement.ScrollWidth
-P:WebKit.DomElement.Style
-P:WebKit.DomElement.TagName
-P:WebKit.DomEvent.Bubbles
-P:WebKit.DomEvent.Cancelable
-P:WebKit.DomEvent.CancelBubble
-P:WebKit.DomEvent.CurrentTarget
-P:WebKit.DomEvent.EventPhase
-P:WebKit.DomEvent.ReturnValue
-P:WebKit.DomEvent.SourceElement
-P:WebKit.DomEvent.Target
-P:WebKit.DomEvent.TimeStamp
-P:WebKit.DomEvent.Type
P:WebKit.DomEventArgs.Event
-P:WebKit.DomFile.Name
-P:WebKit.DomFileList.Length
-P:WebKit.DomHtmlAnchorElement.AbsoluteImageUrl
-P:WebKit.DomHtmlAnchorElement.AccessKey
-P:WebKit.DomHtmlAnchorElement.Charset
-P:WebKit.DomHtmlAnchorElement.Coords
-P:WebKit.DomHtmlAnchorElement.HashName
-P:WebKit.DomHtmlAnchorElement.Host
-P:WebKit.DomHtmlAnchorElement.Hostname
-P:WebKit.DomHtmlAnchorElement.HRef
-P:WebKit.DomHtmlAnchorElement.HRefLang
-P:WebKit.DomHtmlAnchorElement.Name
-P:WebKit.DomHtmlAnchorElement.Pathname
-P:WebKit.DomHtmlAnchorElement.Port
-P:WebKit.DomHtmlAnchorElement.Protocol
-P:WebKit.DomHtmlAnchorElement.Rel
-P:WebKit.DomHtmlAnchorElement.Rev
-P:WebKit.DomHtmlAnchorElement.Search
-P:WebKit.DomHtmlAnchorElement.Shape
-P:WebKit.DomHtmlAnchorElement.Target
-P:WebKit.DomHtmlAnchorElement.Text
-P:WebKit.DomHtmlAnchorElement.Type
-P:WebKit.DomHtmlAppletElement.Align
-P:WebKit.DomHtmlAppletElement.Alt
-P:WebKit.DomHtmlAppletElement.Archive
-P:WebKit.DomHtmlAppletElement.Code
-P:WebKit.DomHtmlAppletElement.CodeBase
-P:WebKit.DomHtmlAppletElement.Height
-P:WebKit.DomHtmlAppletElement.HSpace
-P:WebKit.DomHtmlAppletElement.Name
-P:WebKit.DomHtmlAppletElement.Object
-P:WebKit.DomHtmlAppletElement.VSpace
-P:WebKit.DomHtmlAppletElement.Width
-P:WebKit.DomHtmlAreaElement.AbsoluteImageUrl
-P:WebKit.DomHtmlAreaElement.AccessKey
-P:WebKit.DomHtmlAreaElement.Alt
-P:WebKit.DomHtmlAreaElement.Coords
-P:WebKit.DomHtmlAreaElement.HashName
-P:WebKit.DomHtmlAreaElement.Host
-P:WebKit.DomHtmlAreaElement.Hostname
-P:WebKit.DomHtmlAreaElement.HRef
-P:WebKit.DomHtmlAreaElement.NoHRef
-P:WebKit.DomHtmlAreaElement.Pathname
-P:WebKit.DomHtmlAreaElement.Port
-P:WebKit.DomHtmlAreaElement.Protocol
-P:WebKit.DomHtmlAreaElement.Search
-P:WebKit.DomHtmlAreaElement.Shape
-P:WebKit.DomHtmlAreaElement.Target
-P:WebKit.DomHtmlBaseElement.HRef
-P:WebKit.DomHtmlBaseElement.Target
-P:WebKit.DomHtmlBaseFontElement.Color
-P:WebKit.DomHtmlBaseFontElement.Face
-P:WebKit.DomHtmlBaseFontElement.Size
-P:WebKit.DomHtmlBodyElement.ALink
-P:WebKit.DomHtmlBodyElement.Background
-P:WebKit.DomHtmlBodyElement.BgColor
-P:WebKit.DomHtmlBodyElement.Link
-P:WebKit.DomHtmlBodyElement.Text
-P:WebKit.DomHtmlBodyElement.VLink
-P:WebKit.DomHtmlBRElement.Clear
-P:WebKit.DomHtmlButtonElement.AccessKey
-P:WebKit.DomHtmlButtonElement.Autofocus
-P:WebKit.DomHtmlButtonElement.Disabled
-P:WebKit.DomHtmlButtonElement.Form
-P:WebKit.DomHtmlButtonElement.Name
-P:WebKit.DomHtmlButtonElement.Type
-P:WebKit.DomHtmlButtonElement.Value
-P:WebKit.DomHtmlButtonElement.WillValidate
-P:WebKit.DomHtmlCollection.Count
P:WebKit.DomHtmlCollection.Item(System.Int32)
-P:WebKit.DomHtmlDirectoryElement.Compact
-P:WebKit.DomHtmlDivElement.Align
-P:WebKit.DomHtmlDListElement.Compact
-P:WebKit.DomHtmlDocument.ActiveElement
-P:WebKit.DomHtmlDocument.ALinkColor
-P:WebKit.DomHtmlDocument.BackgroundColor
-P:WebKit.DomHtmlDocument.CompatMode
-P:WebKit.DomHtmlDocument.DesignMode
-P:WebKit.DomHtmlDocument.Dir
-P:WebKit.DomHtmlDocument.Embeds
-P:WebKit.DomHtmlDocument.ForegroundColor
-P:WebKit.DomHtmlDocument.Height
-P:WebKit.DomHtmlDocument.LinkColor
-P:WebKit.DomHtmlDocument.Plugins
-P:WebKit.DomHtmlDocument.Scripts
-P:WebKit.DomHtmlDocument.VLinkColor
-P:WebKit.DomHtmlDocument.Width
-P:WebKit.DomHtmlElement.Children
-P:WebKit.DomHtmlElement.ContentEditable
-P:WebKit.DomHtmlElement.Dir
-P:WebKit.DomHtmlElement.IdName
-P:WebKit.DomHtmlElement.InnerHTML
-P:WebKit.DomHtmlElement.InnerText
-P:WebKit.DomHtmlElement.IsContentEditable
-P:WebKit.DomHtmlElement.Lang
-P:WebKit.DomHtmlElement.OuterHTML
-P:WebKit.DomHtmlElement.OuterText
-P:WebKit.DomHtmlElement.TabIndex
-P:WebKit.DomHtmlElement.Title
-P:WebKit.DomHtmlElement.TitleDisplayString
-P:WebKit.DomHtmlEmbedElement.Align
-P:WebKit.DomHtmlEmbedElement.Height
-P:WebKit.DomHtmlEmbedElement.Name
-P:WebKit.DomHtmlEmbedElement.Src
-P:WebKit.DomHtmlEmbedElement.Type
-P:WebKit.DomHtmlEmbedElement.Width
-P:WebKit.DomHtmlFieldSetElement.Form
-P:WebKit.DomHtmlFontElement.Color
-P:WebKit.DomHtmlFontElement.Face
-P:WebKit.DomHtmlFontElement.Size
-P:WebKit.DomHtmlFormElement.AcceptCharset
-P:WebKit.DomHtmlFormElement.Action
-P:WebKit.DomHtmlFormElement.Elements
-P:WebKit.DomHtmlFormElement.Encoding
-P:WebKit.DomHtmlFormElement.EncodingType
-P:WebKit.DomHtmlFormElement.Length
-P:WebKit.DomHtmlFormElement.Method
-P:WebKit.DomHtmlFormElement.Name
-P:WebKit.DomHtmlFormElement.Target
-P:WebKit.DomHtmlFrameElement.ContentDocument
-P:WebKit.DomHtmlFrameElement.ContentWindow
-P:WebKit.DomHtmlFrameElement.FrameBorder
-P:WebKit.DomHtmlFrameElement.Height
-P:WebKit.DomHtmlFrameElement.Location
-P:WebKit.DomHtmlFrameElement.LongDesc
-P:WebKit.DomHtmlFrameElement.MarginHeight
-P:WebKit.DomHtmlFrameElement.MarginWidth
-P:WebKit.DomHtmlFrameElement.Name
-P:WebKit.DomHtmlFrameElement.NoResize
-P:WebKit.DomHtmlFrameElement.Scrolling
-P:WebKit.DomHtmlFrameElement.Src
-P:WebKit.DomHtmlFrameElement.Width
-P:WebKit.DomHtmlFrameSetElement.Cols
-P:WebKit.DomHtmlFrameSetElement.Rows
-P:WebKit.DomHtmlHeadElement.Profile
-P:WebKit.DomHtmlHeadingElement.Align
-P:WebKit.DomHtmlHRElement.Align
-P:WebKit.DomHtmlHRElement.NoShade
-P:WebKit.DomHtmlHRElement.Size
-P:WebKit.DomHtmlHRElement.Width
-P:WebKit.DomHtmlHtmlElement.Version
-P:WebKit.DomHtmlIFrameElement.Align
-P:WebKit.DomHtmlIFrameElement.ContentDocument
-P:WebKit.DomHtmlIFrameElement.ContentWindow
-P:WebKit.DomHtmlIFrameElement.FrameBorder
-P:WebKit.DomHtmlIFrameElement.Height
-P:WebKit.DomHtmlIFrameElement.LongDesc
-P:WebKit.DomHtmlIFrameElement.MarginHeight
-P:WebKit.DomHtmlIFrameElement.MarginWidth
-P:WebKit.DomHtmlIFrameElement.Name
-P:WebKit.DomHtmlIFrameElement.Scrolling
-P:WebKit.DomHtmlIFrameElement.Src
-P:WebKit.DomHtmlIFrameElement.Width
-P:WebKit.DomHtmlImageElement.AbsoluteImageUrl
-P:WebKit.DomHtmlImageElement.Align
-P:WebKit.DomHtmlImageElement.Alt
-P:WebKit.DomHtmlImageElement.AltDisplayString
-P:WebKit.DomHtmlImageElement.Border
-P:WebKit.DomHtmlImageElement.Complete
-P:WebKit.DomHtmlImageElement.Height
-P:WebKit.DomHtmlImageElement.HSpace
-P:WebKit.DomHtmlImageElement.IsMap
-P:WebKit.DomHtmlImageElement.LongDesc
-P:WebKit.DomHtmlImageElement.Lowsrc
-P:WebKit.DomHtmlImageElement.Name
-P:WebKit.DomHtmlImageElement.NaturalHeight
-P:WebKit.DomHtmlImageElement.NaturalWidth
-P:WebKit.DomHtmlImageElement.Src
-P:WebKit.DomHtmlImageElement.UseMap
-P:WebKit.DomHtmlImageElement.VSpace
-P:WebKit.DomHtmlImageElement.Width
-P:WebKit.DomHtmlImageElement.X
-P:WebKit.DomHtmlImageElement.Y
-P:WebKit.DomHtmlInputElement.AbsoluteImageURL
-P:WebKit.DomHtmlInputElement.Accept
-P:WebKit.DomHtmlInputElement.AccessKey
-P:WebKit.DomHtmlInputElement.Align
-P:WebKit.DomHtmlInputElement.Alt
-P:WebKit.DomHtmlInputElement.AltDisplayString
-P:WebKit.DomHtmlInputElement.Autofocus
-P:WebKit.DomHtmlInputElement.Checked
-P:WebKit.DomHtmlInputElement.DefaultChecked
-P:WebKit.DomHtmlInputElement.DefaultValue
-P:WebKit.DomHtmlInputElement.Disabled
-P:WebKit.DomHtmlInputElement.Files
-P:WebKit.DomHtmlInputElement.Form
-P:WebKit.DomHtmlInputElement.Indeterminate
-P:WebKit.DomHtmlInputElement.MaxLength
-P:WebKit.DomHtmlInputElement.Multiple
-P:WebKit.DomHtmlInputElement.Name
-P:WebKit.DomHtmlInputElement.ReadOnly
-P:WebKit.DomHtmlInputElement.SelectionEnd
-P:WebKit.DomHtmlInputElement.SelectionStart
-P:WebKit.DomHtmlInputElement.Size
-P:WebKit.DomHtmlInputElement.Src
-P:WebKit.DomHtmlInputElement.Type
-P:WebKit.DomHtmlInputElement.UseMap
-P:WebKit.DomHtmlInputElement.Value
-P:WebKit.DomHtmlInputElement.WillValidate
-P:WebKit.DomHtmlLabelElement.AccessKey
-P:WebKit.DomHtmlLabelElement.Form
-P:WebKit.DomHtmlLabelElement.HtmlFor
-P:WebKit.DomHtmlLegendElement.AccessKey
-P:WebKit.DomHtmlLegendElement.Align
-P:WebKit.DomHtmlLegendElement.Form
-P:WebKit.DomHtmlLIElement.Type
-P:WebKit.DomHtmlLIElement.Value
-P:WebKit.DomHtmlLinkElement.AbsoluteImageUrl
-P:WebKit.DomHtmlLinkElement.Charset
-P:WebKit.DomHtmlLinkElement.Disabled
-P:WebKit.DomHtmlLinkElement.HRef
-P:WebKit.DomHtmlLinkElement.HRefLang
-P:WebKit.DomHtmlLinkElement.Media
-P:WebKit.DomHtmlLinkElement.Rel
-P:WebKit.DomHtmlLinkElement.Rev
-P:WebKit.DomHtmlLinkElement.Sheet
-P:WebKit.DomHtmlLinkElement.Target
-P:WebKit.DomHtmlLinkElement.Type
-P:WebKit.DomHtmlMapElement.Areas
-P:WebKit.DomHtmlMapElement.Name
-P:WebKit.DomHtmlMenuElement.Compact
-P:WebKit.DomHtmlMetaElement.Content
-P:WebKit.DomHtmlMetaElement.HttpEquiv
-P:WebKit.DomHtmlMetaElement.Name
-P:WebKit.DomHtmlMetaElement.Scheme
-P:WebKit.DomHtmlModElement.Cite
-P:WebKit.DomHtmlModElement.DateTime
-P:WebKit.DomHtmlObjectElement.AbsoluteImageUrl
-P:WebKit.DomHtmlObjectElement.Align
-P:WebKit.DomHtmlObjectElement.Archive
-P:WebKit.DomHtmlObjectElement.Border
-P:WebKit.DomHtmlObjectElement.Code
-P:WebKit.DomHtmlObjectElement.CodeBase
-P:WebKit.DomHtmlObjectElement.CodeType
-P:WebKit.DomHtmlObjectElement.ContentDocument
-P:WebKit.DomHtmlObjectElement.Data
-P:WebKit.DomHtmlObjectElement.Declare
-P:WebKit.DomHtmlObjectElement.Form
-P:WebKit.DomHtmlObjectElement.Height
-P:WebKit.DomHtmlObjectElement.HSpace
-P:WebKit.DomHtmlObjectElement.Name
-P:WebKit.DomHtmlObjectElement.Standby
-P:WebKit.DomHtmlObjectElement.Type
-P:WebKit.DomHtmlObjectElement.UseMap
-P:WebKit.DomHtmlObjectElement.VSpace
-P:WebKit.DomHtmlObjectElement.Width
-P:WebKit.DomHtmlOListElement.Compact
-P:WebKit.DomHtmlOListElement.Start
-P:WebKit.DomHtmlOListElement.Type
-P:WebKit.DomHtmlOptGroupElement.Disabled
-P:WebKit.DomHtmlOptGroupElement.Label
-P:WebKit.DomHtmlOptionElement.DefaultSelected
-P:WebKit.DomHtmlOptionElement.Disabled
-P:WebKit.DomHtmlOptionElement.Form
-P:WebKit.DomHtmlOptionElement.Index
-P:WebKit.DomHtmlOptionElement.Label
-P:WebKit.DomHtmlOptionElement.Selected
-P:WebKit.DomHtmlOptionElement.Text
-P:WebKit.DomHtmlOptionElement.Value
P:WebKit.DomHtmlOptionsCollection.Item(System.String)
P:WebKit.DomHtmlOptionsCollection.Item(System.UInt32)
-P:WebKit.DomHtmlOptionsCollection.Length
-P:WebKit.DomHtmlOptionsCollection.SelectedIndex
-P:WebKit.DomHtmlParagraphElement.Align
-P:WebKit.DomHtmlParamElement.Name
-P:WebKit.DomHtmlParamElement.Type
-P:WebKit.DomHtmlParamElement.Value
-P:WebKit.DomHtmlParamElement.ValueType
-P:WebKit.DomHtmlPreElement.Width
-P:WebKit.DomHtmlPreElement.Wrap
-P:WebKit.DomHtmlQuoteElement.Cite
-P:WebKit.DomHtmlScriptElement.Charset
-P:WebKit.DomHtmlScriptElement.Defer
-P:WebKit.DomHtmlScriptElement.Event
-P:WebKit.DomHtmlScriptElement.HtmlFor
-P:WebKit.DomHtmlScriptElement.Src
-P:WebKit.DomHtmlScriptElement.Text
-P:WebKit.DomHtmlScriptElement.Type
-P:WebKit.DomHtmlSelectElement.Autofocus
-P:WebKit.DomHtmlSelectElement.Disabled
-P:WebKit.DomHtmlSelectElement.Form
P:WebKit.DomHtmlSelectElement.Item(System.String)
P:WebKit.DomHtmlSelectElement.Item(System.UInt32)
-P:WebKit.DomHtmlSelectElement.Length
-P:WebKit.DomHtmlSelectElement.Multiple
-P:WebKit.DomHtmlSelectElement.Name
-P:WebKit.DomHtmlSelectElement.Options
-P:WebKit.DomHtmlSelectElement.SelectedIndex
-P:WebKit.DomHtmlSelectElement.Size
-P:WebKit.DomHtmlSelectElement.Type
-P:WebKit.DomHtmlSelectElement.Value
-P:WebKit.DomHtmlSelectElement.WillValidate
-P:WebKit.DomHtmlStyleElement.Disabled
-P:WebKit.DomHtmlStyleElement.Media
-P:WebKit.DomHtmlStyleElement.Sheet
-P:WebKit.DomHtmlStyleElement.Type
-P:WebKit.DomHtmlTableCaptionElement.Align
-P:WebKit.DomHtmlTableCellElement.Abbr
-P:WebKit.DomHtmlTableCellElement.Align
-P:WebKit.DomHtmlTableCellElement.Axis
-P:WebKit.DomHtmlTableCellElement.BgColor
-P:WebKit.DomHtmlTableCellElement.CellIndex
-P:WebKit.DomHtmlTableCellElement.Ch
-P:WebKit.DomHtmlTableCellElement.ChOff
-P:WebKit.DomHtmlTableCellElement.ColSpan
-P:WebKit.DomHtmlTableCellElement.Headers
-P:WebKit.DomHtmlTableCellElement.Height
-P:WebKit.DomHtmlTableCellElement.NoWrap
-P:WebKit.DomHtmlTableCellElement.RowSpan
-P:WebKit.DomHtmlTableCellElement.Scope
-P:WebKit.DomHtmlTableCellElement.VAlign
-P:WebKit.DomHtmlTableCellElement.Width
-P:WebKit.DomHtmlTableColElement.Align
-P:WebKit.DomHtmlTableColElement.Ch
-P:WebKit.DomHtmlTableColElement.ChOff
-P:WebKit.DomHtmlTableColElement.Span
-P:WebKit.DomHtmlTableColElement.VAlign
-P:WebKit.DomHtmlTableColElement.Width
-P:WebKit.DomHtmlTableElement.Align
-P:WebKit.DomHtmlTableElement.BgColor
-P:WebKit.DomHtmlTableElement.Border
-P:WebKit.DomHtmlTableElement.Caption
-P:WebKit.DomHtmlTableElement.CellPadding
-P:WebKit.DomHtmlTableElement.CellSpacing
-P:WebKit.DomHtmlTableElement.FrameBorders
-P:WebKit.DomHtmlTableElement.Rows
-P:WebKit.DomHtmlTableElement.Rules
-P:WebKit.DomHtmlTableElement.Summary
-P:WebKit.DomHtmlTableElement.TBodies
-P:WebKit.DomHtmlTableElement.TFoot
-P:WebKit.DomHtmlTableElement.THead
-P:WebKit.DomHtmlTableElement.Width
-P:WebKit.DomHtmlTableRowElement.Align
-P:WebKit.DomHtmlTableRowElement.BgColor
-P:WebKit.DomHtmlTableRowElement.Cells
-P:WebKit.DomHtmlTableRowElement.Ch
-P:WebKit.DomHtmlTableRowElement.ChOff
-P:WebKit.DomHtmlTableRowElement.RowIndex
-P:WebKit.DomHtmlTableRowElement.SectionRowIndex
-P:WebKit.DomHtmlTableRowElement.VAlign
-P:WebKit.DomHtmlTableSectionElement.Align
-P:WebKit.DomHtmlTableSectionElement.Ch
-P:WebKit.DomHtmlTableSectionElement.ChOff
-P:WebKit.DomHtmlTableSectionElement.Rows
-P:WebKit.DomHtmlTableSectionElement.VAlign
-P:WebKit.DomHtmlTextAreaElement.AccessKey
-P:WebKit.DomHtmlTextAreaElement.Columns
-P:WebKit.DomHtmlTextAreaElement.DefaultValue
-P:WebKit.DomHtmlTextAreaElement.Disabled
-P:WebKit.DomHtmlTextAreaElement.Form
-P:WebKit.DomHtmlTextAreaElement.Name
-P:WebKit.DomHtmlTextAreaElement.ReadOnly
-P:WebKit.DomHtmlTextAreaElement.Rows
-P:WebKit.DomHtmlTextAreaElement.TabIndex
-P:WebKit.DomHtmlTextAreaElement.Type
-P:WebKit.DomHtmlTextAreaElement.Value
-P:WebKit.DomImportCssRule.Href
-P:WebKit.DomImportCssRule.Media
-P:WebKit.DomImportCssRule.StyleSheet
-P:WebKit.DomKeyboardEvent.AltGraphKey
-P:WebKit.DomKeyboardEvent.AltKey
-P:WebKit.DomKeyboardEvent.CharCode
-P:WebKit.DomKeyboardEvent.CtrlKey
-P:WebKit.DomKeyboardEvent.KeyCode
-P:WebKit.DomKeyboardEvent.KeyIdentifier
-P:WebKit.DomKeyboardEvent.KeyLocation
-P:WebKit.DomKeyboardEvent.MetaKey
-P:WebKit.DomKeyboardEvent.ShiftKey
-P:WebKit.DomMediaList.Count
P:WebKit.DomMediaList.Item(System.Int32)
-P:WebKit.DomMediaList.MediaText
-P:WebKit.DomMouseEvent.AltKey
-P:WebKit.DomMouseEvent.Button
-P:WebKit.DomMouseEvent.ClientX
-P:WebKit.DomMouseEvent.ClientY
-P:WebKit.DomMouseEvent.CtrlKey
-P:WebKit.DomMouseEvent.FromElement
-P:WebKit.DomMouseEvent.MetaKey
-P:WebKit.DomMouseEvent.OffsetX
-P:WebKit.DomMouseEvent.OffsetY
-P:WebKit.DomMouseEvent.RelatedTarget
-P:WebKit.DomMouseEvent.ScreenX
-P:WebKit.DomMouseEvent.ScreenY
-P:WebKit.DomMouseEvent.ShiftKey
-P:WebKit.DomMouseEvent.ToElement
-P:WebKit.DomMouseEvent.X
-P:WebKit.DomMouseEvent.Y
-P:WebKit.DomNamedNodeMap.Count
P:WebKit.DomNamedNodeMap.Item(System.Int32)
P:WebKit.DomNamedNodeMap.Item(System.String)
-P:WebKit.DomNode.Attributes
-P:WebKit.DomNode.BaseURI
-P:WebKit.DomNode.ChildNodes
-P:WebKit.DomNode.FirstChild
-P:WebKit.DomNode.IsContentEditable
-P:WebKit.DomNode.LastChild
-P:WebKit.DomNode.LocalName
-P:WebKit.DomNode.Name
-P:WebKit.DomNode.NamespaceURI
-P:WebKit.DomNode.NextSibling
-P:WebKit.DomNode.NodeType
-P:WebKit.DomNode.NodeValue
-P:WebKit.DomNode.OwnerDocument
-P:WebKit.DomNode.ParentElement
-P:WebKit.DomNode.ParentNode
-P:WebKit.DomNode.Prefix
-P:WebKit.DomNode.PreviousSibling
-P:WebKit.DomNode.TextContent
-P:WebKit.DomNodeIterator.ExpandEntityReferences
-P:WebKit.DomNodeIterator.Filter
-P:WebKit.DomNodeIterator.NextNode
-P:WebKit.DomNodeIterator.PointerBeforeReferenceNode
-P:WebKit.DomNodeIterator.PreviousNode
-P:WebKit.DomNodeIterator.ReferenceNode
-P:WebKit.DomNodeIterator.Root
-P:WebKit.DomNodeIterator.WhatToShow
-P:WebKit.DomNodeList.Count
P:WebKit.DomNodeList.Item(System.Int32)
-P:WebKit.DomOverflowEvent.HasHorizontalOverflow
-P:WebKit.DomOverflowEvent.HasVerticalOverflow
-P:WebKit.DomOverflowEvent.Orient
-P:WebKit.DomProcessingInstruction.Data
-P:WebKit.DomProcessingInstruction.Sheet
-P:WebKit.DomProcessingInstruction.Target
-P:WebKit.DomProgressEvent.IsLengthComputable
-P:WebKit.DomProgressEvent.Loaded
-P:WebKit.DomProgressEvent.Total
-P:WebKit.DomRange.Collapsed
-P:WebKit.DomRange.CommonAncestorContainer
-P:WebKit.DomRange.EndContainer
-P:WebKit.DomRange.EndOffset
-P:WebKit.DomRange.StartContainer
-P:WebKit.DomRange.StartOffset
-P:WebKit.DomRange.Text
-P:WebKit.DomStyleSheet.Disabled
-P:WebKit.DomStyleSheet.Href
-P:WebKit.DomStyleSheet.Media
-P:WebKit.DomStyleSheet.OwnerNode
-P:WebKit.DomStyleSheet.ParentStyleSheet
-P:WebKit.DomStyleSheet.Title
-P:WebKit.DomStyleSheet.Type
-P:WebKit.DomStyleSheetList.Count
P:WebKit.DomStyleSheetList.Item(System.Int32)
-P:WebKit.DomText.WholeText
-P:WebKit.DomUIEvent.CharCode
-P:WebKit.DomUIEvent.Detail
-P:WebKit.DomUIEvent.KeyCode
-P:WebKit.DomUIEvent.LayerX
-P:WebKit.DomUIEvent.LayerY
-P:WebKit.DomUIEvent.PageX
-P:WebKit.DomUIEvent.View
-P:WebKit.DomUIEvent.Which
-P:WebKit.DomWheelEvent.IsHorizontal
-P:WebKit.DomWheelEvent.WheelDelta
-P:WebKit.DomWheelEvent.WheelDeltaX
-P:WebKit.DomWheelEvent.WheelDeltaY
P:WebKit.IIndexedContainer`1.Count
P:WebKit.IIndexedContainer`1.Item(System.Int32)
P:WebKit.IWebDocumentRepresentation.CanProvideDocumentSource
@@ -102568,43 +66243,9 @@ P:WebKit.IWebDocumentRepresentation.DocumentSource
P:WebKit.IWebDocumentRepresentation.Title
P:WebKit.IWKPreviewActionItem.Identifier
P:WebKit.IWKUrlSchemeTask.Request
-P:WebKit.WebArchive.Data
-P:WebKit.WebArchive.MainResource
-P:WebKit.WebArchive.SubframeArchives
-P:WebKit.WebArchive.Subresources
-P:WebKit.WebBackForwardList.BackListCount
-P:WebKit.WebBackForwardList.Capacity
-P:WebKit.WebBackForwardList.ForwardListCount
-P:WebKit.WebDataSource.Data
-P:WebKit.WebDataSource.InitialRequest
P:WebKit.WebDataSource.IsLoading
-P:WebKit.WebDataSource.MainResource
-P:WebKit.WebDataSource.PageTitle
-P:WebKit.WebDataSource.Representation
-P:WebKit.WebDataSource.Request
-P:WebKit.WebDataSource.Response
-P:WebKit.WebDataSource.Subresources
-P:WebKit.WebDataSource.TextEncodingName
-P:WebKit.WebDataSource.UnreachableURL
-P:WebKit.WebDataSource.WebArchive
-P:WebKit.WebDataSource.WebFrame
-P:WebKit.WebDocumentRepresentation.CanProvideDocumentSource
-P:WebKit.WebDocumentRepresentation.DocumentSource
-P:WebKit.WebDocumentRepresentation.Title
P:WebKit.WebFailureToImplementPolicyEventArgs.Error
P:WebKit.WebFailureToImplementPolicyEventArgs.Frame
-P:WebKit.WebFrame.ChildFrames
-P:WebKit.WebFrame.DataSource
-P:WebKit.WebFrame.DomDocument
-P:WebKit.WebFrame.FrameElement
-P:WebKit.WebFrame.FrameView
-P:WebKit.WebFrame.GlobalContext
-P:WebKit.WebFrame.JavaScriptContext
-P:WebKit.WebFrame.Name
-P:WebKit.WebFrame.ParentFrame
-P:WebKit.WebFrame.ProvisionalDataSource
-P:WebKit.WebFrame.WebView
-P:WebKit.WebFrame.WindowObject
P:WebKit.WebFrameClientRedirectEventArgs.FireDate
P:WebKit.WebFrameClientRedirectEventArgs.ForFrame
P:WebKit.WebFrameClientRedirectEventArgs.SecondsDelay
@@ -102621,22 +66262,7 @@ P:WebKit.WebFrameScriptFrameEventArgs.WindowObject
P:WebKit.WebFrameScriptObjectEventArgs.WindowScriptObject
P:WebKit.WebFrameTitleEventArgs.ForFrame
P:WebKit.WebFrameTitleEventArgs.Title
-P:WebKit.WebFrameView.AllowsScrolling
-P:WebKit.WebFrameView.CanPrintHeadersAndFooters
-P:WebKit.WebFrameView.DocumentView
-P:WebKit.WebFrameView.DocumentViewShouldHandlePrint
-P:WebKit.WebFrameView.WebFrame
-P:WebKit.WebHistory.HistoryAgeInDaysLimit
-P:WebKit.WebHistory.HistoryItemLimit
-P:WebKit.WebHistory.OptionalSharedHistory
-P:WebKit.WebHistory.OrderedLastVisitedDays
-P:WebKit.WebHistoryItem.AlternateTitle
P:WebKit.WebHistoryItem.ChangedNotification
-P:WebKit.WebHistoryItem.Icon
-P:WebKit.WebHistoryItem.LastVisitedTimeInterval
-P:WebKit.WebHistoryItem.OriginalUrlString
-P:WebKit.WebHistoryItem.Title
-P:WebKit.WebHistoryItem.UrlString
P:WebKit.WebMimeTypePolicyEventArgs.DecisionToken
P:WebKit.WebMimeTypePolicyEventArgs.Frame
P:WebKit.WebMimeTypePolicyEventArgs.MimeType
@@ -102659,39 +66285,9 @@ P:WebKit.WebPolicyDelegate.WebActionElementKey
P:WebKit.WebPolicyDelegate.WebActionModifierFlagsKey
P:WebKit.WebPolicyDelegate.WebActionNavigationTypeKey
P:WebKit.WebPolicyDelegate.WebActionOriginalUrlKey
-P:WebKit.WebPreferences.AllowsAnimatedImageLooping
-P:WebKit.WebPreferences.AllowsAnimatedImages
-P:WebKit.WebPreferences.Autosaves
-P:WebKit.WebPreferences.CacheModel
-P:WebKit.WebPreferences.CursiveFontFamily
-P:WebKit.WebPreferences.DefaultFixedFontSize
-P:WebKit.WebPreferences.DefaultFontSize
-P:WebKit.WebPreferences.DefaultTextEncodingName
-P:WebKit.WebPreferences.FantasyFontFamily
-P:WebKit.WebPreferences.FixedFontFamily
-P:WebKit.WebPreferences.Identifier
P:WebKit.WebPreferences.JavaEnabled
-P:WebKit.WebPreferences.JavaScriptCanOpenWindowsAutomatically
P:WebKit.WebPreferences.JavaScriptEnabled
-P:WebKit.WebPreferences.LoadsImagesAutomatically
-P:WebKit.WebPreferences.MinimumFontSize
-P:WebKit.WebPreferences.MinimumLogicalFontSize
P:WebKit.WebPreferences.PlugInsEnabled
-P:WebKit.WebPreferences.PrivateBrowsingEnabled
-P:WebKit.WebPreferences.SansSerifFontFamily
-P:WebKit.WebPreferences.SerifFontFamily
-P:WebKit.WebPreferences.ShouldPrintBackgrounds
-P:WebKit.WebPreferences.StandardFontFamily
-P:WebKit.WebPreferences.StandardPreferences
-P:WebKit.WebPreferences.TabsToLinks
-P:WebKit.WebPreferences.UserStyleSheetEnabled
-P:WebKit.WebPreferences.UserStyleSheetLocation
-P:WebKit.WebPreferences.UsesPageCache
-P:WebKit.WebResource.Data
-P:WebKit.WebResource.FrameName
-P:WebKit.WebResource.MimeType
-P:WebKit.WebResource.TextEncodingName
-P:WebKit.WebResource.Url
P:WebKit.WebResourceAuthenticationChallengeEventArgs.Challenge
P:WebKit.WebResourceAuthenticationChallengeEventArgs.DataSource
P:WebKit.WebResourceAuthenticationChallengeEventArgs.Identifier
@@ -102711,48 +66307,16 @@ P:WebKit.WebResourceReceivedContentLengthEventArgs.Length
P:WebKit.WebResourceReceivedResponseEventArgs.DataSource
P:WebKit.WebResourceReceivedResponseEventArgs.Identifier
P:WebKit.WebResourceReceivedResponseEventArgs.ResponseReceived
-P:WebKit.WebScriptObject.JSObject
-P:WebKit.WebScriptObject.JSValue
-P:WebKit.WebScriptObject.StringRepresentation
-P:WebKit.WebView.ApplicationNameForUserAgent
-P:WebKit.WebView.BackForwardList
P:WebKit.WebView.ContinuousSpellCheckingEnabled
-P:WebKit.WebView.CustomTextEncodingName
-P:WebKit.WebView.CustomUserAgent
P:WebKit.WebView.DownloadDelegate
-P:WebKit.WebView.DrawsBackground
P:WebKit.WebView.Editable
-P:WebKit.WebView.EditingDelegate
-P:WebKit.WebView.EstimatedProgress
P:WebKit.WebView.FrameLoadDelegate
-P:WebKit.WebView.GroupName
-P:WebKit.WebView.HostWindow
P:WebKit.WebView.IsLoading
-P:WebKit.WebView.MainFrame
-P:WebKit.WebView.MainFrameDocument
-P:WebKit.WebView.MainFrameIcon
-P:WebKit.WebView.MainFrameTitle
-P:WebKit.WebView.MainFrameUrl
-P:WebKit.WebView.MaintainsInactiveSelection
-P:WebKit.WebView.MediaStyle
-P:WebKit.WebView.MimeTypesShownAsHtml
P:WebKit.WebView.OnDownloadWindowForSheet
P:WebKit.WebView.OnIdentifierForInitialRequest
P:WebKit.WebView.OnSendRequest
-P:WebKit.WebView.PasteboardTypesForSelection
P:WebKit.WebView.PolicyDelegate
-P:WebKit.WebView.Preferences
-P:WebKit.WebView.PreferencesIdentifier
P:WebKit.WebView.ResourceLoadDelegate
-P:WebKit.WebView.SelectedDomRange
-P:WebKit.WebView.SelectedFrame
-P:WebKit.WebView.SelectionAffinity
-P:WebKit.WebView.ShouldCloseWithWindow
-P:WebKit.WebView.SmartInsertDeleteEnabled
-P:WebKit.WebView.SpellCheckerDocumentTag
-P:WebKit.WebView.SupportsTextEncoding
-P:WebKit.WebView.TextSizeMultiplier
-P:WebKit.WebView.TypingStyle
P:WebKit.WebView.UIAreToolbarsVisible
P:WebKit.WebView.UICreateModalDialog
P:WebKit.WebView.UICreateWebView
@@ -102775,14 +66339,6 @@ P:WebKit.WebView.UIRunJavaScriptTextInputPanel
P:WebKit.WebView.UIRunJavaScriptTextInputPanelWithFrame
P:WebKit.WebView.UIShouldPerformAction
P:WebKit.WebView.UIValidateUserInterfaceItem
-P:WebKit.WebView.UndoManager
-P:WebKit.WebView.UpdateWhileOffscreen
-P:WebKit.WebView.WeakDownloadDelegate
-P:WebKit.WebView.WeakFrameLoadDelegate
-P:WebKit.WebView.WeakPolicyDelegate
-P:WebKit.WebView.WeakResourceLoadDelegate
-P:WebKit.WebView.WeakUIDelegate
-P:WebKit.WebView.WindowScriptObject
P:WebKit.WebViewContentEventArgs.Frame
P:WebKit.WebViewDragEventArgs.Action
P:WebKit.WebViewDragEventArgs.DraggingInfo
@@ -102809,95 +66365,22 @@ P:WebKit.WebViewRunOpenPanelEventArgs.ResultListener
P:WebKit.WebViewStatusBarEventArgs.Visible
P:WebKit.WebViewStatusTextEventArgs.Text
P:WebKit.WebViewToolBarsEventArgs.Visible
-P:WebKit.WKBackForwardList.BackItem
-P:WebKit.WKBackForwardList.BackList
-P:WebKit.WKBackForwardList.CurrentItem
-P:WebKit.WKBackForwardList.ForwardItem
-P:WebKit.WKBackForwardList.ForwardList
-P:WebKit.WKBackForwardListItem.InitialUrl
-P:WebKit.WKBackForwardListItem.Title
-P:WebKit.WKBackForwardListItem.Url
-P:WebKit.WKContentRuleList.Identifier
-P:WebKit.WKContentRuleListStore.DefaultStore
-P:WebKit.WKContentWorld.DefaultClient
-P:WebKit.WKContentWorld.Name
-P:WebKit.WKContentWorld.Page
-P:WebKit.WKContextMenuElementInfo.LinkUrl
P:WebKit.WKDownload.Delegate
-P:WebKit.WKDownload.OriginalRequest
-P:WebKit.WKDownload.OriginatingFrame
P:WebKit.WKDownload.Progress
P:WebKit.WKDownload.UserInitiated
-P:WebKit.WKDownload.WeakDelegate
-P:WebKit.WKDownload.WebView
-P:WebKit.WKFindConfiguration.Backwards
-P:WebKit.WKFindConfiguration.CaseSensitive
-P:WebKit.WKFindConfiguration.Wraps
-P:WebKit.WKFindResult.MatchFound
P:WebKit.WKFrameInfo.MainFrame
-P:WebKit.WKFrameInfo.Request
-P:WebKit.WKFrameInfo.SecurityOrigin
-P:WebKit.WKFrameInfo.WebView
-P:WebKit.WKNavigation.EffectiveContentMode
-P:WebKit.WKNavigationAction.ButtonNumber
-P:WebKit.WKNavigationAction.ModifierFlags
-P:WebKit.WKNavigationAction.NavigationType
-P:WebKit.WKNavigationAction.Request
-P:WebKit.WKNavigationAction.ShouldPerformDownload
-P:WebKit.WKNavigationAction.SourceFrame
-P:WebKit.WKNavigationAction.TargetFrame
-P:WebKit.WKNavigationResponse.CanShowMimeType
P:WebKit.WKNavigationResponse.IsForMainFrame
-P:WebKit.WKNavigationResponse.Response
-P:WebKit.WKOpenPanelParameters.AllowsDirectories
-P:WebKit.WKOpenPanelParameters.AllowsMultipleSelection
-P:WebKit.WKPdfConfiguration.AllowTransparentBackground
-P:WebKit.WKPdfConfiguration.Rect
P:WebKit.WKPreferences.ElementFullscreenEnabled
P:WebKit.WKPreferences.FraudulentWebsiteWarningEnabled
-P:WebKit.WKPreferences.InactiveSchedulingPolicy
-P:WebKit.WKPreferences.JavaEnabled
-P:WebKit.WKPreferences.JavaScriptCanOpenWindowsAutomatically
-P:WebKit.WKPreferences.JavaScriptEnabled
-P:WebKit.WKPreferences.MinimumFontSize
-P:WebKit.WKPreferences.PlugInsEnabled
-P:WebKit.WKPreferences.ShouldPrintBackgrounds
P:WebKit.WKPreferences.SiteSpecificQuirksModeEnabled
-P:WebKit.WKPreferences.TabFocusesLinks
P:WebKit.WKPreferences.TextInteractionEnabled
P:WebKit.WKPreviewActionItemIdentifier.AddToReadingList
P:WebKit.WKPreviewActionItemIdentifier.Copy
P:WebKit.WKPreviewActionItemIdentifier.Open
P:WebKit.WKPreviewActionItemIdentifier.Share
-P:WebKit.WKPreviewElementInfo.LinkUrl
-P:WebKit.WKScriptMessage.Body
-P:WebKit.WKScriptMessage.FrameInfo
-P:WebKit.WKScriptMessage.Name
-P:WebKit.WKScriptMessage.WebView
-P:WebKit.WKScriptMessage.World
-P:WebKit.WKSecurityOrigin.Host
-P:WebKit.WKSecurityOrigin.Port
-P:WebKit.WKSecurityOrigin.Protocol
-P:WebKit.WKSnapshotConfiguration.AfterScreenUpdates
-P:WebKit.WKSnapshotConfiguration.Rect
-P:WebKit.WKSnapshotConfiguration.SnapshotWidth
-P:WebKit.WKUserContentController.UserScripts
-P:WebKit.WKUserScript.InjectionTime
P:WebKit.WKUserScript.IsForMainFrameOnly
-P:WebKit.WKUserScript.Source
-P:WebKit.WKWebpagePreferences.AllowsContentJavaScript
P:WebKit.WKWebpagePreferences.LockdownModeEnabled
-P:WebKit.WKWebpagePreferences.PreferredContentMode
-P:WebKit.WKWebpagePreferences.PreferredHttpsNavigationPolicy
-P:WebKit.WKWebsiteDataRecord.DataTypes
-P:WebKit.WKWebsiteDataRecord.DisplayName
-P:WebKit.WKWebsiteDataStore.AllWebsiteDataTypes
-P:WebKit.WKWebsiteDataStore.DefaultDataStore
-P:WebKit.WKWebsiteDataStore.HttpCookieStore
-P:WebKit.WKWebsiteDataStore.Identifier
-P:WebKit.WKWebsiteDataStore.NonPersistentDataStore
P:WebKit.WKWebsiteDataStore.Persistent
-P:WebKit.WKWebsiteDataStore.ProxyConfigurations
P:WebKit.WKWebsiteDataType.Cookies
P:WebKit.WKWebsiteDataType.DiskCache
P:WebKit.WKWebsiteDataType.FetchCache
@@ -102912,64 +66395,12 @@ P:WebKit.WKWebsiteDataType.SearchFieldRecentSearches
P:WebKit.WKWebsiteDataType.ServiceWorkerRegistrations
P:WebKit.WKWebsiteDataType.SessionStorage
P:WebKit.WKWebsiteDataType.WebSQLDatabases
-P:WebKit.WKWebView.AllowsBackForwardNavigationGestures
-P:WebKit.WKWebView.AllowsLinkPreview
-P:WebKit.WKWebView.AllowsMagnification
-P:WebKit.WKWebView.BackForwardList
-P:WebKit.WKWebView.CameraCaptureState
-P:WebKit.WKWebView.CanGoBack
-P:WebKit.WKWebView.CanGoForward
-P:WebKit.WKWebView.CertificateChain
-P:WebKit.WKWebView.Configuration
-P:WebKit.WKWebView.CustomUserAgent
-P:WebKit.WKWebView.EstimatedProgress
-P:WebKit.WKWebView.FindInteraction
P:WebKit.WKWebView.FindInteractionEnabled
-P:WebKit.WKWebView.FullscreenState
-P:WebKit.WKWebView.HasOnlySecureContent
P:WebKit.WKWebView.Inspectable
-P:WebKit.WKWebView.InteractionState
P:WebKit.WKWebView.IsLoading
-P:WebKit.WKWebView.Magnification
-P:WebKit.WKWebView.MaximumViewportInset
-P:WebKit.WKWebView.MediaType
-P:WebKit.WKWebView.MicrophoneCaptureState
-P:WebKit.WKWebView.MinimumViewportInset
P:WebKit.WKWebView.NavigationDelegate
-P:WebKit.WKWebView.PageZoom
-P:WebKit.WKWebView.ScrollView
-P:WebKit.WKWebView.ServerTrust
-P:WebKit.WKWebView.ThemeColor
-P:WebKit.WKWebView.Title
P:WebKit.WKWebView.UIDelegate
-P:WebKit.WKWebView.UnderPageBackgroundColor
-P:WebKit.WKWebView.Url
-P:WebKit.WKWebView.WeakNavigationDelegate
-P:WebKit.WKWebView.WeakUIDelegate
P:WebKit.WKWebView.WritingToolsActive
-P:WebKit.WKWebViewConfiguration.AllowsAirPlayForMediaPlayback
-P:WebKit.WKWebViewConfiguration.AllowsInlineMediaPlayback
-P:WebKit.WKWebViewConfiguration.AllowsInlinePredictions
-P:WebKit.WKWebViewConfiguration.AllowsPictureInPictureMediaPlayback
-P:WebKit.WKWebViewConfiguration.ApplicationNameForUserAgent
-P:WebKit.WKWebViewConfiguration.DataDetectorTypes
-P:WebKit.WKWebViewConfiguration.DefaultWebpagePreferences
-P:WebKit.WKWebViewConfiguration.IgnoresViewportScaleLimits
-P:WebKit.WKWebViewConfiguration.LimitsNavigationsToAppBoundDomains
-P:WebKit.WKWebViewConfiguration.MediaPlaybackAllowsAirPlay
-P:WebKit.WKWebViewConfiguration.MediaPlaybackRequiresUserAction
-P:WebKit.WKWebViewConfiguration.MediaTypesRequiringUserActionForPlayback
-P:WebKit.WKWebViewConfiguration.Preferences
-P:WebKit.WKWebViewConfiguration.ProcessPool
-P:WebKit.WKWebViewConfiguration.RequiresUserActionForMediaPlayback
-P:WebKit.WKWebViewConfiguration.SelectionGranularity
-P:WebKit.WKWebViewConfiguration.SupportsAdaptiveImageGlyph
-P:WebKit.WKWebViewConfiguration.SuppressesIncrementalRendering
-P:WebKit.WKWebViewConfiguration.UpgradeKnownHostsToHttps
-P:WebKit.WKWebViewConfiguration.UserContentController
-P:WebKit.WKWebViewConfiguration.UserInterfaceDirectionPolicy
-P:WebKit.WKWebViewConfiguration.WebsiteDataStore
-P:WebKit.WKWebViewConfiguration.WritingToolsBehavior
P:WebKit.WKWindowFeatures.AllowsResizing
P:WebKit.WKWindowFeatures.Height
P:WebKit.WKWindowFeatures.MenuBarVisibility
@@ -102992,41 +66423,14 @@ T:Accelerate.vImageGamma
T:Accelerate.vImageInterpolationMethod
T:Accelerate.vImageMDTableUsageHint
T:Accessibility.AXAnimatedImagesUtilities
-T:Accessibility.AXBrailleMap
-T:Accessibility.AXCategoricalDataAxisDescriptor
-T:Accessibility.AXChartDescriptor
T:Accessibility.AXChartDescriptorContentDirection
-T:Accessibility.AXCustomContent
T:Accessibility.AXCustomContentImportance
-T:Accessibility.AXDataPoint
-T:Accessibility.AXDataPointValue
-T:Accessibility.AXDataSeriesDescriptor
-T:Accessibility.AXFeatureOverrideSession
T:Accessibility.AXFeatureOverrideSessionError
-T:Accessibility.AXFeatureOverrideSessionManager
T:Accessibility.AXFeatureOverrideSessionOptions
T:Accessibility.AXHearingDeviceEar
T:Accessibility.AXHearingUtilities
-T:Accessibility.AXLiveAudioGraph
-T:Accessibility.AXMathExpression
-T:Accessibility.AXMathExpressionFenced
-T:Accessibility.AXMathExpressionFraction
-T:Accessibility.AXMathExpressionIdentifier
-T:Accessibility.AXMathExpressionMultiscript
-T:Accessibility.AXMathExpressionNumber
-T:Accessibility.AXMathExpressionOperator
-T:Accessibility.AXMathExpressionRoot
-T:Accessibility.AXMathExpressionRow
-T:Accessibility.AXMathExpressionSubSuperscript
-T:Accessibility.AXMathExpressionTable
-T:Accessibility.AXMathExpressionTableCell
-T:Accessibility.AXMathExpressionTableRow
-T:Accessibility.AXMathExpressionText
-T:Accessibility.AXMathExpressionUnderOver
-T:Accessibility.AXNumericDataAxisDescriptor
T:Accessibility.AXNumericDataAxisDescriptorScale
T:Accessibility.AXPrefers
-T:Accessibility.AXRequest
T:Accessibility.AXSettings
T:Accessibility.AXSettingsFeature
T:Accessibility.AXTechnology
@@ -103036,20 +66440,13 @@ T:Accessibility.IAXCustomContentProvider
T:Accessibility.IAXDataAxisDescriptor
T:Accessibility.IAXMathExpressionProvider
T:Accessibility.ValueDescriptionProviderHandler
-T:AccessorySetupKit.ASAccessory
-T:AccessorySetupKit.ASAccessoryEvent
T:AccessorySetupKit.ASAccessoryEventType
T:AccessorySetupKit.ASAccessoryRenameOptions
-T:AccessorySetupKit.ASAccessorySession
T:AccessorySetupKit.ASAccessorySessionCompletionHandler
-T:AccessorySetupKit.ASAccessorySettings
T:AccessorySetupKit.ASAccessoryState
T:AccessorySetupKit.ASAccessorySupportOptions
-T:AccessorySetupKit.ASDiscoveryDescriptor
T:AccessorySetupKit.ASDiscoveryDescriptorRange
T:AccessorySetupKit.ASErrorCode
-T:AccessorySetupKit.ASMigrationDisplayItem
-T:AccessorySetupKit.ASPickerDisplayItem
T:AccessorySetupKit.ASPickerDisplayItemSetupOptions
T:Accounts.AccountStoreOptions
T:Accounts.ACFacebookAudience
@@ -103087,7 +66484,6 @@ T:AddressBookUI.ABPeoplePickerSelectPersonEventArgs
T:AddressBookUI.ABPersonViewPerformDefaultActionEventArgs
T:AddressBookUI.ABUnknownPersonCreatedEventArgs
T:AddressBookUI.DisplayedPropertiesCollection
-T:AdServices.AAAttribution
T:AdServices.AAAttributionErrorCode
T:AppClip.APActivationPayload
T:AppClip.APActivationPayloadErrorCode
@@ -103247,14 +66643,9 @@ T:AppKit.NSAccessibilityActions
T:AppKit.NSAccessibilityAnnotationAttributeKey
T:AppKit.NSAccessibilityAnnotationPosition
T:AppKit.NSAccessibilityAttributes
-T:AppKit.NSAccessibilityCustomAction
-T:AppKit.NSAccessibilityCustomRotor
-T:AppKit.NSAccessibilityCustomRotorItemResult
T:AppKit.NSAccessibilityCustomRotorItemSearchDelegate
T:AppKit.NSAccessibilityCustomRotorSearchDirection
-T:AppKit.NSAccessibilityCustomRotorSearchParameters
T:AppKit.NSAccessibilityCustomRotorType
-T:AppKit.NSAccessibilityElement
T:AppKit.NSAccessibilityFontKeys
T:AppKit.NSAccessibilityNotificationUserInfoKeys
T:AppKit.NSAccessibilityOrientation
@@ -103264,18 +66655,12 @@ T:AppKit.NSAccessibilityRulerMarkerType
T:AppKit.NSAccessibilitySortDirection
T:AppKit.NSAccessibilitySubroles
T:AppKit.NSAccessibilityUnits
-T:AppKit.NSActionCell
-T:AppKit.NSAdaptiveImageGlyph
-T:AppKit.NSAlert
T:AppKit.NSAlertButtonReturn
T:AppKit.NSAlertDelegate
T:AppKit.NSAlertPredicate
T:AppKit.NSAlertStyle
-T:AppKit.NSAlignmentFeedbackFilter
T:AppKit.NSAlignmentFeedbackToken
-T:AppKit.NSAnimation
T:AppKit.NSAnimationBlockingMode
-T:AppKit.NSAnimationContext
T:AppKit.NSAnimationCurve
T:AppKit.NSAnimationDelegate
T:AppKit.NSAnimationEffect
@@ -103283,9 +66668,7 @@ T:AppKit.NSAnimationEventArgs
T:AppKit.NSAnimationPredicate
T:AppKit.NSAnimationProgress
T:AppKit.NSAnimationProgressMarkEventArgs
-T:AppKit.NSAppearance
T:AppKit.NSAppearanceCustomization
-T:AppKit.NSApplication
T:AppKit.NSApplication_NSServicesMenu
T:AppKit.NSApplication_NSStandardAboutPanel
T:AppKit.NSApplication_NSTouchBarCustomization
@@ -103315,35 +66698,22 @@ T:AppKit.NSApplicationTermination
T:AppKit.NSApplicationUpdatedUserActivityEventArgs
T:AppKit.NSApplicationUserAcceptedCloudKitShareEventArgs
T:AppKit.NSApplicationUserActivityType
-T:AppKit.NSArrayController
-T:AppKit.NSATSTypesetter
T:AppKit.NSAttributedString_NSExtendedStringDrawing
T:AppKit.NSAttributedStringDocumentReadingOptions
T:AppKit.NSAttributedStringDocumentType
T:AppKit.NSBackgroundStyle
T:AppKit.NSBackingStore
T:AppKit.NSBezelStyle
-T:AppKit.NSBezierPath
T:AppKit.NSBezierPathElement
T:AppKit.NSBitmapFormat
T:AppKit.NSBitmapImageFileType
-T:AppKit.NSBitmapImageRep
T:AppKit.NSBorderType
-T:AppKit.NSBox
T:AppKit.NSBoxType
-T:AppKit.NSBrowser
-T:AppKit.NSBrowserCell
T:AppKit.NSBrowserColumnResizingType
T:AppKit.NSBrowserDelegate
T:AppKit.NSBrowserDropOperation
-T:AppKit.NSButton
-T:AppKit.NSButtonCell
-T:AppKit.NSButtonTouchBarItem
T:AppKit.NSButtonType
-T:AppKit.NSCachedImageRep
-T:AppKit.NSCandidateListTouchBarItem
T:AppKit.NSCandidateListTouchBarItemDelegate
-T:AppKit.NSCell
T:AppKit.NSCellAttribute
T:AppKit.NSCellHit
T:AppKit.NSCellImagePosition
@@ -103351,83 +66721,42 @@ T:AppKit.NSCellStateValue
T:AppKit.NSCellStyleMask
T:AppKit.NSCellType
T:AppKit.NSCharacterCollection
-T:AppKit.NSCIImageRep
-T:AppKit.NSClickGestureRecognizer
-T:AppKit.NSClipView
T:AppKit.NSCloudKitSharingServiceOptions
T:AppKit.NSCloudSharingServiceDelegate
T:AppKit.NSCoderAppKitAddons
T:AppKit.NSCoderEventArgs
T:AppKit.NSCollectionElementCategory
T:AppKit.NSCollectionElementKind
-T:AppKit.NSCollectionLayoutAnchor
T:AppKit.NSCollectionLayoutAnchorOffsetType
-T:AppKit.NSCollectionLayoutBoundarySupplementaryItem
-T:AppKit.NSCollectionLayoutDecorationItem
-T:AppKit.NSCollectionLayoutDimension
-T:AppKit.NSCollectionLayoutEdgeSpacing
-T:AppKit.NSCollectionLayoutGroup
-T:AppKit.NSCollectionLayoutGroupCustomItem
T:AppKit.NSCollectionLayoutGroupCustomItemProvider
-T:AppKit.NSCollectionLayoutItem
-T:AppKit.NSCollectionLayoutSection
T:AppKit.NSCollectionLayoutSectionOrthogonalScrollingBehavior
T:AppKit.NSCollectionLayoutSectionVisibleItemsInvalidationHandler
-T:AppKit.NSCollectionLayoutSize
-T:AppKit.NSCollectionLayoutSpacing
-T:AppKit.NSCollectionLayoutSupplementaryItem
T:AppKit.NSCollectionUpdateAction
-T:AppKit.NSCollectionView
-T:AppKit.NSCollectionViewCompositionalLayout
-T:AppKit.NSCollectionViewCompositionalLayoutConfiguration
T:AppKit.NSCollectionViewCompositionalLayoutSectionProvider
T:AppKit.NSCollectionViewDataSource
T:AppKit.NSCollectionViewDelegate
T:AppKit.NSCollectionViewDelegateFlowLayout
-T:AppKit.NSCollectionViewDiffableDataSource`2
T:AppKit.NSCollectionViewDiffableDataSourceItemProvider
T:AppKit.NSCollectionViewDiffableDataSourceSupplementaryViewProvider
T:AppKit.NSCollectionViewDropOperation
T:AppKit.NSCollectionViewElement
-T:AppKit.NSCollectionViewFlowLayout
-T:AppKit.NSCollectionViewFlowLayoutInvalidationContext
-T:AppKit.NSCollectionViewGridLayout
-T:AppKit.NSCollectionViewItem
T:AppKit.NSCollectionViewItemHighlightState
-T:AppKit.NSCollectionViewLayout
-T:AppKit.NSCollectionViewLayoutAttributes
-T:AppKit.NSCollectionViewLayoutInvalidationContext
T:AppKit.NSCollectionViewScrollDirection
T:AppKit.NSCollectionViewScrollPosition
-T:AppKit.NSCollectionViewTransitionLayout
-T:AppKit.NSCollectionViewUpdateItem
-T:AppKit.NSColor
-T:AppKit.NSColorList
-T:AppKit.NSColorPanel
T:AppKit.NSColorPanelFlags
T:AppKit.NSColorPanelMode
-T:AppKit.NSColorPicker
-T:AppKit.NSColorPickerTouchBarItem
T:AppKit.NSColorRenderingIntent
-T:AppKit.NSColorSampler
-T:AppKit.NSColorSpace
T:AppKit.NSColorSpaceModel
T:AppKit.NSColorSystemEffect
T:AppKit.NSColorType
-T:AppKit.NSColorWell
T:AppKit.NSColorWellStyle
-T:AppKit.NSComboBox
-T:AppKit.NSComboBoxCell
T:AppKit.NSComboBoxCellDataSource
T:AppKit.NSComboBoxDataSource
T:AppKit.NSComboBoxDelegate
-T:AppKit.NSComboButton
T:AppKit.NSComboButtonStyle
T:AppKit.NSComposite
T:AppKit.NSCompositingOperation
-T:AppKit.NSControl
T:AppKit.NSControlCommand
-T:AppKit.NSController
T:AppKit.NSControlSize
T:AppKit.NSControlText
T:AppKit.NSControlTextEditingDelegate
@@ -103439,34 +66768,23 @@ T:AppKit.NSControlTextValidation
T:AppKit.NSControlTint
T:AppKit.NSCorrectionIndicatorType
T:AppKit.NSCorrectionResponse
-T:AppKit.NSCursor
T:AppKit.NSCursorFrameResizeDirections
T:AppKit.NSCursorFrameResizePosition
-T:AppKit.NSCustomImageRep
T:AppKit.NSCustomImageRepDrawingHandler
-T:AppKit.NSCustomTouchBarItem
T:AppKit.NSDataEventArgs
-T:AppKit.NSDatePicker
-T:AppKit.NSDatePickerCell
T:AppKit.NSDatePickerCellDelegate
T:AppKit.NSDatePickerElementFlags
T:AppKit.NSDatePickerMode
T:AppKit.NSDatePickerStyle
T:AppKit.NSDatePickerValidatorEventArgs
-T:AppKit.NSDictionaryController
-T:AppKit.NSDictionaryControllerKeyValuePair
T:AppKit.NSDictionaryEventArgs
-T:AppKit.NSDiffableDataSourceSnapshot`2
T:AppKit.NSDirectionalEdgeInsets
T:AppKit.NSDirectionalRectEdge
T:AppKit.NSDisplayGamut
-T:AppKit.NSDockTile
T:AppKit.NSDockTilePlugIn
-T:AppKit.NSDocument
T:AppKit.NSDocument.DuplicateCallback
T:AppKit.NSDocumentChangeType
T:AppKit.NSDocumentCompletionHandler
-T:AppKit.NSDocumentController
T:AppKit.NSDocumentControllerOpenPanelResultHandler
T:AppKit.NSDocumentControllerOpenPanelWithCompletionHandler
T:AppKit.NSDocumentLockCompletionHandler
@@ -103479,19 +66797,13 @@ T:AppKit.NSDraggingContext
T:AppKit.NSDraggingDestination
T:AppKit.NSDraggingEnumerator
T:AppKit.NSDraggingFormation
-T:AppKit.NSDraggingImageComponent
-T:AppKit.NSDraggingItem
T:AppKit.NSDraggingItemEnumerationOptions
T:AppKit.NSDraggingItemImagesContentProvider
-T:AppKit.NSDraggingSession
T:AppKit.NSDraggingSource
T:AppKit.NSDragOperation
-T:AppKit.NSDrawer
T:AppKit.NSDrawerDelegate
T:AppKit.NSDrawerState
T:AppKit.NSEdgeInsets
-T:AppKit.NSEPSImageRep
-T:AppKit.NSEvent
T:AppKit.NSEventButtonMask
T:AppKit.NSEventGestureAxis
T:AppKit.NSEventMask
@@ -103502,24 +66814,16 @@ T:AppKit.NSEventSubtype
T:AppKit.NSEventSwipeTrackingOptions
T:AppKit.NSEventTrackHandler
T:AppKit.NSEventType
-T:AppKit.NSFilePromiseProvider
T:AppKit.NSFilePromiseProviderDelegate
-T:AppKit.NSFilePromiseReceiver
T:AppKit.NSFocusRingPlacement
T:AppKit.NSFocusRingType
-T:AppKit.NSFont
-T:AppKit.NSFontAssetRequest
T:AppKit.NSFontAssetRequestOptions
-T:AppKit.NSFontCollection
T:AppKit.NSFontCollectionAction
T:AppKit.NSFontCollectionChangedEventArgs
T:AppKit.NSFontCollectionOptions
T:AppKit.NSFontCollectionVisibility
-T:AppKit.NSFontDescriptor
T:AppKit.NSFontDescriptorSystemDesign
T:AppKit.NSFontError
-T:AppKit.NSFontManager
-T:AppKit.NSFontPanel
T:AppKit.NSFontPanelMode
T:AppKit.NSFontPanelModeMask
T:AppKit.NSFontRenderingMode
@@ -103528,12 +66832,9 @@ T:AppKit.NSFontTextStyle
T:AppKit.NSFontTraitMask
T:AppKit.NSFontWeight
T:AppKit.NSFontWidth
-T:AppKit.NSForm
-T:AppKit.NSFormCell
T:AppKit.NSFunctionKey
T:AppKit.NSGestureEvent
T:AppKit.NSGestureProbe
-T:AppKit.NSGestureRecognizer
T:AppKit.NSGestureRecognizer_NSTouchBar
T:AppKit.NSGestureRecognizer.ParameterlessDispatch
T:AppKit.NSGestureRecognizer.ParametrizedDispatch
@@ -103545,31 +66846,18 @@ T:AppKit.NSGLColorBuffer
T:AppKit.NSGLFormat
T:AppKit.NSGLTextureCubeMap
T:AppKit.NSGLTextureTarget
-T:AppKit.NSGlyphGenerator
-T:AppKit.NSGlyphInfo
T:AppKit.NSGlyphInscription
-T:AppKit.NSGradient
T:AppKit.NSGradientDrawingOptions
T:AppKit.NSGradientType
T:AppKit.NSGraphics
-T:AppKit.NSGraphicsContext
-T:AppKit.NSGridCell
T:AppKit.NSGridCellPlacement
-T:AppKit.NSGridColumn
-T:AppKit.NSGridRow
T:AppKit.NSGridRowAlignment
-T:AppKit.NSGridView
-T:AppKit.NSGroupTouchBarItem
-T:AppKit.NSHapticFeedbackManager
T:AppKit.NSHapticFeedbackPattern
T:AppKit.NSHapticFeedbackPerformanceTime
T:AppKit.NSHapticFeedbackPerformer
-T:AppKit.NSHelpManager
T:AppKit.NSHorizontalDirections
-T:AppKit.NSImage
T:AppKit.NSImageAlignment
T:AppKit.NSImageCacheMode
-T:AppKit.NSImageCell
T:AppKit.NSImageDelegate
T:AppKit.NSImageDynamicRange
T:AppKit.NSImageFrameStyle
@@ -103582,22 +66870,16 @@ T:AppKit.NSImageLoadStatus
T:AppKit.NSImageName
T:AppKit.NSImagePartialEventArgs
T:AppKit.NSImageRect
-T:AppKit.NSImageRep
T:AppKit.NSImageRepLoadStatus
T:AppKit.NSImageResizingMode
T:AppKit.NSImageResizingModeExtensions
T:AppKit.NSImageScale
T:AppKit.NSImageScaling
-T:AppKit.NSImageSymbolConfiguration
T:AppKit.NSImageSymbolScale
-T:AppKit.NSImageView
T:AppKit.NSKey
T:AppKit.NSLayoutConstraintOrientation
-T:AppKit.NSLayoutGuide
T:AppKit.NSLayoutManager_NSTextViewSupport
T:AppKit.NSLayoutPriority
-T:AppKit.NSLevelIndicator
-T:AppKit.NSLevelIndicatorCell
T:AppKit.NSLevelIndicatorPlaceholderVisibility
T:AppKit.NSLevelIndicatorStyle
T:AppKit.NSLineBreakMode
@@ -103606,44 +66888,25 @@ T:AppKit.NSLineCapStyle
T:AppKit.NSLineJoinStyle
T:AppKit.NSLineMovementDirection
T:AppKit.NSLineSweepDirection
-T:AppKit.NSMagnificationGestureRecognizer
-T:AppKit.NSMatrix
T:AppKit.NSMatrixDelegate
T:AppKit.NSMatrixMode
-T:AppKit.NSMenu
T:AppKit.NSMenuDelegate
-T:AppKit.NSMenuItem
-T:AppKit.NSMenuItemBadge
T:AppKit.NSMenuItemBadgeType
-T:AppKit.NSMenuItemCell
T:AppKit.NSMenuItemEventArgs
T:AppKit.NSMenuItemIndexEventArgs
T:AppKit.NSMenuPresentationStyle
T:AppKit.NSMenuProperty
T:AppKit.NSMenuSelectionMode
-T:AppKit.NSMenuToolbarItem
T:AppKit.NSModalResponse
T:AppKit.NSMutableAttributedStringAppKitAddons
-T:AppKit.NSMutableFontCollection
-T:AppKit.NSNib
-T:AppKit.NSNibConnector
-T:AppKit.NSNibControlConnector
-T:AppKit.NSNibOutletConnector
T:AppKit.NSObject_NSEditorRegistration
T:AppKit.NSObject_NSFontPanelValidationAdditions
T:AppKit.NSObject_NSToolbarItemValidation
-T:AppKit.NSObjectController
T:AppKit.NSObjectPredicate
-T:AppKit.NSOpenGLContext
T:AppKit.NSOpenGLContextParameter
T:AppKit.NSOpenGLGlobalOption
-T:AppKit.NSOpenGLLayer
-T:AppKit.NSOpenGLPixelBuffer
-T:AppKit.NSOpenGLPixelFormat
T:AppKit.NSOpenGLPixelFormatAttribute
T:AppKit.NSOpenGLProfile
-T:AppKit.NSOpenGLView
-T:AppKit.NSOpenPanel
T:AppKit.NSOpenSaveCompare
T:AppKit.NSOpenSaveExpandingEventArgs
T:AppKit.NSOpenSaveFilename
@@ -103655,11 +66918,9 @@ T:AppKit.NSOpenSavePanelUrl
T:AppKit.NSOpenSavePanelUrlEventArgs
T:AppKit.NSopenSavePanelUTTypeEventArgs
T:AppKit.NSOpenSavePanelValidate
-T:AppKit.NSOutlineView
T:AppKit.NSOutlineViewDataSource
T:AppKit.NSOutlineViewDelegate
T:AppKit.NSOutlineViewItemEventArgs
-T:AppKit.NSPageController
T:AppKit.NSPageControllerDelegate
T:AppKit.NSPageControllerGetFrame
T:AppKit.NSPageControllerGetIdentifier
@@ -103667,13 +66928,8 @@ T:AppKit.NSPageControllerGetViewController
T:AppKit.NSPageControllerPrepareViewControllerEventArgs
T:AppKit.NSPageControllerTransitionEventArgs
T:AppKit.NSPageControllerTransitionStyle
-T:AppKit.NSPageLayout
T:AppKit.NSPageLayoutResult
-T:AppKit.NSPanel
-T:AppKit.NSPanGestureRecognizer
-T:AppKit.NSPasteboard
T:AppKit.NSPasteboardContentsOptions
-T:AppKit.NSPasteboardItem
T:AppKit.NSPasteboardItemDataProvider
T:AppKit.NSPasteboardName
T:AppKit.NSPasteboardReadingOptions
@@ -103681,61 +66937,38 @@ T:AppKit.NSPasteboardType
T:AppKit.NSPasteboardTypeFindPanelSearchOptionKey
T:AppKit.NSPasteboardTypeTextFinderOptionKey
T:AppKit.NSPasteboardWritingOptions
-T:AppKit.NSPathCell
T:AppKit.NSPathCellDelegate
T:AppKit.NSPathCellDisplayPanelEventArgs
T:AppKit.NSPathCellMenuEventArgs
-T:AppKit.NSPathComponentCell
-T:AppKit.NSPathControl
T:AppKit.NSPathControlDelegate
-T:AppKit.NSPathControlItem
T:AppKit.NSPathStyle
-T:AppKit.NSPdfImageRep
-T:AppKit.NSPickerTouchBarItem
T:AppKit.NSPickerTouchBarItemControlRepresentation
T:AppKit.NSPickerTouchBarItemSelectionMode
T:AppKit.NSPointingDeviceType
-T:AppKit.NSPopover
T:AppKit.NSPopoverAppearance
T:AppKit.NSPopoverBehavior
T:AppKit.NSPopoverCloseEventArgs
T:AppKit.NSPopoverCloseReason
T:AppKit.NSPopoverDelegate
-T:AppKit.NSPopoverTouchBarItem
T:AppKit.NSPopUpArrowPosition
-T:AppKit.NSPopUpButton
-T:AppKit.NSPopUpButtonCell
-T:AppKit.NSPredicateEditor
-T:AppKit.NSPredicateEditorRowTemplate
-T:AppKit.NSPressGestureRecognizer
T:AppKit.NSPressureBehavior
-T:AppKit.NSPressureConfiguration
-T:AppKit.NSPreviewRepresentingActivityItem
-T:AppKit.NSPrinter
T:AppKit.NSPrinterTableStatus
-T:AppKit.NSPrintInfo
T:AppKit.NSPrintingOrientation
T:AppKit.NSPrintingPageOrder
T:AppKit.NSPrintingPaginationMode
-T:AppKit.NSPrintOperation
-T:AppKit.NSPrintPanel
T:AppKit.NSPrintPanelAccessorizing
T:AppKit.NSPrintPanelOptions
T:AppKit.NSPrintPanelResult
T:AppKit.NSPrintPreviewGraphicsContext
T:AppKit.NSPrintRenderingQuality
-T:AppKit.NSProgressIndicator
T:AppKit.NSProgressIndicatorStyle
T:AppKit.NSProgressIndicatorThickness
T:AppKit.NSRectAlignment
T:AppKit.NSRectEdge
T:AppKit.NSRemoteNotificationType
T:AppKit.NSRequestUserAttentionType
-T:AppKit.NSResponder
T:AppKit.NSResponder_NSTouchBarProvider
T:AppKit.NSResponder_NSWritingToolsSupport
-T:AppKit.NSRotationGestureRecognizer
-T:AppKit.NSRuleEditor
T:AppKit.NSRuleEditorDelegate
T:AppKit.NSRuleEditorNestingMode
T:AppKit.NSRuleEditorNumberOfChildren
@@ -103743,52 +66976,27 @@ T:AppKit.NSRuleEditorRowType
T:AppKit.NSRulerEditorChildCriterion
T:AppKit.NSRulerEditorDisplayValue
T:AppKit.NSRulerEditorPredicateParts
-T:AppKit.NSRulerMarker
T:AppKit.NSRulerMarkerClientViewDelegation
T:AppKit.NSRulerOrientation
-T:AppKit.NSRulerView
T:AppKit.NSRulerViewUnits
-T:AppKit.NSRunningApplication
T:AppKit.NSRunResponse
T:AppKit.NSSaveOperationType
-T:AppKit.NSSavePanel
T:AppKit.NSSavePanelComplete
-T:AppKit.NSScreen
T:AppKit.NSScrollArrowPosition
T:AppKit.NSScrollElasticity
-T:AppKit.NSScroller
T:AppKit.NSScrollerArrow
T:AppKit.NSScrollerKnobStyle
T:AppKit.NSScrollerPart
T:AppKit.NSScrollerStyle
-T:AppKit.NSScrollView
T:AppKit.NSScrollViewFindBarPosition
-T:AppKit.NSScrubber
T:AppKit.NSScrubberAlignment
-T:AppKit.NSScrubberArrangedView
T:AppKit.NSScrubberDataSource
T:AppKit.NSScrubberDelegate
-T:AppKit.NSScrubberFlowLayout
T:AppKit.NSScrubberFlowLayoutDelegate
-T:AppKit.NSScrubberImageItemView
-T:AppKit.NSScrubberItemView
-T:AppKit.NSScrubberLayout
-T:AppKit.NSScrubberLayoutAttributes
T:AppKit.NSScrubberMode
-T:AppKit.NSScrubberProportionalLayout
-T:AppKit.NSScrubberSelectionStyle
-T:AppKit.NSScrubberSelectionView
-T:AppKit.NSScrubberTextItemView
-T:AppKit.NSSearchField
-T:AppKit.NSSearchFieldCell
T:AppKit.NSSearchFieldDelegate
-T:AppKit.NSSearchToolbarItem
-T:AppKit.NSSecureTextField
-T:AppKit.NSSecureTextFieldCell
T:AppKit.NSSegmentBackgroundStyle_NSSegmentedCell
T:AppKit.NSSegmentDistribution
-T:AppKit.NSSegmentedCell
-T:AppKit.NSSegmentedControl
T:AppKit.NSSegmentStyle
T:AppKit.NSSegmentSwitchTracking
T:AppKit.NSSeguePerforming
@@ -103796,90 +67004,56 @@ T:AppKit.NSSelectionAffinity
T:AppKit.NSSelectionDirection
T:AppKit.NSSelectionGranularity
T:AppKit.NSSharingCollaborationMode
-T:AppKit.NSSharingCollaborationModeRestriction
T:AppKit.NSSharingContentScope
-T:AppKit.NSSharingService
T:AppKit.NSSharingServiceAnchoringViewForSharingService
T:AppKit.NSSharingServiceDelegate
T:AppKit.NSSharingServiceDidFailToShareItemsEventArgs
T:AppKit.NSSharingServiceHandler
T:AppKit.NSSharingServiceItemsEventArgs
T:AppKit.NSSharingServiceName
-T:AppKit.NSSharingServicePicker
T:AppKit.NSSharingServicePickerDelegate
T:AppKit.NSSharingServicePickerDelegateCollaborationModeRestrictions
T:AppKit.NSSharingServicePickerDelegateForSharingService
T:AppKit.NSSharingServicePickerDidChooseSharingServiceEventArgs
T:AppKit.NSSharingServicePickerSharingServicesForItems
-T:AppKit.NSSharingServicePickerToolbarItem
T:AppKit.NSSharingServicePickerToolbarItemDelegate
-T:AppKit.NSSharingServicePickerTouchBarItem
T:AppKit.NSSharingServicePickerTouchBarItemDelegate
T:AppKit.NSSharingServiceSourceFrameOnScreenForShareItem
T:AppKit.NSSharingServiceSourceWindowForShareItems
T:AppKit.NSSharingServiceTransitionImageForShareItem
-T:AppKit.NSSlider
-T:AppKit.NSSliderAccessory
-T:AppKit.NSSliderAccessoryBehavior
-T:AppKit.NSSliderCell
-T:AppKit.NSSliderTouchBarItem
T:AppKit.NSSliderType
-T:AppKit.NSSound
T:AppKit.NSSoundDelegate
T:AppKit.NSSoundFinishedEventArgs
T:AppKit.NSSpeechBoundary
-T:AppKit.NSSpeechRecognizer
T:AppKit.NSSpeechRecognizerDelegate
-T:AppKit.NSSpeechSynthesizer
T:AppKit.NSSpeechSynthesizerDelegate
-T:AppKit.NSSpellChecker
T:AppKit.NSSpellCheckerCandidates
T:AppKit.NSSpellCheckerShowCorrectionIndicatorOfTypeHandler
T:AppKit.NSSpellingState
-T:AppKit.NSSplitView
-T:AppKit.NSSplitViewController
T:AppKit.NSSplitViewDelegate
T:AppKit.NSSplitViewDividerIndexEventArgs
T:AppKit.NSSplitViewDividerStyle
-T:AppKit.NSSplitViewItem
T:AppKit.NSSplitViewItemBehavior
T:AppKit.NSSpringLoadingDestination
T:AppKit.NSSpringLoadingHighlight
T:AppKit.NSSpringLoadingOptions
-T:AppKit.NSStackView
T:AppKit.NSStackViewDelegate
T:AppKit.NSStackViewDistribution
T:AppKit.NSStackViewGravity
T:AppKit.NSStackViewVisibilityPriority
T:AppKit.NSStandardKeyBindingMethods
-T:AppKit.NSStatusBar
-T:AppKit.NSStatusBarButton
-T:AppKit.NSStatusItem
T:AppKit.NSStatusItemBehavior
T:AppKit.NSStatusItemLength
-T:AppKit.NSStepper
-T:AppKit.NSStepperCell
-T:AppKit.NSStepperTouchBarItem
-T:AppKit.NSStoryboard
T:AppKit.NSStoryboardControllerCreator
-T:AppKit.NSStoryboardSegue
T:AppKit.NSStringAttributeKey
T:AppKit.NSStringAttributes
T:AppKit.NSStringDrawing
T:AppKit.NSStringDrawing_NSAttributedString
T:AppKit.NSStringDrawing_NSString
-T:AppKit.NSStringDrawingContext
T:AppKit.NSSurfaceOrder
-T:AppKit.NSSwitch
-T:AppKit.NSTableCellView
-T:AppKit.NSTableColumn
T:AppKit.NSTableColumnResizing
-T:AppKit.NSTableHeaderCell
-T:AppKit.NSTableHeaderView
T:AppKit.NSTableReorder
T:AppKit.NSTableRowActionEdge
-T:AppKit.NSTableRowView
-T:AppKit.NSTableView
T:AppKit.NSTableViewAnimation
T:AppKit.NSTableViewAnimationOptions
T:AppKit.NSTableViewCell
@@ -103892,7 +67066,6 @@ T:AppKit.NSTableViewColumnRowString
T:AppKit.NSTableViewColumnWidth
T:AppKit.NSTableViewDataSource
T:AppKit.NSTableViewDelegate
-T:AppKit.NSTableViewDiffableDataSource`2
T:AppKit.NSTableViewDiffableDataSourceCellProvider
T:AppKit.NSTableViewDiffableDataSourceRowProvider
T:AppKit.NSTableViewDiffableDataSourceSectionHeaderViewProvider
@@ -103902,7 +67075,6 @@ T:AppKit.NSTableViewEventString
T:AppKit.NSTableViewGridStyle
T:AppKit.NSTableViewIndexFilter
T:AppKit.NSTableViewPredicate
-T:AppKit.NSTableViewRowAction
T:AppKit.NSTableViewRowActionsGetter
T:AppKit.NSTableViewRowActionStyle
T:AppKit.NSTableViewRowEventArgs
@@ -103922,48 +67094,33 @@ T:AppKit.NSTableViewUserCanChangeColumnVisibility
T:AppKit.NSTableViewViewGetter
T:AppKit.NSTabPosition
T:AppKit.NSTabState
-T:AppKit.NSTabView
T:AppKit.NSTabViewBorderType
-T:AppKit.NSTabViewController
T:AppKit.NSTabViewControllerTabStyle
T:AppKit.NSTabViewDelegate
-T:AppKit.NSTabViewItem
T:AppKit.NSTabViewItemEventArgs
T:AppKit.NSTabViewPredicate
T:AppKit.NSTabViewType
-T:AppKit.NSText
T:AppKit.NSTextAlignment
T:AppKit.NSTextAlignmentExtensions
-T:AppKit.NSTextAlternatives
T:AppKit.NSTextAlternativesSelectedAlternativeStringEventArgs
-T:AppKit.NSTextAttachmentCell
-T:AppKit.NSTextAttachmentViewProvider
-T:AppKit.NSTextBlock
T:AppKit.NSTextBlockDimension
T:AppKit.NSTextBlockLayer
T:AppKit.NSTextBlockValueType
T:AppKit.NSTextBlockVerticalAlignment
-T:AppKit.NSTextCheckingController
T:AppKit.NSTextCheckingOptions
-T:AppKit.NSTextContentManager
T:AppKit.NSTextContentManagerDelegate
T:AppKit.NSTextContentManagerEnumerationOptions
-T:AppKit.NSTextContentStorage
T:AppKit.NSTextContentStorageDelegate
T:AppKit.NSTextContentType
T:AppKit.NSTextCursorAccessoryPlacement
T:AppKit.NSTextDelegate
T:AppKit.NSTextDidEndEditingEventArgs
-T:AppKit.NSTextElement
-T:AppKit.NSTextField
T:AppKit.NSTextField_NSTouchBar
T:AppKit.NSTextFieldBezelStyle
-T:AppKit.NSTextFieldCell
T:AppKit.NSTextFieldDelegate
T:AppKit.NSTextFieldGetCandidates
T:AppKit.NSTextFieldSelectCandidate
T:AppKit.NSTextFieldTextCheckingResults
-T:AppKit.NSTextFinder
T:AppKit.NSTextFinderAction
T:AppKit.NSTextFinderBarContainer
T:AppKit.NSTextFinderMatchingType
@@ -103971,50 +67128,35 @@ T:AppKit.NSTextFinderSupport
T:AppKit.NSTextHighlightColorScheme
T:AppKit.NSTextHighlightStyle
T:AppKit.NSTextInputClient
-T:AppKit.NSTextInputContext
T:AppKit.NSTextInputTraitType
-T:AppKit.NSTextInsertionIndicator
T:AppKit.NSTextInsertionIndicatorAutomaticModeOptions
T:AppKit.NSTextInsertionIndicatorDisplayMode
-T:AppKit.NSTextLayoutFragment
T:AppKit.NSTextLayoutFragmentEnumerationOptions
T:AppKit.NSTextLayoutFragmentState
-T:AppKit.NSTextLayoutManager
T:AppKit.NSTextLayoutManagerDelegate
T:AppKit.NSTextLayoutManagerEnumerateRenderingAttributesDelegate
T:AppKit.NSTextLayoutManagerEnumerateTextSegmentsDelegate
T:AppKit.NSTextLayoutManagerSegmentOptions
T:AppKit.NSTextLayoutManagerSegmentType
-T:AppKit.NSTextLineFragment
-T:AppKit.NSTextList
-T:AppKit.NSTextListElement
T:AppKit.NSTextListMarkerFormats
T:AppKit.NSTextListOptions
T:AppKit.NSTextMovement
-T:AppKit.NSTextParagraph
T:AppKit.NSTextPredicate
-T:AppKit.NSTextPreview
-T:AppKit.NSTextRange
T:AppKit.NSTextScalingType
-T:AppKit.NSTextSelection
T:AppKit.NSTextSelectionAffinity
T:AppKit.NSTextSelectionDataSource
T:AppKit.NSTextSelectionDataSourceEnumerateCaretOffsetsDelegate
T:AppKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate
T:AppKit.NSTextSelectionDataSourceEnumerateSubstringsDelegate
T:AppKit.NSTextSelectionGranularity
-T:AppKit.NSTextSelectionNavigation
T:AppKit.NSTextSelectionNavigationDestination
T:AppKit.NSTextSelectionNavigationDirection
T:AppKit.NSTextSelectionNavigationLayoutOrientation
T:AppKit.NSTextSelectionNavigationModifier
T:AppKit.NSTextSelectionNavigationWritingDirection
T:AppKit.NSTextStorageEventArgs
-T:AppKit.NSTextTable
-T:AppKit.NSTextTableBlock
T:AppKit.NSTextTableLayoutAlgorithm
T:AppKit.NSTextTabType
-T:AppKit.NSTextView
T:AppKit.NSTextView_SharingService
T:AppKit.NSTextViewCellPasteboard
T:AppKit.NSTextViewCellPosition
@@ -104030,7 +67172,6 @@ T:AppKit.NSTextViewGetCandidates
T:AppKit.NSTextViewGetUndoManager
T:AppKit.NSTextViewLink
T:AppKit.NSTextViewOnTextCheck
-T:AppKit.NSTextViewportLayoutController
T:AppKit.NSTextViewportLayoutControllerDelegate
T:AppKit.NSTextViewRange
T:AppKit.NSTextViewSelectCandidate
@@ -104047,62 +67188,42 @@ T:AppKit.NSTextViewUpdateTouchBarItemIdentifiers
T:AppKit.NSTextViewWillChangeNotifyingTextViewEventArgs
T:AppKit.NSTickMarkPosition
T:AppKit.NSTiffCompression
-T:AppKit.NSTintConfiguration
-T:AppKit.NSTitlebarAccessoryViewController
T:AppKit.NSTitlebarSeparatorStyle
T:AppKit.NSTitlePosition
-T:AppKit.NSTokenField
-T:AppKit.NSTokenFieldCell
T:AppKit.NSTokenFieldCellDelegate
T:AppKit.NSTokenFieldDelegate
T:AppKit.NSTokenStyle
-T:AppKit.NSToolbar
T:AppKit.NSToolbarCanInsert
T:AppKit.NSToolbarDelegate
T:AppKit.NSToolbarDisplayMode
T:AppKit.NSToolbarIdentifiers
T:AppKit.NSToolbarImmovableItemIdentifiers
-T:AppKit.NSToolbarItem
T:AppKit.NSToolbarItemEventArgs
-T:AppKit.NSToolbarItemGroup
T:AppKit.NSToolbarItemGroupControlRepresentation
T:AppKit.NSToolbarItemGroupSelectionMode
T:AppKit.NSToolbarItemVisibilityPriority
T:AppKit.NSToolbarSizeMode
T:AppKit.NSToolbarWillInsert
-T:AppKit.NSTouch
T:AppKit.NSTouch_NSTouchBar
-T:AppKit.NSTouchBar
T:AppKit.NSTouchBarDelegate
-T:AppKit.NSTouchBarItem
T:AppKit.NSTouchBarItemIdentifier
T:AppKit.NSTouchBarMakeItem
T:AppKit.NSTouchEvent
T:AppKit.NSTouchPhase
T:AppKit.NSTouchType
T:AppKit.NSTouchTypeMask
-T:AppKit.NSTrackingArea
T:AppKit.NSTrackingAreaOptions
-T:AppKit.NSTrackingSeparatorToolbarItem
-T:AppKit.NSTreeController
-T:AppKit.NSTreeNode
-T:AppKit.NSTypesetter
T:AppKit.NSTypesetterBehavior
T:AppKit.NSTypesetterControlCharacterAction
T:AppKit.NSUnderlinePattern
T:AppKit.NSUsableScrollerParts
-T:AppKit.NSUserDefaultsController
-T:AppKit.NSUserInterfaceCompressionOptions
T:AppKit.NSUserInterfaceLayoutDirection
T:AppKit.NSUserInterfaceLayoutOrientation
T:AppKit.NSVerticalDirections
-T:AppKit.NSView
T:AppKit.NSView_NSCandidateListTouchBarItem
T:AppKit.NSView_NSTouchBar
-T:AppKit.NSViewAnimation
T:AppKit.NSViewColumnMoveEventArgs
T:AppKit.NSViewColumnResizeEventArgs
-T:AppKit.NSViewController
T:AppKit.NSViewControllerPresentationAnimator
T:AppKit.NSViewControllerTransitionOptions
T:AppKit.NSViewLayerContentsPlacement
@@ -104111,9 +67232,7 @@ T:AppKit.NSViewResizingMask
T:AppKit.NSVisualEffectBlendingMode
T:AppKit.NSVisualEffectMaterial
T:AppKit.NSVisualEffectState
-T:AppKit.NSVisualEffectView
T:AppKit.NSWindingRule
-T:AppKit.NSWindow
T:AppKit.NSWindowAnimationBehavior
T:AppKit.NSWindowApplicationPresentationOptions
T:AppKit.NSWindowBackingLocation
@@ -104123,7 +67242,6 @@ T:AppKit.NSWindowClient
T:AppKit.NSWindowCoderEventArgs
T:AppKit.NSWindowCollectionBehavior
T:AppKit.NSWindowCompletionHandler
-T:AppKit.NSWindowController
T:AppKit.NSWindowDelegate
T:AppKit.NSWindowDepth
T:AppKit.NSWindowDocumentDrag
@@ -104145,30 +67263,22 @@ T:AppKit.NSWindowSheetRect
T:AppKit.NSWindowSize
T:AppKit.NSWindowSizeSize
T:AppKit.NSWindowStyle
-T:AppKit.NSWindowTab
T:AppKit.NSWindowTabbingMode
-T:AppKit.NSWindowTabGroup
T:AppKit.NSWindowTitleVisibility
T:AppKit.NSWindowToolbarStyle
T:AppKit.NSWindowTrackEventsMatchingCompletionHandler
T:AppKit.NSWindowUndoManager
T:AppKit.NSWindowUserTabbingPreference
T:AppKit.NSWindowWindows
-T:AppKit.NSWorkspace
T:AppKit.NSWorkspaceApplicationEventArgs
-T:AppKit.NSWorkspaceAuthorization
T:AppKit.NSWorkspaceAuthorizationType
T:AppKit.NSWorkspaceFileOperationEventArgs
T:AppKit.NSWorkspaceIconCreationOptions
T:AppKit.NSWorkspaceLaunchOptions
T:AppKit.NSWorkspaceMountEventArgs
-T:AppKit.NSWorkspaceOpenConfiguration
T:AppKit.NSWorkspaceRenamedEventArgs
T:AppKit.NSWorkspaceUrlHandler
T:AppKit.NSWritingToolsBehavior
-T:AppKit.NSWritingToolsCoordinator
-T:AppKit.NSWritingToolsCoordinatorAnimationParameters
-T:AppKit.NSWritingToolsCoordinatorContext
T:AppKit.NSWritingToolsCoordinatorContextScope
T:AppKit.NSWritingToolsCoordinatorDelegate
T:AppKit.NSWritingToolsCoordinatorDelegateReplaceRangeCallback
@@ -104189,52 +67299,25 @@ T:AppKit.OpenDocumentCompletionHandler
T:AppTrackingTransparency.ATTrackingManager
T:AppTrackingTransparency.ATTrackingManagerAuthorizationStatus
T:ARKit.ARAltitudeSource
-T:ARKit.ARAppClipCodeAnchor
T:ARKit.ARAppClipCodeUrlDecodingState
-T:ARKit.ARBody2D
-T:ARKit.ARBodyAnchor
-T:ARKit.ARBodyTrackingConfiguration
T:ARKit.ARCoachingGoal
-T:ARKit.ARCoachingOverlayView
T:ARKit.ARCoachingOverlayViewDelegate
-T:ARKit.ARCollaborationData
T:ARKit.ARCollaborationDataPriority
T:ARKit.ARConfidenceLevel
-T:ARKit.ARDepthData
T:ARKit.ARFrameSemantics
-T:ARKit.ARGeoAnchor
-T:ARKit.ARGeometryElement
T:ARKit.ARGeometryPrimitiveType
-T:ARKit.ARGeometrySource
T:ARKit.ARGeoTrackingAccuracy
-T:ARKit.ARGeoTrackingConfiguration
T:ARKit.ARGeoTrackingState
T:ARKit.ARGeoTrackingStateReason
-T:ARKit.ARGeoTrackingStatus
-T:ARKit.ARMatteGenerator
T:ARKit.ARMatteResolution
-T:ARKit.ARMeshAnchor
T:ARKit.ARMeshClassification
-T:ARKit.ARMeshGeometry
-T:ARKit.ARParticipantAnchor
T:ARKit.ARPlaneClassification
T:ARKit.ARPlaneClassificationStatus
-T:ARKit.ARPlaneExtent
-T:ARKit.ARPositionalTrackingConfiguration
-T:ARKit.ARQuickLookPreviewItem
-T:ARKit.ARRaycastQuery
-T:ARKit.ARRaycastResult
T:ARKit.ARRaycastTarget
T:ARKit.ARRaycastTargetAlignment
T:ARKit.ARSceneReconstruction
-T:ARKit.ARSCNPlaneGeometry
T:ARKit.ARSegmentationClass
-T:ARKit.ARSkeleton
-T:ARKit.ARSkeleton2D
-T:ARKit.ARSkeleton3D
-T:ARKit.ARSkeletonDefinition
T:ARKit.ARSkeletonJointName
-T:ARKit.ARTrackedRaycast
T:ARKit.GeoLocationForPoint
T:ARKit.GetGeolocationCallback
T:ARKit.IARAnchorCopying
@@ -104581,71 +67664,28 @@ T:AutomaticAssessmentConfiguration.AEAutocorrectMode
T:AutomaticAssessmentConfiguration.IAEAssessmentSessionDelegate
T:AVFoundation.AudioRendererWasFlushedAutomaticallyEventArgs
T:AVFoundation.AudioSettings
-T:AVFoundation.AVAsset
-T:AVFoundation.AVAssetCache
-T:AVFoundation.AVAssetDownloadConfiguration
-T:AVFoundation.AVAssetDownloadContentConfiguration
T:AVFoundation.AVAssetDownloadedAssetEvictionPriority
T:AVFoundation.AVAssetDownloadOptions
T:AVFoundation.AVAssetExportPresetApple
-T:AVFoundation.AVAssetExportSession
T:AVFoundation.AVAssetExportSessionPreset
T:AVFoundation.AVAssetExportSessionStatus
T:AVFoundation.AVAssetImageGenerateAsynchronouslyForTimeCompletionHandler
-T:AVFoundation.AVAssetImageGenerator
T:AVFoundation.AVAssetImageGeneratorCompletionHandler
T:AVFoundation.AVAssetImageGeneratorCompletionHandler2
T:AVFoundation.AVAssetImageGeneratorDynamicRangePolicy
T:AVFoundation.AVAssetImageGeneratorResult
-T:AVFoundation.AVAssetPlaybackAssistant
T:AVFoundation.AVAssetPlaybackAssistantLoadPlaybackConfigurationOptionsHandler
T:AVFoundation.AVAssetPlaybackConfigurationOption
-T:AVFoundation.AVAssetReader
-T:AVFoundation.AVAssetReaderAudioMixOutput
-T:AVFoundation.AVAssetReaderOutput
-T:AVFoundation.AVAssetReaderOutputCaptionAdaptor
-T:AVFoundation.AVAssetReaderOutputMetadataAdaptor
-T:AVFoundation.AVAssetReaderSampleReferenceOutput
T:AVFoundation.AVAssetReaderStatus
-T:AVFoundation.AVAssetReaderTrackOutput
-T:AVFoundation.AVAssetReaderVideoCompositionOutput
T:AVFoundation.AVAssetReferenceRestrictions
-T:AVFoundation.AVAssetResourceLoader
T:AVFoundation.AVAssetResourceLoaderDelegate
-T:AVFoundation.AVAssetResourceLoadingContentInformationRequest
-T:AVFoundation.AVAssetResourceLoadingDataRequest
-T:AVFoundation.AVAssetResourceLoadingRequest
-T:AVFoundation.AVAssetResourceLoadingRequestor
-T:AVFoundation.AVAssetResourceRenewalRequest
-T:AVFoundation.AVAssetSegmentReport
-T:AVFoundation.AVAssetSegmentReportSampleInformation
-T:AVFoundation.AVAssetSegmentTrackReport
T:AVFoundation.AVAssetSegmentType
-T:AVFoundation.AVAssetTrack
-T:AVFoundation.AVAssetTrackGroup
T:AVFoundation.AVAssetTrackGroupOutputHandling
-T:AVFoundation.AVAssetTrackSegment
T:AVFoundation.AVAssetTrackTrackAssociation
-T:AVFoundation.AVAssetVariant
-T:AVFoundation.AVAssetVariantAudioAttributes
-T:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes
-T:AVFoundation.AVAssetVariantQualifier
-T:AVFoundation.AVAssetVariantVideoAttributes
-T:AVFoundation.AVAssetVariantVideoLayoutAttributes
-T:AVFoundation.AVAssetWriter
T:AVFoundation.AVAssetWriterDelegate
-T:AVFoundation.AVAssetWriterInput
-T:AVFoundation.AVAssetWriterInputCaptionAdaptor
-T:AVFoundation.AVAssetWriterInputGroup
T:AVFoundation.AVAssetWriterInputMediaDataLocation
-T:AVFoundation.AVAssetWriterInputMetadataAdaptor
-T:AVFoundation.AVAssetWriterInputPassDescription
-T:AVFoundation.AVAssetWriterInputPixelBufferAdaptor
-T:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor
T:AVFoundation.AVAssetWriterStatus
-T:AVFoundation.AVAsynchronousCIImageFilteringRequest
T:AVFoundation.AVAsynchronousKeyValueLoading
-T:AVFoundation.AVAsynchronousVideoCompositionRequest
T:AVFoundation.AVAudio3DAngularOrientation
T:AVFoundation.AVAudio3DMixing
T:AVFoundation.AVAudio3DMixingPointSourceInHeadMode
@@ -104687,10 +67727,8 @@ T:AVFoundation.AVAudioInputNode
T:AVFoundation.AVAudioInputNodeMutedSpeechEventListener
T:AVFoundation.AVAudioIONode
T:AVFoundation.AVAudioIONodeInputBlock
-T:AVFoundation.AVAudioMix
T:AVFoundation.AVAudioMixerNode
T:AVFoundation.AVAudioMixingDestination
-T:AVFoundation.AVAudioMixInputParameters
T:AVFoundation.AVAudioNode
T:AVFoundation.AVAudioNodeTapBlock
T:AVFoundation.AVAudioOutputNode
@@ -104771,31 +67809,18 @@ T:AVFoundation.AVAUPresetEvent
T:AVFoundation.AVAuthorizationMediaType
T:AVFoundation.AVAuthorizationStatus
T:AVFoundation.AVBeatRange
-T:AVFoundation.AVCameraCalibrationData
-T:AVFoundation.AVCaption
T:AVFoundation.AVCaptionAnimation
-T:AVFoundation.AVCaptionConversionAdjustment
T:AVFoundation.AVCaptionConversionAdjustmentType
-T:AVFoundation.AVCaptionConversionTimeRangeAdjustment
-T:AVFoundation.AVCaptionConversionValidator
T:AVFoundation.AVCaptionConversionValidatorStatus
-T:AVFoundation.AVCaptionConversionWarning
T:AVFoundation.AVCaptionConversionWarningType
T:AVFoundation.AVCaptionDecoration
T:AVFoundation.AVCaptionDimension
T:AVFoundation.AVCaptionFontStyle
T:AVFoundation.AVCaptionFontWeight
-T:AVFoundation.AVCaptionFormatConformer
-T:AVFoundation.AVCaptionGroup
-T:AVFoundation.AVCaptionGrouper
T:AVFoundation.AVCaptionPoint
-T:AVFoundation.AVCaptionRegion
T:AVFoundation.AVCaptionRegionDisplayAlignment
T:AVFoundation.AVCaptionRegionScroll
T:AVFoundation.AVCaptionRegionWritingMode
-T:AVFoundation.AVCaptionRenderer
-T:AVFoundation.AVCaptionRendererScene
-T:AVFoundation.AVCaptionRuby
T:AVFoundation.AVCaptionRubyAlignment
T:AVFoundation.AVCaptionRubyPosition
T:AVFoundation.AVCaptionSettings
@@ -104803,56 +67828,38 @@ T:AVFoundation.AVCaptionSize
T:AVFoundation.AVCaptionTextAlignment
T:AVFoundation.AVCaptionTextCombine
T:AVFoundation.AVCaptionUnitsType
-T:AVFoundation.AVCaptureAudioFileOutput
-T:AVFoundation.AVCaptureAudioPreviewOutput
T:AVFoundation.AVCaptureAutoFocusRangeRestriction
T:AVFoundation.AVCaptureAutoFocusSystem
T:AVFoundation.AVCaptureCenterStageControlMode
T:AVFoundation.AVCaptureColorSpace
-T:AVFoundation.AVCaptureControl
-T:AVFoundation.AVCaptureDeferredPhotoProxy
-T:AVFoundation.AVCaptureDeskViewApplication
-T:AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration
T:AVFoundation.AVCaptureDeskViewApplicationPresentHandler
-T:AVFoundation.AVCaptureDeviceDiscoverySession
-T:AVFoundation.AVCaptureDeviceInputSource
T:AVFoundation.AVCaptureDevicePosition
-T:AVFoundation.AVCaptureDeviceRotationCoordinator
T:AVFoundation.AVCaptureExposureMode
T:AVFoundation.AVCaptureFileOutputDelegate
T:AVFoundation.AVCaptureFlashMode
T:AVFoundation.AVCaptureFocusMode
-T:AVFoundation.AVCaptureIndexPicker
T:AVFoundation.AVCaptureIndexPickerCallback
T:AVFoundation.AVCaptureIndexPickerTitleTransform
T:AVFoundation.AVCaptureLensStabilizationStatus
T:AVFoundation.AVCaptureMicrophoneMode
-T:AVFoundation.AVCaptureMultiCamSession
T:AVFoundation.AVCaptureMultichannelAudioMode
T:AVFoundation.AVCaptureOutputDataDroppedReason
T:AVFoundation.AVCapturePhotoOutputCaptureReadiness
-T:AVFoundation.AVCapturePhotoOutputReadinessCoordinator
T:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegate
T:AVFoundation.AVCapturePhotoQualityPrioritization
T:AVFoundation.AVCapturePrimaryConstituentDeviceRestrictedSwitchingBehaviorConditions
T:AVFoundation.AVCapturePrimaryConstituentDeviceSwitchingBehavior
-T:AVFoundation.AVCaptureReactionEffectState
T:AVFoundation.AVCaptureReactionType
T:AVFoundation.AVCaptureReactionType_Extensions
T:AVFoundation.AVCaptureReactionTypeExtensions
-T:AVFoundation.AVCaptureScreenInput
T:AVFoundation.AVCaptureSessionControlsDelegate
T:AVFoundation.AVCaptureSessionInterruptionReason
T:AVFoundation.AVCaptureSessionRuntimeErrorEventArgs
-T:AVFoundation.AVCaptureSlider
T:AVFoundation.AVCaptureSliderCallback
-T:AVFoundation.AVCaptureSystemExposureBiasSlider
T:AVFoundation.AVCaptureSystemExposureBiasSliderCallback
T:AVFoundation.AVCaptureSystemPressureFactors
T:AVFoundation.AVCaptureSystemPressureLevel
-T:AVFoundation.AVCaptureSystemPressureState
T:AVFoundation.AVCaptureSystemUserInterface
-T:AVFoundation.AVCaptureSystemZoomSlider
T:AVFoundation.AVCaptureSystemZoomSliderCallback
T:AVFoundation.AVCaptureTorchMode
T:AVFoundation.AVCaptureVideoOrientation
@@ -104867,85 +67874,43 @@ T:AVFoundation.AVChannelsEventArgs
T:AVFoundation.AVCleanApertureProperties
T:AVFoundation.AVColorProperties
T:AVFoundation.AVCompletion
-T:AVFoundation.AVComposition
T:AVFoundation.AVComposition_AVCompositionTrackInspection
-T:AVFoundation.AVCompositionTrack
-T:AVFoundation.AVCompositionTrackFormatDescriptionReplacement
-T:AVFoundation.AVCompositionTrackSegment
T:AVFoundation.AVCompressionProperties
T:AVFoundation.AVContentAuthorizationStatus
-T:AVFoundation.AVContentKey
-T:AVFoundation.AVContentKeyRequest
T:AVFoundation.AVContentKeyRequest_AVContentKeyRequestRenewal
T:AVFoundation.AVContentKeyRequestRetryReason
T:AVFoundation.AVContentKeyRequestStatus
-T:AVFoundation.AVContentKeyResponse
T:AVFoundation.AVContentKeyResponseDataType
-T:AVFoundation.AVContentKeySession
T:AVFoundation.AVContentKeySession_AVContentKeyRecipients
T:AVFoundation.AVContentKeySessionDelegate
T:AVFoundation.AVContentKeySessionServerPlaybackContextOptions
-T:AVFoundation.AVContentKeySpecifier
T:AVFoundation.AVContentKeySystem
T:AVFoundation.AVContentProposal
T:AVFoundation.AVContentProposalAction
-T:AVFoundation.AVContinuityDevice
-T:AVFoundation.AVCoordinatedPlaybackParticipant
-T:AVFoundation.AVCoordinatedPlaybackSuspension
T:AVFoundation.AVCoordinatedPlaybackSuspensionReason
-T:AVFoundation.AVDateRangeMetadataGroup
-T:AVFoundation.AVDelegatingPlaybackCoordinator
-T:AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand
-T:AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand
-T:AVFoundation.AVDelegatingPlaybackCoordinatorPlaybackControlCommand
-T:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand
T:AVFoundation.AVDelegatingPlaybackCoordinatorRateChangeOptions
-T:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand
T:AVFoundation.AVDelegatingPlaybackCoordinatorSeekOptions
-T:AVFoundation.AVDepthData
T:AVFoundation.AVDepthDataAccuracy
T:AVFoundation.AVDepthDataQuality
-T:AVFoundation.AVDisplayCriteria
T:AVFoundation.AVEdgeWidths
T:AVFoundation.AVError
T:AVFoundation.AVErrorEventArgs
T:AVFoundation.AVErrorKeys
-T:AVFoundation.AVExposureBiasRange
T:AVFoundation.AVExtendedNoteOnEvent
T:AVFoundation.AVExtendedTempoEvent
T:AVFoundation.AVExternalContentProtectionStatus
-T:AVFoundation.AVExternalStorageDevice
-T:AVFoundation.AVExternalStorageDeviceDiscoverySession
T:AVFoundation.AVExternalStorageDeviceRequestAccessCallback
T:AVFoundation.AVFileTypeProfile
T:AVFoundation.AVFileTypes
-T:AVFoundation.AVFragmentedAsset
T:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection
-T:AVFoundation.AVFragmentedAssetMinder
-T:AVFoundation.AVFragmentedAssetTrack
-T:AVFoundation.AVFragmentedMovie
T:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection
-T:AVFoundation.AVFragmentedMovieMinder
-T:AVFoundation.AVFragmentedMovieTrack
T:AVFoundation.AVKeyValueStatus
T:AVFoundation.AVLayerVideoGravity
T:AVFoundation.AVMediaCharacteristics
-T:AVFoundation.AVMediaDataStorage
-T:AVFoundation.AVMediaExtensionProperties
-T:AVFoundation.AVMediaSelection
-T:AVFoundation.AVMediaSelectionGroup
-T:AVFoundation.AVMediaSelectionOption
T:AVFoundation.AVMediaTypes
T:AVFoundation.AVMetadata
-T:AVFoundation.AVMetadataBodyObject
-T:AVFoundation.AVMetadataCatBodyObject
-T:AVFoundation.AVMetadataDogBodyObject
T:AVFoundation.AVMetadataExtraAttribute
-T:AVFoundation.AVMetadataFaceObject
T:AVFoundation.AVMetadataFormat
-T:AVFoundation.AVMetadataGroup
-T:AVFoundation.AVMetadataHumanBodyObject
-T:AVFoundation.AVMetadataHumanFullBodyObject
T:AVFoundation.AVMetadataIdentifiers
T:AVFoundation.AVMetadataIdentifiers.CommonIdentifier
T:AVFoundation.AVMetadataIdentifiers.IcyMetadata
@@ -104955,29 +67920,7 @@ T:AVFoundation.AVMetadataIdentifiers.iTunesMetadata
T:AVFoundation.AVMetadataIdentifiers.QuickTime
T:AVFoundation.AVMetadataIdentifiers.QuickTimeMetadata
T:AVFoundation.AVMetadataIdentifiers.ThreeGP
-T:AVFoundation.AVMetadataItem
-T:AVFoundation.AVMetadataItemFilter
-T:AVFoundation.AVMetadataItemValueRequest
-T:AVFoundation.AVMetadataMachineReadableCodeObject
-T:AVFoundation.AVMetadataObject
T:AVFoundation.AVMetadataObjectType
-T:AVFoundation.AVMetadataSalientObject
-T:AVFoundation.AVMetricContentKeyRequestEvent
-T:AVFoundation.AVMetricErrorEvent
-T:AVFoundation.AVMetricEvent
-T:AVFoundation.AVMetricEventStream
-T:AVFoundation.AVMetricHlsMediaSegmentRequestEvent
-T:AVFoundation.AVMetricHlsPlaylistRequestEvent
-T:AVFoundation.AVMetricMediaResourceRequestEvent
-T:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent
-T:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent
-T:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent
-T:AVFoundation.AVMetricPlayerItemRateChangeEvent
-T:AVFoundation.AVMetricPlayerItemSeekDidCompleteEvent
-T:AVFoundation.AVMetricPlayerItemSeekEvent
-T:AVFoundation.AVMetricPlayerItemStallEvent
-T:AVFoundation.AVMetricPlayerItemVariantSwitchEvent
-T:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent
T:AVFoundation.AVMidiChannelEvent
T:AVFoundation.AVMidiChannelPressureEvent
T:AVFoundation.AVMidiControlChangeEvent
@@ -104990,10 +67933,8 @@ T:AVFoundation.AVMidiPlayer
T:AVFoundation.AVMidiPolyPressureEvent
T:AVFoundation.AVMidiProgramChangeEvent
T:AVFoundation.AVMidiSysexEvent
-T:AVFoundation.AVMovie
T:AVFoundation.AVMovie_AVMovieMovieHeaderSupport
T:AVFoundation.AVMovie_AVMovieTrackInspection
-T:AVFoundation.AVMovieTrack
T:AVFoundation.AVMovieWritingOptions
T:AVFoundation.AVMusicEvent
T:AVFoundation.AVMusicEventEnumerationBlock
@@ -105001,117 +67942,60 @@ T:AVFoundation.AVMusicSequenceLoadOptions
T:AVFoundation.AVMusicTrack
T:AVFoundation.AVMusicTrackLoopCount
T:AVFoundation.AVMusicUserEvent
-T:AVFoundation.AVMutableAssetDownloadStorageManagementPolicy
-T:AVFoundation.AVMutableAudioMix
-T:AVFoundation.AVMutableAudioMixInputParameters
-T:AVFoundation.AVMutableCaption
-T:AVFoundation.AVMutableCaptionRegion
-T:AVFoundation.AVMutableComposition
T:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection
T:AVFoundation.AVMutableCompositionInsertHandler
-T:AVFoundation.AVMutableCompositionTrack
-T:AVFoundation.AVMutableDateRangeMetadataGroup
-T:AVFoundation.AVMutableMediaSelection
-T:AVFoundation.AVMutableMetadataItem
-T:AVFoundation.AVMutableMovie
T:AVFoundation.AVMutableMovie_AVMutableMovieMovieLevelEditing
T:AVFoundation.AVMutableMovie_AVMutableMovieTrackInspection
T:AVFoundation.AVMutableMovie_AVMutableMovieTrackLevelEditing
-T:AVFoundation.AVMutableMovieTrack
T:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrack_TrackLevelEditing
T:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrackTrackAssociations
-T:AVFoundation.AVMutableTimedMetadataGroup
-T:AVFoundation.AVMutableVideoComposition
T:AVFoundation.AVMutableVideoCompositionCreateApplier
T:AVFoundation.AVMutableVideoCompositionCreateCallback
-T:AVFoundation.AVMutableVideoCompositionInstruction
-T:AVFoundation.AVMutableVideoCompositionLayerInstruction
-T:AVFoundation.AVOutputSettingsAssistant
T:AVFoundation.AVOutputSettingsPreset
T:AVFoundation.AVParameterEvent
-T:AVFoundation.AVPersistableContentKeyRequest
T:AVFoundation.AVPixelAspectRatio
T:AVFoundation.AVPixelAspectRatioProperties
-T:AVFoundation.AVPlaybackCoordinator
T:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate
-T:AVFoundation.AVPlayer
T:AVFoundation.AVPlayerActionAtItemEnd
T:AVFoundation.AVPlayerAudiovisualBackgroundPlaybackPolicy
T:AVFoundation.AVPlayerHdrMode
T:AVFoundation.AVPlayerIntegratedTimelineSnapshotsOutOfSyncReason
-T:AVFoundation.AVPlayerInterstitialEvent
T:AVFoundation.AVPlayerInterstitialEventAssetListResponseStatus
-T:AVFoundation.AVPlayerInterstitialEventController
T:AVFoundation.AVPlayerInterstitialEventCue
-T:AVFoundation.AVPlayerInterstitialEventMonitor
T:AVFoundation.AVPlayerInterstitialEventRestrictions
T:AVFoundation.AVPlayerInterstitialEventTimelineOccupancy
-T:AVFoundation.AVPlayerItem
T:AVFoundation.AVPlayerItem_AVPlaybackRestrictions
T:AVFoundation.AVPlayerItem_AVPlayerInterstitialSupport
T:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent
-T:AVFoundation.AVPlayerItemAccessLog
-T:AVFoundation.AVPlayerItemAccessLogEvent
T:AVFoundation.AVPlayerItemErrorEventArgs
-T:AVFoundation.AVPlayerItemErrorLog
-T:AVFoundation.AVPlayerItemErrorLogEvent
-T:AVFoundation.AVPlayerItemIntegratedTimeline
T:AVFoundation.AVPlayerItemIntegratedTimelineAddBoundaryTimeObserverCallback
T:AVFoundation.AVPlayerItemIntegratedTimelineAddPeriodicTimeObserverCallback
T:AVFoundation.AVPlayerItemIntegratedTimelineSeekCallback
-T:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot
-T:AVFoundation.AVPlayerItemLegibleOutput
T:AVFoundation.AVPlayerItemLegibleOutputPushDelegate
-T:AVFoundation.AVPlayerItemMediaDataCollector
-T:AVFoundation.AVPlayerItemMetadataCollector
T:AVFoundation.AVPlayerItemMetadataCollectorPushDelegate
-T:AVFoundation.AVPlayerItemMetadataOutput
T:AVFoundation.AVPlayerItemMetadataOutputPushDelegate
-T:AVFoundation.AVPlayerItemOutput
T:AVFoundation.AVPlayerItemOutputPullDelegate
T:AVFoundation.AVPlayerItemOutputPushDelegate
-T:AVFoundation.AVPlayerItemRenderedLegibleOutput
T:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegate
-T:AVFoundation.AVPlayerItemSegment
T:AVFoundation.AVPlayerItemSegmentType
T:AVFoundation.AVPlayerItemStatus
T:AVFoundation.AVPlayerItemTimeJumpedEventArgs
-T:AVFoundation.AVPlayerItemTrack
-T:AVFoundation.AVPlayerItemVideoOutput
T:AVFoundation.AVPlayerItemVideoOutputSettings
-T:AVFoundation.AVPlayerLayer
-T:AVFoundation.AVPlayerLooper
T:AVFoundation.AVPlayerLooperItemOrdering
T:AVFoundation.AVPlayerLooperStatus
-T:AVFoundation.AVPlayerMediaSelectionCriteria
-T:AVFoundation.AVPlayerPlaybackCoordinator
T:AVFoundation.AVPlayerPlaybackCoordinatorDelegate
T:AVFoundation.AVPlayerRateDidChangeEventArgs
T:AVFoundation.AVPlayerRateDidChangeReason
T:AVFoundation.AVPlayerStatus
T:AVFoundation.AVPlayerTimeControlStatus
-T:AVFoundation.AVPlayerVideoOutput
-T:AVFoundation.AVPlayerVideoOutputConfiguration
T:AVFoundation.AVPlayerViewControllerSkippingBehavior
T:AVFoundation.AVPlayerWaitingReason
-T:AVFoundation.AVPortraitEffectsMatte
T:AVFoundation.AVQueuedSampleBufferRenderingStatus
-T:AVFoundation.AVQueuePlayer
-T:AVFoundation.AVRenderedCaptionImage
-T:AVFoundation.AVRouteDetector
-T:AVFoundation.AVSampleBufferAudioRenderer
-T:AVFoundation.AVSampleBufferDisplayLayer
T:AVFoundation.AVSampleBufferDisplayLayer_ProtectedContent
-T:AVFoundation.AVSampleBufferGenerator
-T:AVFoundation.AVSampleBufferGeneratorBatch
T:AVFoundation.AVSampleBufferGeneratorBatchMakeReadyCallback
-T:AVFoundation.AVSampleBufferRenderSynchronizer
-T:AVFoundation.AVSampleBufferRequest
T:AVFoundation.AVSampleBufferRequestDirection
T:AVFoundation.AVSampleBufferRequestMode
-T:AVFoundation.AVSampleBufferVideoRenderer
T:AVFoundation.AVSampleBufferVideoRendererLoadVideoPerformanceMetricsCallback
-T:AVFoundation.AVSampleCursor
T:AVFoundation.AVSampleCursorAudioDependencyInfo
T:AVFoundation.AVSampleCursorChunkInfo
T:AVFoundation.AVSampleCursorDependencyInfo
@@ -105119,7 +68003,6 @@ T:AVFoundation.AVSampleCursorStorageRange
T:AVFoundation.AVSampleCursorSyncInfo
T:AVFoundation.AVSampleRateConverterAlgorithm
T:AVFoundation.AVSampleRateEventArgs
-T:AVFoundation.AVSemanticSegmentationMatte
T:AVFoundation.AVSemanticSegmentationMatteType
T:AVFoundation.AVSpatialCaptureDiscomfortReason
T:AVFoundation.AVSpeechBoundary
@@ -105145,10 +68028,6 @@ T:AVFoundation.AVSpeechSynthesizerWillSpeakMarkerEventArgs
T:AVFoundation.AVSpeechUtterance
T:AVFoundation.AVStatusEventArgs
T:AVFoundation.AVStreamingKeyDelivery
-T:AVFoundation.AVSynchronizedLayer
-T:AVFoundation.AVTextStyleRule
-T:AVFoundation.AVTimedMetadataGroup
-T:AVFoundation.AVUrlAsset
T:AVFoundation.AVUrlAssetOptions
T:AVFoundation.AVUtilities
T:AVFoundation.AVVariantPreferences
@@ -105160,20 +68039,12 @@ T:AVFoundation.AVVideoCodecSettings
T:AVFoundation.AVVideoCodecType
T:AVFoundation.AVVideoColorPrimaries
T:AVFoundation.AVVideoCompositing
-T:AVFoundation.AVVideoComposition
-T:AVFoundation.AVVideoCompositionCoreAnimationTool
T:AVFoundation.AVVideoCompositionCreateApplier
T:AVFoundation.AVVideoCompositionCreateCallback
T:AVFoundation.AVVideoCompositionDetermineValidityCallback
-T:AVFoundation.AVVideoCompositionInstruction
-T:AVFoundation.AVVideoCompositionLayerInstruction
T:AVFoundation.AVVideoCompositionPerFrameHdrDisplayMetadataPolicy
-T:AVFoundation.AVVideoCompositionRenderContext
-T:AVFoundation.AVVideoCompositionRenderHint
T:AVFoundation.AVVideoCompositionValidationHandling
T:AVFoundation.AVVideoH264EntropyMode
-T:AVFoundation.AVVideoOutputSpecification
-T:AVFoundation.AVVideoPerformanceMetrics
T:AVFoundation.AVVideoPixelAspectRatioSettings
T:AVFoundation.AVVideoProfileLevelH264
T:AVFoundation.AVVideoRange
@@ -105183,7 +68054,6 @@ T:AVFoundation.AVVideoSettingsCompressed
T:AVFoundation.AVVideoSettingsUncompressed
T:AVFoundation.AVVideoTransferFunction
T:AVFoundation.AVVideoYCbCrMatrix
-T:AVFoundation.AVZoomRange
T:AVFoundation.CMTagCollectionVideoOutputPreset
T:AVFoundation.CMTagCollectionVideoOutputPreset_Extensions
T:AVFoundation.IAVAssetReaderCaptionValidationHandling
@@ -105221,31 +68091,18 @@ T:AVFoundation.RenderingModeChangeNotificationEventArgs
T:AVFoundation.SpatialPlaybackCapabilitiesChangedEventArgs
T:AVKit.AVAudioSession_AVPlaybackRouteSelecting
T:AVKit.AVAudioSessionRouteSelection
-T:AVKit.AVCaptureEvent
-T:AVKit.AVCaptureEventInteraction
T:AVKit.AVCaptureEventPhase
-T:AVKit.AVCaptureView
T:AVKit.AVCaptureViewControlsStyle
T:AVKit.AVCaptureViewDelegate
-T:AVKit.AVContentProposalViewController
-T:AVKit.AVContinuityDevicePickerViewController
T:AVKit.AVContinuityDevicePickerViewControllerDelegate
T:AVKit.AVCustomRoutingControllerDelegate
T:AVKit.AVCustomRoutingControllerDelegateCompletionHandler
-T:AVKit.AVDisplayManager
-T:AVKit.AVInterstitialTimeRange
T:AVKit.AVKitError
T:AVKit.AVKitMetadataIdentifier
-T:AVKit.AVNavigationMarkersGroup
-T:AVKit.AVPictureInPictureControllerContentSource
T:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate
-T:AVKit.AVPictureInPictureVideoCallViewController
-T:AVKit.AVPlaybackSpeed
-T:AVKit.AVPlayerView
T:AVKit.AVPlayerViewDelegate
T:AVKit.AVPlayerViewPictureInPictureDelegate
T:AVKit.AVPlayerViewTrimResult
-T:AVKit.AVRoutePickerView
T:AVKit.AVRoutePickerViewButtonState
T:AVKit.AVRoutePickerViewButtonStyle
T:AVKit.AVRoutePickerViewDelegate
@@ -105260,12 +68117,7 @@ T:AVKit.IAVPlayerViewPictureInPictureDelegate
T:AVKit.IAVRoutePickerViewDelegate
T:AVKit.PreparingRouteSelectionForPlayback
T:AVKit.UIWindow_AVAdditions
-T:AVRouting.AVCustomDeviceRoute
-T:AVRouting.AVCustomRoutingActionItem
-T:AVRouting.AVCustomRoutingController
-T:AVRouting.AVCustomRoutingEvent
T:AVRouting.AVCustomRoutingEventReason
-T:AVRouting.AVCustomRoutingPartialIP
T:BackgroundAssets.BAAppExtensionInfo
T:BackgroundAssets.BAContentRequest
T:BackgroundAssets.BADownload
@@ -105289,56 +68141,30 @@ T:BackgroundTasks.BGTaskSchedulerErrorCode
T:BrowserEngineKit.BEAccessibilityContainerType
T:BrowserEngineKit.BEAccessibilityNotification
T:BrowserEngineKit.BEAccessibilityPressedState
-T:BrowserEngineKit.BEAccessibilityTextMarker
-T:BrowserEngineKit.BEAccessibilityTextMarkerRange
T:BrowserEngineKit.BEAccessibilityTrait
-T:BrowserEngineKit.BEAutoFillTextSuggestion
-T:BrowserEngineKit.BEContextMenuConfiguration
T:BrowserEngineKit.BEDirectionalTextRange
-T:BrowserEngineKit.BEDownloadMonitor
T:BrowserEngineKit.BEDownloadMonitorBeginMonitoringCallback
-T:BrowserEngineKit.BEDownloadMonitorLocation
T:BrowserEngineKit.BEDownloadMonitorResumeMonitoringCallback
T:BrowserEngineKit.BEDownloadMonitorUseDownloadsFolderCallback
-T:BrowserEngineKit.BEDragInteraction
T:BrowserEngineKit.BEDragInteractionDelegate
T:BrowserEngineKit.BEDragInteractionDelegateGetDragItemsCallback
T:BrowserEngineKit.BEGestureType
-T:BrowserEngineKit.BEKeyEntry
-T:BrowserEngineKit.BEKeyEntryContext
T:BrowserEngineKit.BEKeyModifierFlags
T:BrowserEngineKit.BEKeyPressState
-T:BrowserEngineKit.BELayerHierarchy
-T:BrowserEngineKit.BELayerHierarchyHandle
-T:BrowserEngineKit.BELayerHierarchyHostingTransactionCoordinator
-T:BrowserEngineKit.BELayerHierarchyHostingView
-T:BrowserEngineKit.BEMediaEnvironment
-T:BrowserEngineKit.BENetworkingProcess
T:BrowserEngineKit.BENetworkingProcessCreateCallback
-T:BrowserEngineKit.BEProcessCapability
-T:BrowserEngineKit.BERenderingProcess
T:BrowserEngineKit.BERenderingProcessCreateCallback
-T:BrowserEngineKit.BEScrollView
T:BrowserEngineKit.BEScrollViewDelegate
-T:BrowserEngineKit.BEScrollViewScrollUpdate
T:BrowserEngineKit.BEScrollViewScrollUpdatePhase
T:BrowserEngineKit.BESelectionFlags
T:BrowserEngineKit.BESelectionTouchPhase
-T:BrowserEngineKit.BETextAlternatives
-T:BrowserEngineKit.BETextDocumentContext
-T:BrowserEngineKit.BETextDocumentRequest
T:BrowserEngineKit.BETextDocumentRequestOptions
T:BrowserEngineKit.BETextInputDelegate
T:BrowserEngineKit.BETextInputHandleKeyEntryCallback
T:BrowserEngineKit.BETextInputReplaceTextCallback
T:BrowserEngineKit.BETextInputRequestTextContextForAutocorrectionCallback
T:BrowserEngineKit.BETextInputRequestTextRectsCallback
-T:BrowserEngineKit.BETextInteraction
T:BrowserEngineKit.BETextInteractionDelegate
T:BrowserEngineKit.BETextReplacementOptions
-T:BrowserEngineKit.BETextSuggestion
-T:BrowserEngineKit.BEWebAppManifest
-T:BrowserEngineKit.BEWebContentProcess
T:BrowserEngineKit.BEWebContentProcessCreateCallback
T:BrowserEngineKit.IBEAccessibilityTextMarkerSupport
T:BrowserEngineKit.IBEDragInteractionDelegate
@@ -105356,79 +68182,37 @@ T:BusinessChat.BCChatButton
T:BusinessChat.BCChatButtonStyle
T:BusinessChat.BCParameterName
T:CallKit.CXErrorCodeNotificationServiceExtensionError
-T:CarPlay.CPActionSheetTemplate
-T:CarPlay.CPAlertTemplate
T:CarPlay.CPAssistantCellActionType
-T:CarPlay.CPAssistantCellConfiguration
T:CarPlay.CPAssistantCellPosition
T:CarPlay.CPAssistantCellVisibility
T:CarPlay.CPBarButtonHandler
T:CarPlay.CPBarButtonStyle
-T:CarPlay.CPButton
-T:CarPlay.CPContact
-T:CarPlay.CPContactCallButton
-T:CarPlay.CPContactDirectionsButton
-T:CarPlay.CPContactMessageButton
-T:CarPlay.CPContactTemplate
T:CarPlay.CPContentStyle
-T:CarPlay.CPDashboardButton
-T:CarPlay.CPDashboardController
-T:CarPlay.CPImageSet
-T:CarPlay.CPInformationItem
-T:CarPlay.CPInformationRatingItem
-T:CarPlay.CPInformationTemplate
T:CarPlay.CPInformationTemplateLayout
-T:CarPlay.CPInstrumentClusterController
T:CarPlay.CPInstrumentClusterControllerDelegate
T:CarPlay.CPInstrumentClusterSetting
T:CarPlay.CPJunctionType
-T:CarPlay.CPLane
-T:CarPlay.CPLaneGuidance
T:CarPlay.CPLaneStatus
-T:CarPlay.CPListImageRowItem
T:CarPlay.CPListImageRowItemHandler
T:CarPlay.CPListItemAccessoryType
T:CarPlay.CPListItemPlayingIndicatorLocation
T:CarPlay.CPManeuverDisplayStyle
T:CarPlay.CPManeuverState
T:CarPlay.CPManeuverType
-T:CarPlay.CPMessageComposeBarButton
T:CarPlay.CPMessageLeadingItem
-T:CarPlay.CPMessageListItem
-T:CarPlay.CPMessageListItemLeadingConfiguration
-T:CarPlay.CPMessageListItemTrailingConfiguration
T:CarPlay.CPMessageListItemType
T:CarPlay.CPMessageTrailingItem
-T:CarPlay.CPNowPlayingAddToLibraryButton
-T:CarPlay.CPNowPlayingButton
-T:CarPlay.CPNowPlayingImageButton
-T:CarPlay.CPNowPlayingMoreButton
-T:CarPlay.CPNowPlayingPlaybackRateButton
-T:CarPlay.CPNowPlayingRepeatButton
-T:CarPlay.CPNowPlayingShuffleButton
-T:CarPlay.CPNowPlayingTemplate
-T:CarPlay.CPPointOfInterest
-T:CarPlay.CPPointOfInterestTemplate
T:CarPlay.CPPointOfInterestTemplateDelegate
-T:CarPlay.CPRouteInformation
T:CarPlay.CPSearchTemplateDelegateUpdateHandler
T:CarPlay.CPSelectableListItemHandler
-T:CarPlay.CPTabBarTemplate
T:CarPlay.CPTabBarTemplateDelegate
-T:CarPlay.CPTemplateApplicationDashboardScene
T:CarPlay.CPTemplateApplicationDashboardSceneDelegate
-T:CarPlay.CPTemplateApplicationInstrumentClusterScene
T:CarPlay.CPTemplateApplicationInstrumentClusterSceneDelegate
-T:CarPlay.CPTemplateApplicationScene
T:CarPlay.CPTemplateApplicationSceneDelegate
-T:CarPlay.CPTextButton
T:CarPlay.CPTextButtonStyle
T:CarPlay.CPTimeRemainingColor
T:CarPlay.CPTrafficSide
T:CarPlay.CPTripEstimateStyle
-T:CarPlay.CPTripPreviewTextConfiguration
-T:CarPlay.CPVoiceControlState
-T:CarPlay.CPWindow
T:CarPlay.ICPBarButtonProviding
T:CarPlay.ICPInstrumentClusterControllerDelegate
T:CarPlay.ICPListTemplateItem
@@ -105441,170 +68225,56 @@ T:CarPlay.ICPTemplateApplicationInstrumentClusterSceneDelegate
T:CarPlay.ICPTemplateApplicationSceneDelegate
T:CFNetwork.CFHTTPAuthentication
T:CFNetwork.CFHTTPMessage.AuthenticationScheme
-T:Cinematic.CNAssetInfo
-T:Cinematic.CNBoundsPrediction
T:Cinematic.CNCinematicErrorCode
-T:Cinematic.CNCompositionInfo
-T:Cinematic.CNCustomDetectionTrack
-T:Cinematic.CNDecision
T:Cinematic.CNDecisionIdentifierType
-T:Cinematic.CNDetection
-T:Cinematic.CNDetectionTrack
T:Cinematic.CNDetectionType
-T:Cinematic.CNFixedDetectionTrack
-T:Cinematic.CNObjectTracker
T:Cinematic.CNRenderingQuality
-T:Cinematic.CNRenderingSession
-T:Cinematic.CNRenderingSessionAttributes
-T:Cinematic.CNRenderingSessionFrameAttributes
-T:Cinematic.CNScript
-T:Cinematic.CNScriptChanges
-T:Cinematic.CNScriptFrame
-T:ClassKit.CLSBinaryItem
-T:ClassKit.CLSProgressReportingCapability
T:ClassKit.CLSProgressReportingCapabilityKind
T:ClassKit.ICLSContextProvider
T:CloudKit.CKAcceptPerShareCompletionHandler
-T:CloudKit.CKAcceptSharesOperation
-T:CloudKit.CKAllowedSharingOptions
-T:CloudKit.CKAsset
-T:CloudKit.CKContainer
-T:CloudKit.CKDatabase
T:CloudKit.CKDatabaseDeleteSubscriptionHandler
-T:CloudKit.CKDatabaseNotification
-T:CloudKit.CKDatabaseOperation
-T:CloudKit.CKDatabaseSubscription
-T:CloudKit.CKDiscoverUserIdentitiesOperation
T:CloudKit.CKErrorFields
T:CloudKit.CKFetchDatabaseChangesCompletionHandler
-T:CloudKit.CKFetchDatabaseChangesOperation
T:CloudKit.CKFetchPerShareMetadataHandler
T:CloudKit.CKFetchRecordChangesHandler
-T:CloudKit.CKFetchRecordChangesOperation
T:CloudKit.CKFetchRecordsCompletedHandler
-T:CloudKit.CKFetchRecordsOperation
-T:CloudKit.CKFetchRecordZoneChangesConfiguration
T:CloudKit.CKFetchRecordZoneChangesFetchCompletedHandler
-T:CloudKit.CKFetchRecordZoneChangesOperation
-T:CloudKit.CKFetchRecordZoneChangesOptions
T:CloudKit.CKFetchRecordZoneChangesRecordWasChangedHandler
T:CloudKit.CKFetchRecordZoneChangesTokensUpdatedHandler
T:CloudKit.CKFetchRecordZoneChangesWithIDWasDeletedHandler
-T:CloudKit.CKFetchRecordZonesOperation
-T:CloudKit.CKFetchShareMetadataOperation
-T:CloudKit.CKFetchShareParticipantsOperation
T:CloudKit.CKFetchShareParticipantsOperationPerShareParticipantCompletionHandler
T:CloudKit.CKFetchSubscriptionsCompleteHandler
-T:CloudKit.CKFetchSubscriptionsOperation
T:CloudKit.CKFetchSubscriptionsPerSubscriptionCompletionHandler
-T:CloudKit.CKFetchWebAuthTokenOperation
T:CloudKit.CKFetchWebAuthTokenOperationHandler
-T:CloudKit.CKLocationSortDescriptor
-T:CloudKit.CKModifyRecordsOperation
T:CloudKit.CKModifyRecordsOperationHandler
T:CloudKit.CKModifyRecordsOperationPerRecordDeleteHandler
T:CloudKit.CKModifyRecordsOperationPerRecordSaveHandler
T:CloudKit.CKModifyRecordZonesHandler
-T:CloudKit.CKModifyRecordZonesOperation
T:CloudKit.CKModifyRecordZonesPerRecordZoneDeleteHandler
T:CloudKit.CKModifyRecordZonesPerRecordZoneSaveHandler
T:CloudKit.CKModifySubscriptionsHandler
-T:CloudKit.CKModifySubscriptionsOperation
T:CloudKit.CKModifySubscriptionsPerSubscriptionDeleteHandler
T:CloudKit.CKModifySubscriptionsPerSubscriptionSaveHandler
-T:CloudKit.CKNotification
-T:CloudKit.CKNotificationID
-T:CloudKit.CKNotificationInfo
-T:CloudKit.CKOperation
-T:CloudKit.CKOperationConfiguration
-T:CloudKit.CKOperationGroup
T:CloudKit.CKOperationGroupTransferSize
-T:CloudKit.CKQuery
-T:CloudKit.CKQueryCursor
-T:CloudKit.CKQueryNotification
-T:CloudKit.CKQueryOperation
T:CloudKit.CKQueryOperationRecordMatchedHandler
-T:CloudKit.CKQuerySubscription
-T:CloudKit.CKRecord
-T:CloudKit.CKRecordID
T:CloudKit.CKRecordValue
-T:CloudKit.CKRecordZone
T:CloudKit.CKRecordZoneCompleteHandler
-T:CloudKit.CKRecordZoneID
-T:CloudKit.CKRecordZoneNotification
T:CloudKit.CKRecordZonePerRecordZoneCompletionHandler
-T:CloudKit.CKRecordZoneSubscription
-T:CloudKit.CKReference
-T:CloudKit.CKServerChangeToken
-T:CloudKit.CKShare
T:CloudKit.CKShareKeys
-T:CloudKit.CKShareMetadata
-T:CloudKit.CKShareParticipant
T:CloudKit.CKShareParticipantRole
T:CloudKit.CKSharingParticipantAccessOption
T:CloudKit.CKSharingParticipantPermissionOption
-T:CloudKit.CKSubscription
-T:CloudKit.CKSyncEngine
-T:CloudKit.CKSyncEngineAccountChangeEvent
T:CloudKit.CKSyncEngineAccountChangeType
-T:CloudKit.CKSyncEngineConfiguration
T:CloudKit.CKSyncEngineDelegate
-T:CloudKit.CKSyncEngineDidFetchChangesEvent
-T:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent
-T:CloudKit.CKSyncEngineDidSendChangesEvent
-T:CloudKit.CKSyncEngineEvent
T:CloudKit.CKSyncEngineEventType
-T:CloudKit.CKSyncEngineFailedRecordSave
-T:CloudKit.CKSyncEngineFailedZoneSave
-T:CloudKit.CKSyncEngineFetchChangesContext
-T:CloudKit.CKSyncEngineFetchChangesOptions
-T:CloudKit.CKSyncEngineFetchChangesScope
-T:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent
-T:CloudKit.CKSyncEngineFetchedRecordDeletion
-T:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent
-T:CloudKit.CKSyncEngineFetchedZoneDeletion
-T:CloudKit.CKSyncEnginePendingDatabaseChange
T:CloudKit.CKSyncEnginePendingDatabaseChangeType
-T:CloudKit.CKSyncEnginePendingRecordZoneChange
T:CloudKit.CKSyncEnginePendingRecordZoneChangeType
-T:CloudKit.CKSyncEnginePendingZoneDelete
-T:CloudKit.CKSyncEnginePendingZoneSave
-T:CloudKit.CKSyncEngineRecordZoneChangeBatch
-T:CloudKit.CKSyncEngineSendChangesContext
-T:CloudKit.CKSyncEngineSendChangesOptions
-T:CloudKit.CKSyncEngineSendChangesScope
-T:CloudKit.CKSyncEngineSentDatabaseChangesEvent
-T:CloudKit.CKSyncEngineSentRecordZoneChangesEvent
-T:CloudKit.CKSyncEngineState
-T:CloudKit.CKSyncEngineStateSerialization
-T:CloudKit.CKSyncEngineStateUpdateEvent
T:CloudKit.CKSyncEngineSyncReason
-T:CloudKit.CKSyncEngineWillFetchChangesEvent
-T:CloudKit.CKSyncEngineWillFetchRecordZoneChangesEvent
-T:CloudKit.CKSyncEngineWillSendChangesEvent
T:CloudKit.CKSyncEngineZoneDeletionReason
-T:CloudKit.CKSystemSharingUIObserver
-T:CloudKit.CKUserIdentity
-T:CloudKit.CKUserIdentityLookupInfo
T:CloudKit.ICKRecordValue
T:CloudKit.ICKSyncEngineDelegate
T:Compression.CompressionStream
-T:Contacts.CNChangeHistoryAddContactEvent
-T:Contacts.CNChangeHistoryAddGroupEvent
-T:Contacts.CNChangeHistoryAddMemberToGroupEvent
-T:Contacts.CNChangeHistoryAddSubgroupToGroupEvent
-T:Contacts.CNChangeHistoryDeleteContactEvent
-T:Contacts.CNChangeHistoryDeleteGroupEvent
-T:Contacts.CNChangeHistoryDropEverythingEvent
-T:Contacts.CNChangeHistoryEvent
-T:Contacts.CNChangeHistoryFetchRequest
-T:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent
-T:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent
-T:Contacts.CNChangeHistoryUpdateContactEvent
-T:Contacts.CNChangeHistoryUpdateGroupEvent
T:Contacts.CNContactStoreListContactsHandler
-T:Contacts.CNFetchRequest
-T:Contacts.CNFetchResult`1
T:Contacts.CNInstantMessageAddressOption
T:Contacts.CNInstantMessageServiceOption
T:Contacts.CNSocialProfileOption
@@ -105634,15 +68304,8 @@ T:CoreAnimation.CATextLayerTruncationMode
T:CoreAnimation.CAToneMapMode
T:CoreAnimation.CATransform3D
T:CoreAnimation.ICAMetalDisplayLinkDelegate
-T:CoreAudioKit.AUAudioUnitViewConfiguration
T:CoreAudioKit.AUAudioUnitViewControllerExtensions
-T:CoreAudioKit.AUGenericView
-T:CoreAudioKit.AUGenericViewController
T:CoreAudioKit.AUGenericViewDisplayFlags
-T:CoreAudioKit.AUPannerView
-T:CoreAudioKit.CABtleMidiWindowController
-T:CoreAudioKit.CAInterDeviceAudioViewController
-T:CoreAudioKit.CANetworkBrowserWindowController
T:CoreAudioKit.IAUCustomViewPersistentData
T:CoreBluetooth.AdvertisementData
T:CoreBluetooth.CBAncsAuthorizationUpdateEventArgs
@@ -106302,7 +68965,6 @@ T:CoreLocation.CLUpdate
T:CoreLocation.CLVisitedEventArgs
T:CoreLocation.ICLLocationManagerDelegate
T:CoreLocation.ICLLocationPushServiceExtension
-T:CoreLocationUI.CLLocationButton
T:CoreLocationUI.CLLocationButtonIcon
T:CoreLocationUI.CLLocationButtonLabel
T:CoreMedia.CMAttachmentBearer
@@ -106772,54 +69434,21 @@ T:CryptoTokenKit.ITKSmartCardUserInteractionDelegate
T:CryptoTokenKit.ITKTokenDelegate
T:CryptoTokenKit.ITKTokenDriverDelegate
T:CryptoTokenKit.ITKTokenSessionDelegate
-T:CryptoTokenKit.TKBerTlvRecord
-T:CryptoTokenKit.TKCompactTlvRecord
T:CryptoTokenKit.TKErrorCode
T:CryptoTokenKit.TKGetSlotCallback
-T:CryptoTokenKit.TKSimpleTlvRecord
-T:CryptoTokenKit.TKSmartCard
-T:CryptoTokenKit.TKSmartCardAtr
-T:CryptoTokenKit.TKSmartCardAtrInterfaceGroup
T:CryptoTokenKit.TKSmartCardExecuteCallback
T:CryptoTokenKit.TKSmartCardPinCharset
T:CryptoTokenKit.TKSmartCardPinCompletion
T:CryptoTokenKit.TKSmartCardPinConfirmation
T:CryptoTokenKit.TKSmartCardPinEncoding
-T:CryptoTokenKit.TKSmartCardPinFormat
T:CryptoTokenKit.TKSmartCardPinJustification
T:CryptoTokenKit.TKSmartCardProtocol
T:CryptoTokenKit.TKSmartCardSendCallback
-T:CryptoTokenKit.TKSmartCardSlot
-T:CryptoTokenKit.TKSmartCardSlotManager
T:CryptoTokenKit.TKSmartCardSlotState
-T:CryptoTokenKit.TKSmartCardToken
-T:CryptoTokenKit.TKSmartCardTokenDriver
-T:CryptoTokenKit.TKSmartCardTokenSession
-T:CryptoTokenKit.TKSmartCardUserInteraction
-T:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation
-T:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinChange
-T:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinVerification
-T:CryptoTokenKit.TKTlvRecord
-T:CryptoTokenKit.TKToken
-T:CryptoTokenKit.TKTokenAuthOperation
-T:CryptoTokenKit.TKTokenConfiguration
T:CryptoTokenKit.TKTokenDelegate
-T:CryptoTokenKit.TKTokenDriver
-T:CryptoTokenKit.TKTokenDriverConfiguration
T:CryptoTokenKit.TKTokenDriverDelegate
-T:CryptoTokenKit.TKTokenKeyAlgorithm
-T:CryptoTokenKit.TKTokenKeychainCertificate
-T:CryptoTokenKit.TKTokenKeychainContents
-T:CryptoTokenKit.TKTokenKeychainItem
-T:CryptoTokenKit.TKTokenKeychainKey
-T:CryptoTokenKit.TKTokenKeyExchangeParameters
T:CryptoTokenKit.TKTokenOperation
-T:CryptoTokenKit.TKTokenPasswordAuthOperation
-T:CryptoTokenKit.TKTokenSession
T:CryptoTokenKit.TKTokenSessionDelegate
-T:CryptoTokenKit.TKTokenSmartCardPinAuthOperation
-T:CryptoTokenKit.TKTokenWatcher
-T:CryptoTokenKit.TKTokenWatcherTokenInfo
T:Darwin.EventFilter
T:Darwin.EventFlags
T:Darwin.FilterFlags
@@ -106831,28 +69460,19 @@ T:Darwin.Message.Op
T:Darwin.SystemLog
T:Darwin.SystemLog.Option
T:Darwin.TimeSpec
-T:DeviceCheck.DCAppAttestService
T:DeviceCheck.DCError
-T:DeviceDiscoveryExtension.DDDevice
T:DeviceDiscoveryExtension.DDDeviceCategory
-T:DeviceDiscoveryExtension.DDDeviceEvent
T:DeviceDiscoveryExtension.DDDeviceMediaPlaybackState
T:DeviceDiscoveryExtension.DDDeviceProtocol
T:DeviceDiscoveryExtension.DDDeviceProtocolStrings
T:DeviceDiscoveryExtension.DDDeviceState
T:DeviceDiscoveryExtension.DDDeviceSupports
-T:DeviceDiscoveryExtension.DDDiscoverySession
T:DeviceDiscoveryExtension.DDErrorCode
T:DeviceDiscoveryExtension.DDEventType
-T:DeviceDiscoveryUI.DDDevicePickerViewController
T:EventKit.EKAlarmType
T:EventKit.EKEventStoreRequestAccessCompletionHandler
T:EventKit.EKParticipantScheduleStatus
T:EventKit.EKReminderPriority
-T:EventKit.EKVirtualConferenceDescriptor
-T:EventKit.EKVirtualConferenceProvider
-T:EventKit.EKVirtualConferenceRoomTypeDescriptor
-T:EventKit.EKVirtualConferenceUrlDescriptor
T:EventKit.VirtualConferenceHandler
T:EventKit.VirtualConferenceRoomTypeHandler
T:EventKitUI.EKCalendarChooserDisplayStyle
@@ -106866,8 +69486,6 @@ T:ExecutionPolicy.EPDeveloperTool
T:ExecutionPolicy.EPDeveloperToolStatus
T:ExecutionPolicy.EPError
T:ExecutionPolicy.EPExecutionPolicy
-T:ExtensionKit.EXAppExtensionBrowserViewController
-T:ExtensionKit.EXHostViewController
T:ExtensionKit.EXHostViewControllerDelegate
T:ExtensionKit.IEXHostViewControllerDelegate
T:ExternalAccessory.EAAccessory
@@ -107002,18 +69620,12 @@ T:Foundation.ModelAttribute
T:Foundation.ModelNotImplementedException
T:Foundation.NotImplementedAttribute
T:Foundation.NSActivityOptions
-T:Foundation.NSAffineTransform
T:Foundation.NSAlignmentOptions
-T:Foundation.NSAppleEventDescriptor
T:Foundation.NSAppleEventDescriptorType
-T:Foundation.NSAppleEventManager
T:Foundation.NSAppleEventSendOptions
-T:Foundation.NSAppleScript
T:Foundation.NSArchiveReplaceEventArgs
-T:Foundation.NSArray
T:Foundation.NSArray`1
T:Foundation.NSAttributedRangeCallback
-T:Foundation.NSAttributedString
T:Foundation.NSAttributedStringCallback
T:Foundation.NSAttributedStringCompletionHandler
T:Foundation.NSAttributedStringDocumentAttributes
@@ -107021,109 +69633,63 @@ T:Foundation.NSAttributedStringEnumeration
T:Foundation.NSAttributedStringFormattingOptions
T:Foundation.NSAttributedStringMarkdownInterpretedSyntax
T:Foundation.NSAttributedStringMarkdownParsingFailurePolicy
-T:Foundation.NSAttributedStringMarkdownParsingOptions
-T:Foundation.NSAttributedStringMarkdownSourcePosition
T:Foundation.NSAttributedStringNameKey
-T:Foundation.NSAutoreleasePool
T:Foundation.NSBackgroundActivityCompletionAction
T:Foundation.NSBackgroundActivityCompletionHandler
T:Foundation.NSBackgroundActivityResult
-T:Foundation.NSBackgroundActivityScheduler
T:Foundation.NSBindingSelectionMarker
-T:Foundation.NSBlockOperation
-T:Foundation.NSBundle
-T:Foundation.NSBundleResourceRequest
-T:Foundation.NSByteCountFormatter
T:Foundation.NSByteCountFormatterCountStyle
T:Foundation.NSByteCountFormatterUnits
-T:Foundation.NSCache
T:Foundation.NSCacheDelegate
-T:Foundation.NSCachedUrlResponse
T:Foundation.NSCalculationError
-T:Foundation.NSCalendar
-T:Foundation.NSCalendarDate
T:Foundation.NSCalendarOptions
T:Foundation.NSCalendarType
T:Foundation.NSCalendarUnit
-T:Foundation.NSCharacterSet
T:Foundation.NSCocoaError
-T:Foundation.NSCoder
T:Foundation.NSCoding
T:Foundation.NSCollectionChangeType
T:Foundation.NSComparator
-T:Foundation.NSComparisonPredicate
T:Foundation.NSComparisonPredicateModifier
T:Foundation.NSComparisonPredicateOptions
T:Foundation.NSComparisonResult
-T:Foundation.NSCompoundPredicate
T:Foundation.NSCompoundPredicateType
-T:Foundation.NSCondition
-T:Foundation.NSConditionLock
-T:Foundation.NSConnection
T:Foundation.NSConnectionDelegate
T:Foundation.NSCopying
-T:Foundation.NSData
T:Foundation.NSDataBase64DecodingOptions
T:Foundation.NSDataBase64EncodingOptions
T:Foundation.NSDataByteRangeEnumerator
T:Foundation.NSDataCompressionAlgorithm
-T:Foundation.NSDataDetector
T:Foundation.NSDataReadingOptions
T:Foundation.NSDataSearchOptions
T:Foundation.NSDataWritingOptions
-T:Foundation.NSDate
-T:Foundation.NSDateComponents
-T:Foundation.NSDateComponentsFormatter
T:Foundation.NSDateComponentsFormatterUnitsStyle
T:Foundation.NSDateComponentsFormatterZeroFormattingBehavior
-T:Foundation.NSDateFormatter
T:Foundation.NSDateFormatterBehavior
T:Foundation.NSDateFormatterStyle
-T:Foundation.NSDateInterval
-T:Foundation.NSDateIntervalFormatter
T:Foundation.NSDateIntervalFormatterStyle
T:Foundation.NSDecimal
-T:Foundation.NSDecimalNumber
T:Foundation.NSDecoderCallback
T:Foundation.NSDecoderHandler
T:Foundation.NSDecodingFailurePolicy
-T:Foundation.NSDictionary
-T:Foundation.NSDictionary`2
-T:Foundation.NSDimension
T:Foundation.NSDirectoryEnumerationOptions
-T:Foundation.NSDirectoryEnumerator
-T:Foundation.NSDistantObjectRequest
-T:Foundation.NSDistributedLock
T:Foundation.NSEncodeHook
-T:Foundation.NSEnergyFormatter
T:Foundation.NSEnergyFormatterUnit
T:Foundation.NSEnumerateErrorHandler
T:Foundation.NSEnumerateLinguisticTagsEnumerator
T:Foundation.NSEnumerationOptions
-T:Foundation.NSEnumerator
-T:Foundation.NSEnumerator`1
-T:Foundation.NSError
T:Foundation.NSErrorEventArgs
T:Foundation.NSErrorException
T:Foundation.NSErrorUserInfoValueProvider
-T:Foundation.NSException
T:Foundation.NSExceptionError
-T:Foundation.NSExpression
T:Foundation.NSExpressionCallbackHandler
T:Foundation.NSExpressionType
-T:Foundation.NSExtensionContext
-T:Foundation.NSExtensionItem
T:Foundation.NSExtensionRequestHandling
-T:Foundation.NSFileAccessIntent
T:Foundation.NSFileAttributes
-T:Foundation.NSFileCoordinator
T:Foundation.NSFileCoordinatorReadingOptions
T:Foundation.NSFileCoordinatorWorkerRW
T:Foundation.NSFileCoordinatorWritingOptions
-T:Foundation.NSFileHandle
T:Foundation.NSFileHandleConnectionAcceptedEventArgs
T:Foundation.NSFileHandleReadEventArgs
-T:Foundation.NSFileManager
T:Foundation.NSFileManager_NSUserInformation
T:Foundation.NSFileManagerDelegate
T:Foundation.NSFileManagerItemReplacementOptions
@@ -107132,17 +69698,13 @@ T:Foundation.NSFilePresenter
T:Foundation.NSFilePresenterReacquirer
T:Foundation.NSFileProtection
T:Foundation.NSFileProtectionType
-T:Foundation.NSFileProviderService
T:Foundation.NSFileSystemAttributes
T:Foundation.NSFileType
-T:Foundation.NSFileVersion
T:Foundation.NSFileVersionAddingOptions
T:Foundation.NSFileVersionNonlocalVersionsCompletionHandler
T:Foundation.NSFileVersionReplacingOptions
-T:Foundation.NSFileWrapper
T:Foundation.NSFileWrapperReadingOptions
T:Foundation.NSFileWrapperWritingOptions
-T:Foundation.NSFormatter
T:Foundation.NSFormattingContext
T:Foundation.NSFormattingUnitStyle
T:Foundation.NSGrammaticalCase
@@ -107153,21 +69715,9 @@ T:Foundation.NSGrammaticalNumber
T:Foundation.NSGrammaticalPartOfSpeech
T:Foundation.NSGrammaticalPerson
T:Foundation.NSGrammaticalPronounType
-T:Foundation.NSHost
-T:Foundation.NSHttpCookie
T:Foundation.NSHttpCookieAcceptPolicy
-T:Foundation.NSHttpCookieStorage
-T:Foundation.NSHttpUrlResponse
-T:Foundation.NSIndexPath
-T:Foundation.NSIndexSet
-T:Foundation.NSInflectionRule
-T:Foundation.NSInflectionRuleExplicit
T:Foundation.NSInlinePresentationIntent
-T:Foundation.NSInputStream
-T:Foundation.NSInvocation
T:Foundation.NSIso8601DateFormatOptions
-T:Foundation.NSIso8601DateFormatter
-T:Foundation.NSItemProvider
T:Foundation.NSItemProviderCompletionHandler
T:Foundation.NSItemProviderErrorCode
T:Foundation.NSItemProviderFileOptions
@@ -107176,75 +69726,36 @@ T:Foundation.NSItemProviderRepresentationVisibility
T:Foundation.NSItemProviderUTTypeLoadDelegate
T:Foundation.NSJavaScriptExtension
T:Foundation.NSJsonReadingOptions
-T:Foundation.NSJsonSerialization
T:Foundation.NSJsonWritingOptions
-T:Foundation.NSKeyedArchiver
T:Foundation.NSKeyedArchiverDelegate
-T:Foundation.NSKeyedUnarchiver
T:Foundation.NSKeyedUnarchiverDelegate
T:Foundation.NSKeyValueChange
T:Foundation.NSKeyValueObservingOptions
T:Foundation.NSKeyValueSetMutationKind
T:Foundation.NSKeyValueSharedObserverRegistration_NSObject
-T:Foundation.NSKeyValueSharedObservers
-T:Foundation.NSKeyValueSharedObserversSnapshot
T:Foundation.NSKeyValueSorting_NSMutableOrderedSet
T:Foundation.NSKeyValueSorting_NSOrderedSet
-T:Foundation.NSLengthFormatter
T:Foundation.NSLengthFormatterUnit
T:Foundation.NSLigatureType
T:Foundation.NSLinguisticAnalysis
-T:Foundation.NSLinguisticTagger
T:Foundation.NSLinguisticTaggerOptions
T:Foundation.NSLinguisticTaggerUnit
T:Foundation.NSLingusticEnumerator
-T:Foundation.NSListFormatter
T:Foundation.NSLoadFromHtmlResult
-T:Foundation.NSLocale
T:Foundation.NSLocaleLanguageDirection
-T:Foundation.NSLocalizedNumberFormatRule
-T:Foundation.NSLock
-T:Foundation.NSMachPort
T:Foundation.NSMachPortDelegate
T:Foundation.NSMachPortRights
-T:Foundation.NSMassFormatter
T:Foundation.NSMassFormatterUnit
T:Foundation.NSMatchEnumerator
T:Foundation.NSMatchingFlags
T:Foundation.NSMatchingOptions
-T:Foundation.NSMeasurement`1
-T:Foundation.NSMeasurementFormatter
T:Foundation.NSMeasurementFormatterUnitOptions
-T:Foundation.NSMetadataItem
-T:Foundation.NSMetadataQuery
-T:Foundation.NSMetadataQueryAttributeValueTuple
T:Foundation.NSMetadataQueryDelegate
T:Foundation.NSMetadataQueryEnumerationCallback
T:Foundation.NSMetadataQueryObject
-T:Foundation.NSMetadataQueryResultGroup
T:Foundation.NSMetadataQueryValue
-T:Foundation.NSMethodSignature
-T:Foundation.NSMorphology
-T:Foundation.NSMorphologyCustomPronoun
-T:Foundation.NSMorphologyPronoun
-T:Foundation.NSMutableArray
-T:Foundation.NSMutableArray`1
-T:Foundation.NSMutableAttributedString
-T:Foundation.NSMutableCharacterSet
T:Foundation.NSMutableCopying
-T:Foundation.NSMutableData
-T:Foundation.NSMutableDictionary
-T:Foundation.NSMutableDictionary`2
-T:Foundation.NSMutableIndexSet
-T:Foundation.NSMutableOrderedSet
-T:Foundation.NSMutableOrderedSet`1
-T:Foundation.NSMutableSet
-T:Foundation.NSMutableSet`1
-T:Foundation.NSMutableString
-T:Foundation.NSMutableUrlRequest
T:Foundation.NSNetDomainEventArgs
-T:Foundation.NSNetService
-T:Foundation.NSNetServiceBrowser
T:Foundation.NSNetServiceBrowserDelegate
T:Foundation.NSNetServiceConnectionEventArgs
T:Foundation.NSNetServiceDataEventArgs
@@ -107253,16 +69764,10 @@ T:Foundation.NSNetServiceErrorEventArgs
T:Foundation.NSNetServiceEventArgs
T:Foundation.NSNetServiceOptions
T:Foundation.NSNetServicesStatus
-T:Foundation.NSNotification
-T:Foundation.NSNotificationCenter
T:Foundation.NSNotificationCoalescing
T:Foundation.NSNotificationEventArgs
T:Foundation.NSNotificationFlags
-T:Foundation.NSNotificationQueue
T:Foundation.NSNotificationSuspensionBehavior
-T:Foundation.NSNull
-T:Foundation.NSNumber
-T:Foundation.NSNumberFormatter
T:Foundation.NSNumberFormatterBehavior
T:Foundation.NSNumberFormatterPadPosition
T:Foundation.NSNumberFormatterRoundingMode
@@ -107272,26 +69777,13 @@ T:Foundation.NSObjectEventArgs
T:Foundation.NSObjectFlag
T:Foundation.NSObservedChange
T:Foundation.NSOperatingSystemVersion
-T:Foundation.NSOperation
-T:Foundation.NSOperationQueue
T:Foundation.NSOperationQueuePriority
T:Foundation.NSOrderedCollectionDifferenceCalculationOptions
-T:Foundation.NSOrderedSet
-T:Foundation.NSOrderedSet`1
-T:Foundation.NSOrthography
-T:Foundation.NSOutputStream
T:Foundation.NSPersonNameComponent
-T:Foundation.NSPersonNameComponents
-T:Foundation.NSPersonNameComponentsFormatter
T:Foundation.NSPersonNameComponentsFormatterOptions
T:Foundation.NSPersonNameComponentsFormatterStyle
-T:Foundation.NSPipe
-T:Foundation.NSPort
T:Foundation.NSPortDelegate
-T:Foundation.NSPortMessage
-T:Foundation.NSPortNameServer
T:Foundation.NSPostingStyle
-T:Foundation.NSPredicate
T:Foundation.NSPredicateEvaluator
T:Foundation.NSPredicateOperatorType
T:Foundation.NSPredicateSupport_NSArray
@@ -107300,48 +69792,32 @@ T:Foundation.NSPredicateSupport_NSMutableOrderedSet
T:Foundation.NSPredicateSupport_NSMutableSet
T:Foundation.NSPredicateSupport_NSOrderedSet
T:Foundation.NSPredicateSupport_NSSet
-T:Foundation.NSPresentationIntent
T:Foundation.NSPresentationIntentKind
T:Foundation.NSPresentationIntentTableColumnAlignment
-T:Foundation.NSProcessInfo
T:Foundation.NSProcessInfo_NSUserInformation
T:Foundation.NSProcessInfoThermalState
-T:Foundation.NSProgress
T:Foundation.NSPropertyListFormat
T:Foundation.NSPropertyListMutabilityOptions
T:Foundation.NSPropertyListReadOptions
-T:Foundation.NSPropertyListSerialization
T:Foundation.NSPropertyListWriteOptions
-T:Foundation.NSPurgeableData
T:Foundation.NSQualityOfService
T:Foundation.NSRange
T:Foundation.NSRangeIterator
-T:Foundation.NSRecursiveLock
-T:Foundation.NSRegularExpression
T:Foundation.NSRegularExpressionOptions
-T:Foundation.NSRelativeDateTimeFormatter
T:Foundation.NSRelativeDateTimeFormatterStyle
T:Foundation.NSRelativeDateTimeFormatterUnitsStyle
T:Foundation.NSRoundingMode
-T:Foundation.NSRunLoop
-T:Foundation.NSScriptCommand
T:Foundation.NSScriptCommandArgumentDescription
T:Foundation.NSScriptCommandArgumentDescriptionKeys
-T:Foundation.NSScriptCommandDescription
T:Foundation.NSScriptCommandDescriptionDictionary
T:Foundation.NSScriptCommandDescriptionDictionaryKeys
T:Foundation.NSSearchPath
T:Foundation.NSSearchPathDirectory
T:Foundation.NSSearchPathDomain
T:Foundation.NSSecureCoding
-T:Foundation.NSSecureUnarchiveFromDataTransformer
-T:Foundation.NSSet
-T:Foundation.NSSet`1
T:Foundation.NSSetEnumerator
-T:Foundation.NSSortDescriptor
T:Foundation.NSSortDescriptorSorting_NSMutableArray
T:Foundation.NSSortOptions
-T:Foundation.NSStream
T:Foundation.NSStreamDelegate
T:Foundation.NSStreamEvent
T:Foundation.NSStreamEventArgs
@@ -107349,104 +69825,53 @@ T:Foundation.NSStreamServiceType
T:Foundation.NSStreamSocketSecurityLevel
T:Foundation.NSStreamSocksOptions
T:Foundation.NSStreamStatus
-T:Foundation.NSString
T:Foundation.NSStringCompareOptions
T:Foundation.NSStringDrawingContext
T:Foundation.NSStringDrawingOptions
T:Foundation.NSStringEncoding
T:Foundation.NSStringEnumerationOptions
T:Foundation.NSStringTransform
-T:Foundation.NSTask
T:Foundation.NSTaskTerminationReason
-T:Foundation.NSTermOfAddress
T:Foundation.NSTextChecking
T:Foundation.NSTextCheckingAddressComponents
-T:Foundation.NSTextCheckingResult
T:Foundation.NSTextCheckingTransitComponents
T:Foundation.NSTextCheckingType
T:Foundation.NSTextCheckingTypes
-T:Foundation.NSThread
-T:Foundation.NSTimer
-T:Foundation.NSTimeZone
T:Foundation.NSTimeZoneNameStyle
-T:Foundation.NSUbiquitousKeyValueStore
T:Foundation.NSUbiquitousKeyValueStoreChangeEventArgs
T:Foundation.NSUbiquitousKeyValueStoreChangeReason
T:Foundation.NSUnderlineStyle
-T:Foundation.NSUndoManager
T:Foundation.NSUndoManagerCloseUndoGroupEventArgs
-T:Foundation.NSUnit
-T:Foundation.NSUnitAcceleration
-T:Foundation.NSUnitAngle
-T:Foundation.NSUnitArea
-T:Foundation.NSUnitConcentrationMass
-T:Foundation.NSUnitConverter
-T:Foundation.NSUnitConverterLinear
-T:Foundation.NSUnitDispersion
-T:Foundation.NSUnitDuration
-T:Foundation.NSUnitElectricCharge
-T:Foundation.NSUnitElectricCurrent
-T:Foundation.NSUnitElectricPotentialDifference
-T:Foundation.NSUnitElectricResistance
-T:Foundation.NSUnitEnergy
-T:Foundation.NSUnitFrequency
-T:Foundation.NSUnitFuelEfficiency
-T:Foundation.NSUnitIlluminance
-T:Foundation.NSUnitInformationStorage
-T:Foundation.NSUnitLength
-T:Foundation.NSUnitMass
-T:Foundation.NSUnitPower
-T:Foundation.NSUnitPressure
-T:Foundation.NSUnitSpeed
-T:Foundation.NSUnitTemperature
-T:Foundation.NSUnitVolume
-T:Foundation.NSUrl
T:Foundation.NSUrl_PromisedItems
T:Foundation.NSUrlAsyncResult
-T:Foundation.NSUrlAuthenticationChallenge
T:Foundation.NSUrlBookmarkCreationOptions
T:Foundation.NSUrlBookmarkResolutionOptions
-T:Foundation.NSUrlCache
T:Foundation.NSUrlCacheStoragePolicy
-T:Foundation.NSUrlComponents
-T:Foundation.NSUrlConnection
T:Foundation.NSUrlConnectionDataDelegate
T:Foundation.NSUrlConnectionDataResponse
T:Foundation.NSUrlConnectionDelegate
T:Foundation.NSUrlConnectionDownloadDelegate
-T:Foundation.NSUrlCredential
T:Foundation.NSUrlCredentialPersistence
-T:Foundation.NSUrlCredentialStorage
-T:Foundation.NSUrlDownload
T:Foundation.NSUrlDownloadDelegate
T:Foundation.NSUrlDownloadSessionResponse
T:Foundation.NSUrlError
T:Foundation.NSUrlErrorCancelledReason
T:Foundation.NSUrlErrorNetworkUnavailableReason
-T:Foundation.NSUrlProtectionSpace
-T:Foundation.NSUrlProtocol
-T:Foundation.NSUrlQueryItem
T:Foundation.NSUrlRelationship
-T:Foundation.NSUrlRequest
T:Foundation.NSURLRequestAttribution
T:Foundation.NSUrlRequestCachePolicy
T:Foundation.NSUrlRequestNetworkServiceType
-T:Foundation.NSUrlResponse
-T:Foundation.NSUrlSession
T:Foundation.NSUrlSessionActiveTasks
T:Foundation.NSUrlSessionAllPendingTasks
T:Foundation.NSUrlSessionAuthChallengeDisposition
T:Foundation.NSUrlSessionCombinedTasks
-T:Foundation.NSUrlSessionConfiguration
T:Foundation.NSUrlSessionConfiguration.SessionConfigurationType
T:Foundation.NSUrlSessionDataDelegate
T:Foundation.NSUrlSessionDataRead
-T:Foundation.NSUrlSessionDataTask
T:Foundation.NSUrlSessionDataTaskRequest
T:Foundation.NSUrlSessionDelayedRequestDisposition
T:Foundation.NSUrlSessionDelegate
T:Foundation.NSUrlSessionDownloadDelegate
-T:Foundation.NSUrlSessionDownloadTask
T:Foundation.NSUrlSessionDownloadTaskRequest
T:Foundation.NSUrlSessionHandler
T:Foundation.NSUrlSessionHandlerTrustOverrideForUrlCallback
@@ -107456,46 +69881,27 @@ T:Foundation.NSUrlSessionResponse
T:Foundation.NSUrlSessionResponseDisposition
T:Foundation.NSUrlSessionStreamDataRead
T:Foundation.NSUrlSessionStreamDelegate
-T:Foundation.NSUrlSessionStreamTask
-T:Foundation.NSUrlSessionTask
T:Foundation.NSUrlSessionTaskDelegate
-T:Foundation.NSUrlSessionTaskMetrics
T:Foundation.NSUrlSessionTaskMetricsDomainResolutionProtocol
T:Foundation.NSUrlSessionTaskMetricsResourceFetchType
T:Foundation.NSUrlSessionTaskPriority
T:Foundation.NSUrlSessionTaskState
-T:Foundation.NSUrlSessionTaskTransactionMetrics
-T:Foundation.NSUrlSessionUploadTask
T:Foundation.NSUrlSessionUploadTaskResumeRequest
T:Foundation.NSUrlSessionWebSocketCloseCode
T:Foundation.NSUrlSessionWebSocketDelegate
-T:Foundation.NSUrlSessionWebSocketMessage
T:Foundation.NSUrlSessionWebSocketMessageType
-T:Foundation.NSUrlSessionWebSocketTask
T:Foundation.NSUrlUtilities_NSCharacterSet
T:Foundation.NSUrlUtilities_NSString
-T:Foundation.NSUserActivity
T:Foundation.NSUserActivityContinuation
T:Foundation.NSUserActivityDelegate
T:Foundation.NSUserActivityType
-T:Foundation.NSUserDefaults
T:Foundation.NSUserDefaultsType
-T:Foundation.NSUserNotification
-T:Foundation.NSUserNotificationAction
T:Foundation.NSUserNotificationActivationType
-T:Foundation.NSUserNotificationCenter
T:Foundation.NSUserNotificationCenterDelegate
-T:Foundation.NSUuid
-T:Foundation.NSValue
-T:Foundation.NSValueTransformer
T:Foundation.NSVolumeEnumerationOptions
T:Foundation.NSWritingDirection
-T:Foundation.NSXpcConnection
T:Foundation.NSXpcConnectionOptions
-T:Foundation.NSXpcInterface
-T:Foundation.NSXpcListener
T:Foundation.NSXpcListenerDelegate
-T:Foundation.NSXpcListenerEndpoint
T:Foundation.NSZone
T:Foundation.OutletAttribute
T:Foundation.PreserveAttribute
@@ -107591,30 +69997,21 @@ T:GameController.IGCSwitchPositionInput
T:GameController.IGCTouchedStateInput
T:GameController.InputStateAvailableHandler
T:GameController.UISceneConnectionOptions_GameController
-T:GameKit.GKAccessPoint
T:GameKit.GKAccessPointLocation
-T:GameKit.GKAchievement
-T:GameKit.GKAchievementChallenge
-T:GameKit.GKAchievementDescription
T:GameKit.GKAchievementDescriptionHandler
-T:GameKit.GKBasePlayer
T:GameKit.GKCategoryResult
-T:GameKit.GKChallenge
T:GameKit.GKChallengeComposeControllerResult
T:GameKit.GKChallengeComposeHandler
T:GameKit.GKChallengeComposeHandler2
T:GameKit.GKChallengeComposeResult
T:GameKit.GKChallengeListener
T:GameKit.GKChallengeState
-T:GameKit.GKChallengesViewController
T:GameKit.GKChallengesViewControllerDelegate
-T:GameKit.GKCloudPlayer
T:GameKit.GKCompletionHandler
T:GameKit.GKConnectionState
T:GameKit.GKDataEventArgs
T:GameKit.GKDataReceivedEventArgs
T:GameKit.GKDataReceivedForRecipientEventArgs
-T:GameKit.GKDialogController
T:GameKit.GKEntriesForPlayerScopeHandler
T:GameKit.GKEntriesForPlayerScopeResult
T:GameKit.GKEntriesForPlayersHandler
@@ -107625,37 +70022,24 @@ T:GameKit.GKFetchItemsForIdentityVerificationSignature
T:GameKit.GKFetchItemsForIdentityVerificationSignatureCompletionHandler
T:GameKit.GKFriendsAuthorizationStatus
T:GameKit.GKGameCenterControllerDelegate
-T:GameKit.GKGameCenterViewController
T:GameKit.GKGameCenterViewControllerState
-T:GameKit.GKGameSession
T:GameKit.GKGameSessionErrorCode
-T:GameKit.GKGameSessionSharingViewController
T:GameKit.GKGameSessionSharingViewControllerDelegate
T:GameKit.GKIdentityVerificationSignatureHandler
T:GameKit.GKIdentityVerificationSignatureResult
T:GameKit.GKImageLoadedHandler
-T:GameKit.GKInvite
T:GameKit.GKInviteeResponse
T:GameKit.GKInviteEventListener
T:GameKit.GKInviteRecipientResponse
-T:GameKit.GKLeaderboard
-T:GameKit.GKLeaderboardEntry
T:GameKit.GKLeaderboardPlayerScope
-T:GameKit.GKLeaderboardScore
-T:GameKit.GKLeaderboardSet
T:GameKit.GKLeaderboardSetsHandler
T:GameKit.GKLeaderboardsHandler
T:GameKit.GKLeaderboardTimeScope
T:GameKit.GKLeaderboardType
-T:GameKit.GKLocalPlayer
T:GameKit.GKLocalPlayerListener
-T:GameKit.GKMatch
T:GameKit.GKMatchConnectionChangedEventArgs
T:GameKit.GKMatchDelegate
-T:GameKit.GKMatchedPlayers
T:GameKit.GKMatchEventArgs
-T:GameKit.GKMatchmaker
-T:GameKit.GKMatchmakerViewController
T:GameKit.GKMatchmakerViewControllerDelegate
T:GameKit.GKMatchmakingMode
T:GameKit.GKMatchmakingPlayerEventArgs
@@ -107663,44 +70047,33 @@ T:GameKit.GKMatchmakingPlayersEventArgs
T:GameKit.GKMatchReceivedDataFromRemotePlayerEventArgs
T:GameKit.GKMatchReinvitation
T:GameKit.GKMatchReinvitationForDisconnectedPlayer
-T:GameKit.GKMatchRequest
T:GameKit.GKMatchSendDataMode
T:GameKit.GKMatchType
-T:GameKit.GKNotificationBanner
T:GameKit.GKNotificationMatch
T:GameKit.GKPeerChangedStateEventArgs
T:GameKit.GKPeerConnectionEventArgs
T:GameKit.GKPeerConnectionState
T:GameKit.GKPhotoSize
-T:GameKit.GKPlayer
T:GameKit.GKPlayerConnectionState
T:GameKit.GKPlayerEventArgs
T:GameKit.GKPlayerPhotoLoaded
T:GameKit.GKPlayersEventArgs
T:GameKit.GKPlayersHandler
T:GameKit.GKQueryHandler
-T:GameKit.GKScore
-T:GameKit.GKScoreChallenge
T:GameKit.GKScoresLoadedHandler
T:GameKit.GKSendDataMode
T:GameKit.GKSessionMode
T:GameKit.GKStateEventArgs
T:GameKit.GKTransportType
T:GameKit.GKTurnBasedEventListener
-T:GameKit.GKTurnBasedExchange
-T:GameKit.GKTurnBasedExchangeReply
T:GameKit.GKTurnBasedExchangeStatus
-T:GameKit.GKTurnBasedMatch
T:GameKit.GKTurnBasedMatchData
T:GameKit.GKTurnBasedMatchesRequest
-T:GameKit.GKTurnBasedMatchmakerViewController
T:GameKit.GKTurnBasedMatchmakerViewControllerDelegate
T:GameKit.GKTurnBasedMatchOutcome
T:GameKit.GKTurnBasedMatchRequest
T:GameKit.GKTurnBasedMatchStatus
-T:GameKit.GKTurnBasedParticipant
T:GameKit.GKTurnBasedParticipantStatus
-T:GameKit.GKVoiceChat
T:GameKit.GKVoiceChatPlayerState
T:GameKit.GKVoiceChatServiceError
T:GameKit.IGKChallengeListener
@@ -107717,11 +70090,8 @@ T:GameKit.IGKTurnBasedMatchmakerViewControllerDelegate
T:GameKit.IGKViewController
T:GameplayKit.GKBox
T:GameplayKit.GKGameModel
-T:GameplayKit.GKMeshGraph`1
-T:GameplayKit.GKObstacleGraph`1
T:GameplayKit.GKQuad
T:GameplayKit.GKRTreeSplitStrategy
-T:GameplayKit.GKSKNodeComponent
T:GameplayKit.GKTriangle
T:GameplayKit.IGKSceneRootNodeType
T:GameplayKit.NSArray_GameplayKit
@@ -107743,24 +70113,16 @@ T:GLKit.GLKViewDrawableMultisample
T:GLKit.GLKViewDrawableStencilFormat
T:GLKit.GLKViewDrawEventArgs
T:HealthKit.HKActivityMoveMode
-T:HealthKit.HKActivityMoveModeObject
T:HealthKit.HKAnchoredObjectUpdateHandler
T:HealthKit.HKAppleEcgAlgorithmVersion
T:HealthKit.HKAppleSleepingBreathingDisturbances
T:HealthKit.HKAppleSleepingBreathingDisturbancesClassification
T:HealthKit.HKAppleWalkingSteadiness
T:HealthKit.HKAppleWalkingSteadinessClassification
-T:HealthKit.HKAttachment
-T:HealthKit.HKAttachmentStore
T:HealthKit.HKAttachmentStoreCompletionHandler
T:HealthKit.HKAttachmentStoreDataHandler
T:HealthKit.HKAttachmentStoreGetAttachmentCompletionHandler
T:HealthKit.HKAudiogramConductionType
-T:HealthKit.HKAudiogramSample
-T:HealthKit.HKAudiogramSampleType
-T:HealthKit.HKAudiogramSensitivityPoint
-T:HealthKit.HKAudiogramSensitivityPointClampingRange
-T:HealthKit.HKAudiogramSensitivityTest
T:HealthKit.HKAudiogramSensitivityTestSide
T:HealthKit.HKCategoryValueAppetiteChanges
T:HealthKit.HKCategoryValueAppleWalkingSteadinessEvent
@@ -107775,131 +70137,65 @@ T:HealthKit.HKCategoryValueProgesteroneTestResult
T:HealthKit.HKCategoryValueSeverity
T:HealthKit.HKCategoryValueSleepAnalysisAsleep
T:HealthKit.HKCategoryValueVaginalBleeding
-T:HealthKit.HKContactsLensSpecification
-T:HealthKit.HKContactsPrescription
-T:HealthKit.HKCumulativeQuantitySample
T:HealthKit.HKCyclingFunctionalThresholdPowerTestType
T:HealthKit.HKDataTypeIdentifier
T:HealthKit.HKDetailedCdaErrors
T:HealthKit.HKDevicePlacementSide
-T:HealthKit.HKDiscreteQuantitySample
-T:HealthKit.HKElectrocardiogram
T:HealthKit.HKElectrocardiogramClassification
T:HealthKit.HKElectrocardiogramLead
-T:HealthKit.HKElectrocardiogramQuery
T:HealthKit.HKElectrocardiogramQueryDataHandler
T:HealthKit.HKElectrocardiogramSymptomsStatus
-T:HealthKit.HKElectrocardiogramType
-T:HealthKit.HKElectrocardiogramVoltageMeasurement
T:HealthKit.HKFhirRelease
-T:HealthKit.HKFhirVersion
-T:HealthKit.HKGad7Assessment
T:HealthKit.HKGad7AssessmentAnswer
T:HealthKit.HKGad7AssessmentRisk
-T:HealthKit.HKGlassesLensSpecification
-T:HealthKit.HKGlassesPrescription
T:HealthKit.HKHealthStore_HKWorkoutRelationship
T:HealthKit.HKHealthStoreCompletionHandler
T:HealthKit.HKHealthStoreRecoverActiveWorkoutSessionHandler
-T:HealthKit.HKHeartbeatSeriesBuilder
T:HealthKit.HKHeartbeatSeriesBuilderCompletionHandler
-T:HealthKit.HKHeartbeatSeriesQuery
T:HealthKit.HKHeartbeatSeriesQueryDataHandler
-T:HealthKit.HKHeartbeatSeriesSample
T:HealthKit.HKHeartRateRecoveryTestType
-T:HealthKit.HKLensSpecification
-T:HealthKit.HKLiveWorkoutBuilder
T:HealthKit.HKLiveWorkoutBuilderDelegate
-T:HealthKit.HKLiveWorkoutDataSource
T:HealthKit.HKObserverQueryDescriptorUpdateHandler
-T:HealthKit.HKPhq9Assessment
T:HealthKit.HKPhq9AssessmentAnswer
T:HealthKit.HKPhq9AssessmentRisk
T:HealthKit.HKPhysicalEffortEstimationType
-T:HealthKit.HKPrescriptionType
T:HealthKit.HKPrismBase
T:HealthKit.HKQuantitySeriesSampleQueryQuantityHandler
-T:HealthKit.HKQueryDescriptor
-T:HealthKit.HKScoredAssessment
-T:HealthKit.HKScoredAssessmentType
T:HealthKit.HKScoredAssessmentTypeIdentifier
-T:HealthKit.HKSeriesBuilder
-T:HealthKit.HKSeriesSample
-T:HealthKit.HKSeriesType
T:HealthKit.HKSourceRevisionInfo
-T:HealthKit.HKStateOfMind
T:HealthKit.HKStateOfMindAssociation
T:HealthKit.HKStateOfMindKind
T:HealthKit.HKStateOfMindLabel
-T:HealthKit.HKStateOfMindType
T:HealthKit.HKStateOfMindValenceClassification
T:HealthKit.HKStatisticsCollectionQueryStatisticsUpdateHandler
T:HealthKit.HKSwimmingStrokeStyle
T:HealthKit.HKUserMotionContext
-T:HealthKit.HKVerifiableClinicalRecord
T:HealthKit.HKVerifiableClinicalRecordCredentialType
-T:HealthKit.HKVerifiableClinicalRecordQuery
T:HealthKit.HKVerifiableClinicalRecordQueryResultHandler
T:HealthKit.HKVerifiableClinicalRecordSourceType
-T:HealthKit.HKVerifiableClinicalRecordSubject
T:HealthKit.HKVisionEye
-T:HealthKit.HKVisionPrescription
T:HealthKit.HKVisionPrescriptionType
-T:HealthKit.HKVisionPrism
T:HealthKit.HKWaterSalinity
-T:HealthKit.HKWorkoutActivity
-T:HealthKit.HKWorkoutEffortRelationship
-T:HealthKit.HKWorkoutEffortRelationshipQuery
T:HealthKit.HKWorkoutEffortRelationshipQueryOptions
T:HealthKit.HKWorkoutEffortRelationshipQueryResultsHandler
T:HealthKit.HKWorkoutRelationshipCallback
-T:HealthKit.HKWorkoutRoute
T:HealthKit.HKWorkoutRouteBuilderDataHandler
-T:HealthKit.HKWorkoutRouteQuery
T:HealthKit.HKWorkoutRouteQueryDataHandler
-T:HealthKit.HKWorkoutSession
T:HealthKit.HKWorkoutSessionDelegate
T:HealthKit.HKWorkoutSessionState
T:HealthKit.HKWorkoutSessionType
T:HealthKit.HKWorkoutSwimmingLocationType
T:HealthKit.IHKLiveWorkoutBuilderDelegate
T:HealthKit.IHKWorkoutSessionDelegate
-T:HomeKit.HMAccessControl
-T:HomeKit.HMAccessory
T:HomeKit.HMAccessoryBrowserEventArgs
-T:HomeKit.HMAccessoryCategory
T:HomeKit.HMAccessoryDelegate
T:HomeKit.HMAccessoryFirmwareVersionEventArgs
-T:HomeKit.HMAccessoryOwnershipToken
-T:HomeKit.HMAccessoryProfile
T:HomeKit.HMAccessoryProfileEventArgs
T:HomeKit.HMAccessoryServiceUpdateCharacteristicEventArgs
-T:HomeKit.HMAccessorySetupManager
-T:HomeKit.HMAccessorySetupPayload
-T:HomeKit.HMAccessorySetupRequest
-T:HomeKit.HMAccessorySetupResult
T:HomeKit.HMAccessoryUpdateEventArgs
-T:HomeKit.HMAction
-T:HomeKit.HMActionSet
-T:HomeKit.HMAddAccessoryRequest
-T:HomeKit.HMCalendarEvent
-T:HomeKit.HMCameraAudioControl
-T:HomeKit.HMCameraControl
-T:HomeKit.HMCameraProfile
-T:HomeKit.HMCameraSettingsControl
-T:HomeKit.HMCameraSnapshot
-T:HomeKit.HMCameraSnapshotControl
T:HomeKit.HMCameraSnapshotControlDelegate
-T:HomeKit.HMCameraSource
-T:HomeKit.HMCameraStream
-T:HomeKit.HMCameraStreamControl
T:HomeKit.HMCameraStreamControlDelegate
-T:HomeKit.HMCameraView
-T:HomeKit.HMCharacteristic
-T:HomeKit.HMCharacteristicEvent
-T:HomeKit.HMCharacteristicMetadata
T:HomeKit.HMCharacteristicProperties
-T:HomeKit.HMCharacteristicThresholdRangeEvent
T:HomeKit.HMCharacteristicValueClosedCaptions
T:HomeKit.HMCharacteristicValueCurrentHeatingCooling
T:HomeKit.HMCharacteristicValueCurrentMediaState
@@ -107917,20 +70213,13 @@ T:HomeKit.HMCharacteristicValueTargetVisibilityState
T:HomeKit.HMCharacteristicValueVolumeControlType
T:HomeKit.HMCharacteristicValueVolumeSelector
T:HomeKit.HMCharacteristicValueWiFiSatelliteStatus
-T:HomeKit.HMCharacteristicWriteAction
-T:HomeKit.HMDurationEvent
T:HomeKit.HMErrors
-T:HomeKit.HMEvent
-T:HomeKit.HMEventTrigger
T:HomeKit.HMFetchRoomHandler
-T:HomeKit.HMHome
-T:HomeKit.HMHomeAccessControl
T:HomeKit.HMHomeAccessoryEventArgs
T:HomeKit.HMHomeActionSetEventArgs
T:HomeKit.HMHomeDelegate
T:HomeKit.HMHomeErrorAccessoryEventArgs
T:HomeKit.HMHomeHubStateEventArgs
-T:HomeKit.HMHomeManager
T:HomeKit.HMHomeManagerAddAccessoryRequestEventArgs
T:HomeKit.HMHomeManagerAuthorizationStatus
T:HomeKit.HMHomeManagerAuthorizationStatusEventArgs
@@ -107944,27 +70233,7 @@ T:HomeKit.HMHomeServiceServiceGroupEventArgs
T:HomeKit.HMHomeTriggerEventArgs
T:HomeKit.HMHomeUserEventArgs
T:HomeKit.HMHomeZoneEventArgs
-T:HomeKit.HMLocationEvent
-T:HomeKit.HMMutableCalendarEvent
-T:HomeKit.HMMutableCharacteristicEvent
-T:HomeKit.HMMutableCharacteristicThresholdRangeEvent
-T:HomeKit.HMMutableDurationEvent
-T:HomeKit.HMMutableLocationEvent
-T:HomeKit.HMMutablePresenceEvent
-T:HomeKit.HMMutableSignificantTimeEvent
-T:HomeKit.HMNetworkConfigurationProfile
T:HomeKit.HMNetworkConfigurationProfileDelegate
-T:HomeKit.HMNumberRange
-T:HomeKit.HMPresenceEvent
-T:HomeKit.HMRoom
-T:HomeKit.HMService
-T:HomeKit.HMServiceGroup
-T:HomeKit.HMSignificantTimeEvent
-T:HomeKit.HMTimeEvent
-T:HomeKit.HMTimerTrigger
-T:HomeKit.HMTrigger
-T:HomeKit.HMUser
-T:HomeKit.HMZone
T:HomeKit.IHMAccessoryDelegate
T:HomeKit.IHMCameraSnapshotControlDelegate
T:HomeKit.IHMCameraStreamControlDelegate
@@ -107978,18 +70247,12 @@ T:IdentityLookup.ILMessageFilterError
T:IdentityLookup.ILMessageFilterSubAction
T:ImageCaptureCore.ICBrowsedDeviceType
T:ImageCaptureCore.ICButtonType
-T:ImageCaptureCore.ICCameraDevice
T:ImageCaptureCore.ICCameraDevice.DidDownloadDataDelegate
T:ImageCaptureCore.ICCameraDevice.DidReadDataDelegate
T:ImageCaptureCore.ICCameraDevice.DidSendPtpDelegate
T:ImageCaptureCore.ICCameraDeviceDelegate
T:ImageCaptureCore.ICCameraDeviceDownloadDelegate
T:ImageCaptureCore.ICCameraDownloadOptionKeys
-T:ImageCaptureCore.ICCameraFile
-T:ImageCaptureCore.ICCameraFolder
-T:ImageCaptureCore.ICCameraItem
-T:ImageCaptureCore.ICDevice
-T:ImageCaptureCore.ICDeviceBrowser
T:ImageCaptureCore.ICDeviceBrowserDelegate
T:ImageCaptureCore.ICDeviceCapabilities
T:ImageCaptureCore.ICDeviceDelegate
@@ -107999,23 +70262,11 @@ T:ImageCaptureCore.ICDeviceType
T:ImageCaptureCore.ICExifOrientationType
T:ImageCaptureCore.ICReturnCode
T:ImageCaptureCore.ICReturnCodeOffset
-T:ImageCaptureCore.ICScannerBandData
T:ImageCaptureCore.ICScannerBitDepth
T:ImageCaptureCore.ICScannerColorDataFormatType
-T:ImageCaptureCore.ICScannerDevice
T:ImageCaptureCore.ICScannerDeviceDelegate
T:ImageCaptureCore.ICScannerDocumentType
-T:ImageCaptureCore.ICScannerFeature
-T:ImageCaptureCore.ICScannerFeatureBoolean
-T:ImageCaptureCore.ICScannerFeatureEnumeration
-T:ImageCaptureCore.ICScannerFeatureRange
-T:ImageCaptureCore.ICScannerFeatureTemplate
T:ImageCaptureCore.ICScannerFeatureType
-T:ImageCaptureCore.ICScannerFunctionalUnit
-T:ImageCaptureCore.ICScannerFunctionalUnitDocumentFeeder
-T:ImageCaptureCore.ICScannerFunctionalUnitFlatbed
-T:ImageCaptureCore.ICScannerFunctionalUnitNegativeTransparency
-T:ImageCaptureCore.ICScannerFunctionalUnitPositiveTransparency
T:ImageCaptureCore.ICScannerFunctionalUnitState
T:ImageCaptureCore.ICScannerFunctionalUnitType
T:ImageCaptureCore.ICScannerMeasurementUnit
@@ -108387,7 +70638,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
@@ -108456,29 +70706,13 @@ T:MailKit.IMEMessageActionHandler
T:MailKit.IMEMessageDecoder
T:MailKit.IMEMessageEncoder
T:MailKit.IMEMessageSecurityHandler
-T:MailKit.MEAddressAnnotation
-T:MailKit.MEComposeContext
-T:MailKit.MEComposeSession
T:MailKit.MEComposeSessionErrorCode
T:MailKit.MEComposeUserAction
-T:MailKit.MEDecodedMessage
-T:MailKit.MEDecodedMessageBanner
-T:MailKit.MEEmailAddress
-T:MailKit.MEEncodedOutgoingMessage
-T:MailKit.MEExtensionManager
-T:MailKit.MEExtensionViewController
-T:MailKit.MEMessage
-T:MailKit.MEMessageAction
-T:MailKit.MEMessageActionDecision
T:MailKit.MEMessageActionFlag
T:MailKit.MEMessageActionMessageColor
-T:MailKit.MEMessageEncodingResult
T:MailKit.MEMessageEncryptionState
T:MailKit.MEMessageSecurityErrorCode
-T:MailKit.MEMessageSecurityInformation
-T:MailKit.MEMessageSigner
T:MailKit.MEMessageState
-T:MailKit.MEOutgoingMessageEncodingStatus
T:MapKit.IMKAnnotation
T:MapKit.IMKGeoJsonObject
T:MapKit.IMKLocalSearchCompleterDelegate
@@ -108486,91 +70720,46 @@ T:MapKit.IMKLookAroundViewControllerDelegate
T:MapKit.IMKMapItemDetailViewControllerDelegate
T:MapKit.IMKMapViewDelegate
T:MapKit.IMKOverlay
-T:MapKit.MKAddressFilter
T:MapKit.MKAddressFilterOption
T:MapKit.MKAnnotation
T:MapKit.MKAnnotationEventArgs
-T:MapKit.MKAnnotationView
T:MapKit.MKAnnotationViewCollisionMode
T:MapKit.MKAnnotationViewEventArgs
-T:MapKit.MKCircle
-T:MapKit.MKCircleRenderer
-T:MapKit.MKClusterAnnotation
-T:MapKit.MKCompassButton
T:MapKit.MKCoordinateRegion
T:MapKit.MKCoordinateSpan
T:MapKit.MKCreateClusterAnnotation
T:MapKit.MKDidAddOverlayRenderersEventArgs
T:MapKit.MKDidFinishRenderingMapEventArgs
-T:MapKit.MKDirections
T:MapKit.MKDirectionsHandler
T:MapKit.MKDirectionsMode
-T:MapKit.MKDirectionsRequest
-T:MapKit.MKDirectionsResponse
T:MapKit.MKDirectionsRoutePreference
T:MapKit.MKDirectionsTransportType
-T:MapKit.MKDistanceFormatter
T:MapKit.MKDistanceFormatterUnits
T:MapKit.MKDistanceFormatterUnitStyle
T:MapKit.MKErrorCode
T:MapKit.MKETAHandler
-T:MapKit.MKETAResponse
T:MapKit.MKFeatureDisplayPriority
T:MapKit.MKFeatureVisibility
-T:MapKit.MKGeodesicPolyline
-T:MapKit.MKGeoJsonDecoder
-T:MapKit.MKGeoJsonFeature
T:MapKit.MKGeometry
-T:MapKit.MKGradientPolylineRenderer
-T:MapKit.MKHybridMapConfiguration
-T:MapKit.MKIconStyle
-T:MapKit.MKImageryMapConfiguration
T:MapKit.MKLaunchOptions
-T:MapKit.MKLocalPointsOfInterestRequest
-T:MapKit.MKLocalSearch
-T:MapKit.MKLocalSearchCompleter
T:MapKit.MKLocalSearchCompleterDelegate
T:MapKit.MKLocalSearchCompleterResultType
-T:MapKit.MKLocalSearchCompletion
T:MapKit.MKLocalSearchCompletionHandler
T:MapKit.MKLocalSearchRegionPriority
-T:MapKit.MKLocalSearchRequest
-T:MapKit.MKLocalSearchResponse
T:MapKit.MKLocalSearchResultType
T:MapKit.MKLookAroundBadgePosition
-T:MapKit.MKLookAroundScene
-T:MapKit.MKLookAroundSceneRequest
-T:MapKit.MKLookAroundSnapshot
-T:MapKit.MKLookAroundSnapshotOptions
-T:MapKit.MKLookAroundSnapshotter
-T:MapKit.MKLookAroundViewController
T:MapKit.MKLookAroundViewControllerDelegate
-T:MapKit.MKMapCamera
-T:MapKit.MKMapCameraBoundary
-T:MapKit.MKMapCameraZoomRange
T:MapKit.MKMapCameraZoomRangeType
-T:MapKit.MKMapConfiguration
T:MapKit.MKMapElevationStyle
-T:MapKit.MKMapFeatureAnnotation
T:MapKit.MKMapFeatureOptions
T:MapKit.MKMapFeatureType
-T:MapKit.MKMapItem
-T:MapKit.MKMapItemAnnotation
T:MapKit.MKMapItemDetailSelectionAccessoryCalloutStyle
-T:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle
-T:MapKit.MKMapItemDetailViewController
T:MapKit.MKMapItemDetailViewControllerDelegate
-T:MapKit.MKMapItemIdentifier
-T:MapKit.MKMapItemRequest
T:MapKit.MKMapPoint
T:MapKit.MKMapRect
T:MapKit.MKMapSize
-T:MapKit.MKMapSnapshot
T:MapKit.MKMapSnapshotCompletionHandler
-T:MapKit.MKMapSnapshotOptions
-T:MapKit.MKMapSnapshotter
T:MapKit.MKMapType
-T:MapKit.MKMapView
T:MapKit.MKMapViewAccessoryTappedEventArgs
T:MapKit.MKMapViewAnnotation
T:MapKit.MKMapViewAnnotationEventArgs
@@ -108580,47 +70769,19 @@ T:MapKit.MKMapViewDelegate
T:MapKit.MKMapViewDelegateGetSelectionAccessory
T:MapKit.MKMapViewDragStateEventArgs
T:MapKit.MKMapViewOverlay
-T:MapKit.MKMarkerAnnotationView
-T:MapKit.MKMultiPoint
-T:MapKit.MKMultiPolygon
-T:MapKit.MKMultiPolygonRenderer
-T:MapKit.MKMultiPolyline
-T:MapKit.MKMultiPolylineRenderer
T:MapKit.MKOverlay
T:MapKit.MKOverlayLevel
-T:MapKit.MKOverlayPathRenderer
-T:MapKit.MKOverlayRenderer
T:MapKit.MKOverlayViewsEventArgs
-T:MapKit.MKPinAnnotationView
-T:MapKit.MKPitchControl
-T:MapKit.MKPlacemark
-T:MapKit.MKPointAnnotation
T:MapKit.MKPointOfInterestCategory
-T:MapKit.MKPointOfInterestFilter
T:MapKit.MKPointOfInterestFilterType
-T:MapKit.MKPolygon
-T:MapKit.MKPolygonRenderer
-T:MapKit.MKPolyline
-T:MapKit.MKPolylineRenderer
T:MapKit.MKRendererForOverlayDelegate
-T:MapKit.MKRoute
-T:MapKit.MKRouteStep
-T:MapKit.MKScaleView
T:MapKit.MKScaleViewAlignment
T:MapKit.MKSearchCompletionFilterType
-T:MapKit.MKSelectionAccessory
-T:MapKit.MKShape
-T:MapKit.MKStandardMapConfiguration
T:MapKit.MKStandardMapEmphasisStyle
-T:MapKit.MKTileOverlay
T:MapKit.MKTileOverlayLoadTileCompletionHandler
T:MapKit.MKTileOverlayPath
-T:MapKit.MKTileOverlayRenderer
-T:MapKit.MKUserLocation
T:MapKit.MKUserLocationEventArgs
-T:MapKit.MKUserLocationView
T:MapKit.MKUserTrackingMode
-T:MapKit.MKZoomControl
T:MapKit.MMapViewUserTrackingEventArgs
T:MapKit.NSUserActivity_MKMapItem
T:MediaAccessibility.MAFlashingLightsProcessor
@@ -108639,39 +70800,22 @@ T:MediaExtension.IMESampleCursor
T:MediaExtension.IMETrackReader
T:MediaExtension.IMEVideoDecoder
T:MediaExtension.IMEVideoDecoderExtension
-T:MediaExtension.MEByteSource
T:MediaExtension.MEByteSourceReadBytesCallback
T:MediaExtension.MEByteSourceReadDataCallback
-T:MediaExtension.MEDecodeFrameOptions
T:MediaExtension.MEDecodeFrameStatus
T:MediaExtension.MEError
-T:MediaExtension.MEEstimatedSampleLocation
-T:MediaExtension.MEFileInfo
T:MediaExtension.MEFileInfoFragmentsStatus
-T:MediaExtension.MEFormatReaderInstantiationOptions
T:MediaExtension.MEFormatReaderLoadFileInfoCallback
T:MediaExtension.MEFormatReaderLoadMetadataCallback
T:MediaExtension.MEFormatReaderLoadTrackReadersCallback
T:MediaExtension.MEFormatReaderParseAdditionalFragmentsCallback
T:MediaExtension.MEFormatReaderParseAdditionalFragmentsStatus
-T:MediaExtension.MEHevcDependencyInfo
-T:MediaExtension.MERawProcessingBooleanParameter
-T:MediaExtension.MERawProcessingFloatParameter
-T:MediaExtension.MERawProcessingIntegerParameter
-T:MediaExtension.MERawProcessingListElementParameter
-T:MediaExtension.MERawProcessingListParameter
-T:MediaExtension.MERawProcessingParameter
-T:MediaExtension.MERawProcessingSubGroupParameter
T:MediaExtension.MERawProcessorFields
-T:MediaExtension.MERawProcessorPixelBufferManager
T:MediaExtension.MERawProcessorProcessFrameCallback
-T:MediaExtension.MESampleCursorChunk
T:MediaExtension.MESampleCursorLoadPostDecodeProcessingMetadataCallback
T:MediaExtension.MESampleCursorLoadSampleBufferCallback
T:MediaExtension.MESampleCursorStepByTimeCallback
T:MediaExtension.MESampleCursorStepInOrderCallback
-T:MediaExtension.MESampleLocation
-T:MediaExtension.METrackInfo
T:MediaExtension.METrackReaderGenerateSampleCursorCallback
T:MediaExtension.METrackReaderLoadEstimatedDataRateCallback
T:MediaExtension.METrackReaderLoadMetadataCallback
@@ -108680,7 +70824,6 @@ T:MediaExtension.METrackReaderLoadTrackInfoCallback
T:MediaExtension.METrackReaderLoadUneditedDurationCallback
T:MediaExtension.MEVideoDecoderDecodeFrameCallback
T:MediaExtension.MEVideoDecoderFields
-T:MediaExtension.MEVideoDecoderPixelBufferManager
T:MediaLibrary.MediaLibraryTypeIdentifierKey
T:MediaLibrary.MLMediaGroup
T:MediaLibrary.MLMediaLibrary
@@ -108769,7 +70912,6 @@ T:MediaToolbox.MTAudioProcessingTapProcessDelegate
T:MediaToolbox.MTFormatNames
T:MediaToolbox.MTProfessionalVideoWorkflow
T:Messages.IMSMessagesAppTranscriptPresentation
-T:Messages.MSMessageLiveLayout
T:Messages.MSMessagesAppPresentationStyle
T:MessageUI.IMFMailComposeViewControllerDelegate
T:MessageUI.MFComposeResultEventArgs
@@ -108812,52 +70954,24 @@ T:Metal.IMTLSharedEvent
T:Metal.IMTLTextureBinding
T:Metal.IMTLThreadgroupBinding
T:Metal.IMTLVisibleFunctionTable
-T:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor
-T:Metal.MTLAccelerationStructureCurveGeometryDescriptor
-T:Metal.MTLAccelerationStructureDescriptor
-T:Metal.MTLAccelerationStructureGeometryDescriptor
T:Metal.MTLAccelerationStructureInstanceDescriptorType
T:Metal.MTLAccelerationStructureInstanceOptions
-T:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor
-T:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor
-T:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor
-T:Metal.MTLAccelerationStructurePassDescriptor
-T:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor
-T:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray
T:Metal.MTLAccelerationStructureRefitOptions
T:Metal.MTLAccelerationStructureSizes
-T:Metal.MTLAccelerationStructureTriangleGeometryDescriptor
T:Metal.MTLAccelerationStructureUsage
-T:Metal.MTLArchitecture
-T:Metal.MTLAttribute
-T:Metal.MTLAttributeDescriptor
-T:Metal.MTLAttributeDescriptorArray
T:Metal.MTLBarrierScope
-T:Metal.MTLBinaryArchiveDescriptor
T:Metal.MTLBinaryArchiveError
T:Metal.MTLBindingAccess
T:Metal.MTLBindingType
-T:Metal.MTLBlitPassDescriptor
-T:Metal.MTLBlitPassSampleBufferAttachmentDescriptor
-T:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray
-T:Metal.MTLBufferLayoutDescriptor
-T:Metal.MTLBufferLayoutDescriptorArray
-T:Metal.MTLCaptureDescriptor
T:Metal.MTLCaptureDestination
T:Metal.MTLCaptureError
T:Metal.MTLClearColor
T:Metal.MTLClearValue
-T:Metal.MTLCommandBufferDescriptor
T:Metal.MTLCommandBufferErrorOption
T:Metal.MTLCommandEncoderErrorState
-T:Metal.MTLCommandQueueDescriptor
T:Metal.MTLCommonCounter
T:Metal.MTLCompileSymbolVisibility
-T:Metal.MTLComputePassDescriptor
-T:Metal.MTLComputePassSampleBufferAttachmentDescriptor
-T:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray
T:Metal.MTLCoordinate2D
-T:Metal.MTLCounterSampleBufferDescriptor
T:Metal.MTLCounterSampleBufferError
T:Metal.MTLCounterSamplingPoint
T:Metal.MTLCurveBasis
@@ -108872,26 +70986,14 @@ T:Metal.MTLDrawIndexedPrimitivesIndirectArguments
T:Metal.MTLDrawPatchIndirectArguments
T:Metal.MTLDrawPrimitivesIndirectArguments
T:Metal.MTLDynamicLibraryError
-T:Metal.MTLFunctionConstant
-T:Metal.MTLFunctionConstantValues
-T:Metal.MTLFunctionDescriptor
T:Metal.MTLFunctionLogType
T:Metal.MTLFunctionOptions
-T:Metal.MTLFunctionStitchingFunctionNode
-T:Metal.MTLFunctionStitchingGraph
-T:Metal.MTLFunctionStitchingInputNode
T:Metal.MTLGpuFamily
T:Metal.MTLHazardTrackingMode
-T:Metal.MTLHeapDescriptor
T:Metal.MTLHeapType
-T:Metal.MTLIndirectCommandBufferDescriptor
T:Metal.MTLIndirectCommandBufferExecutionRange
T:Metal.MTLIndirectCommandType
-T:Metal.MTLIndirectInstanceAccelerationStructureDescriptor
-T:Metal.MTLInstanceAccelerationStructureDescriptor
-T:Metal.MTLIntersectionFunctionDescriptor
T:Metal.MTLIntersectionFunctionSignature
-T:Metal.MTLIntersectionFunctionTableDescriptor
T:Metal.MTLIntersectionFunctionTableExtensions
T:Metal.MTLIOCommandQueueType
T:Metal.MTLIOCompressionContext
@@ -108902,85 +71004,55 @@ T:Metal.MTLIOPriority
T:Metal.MTLIOStatus
T:Metal.MTLLibraryOptimizationLevel
T:Metal.MTLLibraryType
-T:Metal.MTLLinkedFunctions
T:Metal.MTLLogLevel
-T:Metal.MTLLogStateDescriptor
T:Metal.MTLLogStateError
T:Metal.MTLLogStateLogHandler
T:Metal.MTLMathFloatingPointFunctions
T:Metal.MTLMathMode
T:Metal.MTLMatrixLayout
-T:Metal.MTLMeshRenderPipelineDescriptor
T:Metal.MTLMotionBorderMode
-T:Metal.MTLMotionKeyframeData
T:Metal.MTLMultisampleStencilResolveFilter
T:Metal.MTLNewComputePipelineStateWithReflectionCompletionHandler
T:Metal.MTLNewRenderPipelineStateWithReflectionCompletionHandler
T:Metal.MTLOrigin
T:Metal.MTLPatchType
-T:Metal.MTLPointerType
-T:Metal.MTLPrimitiveAccelerationStructureDescriptor
T:Metal.MTLPrimitiveTopologyClass
T:Metal.MTLQuadTessellationFactorsHalf
-T:Metal.MTLRasterizationRateLayerArray
-T:Metal.MTLRasterizationRateLayerDescriptor
-T:Metal.MTLRasterizationRateMapDescriptor
-T:Metal.MTLRasterizationRateSampleArray
T:Metal.MTLReadWriteTextureTier
T:Metal.MTLRegion
-T:Metal.MTLRenderPassSampleBufferAttachmentDescriptor
-T:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray
-T:Metal.MTLRenderPipelineFunctionsDescriptor
T:Metal.MTLRenderStages
-T:Metal.MTLResidencySetDescriptor
T:Metal.MTLResourceId
-T:Metal.MTLResourceStatePassDescriptor
-T:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor
-T:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray
T:Metal.MTLSamplePosition
T:Metal.MTLSamplerBorderColor
T:Metal.MTLScissorRect
T:Metal.MTLShaderValidation
-T:Metal.MTLSharedEventHandle
-T:Metal.MTLSharedEventListener
T:Metal.MTLSharedEventNotificationBlock
-T:Metal.MTLSharedTextureHandle
T:Metal.MTLSize
T:Metal.MTLSizeAndAlign
T:Metal.MTLSparsePageSize
T:Metal.MTLSparseTextureMappingMode
T:Metal.MTLSparseTextureRegionAlignmentMode
-T:Metal.MTLStageInputOutputDescriptor
T:Metal.MTLStageInRegionIndirectArguments
T:Metal.MTLStepFunction
-T:Metal.MTLStitchedLibraryDescriptor
T:Metal.MTLStitchedLibraryOptions
T:Metal.MTLTessellationControlPointIndexType
T:Metal.MTLTessellationFactorFormat
T:Metal.MTLTessellationFactorStepFunction
T:Metal.MTLTessellationPartitionMode
T:Metal.MTLTextureCompressionType
-T:Metal.MTLTextureReferenceType
T:Metal.MTLTextureSwizzle
T:Metal.MTLTextureSwizzleChannels
-T:Metal.MTLTileRenderPipelineColorAttachmentDescriptor
-T:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray
-T:Metal.MTLTileRenderPipelineDescriptor
T:Metal.MTLTransformType
T:Metal.MTLTriangleTessellationFactorsHalf
-T:Metal.MTLType
T:Metal.MTLVertexAmplificationViewMapping
T:Metal.MTLVertexFormatExtensions
T:Metal.MTLViewport
-T:Metal.MTLVisibleFunctionTableDescriptor
T:Metal.NSDeviceCertification
T:Metal.NSProcessInfo_NSDeviceCertification
T:Metal.NSProcessPerformanceProfile
T:MetalFX.IMTLFXSpatialScaler
T:MetalFX.IMTLFXTemporalScaler
T:MetalFX.MTLFXSpatialScalerColorProcessingMode
-T:MetalFX.MTLFXSpatialScalerDescriptor
-T:MetalFX.MTLFXTemporalScalerDescriptor
T:MetalKit.MTKTextureLoaderArrayCallback
T:MetalKit.MTKTextureLoaderCubeLayout
T:MetalKit.MTKTextureLoaderOrigin
@@ -109350,43 +71422,7 @@ T:MetalPerformanceShadersGraph.MPSGraphVariableOp
T:MetalPerformanceShadersGraph.MPSGraphWhileAfterBlock
T:MetalPerformanceShadersGraph.MPSGraphWhileBeforeBlock
T:MetricKit.IMXMetricManagerSubscriber
-T:MetricKit.MXAnimationMetric
-T:MetricKit.MXAppExitMetric
-T:MetricKit.MXAppLaunchDiagnostic
-T:MetricKit.MXAppLaunchMetric
-T:MetricKit.MXAppResponsivenessMetric
-T:MetricKit.MXAppRunTimeMetric
-T:MetricKit.MXAverage`1
-T:MetricKit.MXBackgroundExitData
-T:MetricKit.MXCallStackTree
-T:MetricKit.MXCellularConditionMetric
-T:MetricKit.MXCpuExceptionDiagnostic
-T:MetricKit.MXCpuMetric
-T:MetricKit.MXCrashDiagnostic
-T:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason
-T:MetricKit.MXDiagnostic
-T:MetricKit.MXDiagnosticPayload
-T:MetricKit.MXDiskIOMetric
-T:MetricKit.MXDiskWriteExceptionDiagnostic
-T:MetricKit.MXDisplayMetric
T:MetricKit.MXErrorCode
-T:MetricKit.MXForegroundExitData
-T:MetricKit.MXGpuMetric
-T:MetricKit.MXHangDiagnostic
-T:MetricKit.MXHistogram`1
-T:MetricKit.MXHistogramBucket`1
-T:MetricKit.MXLocationActivityMetric
-T:MetricKit.MXMemoryMetric
-T:MetricKit.MXMetaData
-T:MetricKit.MXMetric
-T:MetricKit.MXMetricManager
-T:MetricKit.MXMetricPayload
-T:MetricKit.MXNetworkTransferMetric
-T:MetricKit.MXSignpostIntervalData
-T:MetricKit.MXSignpostMetric
-T:MetricKit.MXSignpostRecord
-T:MetricKit.MXUnitAveragePixelLuminance
-T:MetricKit.MXUnitSignalBars
T:MLCompute.MLCActivationDescriptor
T:MLCompute.MLCActivationLayer
T:MLCompute.MLCActivationType
@@ -109822,20 +71858,11 @@ T:OpenGLES.EAGLDrawableProperty
T:OpenGLES.IEAGLDrawable
T:OSLog.IOSLogEntryFromProcess
T:OSLog.IOSLogEntryWithPayload
-T:OSLog.OSLogEntry
-T:OSLog.OSLogEntryActivity
-T:OSLog.OSLogEntryBoundary
-T:OSLog.OSLogEntryLog
T:OSLog.OSLogEntryLogLevel
-T:OSLog.OSLogEntrySignpost
T:OSLog.OSLogEntrySignpostType
T:OSLog.OSLogEntryStoreCategory
-T:OSLog.OSLogEnumerator
T:OSLog.OSLogEnumeratorOptions
-T:OSLog.OSLogMessageComponent
T:OSLog.OSLogMessageComponentArgumentCategory
-T:OSLog.OSLogPosition
-T:OSLog.OSLogStore
T:OSLog.OSLogStoreScope
T:PassKit.IPKAddSecureElementPassViewControllerDelegate
T:PassKit.IPKIdentityDocumentDescriptor
@@ -109992,36 +72019,16 @@ T:PdfKit.PdfWidgetControlType
T:PencilKit.IPKCanvasViewDelegate
T:PencilKit.IPKToolPickerDelegate
T:PencilKit.IPKToolPickerObserver
-T:PencilKit.PKCanvasView
T:PencilKit.PKCanvasViewDelegate
T:PencilKit.PKCanvasViewDrawingPolicy
T:PencilKit.PKContentVersion
-T:PencilKit.PKDrawing
-T:PencilKit.PKEraserTool
T:PencilKit.PKEraserType
-T:PencilKit.PKFloatRange
-T:PencilKit.PKInk
-T:PencilKit.PKInkingTool
T:PencilKit.PKInkType
T:PencilKit.PKInterpolatedPointsEnumeratorHandler
-T:PencilKit.PKLassoTool
-T:PencilKit.PKStroke
-T:PencilKit.PKStrokePath
-T:PencilKit.PKStrokePoint
-T:PencilKit.PKTool
-T:PencilKit.PKToolPicker
-T:PencilKit.PKToolPickerCustomItem
-T:PencilKit.PKToolPickerCustomItemConfiguration
T:PencilKit.PKToolPickerCustomItemConfigurationImageProviderCallback
T:PencilKit.PKToolPickerCustomItemConfigurationViewControllerProvider
T:PencilKit.PKToolPickerCustomItemControlOptions
T:PencilKit.PKToolPickerDelegate
-T:PencilKit.PKToolPickerEraserItem
-T:PencilKit.PKToolPickerInkingItem
-T:PencilKit.PKToolPickerItem
-T:PencilKit.PKToolPickerLassoItem
-T:PencilKit.PKToolPickerRulerItem
-T:PencilKit.PKToolPickerScribbleItem
T:Phase.PhaseAmbientMixerDefinition
T:Phase.PhaseAsset
T:Phase.PhaseAssetError
@@ -110237,12 +72244,10 @@ T:QuickLookUI.QLPreviewView
T:QuickLookUI.QLPreviewViewStyle
T:ReplayKit.IRPBroadcastActivityControllerDelegate
T:ReplayKit.NSExtensionContext_RPBroadcastExtension
-T:ReplayKit.RPBroadcastActivityController
T:ReplayKit.RPBroadcastActivityControllerDelegate
T:ReplayKit.RPPreviewViewControllerMode
T:ReplayKit.RPRecordingError
T:ReplayKit.RPSampleBufferType
-T:ReplayKit.RPSystemBroadcastPickerView
T:SafariServices.ISFAddToHomeScreenActivityItem
T:SafariServices.ISFSafariExtensionHandling
T:SafariServices.SFAddToHomeScreenActivityItemGetHomeScreenWebAppInfoCallback
@@ -110272,12 +72277,9 @@ T:SafetyKit.ISACrashDetectionDelegate
T:SafetyKit.ISAEmergencyResponseDelegate
T:SafetyKit.SAAuthorizationStatus
T:SafetyKit.SACrashDetectionDelegate
-T:SafetyKit.SACrashDetectionEvent
T:SafetyKit.SACrashDetectionEventResponse
-T:SafetyKit.SACrashDetectionManager
T:SafetyKit.SACrashDetectionManagerRequestAuthorizationCompletionHandler
T:SafetyKit.SAEmergencyResponseDelegate
-T:SafetyKit.SAEmergencyResponseManager
T:SafetyKit.SAEmergencyResponseManagerDialVoiceCallCompletionHandler
T:SafetyKit.SAEmergencyResponseManagerVoiceCallStatus
T:SafetyKit.SAErrorCode
@@ -110285,72 +72287,47 @@ T:SceneKit.ISCNAnimationProtocol
T:SceneKit.ISCNAvoidOccluderConstraintDelegate
T:SceneKit.ISCNCameraControlConfiguration
T:SceneKit.ISCNCameraControllerDelegate
-T:SceneKit.SCNAccelerationConstraint
-T:SceneKit.SCNAnimation
T:SceneKit.SCNAnimationDidStartHandler
T:SceneKit.SCNAnimationDidStopHandler
-T:SceneKit.SCNAnimationPlayer
-T:SceneKit.SCNAvoidOccluderConstraint
T:SceneKit.SCNAvoidOccluderConstraintDelegate
T:SceneKit.SCNBufferBindingHandler
-T:SceneKit.SCNCameraController
T:SceneKit.SCNCameraControllerDelegate
T:SceneKit.SCNCameraProjectionDirection
T:SceneKit.SCNColorMask
-T:SceneKit.SCNDistanceConstraint
T:SceneKit.SCNErrorCode
T:SceneKit.SCNFillMode
-T:SceneKit.SCNGeometryTessellator
T:SceneKit.SCNHitTestSearchMode
T:SceneKit.SCNInteractionMode
T:SceneKit.SCNJavaScript
-T:SceneKit.SCNLayer
T:SceneKit.SCNLightAreaType
T:SceneKit.SCNLightAttribute
T:SceneKit.SCNLightProbeType
T:SceneKit.SCNLightProbeUpdateType
T:SceneKit.SCNNodeHandler
T:SceneKit.SCNParticleProperty
-T:SceneKit.SCNPhysicsConeTwistJoint
T:SceneKit.SCNPhysicsContactEventArgs
T:SceneKit.SCNPhysicsShapeOptions
T:SceneKit.SCNPropertyControllers
-T:SceneKit.SCNReplicatorConstraint
-T:SceneKit.SCNSliderConstraint
T:SceneKit.SCNTessellationSmoothingMode
-T:SceneKit.SCNTimingFunction
T:ScreenCaptureKit.ISCContentSharingPickerObserver
T:ScreenCaptureKit.ISCRecordingOutputDelegate
T:ScreenCaptureKit.ISCStreamDelegate
T:ScreenCaptureKit.ISCStreamOutput
T:ScreenCaptureKit.SCCaptureDynamicRange
T:ScreenCaptureKit.SCCaptureResolutionType
-T:ScreenCaptureKit.SCContentFilter
-T:ScreenCaptureKit.SCContentSharingPicker
-T:ScreenCaptureKit.SCContentSharingPickerConfiguration
T:ScreenCaptureKit.SCContentSharingPickerMode
T:ScreenCaptureKit.SCContentSharingPickerObserver
-T:ScreenCaptureKit.SCDisplay
T:ScreenCaptureKit.SCFrameStatus
T:ScreenCaptureKit.SCPresenterOverlayAlertSetting
-T:ScreenCaptureKit.SCRecordingOutput
-T:ScreenCaptureKit.SCRecordingOutputConfiguration
T:ScreenCaptureKit.SCRecordingOutputDelegate
-T:ScreenCaptureKit.SCRunningApplication
-T:ScreenCaptureKit.SCScreenshotManager
T:ScreenCaptureKit.SCScreenshotManagerCaptureImageCallback
-T:ScreenCaptureKit.SCShareableContent
-T:ScreenCaptureKit.SCShareableContentInfo
T:ScreenCaptureKit.SCShareableContentStyle
-T:ScreenCaptureKit.SCStream
-T:ScreenCaptureKit.SCStreamConfiguration
T:ScreenCaptureKit.SCStreamConfigurationPreset
T:ScreenCaptureKit.SCStreamDelegate
T:ScreenCaptureKit.SCStreamErrorCode
T:ScreenCaptureKit.SCStreamFrameInfoKeys
T:ScreenCaptureKit.SCStreamOutputType
T:ScreenCaptureKit.SCStreamType
-T:ScreenCaptureKit.SCWindow
T:ScreenTime.STScreenTimeConfiguration
T:ScreenTime.STScreenTimeConfigurationObserver
T:ScreenTime.STWebHistory
@@ -110429,92 +72406,47 @@ T:Security.SslStreamConnection
T:Security.TlsCipherSuite
T:Security.TlsCipherSuiteGroup
T:Security.TlsProtocolVersion
-T:SensitiveContentAnalysis.SCSensitivityAnalysis
T:SensitiveContentAnalysis.SCSensitivityAnalysisPolicy
-T:SensitiveContentAnalysis.SCSensitivityAnalyzer
T:SensorKit.ISRSensorReaderDelegate
T:SensorKit.SRAbsoluteTime
T:SensorKit.SRAmbientLightChromaticity
-T:SensorKit.SRAmbientLightSample
T:SensorKit.SRAmbientLightSensorPlacement
-T:SensorKit.SRApplicationUsage
-T:SensorKit.SRAudioLevel
T:SensorKit.SRAuthorizationStatus
T:SensorKit.SRCrownOrientation
T:SensorKit.SRDeletionReason
-T:SensorKit.SRDeletionRecord
-T:SensorKit.SRDevice
T:SensorKit.SRDeviceUsageCategory
-T:SensorKit.SRDeviceUsageReport
-T:SensorKit.SRElectrocardiogramData
T:SensorKit.SRElectrocardiogramDataFlags
T:SensorKit.SRElectrocardiogramLead
-T:SensorKit.SRElectrocardiogramSample
-T:SensorKit.SRElectrocardiogramSession
T:SensorKit.SRElectrocardiogramSessionGuidance
T:SensorKit.SRElectrocardiogramSessionState
T:SensorKit.SRErrorCode
-T:SensorKit.SRFaceMetrics
T:SensorKit.SRFaceMetricsContext
-T:SensorKit.SRFaceMetricsExpression
-T:SensorKit.SRFetchRequest
-T:SensorKit.SRFetchResult`1
-T:SensorKit.SRKeyboardMetrics
T:SensorKit.SRKeyboardMetricsSentimentCategory
-T:SensorKit.SRKeyboardProbabilityMetric`1
T:SensorKit.SRLocationCategory
-T:SensorKit.SRMediaEvent
T:SensorKit.SRMediaEventType
-T:SensorKit.SRMessagesUsageReport
T:SensorKit.SRNotificationEvent
-T:SensorKit.SRNotificationUsage
-T:SensorKit.SRPhoneUsageReport
-T:SensorKit.SRPhotoplethysmogramAccelerometerSample
-T:SensorKit.SRPhotoplethysmogramOpticalSample
T:SensorKit.SRPhotoplethysmogramOpticalSampleCondition
-T:SensorKit.SRPhotoplethysmogramSample
T:SensorKit.SRPhotoplethysmogramSampleUsage
T:SensorKit.SRSensor
-T:SensorKit.SRSensorReader
T:SensorKit.SRSensorReaderDelegate
-T:SensorKit.SRSpeechExpression
-T:SensorKit.SRSpeechMetrics
T:SensorKit.SRSpeechMetricsSessionFlags
-T:SensorKit.SRSupplementalCategory
-T:SensorKit.SRTextInputSession
T:SensorKit.SRTextInputSessionType
-T:SensorKit.SRVisit
-T:SensorKit.SRWebUsage
-T:SensorKit.SRWristDetection
T:SensorKit.SRWristLocation
-T:SensorKit.SRWristTemperature
T:SensorKit.SRWristTemperatureCondition
-T:SensorKit.SRWristTemperatureSession
T:ServiceManagement.SMAppService
T:ServiceManagement.SMAppServiceStatus
T:SharedWithYou.ISWCollaborationViewDelegate
T:SharedWithYou.ISWHighlightCenterDelegate
T:SharedWithYou.ISWHighlightEvent
-T:SharedWithYou.SWAttributionView
T:SharedWithYou.SWAttributionViewBackgroundStyle
T:SharedWithYou.SWAttributionViewDisplayContext
T:SharedWithYou.SWAttributionViewHorizontalAlignment
-T:SharedWithYou.SWCollaborationHighlight
-T:SharedWithYou.SWCollaborationView
T:SharedWithYou.SWCollaborationViewDelegate
-T:SharedWithYou.SWHighlight
-T:SharedWithYou.SWHighlightCenter
T:SharedWithYou.SWHighlightCenterDelegate
T:SharedWithYou.SWHighlightCenterErrorCode
-T:SharedWithYou.SWHighlightChangeEvent
T:SharedWithYou.SWHighlightChangeEventTrigger
-T:SharedWithYou.SWHighlightMembershipEvent
T:SharedWithYou.SWHighlightMembershipEventTrigger
-T:SharedWithYou.SWHighlightMentionEvent
-T:SharedWithYou.SWHighlightPersistenceEvent
T:SharedWithYou.SWHighlightPersistenceEventTrigger
-T:SharedWithYou.SWRemoveParticipantAlert
-T:SharedWithYou.SWRemoveParticipantAlertController
T:SharedWithYouCore.ISWCollaborationActionHandler
T:SharedWithYouCore.SWAction
T:SharedWithYouCore.SWCollaborationCoordinator
@@ -110531,19 +72463,9 @@ T:SharedWithYouCore.SWSignedPersonIdentityProof
T:SharedWithYouCore.SWStartCollaborationAction
T:SharedWithYouCore.SWUpdateCollaborationParticipantsAction
T:ShazamKit.ISHSessionDelegate
-T:ShazamKit.SHCatalog
-T:ShazamKit.SHCustomCatalog
T:ShazamKit.SHErrorCode
-T:ShazamKit.SHMatch
-T:ShazamKit.SHMatchedMediaItem
-T:ShazamKit.SHMediaItem
T:ShazamKit.SHMediaItemProperty
-T:ShazamKit.SHMediaLibrary
-T:ShazamKit.SHRange
-T:ShazamKit.SHSession
T:ShazamKit.SHSessionDelegate
-T:ShazamKit.SHSignature
-T:ShazamKit.SHSignatureGenerator
T:Social.SLRequestResult
T:SoundAnalysis.ISNRequest
T:SoundAnalysis.ISNResult
@@ -110558,13 +72480,8 @@ T:SoundAnalysis.SNClassifySoundRequest
T:SoundAnalysis.SNErrorCode
T:SoundAnalysis.SNTimeDurationConstraint
T:SoundAnalysis.SNTimeDurationConstraintType
-T:Speech.SFAcousticFeature
T:Speech.SFSpeechErrorCode
-T:Speech.SFSpeechLanguageModel
-T:Speech.SFSpeechLanguageModelConfiguration
-T:Speech.SFSpeechRecognitionMetadata
T:Speech.SFSpeechRecognitionTaskHint
-T:Speech.SFVoiceAnalytics
T:SpriteKit.SKNodeEvent_NSEvent
T:SpriteKit.SKTextureAtlasLoadCallback
T:SpriteKit.SKTextureAtlasLoadResult
@@ -110573,63 +72490,23 @@ T:StoreKit.ISKPaymentQueueDelegate
T:StoreKit.ISKPaymentTransactionObserver
T:StoreKit.ISKProductsRequestDelegate
T:StoreKit.ISKRequestDelegate
-T:StoreKit.SKAdImpression
-T:StoreKit.SKAdNetwork
T:StoreKit.SKAdNetworkCoarseConversionValue
T:StoreKit.SKANError
-T:StoreKit.SKArcadeService
T:StoreKit.SKArcadeServiceRegisterHandler
T:StoreKit.SKArcadeServiceSubscriptionHandler
-T:StoreKit.SKCloudServiceController
T:StoreKit.SKCloudServiceSetupMessageIdentifier
-T:StoreKit.SKDownload
-T:StoreKit.SKMutablePayment
-T:StoreKit.SKOverlay
-T:StoreKit.SKOverlayAppClipConfiguration
-T:StoreKit.SKOverlayAppConfiguration
-T:StoreKit.SKOverlayConfiguration
T:StoreKit.SKOverlayDelegate
T:StoreKit.SKOverlayPosition
-T:StoreKit.SKOverlayTransitionContext
-T:StoreKit.SKPayment
-T:StoreKit.SKPaymentDiscount
-T:StoreKit.SKPaymentQueue
T:StoreKit.SKPaymentQueueDelegate
-T:StoreKit.SKPaymentTransaction
T:StoreKit.SKPaymentTransactionObserver
-T:StoreKit.SKProduct
-T:StoreKit.SKProductDiscount
T:StoreKit.SKProductDiscountType
-T:StoreKit.SKProductsRequest
T:StoreKit.SKProductsRequestDelegate
T:StoreKit.SKProductsRequestResponseEventArgs
-T:StoreKit.SKProductsResponse
-T:StoreKit.SKProductStorePromotionController
-T:StoreKit.SKProductSubscriptionPeriod
T:StoreKit.SKReceiptProperties
-T:StoreKit.SKReceiptRefreshRequest
-T:StoreKit.SKRequest
T:StoreKit.SKRequestDelegate
T:StoreKit.SKRequestErrorEventArgs
-T:StoreKit.SKStorefront
T:StoreKit.SKStoreProductParameterKey
T:StoreKit.StoreProductParameters
-T:Symbols.NSSymbolAppearEffect
-T:Symbols.NSSymbolAutomaticContentTransition
-T:Symbols.NSSymbolBounceEffect
-T:Symbols.NSSymbolBreatheEffect
-T:Symbols.NSSymbolContentTransition
-T:Symbols.NSSymbolDisappearEffect
-T:Symbols.NSSymbolEffect
-T:Symbols.NSSymbolEffectOptions
-T:Symbols.NSSymbolEffectOptionsRepeatBehavior
-T:Symbols.NSSymbolMagicReplaceContentTransition
-T:Symbols.NSSymbolPulseEffect
-T:Symbols.NSSymbolReplaceContentTransition
-T:Symbols.NSSymbolRotateEffect
-T:Symbols.NSSymbolScaleEffect
-T:Symbols.NSSymbolVariableColorEffect
-T:Symbols.NSSymbolWiggleEffect
T:System.Net.Http.CFNetworkHandler
T:System.Net.Http.NSUrlSessionHandler
T:System.Net.Http.NSUrlSessionHandlerTrustOverrideForUrlCallback
@@ -110638,56 +72515,34 @@ T:SystemConfiguration.NetworkReachability.Notification
T:SystemConfiguration.NetworkReachabilityFlags
T:SystemConfiguration.StatusCodeError
T:SystemConfiguration.SystemConfigurationException
-T:ThreadNetwork.THClient
-T:ThreadNetwork.THCredentials
T:TVMLKit.ITVApplicationControllerDelegate
T:TVMLKit.ITVBrowserViewControllerDataSource
T:TVMLKit.ITVBrowserViewControllerDelegate
T:TVMLKit.ITVDocumentViewControllerDelegate
T:TVMLKit.ITVInterfaceCreating
T:TVMLKit.ITVPlaybackEventMarshaling
-T:TVMLKit.TVApplicationController
-T:TVMLKit.TVApplicationControllerContext
T:TVMLKit.TVApplicationControllerDelegate
-T:TVMLKit.TVBrowserTransitionAnimator
-T:TVMLKit.TVBrowserViewController
T:TVMLKit.TVBrowserViewControllerDataSource
T:TVMLKit.TVBrowserViewControllerDelegate
-T:TVMLKit.TVColor
T:TVMLKit.TVColorType
T:TVMLKit.TVDocumentError
T:TVMLKit.TVDocumentEvent
-T:TVMLKit.TVDocumentViewController
T:TVMLKit.TVDocumentViewControllerDelegate
T:TVMLKit.TVElementAlignment
T:TVMLKit.TVElementContentAlignment
T:TVMLKit.TVElementEventType
-T:TVMLKit.TVElementFactory
T:TVMLKit.TVElementPosition
T:TVMLKit.TVElementResettableProperty
T:TVMLKit.TVElementUpdateType
-T:TVMLKit.TVHighlight
-T:TVMLKit.TVHighlightGroup
-T:TVMLKit.TVImageElement
T:TVMLKit.TVImageType
-T:TVMLKit.TVInterfaceFactory
-T:TVMLKit.TVMediaItem
T:TVMLKit.TVMediaItemContentRatingDomain
T:TVMLKit.TVMediaItemType
T:TVMLKit.TVMLKitError
-T:TVMLKit.TVPlaybackCustomEventUserInfo
T:TVMLKit.TVPlaybackState
-T:TVMLKit.TVPlayer
-T:TVMLKit.TVPlaylist
T:TVMLKit.TVPlaylistEndAction
T:TVMLKit.TVPlaylistRepeatMode
-T:TVMLKit.TVStyleFactory
-T:TVMLKit.TVTextElement
T:TVMLKit.TVTextElementStyle
-T:TVMLKit.TVTimeRange
-T:TVMLKit.TVViewElement
T:TVMLKit.TVViewElementDispatchResult
-T:TVMLKit.TVViewElementStyle
T:TVMLKit.TVViewElementStyleType
T:TVServices.ITVTopShelfContent
T:TVServices.ITVTopShelfProvider
@@ -110718,26 +72573,9 @@ T:TVServices.TVUserActivityType
T:TVServices.TVUserManager
T:TVUIKit.ITVCollectionViewDelegateFullScreenLayout
T:TVUIKit.ITVLockupViewComponent
-T:TVUIKit.TVCaptionButtonView
T:TVUIKit.TVCaptionButtonViewMotionDirection
-T:TVUIKit.TVCardView
T:TVUIKit.TVCollectionViewDelegateFullScreenLayout
-T:TVUIKit.TVCollectionViewFullScreenCell
-T:TVUIKit.TVCollectionViewFullScreenLayout
-T:TVUIKit.TVCollectionViewFullScreenLayoutAttributes
-T:TVUIKit.TVDigitEntryViewController
-T:TVUIKit.TVLockupHeaderFooterView
-T:TVUIKit.TVLockupView
-T:TVUIKit.TVMediaItemContentBadgeProperties
-T:TVUIKit.TVMediaItemContentConfiguration
-T:TVUIKit.TVMediaItemContentTextProperties
T:TVUIKit.TVMediaItemContentTextTransform
-T:TVUIKit.TVMediaItemContentView
-T:TVUIKit.TVMonogramContentConfiguration
-T:TVUIKit.TVMonogramContentTextProperties
-T:TVUIKit.TVMonogramContentView
-T:TVUIKit.TVMonogramView
-T:TVUIKit.TVPosterView
T:Twitter.TWRequestMethod
T:Twitter.TWRequestResult
T:Twitter.TWTweetComposeViewControllerResult
@@ -110901,29 +72739,12 @@ T:UIKit.IUIViewControllerTransitioningDelegate
T:UIKit.IUIViewImplicitlyAnimating
T:UIKit.IUIWindowSceneDelegate
T:UIKit.IUIWritingToolsCoordinatorDelegate
-T:UIKit.NSAdaptiveImageGlyph
T:UIKit.NSAttributedString_NSAttributedStringKitAdditions
T:UIKit.NSAttributedStringDocumentReadingOptions
T:UIKit.NSAttributedStringDocumentType
T:UIKit.NSCoder_UIGeometryKeyedCoding
-T:UIKit.NSCollectionLayoutAnchor
-T:UIKit.NSCollectionLayoutBoundarySupplementaryItem
-T:UIKit.NSCollectionLayoutDecorationItem
-T:UIKit.NSCollectionLayoutDimension
-T:UIKit.NSCollectionLayoutEdgeSpacing
-T:UIKit.NSCollectionLayoutGroup
-T:UIKit.NSCollectionLayoutGroupCustomItem
T:UIKit.NSCollectionLayoutGroupCustomItemProvider
-T:UIKit.NSCollectionLayoutItem
-T:UIKit.NSCollectionLayoutSection
T:UIKit.NSCollectionLayoutSectionVisibleItemsInvalidationHandler
-T:UIKit.NSCollectionLayoutSize
-T:UIKit.NSCollectionLayoutSpacing
-T:UIKit.NSCollectionLayoutSupplementaryItem
-T:UIKit.NSDiffableDataSourceSectionSnapshot`1
-T:UIKit.NSDiffableDataSourceSectionTransaction`2
-T:UIKit.NSDiffableDataSourceSnapshot`2
-T:UIKit.NSDiffableDataSourceTransaction`2
T:UIKit.NSDirectionalEdgeInsets
T:UIKit.NSDirectionalRectEdge
T:UIKit.NSIdentifier
@@ -110936,50 +72757,35 @@ T:UIKit.NSObject_UIAccessibilityTextOperations
T:UIKit.NSPreviewInteractionPreviewUpdateEventArgs
T:UIKit.NSRectAlignment
T:UIKit.NSStringDrawing
-T:UIKit.NSTextAttachmentViewProvider
-T:UIKit.NSTextContentManager
T:UIKit.NSTextContentManagerDelegate
T:UIKit.NSTextContentManagerEnumerationOptions
-T:UIKit.NSTextContentStorage
T:UIKit.NSTextContentStorageDelegate
T:UIKit.NSTextEffect
-T:UIKit.NSTextElement
T:UIKit.NSTextHighlightColorScheme
T:UIKit.NSTextHighlightStyle
-T:UIKit.NSTextLayoutFragment
T:UIKit.NSTextLayoutFragmentEnumerationOptions
T:UIKit.NSTextLayoutFragmentState
-T:UIKit.NSTextLayoutManager
T:UIKit.NSTextLayoutManagerDelegate
T:UIKit.NSTextLayoutManagerEnumerateRenderingAttributesDelegate
T:UIKit.NSTextLayoutManagerEnumerateTextSegmentsDelegate
T:UIKit.NSTextLayoutManagerSegmentOptions
T:UIKit.NSTextLayoutManagerSegmentType
-T:UIKit.NSTextLineFragment
-T:UIKit.NSTextList
-T:UIKit.NSTextListElement
T:UIKit.NSTextListMarkerFormats
T:UIKit.NSTextListOptions
-T:UIKit.NSTextParagraph
-T:UIKit.NSTextRange
T:UIKit.NSTextScalingType
-T:UIKit.NSTextSelection
T:UIKit.NSTextSelectionAffinity
T:UIKit.NSTextSelectionDataSource
T:UIKit.NSTextSelectionDataSourceEnumerateCaretOffsetsDelegate
T:UIKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate
T:UIKit.NSTextSelectionDataSourceEnumerateSubstringsDelegate
T:UIKit.NSTextSelectionGranularity
-T:UIKit.NSTextSelectionNavigation
T:UIKit.NSTextSelectionNavigationDestination
T:UIKit.NSTextSelectionNavigationDirection
T:UIKit.NSTextSelectionNavigationLayoutOrientation
T:UIKit.NSTextSelectionNavigationModifier
T:UIKit.NSTextSelectionNavigationWritingDirection
T:UIKit.NSTextStorageEventArgs
-T:UIKit.NSTextViewportLayoutController
T:UIKit.NSTextViewportLayoutControllerDelegate
-T:UIKit.NSUIViewToolbarItem
T:UIKit.NSWritingDirectionFormatType
T:UIKit.OptionsMenuProviderHandler
T:UIKit.TransitionCoordinator_UIViewController
@@ -110989,16 +72795,11 @@ T:UIKit.UIAccessibilityAnnouncementFinishedEventArgs
T:UIKit.UIAccessibilityContainerDataTable
T:UIKit.UIAccessibilityContainerType
T:UIKit.UIAccessibilityContrast
-T:UIKit.UIAccessibilityCustomAction
T:UIKit.UIAccessibilityCustomActionHandler
-T:UIKit.UIAccessibilityCustomRotor
T:UIKit.UIAccessibilityCustomRotorDirection
-T:UIKit.UIAccessibilityCustomRotorItemResult
T:UIKit.UIAccessibilityCustomRotorSearch
-T:UIKit.UIAccessibilityCustomRotorSearchPredicate
T:UIKit.UIAccessibilityCustomSystemRotorType
T:UIKit.UIAccessibilityDirectTouchOptions
-T:UIKit.UIAccessibilityElement
T:UIKit.UIAccessibilityExpandedStatus
T:UIKit.UIAccessibilityNavigationStyle
T:UIKit.UIAccessibilityPostNotification
@@ -111008,14 +72809,10 @@ T:UIKit.UIAccessibilityTextualContext
T:UIKit.UIAccessibilityTrait
T:UIKit.UIAccessibilityTraits
T:UIKit.UIAccessibilityZoomType
-T:UIKit.UIAction
T:UIKit.UIActionHandler
T:UIKit.UIActionIdentifier
T:UIKit.UIActivityCollaborationMode
-T:UIKit.UIActivityCollaborationModeRestriction
-T:UIKit.UIActivityIndicatorView
T:UIKit.UIActivityIndicatorViewStyle
-T:UIKit.UIActivityItemsConfiguration
T:UIKit.UIActivityItemsConfigurationInteraction
T:UIKit.UIActivityItemsConfigurationMetadataKey
T:UIKit.UIActivityItemsConfigurationMetadataProviderHandler
@@ -111024,14 +72821,11 @@ T:UIKit.UIActivityItemsConfigurationPreviewIntent
T:UIKit.UIActivityItemsConfigurationPreviewProviderHandler
T:UIKit.UIActivitySectionTypes
T:UIKit.UIAdaptivePresentationControllerDelegate
-T:UIKit.UIAlertAction
T:UIKit.UIAlertActionStyle
-T:UIKit.UIAlertController
T:UIKit.UIAlertControllerSeverity
T:UIKit.UIAlertControllerStyle
T:UIKit.UIAppearance
T:UIKit.UIAppearanceContainer
-T:UIKit.UIApplication
T:UIKit.UIApplication_DefaultApplication
T:UIKit.UIApplicationCategory
T:UIKit.UIApplicationCategoryDefaultErrorCode
@@ -111041,34 +72835,21 @@ T:UIKit.UIApplicationLaunchEventArgs
T:UIKit.UIApplicationOpenUrlOptions
T:UIKit.UIApplicationRestorationHandler
T:UIKit.UIApplicationState
-T:UIKit.UIAttachmentBehavior
T:UIKit.UIAttachmentBehaviorType
T:UIKit.UIAxis
-T:UIKit.UIBackgroundConfiguration
T:UIKit.UIBackgroundFetchResult
T:UIKit.UIBackgroundRefreshStatus
-T:UIKit.UIBandSelectionInteraction
T:UIKit.UIBandSelectionInteractionShouldBeginHandler
T:UIKit.UIBandSelectionInteractionState
-T:UIKit.UIBarAppearance
-T:UIKit.UIBarButtonItem
-T:UIKit.UIBarButtonItemAppearance
-T:UIKit.UIBarButtonItemGroup
-T:UIKit.UIBarButtonItemStateAppearance
T:UIKit.UIBarButtonItemStyle
T:UIKit.UIBarButtonSystemItem
-T:UIKit.UIBarItem
T:UIKit.UIBarMetrics
T:UIKit.UIBarPosition
T:UIKit.UIBarPositioning
T:UIKit.UIBarPositioningDelegate
T:UIKit.UIBaselineAdjustment
T:UIKit.UIBehavioralStyle
-T:UIKit.UIBezierPath
-T:UIKit.UIBlurEffect
T:UIKit.UIBlurEffectStyle
-T:UIKit.UIButton
-T:UIKit.UIButtonConfiguration
T:UIKit.UIButtonConfigurationCornerStyle
T:UIKit.UIButtonConfigurationIndicator
T:UIKit.UIButtonConfigurationMacIdiomStyle
@@ -111079,37 +72860,17 @@ T:UIKit.UIButtonEventArgs
T:UIKit.UIButtonPointerStyleProvider
T:UIKit.UIButtonRole
T:UIKit.UIButtonType
-T:UIKit.UICalendarSelection
-T:UIKit.UICalendarSelectionMultiDate
T:UIKit.UICalendarSelectionMultiDateDelegate
-T:UIKit.UICalendarSelectionSingleDate
T:UIKit.UICalendarSelectionSingleDateDelegate
-T:UIKit.UICalendarSelectionWeekOfYear
T:UIKit.UICalendarSelectionWeekOfYearDelegate
-T:UIKit.UICalendarView
-T:UIKit.UICalendarViewDecoration
T:UIKit.UICalendarViewDecorationSize
T:UIKit.UICalendarViewDelegate
-T:UIKit.UICanvasFeedbackGenerator
-T:UIKit.UICellAccessory
-T:UIKit.UICellAccessoryCheckmark
-T:UIKit.UICellAccessoryCustomView
-T:UIKit.UICellAccessoryDelete
-T:UIKit.UICellAccessoryDetail
-T:UIKit.UICellAccessoryDisclosureIndicator
T:UIKit.UICellAccessoryDisplayedState
-T:UIKit.UICellAccessoryInsert
-T:UIKit.UICellAccessoryLabel
-T:UIKit.UICellAccessoryMultiselect
-T:UIKit.UICellAccessoryOutlineDisclosure
T:UIKit.UICellAccessoryOutlineDisclosureStyle
T:UIKit.UICellAccessoryPlacement
-T:UIKit.UICellAccessoryPopUpMenu
T:UIKit.UICellAccessoryPosition
-T:UIKit.UICellAccessoryReorder
T:UIKit.UICellConfigurationDragState
T:UIKit.UICellConfigurationDropState
-T:UIKit.UICellConfigurationState
T:UIKit.UICGFloatTraitDefinition
T:UIKit.UICloudSharingControllerPreparationCompletionHandler
T:UIKit.UICloudSharingControllerPreparationHandler
@@ -111117,7 +72878,6 @@ T:UIKit.UICollectionElementCategory
T:UIKit.UICollectionElementKindSection
T:UIKit.UICollectionElementKindSectionKey
T:UIKit.UICollectionLayoutListAppearance
-T:UIKit.UICollectionLayoutListConfiguration
T:UIKit.UICollectionLayoutListContentHuggingElements
T:UIKit.UICollectionLayoutListFooterMode
T:UIKit.UICollectionLayoutListHeaderMode
@@ -111126,59 +72886,31 @@ T:UIKit.UICollectionLayoutListSwipeActionsConfigurationProvider
T:UIKit.UICollectionLayoutSectionOrthogonalScrollingBehavior
T:UIKit.UICollectionLayoutSectionOrthogonalScrollingBounce
T:UIKit.UICollectionLayoutSectionOrthogonalScrollingDecelerationRate
-T:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties
-T:UIKit.UICollectionReusableView
T:UIKit.UICollectionUpdateAction
-T:UIKit.UICollectionView
-T:UIKit.UICollectionViewCell
T:UIKit.UICollectionViewCellConfigurationUpdateHandler
-T:UIKit.UICollectionViewCellRegistration
T:UIKit.UICollectionViewCellRegistrationConfigurationHandler
-T:UIKit.UICollectionViewCompositionalLayout
-T:UIKit.UICollectionViewCompositionalLayoutConfiguration
T:UIKit.UICollectionViewCompositionalLayoutSectionProvider
-T:UIKit.UICollectionViewController
T:UIKit.UICollectionViewDataSource
T:UIKit.UICollectionViewDelegate
T:UIKit.UICollectionViewDelegateFlowLayout
-T:UIKit.UICollectionViewDiffableDataSource`2
T:UIKit.UICollectionViewDiffableDataSourceCellProvider
-T:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2
-T:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1
T:UIKit.UICollectionViewDiffableDataSourceSupplementaryViewProvider
-T:UIKit.UICollectionViewFlowLayout
-T:UIKit.UICollectionViewFlowLayoutInvalidationContext
T:UIKit.UICollectionViewFlowLayoutSectionInsetReference
-T:UIKit.UICollectionViewFocusUpdateContext
-T:UIKit.UICollectionViewLayout
-T:UIKit.UICollectionViewLayoutAttributes
T:UIKit.UICollectionViewLayoutInteractiveTransitionCompletion
-T:UIKit.UICollectionViewLayoutInvalidationContext
-T:UIKit.UICollectionViewListCell
-T:UIKit.UICollectionViewPlaceholder
T:UIKit.UICollectionViewScrollDirection
T:UIKit.UICollectionViewScrollPosition
T:UIKit.UICollectionViewSelfSizingInvalidation
T:UIKit.UICollectionViewSource
-T:UIKit.UICollectionViewSupplementaryRegistration
T:UIKit.UICollectionViewSupplementaryRegistrationConfigurationHandler
-T:UIKit.UICollectionViewTransitionLayout
T:UIKit.UICollectionViewTransitionResult
-T:UIKit.UICollectionViewUpdateItem
T:UIKit.UICollisionBeganBoundaryContactEventArgs
T:UIKit.UICollisionBeganContactEventArgs
-T:UIKit.UICollisionBehavior
T:UIKit.UICollisionBehaviorDelegate
T:UIKit.UICollisionBehaviorMode
T:UIKit.UICollisionEndedBoundaryContactEventArgs
T:UIKit.UICollisionEndedContactEventArgs
-T:UIKit.UIColor
-T:UIKit.UIColorPickerViewController
T:UIKit.UIColorPickerViewControllerDelegate
T:UIKit.UIColorProminence
-T:UIKit.UIColorWell
-T:UIKit.UICommand
-T:UIKit.UICommandAlternate
T:UIKit.UICompletionHandler
T:UIKit.UIConfigurationColorTransformer
T:UIKit.UIConfigurationColorTransformerHandler
@@ -111188,21 +72920,12 @@ T:UIKit.UIContentInsetsReference
T:UIKit.UIContentSizeCategory
T:UIKit.UIContentSizeCategoryChangedEventArgs
T:UIKit.UIContentUnavailableAlignment
-T:UIKit.UIContentUnavailableButtonProperties
-T:UIKit.UIContentUnavailableConfiguration
-T:UIKit.UIContentUnavailableConfigurationState
-T:UIKit.UIContentUnavailableImageProperties
-T:UIKit.UIContentUnavailableTextProperties
-T:UIKit.UIContentUnavailableView
T:UIKit.UIContextMenuActionProvider
-T:UIKit.UIContextMenuConfiguration
T:UIKit.UIContextMenuConfigurationElementOrder
T:UIKit.UIContextMenuContentPreviewProvider
-T:UIKit.UIContextMenuInteraction
T:UIKit.UIContextMenuInteractionAppearance
T:UIKit.UIContextMenuInteractionCommitStyle
T:UIKit.UIContextMenuInteractionDelegate
-T:UIKit.UIControl
T:UIKit.UIControlContentHorizontalAlignment
T:UIKit.UIControlContentVerticalAlignment
T:UIKit.UIControlEnumerateEventsIteratorHandler
@@ -111210,75 +72933,43 @@ T:UIKit.UIControlEvent
T:UIKit.UIControlState
T:UIKit.UICoordinateSpace
T:UIKit.UICornerCurve
-T:UIKit.UICubicTimingParameters
T:UIKit.UIDatePickerStyle
-T:UIKit.UIDeferredMenuElement
T:UIKit.UIDeferredMenuElementCompletionHandler
T:UIKit.UIDeferredMenuElementProviderHandler
-T:UIKit.UIDevice
T:UIKit.UIDeviceOrientationExtensions
-T:UIKit.UIDictationPhrase
T:UIKit.UIDisplayGamut
T:UIKit.UIDocumentCreationIntent
T:UIKit.UIDocumentMenuDocumentPickedEventArgs
T:UIKit.UIDocumentPickedAtUrlsEventArgs
T:UIKit.UIDocumentPickedEventArgs
-T:UIKit.UIDocumentProperties
T:UIKit.UIDocumentSendingToApplicationEventArgs
-T:UIKit.UIDocumentViewControllerLaunchOptions
-T:UIKit.UIDocViewController
T:UIKit.UIDragDropSessionExtensions
-T:UIKit.UIDynamicAnimator
T:UIKit.UIDynamicAnimatorDelegate
-T:UIKit.UIDynamicBehavior
T:UIKit.UIDynamicItem
-T:UIKit.UIDynamicItemBehavior
T:UIKit.UIDynamicItemCollisionBoundsType
-T:UIKit.UIDynamicItemGroup
T:UIKit.UIEdgeInsets
T:UIKit.UIEditingInteractionConfiguration
T:UIKit.UIEditMenuArrowDirection
-T:UIKit.UIEditMenuConfiguration
-T:UIKit.UIEditMenuInteraction
T:UIKit.UIEditMenuInteractionDelegate
-T:UIKit.UIEvent
-T:UIKit.UIEventAttribution
-T:UIKit.UIEventAttributionView
T:UIKit.UIEventButtonMask
T:UIKit.UIEventButtonMaskExtensions
T:UIKit.UIEventSubtype
T:UIKit.UIEventType
T:UIKit.UIExtensionPointIdentifier
-T:UIKit.UIFieldBehavior
T:UIKit.UIFieldCustomEvaluator
-T:UIKit.UIFindInteraction
T:UIKit.UIFindInteractionDelegate
-T:UIKit.UIFindSession
T:UIKit.UIFindSessionSearchResultDisplayStyle
T:UIKit.UIFloatRange
-T:UIKit.UIFocusAnimationCoordinator
-T:UIKit.UIFocusDebugger
-T:UIKit.UIFocusEffect
T:UIKit.UIFocusGroupPriority
-T:UIKit.UIFocusGuide
-T:UIKit.UIFocusHaloEffect
T:UIKit.UIFocusHaloEffectPosition
T:UIKit.UIFocusHeading
T:UIKit.UIFocusItemDeferralMode
-T:UIKit.UIFocusMovementHint
T:UIKit.UIFocusSoundIdentifier
-T:UIKit.UIFocusSystem
-T:UIKit.UIFocusUpdateContext
-T:UIKit.UIFont
T:UIKit.UIFontAttributes
-T:UIKit.UIFontDescriptor
T:UIKit.UIFontDescriptorAttribute
T:UIKit.UIFontDescriptorSymbolicTraits
T:UIKit.UIFontDescriptorSystemDesign
T:UIKit.UIFontFeature
-T:UIKit.UIFontMetrics
-T:UIKit.UIFontPickerViewController
-T:UIKit.UIFontPickerViewControllerConfiguration
T:UIKit.UIFontPickerViewControllerDelegate
T:UIKit.UIFontTextStyle
T:UIKit.UIFontTraits
@@ -111288,7 +72979,6 @@ T:UIKit.UIFontWeightExtensions
T:UIKit.UIFontWidth
T:UIKit.UIForceTouchCapability
T:UIKit.UIGestureProbe
-T:UIKit.UIGestureRecognizer
T:UIKit.UIGestureRecognizer.ParameterlessDispatch
T:UIKit.UIGestureRecognizer.ParametrizedDispatch
T:UIKit.UIGestureRecognizer.Token
@@ -111298,126 +72988,71 @@ T:UIKit.UIGesturesEvent
T:UIKit.UIGesturesPress
T:UIKit.UIGesturesProbe
T:UIKit.UIGraphics
-T:UIKit.UIGraphicsImageRenderer
-T:UIKit.UIGraphicsImageRendererContext
-T:UIKit.UIGraphicsImageRendererFormat
T:UIKit.UIGraphicsImageRendererFormatRange
-T:UIKit.UIGraphicsPdfRenderer
-T:UIKit.UIGraphicsPdfRendererContext
-T:UIKit.UIGraphicsPdfRendererFormat
-T:UIKit.UIGraphicsRenderer
-T:UIKit.UIGraphicsRendererContext
-T:UIKit.UIGraphicsRendererFormat
-T:UIKit.UIGravityBehavior
T:UIKit.UIGuidedAccessAccessibilityFeature
T:UIKit.UIGuidedAccessErrorCode
T:UIKit.UIGuidedAccessRestriction
T:UIKit.UIGuidedAccessRestriction.UIGuidedAccessConfigureAccessibilityFeaturesCompletionHandler
T:UIKit.UIGuidedAccessRestrictionState
-T:UIKit.UIHoverAutomaticEffect
-T:UIKit.UIHoverGestureRecognizer
-T:UIKit.UIHoverHighlightEffect
-T:UIKit.UIHoverLiftEffect
-T:UIKit.UIHoverStyle
-T:UIKit.UIImage
T:UIKit.UIImage.SaveStatus
-T:UIKit.UIImageAsset
-T:UIKit.UIImageConfiguration
T:UIKit.UIImageDynamicRange
T:UIKit.UIImageOrientation
T:UIKit.UIImagePickerMediaPickedEventArgs
-T:UIKit.UIImageReader
-T:UIKit.UIImageReaderConfiguration
T:UIKit.UIImageRenderingMode
T:UIKit.UIImageResizingMode
T:UIKit.UIImageResizingModeExtensions
-T:UIKit.UIImageSymbolConfiguration
T:UIKit.UIImageSymbolScale
T:UIKit.UIImageSymbolWeight
-T:UIKit.UIImageView
-T:UIKit.UIIndirectScribbleInteraction
T:UIKit.UIIndirectScribbleInteractionDelegate
-T:UIKit.UIInputView
-T:UIKit.UIInputViewController
T:UIKit.UIInputViewStyle
T:UIKit.UIInterfaceOrientationExtensions
-T:UIKit.UIInterpolatingMotionEffect
T:UIKit.UIInterpolatingMotionEffectType
-T:UIKit.UIKey
T:UIKit.UIKeyboardAppearance
T:UIKit.UIKeyboardEventArgs
T:UIKit.UIKeyboardHidUsage
-T:UIKit.UIKeyboardLayoutGuide
T:UIKit.UIKeyboardType
-T:UIKit.UIKeyCommand
T:UIKit.UIKeyModifierFlags
T:UIKit.UIKitThreadAccessException
-T:UIKit.UILabel
T:UIKit.UILabelVibrancy
-T:UIKit.UILargeContentViewerInteraction
T:UIKit.UILargeContentViewerInteractionDelegate
T:UIKit.UILayoutConstraintAxis
-T:UIKit.UILayoutGuide
T:UIKit.UILayoutGuide_UIConstraintBasedLayoutDebugging
T:UIKit.UILayoutPriority
T:UIKit.UILayoutSupport
T:UIKit.UILegibilityWeight
T:UIKit.UILetterformAwareSizingRule
T:UIKit.UILineBreakMode
-T:UIKit.UIListContentConfiguration
-T:UIKit.UIListContentImageProperties
T:UIKit.UIListContentTextAlignment
-T:UIKit.UIListContentTextProperties
T:UIKit.UIListContentTextTransform
-T:UIKit.UIListContentView
T:UIKit.UIListEnvironment
-T:UIKit.UIListSeparatorConfiguration
T:UIKit.UIListSeparatorVisibility
-T:UIKit.UILocalizedIndexedCollation
-T:UIKit.UILongPressGestureRecognizer
-T:UIKit.UIMenu
-T:UIKit.UIMenuDisplayPreferences
-T:UIKit.UIMenuElement
T:UIKit.UIMenuElementAttributes
T:UIKit.UIMenuElementSize
T:UIKit.UIMenuElementState
T:UIKit.UIMenuIdentifier
T:UIKit.UIMenuOptions
-T:UIKit.UIMenuSystem
T:UIKit.UIModalPresentationStyle
T:UIKit.UIModalTransitionStyle
-T:UIKit.UIMotionEffect
-T:UIKit.UIMotionEffectGroup
T:UIKit.UIMutableTraits
-T:UIKit.UINavigationBar
-T:UIKit.UINavigationBarAppearance
T:UIKit.UINavigationBarDelegate
T:UIKit.UINavigationBarNSToolbarSection
-T:UIKit.UINavigationController
T:UIKit.UINavigationControllerDelegate
T:UIKit.UINavigationControllerOperation
-T:UIKit.UINavigationItem
T:UIKit.UINavigationItemBackButtonDisplayMode
T:UIKit.UINavigationItemLargeTitleDisplayMode
T:UIKit.UINavigationItemRenameDelegate
T:UIKit.UINavigationItemSearchBarPlacement
T:UIKit.UINavigationItemStyle
-T:UIKit.UINib
T:UIKit.UINSIntegerTraitDefinition
T:UIKit.UINSToolbarItemPresentationSize
T:UIKit.UIObjectRestoration
T:UIKit.UIObjectTraitDefinition
T:UIKit.UIOffset
-T:UIKit.UIOpenUrlContext
-T:UIKit.UIPageControl
T:UIKit.UIPageControlBackgroundStyle
T:UIKit.UIPageControlDirection
T:UIKit.UIPageControlInteractionState
-T:UIKit.UIPageControlProgress
T:UIKit.UIPageControlProgressDelegate
-T:UIKit.UIPageControlTimerProgress
T:UIKit.UIPageControlTimerProgressDelegate
-T:UIKit.UIPageViewController
T:UIKit.UIPageViewControllerDataSource
T:UIKit.UIPageViewControllerDelegate
T:UIKit.UIPageViewControllerNavigationDirection
@@ -111429,101 +73064,48 @@ T:UIKit.UIPageViewFinishedAnimationEventArgs
T:UIKit.UIPageViewGetNumber
T:UIKit.UIPageViewGetViewController
T:UIKit.UIPageViewSpineLocationCallback
-T:UIKit.UIPanGestureRecognizer
T:UIKit.UIPasteboardChangeEventArgs
T:UIKit.UIPasteboardDetectionPattern
T:UIKit.UIPasteboardOptionKeys
-T:UIKit.UIPasteControl
-T:UIKit.UIPasteControlConfiguration
T:UIKit.UIPasteControlDisplayMode
T:UIKit.UIPathEventArgs
-T:UIKit.UIPencilHoverPose
-T:UIKit.UIPencilInteraction
T:UIKit.UIPencilInteractionDelegate
T:UIKit.UIPencilInteractionPhase
-T:UIKit.UIPencilInteractionSqueeze
-T:UIKit.UIPencilInteractionTap
T:UIKit.UIPencilPreferredAction
-T:UIKit.UIPercentDrivenInteractiveTransition
-T:UIKit.UIPointerAccessory
T:UIKit.UIPointerAccessoryPosition
-T:UIKit.UIPointerEffect
T:UIKit.UIPointerEffectTintMode
-T:UIKit.UIPointerHighlightEffect
-T:UIKit.UIPointerHoverEffect
-T:UIKit.UIPointerInteraction
T:UIKit.UIPointerInteractionDelegate
-T:UIKit.UIPointerLiftEffect
-T:UIKit.UIPointerLockState
T:UIKit.UIPointerLockStateDidChangeEventArgs
-T:UIKit.UIPointerRegion
-T:UIKit.UIPointerRegionRequest
-T:UIKit.UIPointerShape
-T:UIKit.UIPointerStyle
T:UIKit.UIPopoverArrowDirection
-T:UIKit.UIPopoverBackgroundView
-T:UIKit.UIPopoverController
T:UIKit.UIPopoverControllerCondition
T:UIKit.UIPopoverControllerDelegate
T:UIKit.UIPopoverControllerRepositionEventArgs
T:UIKit.UIPopoverPresentationControllerRepositionEventArgs
-T:UIKit.UIPresentationController
-T:UIKit.UIPress
-T:UIKit.UIPressesEvent
T:UIKit.UIPressPhase
T:UIKit.UIPressType
-T:UIKit.UIPreviewAction
-T:UIKit.UIPreviewActionGroup
T:UIKit.UIPreviewActionStyle
T:UIKit.UIPreviewHandler
-T:UIKit.UIPreviewParameters
-T:UIKit.UIPreviewTarget
-T:UIKit.UIPrinterDestination
T:UIKit.UIPrinterPickerCompletionResult
T:UIKit.UIPrintInteractionCompletionResult
T:UIKit.UIPrintInteractionResult
T:UIKit.UIPrintRenderingQuality
-T:UIKit.UIPrintServiceExtension
-T:UIKit.UIProgressView
T:UIKit.UIProgressViewStyle
-T:UIKit.UIPushBehavior
T:UIKit.UIPushBehaviorMode
T:UIKit.UIRectCorner
T:UIKit.UIRectEdge
-T:UIKit.UIRegion
-T:UIKit.UIResolvedShape
-T:UIKit.UIResponder
T:UIKit.UIReturnKeyType
-T:UIKit.UIScene
-T:UIKit.UISceneActivationConditions
-T:UIKit.UISceneActivationRequestOptions
T:UIKit.UISceneActivationState
T:UIKit.UISceneCaptureState
T:UIKit.UISceneCollectionJoinBehavior
-T:UIKit.UISceneConfiguration
-T:UIKit.UISceneConnectionOptions
T:UIKit.UISceneDelegate
-T:UIKit.UISceneDestructionRequestOptions
T:UIKit.UISceneErrorCode
-T:UIKit.UISceneOpenExternalUrlOptions
-T:UIKit.UISceneOpenUrlOptions
-T:UIKit.UISceneSession
-T:UIKit.UISceneSessionActivationRequest
-T:UIKit.UISceneSizeRestrictions
-T:UIKit.UISceneSystemProtectionManager
-T:UIKit.UISceneWindowingBehaviors
-T:UIKit.UIScreen
-T:UIKit.UIScreenMode
T:UIKit.UIScreenOverscanCompensation
T:UIKit.UIScreenReferenceDisplayModeStatus
-T:UIKit.UIScreenshotService
T:UIKit.UIScreenshotServiceDelegate
T:UIKit.UIScreenshotServiceDelegatePdfHandler
-T:UIKit.UIScribbleInteraction
T:UIKit.UIScribbleInteractionDelegate
T:UIKit.UIScrollType
T:UIKit.UIScrollTypeMask
-T:UIKit.UIScrollView
T:UIKit.UIScrollViewAccessibilityDelegate
T:UIKit.UIScrollViewCondition
T:UIKit.UIScrollViewContentInsetAdjustmentBehavior
@@ -111533,7 +73115,6 @@ T:UIKit.UIScrollViewIndexDisplayMode
T:UIKit.UIScrollViewIndicatorStyle
T:UIKit.UIScrollViewKeyboardDismissMode
T:UIKit.UIScrollViewZoomingEventArgs
-T:UIKit.UISearchBar
T:UIKit.UISearchBarButtonIndexEventArgs
T:UIKit.UISearchBarDelegate
T:UIKit.UISearchBarIcon
@@ -111541,28 +73122,14 @@ T:UIKit.UISearchBarPredicate
T:UIKit.UISearchBarRangeEventArgs
T:UIKit.UISearchBarStyle
T:UIKit.UISearchBarTextChangedEventArgs
-T:UIKit.UISearchContainerViewController
-T:UIKit.UISearchController
T:UIKit.UISearchControllerDelegate
T:UIKit.UISearchControllerScopeBarActivation
T:UIKit.UISearchResultsUpdating
-T:UIKit.UISearchSuggestionItem
-T:UIKit.UISearchTab
-T:UIKit.UISearchTextField
T:UIKit.UISearchTextFieldDelegate
-T:UIKit.UISearchToken
-T:UIKit.UISegmentedControl
T:UIKit.UISegmentedControlSegment
T:UIKit.UISemanticContentAttribute
-T:UIKit.UIShadowProperties
-T:UIKit.UIShape
-T:UIKit.UIShapeResolutionContext
-T:UIKit.UISheetPresentationController
T:UIKit.UISheetPresentationControllerDelegate
-T:UIKit.UISheetPresentationControllerDetent
T:UIKit.UISheetPresentationControllerDetentIdentifier
-T:UIKit.UISnapBehavior
-T:UIKit.UISplitViewController
T:UIKit.UISplitViewController_UIViewController
T:UIKit.UISplitViewControllerBackgroundStyle
T:UIKit.UISplitViewControllerCanCollapsePredicate
@@ -111585,36 +73152,21 @@ T:UIKit.UISplitViewControllerWillShowHideColumnEventArgs
T:UIKit.UISplitViewHideEventArgs
T:UIKit.UISplitViewPresentEventArgs
T:UIKit.UISplitViewShowEventArgs
-T:UIKit.UISpringTimingParameters
-T:UIKit.UIStackView
T:UIKit.UIStackViewAlignment
T:UIKit.UIStackViewDistribution
-T:UIKit.UIStandardTextCursorView
T:UIKit.UIStateRestoration
T:UIKit.UIStateRestoring
T:UIKit.UIStatusBarFrameChangeEventArgs
-T:UIKit.UIStatusBarManager
T:UIKit.UIStatusBarOrientationChangeEventArgs
-T:UIKit.UIStoryboard
-T:UIKit.UIStoryboardPopoverSegue
-T:UIKit.UIStoryboardSegue
-T:UIKit.UIStoryboardUnwindSegueSource
T:UIKit.UIStoryboardViewControllerCreator
T:UIKit.UIStringAttributeKey
T:UIKit.UIStringAttributes
-T:UIKit.UISwipeGestureRecognizer
T:UIKit.UISwipeGestureRecognizerDirection
T:UIKit.UISwitchStyle
-T:UIKit.UISymbolEffectCompletionContext
T:UIKit.UISystemAnimation
-T:UIKit.UITab
-T:UIKit.UITabBar
T:UIKit.UITabBarAcceptItemsEventArgs
-T:UIKit.UITabBarAppearance
-T:UIKit.UITabBarController
T:UIKit.UITabBarControllerDelegate
T:UIKit.UITabBarControllerMode
-T:UIKit.UITabBarControllerSidebar
T:UIKit.UITabBarControllerSidebarDelegate
T:UIKit.UITabBarControllerSidebarLayout
T:UIKit.UITabBarCustomizeChangeEventArgs
@@ -111623,23 +73175,17 @@ T:UIKit.UITabBarDelegate
T:UIKit.UITabBarDisplayOrderChangeEventArgs
T:UIKit.UITabBarFinalItemsEventArgs
T:UIKit.UITabBarGetDisplayedViewControllers
-T:UIKit.UITabBarItem
-T:UIKit.UITabBarItemAppearance
T:UIKit.UITabBarItemAppearanceStyle
T:UIKit.UITabBarItemEventArgs
T:UIKit.UITabBarItemPositioning
T:UIKit.UITabBarItemsEventArgs
-T:UIKit.UITabBarItemStateAppearance
T:UIKit.UITabBarSelection
T:UIKit.UITabBarSelectionEventArgs
T:UIKit.UITabBarSystemItem
T:UIKit.UITabBarTabSelection
T:UIKit.UITabBarTabSelectionEventArgs
T:UIKit.UITabBarTabVisibilityChangeEventArgs
-T:UIKit.UITabGroup
T:UIKit.UITabGroupSidebarAppearance
-T:UIKit.UITableView
-T:UIKit.UITableViewCell
T:UIKit.UITableViewCellAccessory
T:UIKit.UITableViewCellConfigurationUpdateHandler
T:UIKit.UITableViewCellEditingStyle
@@ -111648,15 +73194,10 @@ T:UIKit.UITableViewCellSelectionStyle
T:UIKit.UITableViewCellState
T:UIKit.UITableViewCellStyle
T:UIKit.UITableViewContentHuggingElements
-T:UIKit.UITableViewController
T:UIKit.UITableViewDataSource
T:UIKit.UITableViewDelegate
-T:UIKit.UITableViewDiffableDataSource`2
T:UIKit.UITableViewDiffableDataSourceCellProvider
-T:UIKit.UITableViewFocusUpdateContext
-T:UIKit.UITableViewHeaderFooterView
T:UIKit.UITableViewHeaderFooterViewConfigurationUpdateHandler
-T:UIKit.UITableViewPlaceholder
T:UIKit.UITableViewRowAnimation
T:UIKit.UITableViewScrollPosition
T:UIKit.UITableViewSelfSizingInvalidation
@@ -111664,11 +73205,6 @@ T:UIKit.UITableViewSeparatorInsetReference
T:UIKit.UITableViewSource
T:UIKit.UITableViewStyle
T:UIKit.UITabPlacement
-T:UIKit.UITabSidebarItem
-T:UIKit.UITabSidebarItemRequest
-T:UIKit.UITabSidebarScrollTarget
-T:UIKit.UITapGestureRecognizer
-T:UIKit.UITargetedPreview
T:UIKit.UITextAlignment
T:UIKit.UITextAlignmentExtensions
T:UIKit.UITextAlternativeStyle
@@ -111677,71 +73213,42 @@ T:UIKit.UITextAttributesConversionHandler
T:UIKit.UITextAutocapitalizationType
T:UIKit.UITextAutocorrectionType
T:UIKit.UITextBorderStyle
-T:UIKit.UITextChecker
T:UIKit.UITextContentType
-T:UIKit.UITextCursorDropPositionAnimator
T:UIKit.UITextDirection
T:UIKit.UITextDocumentProxy
-T:UIKit.UITextDragPreviewRenderer
-T:UIKit.UITextField
T:UIKit.UITextFieldChange
T:UIKit.UITextFieldCondition
T:UIKit.UITextFieldDelegate
T:UIKit.UITextFieldDidEndEditingReason
T:UIKit.UITextFieldEditingEndedEventArgs
T:UIKit.UITextFieldViewMode
-T:UIKit.UITextFormattingCoordinator
T:UIKit.UITextFormattingCoordinatorDelegate
-T:UIKit.UITextFormattingViewController
T:UIKit.UITextFormattingViewControllerChangeType
-T:UIKit.UITextFormattingViewControllerChangeValue
-T:UIKit.UITextFormattingViewControllerComponent
-T:UIKit.UITextFormattingViewControllerComponentGroup
T:UIKit.UITextFormattingViewControllerComponentKey
T:UIKit.UITextFormattingViewControllerComponentSize
-T:UIKit.UITextFormattingViewControllerConfiguration
T:UIKit.UITextFormattingViewControllerDelegate
-T:UIKit.UITextFormattingViewControllerFormattingDescriptor
-T:UIKit.UITextFormattingViewControllerFormattingStyle
T:UIKit.UITextFormattingViewControllerHighlight
T:UIKit.UITextFormattingViewControllerTextAlignment
T:UIKit.UITextFormattingViewControllerTextList
T:UIKit.UITextGranularity
T:UIKit.UITextInlinePredictionType
-T:UIKit.UITextInputContext
T:UIKit.UITextInputDelegate
-T:UIKit.UITextInputMode
-T:UIKit.UITextInputPasswordRules
T:UIKit.UITextInputReturnHandler
-T:UIKit.UITextInputStringTokenizer
T:UIKit.UITextInputTokenizer
-T:UIKit.UITextInteraction
T:UIKit.UITextInteractionDelegate
T:UIKit.UITextInteractionMode
-T:UIKit.UITextItem
T:UIKit.UITextItemContentType
T:UIKit.UITextItemInteraction
-T:UIKit.UITextItemMenuConfiguration
-T:UIKit.UITextItemMenuPreview
T:UIKit.UITextLayoutDirection
-T:UIKit.UITextLoupeSession
T:UIKit.UITextMathExpressionCompletionType
-T:UIKit.UITextPlaceholder
-T:UIKit.UITextPosition
-T:UIKit.UITextRange
T:UIKit.UITextSearchFoundTextStyle
-T:UIKit.UITextSearchingFindSession
T:UIKit.UITextSearchMatchMethod
-T:UIKit.UITextSearchOptions
-T:UIKit.UITextSelectionDisplayInteraction
T:UIKit.UITextSelectionDisplayInteractionDelegate
-T:UIKit.UITextSelectionRect
T:UIKit.UITextSmartDashesType
T:UIKit.UITextSmartInsertDeleteType
T:UIKit.UITextSmartQuotesType
T:UIKit.UITextSpellCheckingType
T:UIKit.UITextStorageDirection
-T:UIKit.UITextView
T:UIKit.UITextViewBorderStyle
T:UIKit.UITextViewChange
T:UIKit.UITextViewCondition
@@ -111751,47 +73258,19 @@ T:UIKit.UITextViewDelegateShouldInteractUrlDelegate
T:UIKit.UITextViewRange
T:UIKit.UITextViewTextFormattingViewControllerEventArgs
T:UIKit.UITimingCurveType
-T:UIKit.UITitlebar
T:UIKit.UITitlebarSeparatorStyle
T:UIKit.UITitlebarTitleVisibility
T:UIKit.UITitlebarToolbarStyle
-T:UIKit.UIToolbarAppearance
-T:UIKit.UIToolTipConfiguration
-T:UIKit.UIToolTipInteraction
T:UIKit.UIToolTipInteractionDelegate
-T:UIKit.UITouch
T:UIKit.UITouchEventArgs
T:UIKit.UITouchPhase
T:UIKit.UITouchProperties
T:UIKit.UITouchType
-T:UIKit.UITrackingLayoutGuide
-T:UIKit.UITraitAccessibilityContrast
-T:UIKit.UITraitActiveAppearance
-T:UIKit.UITraitCollection
-T:UIKit.UITraitDisplayGamut
-T:UIKit.UITraitDisplayScale
T:UIKit.UITraitEnvironment
T:UIKit.UITraitEnvironmentLayoutDirection
-T:UIKit.UITraitForceTouchCapability
-T:UIKit.UITraitHorizontalSizeClass
-T:UIKit.UITraitImageDynamicRange
-T:UIKit.UITraitLayoutDirection
-T:UIKit.UITraitLegibilityWeight
-T:UIKit.UITraitListEnvironment
T:UIKit.UITraitMutations
-T:UIKit.UITraitPreferredContentSizeCategory
-T:UIKit.UITraitSceneCaptureState
-T:UIKit.UITraitToolbarItemPresentationSize
-T:UIKit.UITraitTypesettingLanguage
-T:UIKit.UITraitUserInterfaceIdiom
-T:UIKit.UITraitUserInterfaceLevel
-T:UIKit.UITraitUserInterfaceStyle
-T:UIKit.UITraitVerticalSizeClass
T:UIKit.UITransitionContext
T:UIKit.UITransitionViewControllerKind
-T:UIKit.UIUpdateActionPhase
-T:UIKit.UIUpdateInfo
-T:UIKit.UIUpdateLink
T:UIKit.UIUpdateLinkCallback
T:UIKit.UIUserInterfaceActiveAppearance
T:UIKit.UIUserInterfaceIdiom
@@ -111799,11 +73278,9 @@ T:UIKit.UIUserInterfaceLayoutDirection
T:UIKit.UIUserInterfaceLevel
T:UIKit.UIUserInterfaceSizeClass
T:UIKit.UIUserInterfaceStyle
-T:UIKit.UIVibrancyEffect
T:UIKit.UIVibrancyEffectStyle
T:UIKit.UIVideo
T:UIKit.UIVideo.SaveStatus
-T:UIKit.UIView
T:UIKit.UIView_UITextField
T:UIKit.UIViewAnimatingPosition
T:UIKit.UIViewAnimatingState
@@ -111811,48 +73288,24 @@ T:UIKit.UIViewAnimationCurve
T:UIKit.UIViewAnimationOptions
T:UIKit.UIViewAnimationTransition
T:UIKit.UIViewAutoresizing
-T:UIKit.UIViewConfigurationState
T:UIKit.UIViewContentMode
-T:UIKit.UIViewController
T:UIKit.UIViewControllerAnimatedTransitioning
T:UIKit.UIViewControllerContextTransitioning
T:UIKit.UIViewControllerInteractiveTransitioning
T:UIKit.UIViewControllerPreviewingDelegate
-T:UIKit.UIViewControllerTransition
T:UIKit.UIViewControllerTransitionCoordinatorContext_Extensions
T:UIKit.UIViewControllerTransitioningDelegate
T:UIKit.UIViewKeyframeAnimationOptions
-T:UIKit.UIViewPropertyAnimator
T:UIKit.UIViewTintAdjustmentMode
-T:UIKit.UIVisualEffect
-T:UIKit.UIVisualEffectView
T:UIKit.UIWebErrorArgs
-T:UIKit.UIWindow
T:UIKit.UIWindowLevel
-T:UIKit.UIWindowScene
-T:UIKit.UIWindowSceneActivationAction
T:UIKit.UIWindowSceneActivationActionConfigurationProvider
-T:UIKit.UIWindowSceneActivationConfiguration
-T:UIKit.UIWindowSceneActivationInteraction
T:UIKit.UIWindowSceneActivationInteractionConfigurationProvider
-T:UIKit.UIWindowSceneActivationRequestOptions
T:UIKit.UIWindowSceneDelegate
-T:UIKit.UIWindowSceneDestructionRequestOptions
T:UIKit.UIWindowSceneDismissalAnimation
-T:UIKit.UIWindowSceneDragInteraction
-T:UIKit.UIWindowSceneGeometry
-T:UIKit.UIWindowSceneGeometryPreferences
-T:UIKit.UIWindowSceneGeometryPreferencesIOS
-T:UIKit.UIWindowSceneGeometryPreferencesMac
-T:UIKit.UIWindowScenePlacement
T:UIKit.UIWindowScenePresentationStyle
-T:UIKit.UIWindowSceneProminentPlacement
T:UIKit.UIWindowSceneSessionRole
-T:UIKit.UIWindowSceneStandardPlacement
T:UIKit.UIWritingToolsBehavior
-T:UIKit.UIWritingToolsCoordinator
-T:UIKit.UIWritingToolsCoordinatorAnimationParameters
-T:UIKit.UIWritingToolsCoordinatorContext
T:UIKit.UIWritingToolsCoordinatorContextScope
T:UIKit.UIWritingToolsCoordinatorDelegate
T:UIKit.UIWritingToolsCoordinatorDelegateReplaceRangeCallback
@@ -111868,10 +73321,6 @@ T:UIKit.UIWritingToolsCoordinatorTextAnimation
T:UIKit.UIWritingToolsCoordinatorTextReplacementReason
T:UIKit.UIWritingToolsCoordinatorTextUpdateReason
T:UIKit.UIWritingToolsResultOptions
-T:UIKit.UIZoomTransitionAlignmentRectContext
-T:UIKit.UIZoomTransitionInteractionContext
-T:UIKit.UIZoomTransitionOptions
-T:UIKit.UIZoomTransitionSourceViewProviderContext
T:UIKit.WillEndDraggingEventArgs
T:UIKit.ZoomingEndedEventArgs
T:UniformTypeIdentifiers.NSString_UTAdditions
@@ -111953,239 +73402,83 @@ T:VideoToolbox.VTUtilities
T:VideoToolbox.VTVideoEncoder
T:Vision.IVNRequestProgressProviding
T:Vision.IVNRequestRevisionProviding
-T:Vision.VNAnimalBodyPoseObservation
T:Vision.VNAnimalBodyPoseObservationJointName
T:Vision.VNAnimalBodyPoseObservationJointsGroupName
T:Vision.VNAnimalIdentifier
T:Vision.VNBarcodeCompositeType
T:Vision.VNBarcodeObservationRequestRevision
-T:Vision.VNCalculateImageAestheticsScoresRequest
T:Vision.VNCalculateImageAestheticsScoresRequestRevision
T:Vision.VNChirality
-T:Vision.VNCircle
-T:Vision.VNClassifyImageRequest
T:Vision.VNClassifyImageRequestRevision
T:Vision.VNComputeStage
-T:Vision.VNContour
-T:Vision.VNContoursObservation
T:Vision.VNCoreMLRequestRevision
-T:Vision.VNDetectAnimalBodyPoseRequest
T:Vision.VNDetectBarcodesRequestRevision
T:Vision.VNDetectContourRequestRevision
-T:Vision.VNDetectContoursRequest
-T:Vision.VNDetectDocumentSegmentationRequest
T:Vision.VNDetectDocumentSegmentationRequestRevision
T:Vision.VNDetectedObjectObservationRequestRevision
-T:Vision.VNDetectedPoint
-T:Vision.VNDetectFaceCaptureQualityRequest
T:Vision.VNDetectFaceCaptureQualityRequestRevision
T:Vision.VNDetectFaceLandmarksRequestRevision
T:Vision.VNDetectFaceRectanglesRequestRevision
T:Vision.VNDetectHorizonRequestRevision
-T:Vision.VNDetectHumanBodyPose3DRequest
T:Vision.VNDetectHumanBodyPose3DRequestRevision
-T:Vision.VNDetectHumanBodyPoseRequest
T:Vision.VNDetectHumanBodyPoseRequestRevision
-T:Vision.VNDetectHumanHandPoseRequest
T:Vision.VNDetectHumanHandPoseRequestRevision
-T:Vision.VNDetectHumanRectanglesRequest
T:Vision.VNDetectHumanRectanglesRequestRevision
T:Vision.VNDetectRectanglesRequestRevision
T:Vision.VNDetectTextRectanglesRequestRevision
-T:Vision.VNDetectTrajectoriesRequest
T:Vision.VNDetectTrajectoriesRequestRevision
T:Vision.VNElementType
T:Vision.VNFaceObservationRequestRevision
-T:Vision.VNFeaturePrintObservation
-T:Vision.VNGenerateAttentionBasedSaliencyImageRequest
T:Vision.VNGenerateAttentionBasedSaliencyImageRequestRevision
-T:Vision.VNGenerateForegroundInstanceMaskRequest
-T:Vision.VNGenerateImageFeaturePrintRequest
T:Vision.VNGenerateImageFeaturePrintRequestRevision
-T:Vision.VNGenerateObjectnessBasedSaliencyImageRequest
T:Vision.VNGenerateObjectnessBasedSaliencyImageRequestRevision
-T:Vision.VNGenerateOpticalFlowRequest
T:Vision.VNGenerateOpticalFlowRequestComputationAccuracy
T:Vision.VNGenerateOpticalFlowRequestRevision
-T:Vision.VNGeneratePersonInstanceMaskRequest
-T:Vision.VNGeneratePersonSegmentationRequest
T:Vision.VNGeneratePersonSegmentationRequestQualityLevel
T:Vision.VNGeneratePersonSegmentationRequestRevision
-T:Vision.VNGeometryUtils
T:Vision.VNHomographicImageRegistrationRequestRevision
-T:Vision.VNHumanBodyPose3DObservation
T:Vision.VNHumanBodyPose3DObservationHeightEstimation
T:Vision.VNHumanBodyPose3DObservationJointName
T:Vision.VNHumanBodyPose3DObservationJointsGroupName
-T:Vision.VNHumanBodyPoseObservation
T:Vision.VNHumanBodyPoseObservationJointName
T:Vision.VNHumanBodyPoseObservationJointsGroupName
-T:Vision.VNHumanBodyRecognizedPoint3D
-T:Vision.VNHumanHandPoseObservation
T:Vision.VNHumanHandPoseObservationJointName
T:Vision.VNHumanHandPoseObservationJointsGroupName
-T:Vision.VNHumanObservation
-T:Vision.VNImageAestheticsScoresObservation
-T:Vision.VNInstanceMaskObservation
-T:Vision.VNPoint
-T:Vision.VNPoint3D
T:Vision.VNPointsClassification
-T:Vision.VNRecognizeAnimalsRequest
T:Vision.VNRecognizeAnimalsRequestRevision
-T:Vision.VNRecognizedObjectObservation
T:Vision.VNRecognizedObjectObservationRequestRevision
-T:Vision.VNRecognizedPoint
-T:Vision.VNRecognizedPoint3D
-T:Vision.VNRecognizedPoints3DObservation
-T:Vision.VNRecognizedPointsObservation
-T:Vision.VNRecognizedText
-T:Vision.VNRecognizedTextObservation
-T:Vision.VNRecognizeTextRequest
T:Vision.VNRecognizeTextRequestRevision
T:Vision.VNRectangleObservationRequestRevision
T:Vision.VNRequestFaceLandmarksConstellation
T:Vision.VNRequestProgressHandler
T:Vision.VNRequestRevision
T:Vision.VNRequestTextRecognitionLevel
-T:Vision.VNSaliencyImageObservation
-T:Vision.VNStatefulRequest
T:Vision.VNStatefulRequestRevision
T:Vision.VNTextObservationRequestRevision
-T:Vision.VNTrackHomographicImageRegistrationRequest
T:Vision.VNTrackHomographicImageRegistrationRequestRevision
T:Vision.VNTrackObjectRequestRevision
-T:Vision.VNTrackOpticalFlowRequest
T:Vision.VNTrackOpticalFlowRequestComputationAccuracy
T:Vision.VNTrackOpticalFlowRequestRevision
T:Vision.VNTrackRectangleRequestRevision
-T:Vision.VNTrackTranslationalImageRegistrationRequest
T:Vision.VNTrackTranslationalImageRegistrationRequestRevision
-T:Vision.VNTrajectoryObservation
T:Vision.VNTranslationalImageRegistrationRequestRevision
T:Vision.VNUtils
-T:Vision.VNVector
-T:Vision.VNVideoProcessor
-T:Vision.VNVideoProcessorCadence
-T:Vision.VNVideoProcessorFrameRateCadence
-T:Vision.VNVideoProcessorRequestProcessingOptions
-T:Vision.VNVideoProcessorTimeIntervalCadence
T:VisionKit.IVNDocumentCameraViewControllerDelegate
-T:VisionKit.VNDocumentCameraScan
-T:VisionKit.VNDocumentCameraViewController
T:VisionKit.VNDocumentCameraViewControllerDelegate
T:WebKit.CreateWebViewFromRequest
-T:WebKit.DomAbstractView
-T:WebKit.DomAttr
-T:WebKit.DomBlob
-T:WebKit.DomCDataSection
-T:WebKit.DomCharacterData
-T:WebKit.DomComment
-T:WebKit.DomCssCharsetRule
-T:WebKit.DomCssFontFaceRule
-T:WebKit.DomCssMediaRule
-T:WebKit.DomCssPageRule
-T:WebKit.DomCssRule
-T:WebKit.DomCssRuleList
T:WebKit.DomCssRuleType
-T:WebKit.DomCssStyleDeclaration
-T:WebKit.DomCssStyleRule
-T:WebKit.DomCssStyleSheet
-T:WebKit.DomCssUnknownRule
-T:WebKit.DomCssValue
T:WebKit.DomCssValueType
T:WebKit.DomDelta
-T:WebKit.DomDocument
-T:WebKit.DomDocumentFragment
T:WebKit.DomDocumentPosition
-T:WebKit.DomDocumentType
-T:WebKit.DomElement
-T:WebKit.DomEntityReference
-T:WebKit.DomEvent
T:WebKit.DomEventArgs
T:WebKit.DomEventListener
T:WebKit.DomEventListenerHandler
T:WebKit.DomEventPhase
T:WebKit.DomEventTarget
-T:WebKit.DomFile
-T:WebKit.DomFileList
-T:WebKit.DomHtmlAnchorElement
-T:WebKit.DomHtmlAppletElement
-T:WebKit.DomHtmlAreaElement
-T:WebKit.DomHtmlBaseElement
-T:WebKit.DomHtmlBaseFontElement
-T:WebKit.DomHtmlBodyElement
-T:WebKit.DomHtmlBRElement
-T:WebKit.DomHtmlButtonElement
-T:WebKit.DomHtmlCollection
-T:WebKit.DomHtmlDirectoryElement
-T:WebKit.DomHtmlDivElement
-T:WebKit.DomHtmlDListElement
-T:WebKit.DomHtmlDocument
-T:WebKit.DomHtmlElement
-T:WebKit.DomHtmlEmbedElement
-T:WebKit.DomHtmlFieldSetElement
-T:WebKit.DomHtmlFontElement
-T:WebKit.DomHtmlFormElement
-T:WebKit.DomHtmlFrameElement
-T:WebKit.DomHtmlFrameSetElement
-T:WebKit.DomHtmlHeadElement
-T:WebKit.DomHtmlHeadingElement
-T:WebKit.DomHtmlHRElement
-T:WebKit.DomHtmlHtmlElement
-T:WebKit.DomHtmlIFrameElement
-T:WebKit.DomHtmlImageElement
-T:WebKit.DomHtmlInputElement
-T:WebKit.DomHtmlLabelElement
-T:WebKit.DomHtmlLegendElement
-T:WebKit.DomHtmlLIElement
-T:WebKit.DomHtmlLinkElement
-T:WebKit.DomHtmlMapElement
-T:WebKit.DomHtmlMarqueeElement
-T:WebKit.DomHtmlMenuElement
-T:WebKit.DomHtmlMetaElement
-T:WebKit.DomHtmlModElement
-T:WebKit.DomHtmlObjectElement
-T:WebKit.DomHtmlOListElement
-T:WebKit.DomHtmlOptGroupElement
-T:WebKit.DomHtmlOptionElement
-T:WebKit.DomHtmlOptionsCollection
-T:WebKit.DomHtmlParagraphElement
-T:WebKit.DomHtmlParamElement
-T:WebKit.DomHtmlPreElement
-T:WebKit.DomHtmlQuoteElement
-T:WebKit.DomHtmlScriptElement
-T:WebKit.DomHtmlSelectElement
-T:WebKit.DomHtmlStyleElement
-T:WebKit.DomHtmlTableCaptionElement
-T:WebKit.DomHtmlTableCellElement
-T:WebKit.DomHtmlTableColElement
-T:WebKit.DomHtmlTableElement
-T:WebKit.DomHtmlTableRowElement
-T:WebKit.DomHtmlTableSectionElement
-T:WebKit.DomHtmlTextAreaElement
-T:WebKit.DomImplementation
-T:WebKit.DomImportCssRule
-T:WebKit.DomKeyboardEvent
T:WebKit.DomKeyLocation
-T:WebKit.DomMediaList
-T:WebKit.DomMouseEvent
-T:WebKit.DomNamedNodeMap
-T:WebKit.DomNode
T:WebKit.DomNodeFilter
-T:WebKit.DomNodeIterator
-T:WebKit.DomNodeList
T:WebKit.DomNodeType
-T:WebKit.DomObject
-T:WebKit.DomOverflowEvent
-T:WebKit.DomProcessingInstruction
-T:WebKit.DomProgressEvent
-T:WebKit.DomRange
T:WebKit.DomRangeCompareHow
-T:WebKit.DomStyleSheet
-T:WebKit.DomStyleSheetList
-T:WebKit.DomText
-T:WebKit.DomUIEvent
-T:WebKit.DomWheelEvent
T:WebKit.DragDestinationGetActionMask
T:WebKit.DragSourceGetActionMask
T:WebKit.IDomEventListener
@@ -112203,18 +73496,13 @@ T:WebKit.IWebUIDelegate
T:WebKit.IWKDownloadDelegate
T:WebKit.IWKScriptMessageHandlerWithReply
T:WebKit.WebActionMouseButton
-T:WebKit.WebArchive
-T:WebKit.WebBackForwardList
T:WebKit.WebCacheModel
-T:WebKit.WebDataSource
T:WebKit.WebDocumentRepresentation
-T:WebKit.WebDownload
T:WebKit.WebDownloadDelegate
T:WebKit.WebDownloadRequest
T:WebKit.WebDragDestinationAction
T:WebKit.WebDragSourceAction
T:WebKit.WebFailureToImplementPolicyEventArgs
-T:WebKit.WebFrame
T:WebKit.WebFrameClientRedirectEventArgs
T:WebKit.WebFrameErrorEventArgs
T:WebKit.WebFrameEventArgs
@@ -112224,9 +73512,6 @@ T:WebKit.WebFrameLoadDelegate
T:WebKit.WebFrameScriptFrameEventArgs
T:WebKit.WebFrameScriptObjectEventArgs
T:WebKit.WebFrameTitleEventArgs
-T:WebKit.WebFrameView
-T:WebKit.WebHistory
-T:WebKit.WebHistoryItem
T:WebKit.WebMimeTypePolicyEventArgs
T:WebKit.WebNavigationPolicyEventArgs
T:WebKit.WebNavigationType
@@ -112234,8 +73519,6 @@ T:WebKit.WebNewWindowPolicyEventArgs
T:WebKit.WebOpenPanelResultListener
T:WebKit.WebPolicyDecisionListener
T:WebKit.WebPolicyDelegate
-T:WebKit.WebPreferences
-T:WebKit.WebResource
T:WebKit.WebResourceAuthenticationChallengeEventArgs
T:WebKit.WebResourceCancelledChallengeEventArgs
T:WebKit.WebResourceCompletedEventArgs
@@ -112246,9 +73529,7 @@ T:WebKit.WebResourceOnRequestSend
T:WebKit.WebResourcePluginErrorEventArgs
T:WebKit.WebResourceReceivedContentLengthEventArgs
T:WebKit.WebResourceReceivedResponseEventArgs
-T:WebKit.WebScriptObject
T:WebKit.WebUIDelegate
-T:WebKit.WebView
T:WebKit.WebViewConfirmationPanel
T:WebKit.WebViewContentEventArgs
T:WebKit.WebViewCreate
@@ -112281,25 +73562,17 @@ T:WebKit.WebViewStatusTextEventArgs
T:WebKit.WebViewToolBarsEventArgs
T:WebKit.WebViewValidateUserInterface
T:WebKit.WKContentMode
-T:WebKit.WKContentWorld
-T:WebKit.WKContextMenuElementInfo
T:WebKit.WKCookiePolicy
T:WebKit.WKDialogResult
-T:WebKit.WKDownload
T:WebKit.WKDownloadDelegate
T:WebKit.WKDownloadDelegateDecidePlaceholderPolicyCallback
T:WebKit.WKDownloadPlaceholderPolicy
T:WebKit.WKDownloadRedirectPolicy
-T:WebKit.WKFindConfiguration
-T:WebKit.WKFindResult
T:WebKit.WKFullscreenState
T:WebKit.WKInactiveSchedulingPolicy
T:WebKit.WKMediaCaptureState
T:WebKit.WKMediaCaptureType
T:WebKit.WKMediaPlaybackState
-T:WebKit.WKOpenPanelParameters
-T:WebKit.WKPdfConfiguration
T:WebKit.WKPermissionDecision
T:WebKit.WKUserInterfaceDirectionPolicy
-T:WebKit.WKWebpagePreferences
T:WebKit.WKWebpagePreferencesUpgradeToHttpsPolicy
diff --git a/tests/cecil-tests/Documentation.cs b/tests/cecil-tests/Documentation.cs
index 288b94937731..62da47f54a12 100644
--- a/tests/cecil-tests/Documentation.cs
+++ b/tests/cecil-tests/Documentation.cs
@@ -206,7 +206,8 @@ static string GetDocId (MethodDefinition md)
static string GetDocId (PropertyDefinition pd)
{
- var name = GetDocId (pd.DeclaringType) + "." + pd.Name;
+ var propertyName = pd.Name.Replace ('.', '#');
+ var name = GetDocId (pd.DeclaringType) + "." + propertyName;
if (pd.HasParameters) {
name += "(" + string.Join (",", pd.Parameters.Select (p => GetDocId (p.ParameterType))) + ")";
}
diff --git a/tests/generator/ExpectedXmlDocs.MacCatalyst.xml b/tests/generator/ExpectedXmlDocs.MacCatalyst.xml
index 62aadeacf64d..85e7e67e920c 100644
--- a/tests/generator/ExpectedXmlDocs.MacCatalyst.xml
+++ b/tests/generator/ExpectedXmlDocs.MacCatalyst.xml
@@ -35,6 +35,10 @@
Retrieves the value named by .
The name of the constant to retrieve.
+
+ Retrieves the value represented by the backing field value in .
+ The native handle with the name of the constant to retrieve.
+
Converts an array of enum values into an array of their corresponding constants.
The array of enum values to convert.
diff --git a/tests/generator/ExpectedXmlDocs.iOS.xml b/tests/generator/ExpectedXmlDocs.iOS.xml
index 6ebfa519c4e1..d3f0d37d8f50 100644
--- a/tests/generator/ExpectedXmlDocs.iOS.xml
+++ b/tests/generator/ExpectedXmlDocs.iOS.xml
@@ -35,6 +35,10 @@
Retrieves the value named by .
The name of the constant to retrieve.
+
+ Retrieves the value represented by the backing field value in .
+ The native handle with the name of the constant to retrieve.
+
Converts an array of enum values into an array of their corresponding constants.
The array of enum values to convert.
diff --git a/tests/generator/ExpectedXmlDocs.macOS.xml b/tests/generator/ExpectedXmlDocs.macOS.xml
index 62aadeacf64d..85e7e67e920c 100644
--- a/tests/generator/ExpectedXmlDocs.macOS.xml
+++ b/tests/generator/ExpectedXmlDocs.macOS.xml
@@ -35,6 +35,10 @@
Retrieves the value named by .
The name of the constant to retrieve.
+
+ Retrieves the value represented by the backing field value in .
+ The native handle with the name of the constant to retrieve.
+
Converts an array of enum values into an array of their corresponding constants.
The array of enum values to convert.
diff --git a/tests/generator/ExpectedXmlDocs.tvOS.xml b/tests/generator/ExpectedXmlDocs.tvOS.xml
index 62aadeacf64d..85e7e67e920c 100644
--- a/tests/generator/ExpectedXmlDocs.tvOS.xml
+++ b/tests/generator/ExpectedXmlDocs.tvOS.xml
@@ -35,6 +35,10 @@
Retrieves the value named by .
The name of the constant to retrieve.
+
+ Retrieves the value represented by the backing field value in .
+ The native handle with the name of the constant to retrieve.
+
Converts an array of enum values into an array of their corresponding constants.
The array of enum values to convert.
diff --git a/tests/generator/bindastests.cs b/tests/generator/bindastests.cs
index 6ad4b13f4795..57b92c6ba20b 100644
--- a/tests/generator/bindastests.cs
+++ b/tests/generator/bindastests.cs
@@ -3,6 +3,7 @@
using Foundation;
using CoreMedia;
using CoreAnimation;
+using CoreGraphics;
using ObjCRuntime;
namespace BindAsTests {
@@ -12,10 +13,10 @@ interface MyFooClass {
[return: BindAs (typeof (bool?))]
[Export ("boolMethod:a:b:c:d:")]
- NSNumber BoolMethod (int arg0, string arg1, [BindAs (typeof (RectangleF))] NSValue arg2, [BindAs (typeof (bool?))] NSNumber arg3, int arg4);
+ NSNumber BoolMethod (int arg0, string arg1, [BindAs (typeof (CGRect))] NSValue arg2, [BindAs (typeof (bool?))] NSNumber arg3, int arg4);
[Export ("stringMethod:a:b:c:d:")]
- string stringMethod (int arg0, string arg1, [BindAs (typeof (RectangleF))] NSValue arg2, [BindAs (typeof (bool?))] NSNumber arg3, int arg4);
+ string stringMethod (int arg0, string arg1, [BindAs (typeof (CGRect))] NSValue arg2, [BindAs (typeof (bool?))] NSNumber arg3, int arg4);
[return: BindAs (typeof (bool?))]
[Export ("boolMethod:")]
@@ -45,7 +46,7 @@ interface MyFooClass {
[Export ("cmtimeMethod")]
NSValue CMTimeMethod ();
- [return: BindAs (typeof (PointF))]
+ [return: BindAs (typeof (CGPoint))]
[Static, Export ("pointMethodS:")]
NSValue PointFMethodS (sbyte arg1);
@@ -57,11 +58,11 @@ interface MyFooClass {
[Export ("doubleProperty")]
NSNumber DoubleProperty { get; set; }
- [BindAs (typeof (RectangleF?))]
+ [BindAs (typeof (CGRect?))]
[Static, Export ("rectangleFPropertyS")]
NSValue RectangleFPropertyS { get; set; }
- [BindAs (typeof (SizeF))]
+ [BindAs (typeof (CGSize))]
[Export ("sizeFFProperty")]
NSValue SizeFProperty { get; set; }
diff --git a/tests/rgen/Microsoft.Macios.Transformer.Tests/Microsoft.Macios.Transformer.Tests.csproj b/tests/rgen/Microsoft.Macios.Transformer.Tests/Microsoft.Macios.Transformer.Tests.csproj
index 0c7e46734484..efba1360375b 100644
--- a/tests/rgen/Microsoft.Macios.Transformer.Tests/Microsoft.Macios.Transformer.Tests.csproj
+++ b/tests/rgen/Microsoft.Macios.Transformer.Tests/Microsoft.Macios.Transformer.Tests.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/tests/xharness/Jenkins/TestServer.cs b/tests/xharness/Jenkins/TestServer.cs
index d739cdccfd96..f6aea63b2db1 100644
--- a/tests/xharness/Jenkins/TestServer.cs
+++ b/tests/xharness/Jenkins/TestServer.cs
@@ -14,6 +14,30 @@ namespace Xharness.Jenkins {
class TestServer {
+ static IReadOnlySet AllowedPaths = new HashSet (StringComparer.Ordinal) {
+ "/",
+ "/index.html",
+ "/set-option",
+ "/select",
+ "/deselect",
+ "/stop",
+ "/run",
+ "/build",
+ "/reload-devices",
+ "/reload-simulators",
+ "/quit",
+ "/favicon.ico",
+ "/index.html",
+ };
+
+ static IReadOnlySet AllowedFiles = new HashSet (StringComparer.Ordinal) {
+ "index.html",
+ "xharness.css",
+ "xharness.js",
+ };
+
+
+
public Task RunAsync (Jenkins jenkins, HtmlReportWriter htmlReportWriter)
{
HttpListener server;
@@ -95,8 +119,23 @@ IEnumerable find_tasks (StreamWriter writer, string ids)
}
string serveFile = null;
+ // do not allow requests that are not http or https
+ if (request.Url.Scheme != Uri.UriSchemeHttp && request.Url.Scheme != Uri.UriSchemeHttps) {
+ response.StatusCode = 400;
+ response.StatusDescription = "Bad Request";
+ response.OutputStream.Write (System.Text.Encoding.UTF8.GetBytes ("Invalid local path"));
+ return;
+ }
var localPath = request.Url.LocalPath;
- if (localPath.Contains ("..") || localPath.Contains ("/") || localPath.Contains ("\\")) {
+ var file = Path.GetFileName (localPath);
+ var directoryName = Path.GetDirectoryName (localPath);
+ var jenkinsDirectoryName = $"/{Path.GetFileName (jenkins.LogDirectory)}";
+
+ // for the request to be valid the local path has to be one of the following
+ // 1. local path should be one of the supported ones
+ // 2. Be index.html
+ // 3. Its directory name be the same as the log directory name, no other directory is allowed
+ if (!AllowedPaths.Contains (localPath) && !AllowedFiles.Contains (file) && !directoryName.StartsWith (jenkinsDirectoryName)) {
// Validate that we're not requested to serve any file on the file system.
// Ref: https://devdiv.visualstudio.com/DevDiv/_workitems/edit/2351243
response.StatusCode = 400;
diff --git a/tools/compare-commits.sh b/tools/compare-commits.sh
index 273b4846b145..6989970310d3 100755
--- a/tools/compare-commits.sh
+++ b/tools/compare-commits.sh
@@ -145,14 +145,14 @@ if test -z "$BASE_HASH"; then
if test -z "$PULL_REQUEST_TARGET_BRANCH"; then
echo "The target branch (using --pull-request-target-branch=) was not specified, trying to compute it."
PR_FILENAME=pr-$PULL_REQUEST_ID.json
- curl --silent --fail --location --connect-timeout 15 --show-error https://api.github.com/repos/xamarin/xamarin-macios/pulls/21927 -o "$PR_FILENAME"
+ curl --silent --fail --location --connect-timeout 15 --show-error https://api.github.com/repos/dotnet/macios/pulls/$PULL_REQUEST_ID -o "$PR_FILENAME"
BASE_REF=$(python3 -c 'import json,sys;print(json.load(sys.stdin)["base"]["ref"]);' < "$PR_FILENAME")
rm -f "$PR_FILENAME"
PULL_REQUEST_TARGET_BRANCH=origin/"$BASE_REF"
echo "Computed pull request target branch: $BLUE$PULL_REQUEST_TARGET_BRANCH$CLEAR"
fi
- git fetch --no-tags --progress -- https://github.com/xamarin/xamarin-macios +refs/pull/"$PULL_REQUEST_ID"/*:refs/remotes/origin/pr/"$PULL_REQUEST_ID"/*
+ git fetch --no-tags --progress -- https://github.com/dotnet/macios +refs/pull/"$PULL_REQUEST_ID"/*:refs/remotes/origin/pr/"$PULL_REQUEST_ID"/*
# The current hash is either a merge commit from GH, or the commit just before the merge commit.
# However, we don't know if refs/pull/PULL_REQUEST_ID/merge or refs/pull/PULL_REQUEST_ID/head are pointing to the right place,
# because someone might have pushed more commits to the pull request. So we need some computations here...
@@ -255,7 +255,7 @@ git log "$BASE_HASH..$CURRENT_HASH" --oneline $GIT_COLOR | sed 's/^/ /'
BASE_HASH=$RESOLVED_BASE_HASH
-# We'll clone xamarin-macios again into a different directory, and build it
+# We'll clone macios again into a different directory, and build it
function upon_exit ()
{
@@ -297,9 +297,9 @@ if test -z "$USE_EXISTING_BUILD"; then
rm -f "$FILE"
cp -cr "$ADR_PATH" .
- echo " ${BLUE}Cloning xamarin-macios...${CLEAR}"
- git clone https://github.com/xamarin/xamarin-macios --reference "$ROOT_DIR" 2>&1 | sed 's/^/ /'
- cd xamarin-macios
+ echo " ${BLUE}Cloning macios...${CLEAR}"
+ git clone https://github.com/dotnet/macios --reference "$ROOT_DIR" 2>&1 | sed 's/^/ /'
+ cd macios
git reset --hard "$BASE_HASH" 2>&1 | sed 's/^/ /'
if test -f "$ROOT_DIR/configure.inc"; then
cp "$ROOT_DIR/configure.inc" .
@@ -343,8 +343,8 @@ if test -n "$ENABLE_GENERATOR_DIFF"; then
mkdir -p "$OUTPUT_TMP_DIR/generator/build"
echo " ${BLUE}Copying ${WHITE}$ROOT_DIR/src/build${BLUE} to ${WHITE}$OUTPUT_TMP_DIR/generator/build/new${BLUE}...${CLEAR}"
$CP -R "$ROOT_DIR/src/build" "$OUTPUT_TMP_DIR/generator/build/new"
- echo " ${BLUE}Copying ${WHITE}$OUTPUT_SRC_DIR/xamarin-macios/src/build${BLUE} to ${WHITE}$OUTPUT_TMP_DIR/generator/build/old${BLUE}...${CLEAR}"
- $CP -R "$OUTPUT_SRC_DIR/xamarin-macios/src/build" "$OUTPUT_TMP_DIR/generator/build/old"
+ echo " ${BLUE}Copying ${WHITE}$OUTPUT_SRC_DIR/macios/src/build${BLUE} to ${WHITE}$OUTPUT_TMP_DIR/generator/build/old${BLUE}...${CLEAR}"
+ $CP -R "$OUTPUT_SRC_DIR/macios/src/build" "$OUTPUT_TMP_DIR/generator/build/old"
# delete files we don't care are different
echo " ${BLUE}Deleting files from ${WHITE}$OUTPUT_TMP_DIR/generator${BLUE} we don't care about...${CLEAR}"
@@ -411,7 +411,7 @@ if test -n "$ENABLE_API_DIFF"; then
# Point our apidiff to the dlls of the other commit
for platform in "${DOTNET_PLATFORMS[@]}"; do
- dlls=($OUTPUT_SRC_DIR/xamarin-macios/_build/Microsoft.$platform.Ref.*/ref/net*/Microsoft.$platform.dll)
+ dlls=($OUTPUT_SRC_DIR/macios/_build/Microsoft.$platform.Ref.*/ref/net*/Microsoft.$platform.dll)
if [[ ${#dlls[@]} != 1 ]]; then
report_error_line "${RED}Unable to find exactly one assembly, found ${#dlls[@]} assemblies:${CLEAR}"
report_error_line "${dlls[@]}"
diff --git a/tools/devops/automation/build-pipeline.yml b/tools/devops/automation/build-pipeline.yml
index 20c0f49efa49..8bbc14a0849a 100644
--- a/tools/devops/automation/build-pipeline.yml
+++ b/tools/devops/automation/build-pipeline.yml
@@ -181,21 +181,21 @@ extends:
os: windows
sdl:
baseline:
- baselineFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/baselines.gdnbaselines'
+ baselineFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/baselines.gdnbaselines'
suppression:
- suppressionFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/suppress.gdnsuppress'
+ suppressionFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/suppress.gdnsuppress'
sourceAnalysisPool:
name: AzurePipelines-EO
image: 1ESPT-Windows2022
os: windows
tsa:
- configFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/tsa_config.gdntsa'
+ configFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/tsa_config.gdntsa'
sbom:
enabled: false # we run our on sbom generation
credscan:
- suppressionsFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/CredScanSuppressions.json'
+ suppressionsFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/CredScanSuppressions.json'
policheck:
- exclusionsFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/PoliCheckExclusions.xml'
+ exclusionsFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/PoliCheckExclusions.xml'
sourceRepositoriesToScan:
runInSingleJob: true # run both maccore and macios in the same job
include:
diff --git a/tools/devops/automation/build-pull-request.yml b/tools/devops/automation/build-pull-request.yml
index 82037aca476f..8688729cce45 100644
--- a/tools/devops/automation/build-pull-request.yml
+++ b/tools/devops/automation/build-pull-request.yml
@@ -172,23 +172,23 @@ extends:
os: windows
sdl:
baseline:
- baselineFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/baselines.gdnbaselines'
+ baselineFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/baselines.gdnbaselines'
suppression:
- suppressionFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/suppress.gdnsuppress'
+ suppressionFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/suppress.gdnsuppress'
sourceAnalysisPool:
name: AzurePipelines-EO
image: 1ESPT-Windows2022
os: windows
tsa:
- configFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/tsa_config.gdntsa'
+ configFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/tsa_config.gdntsa'
sbom:
enabled: false # we run our on sbom generation
credscan:
- suppressionsFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/CredScanSuppressions.json'
+ suppressionsFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/CredScanSuppressions.json'
debugMode: true
verboseOutput: true
policheck:
- exclusionsFile: '$(System.DefaultWorkingDirectory)/macios/tools/devops/governance/PoliCheckExclusions.xml'
+ exclusionsFile: '$(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/governance/PoliCheckExclusions.xml'
sourceRepositoriesToScan:
runInSingleJob: true # run both maccore and macios in the same job
include:
diff --git a/tools/devops/automation/scripts/fetch-remote-binlogs.ps1 b/tools/devops/automation/scripts/fetch-remote-binlogs.ps1
index 2a05df5b6e84..443d927b3b57 100644
--- a/tools/devops/automation/scripts/fetch-remote-binlogs.ps1
+++ b/tools/devops/automation/scripts/fetch-remote-binlogs.ps1
@@ -5,7 +5,7 @@ Invoke-SshCommand `
-RemoteHost "$Env:MAC_AGENT_IP" `
-RemoteUserName "$Env:MAC_AGENT_USER" `
-- `
- "$Env:MAC_AGENT_BUILD_SOURCESDIRECTORY/tests/dotnet/Windows/collect-binlogs.sh"
+ "$Env:MAC_AGENT_BUILD_SOURCESDIRECTORY/$Env:BUILD_REPOSITORY_TITLE/tests/dotnet/Windows/collect-binlogs.sh"
New-Item -Path "$Env:BUILD_ARTIFACTSTAGINGDIRECTORY" -Name "windows-binlogs" -ItemType "directory"
New-Item -Path "$Env:BUILD_ARTIFACTSTAGINGDIRECTORY\windows-binlogs" -Name "windows-remote-logs.zip" -ItemType "file" -Value "zip"
diff --git a/tools/devops/automation/scripts/install-qa-provisioning-profiles.sh b/tools/devops/automation/scripts/install-qa-provisioning-profiles.sh
index dc3194812ebd..19295fc0c723 100755
--- a/tools/devops/automation/scripts/install-qa-provisioning-profiles.sh
+++ b/tools/devops/automation/scripts/install-qa-provisioning-profiles.sh
@@ -105,9 +105,12 @@ if test -z "$ONLY_CREATE_KEYCHAIN"; then
security import "$p12" -P "${AUTH_TOKEN_LA_DEV_APPLE_P12}" -A -t cert -f pkcs12 -k "$KEYCHAIN_FILE"
done
+ targetdir="$HOME/Library/MobileDevice/Provisioning Profiles"
+ mkdir -p "$targetdir"
+
for source in provisioning-profiles/certificates-and-profiles/*.mobileprovision; do
fn="$(basename "$source")"
- target="$HOME/Library/MobileDevice/Provisioning Profiles/$fn"
+ target="$targetdir/$fn"
if ! test -f "$target" || ! diff "$source" "$target" >/dev/null 2>&1; then
cp "$source" "$target"
echo "${BLUE}Installing provisioning profile '${WHITE}$fn${BLUE}'${CLEAR}"
diff --git a/tools/devops/automation/templates/common/checkout.yml b/tools/devops/automation/templates/common/checkout.yml
index 47857abfd2b4..3f7180d7e837 100644
--- a/tools/devops/automation/templates/common/checkout.yml
+++ b/tools/devops/automation/templates/common/checkout.yml
@@ -14,12 +14,6 @@ parameters:
default: HEAD
steps:
-- pwsh: |
- gci env:
- $env:BUILD_REPOSITORY_TITLE = ($env:BUILD_REPOSITORY_NAME -split '/')[-1]
- Write-Host "##vso[task.setvariable variable=BUILD_REPOSITORY_TITLE;]$env:BUILD_REPOSITORY_TITLE"
- gci env:
- displayName: 'Set BUILD_REPOSITORY_TITLE'
- template: sdk-unified/steps/checkout/v1.yml@yaml-templates
parameters:
diff --git a/tools/devops/automation/templates/governance/apiscan.yml b/tools/devops/automation/templates/governance/apiscan.yml
index 35ef7e9a8d82..73752b757361 100644
--- a/tools/devops/automation/templates/governance/apiscan.yml
+++ b/tools/devops/automation/templates/governance/apiscan.yml
@@ -96,19 +96,19 @@ steps:
- task: TSAUpload@2
inputs:
GdnPublishTsaOnboard: true
- GdnPublishTsaConfigFile: '$(System.DefaultWorkingDirectory)\\$(Build.Repository.Title)\\tools\\devops\\governance\\tsa_config.gdntsa'
+ GdnPublishTsaConfigFile: '$(System.DefaultWorkingDirectory)\\$(BUILD_REPOSITORY_TITLE)\\tools\\devops\\governance\\tsa_config.gdntsa'
GdnPublishTsaExportedResultsPublishable: true
displayName: Create bugs for compliance tools results
condition: succeededOrFailed()
env:
- WorkingDirectory: '$(Build.SourcesDirectory)/$(Build.Repository.Title)'
+ WorkingDirectory: '$(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)'
- task: securedevelopmentteam.vss-secure-development-tools.build-task-postanalysis.PostAnalysis@2
displayName: Break on compliance issues
condition: false # do not break for APIScan until we have fixed the issues
inputs:
GdnBreakAllTools: true
- GdnBreakSuppressionFiles: $(Build.SourcesDirectory)\$(Build.Repository.Title)\tools\devops\governance\falsepositives.gdnsuppress
+ GdnBreakSuppressionFiles: $(Build.SourcesDirectory)\$(BUILD_REPOSITORY_TITLE)\tools\devops\governance\falsepositives.gdnsuppress
GdnBreakSuppressionSets: falsepositives
GdnBreakOutputSuppressionFile: $(Build.ArtifactStagingDirectory)\GuardianSuppressions\falsepositives.gdnsuppress
GdnBreakOutputSuppressionSet: falsepositives
diff --git a/tools/devops/automation/templates/variables/common.yml b/tools/devops/automation/templates/variables/common.yml
index 18e2e0c3ba07..e51280488f75 100644
--- a/tools/devops/automation/templates/variables/common.yml
+++ b/tools/devops/automation/templates/variables/common.yml
@@ -58,7 +58,7 @@ variables:
# the name of our repository
- name: BUILD_REPOSITORY_TITLE
- value: 'xamarin-macios'
+ value: ${{ split(variables['Build.Repository.Name'],'/')[1] }}
# point to the vsdrops that we will be using for the diff uploads.
- name: VSDropsPrefix
diff --git a/tools/devops/automation/templates/windows/reserve-mac.yml b/tools/devops/automation/templates/windows/reserve-mac.yml
index d357a39812a6..e315acde4894 100644
--- a/tools/devops/automation/templates/windows/reserve-mac.yml
+++ b/tools/devops/automation/templates/windows/reserve-mac.yml
@@ -4,6 +4,9 @@ parameters:
type: string
default: "VSEng-VSMac-Xamarin-Shared"
+- name: isPR
+ type: boolean
+
- name: repositoryAlias
type: string
default: self
@@ -23,23 +26,22 @@ parameters:
default: '$(MaciosUploadPrefix)'
steps:
-- template: sdk-unified/steps/checkout/v1.yml@yaml-templates
+
+- template: ../common/checkout.yml
parameters:
- resource: ${{ parameters.repositoryAlias }}
+ isPR: ${{ parameters.isPR }}
+ repositoryAlias: ${{ parameters.repositoryAlias }}
commit: ${{ parameters.commit }}
- clean: true
- path: s/$(BUILD_REPOSITORY_TITLE)
- fetchTags: false
-- pwsh: '& "$Env:SYSTEM_DEFAULTWORKINGDIRECTORY/tools/devops/automation/scripts/show_bot_info.ps1"'
+- pwsh: '& "$Env:SYSTEM_DEFAULTWORKINGDIRECTORY/$Env:BUILD_REPOSITORY_TITLE/tools/devops/automation/scripts/show_bot_info.ps1"'
displayName: 'Show Bot Info'
-- bash: $(System.DefaultWorkingDirectory)/tools/devops/automation/scripts/bash/clean-bot.sh
+- bash: $(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/automation/scripts/bash/clean-bot.sh
displayName: 'Clean bot'
continueOnError: true
timeoutInMinutes: 60
-- bash: $(Build.SourcesDirectory)/tools/devops/automation/scripts/disable-codeql-arm64.sh
+- bash: $(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/automation/scripts/disable-codeql-arm64.sh
displayName: 'Disable CodeQL on arm64'
name: disableCodeQLOnArm64
@@ -53,13 +55,13 @@ steps:
name: macInfo
displayName: Set agent information
-- bash: $(Build.SourcesDirectory)/tools/devops/automation/scripts/clean-for-remote-tests.sh
+- bash: $(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/automation/scripts/clean-for-remote-tests.sh
displayName: 'Clean for remote tests'
continueOnError: true
- template: ../common/install-qa-provisioning-profiles.yml
parameters:
- xamarinMaciosPath: $(Build.SourcesDirectory)
+ xamarinMaciosPath: $(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)
env:
AUTH_TOKEN_GITHUB_COM: ${{ parameters.gitHubToken }}
AUTH_TOKEN_LA_DEV_APPLE_P12: ${{ parameters.xqaCertPass }}
@@ -72,7 +74,7 @@ steps:
- template: ./generate-token.yml
- pwsh: |
- Import-Module $Env:SYSTEM_DEFAULTWORKINGDIRECTORY\tools\devops\automation\scripts\MaciosCI.psd1
+ Import-Module $Env:SYSTEM_DEFAULTWORKINGDIRECTORY\$(BUILD_REPOSITORY_TITLE)\tools\devops\automation\scripts\MaciosCI.psd1
New-Item -Path "$($Env:HOME)" -Name "remote_build_testing" -Force -ItemType "directory"
New-Item -Path "$($Env:HOME)/remote_build_testing" -Name "BuildId.txt" -ItemType "file" -Force -Value "$($Env:BUILD_BUILDID)"
@@ -89,18 +91,18 @@ steps:
$vsts.Agents.SetEnabled($pool, $agent, $False)
displayName: "Disable macOS bot from pool"
-- bash: make -C $(Build.SourcesDirectory)/tools/devops provisioning
+- bash: make -C $(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops provisioning
displayName: 'Generate Xcode provisioning csx file'
- task: xamops.azdevex.provisionator-task.provisionator@2
displayName: 'Provision Xcode'
inputs:
- provisioning_script: $(System.DefaultWorkingDirectory)/tools/devops/provision-xcode.csx
+ provisioning_script: $(System.DefaultWorkingDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/provision-xcode.csx
provisioning_extra_args: '-vvvv'
github_token: ${{ parameters.gitHubToken }}
timeoutInMinutes: 250
-- bash: $(Build.SourcesDirectory)/system-dependencies.sh --ignore-mono --ignore-visual-studio --ignore-mono --ignore-sharpie --ignore-shellcheck --ignore-yamllint --provision-simulators
+- bash: $(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)/system-dependencies.sh --ignore-mono --ignore-visual-studio --ignore-mono --ignore-sharpie --ignore-shellcheck --ignore-yamllint --provision-simulators
displayName: 'Provision simulators'
timeoutInMinutes: 250
@@ -111,7 +113,7 @@ steps:
SecretsFilter: 'RemoteMacIdRsaPub'
displayName: 'Download id_rsa.pub'
-- bash: $(Build.SourcesDirectory)/tools/devops/automation/scripts/authorize-id-rsa-pub.sh "$(RemoteMacIdRsaPub)"
+- bash: $(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/automation/scripts/authorize-id-rsa-pub.sh "$(RemoteMacIdRsaPub)"
displayName: "Autorize id_rsa.pub"
continueOnError: true
@@ -157,13 +159,13 @@ steps:
allowFailedBuilds: true
path: $(Build.SourcesDirectory)/artifacts
-- bash: $(Build.SourcesDirectory)/tools/devops/automation/scripts/bash/install-workloads.sh
+- bash: $(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/automation/scripts/bash/install-workloads.sh
workingDirectory: $(System.DefaultWorkingDirectory)
displayName: 'Install .NET + workloads'
timeoutInMinutes: 45
env:
MACIOS_UPLOAD_PREFIX: ${{ parameters.uploadPrefix }}
-- bash: $(Build.SourcesDirectory)/tools/devops/automation/scripts/prepare-for-remote-tests.sh
+- bash: $(Build.SourcesDirectory)/$(BUILD_REPOSITORY_TITLE)/tools/devops/automation/scripts/prepare-for-remote-tests.sh
displayName: 'Prepare for remote tests'
continueOnError: true
diff --git a/tools/devops/automation/templates/windows/stage.yml b/tools/devops/automation/templates/windows/stage.yml
index c315fadef3f8..d3ea11ae5c6b 100644
--- a/tools/devops/automation/templates/windows/stage.yml
+++ b/tools/devops/automation/templates/windows/stage.yml
@@ -71,6 +71,7 @@ stages:
parameters:
repositoryAlias: ${{ parameters.repositoryAlias }}
commit: ${{ parameters.commit }}
+ isPR: ${{ parameters.isPR }}
macPool: ${{ parameters.macPool }}
gitHubToken: ${{ parameters.gitHubToken }}
xqaCertPass: ${{ parameters.xqaCertPass }}