diff --git a/docs/api/GameplayKit/IGKGameModelUpdate.xml b/docs/api/GameplayKit/IGKGameModelUpdate.xml
new file mode 100644
index 000000000000..efd03cf48ee8
--- /dev/null
+++ b/docs/api/GameplayKit/IGKGameModelUpdate.xml
@@ -0,0 +1,9 @@
+
+
+ Equivalent to the value produced by .
+ To be added.
+
+ This property is determined by the when this is applied to the game state of the . Ultimately, the method returns the with the highest . If multiple have the same and P:GameplayKit.GKMinMaxStrategist.Random is not , the returned is chosen randomly among those with the highest .
+
+
+
\ No newline at end of file
diff --git a/src/appkit.cs b/src/appkit.cs
index 7bac7b67e0a6..ed94b99ea48f 100644
--- a/src/appkit.cs
+++ b/src/appkit.cs
@@ -346,18 +346,37 @@ interface INSAnimationDelegate { }
[Model]
[Protocol]
interface NSAnimationDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("animationShouldStart:"), DelegateName ("NSAnimationPredicate"), DefaultValue (true)]
bool AnimationShouldStart (NSAnimation animation);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("animationDidStop:"), EventArgs ("NSAnimation")]
void AnimationDidStop (NSAnimation animation);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("animationDidEnd:"), EventArgs ("NSAnimation")]
void AnimationDidEnd (NSAnimation animation);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("animation:valueForProgress:"), DelegateName ("NSAnimationProgress"), DefaultValueFromArgumentAttribute ("progress")]
float /* float, not CGFloat */ ComputeAnimationCurve (NSAnimation animation, float /* NSAnimationProgress = float */ progress);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("animation:didReachProgressMark:"), EventArgs ("NSAnimation")]
void AnimationDidReachProgressMark (NSAnimation animation, float /* NSAnimationProgress = float */ progress);
}
@@ -481,6 +500,10 @@ interface INSAlertDelegate { }
[Model]
[Protocol]
interface NSAlertDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("alertShowHelp:"), DelegateName ("NSAlertPredicate"), DefaultValue (false)]
bool ShowHelp (NSAlert alert);
}
@@ -1170,84 +1193,187 @@ interface INSApplicationDelegate { }
[Model]
[Protocol]
interface NSApplicationDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationShouldTerminate:"), DelegateName ("NSApplicationTermination"), DefaultValue (NSApplicationTerminateReply.Now)]
NSApplicationTerminateReply ApplicationShouldTerminate (NSApplication sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:openFile:"), DelegateName ("NSApplicationFile"), DefaultValue (false)]
bool OpenFile (NSApplication sender, string filename);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:openFiles:"), EventArgs ("NSApplicationFiles")]
void OpenFiles (NSApplication sender, string [] filenames);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:openTempFile:"), DelegateName ("NSApplicationFile"), DefaultValue (false)]
bool OpenTempFile (NSApplication sender, string filename);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationShouldOpenUntitledFile:"), DelegateName ("NSApplicationPredicate"), DefaultValue (false)]
bool ApplicationShouldOpenUntitledFile (NSApplication sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationOpenUntitledFile:"), DelegateName ("NSApplicationPredicate"), DefaultValue (false)]
bool ApplicationOpenUntitledFile (NSApplication sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:openFileWithoutUI:"), DelegateName ("NSApplicationFileCommand"), DefaultValue (false)]
bool OpenFileWithoutUI (NSObject sender, string filename);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:printFile:"), DelegateName ("NSApplicationFile"), DefaultValue (false)]
bool PrintFile (NSApplication sender, string filename);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:printFiles:withSettings:showPrintPanels:"), DelegateName ("NSApplicationPrint"), DefaultValue (NSApplicationPrintReply.Failure)]
NSApplicationPrintReply PrintFiles (NSApplication application, string [] fileNames, NSDictionary printSettings, bool showPrintPanels);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationShouldTerminateAfterLastWindowClosed:"), DelegateName ("NSApplicationPredicate"), DefaultValue (false)]
bool ApplicationShouldTerminateAfterLastWindowClosed (NSApplication sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationShouldHandleReopen:hasVisibleWindows:"), DelegateName ("NSApplicationReopen"), DefaultValue (false)]
bool ApplicationShouldHandleReopen (NSApplication sender, bool hasVisibleWindows);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationDockMenu:"), DelegateName ("NSApplicationMenu"), DefaultValue (null)]
NSMenu ApplicationDockMenu (NSApplication sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:willPresentError:"), DelegateName ("NSApplicationError"), DefaultValue (null)]
NSError WillPresentError (NSApplication application, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationWillFinishLaunching:"), EventArgs ("NSNotification")]
void WillFinishLaunching (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationDidFinishLaunching:"), EventArgs ("NSNotification")]
void DidFinishLaunching (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationWillHide:"), EventArgs ("NSNotification")]
void WillHide (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationDidHide:"), EventArgs ("NSNotification")]
void DidHide (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationWillUnhide:"), EventArgs ("NSNotification")]
void WillUnhide (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationDidUnhide:"), EventArgs ("NSNotification")]
void DidUnhide (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationWillBecomeActive:"), EventArgs ("NSNotification")]
void WillBecomeActive (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationDidBecomeActive:"), EventArgs ("NSNotification")]
void DidBecomeActive (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationWillResignActive:"), EventArgs ("NSNotification")]
void WillResignActive (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationDidResignActive:"), EventArgs ("NSNotification")]
void DidResignActive (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationWillUpdate:"), EventArgs ("NSNotification")]
void WillUpdate (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationDidUpdate:"), EventArgs ("NSNotification")]
void DidUpdate (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationWillTerminate:"), EventArgs ("NSNotification")]
void WillTerminate (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applicationDidChangeScreenParameters:"), EventArgs ("NSNotification")]
void ScreenParametersChanged (NSNotification notification);
@@ -1273,40 +1399,93 @@ interface NSApplicationDelegate {
void OrderFrontStandardAboutPanelWithOptions (NSDictionary optionsDictionary);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:didRegisterForRemoteNotificationsWithDeviceToken:"), EventArgs ("NSData")]
void RegisteredForRemoteNotifications (NSApplication application, NSData deviceToken);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:didFailToRegisterForRemoteNotificationsWithError:"), EventArgs ("NSError", true)]
void FailedToRegisterForRemoteNotifications (NSApplication application, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:didReceiveRemoteNotification:"), EventArgs ("NSDictionary")]
void ReceivedRemoteNotification (NSApplication application, NSDictionary userInfo);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:willEncodeRestorableState:"), EventArgs ("NSCoder")]
void WillEncodeRestorableState (NSApplication app, NSCoder encoder);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:didDecodeRestorableState:"), EventArgs ("NSCoder")]
void DecodedRestorableState (NSApplication app, NSCoder state);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:willContinueUserActivityWithType:"), DelegateName ("NSApplicationUserActivityType"), DefaultValue (false)]
bool WillContinueUserActivity (NSApplication application, string userActivityType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:continueUserActivity:restorationHandler:"), DelegateName ("NSApplicationContinueUserActivity"), DefaultValue (false)]
bool ContinueUserActivity (NSApplication application, NSUserActivity userActivity, ContinueUserActivityRestorationHandler restorationHandler);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:didFailToContinueUserActivityWithType:error:"), EventArgs ("NSApplicationFailed"), DefaultValue (false)]
void FailedToContinueUserActivity (NSApplication application, string userActivityType, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:didUpdateUserActivity:"), EventArgs ("NSApplicationUpdatedUserActivity"), DefaultValue (false)]
void UpdatedUserActivity (NSApplication application, NSUserActivity userActivity);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("application:userDidAcceptCloudKitShareWithMetadata:"), EventArgs ("NSApplicationUserAcceptedCloudKitShare")]
void UserDidAcceptCloudKitShare (NSApplication application, CKShareMetadata metadata);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[EventArgs ("NSApplicationOpenUrls")]
[Export ("application:openURLs:")]
void OpenUrls (NSApplication application, NSUrl [] urls);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Now optional on NSApplicationDelegate.")]
[Export ("application:delegateHandlesKey:"), DelegateName ("NSApplicationHandlesKey"), NoDefaultValue]
bool HandlesKey (NSApplication sender, string key);
@@ -1334,9 +1513,18 @@ interface NSApplicationDelegate {
[NoMacCatalyst]
[Protocol]
interface NSServicesMenuRequestor {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("writeSelectionToPasteboard:types:")]
bool WriteSelectionToPasteboard (NSPasteboard pboard, string [] types);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("readSelectionFromPasteboard:")]
bool ReadSelectionFromPasteboard (NSPasteboard pboard);
}
@@ -1345,12 +1533,21 @@ interface NSServicesMenuRequestor {
[Category]
[BaseType (typeof (NSApplication))]
interface NSApplication_NSTouchBarCustomization {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("isAutomaticCustomizeTouchBarMenuItemEnabled")]
bool GetAutomaticCustomizeTouchBarMenuItemEnabled ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setAutomaticCustomizeTouchBarMenuItemEnabled:")]
void SetAutomaticCustomizeTouchBarMenuItemEnabled (bool enabled);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("toggleTouchBarCustomizationPalette:")]
void ToggleTouchBarCustomizationPalette ([NullAllowed] NSObject sender);
}
@@ -2295,27 +2492,56 @@ interface NSBrowserDelegate {
[Export ("browser:createRowsForColumn:inMatrix:")]
void CreateRowsForColumn (NSBrowser sender, nint column, NSMatrix matrix);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browser:numberOfChildrenOfItem:")]
nint CountChildren (NSBrowser browser, NSObject item);
[Export ("browser:child:ofItem:")]
NSObject GetChild (NSBrowser browser, nint index, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browser:isLeafItem:")]
bool IsLeafItem (NSBrowser browser, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browser:objectValueForItem:")]
NSObject ObjectValueForItem (NSBrowser browser, NSObject item);
[Export ("browser:heightOfRow:inColumn:")]
nfloat RowHeight (NSBrowser browser, nint row, nint columnIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("rootItemForBrowser:")]
NSObject RootItemForBrowser (NSBrowser browser);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browser:setObjectValue:forItem:")]
void SetObjectValue (NSBrowser browser, NSObject obj, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browser:shouldEditItem:")]
bool ShouldEditItem (NSBrowser browser, NSObject item);
@@ -2334,9 +2560,15 @@ interface NSBrowserDelegate {
[Export ("browser:isColumnValid:")]
bool IsColumnValid (NSBrowser sender, nint column);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browserWillScroll:")]
void WillScroll (NSBrowser sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browserDidScroll:")]
void DidScroll (NSBrowser sender);
@@ -2346,6 +2578,9 @@ interface NSBrowserDelegate {
[Export ("browser:sizeToFitWidthOfColumn:")]
nfloat SizeToFitWidth (NSBrowser browser, nint columnIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browserColumnConfigurationDidChange:")]
void ColumnConfigurationDidChange (NSNotification notification);
@@ -2384,15 +2619,31 @@ interface NSBrowserDelegate {
[Export ("browser:typeSelectStringForRow:inColumn:")]
string TypeSelectString (NSBrowser browser, nint row, nint column);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browser:shouldTypeSelectForEvent:withCurrentSearchString:")]
bool ShouldTypeSelectForEvent (NSBrowser browser, NSEvent theEvent, string currentSearchString);
[Export ("browser:nextTypeSelectMatchFromRow:toRow:inColumn:forString:")]
nint NextTypeSelectMatch (NSBrowser browser, nint startRow, nint endRow, nint column, string searchString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browser:previewViewControllerForLeafItem:")]
NSViewController PreviewViewControllerForLeafItem (NSBrowser browser, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("browser:headerViewControllerForItem:")]
NSViewController HeaderViewControllerForItem (NSBrowser browser, NSObject item);
@@ -3185,6 +3436,9 @@ interface NSClipView {
[NoMacCatalyst]
[Category, BaseType (typeof (NSCoder))]
partial interface NSCoderAppKitAddons {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 9)]
[Export ("decodeNXColor")]
NSColor DecodeNXColor ();
@@ -3462,13 +3716,28 @@ interface NSCollectionViewDataSource {
[Export ("collectionView:numberOfItemsInSection:")]
nint GetNumberofItems (NSCollectionView collectionView, nint section);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("collectionView:itemForRepresentedObjectAtIndexPath:")]
NSCollectionViewItem GetItem (NSCollectionView collectionView, NSIndexPath indexPath);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("numberOfSectionsInCollectionView:")]
nint GetNumberOfSections (NSCollectionView collectionView);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:viewForSupplementaryElementOfKind:atIndexPath:")]
NSView GetView (NSCollectionView collectionView, NSString kind, NSIndexPath indexPath);
}
@@ -3480,13 +3749,31 @@ interface INSCollectionViewDelegate { }
[Model]
[Protocol]
partial interface NSCollectionViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:canDragItemsAtIndexes:withEvent:")]
bool CanDragItems (NSCollectionView collectionView, NSIndexSet indexes, NSEvent evt);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:writeItemsAtIndexes:toPasteboard:")]
[Deprecated (PlatformName.MacOSX, 10, 15, message: "Use the 'GetPasteboardWriter' method instead.")]
bool WriteItems (NSCollectionView collectionView, NSIndexSet indexes, NSPasteboard toPasteboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSFilePromiseReceiver' objects instead.")]
[Export ("collectionView:namesOfPromisedFilesDroppedAtDestination:forDraggedItemsAtIndexes:")]
string [] NamesOfPromisedFilesDroppedAtDestination (NSCollectionView collectionView, NSUrl dropUrl, NSIndexSet indexes);
@@ -3508,17 +3795,42 @@ partial interface NSCollectionViewDelegate {
bool AcceptDrop (NSCollectionView collectionView, NSDraggingInfo draggingInfo, nint index, NSCollectionViewDropOperation dropOperation);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:canDragItemsAtIndexPaths:withEvent:")]
bool CanDragItems (NSCollectionView collectionView, NSSet indexPaths, NSEvent theEvent);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:writeItemsAtIndexPaths:toPasteboard:")]
[Deprecated (PlatformName.MacOSX, 10, 15, message: "Use the 'GetPasteboardWriter' method instead.")]
bool WriteItems (NSCollectionView collectionView, NSSet indexPaths, NSPasteboard pasteboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSFilePromiseReceiver' objects instead.")]
[Export ("collectionView:namesOfPromisedFilesDroppedAtDestination:forDraggedItemsAtIndexPaths:")]
string [] GetNamesOfPromisedFiles (NSCollectionView collectionView, NSUrl dropURL, NSSet indexPaths);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:draggingImageForItemsAtIndexPaths:withEvent:offset:")]
NSImage GetDraggingImage (NSCollectionView collectionView, NSSet indexPaths, NSEvent theEvent, ref CGPoint dragImageOffset);
@@ -3537,43 +3849,111 @@ partial interface NSCollectionViewDelegate {
bool AcceptDrop (NSCollectionView collectionView, NSDraggingInfo draggingInfo, NSIndexPath indexPath, NSCollectionViewDropOperation dropOperation);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:pasteboardWriterForItemAtIndexPath:")]
[return: NullAllowed]
INSPasteboardWriting GetPasteboardWriter (NSCollectionView collectionView, NSIndexPath indexPath);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:draggingSession:willBeginAtPoint:forItemsAtIndexPaths:")]
void DraggingSessionWillBegin (NSCollectionView collectionView, NSDraggingSession session, CGPoint screenPoint, NSSet indexPaths);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:shouldChangeItemsAtIndexPaths:toHighlightState:")]
NSSet ShouldChangeItems (NSCollectionView collectionView, NSSet indexPaths, NSCollectionViewItemHighlightState highlightState);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:didChangeItemsAtIndexPaths:toHighlightState:")]
void ItemsChanged (NSCollectionView collectionView, NSSet indexPaths, NSCollectionViewItemHighlightState highlightState);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:shouldSelectItemsAtIndexPaths:")]
NSSet ShouldSelectItems (NSCollectionView collectionView, NSSet indexPaths);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:shouldDeselectItemsAtIndexPaths:")]
NSSet ShouldDeselectItems (NSCollectionView collectionView, NSSet indexPaths);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:didSelectItemsAtIndexPaths:")]
void ItemsSelected (NSCollectionView collectionView, NSSet indexPaths);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:didDeselectItemsAtIndexPaths:")]
void ItemsDeselected (NSCollectionView collectionView, NSSet indexPaths);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:willDisplayItem:forRepresentedObjectAtIndexPath:")]
void WillDisplayItem (NSCollectionView collectionView, NSCollectionViewItem item, NSIndexPath indexPath);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:willDisplaySupplementaryView:forElementKind:atIndexPath:")]
void WillDisplaySupplementaryView (NSCollectionView collectionView, NSView view, NSString elementKind, NSIndexPath indexPath);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:didEndDisplayingItem:forRepresentedObjectAtIndexPath:")]
void DisplayingItemEnded (NSCollectionView collectionView, NSCollectionViewItem item, NSIndexPath indexPath);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:didEndDisplayingSupplementaryView:forElementOfKind:atIndexPath:")]
void DisplayingSupplementaryViewEnded (NSCollectionView collectionView, NSView view, string elementKind, NSIndexPath indexPath);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:transitionLayoutForOldLayout:newLayout:")]
NSCollectionViewTransitionLayout TransitionLayout (NSCollectionView collectionView, NSCollectionViewLayout fromLayout, NSCollectionViewLayout toLayout);
}
@@ -3584,18 +3964,35 @@ interface INSCollectionViewElement { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSCollectionViewElement : NSUserInterfaceItemIdentification {
+ /// To be added.
+ /// To be added.
[Export ("prepareForReuse")]
void PrepareForReuse ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applyLayoutAttributes:")]
void ApplyLayoutAttributes (NSCollectionViewLayoutAttributes layoutAttributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("willTransitionFromLayout:toLayout:")]
void WillTransition (NSCollectionViewLayout oldLayout, NSCollectionViewLayout newLayout);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("didTransitionFromLayout:toLayout:")]
void DidTransition (NSCollectionViewLayout oldLayout, NSCollectionViewLayout newLayout);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("preferredLayoutAttributesFittingAttributes:")]
NSCollectionViewLayoutAttributes GetPreferredLayoutAttributes (NSCollectionViewLayoutAttributes layoutAttributes);
}
@@ -3876,6 +4273,12 @@ interface NSCollectionViewFlowLayoutInvalidationContext {
[BaseType (typeof (NSObject))]
[Protocol, Model]
interface NSCollectionViewDelegateFlowLayout : NSCollectionViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:layout:sizeForItemAtIndexPath:")]
CGSize SizeForItem (NSCollectionView collectionView, NSCollectionViewLayout collectionViewLayout, NSIndexPath indexPath);
@@ -4809,6 +5212,9 @@ interface NSColorList : NSSecureCoding {
[NoMacCatalyst]
[Protocol]
interface NSColorChanging {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("changeColor:")]
void ChangeColor ([NullAllowed] NSColorPanel sender);
@@ -5248,12 +5654,26 @@ interface NSComboBoxDataSource {
[Export ("comboBox:objectValueForItemAtIndex:")]
NSObject ObjectValueForItem (NSComboBox comboBox, nint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("numberOfItemsInComboBox:")]
nint ItemCount (NSComboBox comboBox);
- [Export ("comboBox:completedString:")]
- string CompletedString (NSComboBox comboBox, string uncompletedString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ [Export ("comboBox:completedString:")]
+ string CompletedString (NSComboBox comboBox, string uncompletedString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("comboBox:indexOfItemWithStringValue:")]
nint IndexOfItem (NSComboBox comboBox, string value);
}
@@ -5364,12 +5784,26 @@ partial interface NSComboBoxCellDataSource {
[Export ("comboBoxCell:objectValueForItemAtIndex:")]
NSObject ObjectValueForItem (NSComboBoxCell comboBox, nint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("numberOfItemsInComboBoxCell:")]
nint ItemCount (NSComboBoxCell comboBox);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("comboBoxCell:completedString:")]
string CompletedString (NSComboBoxCell comboBox, string uncompletedString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("comboBoxCell:indexOfItemWithStringValue:")]
nuint IndexOfItem (NSComboBoxCell comboBox, string value);
}
@@ -5570,9 +6004,15 @@ partial interface NSControl {
[NoMacCatalyst]
[Protocol]
interface NSEditorRegistration {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("objectDidBeginEditing:")]
void ObjectDidBeginEditing (INSEditor editor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("objectDidEndEditing:")]
void ObjectDidEndEditing (INSEditor editor);
}
@@ -5581,10 +6021,16 @@ interface NSEditorRegistration {
[Category]
[BaseType (typeof (NSObject))]
interface NSObject_NSEditorRegistration {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("objectDidBeginEditing:")]
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use 'NSEditorRegistration' instead.")]
void ObjectDidBeginEditing (INSEditor editor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("objectDidEndEditing:")]
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use 'NSEditorRegistration' instead.")]
void ObjectDidEndEditing (INSEditor editor);
@@ -5595,18 +6041,32 @@ interface INSEditor { }
[NoMacCatalyst]
[Protocol]
interface NSEditor {
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("discardEditing")]
void DiscardEditing ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("commitEditing")]
bool CommitEditing ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("commitEditingWithDelegate:didCommitSelector:contextInfo:")]
void CommitEditing ([NullAllowed] NSObject delegateObject, [NullAllowed] Selector didCommitSelector, IntPtr contextInfo);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("commitEditingAndReturnError:")]
bool CommitEditing ([NullAllowed] out NSError error);
@@ -6044,6 +6504,11 @@ interface INSDatePickerCellDelegate { }
[Model]
[Protocol]
interface NSDatePickerCellDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("datePickerCell:validateProposedDateValue:timeInterval:"), EventArgs ("NSDatePickerValidator")]
void ValidateProposedDateValue (NSDatePickerCell aDatePickerCell, ref NSDate proposedDateValue, double proposedTimeInterval);
}
@@ -6123,6 +6588,9 @@ interface NSDockTile {
[Model]
[Protocol]
interface NSDockTilePlugIn {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setDockTile:")]
void SetDockTile (NSDockTile dockTile);
@@ -6130,6 +6598,9 @@ interface NSDockTilePlugIn {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("dockMenu")]
NSMenu DockMenu ();
}
@@ -6935,25 +7406,51 @@ interface INSDraggingSource { }
[Model]
[Protocol]
interface NSDraggingSource {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("draggingSourceOperationMaskForLocal:"), DefaultValue (NSDragOperation.None)]
NSDragOperation DraggingSourceOperationMaskForLocal (bool flag);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use NSFilePromiseProvider objects instead.")]
[Export ("namesOfPromisedFilesDroppedAtDestination:"), DefaultValue (new string [0])]
string [] NamesOfPromisedFilesDroppedAtDestination (NSUrl dropDestination);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("draggedImage:beganAt:")]
void DraggedImageBeganAt (NSImage image, CGPoint screenPoint);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("draggedImage:endedAt:operation:")]
void DraggedImageEndedAtOperation (NSImage image, CGPoint screenPoint, NSDragOperation operation);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("draggedImage:movedTo:")]
void DraggedImageMovedTo (NSImage image, CGPoint screenPoint);
[Export ("ignoreModifierKeysWhileDragging"), DefaultValue (false)]
bool IgnoreModifierKeysWhileDragging { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 1, message: "Use DraggedImageEndedAtOperation instead.")]
[Export ("draggedImage:endedAt:deposited:")]
void DraggedImageEndedAtDeposited (NSImage image, CGPoint screenPoint, bool deposited);
@@ -7032,24 +7529,49 @@ interface INSDrawerDelegate { }
[Protocol]
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSSplitViewController' instead.")]
interface NSDrawerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawerDidClose:"), EventArgs ("NSNotification")]
void DrawerDidClose (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawerDidOpen:"), EventArgs ("NSNotification")]
void DrawerDidOpen (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawerShouldClose:"), DelegateName ("DrawerShouldCloseDelegate"), DefaultValue (true)]
bool DrawerShouldClose (NSDrawer sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawerShouldOpen:"), DelegateName ("DrawerShouldOpenDelegate"), DefaultValue (true)]
bool DrawerShouldOpen (NSDrawer sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawerWillClose:"), EventArgs ("NSNotification")]
void DrawerWillClose (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawerWillOpen:"), EventArgs ("NSNotification")]
void DrawerWillOpen (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawerWillResizeContents:toSize:"), DelegateName ("DrawerWillResizeContentsDelegate"), DefaultValue (null)]
CGSize DrawerWillResizeContents (NSDrawer sender, CGSize toSize);
@@ -7058,9 +7580,16 @@ interface NSDrawerDelegate {
[NoMacCatalyst]
[Protocol]
interface NSFontChanging {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("changeFont:")]
void ChangeFont ([NullAllowed] NSFontManager sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Now optional method.")]
[Export ("validModesForFontPanel:")]
NSFontPanelModeMask GetValidModes (NSFontPanel fontPanel);
@@ -9027,15 +9556,34 @@ interface INSGestureRecognizerDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSGestureRecognizerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("gestureRecognizerShouldBegin:"), DelegateName ("NSGestureProbe"), DefaultValue (true)]
bool ShouldBegin (NSGestureRecognizer gestureRecognizer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:"), DelegateName ("NSGesturesProbe"), DefaultValue (false)]
bool ShouldRecognizeSimultaneously (NSGestureRecognizer gestureRecognizer, NSGestureRecognizer otherGestureRecognizer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("gestureRecognizer:shouldRequireFailureOfGestureRecognizer:"), DelegateName ("NSGesturesProbe"), DefaultValue (false)]
bool ShouldRequireFailure (NSGestureRecognizer gestureRecognizer, NSGestureRecognizer otherGestureRecognizer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("gestureRecognizer:shouldBeRequiredToFailByGestureRecognizer:"), DelegateName ("NSGesturesProbe"), DefaultValue (false)]
bool ShouldBeRequiredToFail (NSGestureRecognizer gestureRecognizer, NSGestureRecognizer otherGestureRecognizer);
@@ -9045,9 +9593,19 @@ interface NSGestureRecognizerDelegate {
bool ShouldReceiveEvent (NSGestureRecognizer gestureRecognizer, NSEvent gestureEvent);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("gestureRecognizer:shouldAttemptToRecognizeWithEvent:"), DelegateName ("NSGestureEvent"), DefaultValue (true)]
bool ShouldAttemptToRecognize (NSGestureRecognizer gestureRecognizer, NSEvent theEvent);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("gestureRecognizer:shouldReceiveTouch:"), DelegateName ("NSTouchEvent"), DefaultValue (true)]
bool ShouldReceiveTouch (NSGestureRecognizer gestureRecognizer, NSTouch touch);
}
@@ -9267,30 +9825,59 @@ interface INSMenuDelegate { }
[Model]
[Protocol]
interface NSMenuDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("menuNeedsUpdate:")]
void NeedsUpdate (NSMenu menu);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("numberOfItemsInMenu:")]
nint MenuItemCount (NSMenu menu);
[Export ("menu:updateItem:atIndex:shouldCancel:")]
bool UpdateItem (NSMenu menu, NSMenuItem item, nint atIndex, bool shouldCancel);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("menuHasKeyEquivalent:forEvent:target:action:")]
bool HasKeyEquivalentForEvent (NSMenu menu, NSEvent theEvent, NSObject target, Selector action);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("menuWillOpen:")]
void MenuWillOpen (NSMenu menu);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("menuDidClose:")]
void MenuDidClose (NSMenu menu);
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("menu:willHighlightItem:")]
void MenuWillHighlightItem (NSMenu menu, NSMenuItem item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("confinementRectForMenu:onScreen:")]
CGRect ConfinementRectForMenu (NSMenu menu, NSScreen screen);
}
@@ -9997,36 +10584,85 @@ interface INSOpenSavePanelDelegate { }
[Model]
[Protocol]
interface NSOpenSavePanelDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("panel:shouldEnableURL:"), DelegateName ("NSOpenSavePanelUrl"), DefaultValue (true)]
bool ShouldEnableUrl (NSSavePanel panel, NSUrl url);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("panel:validateURL:error:"), DelegateName ("NSOpenSavePanelValidate"), DefaultValue (true)]
bool ValidateUrl (NSSavePanel panel, NSUrl url, [NullAllowed] out NSError outError);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("panel:didChangeToDirectoryURL:"), EventArgs ("NSOpenSavePanelUrl")]
void DidChangeToDirectory (NSSavePanel panel, NSUrl newDirectoryUrl);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("panel:userEnteredFilename:confirmed:"), DelegateName ("NSOpenSaveFilenameConfirmation"), DefaultValueFromArgument ("filename")]
string UserEnteredFilename (NSSavePanel panel, string filename, bool confirmed);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("panel:willExpand:"), EventArgs ("NSOpenSaveExpanding")]
void WillExpand (NSSavePanel panel, bool expanding);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("panelSelectionDidChange:"), EventArgs ("NSOpenSaveSelectionChanged")]
void SelectionDidChange (NSSavePanel panel);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 6, message: "Use ValidateUrl instead.")]
[Export ("panel:isValidFilename:"), DelegateName ("NSOpenSaveFilename"), DefaultValue (true)]
bool IsValidFilename (NSSavePanel panel, string fileName);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 6, message: "Use DidChangeToDirectory instead.")]
[Export ("panel:directoryDidChange:"), EventArgs ("NSOpenSaveFilename")]
void DirectoryDidChange (NSSavePanel panel, string path);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 6, message: "This method does not control sorting order.")]
[Export ("panel:compareFilename:with:caseSensitive:"), DelegateName ("NSOpenSaveCompare"), DefaultValue (NSComparisonResult.Same)]
NSComparisonResult CompareFilenames (NSSavePanel panel, string name1, string name2, bool caseSensitive);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 6, message: "Use ShouldEnableUrl instead.")]
[Export ("panel:shouldShowFilename:"), DelegateName ("NSOpenSaveFilename"), DefaultValue (true)]
bool ShouldShowFilename (NSSavePanel panel, string filename);
@@ -10155,72 +10791,194 @@ interface INSOutlineViewDelegate { }
[Model]
[Protocol]
partial interface NSOutlineViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:willDisplayCell:forTableColumn:item:")]
void WillDisplayCell (NSOutlineView outlineView, NSObject cell, [NullAllowed] NSTableColumn tableColumn, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldEditTableColumn:item:")]
[DefaultValue (false)]
bool ShouldEditTableColumn (NSOutlineView outlineView, [NullAllowed] NSTableColumn tableColumn, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("selectionShouldChangeInOutlineView:")]
[DefaultValue (false)]
bool SelectionShouldChange (NSOutlineView outlineView);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldSelectItem:")]
[DefaultValue (true)]
bool ShouldSelectItem (NSOutlineView outlineView, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:selectionIndexesForProposedSelection:")]
NSIndexSet GetSelectionIndexes (NSOutlineView outlineView, NSIndexSet proposedSelectionIndexes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldSelectTableColumn:")]
bool ShouldSelectTableColumn (NSOutlineView outlineView, [NullAllowed] NSTableColumn tableColumn);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:mouseDownInHeaderOfTableColumn:")]
void MouseDown (NSOutlineView outlineView, NSTableColumn tableColumn);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:didClickTableColumn:")]
void DidClickTableColumn (NSOutlineView outlineView, NSTableColumn tableColumn);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:didDragTableColumn:")]
void DidDragTableColumn (NSOutlineView outlineView, NSTableColumn tableColumn);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:toolTipForCell:rect:tableColumn:item:mouseLocation:")]
string ToolTipForCell (NSOutlineView outlineView, NSCell cell, ref CGRect rect, [NullAllowed] NSTableColumn tableColumn, NSObject item, CGPoint mouseLocation);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:heightOfRowByItem:"), NoDefaultValue]
nfloat GetRowHeight (NSOutlineView outlineView, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:typeSelectStringForTableColumn:item:")]
string GetSelectString (NSOutlineView outlineView, [NullAllowed] NSTableColumn tableColumn, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:nextTypeSelectMatchFromItem:toItem:forString:")]
NSObject GetNextTypeSelectMatch (NSOutlineView outlineView, NSObject startItem, NSObject endItem, string searchString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldTypeSelectForEvent:withCurrentSearchString:")]
bool ShouldTypeSelect (NSOutlineView outlineView, NSEvent theEvent, [NullAllowed] string searchString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldShowCellExpansionForTableColumn:item:")]
bool ShouldShowCellExpansion (NSOutlineView outlineView, [NullAllowed] NSTableColumn tableColumn, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldTrackCell:forTableColumn:item:")]
bool ShouldTrackCell (NSOutlineView outlineView, NSCell cell, [NullAllowed] NSTableColumn tableColumn, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:dataCellForTableColumn:item:"), NoDefaultValue]
NSCell GetCell (NSOutlineView outlineView, NSTableColumn tableColumn, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:viewForTableColumn:item:"), NoDefaultValue]
NSView GetView (NSOutlineView outlineView, [NullAllowed] NSTableColumn tableColumn, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:isGroupItem:")]
bool IsGroupItem (NSOutlineView outlineView, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldExpandItem:")]
bool ShouldExpandItem (NSOutlineView outlineView, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldCollapseItem:")]
bool ShouldCollapseItem (NSOutlineView outlineView, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:willDisplayOutlineCell:forTableColumn:item:")]
void WillDisplayOutlineCell (NSOutlineView outlineView, NSObject cell, [NullAllowed] NSTableColumn tableColumn, NSObject item);
@@ -10230,33 +10988,67 @@ partial interface NSOutlineViewDelegate {
[Export ("outlineView:shouldReorderColumn:toColumn:")]
bool ShouldReorder (NSOutlineView outlineView, nint columnIndex, nint newColumnIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:shouldShowOutlineCellForItem:")]
bool ShouldShowOutlineCell (NSOutlineView outlineView, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineViewColumnDidMove:")]
void ColumnDidMove (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineViewColumnDidResize:")]
void ColumnDidResize (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineViewSelectionIsChanging:")]
void SelectionIsChanging (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineViewItemWillExpand:")]
void ItemWillExpand (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineViewItemDidExpand:")]
void ItemDidExpand (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineViewItemWillCollapse:")]
void ItemWillCollapse (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineViewItemDidCollapse:")]
void ItemDidCollapse (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineViewSelectionDidChange:")]
void SelectionDidChange (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:rowViewForItem:")]
NSTableRowView RowViewForItem (NSOutlineView outlineView, NSObject item);
@@ -10289,27 +11081,69 @@ partial interface NSOutlineViewDataSource {
[Export ("outlineView:child:ofItem:")]
NSObject GetChild (NSOutlineView outlineView, nint childIndex, [NullAllowed] NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:isItemExpandable:")]
bool ItemExpandable (NSOutlineView outlineView, NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:numberOfChildrenOfItem:")]
nint GetChildrenCount (NSOutlineView outlineView, [NullAllowed] NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:objectValueForTableColumn:byItem:")]
NSObject GetObjectValue (NSOutlineView outlineView, [NullAllowed] NSTableColumn tableColumn, [NullAllowed] NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:setObjectValue:forTableColumn:byItem:")]
void SetObjectValue (NSOutlineView outlineView, [NullAllowed] NSObject theObject, [NullAllowed] NSTableColumn tableColumn, [NullAllowed] NSObject item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:itemForPersistentObject:")]
NSObject ItemForPersistentObject (NSOutlineView outlineView, NSObject theObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:persistentObjectForItem:")]
NSObject PersistentObjectForItem (NSOutlineView outlineView, [NullAllowed] NSObject item);
- [Export ("outlineView:sortDescriptorsDidChange:")]
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ [Export ("outlineView:sortDescriptorsDidChange:")]
void SortDescriptorsChanged (NSOutlineView outlineView, NSSortDescriptor [] oldDescriptors);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:writeItems:toPasteboard:")]
[Deprecated (PlatformName.MacOSX, 10, 15)]
bool OutlineViewwriteItemstoPasteboard (NSOutlineView outlineView, NSArray items, NSPasteboard pboard);
@@ -10328,6 +11162,12 @@ partial interface NSOutlineViewDataSource {
bool AcceptDrop (NSOutlineView outlineView, NSDraggingInfo info, [NullAllowed] NSObject item, nint index);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:namesOfPromisedFilesDroppedAtDestination:forDraggedItems:")]
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSFilePromiseReceiver' objects instead.")]
string [] FilesDropped (NSOutlineView outlineView, NSUrl dropDestination, NSArray items);
@@ -10337,6 +11177,10 @@ partial interface NSOutlineViewDataSource {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSHapticFeedbackPerformer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("performFeedbackPattern:performanceTime:")]
void PerformFeedback (NSHapticFeedbackPattern pattern, NSHapticFeedbackPerformanceTime performanceTime);
@@ -11291,21 +12135,45 @@ interface NSStringDrawingContext {
[ThreadSafe]
[Category, BaseType (typeof (NSString))]
interface NSStringDrawing_NSString {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sizeWithAttributes:")]
CGSize StringSize ([NullAllowed] NSDictionary attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.StringSize (attributes.GetDictionary ()!)")]
CGSize StringSize ([NullAllowed] AppKit.NSStringAttributes attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawAtPoint:withAttributes:")]
void DrawAtPoint (CGPoint point, [NullAllowed] NSDictionary attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.DrawAtPoint (point, attributes.GetDictionary ()!)")]
void DrawAtPoint (CGPoint point, [NullAllowed] AppKit.NSStringAttributes attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawInRect:withAttributes:")]
void DrawInRect (CGRect rect, [NullAllowed] NSDictionary attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.DrawInRect (rect, attributes.GetDictionary ()!)")]
void DrawInRect (CGRect rect, [NullAllowed] AppKit.NSStringAttributes attributes);
}
@@ -11313,12 +12181,21 @@ interface NSStringDrawing_NSString {
[ThreadSafe]
[Category, BaseType (typeof (NSAttributedString))]
interface NSStringDrawing_NSAttributedString {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("size")]
CGSize GetSize ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawAtPoint:")]
void DrawAtPoint (CGPoint point);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawInRect:")]
void DrawInRect (CGRect rect);
}
@@ -11329,9 +12206,20 @@ interface NSStringDrawing_NSAttributedString {
[Category]
[BaseType (typeof (NSAttributedString))]
interface NSAttributedString_NSExtendedStringDrawing {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawWithRect:options:context:")]
void DrawWithRect (CGRect rect, NSStringDrawingOptions options, [NullAllowed] NSStringDrawingContext context);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("boundingRectWithSize:options:context:")]
CGRect BoundingRectWithSize (CGSize size, NSStringDrawingOptions options, [NullAllowed] NSStringDrawingContext context);
}
@@ -11341,57 +12229,138 @@ interface NSAttributedString_NSExtendedStringDrawing {
[NoMacCatalyst]
[Category, BaseType (typeof (NSMutableAttributedString))]
interface NSMutableAttributedStringAppKitAddons {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("readFromURL:options:documentAttributes:error:")]
bool ReadFromURL (NSUrl url, NSDictionary options, out NSDictionary returnOptions, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.ReadFromURL (url, options.GetDictionary ()!, out returnOptions, out error)")]
bool ReadFromURL (NSUrl url, NSAttributedStringDocumentAttributes options, out NSDictionary returnOptions, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("readFromURL:options:documentAttributes:")]
bool ReadFromURL (NSUrl url, NSDictionary options, out NSDictionary returnOptions);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.ReadFromURL (url, options.GetDictionary ()!, out returnOptions)")]
bool ReadFromURL (NSUrl url, NSAttributedStringDocumentAttributes options, out NSDictionary returnOptions);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("readFromData:options:documentAttributes:error:")]
bool ReadFromData (NSData data, NSDictionary options, out NSDictionary returnOptions, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.ReadFromData (data, options.GetDictionary ()!, out returnOptions, out error)")]
bool ReadFromData (NSData data, NSAttributedStringDocumentAttributes options, out NSDictionary returnOptions, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("readFromData:options:documentAttributes:")]
bool ReadFromData (NSData data, NSDictionary options, out NSDictionary dict);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.ReadFromData (data, options.GetDictionary ()!, out returnOptions)")]
bool ReadFromData (NSData data, NSAttributedStringDocumentAttributes options, out NSDictionary returnOptions);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("superscriptRange:")]
void SuperscriptRange (NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("subscriptRange:")]
void SubscriptRange (NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("unscriptRange:")]
void UnscriptRange (NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("applyFontTraits:range:")]
void ApplyFontTraits (NSFontTraitMask traitMask, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setAlignment:range:")]
void SetAlignment (NSTextAlignment alignment, NSRange range);
[Export ("setBaseWritingDirection:range:")]
void SetBaseWritingDirection (NSWritingDirection writingDirection, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fixFontAttributeInRange:")]
void FixFontAttributeInRange (NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fixParagraphStyleAttributeInRange:")]
void FixParagraphStyleAttributeInRange (NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fixAttachmentAttributeInRange:")]
void FixAttachmentAttributeInRange (NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("updateAttachmentsFromPath:")]
void UpdateAttachmentsFromPath (string path);
}
@@ -11403,18 +12372,36 @@ interface INSImageDelegate { }
[Model]
[Protocol]
interface NSImageDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("imageDidNotDraw:inRect:"), DelegateName ("NSImageRect"), DefaultValue (null)]
NSImage ImageDidNotDraw (NSObject sender, CGRect aRect);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("image:willLoadRepresentation:"), EventArgs ("NSImageLoad")]
void WillLoadRepresentation (NSImage image, NSImageRep rep);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("image:didLoadRepresentationHeader:"), EventArgs ("NSImageLoad")]
void DidLoadRepresentationHeader (NSImage image, NSImageRep rep);
[Export ("image:didLoadPartOfRepresentation:withValidRows:"), EventArgs ("NSImagePartial")]
void DidLoadPartOfRepresentation (NSImage image, NSImageRep rep, nint rows);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("image:didLoadRepresentation:withStatus:"), EventArgs ("NSImageLoadRepresentation")]
void DidLoadRepresentation (NSImage image, NSImageRep rep, NSImageLoadStatus status);
}
@@ -12157,33 +13144,74 @@ interface NSMatrixDelegate : NSControlTextEditingDelegate {
[BaseType (typeof (NSObject))]
[Protocol]
interface NSControlTextEditingDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:textShouldBeginEditing:"), DelegateName ("NSControlText"), DefaultValue (true)]
bool TextShouldBeginEditing (NSControl control, NSText fieldEditor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:textShouldEndEditing:"), DelegateName ("NSControlText"), DefaultValue (true)]
bool TextShouldEndEditing (NSControl control, NSText fieldEditor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:didFailToFormatString:errorDescription:"), DelegateName ("NSControlTextError"), DefaultValue (true)]
bool DidFailToFormatString (NSControl control, string str, string error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:didFailToValidatePartialString:errorDescription:"), EventArgs ("NSControlTextError")]
void DidFailToValidatePartialString (NSControl control, string str, string error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:isValidObject:"), DelegateName ("NSControlTextValidation"), DefaultValue (true)]
bool IsValidObject (NSControl control, NSObject objectToValidate);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:textView:doCommandBySelector:"), DelegateName ("NSControlCommand"), DefaultValue (false)]
bool DoCommandBySelector (NSControl control, NSTextView textView, Selector commandSelector);
[Export ("control:textView:completions:forPartialWordRange:indexOfSelectedItem:"), DelegateName ("NSControlTextCompletion"), DefaultValue (null)]
string [] GetCompletions (NSControl control, NSTextView textView, string [] words, NSRange charRange, ref nint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidBeginEditing:")]
void ControlTextDidBeginEditing (NSNotification obj);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidEndEditing:")]
void ControlTextDidEndEditing (NSNotification obj);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidChange:")]
void ControlTextDidChange (NSNotification obj);
}
@@ -12287,10 +13315,17 @@ interface NSPressGestureRecognizer {
[NoMacCatalyst]
[Protocol]
interface NSPasteboardTypeOwner {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("pasteboard:provideDataForType:")]
void ProvideData (NSPasteboard sender, string type);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pasteboardChangedOwner:")]
void PasteboardChangedOwner (NSPasteboard sender);
}
@@ -12885,6 +13920,11 @@ interface NSPasteboardWriting {
[Export ("writableTypesForPasteboard:")]
string [] GetWritableTypesForPasteboard (NSPasteboard pasteboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("writingOptionsForType:pasteboard:")]
NSPasteboardWritingOptions GetWritingOptionsForType (string type, NSPasteboard pasteboard);
@@ -12975,6 +14015,11 @@ interface INSPasteboardItemDataProvider { }
[Model]
[Protocol]
interface NSPasteboardItemDataProvider {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("pasteboard:item:provideDataForType:")]
void ProvideDataForType (NSPasteboard pasteboard, NSPasteboardItem item, string type);
@@ -12982,6 +14027,9 @@ interface NSPasteboardItemDataProvider {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pasteboardFinishedWithDataProvider:")]
void FinishedWithDataProvider (NSPasteboard pasteboard);
}
@@ -13102,9 +14150,17 @@ interface INSPathCellDelegate { }
[Model]
[Protocol]
interface NSPathCellDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pathCell:willDisplayOpenPanel:"), EventArgs ("NSPathCellDisplayPanel")]
void WillDisplayOpenPanel (NSPathCell pathCell, NSOpenPanel openPanel);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pathCell:willPopUpMenu:"), EventArgs ("NSPathCellMenu")]
void WillPopupMenu (NSPathCell pathCell, NSMenu menu);
}
@@ -13195,6 +14251,12 @@ interface INSPathControlDelegate { }
[Model]
[Protocol]
interface NSPathControlDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pathControl:shouldDragPathComponentCell:withPasteboard:")]
bool ShouldDragPathComponentCell (NSPathControl pathControl, NSPathComponentCell pathComponentCell, NSPasteboard pasteboard);
@@ -13212,12 +14274,26 @@ interface NSPathControlDelegate {
bool AcceptDrop (NSPathControl pathControl, NSDraggingInfo info);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pathControl:willDisplayOpenPanel:")]
void WillDisplayOpenPanel (NSPathControl pathControl, NSOpenPanel openPanel);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pathControl:willPopUpMenu:")]
void WillPopUpMenu (NSPathControl pathControl, NSMenu menu);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pathControl:shouldDragItem:withPasteboard:")]
bool ShouldDragItem (NSPathControl pathControl, NSPathControlItem pathItem, NSPasteboard pasteboard);
}
@@ -13356,24 +14432,47 @@ interface INSPopoverDelegate { }
[Model]
[Protocol]
interface NSPopoverDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("popoverShouldClose:")]
bool ShouldClose (NSPopover popover);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("detachableWindowForPopover:")]
NSWindow GetDetachableWindowForPopover (NSPopover popover);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("popoverWillShow:")]
void WillShow (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("popoverDidShow:")]
void DidShow (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("popoverWillClose:")]
void WillClose (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("popoverDidClose:")]
void DidClose (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("popoverDidDetach:")]
void DidDetach (NSPopover popover);
}
@@ -13926,6 +15025,9 @@ partial interface NSPrintOperation {
[Model]
[Protocol]
interface NSPrintPanelAccessorizing {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("localizedSummaryItems")]
NSDictionary [] LocalizedSummaryItems ();
@@ -13933,6 +15035,9 @@ interface NSPrintPanelAccessorizing {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("keyPathsForValuesAffectingPreview")]
NSSet KeyPathsForValuesAffectingPreview ();
}
@@ -14053,288 +15158,573 @@ interface NSProgressIndicator : NSAccessibilityProgressIndicator {
[NoMacCatalyst]
[Protocol]
interface NSStandardKeyBindingResponding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertText:")]
void InsertText (NSObject insertString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("doCommandBySelector:")]
void DoCommandBySelector (Selector selector);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveForward:")]
void MoveForward ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveRight:")]
void MoveRight ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveBackward:")]
void MoveBackward ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveLeft:")]
void MoveLeft ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveUp:")]
void MoveUp ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveDown:")]
void MoveDown ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveWordForward:")]
void MoveWordForward ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveWordBackward:")]
void MoveWordBackward ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToBeginningOfLine:")]
void MoveToBeginningOfLine ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToEndOfLine:")]
void MoveToEndOfLine ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToBeginningOfParagraph:")]
void MoveToBeginningOfParagraph ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToEndOfParagraph:")]
void MoveToEndOfParagraph ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToEndOfDocument:")]
void MoveToEndOfDocument ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToBeginningOfDocument:")]
void MoveToBeginningOfDocument ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageDown:")]
void PageDown ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageUp:")]
void PageUp ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("centerSelectionInVisibleArea:")]
void CenterSelectionInVisibleArea ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveBackwardAndModifySelection:")]
void MoveBackwardAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveForwardAndModifySelection:")]
void MoveForwardAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveWordForwardAndModifySelection:")]
void MoveWordForwardAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveWordBackwardAndModifySelection:")]
void MoveWordBackwardAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveUpAndModifySelection:")]
void MoveUpAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveDownAndModifySelection:")]
void MoveDownAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToBeginningOfLineAndModifySelection:")]
void MoveToBeginningOfLineAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToEndOfLineAndModifySelection:")]
void MoveToEndOfLineAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToBeginningOfParagraphAndModifySelection:")]
void MoveToBeginningOfParagraphAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToEndOfParagraphAndModifySelection:")]
void MoveToEndOfParagraphAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToEndOfDocumentAndModifySelection:")]
void MoveToEndOfDocumentAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToBeginningOfDocumentAndModifySelection:")]
void MoveToBeginningOfDocumentAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageDownAndModifySelection:")]
void PageDownAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageUpAndModifySelection:")]
void PageUpAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveParagraphForwardAndModifySelection:")]
void MoveParagraphForwardAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveParagraphBackwardAndModifySelection:")]
void MoveParagraphBackwardAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveWordRight:")]
void MoveWordRight ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveWordLeft:")]
void MoveWordLeft ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveRightAndModifySelection:")]
void MoveRightAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveLeftAndModifySelection:")]
void MoveLeftAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveWordRightAndModifySelection:")]
void MoveWordRightAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveWordLeftAndModifySelection:")]
void MoveWordLeftAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToLeftEndOfLine:")]
void MoveToLeftEndOfLine ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToRightEndOfLine:")]
void MoveToRightEndOfLine ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToLeftEndOfLineAndModifySelection:")]
void MoveToLeftEndOfLineAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("moveToRightEndOfLineAndModifySelection:")]
void MoveToRightEndOfLineAndModifySelection ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scrollPageUp:")]
void ScrollPageUp ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scrollPageDown:")]
void ScrollPageDown ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scrollLineUp:")]
void ScrollLineUp ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scrollLineDown:")]
void ScrollLineDown ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scrollToBeginningOfDocument:")]
void ScrollToBeginningOfDocument ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scrollToEndOfDocument:")]
void ScrollToEndOfDocument ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("transpose:")]
void Transpose ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("transposeWords:")]
void TransposeWords ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("selectAll:")]
void SelectAll ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("selectParagraph:")]
void SelectParagraph ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("selectLine:")]
void SelectLine ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("selectWord:")]
void SelectWord ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("indent:")]
void Indent ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertTab:")]
void InsertTab ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertBacktab:")]
void InsertBacktab ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertNewline:")]
void InsertNewline ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertParagraphSeparator:")]
void InsertParagraphSeparator ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertNewlineIgnoringFieldEditor:")]
void InsertNewlineIgnoringFieldEditor ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertTabIgnoringFieldEditor:")]
void InsertTabIgnoringFieldEditor ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertLineBreak:")]
void InsertLineBreak ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertContainerBreak:")]
void InsertContainerBreak ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertSingleQuoteIgnoringSubstitution:")]
void InsertSingleQuoteIgnoringSubstitution ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertDoubleQuoteIgnoringSubstitution:")]
void InsertDoubleQuoteIgnoringSubstitution ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("changeCaseOfLetter:")]
void ChangeCaseOfLetter ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("uppercaseWord:")]
void UppercaseWord ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("lowercaseWord:")]
void LowercaseWord ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("capitalizeWord:")]
void CapitalizeWord ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteForward:")]
void DeleteForward ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteBackward:")]
void DeleteBackward ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteBackwardByDecomposingPreviousCharacter:")]
void DeleteBackwardByDecomposingPreviousCharacter ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteWordForward:")]
void DeleteWordForward ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteWordBackward:")]
void DeleteWordBackward ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteToBeginningOfLine:")]
void DeleteToBeginningOfLine ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteToEndOfLine:")]
void DeleteToEndOfLine ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteToBeginningOfParagraph:")]
void DeleteToBeginningOfParagraph ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteToEndOfParagraph:")]
void DeleteToEndOfParagraph ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("yank:")]
void Yank ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("complete:")]
void Complete ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setMark:")]
void SetMark ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("deleteToMark:")]
void DeleteToMark ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("selectToMark:")]
void SelectToMark ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("swapWithMark:")]
void SwapWithMark ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("cancelOperation:")]
void CancelOperation ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeBaseWritingDirectionNatural:")]
void MakeBaseWritingDirectionNatural ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeBaseWritingDirectionLeftToRight:")]
void MakeBaseWritingDirectionLeftToRight ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeBaseWritingDirectionRightToLeft:")]
void MakeBaseWritingDirectionRightToLeft ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeTextWritingDirectionNatural:")]
void MakeTextWritingDirectionNatural ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeTextWritingDirectionLeftToRight:")]
void MakeTextWritingDirectionLeftToRight ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeTextWritingDirectionRightToLeft:")]
void MakeTextWritingDirectionRightToLeft ([NullAllowed] NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("quickLookPreviewItems:")]
void QuickLookPreviewItems ([NullAllowed] NSObject sender);
@@ -14555,13 +15945,22 @@ interface INSUserActivityRestoring { }
[Category]
[BaseType (typeof (NSResponder))]
interface NSResponder_NSTouchBarProvider : INSTouchBarProvider {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("touchBar")]
[return: NullAllowed]
NSTouchBar GetTouchBar ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setTouchBar:")]
void SetTouchBar ([NullAllowed] NSTouchBar bar);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeTouchBar")]
NSTouchBar MakeTouchBar ();
}
@@ -15370,9 +16769,15 @@ interface INSSearchFieldDelegate { }
[BaseType (typeof (NSObject))]
[Protocol, Model]
interface NSSearchFieldDelegate : NSTextFieldDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("searchFieldDidStartSearching:")]
void SearchingStarted (NSSearchField sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("searchFieldDidEndSearching:")]
void SearchingEnded (NSSearchField sender);
}
@@ -15905,6 +17310,10 @@ interface INSSpeechRecognizerDelegate { }
[Model]
[Protocol]
interface NSSpeechRecognizerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("speechRecognizer:didRecognizeCommand:")]
void DidRecognizeCommand (NSSpeechRecognizer sender, string command);
}
@@ -16005,18 +17414,35 @@ interface INSSpeechSynthesizerDelegate { }
[Protocol]
[Deprecated (PlatformName.MacOSX, 14, 0, message: "Use 'AVSpeechSynthesizer' in AVFoundation instead.")]
interface NSSpeechSynthesizerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("speechSynthesizer:didFinishSpeaking:")]
void DidFinishSpeaking (NSSpeechSynthesizer sender, bool finishedSpeaking);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("speechSynthesizer:willSpeakWord:ofString:")]
void WillSpeakWord (NSSpeechSynthesizer sender, NSRange wordCharacterRange, string ofString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("speechSynthesizer:willSpeakPhoneme:")]
void WillSpeakPhoneme (NSSpeechSynthesizer sender, short phonemeOpcode);
[Export ("speechSynthesizer:didEncounterErrorAtIndex:ofString:message:")]
void DidEncounterError (NSSpeechSynthesizer sender, nuint characterIndex, string theString, string message);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("speechSynthesizer:didEncounterSyncMessage:")]
void DidEncounterSyncMessage (NSSpeechSynthesizer sender, string message);
}
@@ -16353,6 +17779,10 @@ interface INSSoundDelegate { }
[Model, BaseType (typeof (NSObject))]
[Protocol]
interface NSSoundDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sound:didFinishPlaying:"), EventArgs ("NSSoundFinished")]
void DidFinishPlaying (NSSound sound, bool finished);
}
@@ -16586,6 +18016,11 @@ interface NSSplitViewItem : NSAnimatablePropertyContainer, NSCoding {
[BaseType (typeof (NSObject))]
[Model, Protocol]
interface NSSplitViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("splitView:canCollapseSubview:")]
[DefaultValue (true)]
bool CanCollapse (NSSplitView splitView, NSView subview);
@@ -16604,9 +18039,18 @@ interface NSSplitViewDelegate {
[Export ("splitView:constrainSplitPosition:ofSubviewAt:")]
nfloat ConstrainSplitPosition (NSSplitView splitView, nfloat proposedPosition, nint subviewDividerIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("splitView:resizeSubviewsWithOldSize:")]
void Resize (NSSplitView splitView, CGSize oldSize);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("splitView:shouldAdjustSizeOfSubview:")]
[DefaultValue (true)]
bool ShouldAdjustSize (NSSplitView splitView, NSView view);
@@ -16621,9 +18065,15 @@ interface NSSplitViewDelegate {
[Export ("splitView:additionalEffectiveRectOfDividerAtIndex:")]
CGRect GetAdditionalEffectiveRect (NSSplitView splitView, nint dividerIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("splitViewWillResizeSubviews:")]
void SplitViewWillResizeSubviews (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("splitViewDidResizeSubviews:")]
void DidResizeSubviews (NSNotification notification);
}
@@ -16783,9 +18233,17 @@ interface INSStackViewDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSStackViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("stackView:willDetachViews:"), DelegateName ("NSStackViewEvent")]
void WillDetachViews (NSStackView stackView, NSView [] views);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("stackView:didReattachViews:"), DelegateName ("NSStackViewEvent")]
void DidReattachViews (NSStackView stackView, NSView [] views);
}
@@ -17171,12 +18629,25 @@ interface NSStoryboardSegue {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSSeguePerforming {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("prepareForSegue:sender:")]
void PrepareForSegue (NSStoryboardSegue segue, NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("performSegueWithIdentifier:sender:")]
void PerformSegue (string identifier, NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("shouldPerformSegueWithIdentifier:sender:")]
bool ShouldPerformSegue (string identifier, NSObject sender);
}
@@ -17305,6 +18776,9 @@ partial interface NSTextFinderClient {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scrollRangeToVisible:")]
void ScrollRangeToVisible (NSRange range);
@@ -17331,6 +18805,8 @@ partial interface NSTextFinderClient {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
[Export ("didReplaceCharacters")]
void DidReplaceCharacters ();
@@ -17380,6 +18856,8 @@ partial interface NSTextFinderBarContainer {
[Abstract, Export ("findBarView", ArgumentSemantic.Retain)]
NSView FindBarView { get; set; }
+ /// To be added.
+ /// To be added.
[Abstract, Export ("findBarViewDidChangeHeight")]
void FindBarViewDidChangeHeight ();
@@ -18485,9 +19963,15 @@ interface NSViewAnimation {
[Category]
[BaseType (typeof (NSView))]
interface NSView_NSTouchBar {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("allowedTouchTypes")]
NSTouchTypeMask GetAllowedTouchTypes ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setAllowedTouchTypes:")]
void SetAllowedTouchTypes (NSTouchTypeMask touchTypes);
}
@@ -18642,10 +20126,18 @@ interface NSViewController : NSResponder, NSUserInterfaceItemIdentification, NSE
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSViewControllerPresentationAnimator {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("animatePresentationOfViewController:fromViewController:")]
[Abstract]
void AnimatePresentation (NSViewController viewController, NSViewController fromViewController);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("animateDismissalOfViewController:fromViewController:")]
[Abstract]
void AnimateDismissal (NSViewController viewController, NSViewController fromViewController);
@@ -18705,24 +20197,54 @@ interface INSPageControllerDelegate { }
[BaseType (typeof (NSObject)), Model, Protocol]
partial interface NSPageControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageController:identifierForObject:"), DelegateName ("NSPageControllerGetIdentifier"), DefaultValue ("String.Empty")]
string GetIdentifier (NSPageController pageController, NSObject targetObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageController:viewControllerForIdentifier:"), DelegateName ("NSPageControllerGetViewController"), DefaultValue (null)]
NSViewController GetViewController (NSPageController pageController, string identifier);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageController:frameForObject:"), DelegateName ("NSPageControllerGetFrame"), NoDefaultValue]
CGRect GetFrame (NSPageController pageController, NSObject targetObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageController:prepareViewController:withObject:"), EventArgs ("NSPageControllerPrepareViewController")]
void PrepareViewController (NSPageController pageController, NSViewController viewController, NSObject targetObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageController:didTransitionToObject:"), EventArgs ("NSPageControllerTransition")]
void DidTransition (NSPageController pageController, NSObject targetObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageControllerWillStartLiveTransition:")]
void WillStartLiveTransition (NSPageController pageController);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("pageControllerDidEndLiveTransition:")]
void DidEndLiveTransition (NSPageController pageController);
}
@@ -19335,6 +20857,10 @@ partial interface NSTableViewDelegate {
[Export ("tableView:shouldEditTableColumn:row:"), DelegateName ("NSTableViewColumnRowPredicate"), DefaultValue (false)]
bool ShouldEditTableColumn (NSTableView tableView, NSTableColumn tableColumn, nint row);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("selectionShouldChangeInTableView:"), DelegateName ("NSTableViewPredicate"), DefaultValue (true)]
bool SelectionShouldChange (NSTableView tableView);
@@ -19342,18 +20868,40 @@ partial interface NSTableViewDelegate {
[DefaultValue (true)]
bool ShouldSelectRow (NSTableView tableView, nint row);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:selectionIndexesForProposedSelection:"), DelegateName ("NSTableViewIndexFilter"), DefaultValueFromArgument ("proposedSelectionIndexes")]
NSIndexSet GetSelectionIndexes (NSTableView tableView, NSIndexSet proposedSelectionIndexes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:shouldSelectTableColumn:"), DelegateName ("NSTableViewColumnPredicate"), DefaultValue (true)]
bool ShouldSelectTableColumn (NSTableView tableView, NSTableColumn tableColumn);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:mouseDownInHeaderOfTableColumn:"), EventArgs ("NSTableViewTable")]
void MouseDownInHeaderOfTableColumn (NSTableView tableView, NSTableColumn tableColumn);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:didClickTableColumn:"), EventArgs ("NSTableViewTable")]
void DidClickTableColumn (NSTableView tableView, NSTableColumn tableColumn);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:didDragTableColumn:"), EventArgs ("NSTableViewTable")]
void DidDragTableColumn (NSTableView tableView, NSTableColumn tableColumn);
@@ -19366,6 +20914,12 @@ partial interface NSTableViewDelegate {
[Export ("tableView:nextTypeSelectMatchFromRow:toRow:forString:"), DelegateName ("NSTableViewSearchString"), DefaultValue (-1)]
nint GetNextTypeSelectMatch (NSTableView tableView, nint startRow, nint endRow, string searchString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:shouldTypeSelectForEvent:withCurrentSearchString:"), DelegateName ("NSTableViewEventString"), DefaultValue (false)]
bool ShouldTypeSelect (NSTableView tableView, NSEvent theEvent, string searchString);
@@ -19387,15 +20941,27 @@ partial interface NSTableViewDelegate {
[Export ("tableView:shouldReorderColumn:toColumn:"), DelegateName ("NSTableReorder"), DefaultValue (false)]
bool ShouldReorder (NSTableView tableView, nint columnIndex, nint newColumnIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableViewSelectionDidChange:"), EventArgs ("NSNotification")]
void SelectionDidChange (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableViewColumnDidMove:"), EventArgs ("NSNotification")]
void ColumnDidMove (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableViewColumnDidResize:"), EventArgs ("NSNotification")]
void ColumnDidResize (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableViewSelectionIsChanging:"), EventArgs ("NSNotification")]
void SelectionIsChanging (NSNotification notification);
@@ -19423,6 +20989,10 @@ interface INSTableViewDataSource { }
[Model]
[Protocol]
interface NSTableViewDataSource {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("numberOfRowsInTableView:")]
nint GetRowCount (NSTableView tableView);
@@ -19432,9 +21002,19 @@ interface NSTableViewDataSource {
[Export ("tableView:setObjectValue:forTableColumn:row:")]
void SetObjectValue (NSTableView tableView, NSObject theObject, NSTableColumn tableColumn, nint row);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:sortDescriptorsDidChange:")]
void SortDescriptorsChanged (NSTableView tableView, NSSortDescriptor [] oldDescriptors);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:writeRowsWithIndexes:toPasteboard:")]
[Deprecated (PlatformName.MacOSX, 10, 15, message: "Use the 'GetPasteboardWriterForRow' method instead.")]
bool WriteRows (NSTableView tableView, NSIndexSet rowIndexes, NSPasteboard pboard);
@@ -19453,6 +21033,12 @@ interface NSTableViewDataSource {
bool AcceptDrop (NSTableView tableView, NSDraggingInfo info, nint row, NSTableViewDropOperation dropOperation);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'NSFilePromiseReceiver' instead.")]
[Export ("tableView:namesOfPromisedFilesDroppedAtDestination:forDraggedRowsWithIndexes:")]
string [] FilesDropped (NSTableView tableView, NSUrl dropDestination, NSIndexSet indexSet);
@@ -19460,9 +21046,21 @@ interface NSTableViewDataSource {
[Export ("tableView:pasteboardWriterForRow:")]
INSPasteboardWriting GetPasteboardWriterForRow (NSTableView tableView, nint row);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:draggingSession:willBeginAtPoint:forRowIndexes:")]
void DraggingSessionWillBegin (NSTableView tableView, NSDraggingSession draggingSession, CGPoint willBeginAtScreenPoint, NSIndexSet rowIndexes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tableView:draggingSession:endedAtPoint:operation:")]
void DraggingSessionEnded (NSTableView tableView, NSDraggingSession draggingSession, CGPoint endedAtScreenPoint, NSDragOperation operation);
@@ -19880,15 +21478,31 @@ interface INSTabViewDelegate { }
[BaseType (typeof (NSObject))]
[Model, Protocol]
interface NSTabViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tabView:shouldSelectTabViewItem:"), DelegateName ("NSTabViewPredicate"), DefaultValue (true)]
bool ShouldSelectTabViewItem (NSTabView tabView, NSTabViewItem item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tabView:willSelectTabViewItem:"), EventArgs ("NSTabViewItem")]
void WillSelect (NSTabView tabView, NSTabViewItem item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tabView:didSelectTabViewItem:"), EventArgs ("NSTabViewItem")]
void DidSelect (NSTabView tabView, NSTabViewItem item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tabViewDidChangeNumberOfTabViewItems:")]
void NumberOfItemsChanged (NSTabView tabView);
}
@@ -20135,18 +21749,35 @@ interface INSTextDelegate { }
[Model]
[Protocol]
interface NSTextDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textShouldBeginEditing:"), DelegateName ("NSTextPredicate"), DefaultValue (true)]
bool TextShouldBeginEditing (NSText textObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textShouldEndEditing:"), DelegateName ("NSTextPredicate"), DefaultValue (true)]
bool TextShouldEndEditing (NSText textObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textDidBeginEditing:"), EventArgs ("NSNotification")]
void TextDidBeginEditing (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textDidEndEditing:"), EventArgs ("NSNotification")]
void TextDidEndEditing (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textDidChange:"), EventArgs ("NSNotification")]
void TextDidChange (NSNotification notification);
}
@@ -20410,15 +22041,27 @@ NSTextContentType ContentType {
[Category]
[BaseType (typeof (NSTextField))]
interface NSTextField_NSTouchBar {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("isAutomaticTextCompletionEnabled")]
bool GetAutomaticTextCompletionEnabled ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("automaticTextCompletionEnabled:")]
void SetAutomaticTextCompletionEnabled (bool enabled);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("allowsCharacterPickerTouchBarItem")]
bool GetAllowsCharacterPickerTouchBarItem ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setAllowsCharacterPickerTouchBarItem:")]
void SetAllowsCharacterPickerTouchBarItem (bool allows);
}
@@ -20437,40 +22080,94 @@ interface INSTextFieldDelegate { }
[Model]
[Protocol]
interface NSTextFieldDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:textShouldBeginEditing:"), DelegateName ("NSControlText"), DefaultValue (true)]
bool TextShouldBeginEditing (NSControl control, NSText fieldEditor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:textShouldEndEditing:"), DelegateName ("NSControlText"), DefaultValue (true)]
bool TextShouldEndEditing (NSControl control, NSText fieldEditor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:didFailToFormatString:errorDescription:"), DelegateName ("NSControlTextError"), DefaultValue (true)]
bool DidFailToFormatString (NSControl control, string str, string error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:didFailToValidatePartialString:errorDescription:"), EventArgs ("NSControlTextError")]
void DidFailToValidatePartialString (NSControl control, string str, string error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:isValidObject:"), DelegateName ("NSControlTextValidation"), DefaultValue (true)]
bool IsValidObject (NSControl control, NSObject objectToValidate);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("control:textView:doCommandBySelector:"), DelegateName ("NSControlCommand"), DefaultValue (false)]
bool DoCommandBySelector (NSControl control, NSTextView textView, Selector commandSelector);
[Export ("control:textView:completions:forPartialWordRange:indexOfSelectedItem:"), DelegateName ("NSControlTextFilter"), DefaultValue ("new string[0]")]
string [] GetCompletions (NSControl control, NSTextView textView, string [] words, NSRange charRange, ref nint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidEndEditing:"), EventArgs ("NSNotification")]
void EditingEnded (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidChange:"), EventArgs ("NSNotification")]
void Changed (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidBeginEditing:"), EventArgs ("NSNotification")]
void EditingBegan (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textField:textView:candidatesForSelectedRange:"), DelegateName ("NSTextFieldGetCandidates"), DefaultValue (null)]
[return: NullAllowed]
NSObject [] GetCandidates (NSTextField textField, NSTextView textView, NSRange selectedRange);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textField:textView:candidates:forSelectedRange:"), DelegateName ("NSTextFieldTextCheckingResults"), DefaultValue (null)]
NSTextCheckingResult [] GetTextCheckingResults (NSTextField textField, NSTextView textView, NSTextCheckingResult [] candidates, NSRange selectedRange);
@@ -20485,15 +22182,27 @@ interface INSComboBoxDelegate { }
[Model]
[Protocol]
interface NSComboBoxDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("comboBoxWillPopUp:")]
void WillPopUp (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("comboBoxWillDismiss:")]
void WillDismiss (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("comboBoxSelectionDidChange:")]
void SelectionChanged (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("comboBoxSelectionIsChanging:")]
void SelectionIsChanging (NSNotification notification);
}
@@ -20511,28 +22220,69 @@ interface NSTokenFieldCellDelegate {
[Export ("tokenFieldCell:shouldAddObjects:atIndex:")]
NSArray ShouldAddObjects (NSTokenFieldCell tokenFieldCell, NSObject [] tokens, nuint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenFieldCell:displayStringForRepresentedObject:")]
string GetDisplayString (NSTokenFieldCell tokenFieldCell, NSObject representedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenFieldCell:editingStringForRepresentedObject:")]
string GetEditingString (NSTokenFieldCell tokenFieldCell, NSObject representedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenFieldCell:representedObjectForEditingString:")]
[return: NullAllowed]
NSObject GetRepresentedObject (NSTokenFieldCell tokenFieldCell, string editingString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenFieldCell:writeRepresentedObjects:toPasteboard:")]
bool WriteRepresentedObjects (NSTokenFieldCell tokenFieldCell, NSObject [] objects, NSPasteboard pboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenFieldCell:readFromPasteboard:")]
NSObject [] Read (NSTokenFieldCell tokenFieldCell, NSPasteboard pboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenFieldCell:menuForRepresentedObject:")]
NSMenu GetMenu (NSTokenFieldCell tokenFieldCell, NSObject representedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenFieldCell:hasMenuForRepresentedObject:")]
bool HasMenu (NSTokenFieldCell tokenFieldCell, NSObject representedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenFieldCell:styleForRepresentedObject:")]
NSTokenStyle GetStyle (NSTokenFieldCell tokenFieldCell, NSObject representedObject);
}
@@ -20743,6 +22493,9 @@ interface NSTextTable {
[NoMacCatalyst]
[Protocol]
interface NSTextInput {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Deprecated (PlatformName.MacOSX, 10, 6)]
[Export ("insertText:")]
@@ -20751,10 +22504,16 @@ interface NSTextInput {
// The doCommandBySelector: conflicts with NSTextViewDelegate in generated code
// It's also deprecated in NSTextInput, and why we're not adding it here
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setMarkedText:selectedRange:")]
void SetMarkedText (NSObject @string, NSRange selRange);
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("unmarkText")]
void UnmarkText ();
@@ -20767,6 +22526,10 @@ interface NSTextInput {
[Export ("conversationIdentifier")]
nint ConversationIdentifier { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("attributedSubstringFromRange:")]
NSAttributedString GetAttributedSubstring (NSRange range);
@@ -20779,10 +22542,18 @@ interface NSTextInput {
[Export ("selectedRange")]
NSRange SelectedRange { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("firstRectForCharacterRange:")]
CGRect GetFirstRectForCharacterRange (NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("characterIndexForPoint:")]
nuint GetCharacterIndex (CGPoint point);
@@ -21526,6 +23297,10 @@ interface NSTextInputClient {
[Export ("attributedString")]
NSAttributedString AttributedString { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fractionOfDistanceThroughGlyphForPoint:")]
nfloat GetFractionOfDistanceThroughGlyph (CGPoint point);
@@ -21583,21 +23358,51 @@ partial interface NSTextViewDelegate {
[Export ("textView:writeCell:atIndex:toPasteboard:type:"), DelegateName ("NSTextViewCellPasteboard"), DefaultValue (true)]
bool WriteCell (NSTextView view, NSTextAttachmentCell cell, nuint charIndex, NSPasteboard pboard, string type);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:willChangeSelectionFromCharacterRange:toCharacterRange:"), DelegateName ("NSTextViewSelectionChange"), DefaultValueFromArgument ("newSelectedCharRange")]
NSRange WillChangeSelection (NSTextView textView, NSRange oldSelectedCharRange, NSRange newSelectedCharRange);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:willChangeSelectionFromCharacterRanges:toCharacterRanges:"), DelegateName ("NSTextViewSelectionWillChange"), DefaultValueFromArgument ("newSelectedCharRanges")]
NSValue [] WillChangeSelectionFromRanges (NSTextView textView, NSValue [] oldSelectedCharRanges, NSValue [] newSelectedCharRanges);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:shouldChangeTextInRanges:replacementStrings:"), DelegateName ("NSTextViewSelectionShouldChange"), DefaultValue (true)]
bool ShouldChangeTextInRanges (NSTextView textView, NSValue [] affectedRanges, string [] replacementStrings);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:shouldChangeTypingAttributes:toAttributes:"), DelegateName ("NSTextViewTypeAttribute"), DefaultValueFromArgument ("newTypingAttributes")]
NSDictionary ShouldChangeTypingAttributes (NSTextView textView, NSDictionary oldTypingAttributes, NSDictionary newTypingAttributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textViewDidChangeSelection:"), EventArgs ("NSTextViewNotification")]
void DidChangeSelection (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textViewDidChangeTypingAttributes:"), EventArgs ("NSTextViewNotification")]
void DidChangeTypingAttributes (NSNotification notification);
@@ -21608,9 +23413,20 @@ partial interface NSTextViewDelegate {
[Export ("textView:completions:forPartialWordRange:indexOfSelectedItem:"), DelegateName ("NSTextViewCompletion"), DefaultValue (null)]
string [] GetCompletions (NSTextView textView, string [] words, NSRange charRange, ref nint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:shouldChangeTextInRange:replacementString:"), DelegateName ("NSTextViewChangeText"), DefaultValue (true)]
bool ShouldChangeTextInRange (NSTextView textView, NSRange affectedCharRange, string replacementString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:doCommandBySelector:"), DelegateName ("NSTextViewSelectorCommand"), DefaultValue (false)]
bool DoCommandBySelector (NSTextView textView, Selector commandSelector);
@@ -21620,6 +23436,13 @@ partial interface NSTextViewDelegate {
[Export ("textView:menu:forEvent:atIndex:"), DelegateName ("NSTextViewEventMenu"), DefaultValueFromArgument ("menu")]
NSMenu MenuForEvent (NSTextView view, NSMenu menu, NSEvent theEvent, nuint charIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:willCheckTextInRange:options:types:"), DelegateName ("NSTextViewOnTextCheck"), DefaultValueFromArgument ("options")]
NSDictionary WillCheckText (NSTextView view, NSRange range, NSDictionary options, NSTextCheckingTypes checkingTypes);
@@ -21634,16 +23457,36 @@ partial interface NSTextViewDelegate {
void DraggedCell (NSTextView view, NSTextAttachmentCell cell, CGRect rect, NSEvent theEvent, nuint charIndex);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("undoManagerForTextView:"), DelegateName ("NSTextViewGetUndoManager"), DefaultValue (null)]
NSUndoManager GetUndoManager (NSTextView view);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:shouldUpdateTouchBarItemIdentifiers:"), DelegateName ("NSTextViewUpdateTouchBarItemIdentifiers"), NoDefaultValue]
string [] ShouldUpdateTouchBarItemIdentifiers (NSTextView textView, string [] identifiers);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:candidatesForSelectedRange:"), DelegateName ("NSTextViewGetCandidates"), NoDefaultValue]
[return: NullAllowed]
NSObject [] GetCandidates (NSTextView textView, NSRange selectedRange);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("textView:candidates:forSelectedRange:"), DelegateName ("NSTextViewTextCheckingResults"), NoDefaultValue]
NSTextCheckingResult [] GetTextCheckingCandidates (NSTextView textView, NSTextCheckingResult [] candidates, NSRange selectedRange);
@@ -21713,28 +23556,69 @@ interface NSTokenFieldDelegate {
[Export ("tokenField:shouldAddObjects:atIndex:")]
NSArray ShouldAddObjects (NSTokenField tokenField, NSArray tokens, nuint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenField:displayStringForRepresentedObject:")]
string GetDisplayString (NSTokenField tokenField, NSObject representedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenField:editingStringForRepresentedObject:")]
string GetEditingString (NSTokenField tokenField, NSObject representedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenField:representedObjectForEditingString:")]
[return: NullAllowed]
NSObject GetRepresentedObject (NSTokenField tokenField, string editingString);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenField:writeRepresentedObjects:toPasteboard:")]
bool WriteRepresented (NSTokenField tokenField, NSArray objects, NSPasteboard pboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenField:readFromPasteboard:")]
NSObject [] Read (NSTokenField tokenField, NSPasteboard pboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenField:menuForRepresentedObject:")]
NSMenu GetMenu (NSTokenField tokenField, NSObject representedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenField:hasMenuForRepresentedObject:")]
bool HasMenu (NSTokenField tokenField, NSObject representedObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tokenField:styleForRepresentedObject:")]
NSTokenStyle GetStyle (NSTokenField tokenField, NSObject representedObject);
@@ -22008,6 +23892,10 @@ interface NSToolbarDelegate {
[NoMacCatalyst]
[Protocol]
interface NSToolbarItemValidation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("validateToolbarItem:")]
bool ValidateToolbarItem (NSToolbarItem item);
@@ -22017,6 +23905,10 @@ interface NSToolbarItemValidation {
[Category]
[BaseType (typeof (NSObject))]
interface NSObject_NSToolbarItemValidation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("validateToolbarItem:")]
bool ValidateToolbarItem (NSToolbarItem item);
}
@@ -22254,12 +24146,23 @@ interface NSTouch : NSCopying {
[Category]
[BaseType (typeof (NSTouch))]
interface NSTouch_NSTouchBar {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("type")]
NSTouchType GetTouchType ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("locationInView:")]
CGPoint GetLocation ([NullAllowed] NSView view);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("previousLocationInView:")]
CGPoint GetPreviousLocation ([NullAllowed] NSView view);
}
@@ -22423,6 +24326,9 @@ public enum NSTouchBarItemIdentifier {
[MacCatalyst (13, 1)]
[Protocol]
interface NSTouchBarProvider {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("touchBar", ArgumentSemantic.Strong)]
NSTouchBar TouchBar { get; }
@@ -23907,129 +25813,284 @@ interface INSWindowDelegate { }
[Model]
[Protocol]
interface NSWindowDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowShouldClose:"), DelegateName ("NSObjectPredicate"), DefaultValue (true)]
bool WindowShouldClose (NSObject sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillReturnFieldEditor:toObject:"), DelegateName ("NSWindowClient"), DefaultValue (null)]
NSObject WillReturnFieldEditor (NSWindow sender, NSObject client);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillResize:toSize:"), DelegateName ("NSWindowResize"), DefaultValueFromArgument ("toFrameSize")]
CGSize WillResize (NSWindow sender, CGSize toFrameSize);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillUseStandardFrame:defaultFrame:"), DelegateName ("NSWindowFrame"), DefaultValueFromArgument ("newFrame")]
CGRect WillUseStandardFrame (NSWindow window, CGRect newFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowShouldZoom:toFrame:"), DelegateName ("NSWindowFramePredicate"), DefaultValue (true)]
bool ShouldZoom (NSWindow window, CGRect newFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillReturnUndoManager:"), DelegateName ("NSWindowUndoManager"), DefaultValue (null)]
NSUndoManager WillReturnUndoManager (NSWindow window);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:willPositionSheet:usingRect:"), DelegateName ("NSWindowSheetRect"), DefaultValueFromArgument ("usingRect")]
CGRect WillPositionSheet (NSWindow window, NSWindow sheet, CGRect usingRect);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:shouldPopUpDocumentPathMenu:"), DelegateName ("NSWindowMenu"), DefaultValue (true)]
bool ShouldPopUpDocumentPathMenu (NSWindow window, NSMenu menu);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:shouldDragDocumentWithEvent:from:withPasteboard:"), DelegateName ("NSWindowDocumentDrag"), DefaultValue (true)]
bool ShouldDragDocumentWithEvent (NSWindow window, NSEvent theEvent, CGPoint dragImageLocation, NSPasteboard withPasteboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidResize:"), EventArgs ("NSNotification")]
void DidResize (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidExpose:"), EventArgs ("NSNotification")]
void DidExpose (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillMove:"), EventArgs ("NSNotification")]
void WillMove (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidMove:"), EventArgs ("NSNotification")]
void DidMove (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidBecomeKey:"), EventArgs ("NSNotification")]
void DidBecomeKey (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidResignKey:"), EventArgs ("NSNotification")]
void DidResignKey (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidBecomeMain:"), EventArgs ("NSNotification")]
void DidBecomeMain (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidResignMain:"), EventArgs ("NSNotification")]
void DidResignMain (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillClose:"), EventArgs ("NSNotification")]
void WillClose (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillMiniaturize:"), EventArgs ("NSNotification")]
void WillMiniaturize (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidMiniaturize:"), EventArgs ("NSNotification")]
void DidMiniaturize (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidDeminiaturize:"), EventArgs ("NSNotification")]
void DidDeminiaturize (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidUpdate:"), EventArgs ("NSNotification")]
void DidUpdate (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidChangeScreen:"), EventArgs ("NSNotification")]
void DidChangeScreen (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidChangeScreenProfile:"), EventArgs ("NSNotification")]
void DidChangeScreenProfile (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillBeginSheet:"), EventArgs ("NSNotification")]
void WillBeginSheet (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidEndSheet:"), EventArgs ("NSNotification")]
void DidEndSheet (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillStartLiveResize:"), EventArgs ("NSNotification")]
void WillStartLiveResize (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidEndLiveResize:"), EventArgs ("NSNotification")]
void DidEndLiveResize (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillEnterFullScreen:"), EventArgs ("NSNotification")]
void WillEnterFullScreen (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidEnterFullScreen:"), EventArgs ("NSNotification")]
void DidEnterFullScreen (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillExitFullScreen:"), EventArgs ("NSNotification")]
void WillExitFullScreen (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidExitFullScreen:"), EventArgs ("NSNotification")]
void DidExitFullScreen (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidFailToEnterFullScreen:"), EventArgs ("NSWindow")]
void DidFailToEnterFullScreen (NSWindow window);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidFailToExitFullScreen:"), EventArgs ("NSWindow")]
void DidFailToExitFullScreen (NSWindow window);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:willUseFullScreenContentSize:"), DelegateName ("NSWindowSize"), DefaultValueFromArgument ("proposedSize")]
CGSize WillUseFullScreenContentSize (NSWindow window, CGSize proposedSize);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:willUseFullScreenPresentationOptions:"), DelegateName ("NSWindowApplicationPresentationOptions"), DefaultValueFromArgument ("proposedOptions")]
NSApplicationPresentationOptions WillUseFullScreenPresentationOptions (NSWindow window, NSApplicationPresentationOptions proposedOptions);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("customWindowsToEnterFullScreenForWindow:"), DelegateName ("NSWindowWindows"), DefaultValue (null)]
NSWindow [] CustomWindowsToEnterFullScreen (NSWindow window);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("customWindowsToExitFullScreenForWindow:"), DelegateName ("NSWindowWindows"), DefaultValue (null)]
NSWindow [] CustomWindowsToExitFullScreen (NSWindow window);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:startCustomAnimationToEnterFullScreenWithDuration:"), EventArgs ("NSWindowDuration")]
void StartCustomAnimationToEnterFullScreen (NSWindow window, double duration);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:startCustomAnimationToExitFullScreenWithDuration:"), EventArgs ("NSWindowDuration")]
void StartCustomAnimationToExitFullScreen (NSWindow window, double duration);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:willEncodeRestorableState:"), EventArgs ("NSWindowCoder")]
void WillEncodeRestorableState (NSWindow window, NSCoder coder);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:didDecodeRestorableState:"), EventArgs ("NSWindowCoder")]
void DidDecodeRestorableState (NSWindow window, NSCoder coder);
@@ -24039,21 +26100,42 @@ interface NSWindowDelegate {
[IgnoredInDelegate]
INSPreviewRepresentableActivityItem [] GetPreviewRepresentableActivityItems (NSWindow window);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("window:willResizeForVersionBrowserWithMaxPreferredSize:maxAllowedSize:"), DelegateName ("NSWindowSizeSize"), DefaultValueFromArgument ("maxPreferredSize")]
CGSize WillResizeForVersionBrowser (NSWindow window, CGSize maxPreferredSize, CGSize maxAllowedSize);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillEnterVersionBrowser:"), EventArgs ("NSNotification")]
void WillEnterVersionBrowser (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidEnterVersionBrowser:"), EventArgs ("NSNotification")]
void DidEnterVersionBrowser (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowWillExitVersionBrowser:"), EventArgs ("NSNotification")]
void WillExitVersionBrowser (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidExitVersionBrowser:"), EventArgs ("NSNotification")]
void DidExitVersionBrowser (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("windowDidChangeBackingProperties:"), EventArgs ("NSNotification")]
void DidChangeBackingProperties (NSNotification notification);
@@ -24923,6 +27005,12 @@ interface INSRuleEditorDelegate { }
[Model]
[Protocol]
interface NSRuleEditorDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("ruleEditor:numberOfChildrenForCriterion:withRowType:"), DelegateName ("NSRuleEditorNumberOfChildren"), DefaultValue (0)]
nint NumberOfChildren (NSRuleEditor editor, NSObject criterion, NSRuleEditorRowType rowType);
@@ -24944,15 +27032,27 @@ interface NSRuleEditorDelegate {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ruleEditorRowsDidChange:"), EventArgs ("NSNotification")]
void RowsDidChange (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidEndEditing:"), EventArgs ("NSNotification")]
void EditingEnded (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidChange:"), EventArgs ("NSNotification")]
void Changed (NSNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("controlTextDidBeginEditing:"), EventArgs ("NSNotification")]
void EditingBegan (NSNotification notification);
@@ -25139,24 +27239,60 @@ enum NSSharingServiceName {
[Model]
[Protocol]
interface NSSharingServiceDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:willShareItems:"), EventArgs ("NSSharingServiceItems")]
void WillShareItems (NSSharingService sharingService, NSObject [] items);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:didFailToShareItems:error:"), EventArgs ("NSSharingServiceDidFailToShareItems")]
void DidFailToShareItems (NSSharingService sharingService, NSObject [] items, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:didShareItems:"), EventArgs ("NSSharingServiceItems")]
void DidShareItems (NSSharingService sharingService, NSObject [] items);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:sourceFrameOnScreenForShareItem:"), DelegateName ("NSSharingServiceSourceFrameOnScreenForShareItem"), DefaultValue (null)]
CGRect SourceFrameOnScreenForShareItem (NSSharingService sharingService, INSPasteboardWriting item);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:transitionImageForShareItem:contentRect:"), DelegateName ("NSSharingServiceTransitionImageForShareItem"), DefaultValue (null)]
NSImage TransitionImageForShareItem (NSSharingService sharingService, INSPasteboardWriting item, CGRect contentRect);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:sourceWindowForShareItems:sharingContentScope:"), DelegateName ("NSSharingServiceSourceWindowForShareItems"), DefaultValue (null)]
NSWindow SourceWindowForShareItems (NSSharingService sharingService, NSObject [] items, NSSharingContentScope sharingContentScope);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("anchoringViewForSharingService:showRelativeToRect:preferredEdge:"), DelegateName ("NSSharingServiceAnchoringViewForSharingService"), DefaultValue (null)]
[return: NullAllowed]
NSView CreateAnchoringView (NSSharingService sharingService, ref CGRect positioningRect, ref NSRectEdge preferredEdge);
@@ -25170,15 +27306,33 @@ interface INSCloudSharingServiceDelegate { }
[NoMacCatalyst]
[BaseType (typeof (NSSharingServiceDelegate))]
interface NSCloudSharingServiceDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:didCompleteForItems:error:")]
void Completed (NSSharingService sharingService, NSObject [] items, [NullAllowed] NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("optionsForSharingService:shareProvider:")]
NSCloudKitSharingServiceOptions Options (NSSharingService cloudKitSharingService, NSItemProvider provider);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:didSaveShare:")]
void Saved (NSSharingService sharingService, CKShare share);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingService:didStopSharing:")]
void Stopped (NSSharingService sharingService, CKShare share);
}
@@ -25222,12 +27376,27 @@ interface INSSharingServicePickerDelegate { }
[Model]
[Protocol]
interface NSSharingServicePickerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingServicePicker:sharingServicesForItems:proposedSharingServices:"), DelegateName ("NSSharingServicePickerSharingServicesForItems"), DefaultValueFromArgument ("proposedServices")]
NSSharingService [] SharingServicesForItems (NSSharingServicePicker sharingServicePicker, NSObject [] items, NSSharingService [] proposedServices);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingServicePicker:delegateForSharingService:"), DelegateName ("NSSharingServicePickerDelegateForSharingService"), DefaultValue (null)]
INSSharingServiceDelegate DelegateForSharingService (NSSharingServicePicker sharingServicePicker, NSSharingService sharingService);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sharingServicePicker:didChooseSharingService:"), EventArgs ("NSSharingServicePickerDidChooseSharingService")]
void DidChooseSharingService (NSSharingServicePicker sharingServicePicker, NSSharingService service);
@@ -25445,10 +27614,22 @@ partial interface NSCollectionViewDelegate {
void UpdateDraggingItemsForDrag (NSCollectionView collectionView, NSDraggingInfo draggingInfo);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:draggingSession:willBeginAtPoint:forItemsAtIndexes:")]
void DraggingSessionWillBegin (NSCollectionView collectionView, NSDraggingSession draggingSession,
CGPoint screenPoint, NSIndexSet indexes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:draggingSession:endedAtPoint:dragOperation:")]
void DraggingSessionEnded (NSCollectionView collectionView, NSDraggingSession draggingSession,
CGPoint screenPoint, NSDragOperation dragOperation);
@@ -25593,14 +27774,31 @@ partial interface NSOutlineView : NSAccessibilityOutline {
partial interface NSOutlineViewDataSource {
// - (id )outlineView:(NSOutlineView *)outlineView pasteboardWriterForItem:(id)item NS_AVAILABLE_MAC(10_7);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:pasteboardWriterForItem:")]
INSPasteboardWriting PasteboardWriterForItem (NSOutlineView outlineView, NSObject item);
// - (void)outlineView:(NSOutlineView *)outlineView draggingSession:(NSDraggingSession *)session willBeginAtPoint:(NSPoint)screenPoint forItems:(NSArray *)draggedItems NS_AVAILABLE_MAC(10_7);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:draggingSession:willBeginAtPoint:forItems:")]
void DraggingSessionWillBegin (NSOutlineView outlineView, NSDraggingSession session, CGPoint screenPoint, NSArray draggedItems);
// - (void)outlineView:(NSOutlineView *)outlineView draggingSession:(NSDraggingSession *)session endedAtPoint:(NSPoint)screenPoint operation:(NSDragOperation)operation NS_AVAILABLE_MAC(10_7);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("outlineView:draggingSession:endedAtPoint:operation:")]
void DraggingSessionEnded (NSOutlineView outlineView, NSDraggingSession session, CGPoint screenPoint, NSDragOperation operation);
@@ -25760,6 +27958,9 @@ partial interface NSResponder {
[NoMacCatalyst]
[Category, BaseType (typeof (NSResponder))]
partial interface NSStandardKeyBindingMethods {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("quickLookPreviewItems:")]
void QuickLookPreviewItems (NSObject sender);
}
@@ -25767,6 +27968,11 @@ partial interface NSStandardKeyBindingMethods {
[NoMacCatalyst]
[Category, BaseType (typeof (NSView))]
partial interface NSRulerMarkerClientViewDelegation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("rulerView:locationForPoint:")]
nfloat RulerViewLocation (NSRulerView ruler, CGPoint locationForPoint);
@@ -25777,6 +27983,9 @@ partial interface NSRulerMarkerClientViewDelegation {
[NoMacCatalyst]
[Category, BaseType (typeof (NSResponder))]
partial interface NSTextFinderSupport {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("performTextFinderAction:")]
void PerformTextFinderAction ([NullAllowed] NSObject sender);
}
@@ -26333,6 +28542,9 @@ partial interface NSSegmentBackgroundStyle_NSSegmentedCell {
[Category, BaseType (typeof (NSTextView))]
partial interface NSTextView_SharingService {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("orderFrontSharingServicePicker:")]
void OrderFrontSharingServicePicker (NSObject sender);
}
@@ -29346,6 +31558,9 @@ interface NSAccessibilityButton : NSAccessibilityElementProtocol {
[NullAllowed, Export ("accessibilityLabel")]
string AccessibilityLabel { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityPerformPress")]
bool AccessibilityPerformPress ();
@@ -29358,9 +31573,15 @@ interface NSAccessibilitySwitch : NSAccessibilityButton {
[NullAllowed, Export ("accessibilityValue")]
string AccessibilityValue { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("accessibilityPerformIncrement")]
bool AccessibilityPerformIncrement ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("accessibilityPerformDecrement")]
bool AccessibilityPerformDecrement ();
}
@@ -29388,6 +31609,10 @@ interface NSAccessibilityStaticText : NSAccessibilityElementProtocol {
[NullAllowed, Export ("accessibilityValue")]
string AccessibilityValue { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("accessibilityAttributedStringForRange:")]
[return: NullAllowed]
NSAttributedString GetAccessibilityAttributedString (NSRange range);
@@ -29399,6 +31624,10 @@ interface NSAccessibilityStaticText : NSAccessibilityElementProtocol {
[NoMacCatalyst]
[Protocol]
interface NSAccessibilityNavigableStaticText : NSAccessibilityStaticText {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityStringForRange:")]
[return: NullAllowed]
@@ -29412,6 +31641,10 @@ interface NSAccessibilityNavigableStaticText : NSAccessibilityStaticText {
[Export ("accessibilityRangeForLine:")]
NSRange GetAccessibilityRangeForLine (nint lineNumber);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityFrameForRange:")]
CGRect GetAccessibilityFrame (NSRange range);
@@ -29432,10 +31665,16 @@ interface NSAccessibilityStepper : NSAccessibilityElementProtocol {
[NullAllowed, Export ("accessibilityLabel")]
string AccessibilityLabel { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityPerformIncrement")]
bool AccessibilityPerformIncrement ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityPerformDecrement")]
bool AccessibilityPerformDecrement ();
@@ -29455,10 +31694,16 @@ interface NSAccessibilitySlider : NSAccessibilityElementProtocol {
[NullAllowed, Export ("accessibilityValue")]
NSObject AccessibilityValue { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityPerformIncrement")]
bool AccessibilityPerformIncrement ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityPerformDecrement")]
bool AccessibilityPerformDecrement ();
@@ -29475,10 +31720,16 @@ interface NSAccessibilityImage : NSAccessibilityElementProtocol {
[NoMacCatalyst]
[Protocol]
interface NSAccessibilityContainsTransientUI : NSAccessibilityElementProtocol {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityPerformShowAlternateUI")]
bool AccessibilityPerformShowAlternateUI ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityPerformShowDefaultUI")]
bool AccessibilityPerformShowDefaultUI ();
@@ -29577,6 +31828,9 @@ interface NSAccessibilityLayoutArea : NSAccessibilityGroup {
[NoMacCatalyst]
[Protocol]
interface NSAccessibilityLayoutItem : NSAccessibilityGroup {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setAccessibilityFrame:")]
void SetAccessibilityFrame (CGRect frame);
}
@@ -29690,6 +31944,11 @@ interface NSFilePromiseProvider : NSPasteboardWriting {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSFilePromiseProviderDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("filePromiseProvider:fileNameForType:")]
string GetFileNameForDestination (NSFilePromiseProvider filePromiseProvider, string fileType);
@@ -29700,6 +31959,10 @@ interface NSFilePromiseProviderDelegate {
[Export ("filePromiseProvider:writePromiseToURL:completionHandler:")]
void WritePromiseToUrl (NSFilePromiseProvider filePromiseProvider, NSUrl url, [NullAllowed] Action completionHandler);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("operationQueueForFilePromiseProvider:")]
NSOperationQueue GetOperationQueue (NSFilePromiseProvider filePromiseProvider);
}
@@ -29738,6 +32001,10 @@ interface NSValidatedUserInterfaceItem {
[NoMacCatalyst]
[Protocol]
interface NSCloudSharingValidation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("cloudShareForUserInterfaceItem:")]
[return: NullAllowed]
@@ -29786,6 +32053,10 @@ interface INSUserInterfaceValidations { }
[NoMacCatalyst]
[NoiOS]
interface NSUserInterfaceValidations {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("validateUserInterfaceItem:")]
bool ValidateUserInterfaceItem (INSValidatedUserInterfaceItem item);
@@ -29794,6 +32065,10 @@ interface NSUserInterfaceValidations {
[NoMacCatalyst]
[Protocol (IsInformal = true)]
interface NSMenuValidation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("validateMenuItem:")]
bool ValidateMenuItem (NSMenuItem menuItem);
@@ -29802,6 +32077,10 @@ interface NSMenuValidation {
[NoMacCatalyst]
[Protocol]
interface NSMenuItemValidation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("validateMenuItem:")]
bool ValidateMenuItem (NSMenuItem menuItem);
@@ -29873,6 +32152,10 @@ interface NSCandidateListTouchBarItemDelegate {
[Export ("candidateListTouchBarItem:endSelectingCandidateAtIndex:")]
void EndSelectingCandidate (NSCandidateListTouchBarItem anItem, nint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("candidateListTouchBarItem:changedCandidateListVisibility:")]
void ChangedCandidateListVisibility (NSCandidateListTouchBarItem anItem, bool isVisible);
}
@@ -29881,6 +32164,9 @@ interface NSCandidateListTouchBarItemDelegate {
[Category]
[BaseType (typeof (NSView))]
interface NSView_NSCandidateListTouchBarItem {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("candidateListTouchBarItem")]
NSCandidateListTouchBarItem GetCandidateListTouchBarItem ();
}
@@ -29963,9 +32249,15 @@ interface NSCustomTouchBarItem {
[Category]
[BaseType (typeof (NSGestureRecognizer))]
interface NSGestureRecognizer_NSTouchBar {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("allowedTouchTypes", ArgumentSemantic.Assign)]
NSTouchTypeMask GetAllowedTouchTypes ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setAllowedTouchTypes:", ArgumentSemantic.Assign)]
void SetAllowedTouchTypes (NSTouchTypeMask types);
}
@@ -30069,6 +32361,10 @@ interface INSScrubberDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSScrubberDataSource {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("numberOfItemsForScrubber:")]
nint GetNumberOfItems (NSScrubber scrubber);
@@ -30088,15 +32384,28 @@ interface NSScrubberDelegate {
[Export ("scrubber:didHighlightItemAtIndex:")]
void DidHighlightItem (NSScrubber scrubber, nint highlightedIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scrubber:didChangeVisibleRange:")]
void DidChangeVisible (NSScrubber scrubber, NSRange visibleRange);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("didBeginInteractingWithScrubber:")]
void DidBeginInteracting (NSScrubber scrubber);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("didFinishInteractingWithScrubber:")]
void DidFinishInteracting (NSScrubber scrubber);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("didCancelInteractingWithScrubber:")]
void DidCancelInteracting (NSScrubber scrubber);
}
@@ -30364,6 +32673,10 @@ public interface INSSharingServicePickerTouchBarItemDelegate { }
[BaseType (typeof (NSObject))]
[Protocol, Model]
interface NSSharingServicePickerTouchBarItemDelegate : NSSharingServicePickerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("itemsForSharingServicePickerTouchBarItem:")]
INSPasteboardWriting [] ItemsForSharingServicePickerTouchBarItem (NSSharingServicePickerTouchBarItem pickerTouchBarItem);
@@ -30547,6 +32860,11 @@ interface INSAccessibilityCustomRotorItemSearchDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSAccessibilityCustomRotorItemSearchDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("rotor:resultForSearchParameters:")]
[return: NullAllowed]
@@ -30558,11 +32876,19 @@ interface INSAccessibilityElementLoading { }
[NoMacCatalyst]
[Protocol]
interface NSAccessibilityElementLoading {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityElementWithToken:")]
[return: NullAllowed]
NSAccessibilityElement GetAccessibilityElement (INSSecureCoding token);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("accessibilityRangeInTargetElementWithToken:")]
NSRange GetAccessibilityRangeInTargetElement (INSSecureCoding token);
}
@@ -30572,10 +32898,18 @@ interface INSCollectionViewPrefetching { }
[NoMacCatalyst]
[Protocol]
interface NSCollectionViewPrefetching {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("collectionView:prefetchItemsAtIndexPaths:")]
void PrefetchItems (NSCollectionView collectionView, NSIndexPath [] indexPaths);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("collectionView:cancelPrefetchingForItemsAtIndexPaths:")]
void CancelPrefetching (NSCollectionView collectionView, NSIndexPath [] indexPaths);
}
@@ -30611,6 +32945,10 @@ interface NSFontAssetRequest : INSProgressReporting
[Category]
[BaseType (typeof (NSObject))]
interface NSObject_NSFontPanelValidationAdditions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("validModesForFontPanel:")]
NSFontPanelModeMask GetValidModes (NSFontPanel fontPanel);
}
@@ -30671,10 +33009,17 @@ interface INSUserInterfaceCompression { }
[NoMacCatalyst]
[Protocol]
interface NSUserInterfaceCompression {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("compressWithPrioritizedCompressionOptions:")]
void Compress (NSUserInterfaceCompressionOptions [] prioritizedOptions);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("minimumSizeWithPrioritizedCompressionOptions:")]
CGSize GetMinimumSize (NSUserInterfaceCompressionOptions [] prioritizedOptions);
diff --git a/src/arkit.cs b/src/arkit.cs
index 68db9a51ab07..1cdd2f274e59 100644
--- a/src/arkit.cs
+++ b/src/arkit.cs
@@ -1325,6 +1325,10 @@ interface ARSCNDebugOptions {
[NoTV, NoMac]
[Protocol]
interface ARTrackable {
+ /// Whether the ARKit-calculated transform matches the real-world position and rotation.
+ ///
+ /// if the transform accurately represents the real-world position and rotation of the detected object.
+ /// To be added.
[Abstract]
[Export ("isTracked")]
bool IsTracked { get; }
diff --git a/src/audiounit.cs b/src/audiounit.cs
index d1c50ff8927a..b6c54d7d0d53 100644
--- a/src/audiounit.cs
+++ b/src/audiounit.cs
@@ -626,65 +626,123 @@ AUParameterTree ParameterTree {
[BaseType (typeof (AUAudioUnit))]
interface AUAudioUnit_AUAudioInputOutputUnit {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV, NoiOS]
[NoMacCatalyst]
[Export ("deviceID")]
uint GetDeviceId ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV, NoiOS]
[NoMacCatalyst]
[Export ("setDeviceID:error:")]
bool SetDeviceId (uint deviceID, out NSError outError);
+ /// Returns a Boolean value that tells whether the audio unit can perform input operations.
+ /// To be added.
+ /// To be added.
[Export ("canPerformInput")]
bool GetCanPerformInput ();
+ /// Returns a Boolean value that tells whether the audio unit can perform output operations.
+ /// To be added.
+ /// To be added.
[Export ("canPerformOutput")]
bool CanPerformOutput ();
+ /// Returns a Boolean value that tells whether input is currently enabled on the audio unit.
+ /// To be added.
+ /// To be added.
[Export ("isInputEnabled")]
bool IsInputEnabled ();
+ /// To be added.
+ /// Sets a Boolean value that controls whether input is enabled on the audio unit.
+ /// To be added.
+ /// To be added.
[Export ("setInputEnabled:")]
bool SetInputEnabled (bool enabled);
+ /// Returns a Boolean value that tells whether input is currently enabled on the audio unit.
+ /// To be added.
+ /// To be added.
[Export ("isOutputEnabled")]
bool IsOutputEnabled ();
+ /// To be added.
+ /// Sets a Boolean value that controls whether output is enabled on the audio unit..
+ /// To be added.
+ /// To be added.
[Export ("setOutputEnabled:")]
bool SetOutputEnabled (bool enabled);
+ /// Gets the input handler for this IO unit
+ /// To be added.
+ /// To be added.
[return: NullAllowed]
[Export ("inputHandler", ArgumentSemantic.Copy)]
AUInputHandler GetInputHandler ();
+ /// The handler to set.
+ /// Sets the input handler to the specified value.
+ /// To be added.
[Export ("setInputHandler:")]
void SetInputHandler ([NullAllowed] AUInputHandler handler);
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// Starts the audio unit's hardware.
+ /// To be added.
+ /// To be added.
[Export ("startHardwareAndReturnError:")]
bool StartHardware ([NullAllowed] out NSError outError);
+ /// Stops the audio unit's hardware.
+ /// To be added.
[Export ("stopHardware")]
void StopHardware ();
+ /// Gets the output provider for this IO unit.
+ /// To be added.
+ /// To be added.
[return: NullAllowed]
[Export ("outputProvider", ArgumentSemantic.Copy)]
AURenderPullInputBlock GetOutputProvider ();
+ /// The provider to set.
+ /// Sets the output provider to the specified value.
+ /// To be added.
[Export ("setOutputProvider:")]
void SetOutputProvider ([NullAllowed] AURenderPullInputBlock provider);
// the following are properties but we cannot have properties in Categories.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS, NoTV]
[NoMacCatalyst]
[Export ("deviceInputLatency")]
double GetDeviceInputLatency ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS, NoTV]
[NoMacCatalyst]
[Export ("deviceOutputLatency")]
double GetDeviceOutputLatency ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("running")]
bool IsRunning ();
@@ -1240,6 +1298,11 @@ interface AUParameterTree : NSSecureCoding {
///
[Protocol]
interface AUAudioUnitFactory : NSExtensionRequestHandling {
+ /// A description for the audio unit.
+ /// An parameter into which any errors that are encountered are written.
+ /// Creates and returns an audio unit.
+ /// An audio unit.
+ /// To be added.
[Abstract]
[Export ("createAudioUnitWithComponentDescription:error:")]
[return: NullAllowed]
diff --git a/src/avfoundation.cs b/src/avfoundation.cs
index 7f33b076ba6d..7f4e408022a1 100644
--- a/src/avfoundation.cs
+++ b/src/avfoundation.cs
@@ -1643,6 +1643,9 @@ interface AVAudio3DMixing {
[Export ("renderingAlgorithm")]
AVAudio3DMixingRenderingAlgorithm RenderingAlgorithm { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("rate")]
float Rate { get; set; } /* float, not CGFloat */
@@ -1668,6 +1671,9 @@ interface AVAudio3DMixing {
[Export ("occlusion")]
float Occlusion { get; set; } /* float, not CGFloat */
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("position")]
Vector3 Position { get; set; }
@@ -1696,6 +1702,9 @@ interface AVAudioMixing : AVAudioStereoMixing
[return: NullAllowed]
AVAudioMixingDestination DestinationForMixer (AVAudioNode mixer, nuint bus);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("volume")]
float Volume { get; set; } /* float, not CGFloat */
@@ -5383,6 +5392,10 @@ interface IAVFragmentMinding { }
[Protocol]
[MacCatalyst (13, 1)]
interface AVFragmentMinding {
+ /// Return if the implementation is associated with a .
+ ///
+ /// if the implementation is associated with a .
+ /// To be added.
[Abstract]
[Export ("isAssociatedWithFragmentMinder")]
bool IsAssociatedWithFragmentMinder ();
@@ -5409,19 +5422,39 @@ interface AVFragmentedAsset : AVFragmentMinding {
[BaseType (typeof (AVFragmentedAsset))]
interface AVFragmentedAsset_AVFragmentedAssetTrackInspection {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("trackWithTrackID:")]
[return: NullAllowed]
AVFragmentedAssetTrack GetTrack (int trackID);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaType:")]
AVFragmentedAssetTrack [] GetTracks (string mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracks (mediaType.GetConstant ())")]
AVFragmentedAssetTrack [] GetTracks (AVMediaTypes mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaCharacteristic:")]
AVFragmentedAssetTrack [] GetTracksWithMediaCharacteristic (string mediaCharacteristic);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracksWithMediaCharacteristic (mediaCharacteristic.GetConstant ())")]
AVFragmentedAssetTrack [] GetTracks (AVMediaCharacteristics mediaCharacteristic);
@@ -5481,10 +5514,19 @@ interface IAVCaptureFileOutputDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface AVCaptureFileOutputDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("captureOutputShouldProvideSampleAccurateRecordingStart:")]
bool ShouldProvideSampleAccurateRecordingStart (AVCaptureOutput captureOutput);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("captureOutput:didOutputSampleBuffer:fromConnection:")]
void DidOutputSampleBuffer (AVCaptureOutput captureOutput, CMSampleBuffer sampleBuffer, AVCaptureConnection connection);
}
@@ -5527,6 +5569,10 @@ interface IAVCaptureDataOutputSynchronizerDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface AVCaptureDataOutputSynchronizerDelegate {
+ /// The synchronizer that provided the data.
+ /// The collection of synchronized data.
+ /// Developers implement this method to respond when collections of synchronized capture data arrive.
+ /// To be added.
[Abstract]
[Export ("dataOutputSynchronizer:didOutputSynchronizedDataCollection:")]
void DidOutputSynchronizedDataCollection (AVCaptureDataOutputSynchronizer synchronizer, AVCaptureSynchronizedDataCollection synchronizedDataCollection);
@@ -5609,26 +5655,43 @@ interface AVCaptureSynchronizedDepthData {
[MacCatalyst (13, 1)]
[Protocol]
interface AVQueuedSampleBufferRendering {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("timebase", ArgumentSemantic.Retain)]
CMTimebase Timebase { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("enqueueSampleBuffer:")]
void Enqueue (CMSampleBuffer sampleBuffer);
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("flush")]
void Flush ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("readyForMoreMediaData")]
bool ReadyForMoreMediaData { [Bind ("isReadyForMoreMediaData")] get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("requestMediaDataWhenReadyOnQueue:usingBlock:")]
void RequestMediaData (DispatchQueue queue, Action handler);
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("stopRequestingMediaData")]
void StopRequestingMediaData ();
@@ -6270,6 +6333,11 @@ interface IAVAssetResourceLoaderDelegate { }
[Model]
[Protocol]
interface AVAssetResourceLoaderDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("resourceLoader:shouldWaitForLoadingOfRequestedResource:")]
bool ShouldWaitForLoadingOfRequestedResource (AVAssetResourceLoader resourceLoader, AVAssetResourceLoadingRequest loadingRequest);
@@ -11945,15 +12013,31 @@ interface AVMovie : NSCopying, NSMutableCopying {
[Category]
[BaseType (typeof (AVMovie))]
interface AVMovie_AVMovieMovieHeaderSupport {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("movieHeaderWithFileType:error:")]
[return: NullAllowed]
NSData GetMovieHeader (string fileType, [NullAllowed] out NSError outError);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("writeMovieHeaderToURL:fileType:options:error:")]
bool WriteMovieHeader (NSUrl URL, string fileType, AVMovieWritingOptions options, [NullAllowed] out NSError outError);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("isCompatibleWithFileType:")]
bool IsCompatibleWithFileType (string fileType);
@@ -11964,19 +12048,39 @@ interface AVMovie_AVMovieMovieHeaderSupport {
[Category]
[BaseType (typeof (AVMovie))]
interface AVMovie_AVMovieTrackInspection {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("trackWithTrackID:")]
[return: NullAllowed]
AVMovieTrack GetTrack (int trackID);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaType:")]
AVMovieTrack [] GetTracks (string mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracks (mediaType.GetConstant ())")]
AVMovieTrack [] GetTracks (AVMediaTypes mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaCharacteristic:")]
AVMovieTrack [] GetTracksWithMediaCharacteristic (string mediaCharacteristic);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracksWithMediaCharacteristic (mediaCharacteristic.GetConstant ())")]
AVMovieTrack [] GetTracks (AVMediaCharacteristics mediaCharacteristic);
@@ -12101,15 +12205,33 @@ interface AVMutableMovie {
[Category]
[BaseType (typeof (AVMutableMovie))]
interface AVMutableMovie_AVMutableMovieMovieLevelEditing {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertTimeRange:ofAsset:atTime:copySampleData:error:")]
bool InsertTimeRange (CMTimeRange timeRange, AVAsset asset, CMTime startTime, bool copySampleData, [NullAllowed] out NSError outError);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertEmptyTimeRange:")]
void InsertEmptyTimeRange (CMTimeRange timeRange);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("removeTimeRange:")]
void RemoveTimeRange (CMTimeRange timeRange);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scaleTimeRange:toDuration:")]
void ScaleTimeRange (CMTimeRange timeRange, CMTime duration);
}
@@ -12119,17 +12241,35 @@ interface AVMutableMovie_AVMutableMovieMovieLevelEditing {
[Category]
[BaseType (typeof (AVMutableMovie))]
interface AVMutableMovie_AVMutableMovieTrackLevelEditing {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("mutableTrackCompatibleWithTrack:")]
[return: NullAllowed]
AVMutableMovieTrack GetMutableTrack (AVAssetTrack track);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("addMutableTrackWithMediaType:copySettingsFromTrack:options:")]
[return: NullAllowed]
AVMutableMovieTrack AddMutableTrack (string mediaType, [NullAllowed] AVAssetTrack track, [NullAllowed] NSDictionary options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("addMutableTracksCopyingSettingsFromTracks:options:")]
AVMutableMovieTrack [] AddMutableTracks (AVAssetTrack [] existingTracks, [NullAllowed] NSDictionary options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("removeTrack:")]
void RemoveTrack (AVMovieTrack track);
}
@@ -12139,19 +12279,39 @@ interface AVMutableMovie_AVMutableMovieTrackLevelEditing {
[Category]
[BaseType (typeof (AVMutableMovie))]
interface AVMutableMovie_AVMutableMovieTrackInspection {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("trackWithTrackID:")]
[return: NullAllowed]
AVMutableMovieTrack GetTrack (int trackID);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaType:")]
AVMutableMovieTrack [] GetTracks (string mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracks (mediaType.GetConstant ())")]
AVMutableMovieTrack [] GetTracks (AVMediaTypes mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaCharacteristic:")]
AVMutableMovieTrack [] GetTracksWithMediaCharacteristic (string mediaCharacteristic);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracksWithMediaCharacteristic (mediaCharacteristic.GetConstant ())")]
AVMutableMovieTrack [] GetTracks (AVMediaCharacteristics mediaCharacteristic);
}
@@ -12213,19 +12373,39 @@ interface AVFragmentedMovie : AVFragmentMinding {
[Category]
[BaseType (typeof (AVFragmentedMovie))]
interface AVFragmentedMovie_AVFragmentedMovieTrackInspection {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("trackWithTrackID:")]
[return: NullAllowed]
AVFragmentedMovieTrack GetTrack (int trackID);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaType:")]
AVFragmentedMovieTrack [] GetTracks (string mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracks (mediaType.GetConstant ())")]
AVFragmentedMovieTrack [] GetTracks (AVMediaTypes mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaCharacteristic:")]
AVFragmentedMovieTrack [] GetTracksWithMediaCharacteristic (string mediaCharacteristic);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracksWithMediaCharacteristic (mediaCharacteristic.GetConstant ())")]
AVFragmentedMovieTrack [] GetTracks (AVMediaCharacteristics mediaCharacteristic);
@@ -12413,15 +12593,33 @@ interface AVMutableMovieTrack {
[Category]
[BaseType (typeof (AVMutableMovieTrack))]
interface AVMutableMovieTrack_AVMutableMovieTrack_TrackLevelEditing {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertTimeRange:ofTrack:atTime:copySampleData:error:")]
bool InsertTimeRange (CMTimeRange timeRange, AVAssetTrack track, CMTime startTime, bool copySampleData, [NullAllowed] out NSError outError);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("insertEmptyTimeRange:")]
void InsertEmptyTimeRange (CMTimeRange timeRange);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("removeTimeRange:")]
void RemoveTimeRange (CMTimeRange timeRange);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("scaleTimeRange:toDuration:")]
void ScaleTimeRange (CMTimeRange timeRange, CMTime duration);
}
@@ -12431,9 +12629,17 @@ interface AVMutableMovieTrack_AVMutableMovieTrack_TrackLevelEditing {
[Category]
[BaseType (typeof (AVMutableMovieTrack))]
interface AVMutableMovieTrack_AVMutableMovieTrackTrackAssociations {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("addTrackAssociationToTrack:type:")]
void AddTrackAssociation (AVMovieTrack movieTrack, string trackAssociationType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("removeTrackAssociationToTrack:type:")]
void RemoveTrackAssociation (AVMovieTrack movieTrack, string trackAssociationType);
}
@@ -12764,19 +12970,39 @@ interface AVComposition : NSMutableCopying {
[BaseType (typeof (AVComposition))]
interface AVComposition_AVCompositionTrackInspection {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("trackWithTrackID:")]
[return: NullAllowed]
AVCompositionTrack GetTrack (int trackID);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaType:")]
AVCompositionTrack [] GetTracks (string mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracks (mediaType.GetConstant ())")]
AVCompositionTrack [] GetTracks (AVMediaTypes mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaCharacteristic:")]
AVCompositionTrack [] GetTracksWithMediaCharacteristic (string mediaCharacteristic);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracksWithMediaCharacteristic (mediaCharacteristic.GetConstant ())")]
AVCompositionTrack [] GetTracks (AVMediaCharacteristics mediaCharacteristic);
@@ -12858,19 +13084,39 @@ interface AVMutableComposition {
[BaseType (typeof (AVMutableComposition))]
interface AVMutableComposition_AVMutableCompositionTrackInspection {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("trackWithTrackID:")]
[return: NullAllowed]
AVMutableCompositionTrack GetTrack (int trackID);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaType:")]
AVMutableCompositionTrack [] GetTracks (string mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracks (mediaType.GetConstant ())")]
AVMutableCompositionTrack [] GetTracks (AVMediaTypes mediaType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("tracksWithMediaCharacteristic:")]
AVMutableCompositionTrack [] GetTracksWithMediaCharacteristic (string mediaCharacteristic);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("This.GetTracksWithMediaCharacteristic (mediaCharacteristic.GetConstant ())")]
AVMutableCompositionTrack [] GetTracks (AVMediaCharacteristics mediaCharacteristic);
@@ -13342,19 +13588,31 @@ interface IAVVideoCompositing { }
[Model, BaseType (typeof (NSObject))]
[Protocol]
interface AVVideoCompositing {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[return: NullAllowed]
[Export ("sourcePixelBufferAttributes")]
NSDictionary SourcePixelBufferAttributes ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("requiredPixelBufferAttributesForRenderContext")]
NSDictionary RequiredPixelBufferAttributesForRenderContext ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("renderContextChanged:")]
void RenderContextChanged (AVVideoCompositionRenderContext newRenderContext);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("startVideoCompositionRequest:")]
void StartVideoCompositionRequest (AVAsynchronousVideoCompositionRequest asyncVideoCompositionRequest);
@@ -15208,6 +15466,12 @@ interface AVCaptureFileOutputRecordingDelegate {
[Export ("captureOutput:didStartRecordingToOutputFileAtURL:startPTS:fromConnections:")]
void DidStartRecording (AVCaptureFileOutput captureOutput, NSUrl outputFileUrl, CMTime startPts, NSObject [] connections);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("captureOutput:didFinishRecordingToOutputFileAtURL:fromConnections:error:"), CheckDisposed]
void FinishedRecording (AVCaptureFileOutput captureOutput, NSUrl outputFileUrl, NSObject [] connections, [NullAllowed] NSError error);
@@ -15230,6 +15494,12 @@ interface AVCaptureFileOutputRecordingDelegate {
[Export ("captureOutput:didResumeRecordingToOutputFileAtURL:fromConnections:")]
void DidResumeRecording (AVCaptureFileOutput captureOutput, NSUrl outputFileUrl, AVCaptureConnection [] connections);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoMacCatalyst, NoiOS, NoTV]
[Export ("captureOutput:willFinishRecordingToOutputFileAtURL:fromConnections:error:")]
void WillFinishRecording (AVCaptureFileOutput captureOutput, NSUrl outputFileUrl, AVCaptureConnection [] connections, [NullAllowed] NSError error);
@@ -18902,26 +19172,44 @@ public enum AVVariantPreferences : ulong {
[MacCatalyst (13, 1)]
[BaseType (typeof (AVPlayerItem))]
interface AVPlayerItem_AVPlayerItemProtectedContent {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("isAuthorizationRequiredForPlayback")]
bool IsAuthorizationRequiredForPlayback ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("isApplicationAuthorizedForPlayback")]
bool IsApplicationAuthorizedForPlayback ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("isContentAuthorizedForPlayback")]
bool IsContentAuthorizedForPlayback ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoMacCatalyst]
[Export ("requestContentAuthorizationAsynchronouslyWithTimeoutInterval:completionHandler:")]
void RequestContentAuthorizationAsynchronously (/* NSTimeInterval */ double timeoutInterval, Action handler);
+ /// To be added.
+ /// To be added.
[NoMacCatalyst]
[Export ("cancelContentAuthorizationRequest")]
void CancelContentAuthorizationRequest ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoMacCatalyst]
[Export ("contentAuthorizationRequestStatus")]
AVContentAuthorizationStatus GetContentAuthorizationRequestStatus ();
@@ -19671,6 +19959,12 @@ interface IAVPlayerItemMetadataCollectorPushDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface AVPlayerItemMetadataCollectorPushDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("metadataCollector:didCollectDateRangeMetadataGroups:indexesOfNewGroups:indexesOfModifiedGroups:")]
void DidCollectDateRange (AVPlayerItemMetadataCollector metadataCollector, AVDateRangeMetadataGroup [] metadataGroups, NSIndexSet indexesOfNewGroups, NSIndexSet indexesOfModifiedGroups);
@@ -20076,6 +20370,11 @@ interface AVAsynchronousKeyValueLoading {
[Abstract]
[Export ("statusOfValueForKey:error:")]
AVKeyValueStatus GetStatusOfValue (string forKey, out NSError error);
+
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("loadValuesAsynchronouslyForKeys:completionHandler:")]
void LoadValuesAsynchronously (string [] keys, [NullAllowed] Action handler);
@@ -21805,6 +22104,10 @@ partial interface IAVContentKeySessionDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface AVContentKeySessionDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("contentKeySession:didProvideContentKeyRequest:")]
void DidProvideContentKeyRequest (AVContentKeySession session, AVContentKeyRequest keyRequest);
@@ -21890,6 +22193,9 @@ interface AVContentKeyRecipient {
[Export ("contentKeySession:didProvideContentKey:")]
void DidProvideContentKey (AVContentKeySession contentKeySession, AVContentKey contentKey);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("mayRequireContentKeysForMediaDataProcessing")]
bool MayRequireContentKeysForMediaDataProcessing { get; }
@@ -22072,12 +22378,21 @@ interface AVContentKeySessionServerPlaybackContextOptions {
[Category]
[BaseType (typeof (AVContentKeySession))]
interface AVContentKeySession_AVContentKeyRecipients {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("addContentKeyRecipient:")]
void Add (IAVContentKeyRecipient recipient);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("removeContentKeyRecipient:")]
void Remove (IAVContentKeyRecipient recipient);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("contentKeyRecipients")]
IAVContentKeyRecipient [] GetContentKeyRecipients ();
}
@@ -22173,6 +22488,9 @@ interface AVContentKeyRequest {
[MacCatalyst (13, 1)]
[BaseType (typeof (AVContentKeyRequest))]
interface AVContentKeyRequest_AVContentKeyRequestRenewal {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("renewsExpiringResponseData")]
bool GetRenewsExpiringResponseData ();
}
diff --git a/src/avkit.cs b/src/avkit.cs
index 11008d3c009f..2bd1e0545ee8 100644
--- a/src/avkit.cs
+++ b/src/avkit.cs
@@ -854,6 +854,10 @@ interface IAVCaptureViewDelegate { }
[NoMacCatalyst]
[BaseType (typeof (NSObject))]
interface AVCaptureViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("captureView:startRecordingToFileOutput:")]
void StartRecording (AVCaptureView captureView, AVCaptureFileOutput fileOutput);
diff --git a/src/callkit.cs b/src/callkit.cs
index 1cea8cdb8708..79b29399e454 100644
--- a/src/callkit.cs
+++ b/src/callkit.cs
@@ -409,6 +409,10 @@ interface ICXCallDirectoryExtensionContextDelegate { }
[BaseType (typeof (NSObject))]
interface CXCallDirectoryExtensionContextDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("requestFailedForExtensionContext:withError:")]
void RequestFailed (CXCallDirectoryExtensionContext extensionContext, NSError error);
@@ -475,6 +479,10 @@ interface ICXCallObserverDelegate { }
[BaseType (typeof (NSObject))]
interface CXCallObserverDelegate {
+ /// The object on which this method operates.
+ /// The new call.
+ /// Method that is called when the call changes.
+ /// To be added.
[Abstract]
[Export ("callObserver:callChanged:")]
void CallChanged (CXCallObserver callObserver, CXCall call);
@@ -578,6 +586,9 @@ interface ICXProviderDelegate { }
[BaseType (typeof (NSObject))]
interface CXProviderDelegate {
+ /// The provider to which the provider delegate belongs.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("providerDidReset:")]
void DidReset (CXProvider provider);
diff --git a/src/carplay.cs b/src/carplay.cs
index 5a562fb5d6eb..8e43d26f67ea 100644
--- a/src/carplay.cs
+++ b/src/carplay.cs
@@ -398,10 +398,16 @@ interface ICPBarButtonProviding { }
[Protocol]
interface CPBarButtonProviding {
+ /// Developers must override this with the array of objects on the leading part of the navigation bar.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("leadingNavigationBarButtons", ArgumentSemantic.Strong)]
CPBarButton [] LeadingNavigationBarButtons { get; set; }
+ /// Developers must override this with the array of objects on the trailing part of the navigation bar..
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("trailingNavigationBarButtons", ArgumentSemantic.Strong)]
CPBarButton [] TrailingNavigationBarButtons { get; set; }
@@ -639,10 +645,20 @@ interface ICPApplicationDelegate { }
[BaseType (typeof (NSObject))]
interface CPApplicationDelegate : UIApplicationDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("application:didConnectCarInterfaceController:toWindow:")]
void DidConnectCarInterfaceController (UIApplication application, CPInterfaceController interfaceController, CPWindow window);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("application:didDisconnectCarInterfaceController:fromWindow:")]
void DidDisconnectCarInterfaceController (UIApplication application, CPInterfaceController interfaceController, CPWindow window);
@@ -923,6 +939,11 @@ interface ICPListTemplateDelegate { }
[BaseType (typeof (NSObject))]
interface CPListTemplateDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Developers must override this method to react to the selection of a list item.
+ /// To be added.
[Abstract]
[Export ("listTemplate:didSelectListItem:completionHandler:")]
void DidSelectListItem (CPListTemplate listTemplate, CPListItem item, Action completionHandler);
@@ -1436,10 +1457,20 @@ interface ICPSearchTemplateDelegate { }
[BaseType (typeof (NSObject))]
interface CPSearchTemplateDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Developers must override this method to respond to a change in the search text.
+ /// To be added.
[Abstract]
[Export ("searchTemplate:updatedSearchText:completionHandler:")]
void UpdatedSearchText (CPSearchTemplate searchTemplate, string searchText, CPSearchTemplateDelegateUpdateHandler completionHandler);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Developers must overrride this method to respond to a search selection.
+ /// To be added.
[Abstract]
[Export ("searchTemplate:selectedResult:completionHandler:")]
void SelectedResult (CPSearchTemplate searchTemplate, CPListItem item, Action completionHandler);
@@ -1499,6 +1530,10 @@ interface CPSessionConfigurationDelegate {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// Called when the system changes keyboards or modifies list limits.
+ /// To be added.
[Export ("sessionConfiguration:limitedUserInterfacesChanged:")]
void LimitedUserInterfacesChanged (CPSessionConfiguration sessionConfiguration, CPLimitableUserInterface limitedUserInterfaces);
diff --git a/src/classkit.cs b/src/classkit.cs
index f6340e65b55d..b0102ccc6b78 100644
--- a/src/classkit.cs
+++ b/src/classkit.cs
@@ -465,6 +465,14 @@ interface ICLSDataStoreDelegate { }
[BaseType (typeof (NSObject))]
interface CLSDataStoreDelegate {
+ /// The identifier for the context to create.
+ /// The parent context for the context to create.
+ /// The identifier path for the parent of the context to create.
+ /// Requests a context for the provided parameters.
+ /// A new ClassKit store context.
+ ///
+ /// ClassKit contexts are used to arrange nested content, such as chapters and sections of a lesson plan, in order to organize and track student progress and tests. ClassKit supports a maximum of 8 layers of content nesting.
+ ///
[Abstract]
[Export ("createContextForIdentifier:parentContext:parentIdentifierPath:")]
[return: NullAllowed]
@@ -580,6 +588,10 @@ interface CLSScoreItem {
[NoTV]
[Protocol]
interface CLSContextProvider {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("updateDescendantsOfContext:completion:")]
void UpdateDescendants (CLSContext context, Action completion);
diff --git a/src/coreanimation.cs b/src/coreanimation.cs
index 6ae9d20aa8f9..21d7ae102bb4 100644
--- a/src/coreanimation.cs
+++ b/src/coreanimation.cs
@@ -1298,10 +1298,16 @@ interface ICAMetalDrawable { }
[Protocol]
[MacCatalyst (13, 1)]
interface CAMetalDrawable : MTLDrawable {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("texture")]
IMTLTexture Texture { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("layer")]
CAMetalLayer Layer { get; }
diff --git a/src/coreaudiokit.cs b/src/coreaudiokit.cs
index 4c5e0db29c3b..924e3bb143a0 100644
--- a/src/coreaudiokit.cs
+++ b/src/coreaudiokit.cs
@@ -88,9 +88,16 @@ interface AUAudioUnitViewConfiguration : NSSecureCoding {
[MacCatalyst (13, 1)]
[BaseType (typeof (AUAudioUnit))]
interface AUAudioUnitViewControllerExtensions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("supportedViewConfigurations:")]
NSIndexSet GetSupportedViewConfigurations (AUAudioUnitViewConfiguration [] availableViewConfigurations);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("selectViewConfiguration:")]
void SelectViewConfiguration (AUAudioUnitViewConfiguration viewConfiguration);
}
@@ -100,6 +107,9 @@ interface AUAudioUnitViewControllerExtensions {
[Protocol]
interface AUCustomViewPersistentData {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("customViewPersistentData", ArgumentSemantic.Assign)]
NSDictionary CustomViewPersistentData { get; set; }
diff --git a/src/coreimage.cs b/src/coreimage.cs
index 7ee5fb5bae4e..745f880c7f78 100644
--- a/src/coreimage.cs
+++ b/src/coreimage.cs
@@ -633,31 +633,71 @@ interface CIContext {
[BaseType (typeof (CIContext))]
interface CIContext_ImageRepresentation {
+ /// The image input to be processed.
+ /// The desired pixel format.
+ /// The color space to be used.
+ /// Processing arguments.
+ /// Applies the processing of this context to the and returns a TIFF image of the result.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("TIFFRepresentationOfImage:format:colorSpace:options:")]
[return: NullAllowed]
NSData GetTiffRepresentation (CIImage image, CIFormat format, CGColorSpace colorSpace, NSDictionary options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("GetTiffRepresentation (This, image, format, colorSpace, options.GetDictionary ()!)")]
[return: NullAllowed]
NSData GetTiffRepresentation (CIImage image, CIFormat format, CGColorSpace colorSpace, CIImageRepresentationOptions options);
+ /// The image input to be processed.
+ /// The color space to be used.
+ /// Processing arguments.
+ /// Applies the processing of this context to the and returns a JPEG image of the result.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("JPEGRepresentationOfImage:colorSpace:options:")]
[return: NullAllowed]
NSData GetJpegRepresentation (CIImage image, CGColorSpace colorSpace, NSDictionary options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("GetJpegRepresentation (This, image, colorSpace, options.GetDictionary ()!)")]
[return: NullAllowed]
NSData GetJpegRepresentation (CIImage image, CGColorSpace colorSpace, CIImageRepresentationOptions options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("HEIFRepresentationOfImage:format:colorSpace:options:")]
[return: NullAllowed]
NSData GetHeifRepresentation (CIImage image, CIFormat format, CGColorSpace colorSpace, NSDictionary options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("GetHeifRepresentation (This, image, format, colorSpace, options.GetDictionary ()!)")]
[return: NullAllowed]
@@ -673,36 +713,108 @@ interface CIContext_ImageRepresentation {
[return: NullAllowed]
NSData GetHeif10Representation (CIImage image, CGColorSpace colorSpace, CIImageRepresentationOptions options, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("PNGRepresentationOfImage:format:colorSpace:options:")]
[return: NullAllowed]
NSData GetPngRepresentation (CIImage image, CIFormat format, CGColorSpace colorSpace, NSDictionary options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("GetPngRepresentation (This, image, format, colorSpace, options.GetDictionary ()!)")]
[return: NullAllowed]
NSData GetPngRepresentation (CIImage image, CIFormat format, CGColorSpace colorSpace, CIImageRepresentationOptions options);
+ /// The image input to be processed.
+ /// To be added.
+ /// The desired pixel format.
+ /// The color space to be used.
+ /// Processing arguments.
+ /// If not , error that occurred during processing.
+ /// Applies the processing of this context to the and writes a TIFF image of the result to .
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("writeTIFFRepresentationOfImage:toURL:format:colorSpace:options:error:")]
bool WriteTiffRepresentation (CIImage image, NSUrl url, CIFormat format, CGColorSpace colorSpace, NSDictionary options, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("WriteTiffRepresentation (This, image, url, format, colorSpace, options.GetDictionary ()!, out error)")]
bool WriteTiffRepresentation (CIImage image, NSUrl url, CIFormat format, CGColorSpace colorSpace, CIImageRepresentationOptions options, out NSError error);
+ /// The image input to be processed.
+ /// The file URL to which the image should be written.
+ /// The color space to be used.
+ /// Processing arguments.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// Applies the processing of this context to the and writes a JPEG image of the result to .
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("writeJPEGRepresentationOfImage:toURL:colorSpace:options:error:")]
bool WriteJpegRepresentation (CIImage image, NSUrl url, CGColorSpace colorSpace, NSDictionary options, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("WriteJpegRepresentation (This, image, url, colorSpace, options.GetDictionary ()!, out error)")]
bool WriteJpegRepresentation (CIImage image, NSUrl url, CGColorSpace colorSpace, CIImageRepresentationOptions options, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("writeHEIFRepresentationOfImage:toURL:format:colorSpace:options:error:")]
bool WriteHeifRepresentation (CIImage image, NSUrl url, CIFormat format, CGColorSpace colorSpace, NSDictionary options, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("WriteHeifRepresentation (This, image, url, format, colorSpace, options.GetDictionary ()!, out error)")]
bool WriteHeifRepresentation (CIImage image, NSUrl url, CIFormat format, CGColorSpace colorSpace, CIImageRepresentationOptions options, [NullAllowed] out NSError error);
@@ -715,10 +827,31 @@ interface CIContext_ImageRepresentation {
[Wrap ("WriteHeif10Representation (This, image, url, colorSpace, options.GetDictionary ()!, out error)")]
bool WriteHeif10Representation (CIImage image, NSUrl url, CGColorSpace colorSpace, CIImageRepresentationOptions options, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("writePNGRepresentationOfImage:toURL:format:colorSpace:options:error:")]
bool WritePngRepresentation (CIImage image, NSUrl url, CIFormat format, CGColorSpace colorSpace, NSDictionary options, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("WritePngRepresentation (This, image, url, format, colorSpace, options.GetDictionary ()!, out error)")]
bool WritePngRepresentation (CIImage image, NSUrl url, CIFormat format, CGColorSpace colorSpace, CIImageRepresentationOptions options, [NullAllowed] out NSError error);
@@ -729,18 +862,36 @@ interface CIContext_ImageRepresentation {
[BaseType (typeof (CIContext))]
interface CIContext_CIDepthBlurEffect {
// as per the docs: The 'options' parameter is a key value/pair reserved for future use.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("depthBlurEffectFilterForImageURL:options:")]
[return: NullAllowed]
CIFilter GetDepthBlurEffectFilter (NSUrl url, [NullAllowed] NSDictionary options);
// as per the docs: The 'options' parameter is a key value/pair reserved for future use.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("depthBlurEffectFilterForImageData:options:")]
[return: NullAllowed]
CIFilter GetDepthBlurEffectFilter (NSData data, [NullAllowed] NSDictionary options);
// as per the docs: The 'options' parameter is a key value/pair reserved for future use.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("depthBlurEffectFilterForImage:disparityImage:portraitEffectsMatte:orientation:options:")]
[return: NullAllowed]
@@ -2167,6 +2318,10 @@ interface CIFilterCategory {
[MacCatalyst (13, 1)]
[Protocol]
interface CIFilterConstructor {
+ /// To be added.
+ /// Creates a new filter from the provided name.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("filterWithName:")]
[return: NullAllowed]
@@ -3913,26 +4068,44 @@ interface ICIImageProcessorInput { }
[MacCatalyst (13, 1)]
[Protocol]
interface CIImageProcessorInput {
+ /// The region of interest in the input image.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("region")]
CGRect Region { get; }
+ /// The number of bytes in a single row of the input image.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("bytesPerRow")]
nuint BytesPerRow { get; }
+ /// The pixel format of the input image.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("format")]
CIFormat Format { get; }
+ /// The memory address of the data buffer.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("baseAddress")]
IntPtr BaseAddress { get; }
+ /// The input .
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("pixelBuffer")]
CVPixelBuffer PixelBuffer { get; }
+ /// The input .
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("metalTexture")]
IMTLTexture MetalTexture { get; }
@@ -3970,30 +4143,51 @@ interface ICIImageProcessorOutput { }
[MacCatalyst (13, 1)]
[Protocol]
interface CIImageProcessorOutput {
+ /// The to which the processing was applied.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("region")]
CGRect Region { get; }
+ /// The number of bytes in a single row of the output image.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("bytesPerRow")]
nuint BytesPerRow { get; }
+ /// The colorspace of the output image.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("format")]
CIFormat Format { get; }
+ /// The memory address of the data buffer.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("baseAddress")]
IntPtr BaseAddress { get; }
+ /// The output image, as a .
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("pixelBuffer")]
CVPixelBuffer PixelBuffer { get; }
+ /// The Metal of the output image.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("metalTexture")]
IMTLTexture MetalTexture { get; }
+ /// The Metal command buffer for the output image.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("metalCommandBuffer")]
IMTLCommandBuffer MetalCommandBuffer { get; }
@@ -8010,17 +8204,56 @@ interface CIRenderTask {
[BaseType (typeof (CIContext))]
interface CIContext_CIRenderDestination {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("prepareRender:fromRect:toDestination:atPoint:error:")]
bool PrepareRender (CIImage image, CGRect fromRect, CIRenderDestination destination, CGPoint atPoint, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("startTaskToRender:fromRect:toDestination:atPoint:error:")]
[return: NullAllowed]
CIRenderTask StartTaskToRender (CIImage image, CGRect fromRect, CIRenderDestination destination, CGPoint atPoint, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("startTaskToRender:toDestination:error:")]
[return: NullAllowed]
CIRenderTask StartTaskToRender (CIImage image, CIRenderDestination destination, [NullAllowed] out NSError error);
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("startTaskToClear:error:")]
[return: NullAllowed]
CIRenderTask StartTaskToClear (CIRenderDestination destination, [NullAllowed] out NSError error);
diff --git a/src/coreml.cs b/src/coreml.cs
index 1c6ef25c2009..5c4ed49ef3d7 100644
--- a/src/coreml.cs
+++ b/src/coreml.cs
@@ -252,10 +252,17 @@ interface IMLFeatureProvider { }
[Protocol]
interface MLFeatureProvider {
+ /// The names of the feature, as defined by the .
+ /// The T:Monotouch.Foundation.NSSet of feature names.
+ /// To be added.
[Abstract]
[Export ("featureNames")]
NSSet FeatureNames { get; }
+ /// The feature whose value will be returned.
+ /// Retrieves the value of the .
+ /// The value of the .
+ /// To be added.
[Abstract]
[Export ("featureValueForName:")]
[return: NullAllowed]
@@ -1020,15 +1027,31 @@ interface MLCustomLayer {
//[Export ("initWithParameterDictionary:error:")]
//NativeHandle Constructor (NSDictionary parameters, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// Sets the internal weights of the layer.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setWeightData:error:")]
bool SetWeightData (NSData [] weights, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// Retrieves the output data shape, as an array of numbers describing the dimensions of the output tensor.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("outputShapesForInputShapes:error:")]
[return: NullAllowed]
NSArray [] GetOutputShapes (NSArray [] inputShapes, [NullAllowed] out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Sets based on using the CPU to do the calculations.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("evaluateOnCPUWithInputs:outputs:error:")]
bool EvaluateOnCpu (MLMultiArray [] inputs, MLMultiArray [] outputs, [NullAllowed] out NSError error);
@@ -1077,6 +1100,9 @@ interface IMLBatchProvider { }
[Protocol]
interface MLBatchProvider {
+ /// The number of objects in the current batch.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("count")]
nint Count { get; }
diff --git a/src/corenfc.cs b/src/corenfc.cs
index ebb4d2ea4382..35f617b3444c 100644
--- a/src/corenfc.cs
+++ b/src/corenfc.cs
@@ -216,22 +216,39 @@ interface INFCIso15693Tag { }
[Protocol (Name = "NFCISO15693Tag")]
interface NFCIso15693Tag : NFCTag, NFCNdefTag {
+ /// Gets the identifier of the tag, as .
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("identifier", ArgumentSemantic.Copy)]
NSData Identifier { get; }
+ /// Manufacturer, as defined in ISO-7816-6.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("icManufacturerCode")]
nuint IcManufacturerCode { get; }
+ /// Gets the serial number of the tag, as .
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("icSerialNumber", ArgumentSemantic.Copy)]
NSData IcSerialNumber { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("sendCustomCommandWithConfiguration:completionHandler:")]
void SendCustomCommand (NFCIso15693CustomCommandConfiguration commandConfiguration, Action completionHandler);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("readMultipleBlocksWithConfiguration:completionHandler:")]
void ReadMultipleBlocks (NFCIso15693ReadMultipleBlocksConfiguration readConfiguration, Action completionHandler);
@@ -692,18 +709,28 @@ interface INFCReaderSessionContract { }
[Protocol (Name = "NFCReaderSession")]
interface NFCReaderSessionContract {
+ /// Gets whether the session is ready to detect and read NFC tags.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("ready")]
bool Ready { [Bind ("isReady")] get; }
+ /// Gets or sets a user-meaningful message describing the application's use of NFC.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("alertMessage")]
string AlertMessage { get; set; }
+ /// Starts a session for detecting and reading NFC tags.
+ /// To be added.
[Abstract]
[Export ("beginSession")]
void BeginSession ();
+ /// Closes an NFC session. Once invalidated, a session cannot be reused.
+ /// To be added.
[Abstract]
[Export ("invalidateSession")]
void InvalidateSession ();
@@ -760,14 +787,23 @@ interface INFCTag { }
[Protocol]
interface NFCTag : NSSecureCoding, NSCopying {
+ /// Gets the kind of NFC tag.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("type", ArgumentSemantic.Assign)]
NFCTagType Type { get; }
+ /// Gets the that provided the tag.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("session", ArgumentSemantic.Weak)]
NFCReaderSession Session { get; }
+ /// Gets whether the tag is available for reading.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("available")]
bool Available { [Bind ("isAvailable")] get; }
@@ -845,6 +881,9 @@ interface NFCTagCommandConfiguration : NSCopying {
[BaseType (typeof (NSUserActivity))]
interface NSUserActivity_CoreNFC {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("ndefMessagePayload")]
NFCNdefMessage GetNdefMessagePayload ();
}
diff --git a/src/corespotlight.cs b/src/corespotlight.cs
index 750a9c48f96d..6b3a7823f015 100644
--- a/src/corespotlight.cs
+++ b/src/corespotlight.cs
@@ -238,12 +238,24 @@ interface CSSearchableIndex {
[BaseType (typeof (CSSearchableIndex))]
interface CSSearchableIndex_CSOptionalBatchingExtension {
+ /// Begins an index update batch.
+ /// To be added.
[Export ("beginIndexBatch")]
void BeginIndexBatch ();
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// Ends an index update batch, relying on the 250 bytes of information for crash recovery, and calls when finished.
+ /// To be added.
[Export ("endIndexBatchWithClientState:completionHandler:")]
void EndIndexBatch (NSData clientState, [NullAllowed] Action completionHandler);
+ /// To be added.
+ /// Fetches the client state and runs when finished..
+ /// To be added.
[Export ("fetchLastClientStateWithCompletionHandler:")]
void FetchLastClientState (CSSearchableIndexFetchHandler completionHandler);
diff --git a/src/coretelephony.cs b/src/coretelephony.cs
index 51a8281374ff..0d679e560645 100644
--- a/src/coretelephony.cs
+++ b/src/coretelephony.cs
@@ -317,6 +317,9 @@ interface ICTSubscriberDelegate { }
[NoMacCatalyst]
[Protocol]
interface CTSubscriberDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("subscriberTokenRefreshed:")]
void SubscriberTokenRefreshed (CTSubscriber subscriber);
diff --git a/src/fileprovider.cs b/src/fileprovider.cs
index 5bd313c5feb1..0321c235e802 100644
--- a/src/fileprovider.cs
+++ b/src/fileprovider.cs
@@ -459,14 +459,23 @@ interface INSFileProviderEnumerationObserver { }
[Protocol]
interface NSFileProviderEnumerationObserver {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("didEnumerateItems:")]
void DidEnumerateItems (INSFileProviderItem [] updatedItems);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("finishEnumeratingUpToPage:")]
void FinishEnumerating ([NullAllowed] NSData upToPage);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("finishEnumeratingWithError:")]
void FinishEnumerating (NSError error);
@@ -483,18 +492,31 @@ interface INSFileProviderChangeObserver { }
[Protocol]
interface NSFileProviderChangeObserver {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("didUpdateItems:")]
void DidUpdateItems (INSFileProviderItem [] updatedItems);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("didDeleteItemsWithIdentifiers:")]
void DidDeleteItems (string [] deletedItemIdentifiers);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("finishEnumeratingChangesUpToSyncAnchor:moreComing:")]
void FinishEnumeratingChanges (NSData anchor, bool moreComing);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("finishEnumeratingWithError:")]
void FinishEnumerating (NSError error);
@@ -511,10 +533,16 @@ interface INSFileProviderEnumerator { }
[Protocol]
interface NSFileProviderEnumerator {
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("invalidate")]
void Invalidate ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("enumerateItemsForObserver:startingAtPage:")]
void EnumerateItems (INSFileProviderEnumerationObserver observer, NSData startPage);
@@ -540,14 +568,23 @@ interface INSFileProviderItem { }
[Protocol]
interface NSFileProviderItem {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("itemIdentifier")]
string Identifier { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("parentItemIdentifier")]
string ParentIdentifier { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("filename")]
string Filename { get; }
@@ -556,6 +593,9 @@ interface NSFileProviderItem {
// became optional when deprecated
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 14, 0, message: "Use 'GetContentType' instead.")]
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use 'GetContentType' instead.")]
[Deprecated (PlatformName.MacCatalyst, 14, 0, message: "Use 'GetContentType' instead.")]
@@ -614,12 +654,18 @@ interface NSFileProviderItem {
[Export ("tagData", ArgumentSemantic.Copy)]
NSData GetTagData ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoMac]
[return: NullAllowed]
[Export ("favoriteRank", ArgumentSemantic.Copy)]
NSNumber GetFavoriteRank ();
#if NET // Not available in mac
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoMac]
#elif MONOMAC
[Obsolete ("'IsTrashed' is not available in macOS and will be removed in the future.")]
@@ -697,6 +743,9 @@ interface NSFileProviderItem {
[Export ("mostRecentEditorNameComponents")]
NSPersonNameComponents GetMostRecentEditorNameComponents ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoMac]
[return: NullAllowed]
[Export ("versionIdentifier")]
@@ -1034,10 +1083,17 @@ interface INSFileProviderServiceSource { }
[Protocol]
interface NSFileProviderServiceSource {
+ /// Gets the unique service name.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("serviceName")]
string ServiceName { get; }
+ /// On failure, contains the error that occurred.
+ /// Creates and returns an endpoint for communicating with the file provider extension.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("makeListenerEndpointAndReturnError:")]
[return: NullAllowed]
diff --git a/src/foundation.cs b/src/foundation.cs
index d08423b7a522..b04ee4b2b9c2 100644
--- a/src/foundation.cs
+++ b/src/foundation.cs
@@ -3147,6 +3147,12 @@ interface NSSecureCoding : NSCoding {
#endif
[Protocol]
interface NSCopying {
+ /// Developers should pass . Memory zones are no longer used.
+ /// Performs a copy of the underlying Objective-C object.
+ /// The newly-allocated object.
+ ///
+ /// This method performs a "shallow copy" of . If this object contains references to external objects, the new object will contain references to the same object.
+ ///
[Abstract]
[return: Release]
[Export ("copyWithZone:")]
@@ -3159,6 +3165,10 @@ interface NSCopying {
#endif
[Protocol]
interface NSMutableCopying : NSCopying {
+ /// Zone to use to allocate this object, or null to use the default zone.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("mutableCopyWithZone:")]
[return: Release ()]
@@ -6861,6 +6871,10 @@ interface NSSortDescriptor : NSSecureCoding, NSCopying {
[Category, BaseType (typeof (NSOrderedSet))]
partial interface NSKeyValueSorting_NSOrderedSet {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sortedArrayUsingDescriptors:")]
NSObject [] GetSortedArray (NSSortDescriptor [] sortDescriptors);
}
@@ -6869,12 +6883,18 @@ partial interface NSKeyValueSorting_NSOrderedSet {
[Category, BaseType (typeof (NSMutableArray))]
#pragma warning restore 618
partial interface NSSortDescriptorSorting_NSMutableArray {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sortUsingDescriptors:")]
void SortUsingDescriptors (NSSortDescriptor [] sortDescriptors);
}
[Category, BaseType (typeof (NSMutableOrderedSet))]
partial interface NSKeyValueSorting_NSMutableOrderedSet {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("sortUsingDescriptors:")]
void SortUsingDescriptors (NSSortDescriptor [] sortDescriptors);
}
@@ -8924,14 +8944,29 @@ partial interface NSUrl : NSSecureCoding, NSCopying
//
[Category, BaseType (typeof (NSUrl))]
partial interface NSUrl_PromisedItems {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("checkPromisedItemIsReachableAndReturnError:")]
bool CheckPromisedItemIsReachable (out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("getPromisedItemResourceValue:forKey:error:")]
bool GetPromisedItemResourceValue (out NSObject value, NSString key, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("promisedItemResourceValuesForKeys:error:")]
[return: NullAllowed]
@@ -9487,6 +9522,10 @@ interface NSUrlConnectionDownloadDelegate {
[Export ("connectionDidResumeDownloading:totalBytesWritten:expectedTotalBytes:")]
void ResumedDownloading (NSUrlConnection connection, long totalBytesWritten, long expectedTotalBytes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("connectionDidFinishDownloading:destinationURL:")]
void FinishedDownloading (NSUrlConnection connection, NSUrl destinationUrl);
@@ -10594,6 +10633,11 @@ partial interface NSUrlSessionDataDelegate {
[Protocol]
partial interface NSUrlSessionDownloadDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLSession:downloadTask:didFinishDownloadingToURL:")]
void DidFinishDownloading (NSUrlSession session, NSUrlSessionDownloadTask downloadTask, NSUrl location);
@@ -11897,15 +11941,30 @@ interface NSMutableString : NSCoding {
[Category, BaseType (typeof (NSString))]
partial interface NSUrlUtilities_NSString {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("stringByAddingPercentEncodingWithAllowedCharacters:")]
NSString CreateStringByAddingPercentEncoding (NSCharacterSet allowedCharacters);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("stringByRemovingPercentEncoding")]
NSString CreateStringByRemovingPercentEncoding ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("stringByAddingPercentEscapesUsingEncoding:")]
NSString CreateStringByAddingPercentEscapes (NSStringEncoding enc);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("stringByReplacingPercentEscapesUsingEncoding:")]
NSString CreateStringByReplacingPercentEscapes (NSStringEncoding enc);
}
@@ -12007,6 +12066,14 @@ interface NSInputStream {
[BaseType (typeof (NSString))]
interface NSLinguisticAnalysis {
#if NET
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[return: BindAs (typeof (NSLinguisticTag []))]
#else
[return: BindAs (typeof (NSLinguisticTagUnit []))]
@@ -12015,6 +12082,14 @@ interface NSLinguisticAnalysis {
[Export ("linguisticTagsInRange:scheme:options:orthography:tokenRanges:")]
NSString [] GetLinguisticTags (NSRange range, NSString scheme, NSLinguisticTaggerOptions options, [NullAllowed] NSOrthography orthography, [NullAllowed] out NSValue [] tokenRanges);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("GetLinguisticTags (This, range, scheme.GetConstant ()!, options, orthography, out tokenRanges)")]
#if NET
NSLinguisticTag [] GetLinguisticTags (NSRange range, NSLinguisticTagScheme scheme, NSLinguisticTaggerOptions options, [NullAllowed] NSOrthography orthography, [NullAllowed] out NSValue [] tokenRanges);
@@ -12022,10 +12097,24 @@ interface NSLinguisticAnalysis {
NSLinguisticTagUnit [] GetLinguisticTags (NSRange range, NSLinguisticTagScheme scheme, NSLinguisticTaggerOptions options, [NullAllowed] NSOrthography orthography, [NullAllowed] out NSValue [] tokenRanges);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("enumerateLinguisticTagsInRange:scheme:options:orthography:usingBlock:")]
void EnumerateLinguisticTags (NSRange range, NSString scheme, NSLinguisticTaggerOptions options, [NullAllowed] NSOrthography orthography, NSEnumerateLinguisticTagsEnumerator handler);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("EnumerateLinguisticTags (This, range, scheme.GetConstant ()!, options, orthography, handler)")]
void EnumerateLinguisticTags (NSRange range, NSLinguisticTagScheme scheme, NSLinguisticTaggerOptions options, [NullAllowed] NSOrthography orthography, NSEnumerateLinguisticTagsEnumerator handler);
}
@@ -12408,6 +12497,9 @@ interface NSBindingSelectionMarker : NSCopying {
[Protocol (Name = "NSObject")] // exists both as a type and a protocol in ObjC, Swift uses NSObjectProtocol
interface NSObjectProtocol {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("description")]
string Description { get; }
@@ -12415,6 +12507,9 @@ interface NSObjectProtocol {
[Export ("debugDescription")]
string DebugDescription { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("superclass")]
@@ -12422,49 +12517,88 @@ interface NSObjectProtocol {
// defined multiple times (method, property and even static), one (not static) is required
// and that match Apple's documentation
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("hash")]
nuint GetNativeHash ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("isEqual:")]
bool IsEqual ([NullAllowed] NSObject anObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("class")]
Class Class { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Never)]
[Export ("self")]
[Transient]
NSObject Self { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("performSelector:")]
NSObject PerformSelector (Selector aSelector);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("performSelector:withObject:")]
NSObject PerformSelector (Selector aSelector, [NullAllowed] NSObject anObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("performSelector:withObject:withObject:")]
NSObject PerformSelector (Selector aSelector, [NullAllowed] NSObject object1, [NullAllowed] NSObject object2);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("isProxy")]
bool IsProxy { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("isKindOfClass:")]
bool IsKindOfClass ([NullAllowed] Class aClass);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("isMemberOfClass:")]
@@ -12475,30 +12609,48 @@ interface NSObjectProtocol {
[Export ("conformsToProtocol:")]
bool ConformsToProtocol ([NullAllowed] NativeHandle /* Protocol */ aProtocol);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("respondsToSelector:")]
bool RespondsToSelector ([NullAllowed] Selector sel);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("retain")]
NSObject DangerousRetain ();
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("release")]
void DangerousRelease ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("autorelease")]
NSObject DangerousAutorelease ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("retainCount")]
nuint RetainCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[EditorBrowsable (EditorBrowsableState.Advanced)]
[Export ("zone")]
@@ -14191,6 +14343,13 @@ interface NSItemProviderWriting {
// 'GetItemProviderVisibility' is a nicer name, but there's a static method with that name.
NSItemProviderRepresentationVisibility GetItemProviderVisibilityForTypeIdentifier (string typeIdentifier);
+ /// A Universal Type Identifier (UTI) indicating the type of data to load.
+ /// The method called after the data is loaded.
+ /// Implement this method to customize the loading of data by an .
+ /// An T:Monotouch.Foundation.NSProgress object reflecting the data-loading operation.
+ ///
+ /// The must be in the set of values returned by .
+ ///
[Abstract]
[Async, Export ("loadDataWithTypeIdentifier:forItemProviderCompletionHandler:")]
[return: NullAllowed]
@@ -15911,6 +16070,9 @@ interface INSPortDelegate { }
[Model, BaseType (typeof (NSObject))]
[Protocol]
interface NSPortDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoMacCatalyst]
[Export ("handlePortMessage:")]
void MessageReceived (NSPortMessage message);
@@ -16178,9 +16340,15 @@ interface NSProcessInfo {
[Category]
[BaseType (typeof (NSProcessInfo))]
interface NSProcessInfo_NSUserInformation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("userName")]
string GetUserName ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("fullUserName")]
string GetFullUserName ();
}
@@ -16535,18 +16703,30 @@ interface NSPurgeableData : NSSecureCoding, NSMutableCopying, NSDiscardableConte
[Protocol]
interface NSDiscardableContent {
+ /// Requests access to the content, and returns if the contents are available and were successfully accessed. (Otherwise, returns .)
+ ///
+ /// if the contents can be retrieved.
+ /// To be added.
[Abstract]
[Export ("beginContentAccess")]
bool BeginContentAccess ();
+ /// Indicates that access to the content is no longer needed.
+ /// To be added.
[Abstract]
[Export ("endContentAccess")]
void EndContentAccess ();
+ /// Discards the content if it is not being accessed.
+ /// To be added.
[Abstract]
[Export ("discardContentIfPossible")]
void DiscardContentIfPossible ();
+ /// Gets a Boolean value that tells whether the content has been discarded.
+ ///
+ /// if the content has been discarded.
+ /// To be added.
[Abstract]
[Export ("isContentDiscarded")]
bool IsContentDiscarded { get; }
@@ -17295,16 +17475,26 @@ interface NSFileManagerDelegate {
[BaseType (typeof (NSFileManager))]
interface NSFileManager_NSUserInformation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV]
[NoiOS]
[NoMacCatalyst]
[Export ("homeDirectoryForCurrentUser")]
NSUrl GetHomeDirectoryForCurrentUser ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("temporaryDirectory")]
NSUrl GetTemporaryDirectory ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV]
[NoiOS]
[NoMacCatalyst]
@@ -17729,18 +17919,29 @@ interface NSPredicate : NSSecureCoding, NSCopying {
[Category, BaseType (typeof (NSOrderedSet))]
partial interface NSPredicateSupport_NSOrderedSet {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("filteredOrderedSetUsingPredicate:")]
NSOrderedSet FilterUsingPredicate (NSPredicate p);
}
[Category, BaseType (typeof (NSMutableOrderedSet))]
partial interface NSPredicateSupport_NSMutableOrderedSet {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("filterUsingPredicate:")]
void FilterUsingPredicate (NSPredicate p);
}
[Category, BaseType (typeof (NSArray))]
partial interface NSPredicateSupport_NSArray {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("filteredArrayUsingPredicate:")]
NSArray FilterUsingPredicate (NSArray array);
}
@@ -17749,18 +17950,34 @@ partial interface NSPredicateSupport_NSArray {
[Category, BaseType (typeof (NSMutableArray))]
#pragma warning restore 618
partial interface NSPredicateSupport_NSMutableArray {
+ /// The predicate used to filter the
+ /// elements of the array.
+ /// Filters the element of the array in place, by keeping
+ /// only the elements that match.
+ ///
+ ///
[Export ("filterUsingPredicate:")]
void FilterUsingPredicate (NSPredicate predicate);
}
[Category, BaseType (typeof (NSSet))]
partial interface NSPredicateSupport_NSSet {
+ /// The predicate used to filter the
+ /// elements of the set.
+ /// Returns a new set that contains the elements that
+ /// match the predicate.
+ /// A new immutable set.
+ ///
+ ///
[Export ("filteredSetUsingPredicate:")]
NSSet FilterUsingPredicate (NSPredicate predicate);
}
[Category, BaseType (typeof (NSMutableSet))]
partial interface NSPredicateSupport_NSMutableSet {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("filterUsingPredicate:")]
void FilterUsingPredicate (NSPredicate predicate);
}
@@ -17805,22 +18022,48 @@ interface NSUrlDownload {
[Model]
[Protocol (Name = "NSURLDownloadDelegate")]
interface NSUrlDownloadDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("downloadDidBegin:")]
void DownloadBegan (NSUrlDownload download);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:willSendRequest:redirectResponse:")]
NSUrlRequest WillSendRequest (NSUrlDownload download, NSUrlRequest request, NSUrlResponse redirectResponse);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:didReceiveAuthenticationChallenge:")]
void ReceivedAuthenticationChallenge (NSUrlDownload download, NSUrlAuthenticationChallenge challenge);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:didCancelAuthenticationChallenge:")]
void CanceledAuthenticationChallenge (NSUrlDownload download, NSUrlAuthenticationChallenge challenge);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:didReceiveResponse:")]
void ReceivedResponse (NSUrlDownload download, NSUrlResponse response);
//- (void)download:(NSUrlDownload *)download willResumeWithResponse:(NSUrlResponse *)response fromByte:(long long)startingByte;
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:willResumeWithResponse:fromByte:")]
void Resume (NSUrlDownload download, NSUrlResponse response, long startingByte);
@@ -17828,18 +18071,38 @@ interface NSUrlDownloadDelegate {
[Export ("download:didReceiveDataOfLength:")]
void ReceivedData (NSUrlDownload download, nuint length);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:shouldDecodeSourceDataOfMIMEType:")]
bool DecodeSourceData (NSUrlDownload download, string encodingType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:decideDestinationWithSuggestedFilename:")]
void DecideDestination (NSUrlDownload download, string suggestedFilename);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:didCreateDestination:")]
void CreatedDestination (NSUrlDownload download, string path);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("downloadDidFinish:")]
void Finished (NSUrlDownload download);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("download:didFailWithError:")]
void FailedWithError (NSUrlDownload download, NSError error);
}
@@ -17848,34 +18111,67 @@ interface NSUrlDownloadDelegate {
// only supposed to consume it. This is why there's no model for this protocol.
[Protocol (Name = "NSURLProtocolClient")]
interface NSUrlProtocolClient {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLProtocol:wasRedirectedToRequest:redirectResponse:")]
void Redirected (NSUrlProtocol protocol, NSUrlRequest redirectedToEequest, NSUrlResponse redirectResponse);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLProtocol:cachedResponseIsValid:")]
void CachedResponseIsValid (NSUrlProtocol protocol, NSCachedUrlResponse cachedResponse);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLProtocol:didReceiveResponse:cacheStoragePolicy:")]
void ReceivedResponse (NSUrlProtocol protocol, NSUrlResponse response, NSUrlCacheStoragePolicy policy);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLProtocol:didLoadData:")]
void DataLoaded (NSUrlProtocol protocol, NSData data);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLProtocolDidFinishLoading:")]
void FinishedLoading (NSUrlProtocol protocol);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLProtocol:didFailWithError:")]
void FailedWithError (NSUrlProtocol protocol, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLProtocol:didReceiveAuthenticationChallenge:")]
void ReceivedAuthenticationChallenge (NSUrlProtocol protocol, NSUrlAuthenticationChallenge challenge);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("URLProtocol:didCancelAuthenticationChallenge:")]
void CancelledAuthenticationChallenge (NSUrlProtocol protocol, NSUrlAuthenticationChallenge challenge);
@@ -17990,6 +18286,11 @@ interface INSExtensionRequestHandling { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface NSExtensionRequestHandling {
+ /// The T:Monotouch.Foundation.NSExtensionContext containing extension-relevant data.
+ /// Developers can implement this method to prepare their extension for the host application request.
+ ///
+ /// Developers who implement this method must call base.BeginRequestWithExtensionContext(context) within their implementation.
+ ///
[Abstract]
// @required - (void)beginRequestWithExtensionContext:(NSExtensionContext *)context;
[Export ("beginRequestWithExtensionContext:")]
@@ -17999,10 +18300,14 @@ interface NSExtensionRequestHandling {
[Protocol]
interface NSLocking {
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("lock")]
void Lock ();
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("unlock")]
void Unlock ();
@@ -18952,21 +19257,49 @@ interface INSConnectionDelegate { }
[Model]
[Protocol]
interface NSConnectionDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("authenticateComponents:withData:")]
bool AuthenticateComponents (NSArray components, NSData authenticationData);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("authenticationDataForComponents:")]
NSData GetAuthenticationData (NSArray components);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("connection:shouldMakeNewConnection:")]
bool ShouldMakeNewConnection (NSConnection parentConnection, NSConnection newConnection);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("connection:handleRequest:")]
bool HandleRequest (NSConnection connection, NSDistantObjectRequest request);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("createConversationForConnection:")]
NSObject CreateConversation (NSConnection connection);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeNewConnection:sender:")]
bool AllowNewConnection (NSConnection newConnection, NSConnection parentConnection);
}
@@ -19563,12 +19896,25 @@ interface INSUserNotificationCenterDelegate { }
[Protocol]
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Use 'UserNotifications.*' API instead.")]
interface NSUserNotificationCenterDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("userNotificationCenter:didDeliverNotification:"), EventArgs ("UNCDidDeliverNotification")]
void DidDeliverNotification (NSUserNotificationCenter center, NSUserNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("userNotificationCenter:didActivateNotification:"), EventArgs ("UNCDidActivateNotification")]
void DidActivateNotification (NSUserNotificationCenter center, NSUserNotification notification);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("userNotificationCenter:shouldPresentNotification:"), DelegateName ("UNCShouldPresentNotification"), DefaultValue (false)]
bool ShouldPresentNotification (NSUserNotificationCenter center, NSUserNotification notification);
}
diff --git a/src/gamekit.cs b/src/gamekit.cs
index 044d92d2d45a..6ed975de3519 100644
--- a/src/gamekit.cs
+++ b/src/gamekit.cs
@@ -85,10 +85,18 @@ interface IGKVoiceChatClient { }
[Model]
[Protocol]
interface GKVoiceChatClient {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("voiceChatService:sendData:toParticipantID:")]
void SendData (GKVoiceChatService voiceChatService, NSData data, string toParticipant);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("participantID")]
[Abstract]
string ParticipantID ();
@@ -847,6 +855,9 @@ interface IGKLeaderboardViewControllerDelegate { }
[Model]
[Protocol]
interface GKLeaderboardViewControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("leaderboardViewControllerDidFinish:")]
void DidFinish (GKLeaderboardViewController viewController);
@@ -1778,17 +1789,32 @@ interface IGKMatchmakerViewControllerDelegate { }
[Model]
[Protocol]
interface GKMatchmakerViewControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("matchmakerViewControllerWasCancelled:")]
void WasCancelled (GKMatchmakerViewController viewController);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("matchmakerViewController:didFailWithError:"), EventArgs ("GKError")]
void DidFailWithError (GKMatchmakerViewController viewController, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("matchmakerViewController:didFindMatch:"), EventArgs ("GKMatch")]
void DidFindMatch (GKMatchmakerViewController viewController, GKMatch match);
+ /// To be added.
+ /// To be added.
+ /// Developers should not use this deprecated method. Developers should use 'DidFindHostedPlayers' instead.
+ /// To be added.
[NoTV]
[Deprecated (PlatformName.iOS, 8, 0, message: "Use 'DidFindHostedPlayers' instead.")]
[Deprecated (PlatformName.MacOSX, 10, 10, message: "Use 'DidFindHostedPlayers' instead.")]
@@ -1797,6 +1823,10 @@ interface GKMatchmakerViewControllerDelegate {
[Export ("matchmakerViewController:didFindPlayers:"), EventArgs ("GKPlayers")]
void DidFindPlayers (GKMatchmakerViewController viewController, string [] playerIDs);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("matchmakerViewController:didFindHostedPlayers:"), EventArgs ("GKMatchmakingPlayers")]
void DidFindHostedPlayers (GKMatchmakerViewController viewController, GKPlayer [] playerIDs);
@@ -2114,6 +2144,9 @@ interface IGKAchievementViewControllerDelegate { }
[Model]
[Protocol]
interface GKAchievementViewControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("achievementViewControllerDidFinish:")]
void DidFinish (GKAchievementViewController viewController);
@@ -2249,6 +2282,9 @@ interface IGKFriendRequestComposeViewControllerDelegate { }
[Model]
[Protocol]
interface GKFriendRequestComposeViewControllerDelegate {
+ /// To be added.
+ /// Developers should not use this deprecated method.
+ /// To be added.
[Abstract]
[Export ("friendRequestComposeViewControllerDidFinish:")]
void DidFinish (GKFriendRequestComposeViewController viewController);
@@ -2337,6 +2373,9 @@ interface IGKTurnBasedEventHandlerDelegate { }
[MacCatalyst (13, 1)]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GKLocalPlayer.RegisterListener' with an object that implements 'IGKTurnBasedEventListener'.")]
interface GKTurnBasedEventHandlerDelegate {
+ /// To be added.
+ /// Developers should not use this deprecated method.
+ /// To be added.
[Abstract]
[Export ("handleInviteFromGameCenter:")]
[Deprecated (PlatformName.iOS, 7, 0)]
@@ -2362,6 +2401,10 @@ interface GKTurnBasedEventHandlerDelegate {
[Export ("handleMatchEnded:")]
void HandleMatchEnded (GKTurnBasedMatch match);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("handleTurnEventForMatch:didBecomeActive:")]
[Deprecated (PlatformName.iOS, 6, 0)]
@@ -2733,17 +2776,28 @@ interface IGKTurnBasedMatchmakerViewControllerDelegate { }
[Protocol]
interface GKTurnBasedMatchmakerViewControllerDelegate {
#if !XAMCORE_5_0
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
#endif
[Export ("turnBasedMatchmakerViewControllerWasCancelled:")]
void WasCancelled (GKTurnBasedMatchmakerViewController viewController);
#if !XAMCORE_5_0
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
#endif
[Export ("turnBasedMatchmakerViewController:didFailWithError:")]
void FailedWithError (GKTurnBasedMatchmakerViewController viewController, NSError error);
+ /// To be added.
+ /// To be added.
+ /// Developers should not use this deprecated method. Developers should use 'GKTurnBasedEventListener.ReceivedTurnEvent' instead.
+ /// To be added.
[NoTV]
[Deprecated (PlatformName.iOS, 9, 0, message: "Use 'GKTurnBasedEventListener.ReceivedTurnEvent' instead.")]
[Deprecated (PlatformName.MacOSX, 10, 11, message: "Use 'GKTurnBasedEventListener.ReceivedTurnEvent' instead.")]
@@ -2752,6 +2806,10 @@ interface GKTurnBasedMatchmakerViewControllerDelegate {
[Export ("turnBasedMatchmakerViewController:didFindMatch:")]
void FoundMatch (GKTurnBasedMatchmakerViewController viewController, GKTurnBasedMatch match);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV]
[Deprecated (PlatformName.iOS, 9, 0, message: "Use 'GKTurnBasedEventListener.WantsToQuitMatch' instead.")]
[Deprecated (PlatformName.MacOSX, 10, 11, message: "Use 'GKTurnBasedEventListener.WantsToQuitMatch' instead.")]
@@ -2949,6 +3007,9 @@ interface IGKGameCenterControllerDelegate { }
[BaseType (typeof (NSObject))]
[Protocol]
interface GKGameCenterControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("gameCenterViewControllerDidFinish:")]
void Finished (GKGameCenterViewController controller);
@@ -3556,6 +3617,9 @@ interface IGKChallengesViewControllerDelegate { }
[Protocol, Model]
interface GKChallengesViewControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("challengesViewControllerDidFinish:")]
void DidFinish (GKChallengesViewController viewController);
diff --git a/src/gameplaykit.cs b/src/gameplaykit.cs
index 3fd7a4a3a9ca..f583b5cf8366 100644
--- a/src/gameplaykit.cs
+++ b/src/gameplaykit.cs
@@ -475,6 +475,7 @@ interface IGKGameModelUpdate { }
[Protocol]
interface GKGameModelUpdate {
+ ///
[Abstract]
[Export ("value", ArgumentSemantic.Assign)]
nint Value { get; set; }
@@ -518,6 +519,9 @@ interface GKGameModel : NSCopying {
// This was a property but changed it to Get semantic due to
// there are no Extension properties
+ /// The objects involved in the game.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("players")]
[return: NullAllowed]
@@ -525,20 +529,37 @@ interface GKGameModel : NSCopying {
// This was a property but changed it to Get semantic due to
// there are no Extension properties
+ /// The current .
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("activePlayer")]
[return: NullAllowed]
IGKGameModelPlayer GetActivePlayer ();
+ /// To be added.
+ /// Sets the internal state of the game to .
+ ///
+ /// This method is called many times during the evaluation of , as that method attempts to minimize the number of objects allocated and instead uses this method to "reuse" previously-allocated memory.
+ ///
[Abstract]
[Export ("setGameModel:")]
void SetGameModel (IGKGameModel gameModel);
+ /// To be added.
+ /// The set of legal moves available to the player who's value is the same as that of .
+ /// To be added.
+ ///
+ /// The may allocate many objects with identical values. When comparing instances, developers should rely on values, not reference equality.
+ ///
[Abstract]
[Export ("gameModelUpdatesForPlayer:")]
[return: NullAllowed]
IGKGameModelUpdate [] GetGameModelUpdates (IGKGameModelPlayer player);
+ /// An object that describes a valid move from the current state of this.
+ /// Modifies the internal state of this according to the move described in .
+ /// To be added.
[Abstract]
[Export ("applyGameModelUpdate:")]
void ApplyGameModelUpdate (IGKGameModelUpdate gameModelUpdate);
@@ -1255,6 +1276,9 @@ interface IGKRandom { }
[Protocol]
interface GKRandom {
+ /// Returns an integer within the bounds of the generator.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("nextInt")]
nint GetNextInt ();
@@ -1263,10 +1287,16 @@ interface GKRandom {
[Export ("nextIntWithUpperBound:")]
nuint GetNextInt (nuint upperBound);
+ /// Returns a random floating-point value.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("nextUniform")]
float GetNextUniform ();
+ /// Retrieves a or value.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("nextBool")]
bool GetNextBool ();
@@ -1533,14 +1563,23 @@ interface GKStateMachine {
[MacCatalyst (13, 1)]
[Protocol]
interface GKStrategist {
+ /// Gets or sets the current game state.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("gameModel", ArgumentSemantic.Retain)]
IGKGameModel GameModel { get; set; }
+ /// Gets or sets the source of randomness for the strategist.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("randomSource", ArgumentSemantic.Retain)]
IGKRandom RandomSource { get; set; }
+ /// Returns what the strategist indicates is the best move for the active player.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("bestMoveForActivePlayer")]
IGKGameModelUpdate GetBestMoveForActivePlayer ();
@@ -2066,10 +2105,16 @@ interface SKNode_GameplayKit {
//[Export ("obstaclesFromNodePhysicsBodies:")]
//GKPolygonObstacle [] ObstaclesFromNodePhysicsBodies (SKNode [] nodes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[return: NullAllowed]
[Export ("entity")]
GKEntity GetEntity ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setEntity:")]
void SetEntity ([NullAllowed] GKEntity entity);
}
@@ -2078,10 +2123,16 @@ interface SKNode_GameplayKit {
[Category]
[BaseType (typeof (SCNNode))]
interface SCNNode_GameplayKit {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[return: NullAllowed]
[Export ("entity")]
GKEntity GetEntity ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setEntity:")]
void SetEntity ([NullAllowed] GKEntity entity);
}
diff --git a/src/glkit.cs b/src/glkit.cs
index 0bf81d2a7932..d4aaff313b0a 100644
--- a/src/glkit.cs
+++ b/src/glkit.cs
@@ -1187,6 +1187,10 @@ interface IGLKViewDelegate { }
[Model]
[Protocol]
interface GLKViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("glkView:drawInRect:"), EventArgs ("GLKViewDraw")]
void DrawInRect (GLKView view, CGRect rect);
@@ -1310,6 +1314,9 @@ interface IGLKViewControllerDelegate { }
[Model]
[Protocol]
interface GLKViewControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("glkViewControllerUpdate:")]
void Update (GLKViewController controller);
diff --git a/src/homekit.cs b/src/homekit.cs
index 7ea4e0097ff1..f805f4f68010 100644
--- a/src/homekit.cs
+++ b/src/homekit.cs
@@ -391,9 +391,17 @@ interface IHMAccessoryBrowserDelegate { }
[BaseType (typeof (NSObject))]
partial interface HMAccessoryBrowserDelegate {
+ /// To be added.
+ /// To be added.
+ /// The found .
+ /// To be added.
[Export ("accessoryBrowser:didFindNewAccessory:"), EventArgs ("HMAccessoryBrowser")]
void DidFindNewAccessory (HMAccessoryBrowser browser, HMAccessory accessory);
+ /// To be added.
+ /// To be added.
+ /// The removed .
+ /// To be added.
[Export ("accessoryBrowser:didRemoveNewAccessory:"), EventArgs ("HMAccessoryBrowser")]
void DidRemoveNewAccessory (HMAccessoryBrowser browser, HMAccessory accessory);
}
diff --git a/src/identitylookup.cs b/src/identitylookup.cs
index 4e3fccba1da6..3bc47a1a3b63 100644
--- a/src/identitylookup.cs
+++ b/src/identitylookup.cs
@@ -124,6 +124,11 @@ interface IILMessageFilterQueryHandling { }
[Protocol]
interface ILMessageFilterQueryHandling {
+ /// The query for the message.
+ /// The app extension context for deferring requests.
+ /// A handler that is run after the operation completes.
+ /// Evaluates the specified request in the provided context, and runs a handler when the operation is complete.
+ /// To be added.
[Abstract]
[Export ("handleQueryRequest:context:completion:")]
void HandleQueryRequest (ILMessageFilterQueryRequest queryRequest, ILMessageFilterExtensionContext context, Action completion);
diff --git a/src/intents.cs b/src/intents.cs
index 6c3d8103dcdb..dc660c0d6f10 100644
--- a/src/intents.cs
+++ b/src/intents.cs
@@ -3415,6 +3415,10 @@ interface INBookRestaurantReservationIntent : NSCopying {
[Protocol]
interface INBookRestaurantReservationIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleBookRestaurantReservation:completion:")]
void HandleBookRestaurantReservation (INBookRestaurantReservationIntent intent, Action completion);
@@ -3601,6 +3605,10 @@ interface INCancelWorkoutIntent {
[Protocol]
interface INCancelWorkoutIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleCancelWorkout:completion:")]
void HandleCancelWorkout (INCancelWorkoutIntent intent, Action completion);
@@ -4279,6 +4287,10 @@ interface INEndWorkoutIntent {
[Protocol]
interface INEndWorkoutIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleEndWorkout:completion:")]
void HandleEndWorkout (INEndWorkoutIntent intent, Action completion);
@@ -4318,6 +4330,10 @@ interface INEndWorkoutIntentResponse {
[Protocol]
interface INIntentHandlerProviding {
+ /// The received by the system.
+ /// Developers override this method to return the handler object if is one their extension can respond to.
+ /// The developer's handler object or if is not handled by the extension.
+ /// To be added.
[Abstract]
[Export ("handlerForIntent:")]
[return: NullAllowed]
@@ -4353,6 +4369,10 @@ interface INGetAvailableRestaurantReservationBookingDefaultsIntent {
[Protocol]
interface INGetAvailableRestaurantReservationBookingDefaultsIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleGetAvailableRestaurantReservationBookingDefaults:completion:")]
void HandleAvailableRestaurantReservationBookingDefaults (INGetAvailableRestaurantReservationBookingDefaultsIntent intent, Action completion);
@@ -4439,6 +4459,10 @@ interface INGetAvailableRestaurantReservationBookingsIntent : NSCopying {
[Protocol]
interface INGetAvailableRestaurantReservationBookingsIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleGetAvailableRestaurantReservationBookings:completion:")]
void HandleAvailableRestaurantReservationBookings (INGetAvailableRestaurantReservationBookingsIntent intent, Action completion);
@@ -4514,6 +4538,10 @@ interface INGetRestaurantGuestIntent {
[Protocol]
interface INGetRestaurantGuestIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleGetRestaurantGuest:completion:")]
void HandleRestaurantGuest (INGetRestaurantGuestIntent intent, Action completion);
@@ -4567,14 +4595,25 @@ interface INGetRideStatusIntent {
[Protocol]
interface INGetRideStatusIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleGetRideStatus:completion:")]
void HandleRideStatus (INGetRideStatusIntent intent, Action completion);
+ /// To be added.
+ /// To be added.
+ /// Developers may call this method to begin sending updates about the ride status.
+ /// To be added.
[Abstract]
[Export ("startSendingUpdatesForGetRideStatus:toObserver:")]
void StartSendingUpdates (INGetRideStatusIntent intent, IINGetRideStatusIntentResponseObserver observer);
+ /// To be added.
+ /// Developers may call this method to end the sending of updates about the ride status.
+ /// To be added.
[Abstract]
[Export ("stopSendingUpdatesForGetRideStatus:")]
void StopSendingUpdates (INGetRideStatusIntent intent);
@@ -4592,6 +4631,9 @@ interface IINGetRideStatusIntentResponseObserver { }
[Protocol]
interface INGetRideStatusIntentResponseObserver {
+ /// To be added.
+ /// Developers may override this method to respond to changes in the ride's status.
+ /// To be added.
[Abstract]
[Export ("getRideStatusResponseDidUpdate:")]
void DidUpdateRideStatus (INGetRideStatusIntentResponse response);
@@ -4655,6 +4697,10 @@ interface INGetUserCurrentRestaurantReservationBookingsIntent : NSCopying {
[Protocol]
interface INGetUserCurrentRestaurantReservationBookingsIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleGetUserCurrentRestaurantReservationBookings:completion:")]
void HandleUserCurrentRestaurantReservationBookings (INGetUserCurrentRestaurantReservationBookingsIntent intent, Action completion);
@@ -5023,6 +5069,10 @@ interface INListRideOptionsIntent {
[Protocol]
interface INListRideOptionsIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleListRideOptions:completion:")]
void HandleListRideOptions (INListRideOptionsIntent intent, Action completion);
@@ -5350,6 +5400,10 @@ interface INPauseWorkoutIntent {
[Protocol]
interface INPauseWorkoutIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handlePauseWorkout:completion:")]
void HandlePauseWorkout (INPauseWorkoutIntent intent, Action completion);
@@ -5954,6 +6008,10 @@ interface INRequestPaymentIntent {
[Protocol]
interface INRequestPaymentIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleRequestPayment:completion:")]
void HandleRequestPayment (INRequestPaymentIntent intent, Action completion);
@@ -6070,6 +6128,10 @@ interface INRequestRideIntent {
[Protocol]
interface INRequestRideIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleRequestRide:completion:")]
void HandleRequestRide (INRequestRideIntent intent, Action completion);
@@ -6456,6 +6518,10 @@ interface INResumeWorkoutIntent {
[Protocol]
interface INResumeWorkoutIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleResumeWorkout:completion:")]
void HandleResumeWorkout (INResumeWorkoutIntent intent, Action completion);
@@ -6814,6 +6880,10 @@ interface INSaveProfileInCarIntent {
[Protocol]
interface INSaveProfileInCarIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSaveProfileInCar:completion:")]
void HandleSaveProfileInCar (INSaveProfileInCarIntent intent, Action completion);
@@ -6922,6 +6992,10 @@ interface INSearchCallHistoryIntent {
[Protocol]
interface INSearchCallHistoryIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSearchCallHistory:completion:")]
void HandleSearchCallHistory (INSearchCallHistoryIntent intent, Action completion);
@@ -7094,6 +7168,10 @@ interface INSearchForMessagesIntent {
[Protocol]
interface INSearchForMessagesIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSearchForMessages:completion:")]
void HandleSearchForMessages (INSearchForMessagesIntent intent, Action completion);
@@ -7221,6 +7299,10 @@ interface INSearchForPhotosIntent {
[Protocol]
interface INSearchForPhotosIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSearchForPhotos:completion:")]
void HandleSearchForPhotos (INSearchForPhotosIntent intent, Action completion);
@@ -7380,6 +7462,10 @@ interface INSendMessageIntentDonationMetadata {
[Protocol]
interface INSendMessageIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSendMessage:completion:")]
void HandleSendMessage (INSendMessageIntent intent, Action completion);
@@ -7497,6 +7583,10 @@ interface INSendPaymentIntent {
[Protocol]
interface INSendPaymentIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSendPayment:completion:")]
void HandleSendPayment (INSendPaymentIntent intent, Action completion);
@@ -7598,6 +7688,10 @@ interface INSetAudioSourceInCarIntent {
[Protocol]
interface INSetAudioSourceInCarIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetAudioSourceInCar:completion:")]
void HandleSetAudioSourceInCar (INSetAudioSourceInCarIntent intent, Action completion);
@@ -7715,6 +7809,10 @@ interface INSetClimateSettingsInCarIntent {
[Protocol]
interface INSetClimateSettingsInCarIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetClimateSettingsInCar:completion:")]
void HandleSetClimateSettingsInCar (INSetClimateSettingsInCarIntent intent, Action completion);
@@ -7871,6 +7969,10 @@ interface INSetDefrosterSettingsInCarIntent {
[Protocol]
interface INSetDefrosterSettingsInCarIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetDefrosterSettingsInCar:completion:")]
void HandleSetDefrosterSettingsInCar (INSetDefrosterSettingsInCarIntent intent, Action completion);
@@ -7948,6 +8050,10 @@ interface INSetMessageAttributeIntent {
[Protocol]
interface INSetMessageAttributeIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetMessageAttribute:completion:")]
void HandleSetMessageAttribute (INSetMessageAttributeIntent intent, Action completion);
@@ -8038,6 +8144,10 @@ interface INSetProfileInCarIntent {
[Protocol]
interface INSetProfileInCarIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetProfileInCar:completion:")]
void HandleSetProfileInCar (INSetProfileInCarIntent intent, Action completion);
@@ -8138,6 +8248,10 @@ interface INSetRadioStationIntent {
[Protocol]
interface INSetRadioStationIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetRadioStation:completion:")]
void HandleSetRadioStation (INSetRadioStationIntent intent, Action completion);
@@ -8259,6 +8373,10 @@ interface INSetSeatSettingsInCarIntent {
[Protocol]
interface INSetSeatSettingsInCarIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetSeatSettingsInCar:completion:")]
void HandleSetSeatSettingsInCar (INSetSeatSettingsInCarIntent intent, Action completion);
@@ -8391,10 +8509,16 @@ interface IINSpeakable { }
[Protocol]
interface INSpeakable {
+ /// Siri's interpretation of the utterance.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("spokenPhrase")]
string SpokenPhrase { get; }
+ /// Developers can use this to clarify how a name is pronounced.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("pronunciationHint")]
string PronunciationHint { get; }
@@ -8409,6 +8533,9 @@ interface INSpeakable {
[NullAllowed, Export ("alternativeSpeakableMatches")]
IINSpeakable [] AlternativeSpeakableMatches { get; }
+ /// The unique identifier of this pronunciation hint.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'VocabularyIdentifier' instead.")]
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'VocabularyIdentifier' instead.")]
[Deprecated (PlatformName.TvOS, 11, 0, message: "Use 'VocabularyIdentifier' instead.")]
@@ -8527,6 +8654,10 @@ interface INStartAudioCallIntent {
[Protocol]
interface INStartAudioCallIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleStartAudioCall:completion:")]
void HandleStartAudioCall (INStartAudioCallIntent intent, Action completion);
@@ -8622,6 +8753,10 @@ interface INStartPhotoPlaybackIntent {
[Protocol]
interface INStartPhotoPlaybackIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleStartPhotoPlayback:completion:")]
void HandleStartPhotoPlayback (INStartPhotoPlaybackIntent intent, Action completion);
@@ -8709,6 +8844,10 @@ interface INStartVideoCallIntent {
[Protocol]
interface INStartVideoCallIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleStartVideoCall:completion:")]
void HandleStartVideoCall (INStartVideoCallIntent intent, Action completion);
@@ -8782,6 +8921,10 @@ interface INStartWorkoutIntent {
[Protocol]
interface INStartWorkoutIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleStartWorkout:completion:")]
void HandleStartWorkout (INStartWorkoutIntent intent, Action completion);
@@ -9116,6 +9259,9 @@ interface INWorkoutLocationTypeResolutionResult {
[BaseType (typeof (NSUserActivity))]
interface NSUserActivity_IntentsAdditions {
+ /// Retrieves the associated with this.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[return: NullAllowed]
[Export ("interaction")]
@@ -9168,6 +9314,10 @@ interface INActivateCarSignalIntent {
[Protocol]
interface INActivateCarSignalIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleActivateCarSignal:completion:")]
void HandleActivateCarSignal (INActivateCarSignalIntent intent, Action completion);
@@ -9436,6 +9586,10 @@ interface INGetCarLockStatusIntent {
[Protocol]
interface INGetCarLockStatusIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleGetCarLockStatus:completion:")]
void HandleGetCarLockStatus (INGetCarLockStatusIntent intent, Action completion);
@@ -9494,6 +9648,10 @@ interface INGetCarPowerLevelStatusIntent {
[Protocol]
interface INGetCarPowerLevelStatusIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleGetCarPowerLevelStatus:completion:")]
void HandleGetCarPowerLevelStatus (INGetCarPowerLevelStatusIntent intent, Action completion);
@@ -10119,6 +10277,10 @@ interface INSetCarLockStatusIntent {
[Protocol]
interface INSetCarLockStatusIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetCarLockStatus:completion:")]
void HandleSetCarLockStatus (INSetCarLockStatusIntent intent, Action completion);
@@ -10267,6 +10429,10 @@ interface INAddTasksIntent {
[Protocol]
interface INAddTasksIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleAddTasks:completion:")]
void HandleAddTasks (INAddTasksIntent intent, Action completion);
@@ -10374,6 +10540,10 @@ interface INAppendToNoteIntent {
[Protocol]
interface INAppendToNoteIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleAppendToNote:completion:")]
void HandleAppendToNote (INAppendToNoteIntent intent, Action completion);
@@ -10695,6 +10865,10 @@ interface INCancelRideIntent {
[Protocol]
interface INCancelRideIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleCancelRide:completion:")]
void HandleCancelRide (INCancelRideIntent intent, Action completion);
@@ -10755,6 +10929,10 @@ interface INCreateNoteIntent {
[Protocol]
interface INCreateNoteIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleCreateNote:completion:")]
void HandleCreateNote (INCreateNoteIntent intent, Action completion);
@@ -10837,6 +11015,10 @@ interface INCreateTaskListIntent {
[Protocol]
interface INCreateTaskListIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleCreateTaskList:completion:")]
void HandleCreateTaskList (INCreateTaskListIntent intent, Action completion);
@@ -10962,6 +11144,10 @@ interface INGetVisualCodeIntent {
[Protocol]
interface INGetVisualCodeIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleGetVisualCode:completion:")]
void HandleGetVisualCode (INGetVisualCodeIntent intent, Action completion);
@@ -11519,6 +11705,10 @@ interface INSearchForAccountsIntent {
[Protocol]
interface INSearchForAccountsIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSearchForAccounts:completion:")]
void HandleSearchForAccounts (INSearchForAccountsIntent intent, Action completion);
@@ -11645,6 +11835,10 @@ interface INSearchForNotebookItemsIntent {
[Protocol]
interface INSearchForNotebookItemsIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSearchForNotebookItems:completion:")]
void HandleSearchForNotebookItems (INSearchForNotebookItemsIntent intent, Action completion);
@@ -11953,6 +12147,10 @@ interface INSendRideFeedbackIntent {
[Protocol]
interface INSendRideFeedbackIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSendRideFeedback:completion:")]
void HandleSendRideFeedback (INSendRideFeedbackIntent sendRideFeedbackintent, Action completion);
@@ -12026,6 +12224,10 @@ interface INSetTaskAttributeIntent {
[Protocol]
interface INSetTaskAttributeIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleSetTaskAttribute:completion:")]
void HandleSetTaskAttribute (INSetTaskAttributeIntent intent, Action completion);
@@ -12521,6 +12723,10 @@ interface INTransferMoneyIntent {
[Protocol]
interface INTransferMoneyIntentHandling {
+ /// Specifies the user's intention.
+ /// Completion method that must be called by the override.
+ /// Developers must override this method and invoke the T:System.Action`1 with an appropriate to the  .
+ /// To be added.
[Abstract]
[Export ("handleTransferMoney:completion:")]
void HandleTransferMoney (INTransferMoneyIntent intent, Action completion);
@@ -12823,6 +13029,10 @@ interface INPlayMediaIntent {
[Protocol]
interface INPlayMediaIntentHandling {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("handlePlayMedia:completion:")]
void HandlePlayMedia (INPlayMediaIntent intent, Action completion);
diff --git a/src/intentsui.cs b/src/intentsui.cs
index 568519a7c1bd..f853dda1a795 100644
--- a/src/intentsui.cs
+++ b/src/intentsui.cs
@@ -79,6 +79,11 @@ interface INUIHostedViewControlling {
#if !NET && !__MACCATALYST__ // Apple made this member optional in iOS 11
[Abstract]
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("configureWithInteraction:context:completion:")]
void Configure (INInteraction interaction, INUIHostedViewContext context, Action completion);
@@ -101,12 +106,21 @@ interface INUIHostedViewControlling {
[BaseType (typeof (NSExtensionContext))]
interface NSExtensionContext_INUIHostedViewControlling {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("hostedViewMinimumAllowedSize")]
CGSize GetHostedViewMinimumAllowedSize ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("hostedViewMaximumAllowedSize")]
CGSize GetHostedViewMaximumAllowedSize ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("interfaceParametersDescription")]
string GetInterfaceParametersDescription ();
@@ -166,10 +180,18 @@ interface IINUIAddVoiceShortcutViewControllerDelegate { }
[BaseType (typeof (NSObject))]
interface INUIAddVoiceShortcutViewControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:")]
void DidFinish (INUIAddVoiceShortcutViewController controller, [NullAllowed] INVoiceShortcut voiceShortcut, [NullAllowed] NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("addVoiceShortcutViewControllerDidCancel:")]
void DidCancel (INUIAddVoiceShortcutViewController controller);
@@ -214,14 +236,26 @@ interface IINUIEditVoiceShortcutViewControllerDelegate { }
[BaseType (typeof (NSObject))]
interface INUIEditVoiceShortcutViewControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("editVoiceShortcutViewController:didUpdateVoiceShortcut:error:")]
void DidUpdate (INUIEditVoiceShortcutViewController controller, [NullAllowed] INVoiceShortcut voiceShortcut, [NullAllowed] NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:")]
void DidDelete (INUIEditVoiceShortcutViewController controller, NSUuid deletedVoiceShortcutIdentifier);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("editVoiceShortcutViewControllerDidCancel:")]
void DidCancel (INUIEditVoiceShortcutViewController controller);
@@ -281,10 +315,18 @@ interface IINUIAddVoiceShortcutButtonDelegate { }
[BaseType (typeof (NSObject))]
interface INUIAddVoiceShortcutButtonDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("presentAddVoiceShortcutViewController:forAddVoiceShortcutButton:")]
void PresentAddVoiceShortcut (INUIAddVoiceShortcutViewController addVoiceShortcutViewController, INUIAddVoiceShortcutButton addVoiceShortcutButton);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:")]
void PresentEditVoiceShortcut (INUIEditVoiceShortcutViewController editVoiceShortcutViewController, INUIAddVoiceShortcutButton addVoiceShortcutButton);
diff --git a/src/mapkit.cs b/src/mapkit.cs
index 875984de15b1..ba4c68569618 100644
--- a/src/mapkit.cs
+++ b/src/mapkit.cs
@@ -54,6 +54,9 @@ namespace MapKit {
[Protocol]
[MacCatalyst (13, 1)]
interface MKAnnotation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("coordinate")]
[Abstract]
CLLocationCoordinate2D Coordinate { get; }
@@ -89,6 +92,9 @@ interface MKOverlay {
// a readonly 'coordinate' property, so there's no need to re-declare it here
// (in fact it causes numerous build problems).
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("boundingMapRect")]
MKMapRect BoundingMapRect { get; }
@@ -1244,10 +1250,18 @@ interface IMKReverseGeocoderDelegate { }
[Model]
[Protocol]
interface MKReverseGeocoderDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("reverseGeocoder:didFailWithError:")]
void FailedWithError (MKReverseGeocoder geocoder, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("reverseGeocoder:didFindPlacemark:")]
void FoundWithPlacemark (MKReverseGeocoder geocoder, MKPlacemark placemark);
@@ -2395,10 +2409,16 @@ interface MKLocalSearchCompletion {
[Category]
[BaseType (typeof (NSUserActivity))]
interface NSUserActivity_MKMapItem {
+ /// Gets the mapkit item.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("mapItem")]
MKMapItem GetMapItem ();
+ /// The new mapkit item.
+ /// Sets the mapkit item to .
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("setMapItem:")]
void SetMapItem (MKMapItem item);
diff --git a/src/mediaplayer.cs b/src/mediaplayer.cs
index bc4396f9cc0e..aea0d56aa5b1 100644
--- a/src/mediaplayer.cs
+++ b/src/mediaplayer.cs
@@ -1431,42 +1431,65 @@ interface MPMoviePlayerTimedMetadataEventArgs {
[MacCatalyst (13, 1)]
[Protocol]
interface MPMediaPlayback {
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("play")]
void Play ();
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("stop")]
void Stop ();
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("pause")]
void Pause ();
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("prepareToPlay")]
void PrepareToPlay ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("isPreparedToPlay")]
bool IsPreparedToPlay { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("currentPlaybackTime")]
double CurrentPlaybackTime { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("currentPlaybackRate")]
float CurrentPlaybackRate { get; set; } // float, not CGFloat
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("beginSeekingForward")]
void BeginSeekingForward ();
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("beginSeekingBackward")]
void BeginSeekingBackward ();
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("endSeeking")]
void EndSeeking ();
@@ -3789,6 +3812,9 @@ interface IMPSystemMusicPlayerController { }
[MacCatalyst (13, 1)]
[Protocol]
interface MPSystemMusicPlayerController {
+ /// The queue descriptor for the media items to play.
+ /// Opens the Music app and plays the specified items.
+ /// To be added.
[MacCatalyst (13, 1)]
[Abstract]
[Export ("openToPlayQueueDescriptor:")]
@@ -3800,10 +3826,16 @@ interface MPSystemMusicPlayerController {
[NoMac]
[MacCatalyst (13, 1)]
interface NSUserActivity_MediaPlayerAdditions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[return: NullAllowed]
[Export ("externalMediaContentIdentifier")]
NSString GetExternalMediaContentIdentifier ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("setExternalMediaContentIdentifier:")]
void SetExternalMediaContentIdentifier ([NullAllowed] NSString identifier);
}
@@ -3812,6 +3844,9 @@ interface NSUserActivity_MediaPlayerAdditions {
[Category]
[BaseType (typeof (AVMediaSelectionOption))]
interface AVMediaSelectionOption_MPNowPlayingInfoLanguageOptionAdditions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeNowPlayingInfoLanguageOption")]
[return: NullAllowed]
MPNowPlayingInfoLanguageOption CreateNowPlayingInfoLanguageOption ();
@@ -3821,6 +3856,9 @@ interface AVMediaSelectionOption_MPNowPlayingInfoLanguageOptionAdditions {
[Category]
[BaseType (typeof (AVMediaSelectionGroup))]
interface AVMediaSelectionGroup_MPNowPlayingInfoLanguageOptionAdditions {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("makeNowPlayingInfoLanguageOptionGroup")]
MPNowPlayingInfoLanguageOptionGroup CreateNowPlayingInfoLanguageOptionGroup ();
}
diff --git a/src/messages.cs b/src/messages.cs
index d909b6ab9592..d7b6a9c2cd3a 100644
--- a/src/messages.cs
+++ b/src/messages.cs
@@ -88,6 +88,10 @@ public enum MSMessagesAppPresentationContext : long {
[MacCatalyst (14, 0)]
[Protocol]
interface MSMessagesAppTranscriptPresentation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("contentSizeThatFits:")]
CGSize GetContentSizeThatFits (CGSize size);
@@ -419,6 +423,10 @@ interface IMSStickerBrowserViewDataSource { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface MSStickerBrowserViewDataSource {
+ /// To be added.
+ /// The number of objects held by this data source.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("numberOfStickersInStickerBrowserView:")]
nint GetNumberOfStickers (MSStickerBrowserView stickerBrowserView);
diff --git a/src/metal.cs b/src/metal.cs
index 9472c0e12875..25717f24cf16 100644
--- a/src/metal.cs
+++ b/src/metal.cs
@@ -147,21 +147,37 @@ interface MTLArrayType {
[MacCatalyst (13, 1)]
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLCommandEncoder {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("label")]
string Label { get; set; }
+ /// To be added.
+ /// To be added.
[Abstract, Export ("endEncoding")]
void EndEncoding ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("insertDebugSignpost:")]
void InsertDebugSignpost (string signpost);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("pushDebugGroup:")]
void PushDebugGroup (string debugGroup);
+ /// To be added.
+ /// To be added.
[Abstract, Export ("popDebugGroup")]
void PopDebugGroup ();
}
@@ -172,12 +188,21 @@ interface IMTLBuffer { }
[MacCatalyst (13, 1)]
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLBuffer : MTLResource {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("length")]
nuint Length { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("contents")]
IntPtr Contents { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS, NoTV, MacCatalyst (15, 0)]
[Abstract, Export ("didModifyRange:")]
void DidModify (NSRange range);
@@ -252,45 +277,83 @@ interface IMTLCommandBuffer { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLCommandBuffer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("commandQueue")]
IMTLCommandQueue CommandQueue { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("retainedReferences")]
bool RetainedReferences { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("label")]
string Label { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("status")]
MTLCommandBufferStatus Status { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("error")]
NSError Error { get; }
+ /// To be added.
+ /// To be added.
[Abstract, Export ("enqueue")]
void Enqueue ();
+ /// To be added.
+ /// To be added.
[Abstract, Export ("commit")]
void Commit ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("addScheduledHandler:")]
void AddScheduledHandler (Action block);
+ /// To be added.
+ /// To be added.
[Abstract, Export ("waitUntilScheduled")]
void WaitUntilScheduled ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("addCompletedHandler:")]
void AddCompletedHandler (Action block);
+ /// To be added.
+ /// To be added.
[Abstract, Export ("waitUntilCompleted")]
void WaitUntilCompleted ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("blitCommandEncoder")]
IMTLBlitCommandEncoder BlitCommandEncoder { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("computeCommandEncoder")]
IMTLComputeCommandEncoder ComputeCommandEncoder { get; }
@@ -313,15 +376,26 @@ partial interface MTLCommandBuffer {
[Field ("MTLCommandBufferErrorDomain")]
NSString ErrorDomain { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("parallelRenderCommandEncoderWithDescriptor:")]
[return: NullAllowed]
IMTLParallelRenderCommandEncoder CreateParallelRenderCommandEncoder (MTLRenderPassDescriptor renderPassDescriptor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("presentDrawable:")]
void PresentDrawable (IMTLDrawable drawable);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("presentDrawable:atTime:")]
void PresentDrawable (IMTLDrawable drawable, double presentationTime);
@@ -331,6 +405,10 @@ partial interface MTLCommandBuffer {
[Export ("presentDrawable:afterMinimumDuration:")]
void PresentDrawableAfter (IMTLDrawable drawable, double duration);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("renderCommandEncoderWithDescriptor:")]
IMTLRenderCommandEncoder CreateRenderCommandEncoder (MTLRenderPassDescriptor renderPassDescriptor);
@@ -427,22 +505,36 @@ interface IMTLCommandQueue { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLCommandQueue {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("label")]
string Label { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("commandBuffer")]
[Autorelease]
[return: NullAllowed]
IMTLCommandBuffer CommandBuffer ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("commandBufferWithUnretainedReferences")]
[Autorelease]
[return: NullAllowed]
IMTLCommandBuffer CommandBufferWithUnretainedReferences ();
+ /// Developers should not use this deprecated method. Developers should use 'MTLCaptureScope' instead.
+ /// To be added.
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'MTLCaptureScope' instead.")]
[Deprecated (PlatformName.TvOS, 11, 0, message: "Use 'MTLCaptureScope' instead.")]
[Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'MTLCaptureScope' instead.")]
@@ -490,6 +582,9 @@ partial interface MTLComputeCommandEncoder : MTLCommandEncoder {
[Export ("dispatchType")]
MTLDispatchType DispatchType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setComputePipelineState:")]
void SetComputePipelineState (IMTLComputePipelineState state);
@@ -508,6 +603,10 @@ partial interface MTLComputeCommandEncoder : MTLCommandEncoder {
[Abstract, Export ("setThreadgroupMemoryLength:atIndex:")]
void SetThreadgroupMemoryLength (nuint length, nuint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("dispatchThreadgroups:threadsPerThreadgroup:")]
void DispatchThreadgroups (MTLSize threadgroupsPerGrid, MTLSize threadsPerThreadgroup);
@@ -520,14 +619,28 @@ partial interface MTLComputeCommandEncoder : MTLCommandEncoder {
[Export ("setBuffers:offsets:withRange:")]
void SetBuffers (IntPtr buffers, IntPtr offsets, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setSamplerStates:lodMinClamps:lodMaxClamps:withRange:")]
void SetSamplerStates (IMTLSamplerState [] samplers, IntPtr floatArrayPtrLodMinClamps, IntPtr floatArrayPtrLodMaxClamps, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setSamplerStates:withRange:")]
void SetSamplerStates (IMTLSamplerState [] samplers, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setTextures:withRange:")]
void SetTextures (IMTLTexture [] textures, NSRange range);
@@ -693,12 +806,21 @@ interface IMTLComputePipelineState { }
[MacCatalyst (13, 1)]
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLComputePipelineState {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("maxTotalThreadsPerThreadgroup")]
nuint MaxTotalThreadsPerThreadgroup { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("threadExecutionWidth")]
nuint ThreadExecutionWidth { get; }
@@ -764,6 +886,9 @@ interface IMTLBlitCommandEncoder { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLBlitCommandEncoder : MTLCommandEncoder {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS, NoTV, MacCatalyst (15, 0)]
[Abstract, Export ("synchronizeResource:")]
void Synchronize (IMTLResource resource);
@@ -791,9 +916,17 @@ partial interface MTLBlitCommandEncoder : MTLCommandEncoder {
[Export ("copyFromTexture:sourceSlice:sourceLevel:sourceOrigin:sourceSize:toBuffer:destinationOffset:destinationBytesPerRow:destinationBytesPerImage:options:")]
void CopyFromTexture (IMTLTexture sourceTexture, nuint sourceSlice, nuint sourceLevel, MTLOrigin sourceOrigin, MTLSize sourceSize, IMTLBuffer destinationBuffer, nuint destinationOffset, nuint destinatinBytesPerRow, nuint destinationBytesPerImage, MTLBlitOption options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("generateMipmapsForTexture:")]
void GenerateMipmapsForTexture (IMTLTexture texture);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("fillBuffer:range:value:")]
void FillBuffer (IMTLBuffer buffer, NSRange range, byte value);
@@ -891,10 +1024,16 @@ interface IMTLFence { }
[MacCatalyst (13, 1)]
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
interface MTLFence {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("label")]
string Label { get; set; }
@@ -907,6 +1046,9 @@ interface IMTLDevice { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLDevice {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("name")]
string Name { get; }
@@ -958,6 +1100,9 @@ partial interface MTLDevice {
[return: Release]
IMTLHeap CreateHeap (MTLHeapDescriptor descriptor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newCommandQueue")]
[return: NullAllowed]
[return: Release]
@@ -983,11 +1128,19 @@ partial interface MTLDevice {
[return: Release]
IMTLBuffer CreateBufferNoCopy (IntPtr pointer, nuint length, MTLResourceOptions options, MTLDeallocator deallocator);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newDepthStencilStateWithDescriptor:")]
[return: NullAllowed]
[return: Release]
IMTLDepthStencilState CreateDepthStencilState (MTLDepthStencilDescriptor descriptor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newTextureWithDescriptor:")]
[return: NullAllowed]
[return: Release]
@@ -1016,15 +1169,27 @@ partial interface MTLDevice {
[return: Release]
IMTLTexture CreateSharedTexture (MTLSharedTextureHandle sharedHandle);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newSamplerStateWithDescriptor:")]
[return: NullAllowed]
[return: Release]
IMTLSamplerState CreateSamplerState (MTLSamplerDescriptor descriptor);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newDefaultLibrary")]
[return: Release]
IMTLLibrary CreateDefaultLibrary ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newLibraryWithFile:error:")]
[return: Release]
IMTLLibrary CreateLibrary (string filepath, out NSError error);
@@ -1034,10 +1199,21 @@ partial interface MTLDevice {
[return: Release]
IMTLLibrary CreateLibrary (DispatchData data, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newLibraryWithSource:options:error:")]
[return: Release]
IMTLLibrary CreateLibrary (string source, MTLCompileOptions options, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newLibraryWithSource:options:completionHandler:")]
[Async]
void CreateLibrary (string source, MTLCompileOptions options, Action completionHandler);
@@ -1049,35 +1225,77 @@ partial interface MTLDevice {
[return: NullAllowed]
IMTLLibrary CreateDefaultLibrary (NSBundle bundle, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newRenderPipelineStateWithDescriptor:error:")]
[return: Release]
IMTLRenderPipelineState CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newRenderPipelineStateWithDescriptor:completionHandler:")]
void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, Action completionHandler);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newRenderPipelineStateWithDescriptor:options:reflection:error:")]
[return: Release]
IMTLRenderPipelineState CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, MTLPipelineOption options, out MTLRenderPipelineReflection reflection, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newRenderPipelineStateWithDescriptor:options:completionHandler:")]
void CreateRenderPipelineState (MTLRenderPipelineDescriptor descriptor, MTLPipelineOption options, Action completionHandler);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newComputePipelineStateWithFunction:options:reflection:error:")]
[return: Release]
IMTLComputePipelineState CreateComputePipelineState (IMTLFunction computeFunction, MTLPipelineOption options, out MTLComputePipelineReflection reflection, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newComputePipelineStateWithFunction:completionHandler:")]
void CreateComputePipelineState (IMTLFunction computeFunction, Action completionHandler);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newComputePipelineStateWithFunction:error:")]
[return: Release]
IMTLComputePipelineState CreateComputePipelineState (IMTLFunction computeFunction, out NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newComputePipelineStateWithFunction:options:completionHandler:")]
void CreateComputePipelineState (IMTLFunction computeFunction, MTLPipelineOption options, Action completionHandler);
@@ -1098,6 +1316,10 @@ partial interface MTLDevice {
[return: Release]
IMTLFence CreateFence ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("supportsFeatureSet:")]
bool SupportsFeatureSet (MTLFeatureSet featureSet);
@@ -1578,9 +1800,14 @@ interface IMTLDrawable { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
partial interface MTLDrawable {
+ /// To be added.
+ /// To be added.
[Abstract, Export ("present")]
void Present ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("presentAtTime:")]
void Present (double presentationTime);
@@ -1613,6 +1840,9 @@ interface IMTLTexture : INativeObject { }
[MacCatalyst (13, 1)]
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLTexture : MTLResource {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Deprecated (PlatformName.iOS, 10, 0)]
[Deprecated (PlatformName.MacOSX, 10, 12)]
@@ -1653,24 +1883,45 @@ partial interface MTLTexture : MTLResource {
[Export ("bufferBytesPerRow")]
nuint BufferBytesPerRow { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("textureType")]
MTLTextureType TextureType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("pixelFormat")]
MTLPixelFormat PixelFormat { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("width")]
nuint Width { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("height")]
nuint Height { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("depth")]
nuint Depth { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("mipmapLevelCount")]
nuint MipmapLevelCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 13, 0)]
[Deprecated (PlatformName.iOS, 16, 0)]
[Deprecated (PlatformName.TvOS, 16, 0)]
@@ -1678,9 +1929,15 @@ partial interface MTLTexture : MTLResource {
[Abstract, Export ("sampleCount")]
nuint SampleCount { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("arrayLength")]
nuint ArrayLength { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("framebufferOnly")]
bool FramebufferOnly { [Bind ("isFramebufferOnly")] get; }
@@ -1694,6 +1951,10 @@ partial interface MTLTexture : MTLResource {
[Export ("compressionType")]
MTLTextureCompressionType CompressionType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newTextureViewWithPixelFormat:")]
[return: NullAllowed]
[return: Release]
@@ -1948,9 +2209,15 @@ interface IMTLSamplerState { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLSamplerState {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("label")]
string Label { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
@@ -2140,9 +2407,15 @@ interface IMTLRenderPipelineState { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLRenderPipelineState {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("label")]
string Label { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
@@ -2456,15 +2729,27 @@ partial interface MTLFunction {
[NullAllowed, Export ("label")]
string Label { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("functionType")]
MTLFunctionType FunctionType { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("vertexAttributes")]
MTLVertexAttribute [] VertexAttributes { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("name")]
string Name { get; }
@@ -2513,15 +2798,28 @@ interface IMTLLibrary { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLLibrary {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("label")]
string Label { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("functionNames")]
string [] FunctionNames { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("newFunctionWithName:")]
[return: Release]
IMTLFunction CreateFunction (string functionName);
@@ -2734,10 +3032,16 @@ interface IMTLDepthStencilState { }
[MacCatalyst (13, 1)]
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLDepthStencilState {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("label")]
string Label { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("device")]
IMTLDevice Device { get; }
@@ -2782,6 +3086,9 @@ interface IMTLParallelRenderCommandEncoder { }
[MacCatalyst (13, 1)]
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
interface MTLParallelRenderCommandEncoder : MTLCommandEncoder {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("renderCommandEncoder")]
[Autorelease]
@@ -2826,6 +3133,9 @@ interface IMTLRenderCommandEncoder { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLRenderCommandEncoder : MTLCommandEncoder {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setRenderPipelineState:")]
void SetRenderPipelineState (IMTLRenderPipelineState pipelineState);
@@ -2841,12 +3151,21 @@ partial interface MTLRenderCommandEncoder : MTLCommandEncoder {
[Abstract, Export ("setVertexSamplerState:lodMinClamp:lodMaxClamp:atIndex:")]
void SetVertexSamplerState (IMTLSamplerState sampler, float /* float, not CGFloat */ lodMinClamp, float /* float, not CGFloat */ lodMaxClamp, nuint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setViewport:")]
void SetViewport (MTLViewport viewport);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setFrontFacingWinding:")]
void SetFrontFacingWinding (MTLWinding frontFacingWinding);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setCullMode:")]
void SetCullMode (MTLCullMode cullMode);
@@ -2855,12 +3174,23 @@ partial interface MTLRenderCommandEncoder : MTLCommandEncoder {
[Export ("setDepthClipMode:")]
void SetDepthClipMode (MTLDepthClipMode depthClipMode);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setDepthBias:slopeScale:clamp:")]
void SetDepthBias (float /* float, not CGFloat */ depthBias, float /* float, not CGFloat */ slopeScale, float /* float, not CGFloat */ clamp);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setScissorRect:")]
void SetScissorRect (MTLScissorRect rect);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setTriangleFillMode:")]
void SetTriangleFillMode (MTLTriangleFillMode fillMode);
@@ -2884,12 +3214,24 @@ partial interface MTLRenderCommandEncoder : MTLCommandEncoder {
[Abstract, Export ("setFragmentSamplerState:lodMinClamp:lodMaxClamp:atIndex:")]
void SetFragmentSamplerState (IMTLSamplerState sampler, float /* float, not CGFloat */ lodMinClamp, float /* float, not CGFloat */ lodMaxClamp, nuint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setBlendColorRed:green:blue:alpha:")]
void SetBlendColor (float /* float, not CGFloat */ red, float /* float, not CGFloat */ green, float /* float, not CGFloat */ blue, float /* float, not CGFloat */ alpha);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setDepthStencilState:")]
void SetDepthStencilState (IMTLDepthStencilState depthStencilState);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setStencilReferenceValue:")]
void SetStencilReferenceValue (uint /* uint32_t */ referenceValue);
@@ -2948,18 +3290,42 @@ partial interface MTLRenderCommandEncoder : MTLCommandEncoder {
[Export ("drawIndexedPrimitives:indexType:indexBuffer:indexBufferOffset:indirectBuffer:indirectBufferOffset:")]
void DrawIndexedPrimitives (MTLPrimitiveType primitiveType, MTLIndexType indexType, IMTLBuffer indexBuffer, nuint indexBufferOffset, IMTLBuffer indirectBuffer, nuint indirectBufferOffset);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setFragmentBuffers:offsets:withRange:")]
void SetFragmentBuffers (IMTLBuffer buffers, IntPtr IntPtrOffsets, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setFragmentSamplerStates:lodMinClamps:lodMaxClamps:withRange:")]
void SetFragmentSamplerStates (IMTLSamplerState [] samplers, IntPtr floatArrayPtrLodMinClamps, IntPtr floatArrayPtrLodMaxClamps, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setFragmentSamplerStates:withRange:")]
void SetFragmentSamplerStates (IMTLSamplerState [] samplers, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setFragmentTextures:withRange:")]
void SetFragmentTextures (IMTLTexture [] textures, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setVertexBuffers:offsets:withRange:")]
void SetVertexBuffers (IMTLBuffer [] buffers, IntPtr uintArrayPtrOffsets, NSRange range);
@@ -2971,12 +3337,26 @@ partial interface MTLRenderCommandEncoder : MTLCommandEncoder {
[Abstract, Export ("setVertexBytes:length:atIndex:")]
void SetVertexBytes (IntPtr bytes, nuint length, nuint index);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setVertexSamplerStates:lodMinClamps:lodMaxClamps:withRange:")]
void SetVertexSamplerStates (IMTLSamplerState [] samplers, IntPtr floatArrayPtrLodMinClamps, IntPtr floatArrayPtrLodMaxClamps, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setVertexSamplerStates:withRange:")]
void SetVertexSamplerStates (IMTLSamplerState [] samplers, NSRange range);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setVertexTextures:withRange:")]
void SetVertexTextures (IMTLTexture [] textures, NSRange range);
@@ -3753,26 +4133,44 @@ interface MTLHeapDescriptor : NSCopying {
[MacCatalyst (13, 1)]
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
interface MTLHeap : MTLAllocation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("label")]
string Label { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("storageMode")]
MTLStorageMode StorageMode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("cpuCacheMode")]
MTLCpuCacheMode CpuCacheMode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("size")]
nuint Size { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("usedSize")]
nuint UsedSize { get; }
@@ -3787,12 +4185,20 @@ interface MTLHeap : MTLAllocation {
[return: Release]
IMTLBuffer CreateBuffer (nuint length, MTLResourceOptions options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newTextureWithDescriptor:")]
[return: NullAllowed]
[return: Release]
IMTLTexture CreateTexture (MTLTextureDescriptor desc);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setPurgeableState:")]
MTLPurgeableState SetPurgeableState (MTLPurgeableState state);
@@ -3872,12 +4278,21 @@ interface IMTLHeap { }
[Protocol] // From Apple Docs: Your app does not define classes that implement this protocol. Model is not needed
partial interface MTLResource : MTLAllocation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("label")]
string Label { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("cpuCacheMode")]
MTLCpuCacheMode CpuCacheMode { get; }
@@ -3886,6 +4301,10 @@ partial interface MTLResource : MTLAllocation {
[Export ("storageMode")]
MTLStorageMode StorageMode { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract, Export ("setPurgeableState:")]
MTLPurgeableState SetPurgeableState (MTLPurgeableState state);
@@ -4088,22 +4507,35 @@ interface IMTLCaptureScope { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface MTLCaptureScope {
+ /// Begins capturing.
+ /// To be added.
[Abstract]
[Export ("beginScope")]
void BeginScope ();
+ /// Ends capturing.
+ /// To be added.
[Abstract]
[Export ("endScope")]
void EndScope ();
+ /// Gets or sets a descriptive label for the scope.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("label")]
string Label { get; set; }
+ /// Gets the on which the scope was created.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("device")]
IMTLDevice Device { get; }
+ /// Gets the command queue that created the scope.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("commandQueue")]
IMTLCommandQueue CommandQueue { get; }
@@ -4222,18 +4654,30 @@ interface IMTLArgumentEncoder { }
[MacCatalyst (13, 1)]
[Protocol]
interface MTLArgumentEncoder {
+ /// Gets the device for the encoder.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("device")]
IMTLDevice Device { get; }
+ /// Gets or sets a descriptive label for the encoder.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("label")]
string Label { get; set; }
+ /// Gets the number of bytes that are required to store the encoded resources in the buffer.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("encodedLength")]
nuint EncodedLength { get; }
+ /// Gets the byte alignment for the encoded data.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("alignment")]
nuint Alignment { get; }
@@ -4258,6 +4702,10 @@ interface MTLArgumentEncoder {
[Export ("setTexture:atIndex:")]
void SetTexture ([NullAllowed] IMTLTexture texture, nuint index);
+ /// An array of textures from which to select the textures to encode.
+ /// Indices into . Either Metal index IDs or the index members of s.
+ /// Encodes the provided into the argument buffer.
+ /// To be added.
[Abstract]
[Export ("setTextures:withRange:")]
void SetTextures (IMTLTexture [] textures, NSRange range);
@@ -4266,6 +4714,10 @@ interface MTLArgumentEncoder {
[Export ("setSamplerState:atIndex:")]
void SetSamplerState ([NullAllowed] IMTLSamplerState sampler, nuint index);
+ /// An array of samplers from which to select the samplers to encode.
+ /// Indices into . Either Metal index IDs or the index members of s.
+ /// Encodes the provided into the argument buffer.
+ /// To be added.
[Abstract]
[Export ("setSamplerStates:withRange:")]
void SetSamplerStates (IMTLSamplerState [] samplers, NSRange range);
@@ -4473,10 +4925,16 @@ interface IMTLEvent { }
[MacCatalyst (13, 1)]
[Protocol]
interface MTLEvent {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("device")]
IMTLDevice Device { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("label")]
string Label { get; set; }
@@ -4501,15 +4959,26 @@ interface IMTLSharedEvent { }
[MacCatalyst (13, 1)]
[Protocol]
interface MTLSharedEvent : MTLEvent {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("notifyListener:atValue:block:")]
void NotifyListener (MTLSharedEventListener listener, ulong atValue, MTLSharedEventNotificationBlock block);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newSharedEventHandle")]
[return: Release]
MTLSharedEventHandle CreateSharedEventHandle ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("signaledValue")]
ulong SignaledValue { get; set; }
@@ -4533,6 +5002,9 @@ interface IMTLIndirectRenderCommand { }
[Protocol]
interface MTLIndirectRenderCommand {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[iOS (13, 0), TV (13, 0)]
[MacCatalyst (13, 1)]
@@ -4567,6 +5039,8 @@ interface MTLIndirectRenderCommand {
[Export ("drawIndexedPrimitives:indexCount:indexType:indexBuffer:indexBufferOffset:instanceCount:baseVertex:baseInstance:")]
void DrawIndexedPrimitives (MTLPrimitiveType primitiveType, nuint indexCount, MTLIndexType indexType, IMTLBuffer indexBuffer, nuint indexBufferOffset, nuint instanceCount, nint baseVertex, nuint baseInstance);
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("reset")]
void Reset ();
@@ -4668,10 +5142,16 @@ interface IMTLIndirectCommandBuffer { }
[MacCatalyst (13, 1)]
[Protocol]
interface MTLIndirectCommandBuffer : MTLResource {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("size")]
nuint Size { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("resetWithRange:")]
void Reset (NSRange range);
diff --git a/src/metalkit.cs b/src/metalkit.cs
index 5268369cfde9..e61db3ee2c88 100644
--- a/src/metalkit.cs
+++ b/src/metalkit.cs
@@ -180,10 +180,17 @@ interface IMTKViewDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface MTKViewDelegate {
+ /// To be added.
+ /// To be added.
+ /// Method to redraw the view when its layout is changed.
+ /// To be added.
[Abstract]
[Export ("mtkView:drawableSizeWillChange:")]
void DrawableSizeWillChange (MTKView view, CGSize size);
+ /// To be added.
+ /// Method to draw the contents of the view.
+ /// To be added.
[Abstract]
[Export ("drawInMTKView:")]
void Draw (MTKView view);
diff --git a/src/metalperformanceshaders.cs b/src/metalperformanceshaders.cs
index 039d3d9666d5..9c3abc61960f 100644
--- a/src/metalperformanceshaders.cs
+++ b/src/metalperformanceshaders.cs
@@ -9575,6 +9575,9 @@ interface IMPSHandle { }
[MacCatalyst (13, 1)]
[Protocol]
interface MPSHandle : NSCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("label")]
string Label { get; }
@@ -9704,6 +9707,9 @@ interface IMPSNNPadding { }
[MacCatalyst (13, 1)]
[Protocol]
interface MPSNNPadding : NSSecureCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("paddingMethod")]
MPSNNPaddingMethod PaddingMethod { get; }
@@ -9739,10 +9745,16 @@ interface IMPSImageSizeEncodingState { }
[MacCatalyst (13, 1)]
[Protocol]
interface MPSImageSizeEncodingState {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("sourceWidth")]
nuint SourceWidth { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("sourceHeight")]
nuint SourceHeight { get; }
@@ -9754,6 +9766,12 @@ interface IMPSImageAllocator { }
[MacCatalyst (13, 1)]
[Protocol]
interface MPSImageAllocator : NSSecureCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("imageForCommandBuffer:imageDescriptor:kernel:")]
MPSImage GetImage (IMTLCommandBuffer cmdBuf, MPSImageDescriptor descriptor, MPSKernel kernel);
@@ -9799,6 +9817,11 @@ interface IMPSImageTransformProvider { }
[MacCatalyst (13, 1)]
[Protocol]
interface MPSImageTransformProvider : NSCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("transformForSourceImage:handle:")]
MPSScaleTransform GetTransform (MPSImage image, [NullAllowed] IMPSHandle handle);
@@ -9807,6 +9830,9 @@ interface MPSImageTransformProvider : NSCoding {
[MacCatalyst (13, 1)]
[Protocol]
interface MPSDeviceProvider {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("mpsMTLDevice")]
IMTLDevice GetMTLDevice ();
@@ -14051,6 +14077,9 @@ interface IMPSNNTrainableNode { }
[MacCatalyst (13, 1)]
[Protocol]
interface MPSNNTrainableNode {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("trainingStyle", ArgumentSemantic.Assign)]
MPSNNTrainingStyle TrainingStyle { get; set; }
diff --git a/src/modelio.cs b/src/modelio.cs
index 4a48a6024edc..b8fb238f0f18 100644
--- a/src/modelio.cs
+++ b/src/modelio.cs
@@ -1716,6 +1716,9 @@ interface MDLMeshBuffer : NSCopying {
[Export ("fillData:offset:")]
void FillData (NSData data, nuint offset);
+ /// Gets a mesh buffer map that provides read-only access to the data in the buffer.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("map")]
MDLMeshBufferMap Map { get; }
@@ -1755,6 +1758,11 @@ interface MDLMeshBufferAllocator {
[Export ("newZone:")]
IMDLMeshBufferZone CreateZone (nuint capacity);
+ /// To be added.
+ /// To be added.
+ /// Creates a new zone that is large enough to contain buffers from the list of sizes and corresponding types.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newZoneForBuffersWithSize:andType:")]
IMDLMeshBufferZone CreateZone (NSNumber [] sizes, NSNumber [] types);
@@ -1763,6 +1771,11 @@ interface MDLMeshBufferAllocator {
[Export ("newBuffer:type:")]
IMDLMeshBuffer CreateBuffer (nuint length, MDLMeshBufferType type);
+ /// To be added.
+ /// To be added.
+ /// Creates a new buffer from the specified data, of the specified type, in the default zone of the implementor.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newBufferWithData:type:")]
IMDLMeshBuffer CreateBuffer (NSData data, MDLMeshBufferType type);
@@ -1772,6 +1785,12 @@ interface MDLMeshBufferAllocator {
[return: NullAllowed]
IMDLMeshBuffer CreateBuffer ([NullAllowed] IMDLMeshBufferZone zone, nuint length, MDLMeshBufferType type);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Creates a new buffer from the specified data, of the specified type, in the specified zone.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("newBufferFromZone:data:type:")]
[return: NullAllowed]
@@ -1858,6 +1877,9 @@ interface MDLMeshBufferZone {
[MacCatalyst (13, 1)]
[Protocol]
interface MDLNamed {
+ /// Gets or sets the descriptive name of the named object.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("name")]
string Name { get; set; }
@@ -2096,10 +2118,16 @@ interface IMDLObjectContainerComponent { }
[MacCatalyst (13, 1)]
[Protocol]
interface MDLObjectContainerComponent : MDLComponent, INSFastEnumeration {
+ /// To be added.
+ /// Adds to the list of objects that are contained by this IMDLObjectContainerComponent.
+ /// To be added.
[Abstract]
[Export ("addObject:")]
void AddObject (MDLObject @object);
+ /// To be added.
+ /// Removes from the list of objects that are contained by this IMDLObjectContainerComponent.
+ /// To be added.
[Abstract]
[Export ("removeObject:")]
void RemoveObject (MDLObject @object);
@@ -2118,6 +2146,9 @@ interface MDLObjectContainerComponent : MDLComponent, INSFastEnumeration {
[Export ("count")]
nuint Count { get; }
+ /// Gets the list of objects that belong to this IMDLObjectContainerComponent.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("objects", ArgumentSemantic.Retain)]
MDLObject [] Objects { get; }
@@ -3167,6 +3198,9 @@ interface IMDLTransformComponent { }
[MacCatalyst (13, 1)]
[Protocol]
interface MDLTransformComponent : MDLComponent {
+ /// Gets or sets the matrix of the transform at the earliest specified time.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("matrix", ArgumentSemantic.Assign)]
Matrix4 Matrix {
@@ -3183,10 +3217,16 @@ Matrix4 Matrix {
[Export ("resetsTransform")]
bool ResetsTransform { get; set; }
+ /// Gets the first specified time in the transformation.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("minimumTime")]
double MinimumTime { get; }
+ /// Gets the last specified time in the transformation.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("maximumTime")]
double MaximumTime { get; }
@@ -4470,10 +4510,18 @@ interface IMDLAssetResolver { }
[Protocol]
interface MDLAssetResolver {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("canResolveAssetNamed:")]
bool CanResolveAsset (string name);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("resolveAssetNamed:")]
NSUrl ResolveAsset (string name);
@@ -4542,20 +4590,34 @@ interface IMDLTransformOp { }
[Protocol]
interface MDLTransformOp {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("name")]
string Name { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("float4x4AtTime:")]
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
NMatrix4 GetNMatrix4 (double atTime);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("double4x4AtTime:")]
[MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")]
NMatrix4d GetNMatrix4d (double atTime);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("IsInverseOp")]
bool IsInverseOp { get; }
diff --git a/src/networkextension.cs b/src/networkextension.cs
index 73ecfb0d0c6e..2b7be9802c17 100644
--- a/src/networkextension.cs
+++ b/src/networkextension.cs
@@ -1421,6 +1421,9 @@ interface NEHotspotHelperOptionInternal {
[Category]
[BaseType (typeof (NSMutableUrlRequest))]
interface NSMutableURLRequest_NEHotspotHelper {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("bindToHotspotHelperCommand:")]
void BindTo (NEHotspotHelperCommand command);
}
diff --git a/src/notificationcenter.cs b/src/notificationcenter.cs
index 59f04c134b3e..90fcbefcab03 100644
--- a/src/notificationcenter.cs
+++ b/src/notificationcenter.cs
@@ -124,15 +124,28 @@ interface UIVibrancyEffect_NotificationCenter {
[Category]
[BaseType (typeof (NSExtensionContext))]
interface NSExtensionContext_NCWidgetAdditions {
+ /// Returns the largest available display mode for the widget.
+ /// The largest available display mode for the widget.
+ /// To be added.
[Export ("widgetLargestAvailableDisplayMode")]
NCWidgetDisplayMode GetWidgetLargestAvailableDisplayMode ();
+ /// The display mode to set.
+ /// Sets the largest available display mode for the widget.
+ /// To be added.
[Export ("setWidgetLargestAvailableDisplayMode:")]
void SetWidgetLargestAvailableDisplayMode (NCWidgetDisplayMode mode);
+ /// Returns the current display mode for the widget.
+ /// The current display mode for the widget.
+ /// To be added.
[Export ("widgetActiveDisplayMode")]
NCWidgetDisplayMode GetWidgetActiveDisplayMode ();
+ /// The display mode to query.
+ /// Returns the maximum size of the widget for the specified display mode.
+ /// The maximum size of the widget for the specified display mode.
+ /// To be added.
[Export ("widgetMaximumSizeForDisplayMode:")]
CGSize GetWidgetMaximumSize (NCWidgetDisplayMode displayMode);
}
diff --git a/src/opengles.cs b/src/opengles.cs
index 01d2bd98832a..3fafaf1bdd1a 100644
--- a/src/opengles.cs
+++ b/src/opengles.cs
@@ -143,6 +143,9 @@ interface EAGLContext {
[Protocol]
// no [Model] because "The EAGLDrawable protocol is not intended to be implemented by objects outside of the iOS."
interface EAGLDrawable {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed] // by default this property is null
[Export ("drawableProperties", ArgumentSemantic.Copy)]
diff --git a/src/photos.cs b/src/photos.cs
index 3625d30156cd..fd0190c44b68 100644
--- a/src/photos.cs
+++ b/src/photos.cs
@@ -379,6 +379,14 @@ interface PHContentEditingInputRequestOptions {
[BaseType (typeof (PHAsset))]
interface PHAssetContentEditingInputExtensions {
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("requestContentEditingInputWithOptions:completionHandler:")]
nuint RequestContentEditingInput ([NullAllowed] PHContentEditingInputRequestOptions options, PHContentEditingHandler completionHandler);
@@ -1272,6 +1280,9 @@ interface IPHPhotoLibraryChangeObserver { }
[BaseType (typeof (NSObject))]
interface PHPhotoLibraryChangeObserver {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("photoLibraryDidChange:")]
void PhotoLibraryDidChange (PHChange changeInstance);
@@ -1388,6 +1399,10 @@ interface PHPhotoLibrary_CloudIdentifiers {
[Export ("cloudIdentifierMappingsForLocalIdentifiers:")]
NSDictionary GetCloudIdentifierMappings (string [] localIdentifiers);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV]
[NoiOS]
[NoMacCatalyst]
@@ -1395,6 +1410,10 @@ interface PHPhotoLibrary_CloudIdentifiers {
[Export ("localIdentifiersForCloudIdentifiers:")]
string [] GetLocalIdentifiers (PHCloudIdentifier [] cloudIdentifiers);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoTV]
[NoiOS]
[NoMacCatalyst]
@@ -1657,18 +1676,30 @@ interface IPHLivePhotoFrame { }
[MacCatalyst (13, 1)]
[Protocol]
interface PHLivePhotoFrame {
+ /// Gets the image that will be processed.
+ /// The image that will be processed.
+ /// To be added.
[Abstract]
[Export ("image")]
CIImage Image { get; }
+ /// Gets the time, in seconds from the beginning of the Live Photo, when the image appears.
+ /// The time, in seconds from the beginning of the Live Photo, when the image appears.
+ /// To be added.
[Abstract]
[Export ("time")]
CMTime Time { get; }
+ /// Gets a value that tells whether the image is a still photo or a video frame.
+ /// A value that tells whether the image is a still photo or a video frame.
+ /// To be added.
[Abstract]
[Export ("type")]
PHLivePhotoFrameType Type { get; }
+ /// Gets the relative scale of compared to the Live Photo.
+ /// The relative scale of compared to the Live Photo.
+ /// To be added.
[Abstract]
[Export ("renderScale")]
nfloat RenderScale { get; }
diff --git a/src/photosui.cs b/src/photosui.cs
index ce1243291786..56a413250755 100644
--- a/src/photosui.cs
+++ b/src/photosui.cs
@@ -35,22 +35,38 @@ namespace PhotosUI {
#endif
interface PHContentEditingController {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("canHandleAdjustmentData:")]
bool CanHandleAdjustmentData (PHAdjustmentData adjustmentData);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("startContentEditingWithInput:placeholderImage:")]
void StartContentEditing (PHContentEditingInput contentEditingInput, UIImage placeholderImage);
+ /// To be added. This parameter can be .
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("finishContentEditingWithCompletionHandler:")]
void FinishContentEditing (Action completionHandler);
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("cancelContentEditing")]
void CancelContentEditing ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("shouldShowCancelConfirmation")]
bool ShouldShowCancelConfirmation { get; }
@@ -259,22 +275,42 @@ interface PHProjectTextElement : NSSecureCoding {
[Protocol]
interface PHProjectExtensionController {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.MacOSX, 10, 14)]
[Export ("supportedProjectTypes", ArgumentSemantic.Copy)]
PHProjectTypeDescription [] GetSupportedProjectTypes ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("beginProjectWithExtensionContext:projectInfo:completion:")]
void BeginProject (PHProjectExtensionContext extensionContext, PHProjectInfo projectInfo, Action completion);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("resumeProjectWithExtensionContext:completion:")]
void ResumeProject (PHProjectExtensionContext extensionContext, Action completion);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("finishProjectWithCompletionHandler:")]
void FinishProject (Action completion);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Protected]
[NoMacCatalyst]
[Export ("typeDescriptionDataSourceForCategory:invalidator:")]
@@ -506,20 +542,34 @@ interface IPHProjectTypeDescriptionDataSource { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface PHProjectTypeDescriptionDataSource {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("subtypesForProjectType:")]
PHProjectTypeDescription [] GetSubtypes (NSString projectType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("typeDescriptionForProjectType:")]
[return: NullAllowed]
PHProjectTypeDescription GetTypeDescription (NSString projectType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("footerTextForSubtypesOfProjectType:")]
[return: NullAllowed]
NSAttributedString GetFooterTextForSubtypes (NSString projectType);
+ /// To be added.
+ /// To be added.
[Export ("extensionWillDiscardDataSource")]
void WillDiscardDataSource ();
}
@@ -530,10 +580,16 @@ interface IPHProjectTypeDescriptionInvalidator { }
[NoMacCatalyst]
[Protocol]
interface PHProjectTypeDescriptionInvalidator {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("invalidateTypeDescriptionForProjectType:")]
void InvalidateTypeDescription (NSString projectType);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("invalidateFooterTextForSubtypesOfProjectType:")]
void InvalidateFooterTextForSubtypes (NSString projectType);
diff --git a/src/pushkit.cs b/src/pushkit.cs
index 9e57ca90d3dc..e728205dd17e 100644
--- a/src/pushkit.cs
+++ b/src/pushkit.cs
@@ -118,10 +118,20 @@ interface IPKPushRegistryDelegate { }
[Protocol]
[BaseType (typeof (NSObject))]
interface PKPushRegistryDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("pushRegistry:didUpdatePushCredentials:forType:"), EventArgs ("PKPushRegistryUpdated"), EventName ("CredentialsUpdated")]
void DidUpdatePushCredentials (PKPushRegistry registry, PKPushCredentials credentials, string type);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Developers should not use this deprecated method. Developers should use the 'DidReceiveIncomingPushWithPayload' overload accepting an 'Action' argument instead.
+ /// To be added.
[NoMac]
#if !NET
[Abstract] // now optional in iOS 11
diff --git a/src/quicklook.cs b/src/quicklook.cs
index d627a0bf2832..56d29b930ef1 100644
--- a/src/quicklook.cs
+++ b/src/quicklook.cs
@@ -123,6 +123,10 @@ interface IQLPreviewControllerDataSource { }
[NoMac]
[MacCatalyst (13, 1)]
interface QLPreviewControllerDataSource {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("numberOfPreviewItemsInPreviewController:")]
nint PreviewItemCount (QLPreviewController controller);
diff --git a/src/replaykit.cs b/src/replaykit.cs
index 1ee725fdd564..c0504692b03f 100644
--- a/src/replaykit.cs
+++ b/src/replaykit.cs
@@ -326,6 +326,14 @@ interface IRPBroadcastActivityViewControllerDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface RPBroadcastActivityViewControllerDelegate {
+ /// The selection UI to be dismissed. Optional. if the user canceled setup.
+ ///
+ /// The broadcast controller.
+ /// This parameter can be .
+ ///
+ /// The error that occurred, if present. Otherwise, .This parameter can be .
+ /// Method that is called when the broadcast activity view controller selection UI is about to be dismissed.
+ /// If is then the system is configured for broadcasting.
[Abstract]
[Export ("broadcastActivityViewController:didFinishWithBroadcastController:error:")]
void DidFinish (RPBroadcastActivityViewController broadcastActivityViewController, [NullAllowed] RPBroadcastController broadcastController, [NullAllowed] NSError error);
@@ -448,9 +456,20 @@ interface RPBroadcastConfiguration : NSCoding, NSSecureCoding {
[Category]
[BaseType (typeof (NSExtensionContext))]
interface NSExtensionContext_RPBroadcastExtension {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("loadBroadcastingApplicationInfoWithCompletion:")]
void LoadBroadcastingApplicationInfo (LoadBroadcastingHandler handler);
+ /// To be added.
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// Developers should not use this deprecated method. Developers should use 'CompleteRequest(NSUrl,NSDictionary<NSString,INSCoding>)' instead.
+ /// To be added.
[Deprecated (PlatformName.TvOS, 11, 0, message: "Use 'CompleteRequest(NSUrl,NSDictionary)' instead.")]
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'CompleteRequest(NSUrl,NSDictionary)' instead.")]
[NoMac]
@@ -459,6 +478,13 @@ interface NSExtensionContext_RPBroadcastExtension {
[Export ("completeRequestWithBroadcastURL:broadcastConfiguration:setupInfo:")]
void CompleteRequest (NSUrl broadcastURL, RPBroadcastConfiguration broadcastConfiguration, [NullAllowed] NSDictionary setupInfo);
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("completeRequestWithBroadcastURL:setupInfo:")]
void CompleteRequest (NSUrl broadcastURL, [NullAllowed] NSDictionary setupInfo);
diff --git a/src/scenekit.cs b/src/scenekit.cs
index f93fb8bc2529..61c70328bdc9 100644
--- a/src/scenekit.cs
+++ b/src/scenekit.cs
@@ -117,6 +117,8 @@ interface SCNAnimatable {
[Export ("addAnimationPlayer:forKey:")]
void AddAnimation (SCNAnimationPlayer player, [NullAllowed] NSString key);
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("removeAllAnimations")]
void RemoveAllAnimations ();
@@ -126,10 +128,16 @@ interface SCNAnimatable {
[Export ("removeAllAnimationsWithBlendOutDuration:")]
void RemoveAllAnimationsWithBlendOutDuration (nfloat duration);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("removeAnimationForKey:")]
void RemoveAnimation (NSString key);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("animationKeys")]
NSString [] GetAnimationKeys ();
@@ -140,6 +148,10 @@ interface SCNAnimatable {
[Export ("animationPlayerForKey:")]
SCNAnimationPlayer GetAnimationPlayer (NSString key);
+ /// To be added.
+ /// Developers should not use this deprecated method. Developers should use 'GetAnimationPlayer' instead.
+ /// To be added.
+ /// To be added.
[Abstract]
[Deprecated (PlatformName.TvOS, 11, 0, message: "Use 'GetAnimationPlayer' instead.")]
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'GetAnimationPlayer' instead.")]
@@ -150,6 +162,9 @@ interface SCNAnimatable {
[return: NullAllowed]
CAAnimation GetAnimation (NSString key);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Deprecated (PlatformName.TvOS, 11, 0, message: "Use 'SCNAnimationPlayer.Paused' instead.")]
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'SCNAnimationPlayer.Paused' instead.")]
@@ -159,6 +174,9 @@ interface SCNAnimatable {
[Export ("pauseAnimationForKey:")]
void PauseAnimation (NSString key);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Deprecated (PlatformName.TvOS, 11, 0, message: "Use 'SCNAnimationPlayer.Paused' instead.")]
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'SCNAnimationPlayer.Paused' instead.")]
@@ -168,6 +186,10 @@ interface SCNAnimatable {
[Export ("resumeAnimationForKey:")]
void ResumeAnimation (NSString key);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Deprecated (PlatformName.TvOS, 11, 0, message: "Use 'SCNAnimationPlayer.Paused' instead.")]
[Deprecated (PlatformName.iOS, 11, 0, message: "Use 'SCNAnimationPlayer.Paused' instead.")]
@@ -292,10 +314,19 @@ interface SCNAudioSource : NSCopying, NSSecureCoding {
[Model, Protocol]
[BaseType (typeof (NSObject))]
interface SCNBoundingVolume {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("getBoundingBoxMin:max:")]
bool GetBoundingBox (ref SCNVector3 min, ref SCNVector3 max);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Abstract]
[Export ("setBoundingBoxMin:max:")]
@@ -611,26 +642,44 @@ interface ISCNCameraControlConfiguration { }
[MacCatalyst (13, 1)]
[Protocol]
interface SCNCameraControlConfiguration {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("autoSwitchToFreeCamera")]
bool AutoSwitchToFreeCamera { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("allowsTranslation")]
bool AllowsTranslation { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("flyModeVelocity")]
nfloat FlyModeVelocity { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("panSensitivity")]
nfloat PanSensitivity { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("truckSensitivity")]
nfloat TruckSensitivity { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("rotationSensitivity")]
nfloat RotationSensitivity { get; set; }
@@ -2858,6 +2907,14 @@ interface ISCNProgramDelegate { }
[Model, Protocol]
interface SCNProgramDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Unavailable (PlatformName.iOS)]
[NoTV]
[NoMacCatalyst]
@@ -2865,6 +2922,13 @@ interface SCNProgramDelegate {
[Export ("program:bindValueForSymbol:atLocation:programID:renderer:")]
bool BindValue (SCNProgram program, string symbol, uint /* unsigned int */ location, uint /* unsigned int */ programID, SCNRenderer renderer);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Unavailable (PlatformName.iOS)]
[NoTV]
[NoMacCatalyst]
@@ -2879,6 +2943,10 @@ interface SCNProgramDelegate {
[Export ("program:handleError:")]
void HandleError (SCNProgram program, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[NoiOS]
[NoTV]
[Deprecated (PlatformName.MacOSX, 10, 10, message: "Use the SCNProgram's Opaque property instead.")]
@@ -3608,6 +3676,9 @@ interface ISCNSceneRenderer { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface SCNSceneRenderer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("delegate", ArgumentSemantic.Weak), NullAllowed]
NSObject WeakSceneRendererDelegate { get; set; }
@@ -3628,15 +3699,24 @@ interface SCNSceneRenderer {
[Export ("playing")]
bool Playing { [Bind ("isPlaying")] get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("loops")]
bool Loops { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("pointOfView", ArgumentSemantic.Retain)]
[NullAllowed]
SCNNode PointOfView { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("autoenablesDefaultLighting")]
bool AutoenablesDefaultLighting { get; set; }
@@ -3661,6 +3741,11 @@ interface SCNSceneRenderer {
[Export ("currentTime")]
double CurrentTime { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("hitTest:options:")]
[EditorBrowsable (EditorBrowsableState.Advanced)]
@@ -3674,22 +3759,34 @@ interface SCNSceneRenderer {
[Wrap ("HitTest (thePoint, options.GetDictionary ())")]
SCNHitTestResult [] HitTest (CGPoint thePoint, SCNHitTestOptions options);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("showsStatistics")]
bool ShowsStatistics { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("sceneTime")]
double SceneTimeInSeconds { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[NullAllowed]
[Export ("scene", ArgumentSemantic.Retain)]
SCNScene Scene { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
// It seems swift has this property listed as an optional[0] and an Apple sample[1] sets this to null
// [0]: https://developer.apple.com/documentation/scenekit/scnscenerenderer/1524051-overlayskscene
@@ -3699,26 +3796,51 @@ interface SCNSceneRenderer {
[Export ("overlaySKScene", ArgumentSemantic.Retain)]
SKScene OverlayScene { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("isNodeInsideFrustum:withPointOfView:")]
bool IsNodeInsideFrustum (SCNNode node, SCNNode pointOfView);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("projectPoint:")]
SCNVector3 ProjectPoint (SCNVector3 point);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("unprojectPoint:")]
SCNVector3 UnprojectPoint (SCNVector3 point);
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("prepareObject:shouldAbortBlock:")]
bool Prepare (NSObject obj, [NullAllowed] Func abortHandler);
+ /// The objects to prepare.
+ /// A handler that receives if preparation of all scene resources succeeded, or if not.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Async (XmlDocs = """
@@ -4514,35 +4636,75 @@ interface _SCNShaderModifiers {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface SCNActionable {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("runAction:")]
void RunAction (SCNAction action);
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("runAction:completionHandler:")]
void RunAction (SCNAction action, [NullAllowed] Action block);
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("runAction:forKey:")]
void RunAction (SCNAction action, [NullAllowed] string key);
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("runAction:forKey:completionHandler:")]
void RunAction (SCNAction action, [NullAllowed] string key, [NullAllowed] Action block);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("hasActions")]
bool HasActions ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("actionForKey:")]
[return: NullAllowed]
SCNAction GetAction (string key);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("removeActionForKey:")]
void RemoveAction (string key);
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("removeAllActions")]
void RemoveAllActions ();
@@ -4802,6 +4964,9 @@ interface SCNTechnique : SCNAnimatable, NSCopying, NSSecureCoding {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface SCNTechniqueSupport {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("technique", ArgumentSemantic.Copy)]
diff --git a/src/spritekit.cs b/src/spritekit.cs
index 8f262175ce12..b522a3c76ab7 100644
--- a/src/spritekit.cs
+++ b/src/spritekit.cs
@@ -392,6 +392,10 @@ partial interface SKNode : NSSecureCoding, NSCopying
[Category, BaseType (typeof (NSEvent))]
partial interface SKNodeEvent_NSEvent {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("locationInNode:")]
CGPoint LocationInNode (SKNode node);
}
@@ -402,9 +406,17 @@ partial interface SKNodeEvent_NSEvent {
[Category, BaseType (typeof (UITouch))]
partial interface SKNodeTouches_UITouch {
+ /// To be added.
+ /// The current position of this in the coordinate system of .
+ /// To be added.
+ /// To be added.
[Export ("locationInNode:")]
CGPoint LocationInNode (SKNode node);
+ /// To be added.
+ /// The previous location of this in the coordinate system of .
+ /// To be added.
+ /// To be added.
[Export ("previousLocationInNode:")]
CGPoint PreviousLocationInNode (SKNode node);
}
@@ -3379,10 +3391,16 @@ interface SKWarpGeometry : NSCopying, NSSecureCoding { }
[MacCatalyst (13, 1)]
[Protocol]
interface SKWarpable {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("warpGeometry", ArgumentSemantic.Assign)]
SKWarpGeometry WarpGeometry { get; set; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("subdivisionLevels")]
nint SubdivisionLevels { get; set; }
diff --git a/src/storekit.cs b/src/storekit.cs
index 0027ccd06fef..c7e5ef931e94 100644
--- a/src/storekit.cs
+++ b/src/storekit.cs
@@ -461,6 +461,10 @@ interface ISKPaymentTransactionObserver { }
[Deprecated (PlatformName.TvOS, 18, 0 /* Apple's replacement requires Swift */ )]
interface SKPaymentTransactionObserver {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("paymentQueue:updatedTransactions:")]
[Abstract]
void UpdatedTransactions (SKPaymentQueue queue, SKPaymentTransaction [] transactions);
@@ -714,6 +718,10 @@ interface ISKProductsRequestDelegate { }
[Model]
[Protocol]
interface SKProductsRequestDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("productsRequest:didReceiveResponse:")]
[Abstract]
[EventArgs ("SKProductsRequestResponse")]
diff --git a/src/uikit.cs b/src/uikit.cs
index e65524cccf31..d50deb54407a 100644
--- a/src/uikit.cs
+++ b/src/uikit.cs
@@ -628,10 +628,18 @@ interface IUICloudSharingControllerDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface UICloudSharingControllerDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("cloudSharingController:failedToSaveShareWithError:")]
void FailedToSaveShare (UICloudSharingController csc, NSError error);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("itemTitleForCloudSharingController:")]
[return: NullAllowed]
@@ -711,6 +719,10 @@ interface UICloudSharingController {
[Category]
[BaseType (typeof (NSAttributedString))]
interface NSAttributedString_NSAttributedStringKitAdditions {
+ /// To be added.
+ /// Returns if the current contains attachments in the specified .
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("containsAttachmentsInRange:")]
bool ContainsAttachments (NSRange range);
@@ -718,6 +730,11 @@ interface NSAttributedString_NSAttributedStringKitAdditions {
[Category, BaseType (typeof (NSMutableAttributedString))]
interface NSMutableAttributedStringKitAdditions {
+ /// To be added.
+ /// Cleans up inconsistencies that can accumulate over many edits.
+ ///
+ /// After edits, s may accumulate inconsistencies. For instance, paragraph styles must apply to entire paragraphs, scripts may be assigned to fonts that support them, and deleting attachment characters requires the corresponding attachment objects to be released. This method performs necessary cleanup.
+ ///
[Export ("fixAttributesInRange:")]
void FixAttributesInRange (NSRange range);
}
@@ -725,9 +742,18 @@ interface NSMutableAttributedStringKitAdditions {
[MacCatalyst (13, 1)]
[Category, BaseType (typeof (NSLayoutConstraint))]
interface NSIdentifier {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("identifier")]
string GetIdentifier ();
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
[Export ("setIdentifier:")]
void SetIdentifier ([NullAllowed] string id);
}
@@ -735,55 +761,119 @@ interface NSIdentifier {
[Category]
[BaseType (typeof (NSCoder))]
interface NSCoder_UIGeometryKeyedCoding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("encodeCGPoint:forKey:")]
void Encode (CGPoint point, string forKey);
+ /// The specified vector.
+ /// Designated key in the receiver archive.
+ /// Encodes the vector and also associates it with the designated key.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("encodeCGVector:forKey:")]
void Encode (CGVector vector, string forKey);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("encodeCGSize:forKey:")]
void Encode (CGSize size, string forKey);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("encodeCGRect:forKey:")]
void Encode (CGRect rect, string forKey);
+ /// The specified affine transform.
+ /// Designated key in the receiver archive.
+ /// Encodes the affine transform and also associates it with the designated key.
+ /// To be added.
[Export ("encodeCGAffineTransform:forKey:")]
void Encode (CGAffineTransform transform, string forKey);
+ /// The specified edge insets.
+ /// Designated key in the receiver archive.
+ /// Encodes the edge insets and also associates them with the designated key.
+ /// To be added.
[Export ("encodeUIEdgeInsets:forKey:")]
void Encode (UIEdgeInsets edgeInsets, string forKey);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("encodeDirectionalEdgeInsets:forKey:")]
void Encode (NSDirectionalEdgeInsets directionalEdgeInsets, string forKey);
+ /// The specified offset.
+ /// Designated key in the receiver archive.
+ /// Encodes the offset and also associates it with the designated key.
+ /// To be added.
[Export ("encodeUIOffset:forKey:")]
void Encode (UIOffset uiOffset, string forKey);
+ /// Key that is identified with the point.
+ /// Decodes and then returns the point structure that is associated with the designated key.
+ /// The point structure that is associated with the designated key.
+ /// To be added.
[Export ("decodeCGPointForKey:")]
CGPoint DecodeCGPoint (string key);
+ /// Key that is identified with the vector.
+ /// Decodes and then returns the vector structure that is associated with the designated key.
+ /// The vector structure that is associated with the designated key.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("decodeCGVectorForKey:")]
CGVector DecodeCGVector (string key);
+ /// Key that is identified with the rect.
+ /// Decodes and then returns the size structure that is associated with the designated key.
+ /// The size structure that is associated with the designated key.
+ /// To be added.
[Export ("decodeCGSizeForKey:")]
CGSize DecodeCGSize (string key);
+ /// Key that is identified with the affine transform.
+ /// Decodes and then returns the rectangle structure that is associated with the designated key.
+ /// The rectangle structure that is associated with the designated key.
+ /// To be added.
[Export ("decodeCGRectForKey:")]
CGRect DecodeCGRect (string key);
+ /// Key identified with the affine transform.
+ /// Decodes and then returns the affine transform structure that is associated with the designated key.
+ /// The affine transform structure that is associated with the designated key.
+ /// To be added.
[Export ("decodeCGAffineTransformForKey:")]
CGAffineTransform DecodeCGAffineTransform (string key);
+ /// Key that is identified with the edge insets.
+ /// Decodes and then returns the edge insets that are associated with the designated key.
+ /// The edge insets that are associated with the designated key.
+ /// To be added.
[Export ("decodeUIEdgeInsetsForKey:")]
UIEdgeInsets DecodeUIEdgeInsets (string key);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("decodeDirectionalEdgeInsetsForKey:")]
NSDirectionalEdgeInsets DecodeDirectionalEdgeInsets (string key);
+ /// Key that is identified with the offset.
+ /// Decodes and then returns the offset that is associated with the designated key.
+ /// The offset that is associated with the designated key
+ /// To be added.
[Export ("decodeUIOffsetForKey:")]
UIOffset DecodeUIOffsetForKey (string key);
}
@@ -1307,10 +1397,16 @@ interface IUIAccessibilityContainerDataTableCell { }
[MacCatalyst (13, 1)]
[Protocol]
interface UIAccessibilityContainerDataTableCell {
+ /// Returns the number of rows that the cell spans.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityRowRange")]
NSRange GetAccessibilityRowRange ();
+ /// Returns the number of columns that the cell spans.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityColumnRange")]
NSRange GetAccessibilityColumnRange ();
@@ -1325,10 +1421,16 @@ interface UIAccessibilityContainerDataTable {
[return: NullAllowed]
IUIAccessibilityContainerDataTableCell GetAccessibilityDataTableCellElement (nuint row, nuint column);
+ /// Gets the number of rows in the table.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityRowCount")]
nuint AccessibilityRowCount { get; }
+ /// Gets the number of columns in the table.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityColumnCount")]
nuint AccessibilityColumnCount { get; }
@@ -1459,10 +1561,19 @@ interface UIAccessibilityCustomRotor {
[BaseType (typeof (NSObject))]
interface NSObject_UIAccessibilityCustomRotor {
+ /// Gets the array of objects appropriate for object.
+ /// To be added.
+ /// To be added.
[Export ("accessibilityCustomRotors")]
[return: NullAllowed]
UIAccessibilityCustomRotor [] GetAccessibilityCustomRotors ();
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// Sets the array of objects appropriate for object.
+ /// To be added.
[Export ("setAccessibilityCustomRotors:")]
void SetAccessibilityCustomRotors ([NullAllowed] UIAccessibilityCustomRotor [] customRotors);
}
@@ -1613,6 +1724,9 @@ interface UIAccessibilityLocationDescriptor {
[MacCatalyst (13, 1)]
[Protocol]
interface UIAccessibilityContentSizeCategoryImageAdjusting {
+ /// Returns if the image can adjust size in reaction to accessibility requirements.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("adjustsImageSizeForAccessibilityContentSizeCategory")]
bool AdjustsImageSizeForAccessibilityContentSizeCategory { get; set; }
@@ -1985,6 +2099,9 @@ interface UIActivityType {
[MacCatalyst (13, 1)]
[Protocol]
interface UIInputViewAudioFeedback {
+ /// Gets a value that tells whether input clicks are enabled.
+ /// To be added.
+ /// To be added.
[Export ("enableInputClicksWhenVisible")]
#if !NET
[Abstract]
@@ -2036,10 +2153,22 @@ interface IUIActivityItemSource { }
[Model]
[Protocol]
interface UIActivityItemSource {
+ /// To be added.
+ /// Returns data that can be used as a placeholder for real data.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("activityViewControllerPlaceholderItem:")]
NSObject GetPlaceholderData (UIActivityViewController activityViewController);
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// The data to be acted upon by the specified actitivtyType.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("activityViewController:itemForActivityType:")]
[return: NullAllowed]
@@ -2463,38 +2592,63 @@ interface IUIViewAnimating { }
[MacCatalyst (13, 1)]
[Protocol]
interface UIViewAnimating {
+ /// The current of the animation.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("state")]
UIViewAnimatingState State { get; }
+ /// Whether the animation is currently running.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("running")]
bool Running { [Bind ("isRunning")] get; }
+ /// Gets or sets the direction of the animation.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("reversed")]
bool Reversed { [Bind ("isReversed")] get; set; }
+ /// Gets or sets the percentage of the property's animation completion.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("fractionComplete")]
nfloat FractionComplete { get; set; }
+ /// Begins the animation.
+ /// To be added.
[Abstract]
[Export ("startAnimation")]
void StartAnimation ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("startAnimationAfterDelay:")]
void StartAnimation (double delay);
+ /// Pauses the animation.
+ /// To be added.
[Abstract]
[Export ("pauseAnimation")]
void PauseAnimation ();
+ /// To be added.
+ /// Stops the animation at the current position.
+ /// To be added.
[Abstract]
[Export ("stopAnimation:")]
void StopAnimation (bool withoutFinishing);
+ /// To be added.
+ /// Finishes the animation. Must be preceded by call to .
+ /// To be added.
[Abstract]
[Export ("finishAnimationAtPosition:")]
void FinishAnimation (UIViewAnimatingPosition finalPosition);
@@ -2582,6 +2736,9 @@ interface IUIViewControllerPreviewing { }
[MacCatalyst (13, 1)]
interface UIViewControllerPreviewing {
+ /// Developers override this method to return a that can prevent the preview press from interfering with the app's other gesture recognizers.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Replaced by 'UIContextMenuInteraction'.")]
@@ -2589,6 +2746,9 @@ interface UIViewControllerPreviewing {
[Export ("previewingGestureRecognizerForFailureRelationship")]
UIGestureRecognizer PreviewingGestureRecognizerForFailureRelationship { get; }
+ /// A weak reference to an object that responds to the delegate protocol for this type.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Replaced by 'UIContextMenuInteraction'.")]
@@ -2601,6 +2761,9 @@ NSObject WeakDelegate {
[Wrap ("WeakDelegate")]
IUIViewControllerPreviewingDelegate Delegate { get; }
+ /// Developers override this method to return the that contains the that stays sharp during the previewing press.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Replaced by 'UIContextMenuInteraction'.")]
@@ -2608,6 +2771,9 @@ NSObject WeakDelegate {
[Export ("sourceView")]
UIView SourceView { get; }
+ /// Developers override this method to return the section of their view that stays sharp while the surrounding content blurs.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Replaced by 'UIContextMenuInteraction'.")]
@@ -2623,6 +2789,11 @@ interface IUIViewControllerPreviewingDelegate { }
[MacCatalyst (13, 1)]
[BaseType (typeof (NSObject))]
interface UIViewControllerPreviewingDelegate {
+ /// The context in which the 3D Touch is occurring..
+ /// The location where the 3D touch is occurring.
+ /// Method that is called when the user has pressed a source view, blurring the remainder of the screen, so that a preview view controller can be returned.
+ /// To be added.
+ /// To be added.
[Deprecated (PlatformName.iOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Replaced by 'UIContextMenuInteraction'.")]
@@ -2630,6 +2801,10 @@ interface UIViewControllerPreviewingDelegate {
[Export ("previewingContext:viewControllerForLocation:")]
UIViewController GetViewControllerForPreview (IUIViewControllerPreviewing previewingContext, CGPoint location);
+ /// The context in which the 3D Touch is occurring.
+ /// The to which the app should transfer control.
+ /// Method that is called to allow the developer to prepare the commit view.
+ /// To be added.
[Deprecated (PlatformName.iOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.TvOS, 13, 0, message: "Replaced by 'UIContextMenuInteraction'.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Replaced by 'UIContextMenuInteraction'.")]
@@ -3758,6 +3933,9 @@ interface UIAttachmentBehavior {
[MacCatalyst (13, 1)]
[Protocol]
interface UIContentSizeCategoryAdjusting {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("adjustsFontForContentSizeCategory")]
@@ -4119,22 +4297,45 @@ interface IUICoordinateSpace { }
[MacCatalyst (13, 1)]
[NoMac]
interface UICoordinateSpace {
+ /// Gets the bounding rectangle of the object in its own coordinate space.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("bounds")]
CGRect Bounds { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("convertPoint:toCoordinateSpace:")]
CGPoint ConvertPointToCoordinateSpace (CGPoint point, IUICoordinateSpace coordinateSpace);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("convertPoint:fromCoordinateSpace:")]
CGPoint ConvertPointFromCoordinateSpace (CGPoint point, IUICoordinateSpace coordinateSpace);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("convertRect:toCoordinateSpace:")]
CGRect ConvertRectToCoordinateSpace (CGRect rect, IUICoordinateSpace coordinateSpace);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("convertRect:fromCoordinateSpace:")]
CGRect ConvertRectFromCoordinateSpace (CGRect rect, IUICoordinateSpace coordinateSpace);
@@ -4437,6 +4638,10 @@ interface UIApplicationDelegate {
// "If you’d like the Magic Tap gesture to perform the same action from anywhere within your app, it is more
// appropriate to implement the accessibilityPerformMagicTap method in your app delegate."
// ref: http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/Accessibility/AccessibilityfromtheViewControllersPerspective.html
+ /// Performs the most important action of the app. Often, this is toggling the most important state of the app.
+ ///
+ /// if the action succeeded.
+ /// To be added.
[NoTV]
[NoMacCatalyst]
[Export ("accessibilityPerformMagicTap")]
@@ -5433,6 +5638,10 @@ interface IUICollectionViewDataSourcePrefetching { }
[MacCatalyst (13, 1)]
interface UICollectionViewDataSourcePrefetching {
+ /// To be added.
+ /// To be added.
+ /// Developers override this method to prefetch the data at the specified .
+ /// To be added.
[Abstract]
[Export ("collectionView:prefetchItemsAtIndexPaths:")]
void PrefetchItems (UICollectionView collectionView, NSIndexPath [] indexPaths);
@@ -5467,6 +5676,11 @@ interface UICollectionViewDataSource {
[Export ("collectionView:numberOfItemsInSection:")]
nint GetItemsCount (UICollectionView collectionView, nint section);
+ /// The collection view that originated the request.
+ /// To be added.
+ /// Gets a cell.
+ /// A collection view cell.
+ /// To be added.
[Abstract]
[Export ("collectionView:cellForItemAtIndexPath:")]
UICollectionViewCell GetCell (UICollectionView collectionView, NSIndexPath indexPath);
@@ -7491,12 +7705,18 @@ interface UIDynamicAnimatorDelegate {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// The dynamic animator is about to resume animations.
+ /// To be added.
[Export ("dynamicAnimatorWillResume:")]
void WillResume (UIDynamicAnimator animator);
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// Called when a pause is required in an animation's dynamic behavior.
+ /// To be added.
[Export ("dynamicAnimatorDidPause:")]
void DidPause (UIDynamicAnimator animator);
}
@@ -7636,14 +7856,23 @@ interface UIDynamicItemBehavior {
[Protocol]
[Model]
interface UIDynamicItem {
+ /// The center of the dynamic item.
+ /// The center point.
+ /// To be added.
[Abstract]
[Export ("center")]
CGPoint Center { get; set; }
+ /// Called in an instance where the dynamic animator requires the bounds of a dynamic item be returned.
+ /// Dynamic item bounds.
+ /// To be added.
[Abstract]
[Export ("bounds")]
CGRect Bounds { get; }
+ /// The rotation of the dynamic item.
+ /// Item rotation.
+ /// To be added.
[Abstract]
[Export ("transform")]
CGAffineTransform Transform { get; set; }
@@ -8699,48 +8928,72 @@ interface UITextInputTraits {
#if !NET
[Abstract]
#endif
+ /// The used by the .
+ /// To be added.
+ /// To be added.
[Export ("autocapitalizationType")]
UITextAutocapitalizationType AutocapitalizationType { get; set; }
#if !NET
[Abstract]
#endif
+ /// The used by the .
+ /// To be added.
+ /// To be added.
[Export ("autocorrectionType")]
UITextAutocorrectionType AutocorrectionType { get; set; }
#if !NET
[Abstract]
#endif
+ /// The used by the .
+ /// To be added.
+ /// To be added.
[Export ("keyboardType")]
UIKeyboardType KeyboardType { get; set; }
#if !NET
[Abstract]
#endif
+ /// The used by the
+ /// To be added.
+ /// To be added.
[Export ("keyboardAppearance")]
UIKeyboardAppearance KeyboardAppearance { get; set; }
#if !NET
[Abstract]
#endif
+ /// The form of the return key for the .
+ /// To be added.
+ /// To be added.
[Export ("returnKeyType")]
UIReturnKeyType ReturnKeyType { get; set; }
#if !NET
[Abstract]
#endif
+ /// Whether the return key is automatically enabled.
+ /// To be added.
+ /// To be added.
[Export ("enablesReturnKeyAutomatically")]
bool EnablesReturnKeyAutomatically { get; set; }
#if !NET
[Abstract]
#endif
+ /// Whether the entered text should be hidden.
+ /// To be added.
+ /// To be added.
[Export ("secureTextEntry")]
bool SecureTextEntry { [Bind ("isSecureTextEntry")] get; set; }
#if !NET
[Abstract]
#endif
+ /// Gets or sets a value that tells whether spell-checking is on, off, or if spell-checking will be enabled only when auto-complete is enabled (default).
+ /// To be added.
+ /// To be added.
[Export ("spellCheckingType")]
UITextSpellCheckingType SpellCheckingType { get; set; }
@@ -9132,14 +9385,22 @@ interface IUIKeyInput { }
[MacCatalyst (13, 1)]
[Protocol]
interface UIKeyInput : UITextInputTraits {
+ /// Gets a value that tells whether the key input has text in it.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("hasText")]
bool HasText { get; }
+ /// To be added.
+ /// Inserts text at the cursor.
+ /// To be added.
[Abstract]
[Export ("insertText:")]
void InsertText (string text);
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("deleteBackward")]
void DeleteBackward ();
@@ -9171,6 +9432,9 @@ interface IUITextInput : INativeObject { }
[MacCatalyst (13, 1)]
[Protocol]
interface UITextInput : UIKeyInput {
+ /// The range of a document's selected text.
+ /// If there is no current specified selection, then it is set to .
+ /// If the specified range has length, it specifies currently selected text; if zero length, it specifies only the caret at the insertion point.
[Abstract]
[NullAllowed] // by default this property is null
// This is declared as ArgumentSemantic.Copy, but UITextRange doesn't conform to NSCopying.
@@ -9178,19 +9442,31 @@ interface UITextInput : UIKeyInput {
[Export ("selectedTextRange")]
UITextRange SelectedTextRange { get; set; }
+ /// Attribute dictionary describing how text should be drawn.
+ /// Strings indicating style definition.
+ /// This is marked to indicate the necessity for unique visual treatment in display.
[Abstract]
[NullAllowed] // by default this property is null
[Export ("markedTextStyle", ArgumentSemantic.Copy)]
NSDictionary MarkedTextStyle { get; set; }
+ /// The position of text indicating the beginning of a document.
+ /// Gets the beginning of the document.
+ /// To be added.
[Abstract]
[Export ("beginningOfDocument")]
UITextPosition BeginningOfDocument { get; }
+ /// The position of text indicating the beginning of a document.
+ /// Gets the end of the document.
+ /// To be added.
[Abstract]
[Export ("endOfDocument")]
UITextPosition EndOfDocument { get; }
+ /// Indicates a weak input delegate.
+ /// Automatically assigned at runtime.
+ /// To be added.
[Abstract]
[Export ("inputDelegate", ArgumentSemantic.Assign), NullAllowed]
NSObject WeakInputDelegate { get; set; }
@@ -9198,6 +9474,9 @@ interface UITextInput : UIKeyInput {
[Wrap ("WeakInputDelegate")]
IUITextInputDelegate InputDelegate { get; set; }
+ /// Indicates a weak tokenizer.
+ /// Standard units of granularity including characters, words, lines, and paragraphs.
+ /// To be added.
[Abstract]
[Export ("tokenizer")]
NSObject WeakTokenizer { get; }
@@ -9211,26 +9490,48 @@ interface UITextInput : UIKeyInput {
[Export ("selectionAffinity")]
UITextStorageDirection SelectionAffinity { get; set; }
+ /// A UITextRange object indicating the range of a document's text.
+ /// Gets all the text that is specified within a certain range.
+ /// Document substring falling within a certain specified range.
+ /// To be added.
[Abstract]
[Export ("textInRange:")]
string TextInRange (UITextRange range);
+ /// The range of text to be replaced.
+ /// A string defining text replacement within a "range".
+ /// Replaces document text within a specified range.
+ /// To be added.
[Abstract]
[Export ("replaceRange:withText:")]
void ReplaceText (UITextRange range, string text);
+ /// The currently marked range of text in a given document.
+ /// If there is no text marked, the value is ; all else is provisionally inserted requiring user confirmation.
+ /// To be added.
[Abstract]
[Export ("markedTextRange")]
UITextRange MarkedTextRange { get; }
+ /// Text that is to be marked.
+ /// An NSRange object indicating the range of a document's text.
+ /// Sets the marked text and marks it as the current selection.
+ /// To be added.
[Abstract]
[Export ("setMarkedText:selectedRange:")]
void SetMarkedText (string markedText, NSRange selectedRange);
+ /// Unmarks all currently marked text within a document
+ /// Subsequent to this method being called, the value of "MarkedTextRange" is set to .
[Abstract]
[Export ("unmarkText")]
void UnmarkText ();
+ /// Initial text position.
+ /// Ultimate text position.
+ /// Gets a specified text range.
+ /// Defined text range.
+ /// To be added.
[Abstract]
[Export ("textRangeFromPosition:toPosition:")]
UITextRange GetTextRange (UITextPosition fromPosition, UITextPosition toPosition);
@@ -9243,22 +9544,47 @@ interface UITextInput : UIKeyInput {
[Export ("positionFromPosition:inDirection:offset:")]
UITextPosition GetPosition (UITextPosition fromPosition, UITextLayoutDirection inDirection, nint offset);
+ /// First text position.
+ /// Second text position.
+ /// Gets a comparison of one position to another.
+ /// An indication as to whether two text positions are identical or if one is prior to the other.
+ /// To be added.
[Abstract]
[Export ("comparePosition:toPosition:")]
NSComparisonResult ComparePosition (UITextPosition first, UITextPosition second);
+ /// Initial text position.
+ /// Ultimate text position.
+ /// Gets the number of visible characters between two defined text positions.
+ /// The number of visible characters between the two specified text positions.
+ /// To be added.
[Abstract]
[Export ("offsetFromPosition:toPosition:")]
nint GetOffsetFromPosition (UITextPosition fromPosition, UITextPosition toPosition);
+ /// A UITextRange object indicating the range of a document's text.
+ /// A constant indicating direction for storage.
+ /// Gets a position within a specified range.
+ /// A position within a specified range.
+ /// To be added.
[Abstract]
[Export ("positionWithinRange:farthestInDirection:")]
UITextPosition GetPositionWithinRange (UITextRange range, UITextLayoutDirection direction);
+ /// A text positioning object identifying a location in a document.
+ /// Constant indicating layout direction.
+ /// Gets a character range within the limits of a defined direction.
+ /// Gets a range from a given text position to the ultimate extent in a defined direction.
+ /// To be added.
[Abstract]
[Export ("characterRangeByExtendingPosition:inDirection:")]
UITextRange GetCharacterRange (UITextPosition byExtendingPosition, UITextLayoutDirection direction);
+ /// A positioning object that indicates a specified location.
+ /// Constant indicating layout direction.
+ /// Gets the base writing direction for a text position.
+ /// A text-range object that represents the distance from position to the farthest extent in a given direction.
+ /// To be added.
[Abstract]
[Export ("baseWritingDirectionForPosition:inDirection:")]
NSWritingDirection GetBaseWritingDirection (UITextPosition forPosition, UITextStorageDirection direction);
@@ -9267,22 +9593,44 @@ interface UITextInput : UIKeyInput {
[Export ("setBaseWritingDirection:forRange:")]
void SetBaseWritingDirectionforRange (NSWritingDirection writingDirection, UITextRange range);
+ ///
+ /// A UITextRange object indicating the range of a document's text.
+ /// Gets the first rectangle enclosing a specified range of document text.
+ /// The first rectangle enclosing a specified range.
+ /// To be added.
[Abstract]
[Export ("firstRectForRange:")]
CGRect GetFirstRectForRange (UITextRange range);
+ /// A positioning object that indicates a specified location.
+ /// A rectangle used for drawing a caret at a given insertion point.
+ /// A rectangle defining an area for drawing a caret.
+ /// To be added.
[Abstract]
[Export ("caretRectForPosition:")]
CGRect GetCaretRectForPosition ([NullAllowed] UITextPosition position);
+ /// Point in a view where document text is being drawn.
+ /// Gets the closest position in a document that exists to a given point.
+ /// The closest position to the point.
+ /// To be added.
[Abstract]
[Export ("closestPositionToPoint:")]
UITextPosition GetClosestPositionToPoint (CGPoint point);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("closestPositionToPoint:withinRange:")]
UITextPosition GetClosestPositionToPoint (CGPoint point, UITextRange withinRange);
+ /// Point in a view where document text is being drawn.
+ /// Gets the character or a range of characters in a document that exists at a given point.
+ /// Gets the point in a view where the document text is being drawn.
+ /// To be added.
[Abstract]
[Export ("characterRangeAtPoint:")]
UITextRange GetCharacterRangeAtPoint (CGPoint point);
@@ -9347,6 +9695,10 @@ interface UITextInput : UIKeyInput {
[Export ("insertDictationResult:")]
void InsertDictationResult (NSArray dictationResult);
+ /// A UITextRange object indicating the range of a document's text.
+ /// Gets an array of selection rects that corresponds to a text range.
+ /// An array of selection rects.
+ /// To be added.
[Abstract]
[Export ("selectionRectsForRange:")]
UITextSelectionRect [] GetSelectionRects (UITextRange range);
@@ -9498,18 +9850,42 @@ interface IUITextInputTokenizer { }
[Model]
[Protocol]
interface UITextInputTokenizer {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// The range for the text enclosing a text position in a text unit of the specified granularity in the specified direction.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("rangeEnclosingPosition:withGranularity:inDirection:")]
UITextRange GetRangeEnclosingPosition (UITextPosition position, UITextGranularity granularity, UITextDirection direction);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Returns whether the position is at a type of boundary taken from the direction.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("isPosition:atBoundary:inDirection:")]
bool ProbeDirection (UITextPosition probePosition, UITextGranularity atBoundary, UITextDirection inDirection);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Returns the next type of boundary in the direction from .
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("positionFromPosition:toBoundary:inDirection:")]
UITextPosition GetPosition (UITextPosition fromPosition, UITextGranularity toBoundary, UITextDirection inDirection);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Returns whether the position is within a type of text unit taken from the direction.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("isPosition:withinTextUnit:inDirection:")]
bool ProbeDirectionWithinTextUnit (UITextPosition probePosition, UITextGranularity withinTextUnit, UITextDirection inDirection);
@@ -9528,18 +9904,30 @@ interface UITextInputStringTokenizer : UITextInputTokenizer {
[Model]
[Protocol]
interface UITextInputDelegate {
+ /// To be added.
+ /// The selection in is about to change.
+ /// To be added.
[Abstract]
[Export ("selectionWillChange:")]
void SelectionWillChange (IUITextInput uiTextInput);
+ /// To be added.
+ /// The selection in changed.
+ /// To be added.
[Abstract]
[Export ("selectionDidChange:")]
void SelectionDidChange (IUITextInput uiTextInput);
+ /// To be added.
+ /// The text in is about to change.
+ /// To be added.
[Abstract]
[Export ("textWillChange:")]
void TextWillChange (IUITextInput textInput);
+ /// To be added.
+ /// The text in changed.
+ /// To be added.
[Abstract]
[Export ("textDidChange:")]
void TextDidChange (IUITextInput textInput);
@@ -9948,6 +10336,9 @@ interface UIActivityIndicatorView : NSCoding {
[MacCatalyst (13, 1)]
[Protocol]
interface UIItemProviderPresentationSizeProviding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("preferredPresentationSizeForItemProvider")]
CGSize PreferredPresentationSizeForItemProvider { get; }
@@ -11060,6 +11451,9 @@ interface UIControl : UIContextMenuInteractionDelegate {
[Model]
[Protocol]
interface UIBarPositioning {
+ /// Gets the bar position.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("barPosition")]
UIBarPosition BarPosition { get; }
@@ -13416,10 +13810,20 @@ interface IUIPageViewControllerDataSource { }
[Model]
[Protocol]
interface UIPageViewControllerDataSource {
+ /// To be added.
+ /// To be added.
+ /// Retrieves the previous UIViewController.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("pageViewController:viewControllerBeforeViewController:"), DelegateName ("UIPageViewGetViewController"), DefaultValue (null)]
UIViewController GetPreviousViewController (UIPageViewController pageViewController, UIViewController referenceViewController);
+ /// To be added.
+ /// To be added.
+ /// Returns the next UIViewController.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("pageViewController:viewControllerAfterViewController:"), DelegateName ("UIPageViewGetViewController"), DefaultValue (null)]
UIViewController GetNextViewController (UIPageViewController pageViewController, UIViewController referenceViewController);
@@ -13942,6 +14346,10 @@ interface UIPickerViewAccessibilityDelegate {
[Model]
[Protocol]
interface UIPickerViewDataSource {
+ /// To be added.
+ /// Returns the number of components.
+ /// To be added.
+ /// To be added.
[Export ("numberOfComponentsInPickerView:")]
[Abstract]
nint GetComponentCount (UIPickerView pickerView);
@@ -13970,26 +14378,48 @@ interface UIPickerViewModel : UIPickerViewDataSource, UIPickerViewDelegate {
[Model]
[Protocol]
partial interface UIContentContainer {
+ /// Gets the preferred size for the content of the container.
+ /// The preferred of the contents of this .
+ /// To be added.
[Abstract]
[Export ("preferredContentSize")]
CGSize PreferredContentSize { get; }
+ /// The child .
+ /// Notifies this controller that the preferred size for content for a specified child container has changed.
+ /// To be added.
[Abstract]
[Export ("preferredContentSizeDidChangeForChildContentContainer:")]
void PreferredContentSizeDidChangeForChildContentContainer (IUIContentContainer container);
+ /// The child .
+ /// Notifies this container that auto layout resized a specified child container.
+ /// To be added.
[Abstract]
[Export ("systemLayoutFittingSizeDidChangeForChildContentContainer:")]
void SystemLayoutFittingSizeDidChangeForChildContentContainer (IUIContentContainer container);
+ /// The child container whose size is being request.
+ /// The of the .
+ /// Gets the size of the content of the specified child by using the size of the parent container.
+ /// The of the content of the .
+ /// To be added.
[Abstract]
[Export ("sizeForChildContentContainer:withParentContainerSize:")]
CGSize GetSizeForChildContentContainer (IUIContentContainer contentContainer, CGSize parentContainerSize);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("viewWillTransitionToSize:withTransitionCoordinator:")]
void ViewWillTransitionToSize (CGSize toSize, IUIViewControllerTransitionCoordinator coordinator);
+ /// The new trait collection.
+ /// The coordinating the transition.This parameter can be .
+ /// Notifies this that its trait collection will change to , as coordinated by .
+ /// To be added.
[Abstract]
[Export ("willTransitionToTraitCollection:withTransitionCoordinator:")]
void WillTransitionToTraitCollection (UITraitCollection traitCollection, [NullAllowed] IUIViewControllerTransitionCoordinator coordinator);
@@ -14115,6 +14545,9 @@ interface IUIPreviewActionItem { }
[MacCatalyst (13, 1)]
[Protocol]
interface UIPreviewActionItem {
+ /// Gets or sets the title of the preview action.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("title")]
string Title { get; }
@@ -15789,6 +16222,9 @@ interface IUISearchResultsUpdating { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
partial interface UISearchResultsUpdating {
+ /// To be added.
+ /// Updates the results when the user makes changes or when the search bar becomes the first responder.
+ /// To be added.
[Abstract]
[Export ("updateSearchResultsForSearchController:")]
void UpdateSearchResultsForSearchController (UISearchController searchController);
@@ -17297,6 +17733,10 @@ interface IUITableViewDataSourcePrefetching { }
[MacCatalyst (13, 1)]
[Protocol]
interface UITableViewDataSourcePrefetching {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("tableView:prefetchRowsAtIndexPaths:")]
void PrefetchRows (UITableView tableView, NSIndexPath [] indexPaths);
@@ -17814,6 +18254,11 @@ interface UITableViewDataSource {
[Abstract]
nint RowsInSection (UITableView tableView, nint section);
+ /// Table view requesting the cell.
+ /// Location of the row where the cell will be displayed.
+ /// Returns a cell that can be inserted at .
+ /// To be added.
+ /// To be added.
[Export ("tableView:cellForRowAtIndexPath:")]
[Abstract]
UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath);
@@ -19160,14 +19605,23 @@ interface IUITimingCurveProvider { }
[MacCatalyst (13, 1)]
[Protocol]
interface UITimingCurveProvider : NSCoding, NSCopying {
+ /// The kind of timing curve this is (see ).
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("timingCurveType")]
UITimingCurveType TimingCurveType { get; }
+ /// For objects, the timing parameters. Otherwise, .
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("cubicTimingParameters")]
UICubicTimingParameters CubicTimingParameters { get; }
+ /// For objects, the timing parameters. Otherwise, .
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("springTimingParameters")]
UISpringTimingParameters SpringTimingParameters { get; }
@@ -20278,6 +20732,10 @@ interface UIView : UIAppearance, UIAppearanceContainer, UIAccessibility, UIDynam
[MacCatalyst (13, 1)]
[Category, BaseType (typeof (UIView))]
interface UIView_UITextField {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("endEditing:")]
bool EndEditing (bool force);
}
@@ -20287,9 +20745,16 @@ interface UIView_UITextField {
[BaseType (typeof (UILayoutGuide))]
interface UILayoutGuide_UIConstraintBasedLayoutDebugging {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("constraintsAffectingLayoutForAxis:")]
NSLayoutConstraint [] GetConstraintsAffectingLayout (UILayoutConstraintAxis axis);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("hasAmbiguousLayout")]
bool GetHasAmbiguousLayout ();
}
@@ -21206,6 +21671,9 @@ interface UIViewController : NSCoding, UIAppearanceContainer, UIContentContainer
[MacCatalyst (13, 1)]
[Protocol, Model, BaseType (typeof (NSObject))]
partial interface UIViewControllerContextTransitioning {
+ /// The UIView that is the superview of the UIView's involved in the transition.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("containerView")]
UIView ContainerView { get; }
@@ -21224,10 +21692,16 @@ partial interface UIViewControllerContextTransitioning {
[Export ("isInteractive")]
bool IsInteractive { get; }
+ /// Whether the transition was cancelled.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("transitionWasCancelled")]
bool TransitionWasCancelled { get; }
+ /// The presentation style of the transition.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("presentationStyle")]
UIModalPresentationStyle PresentationStyle { get; }
@@ -21236,34 +21710,60 @@ partial interface UIViewControllerContextTransitioning {
[Export ("updateInteractiveTransition:")]
void UpdateInteractiveTransition (nfloat percentComplete);
+ /// User interactions have signaled the end of the transition.
+ /// To be added.
[Abstract]
[Export ("finishInteractiveTransition")]
void FinishInteractiveTransition ();
+ /// Indicates that a user action canceled the transition.
+ /// To be added.
[Abstract]
[Export ("cancelInteractiveTransition")]
void CancelInteractiveTransition ();
+ /// To be added.
+ /// Indicates the transition animation has completed.
+ /// To be added.
[Abstract]
[Export ("completeTransition:")]
void CompleteTransition (bool didComplete);
+ /// Should be a value from .
+ /// Retrieves the UIViewController associated with the specified uiTransitionKey.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("viewControllerForKey:")]
UIViewController GetViewControllerForKey (NSString uiTransitionKey);
+ /// To be added.
+ /// The beginning RectangleF for the Frame of the specified UIViewController's UIView.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("initialFrameForViewController:")]
CGRect GetInitialFrameForViewController (UIViewController vc);
+ /// To be added.
+ /// The ending RectangleF for the Frame of the specified UIViewController's UIView.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("finalFrameForViewController:")]
CGRect GetFinalFrameForViewController (UIViewController vc);
+ /// To be added.
+ /// Returns the to- or from-key for the transition.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("viewForKey:")]
UIView GetViewFor (NSString uiTransitionContextToOrFromKey);
+ /// Gets the transform that indicates the angle of the rotation that is applied during the transition.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("targetTransform")]
CGAffineTransform TargetTransform { get; }
@@ -21286,10 +21786,19 @@ interface IUITraitEnvironment { }
[Protocol]
[MacCatalyst (13, 1)]
partial interface UITraitEnvironment {
+ /// Gets the trait collection that describes the environment.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("traitCollection")]
UITraitCollection TraitCollection { get; }
+ /// To be added.
+ /// The trait collection that describes the environmnent changed.
+ ///
+ ///
+ ///
+ ///
[Deprecated (PlatformName.iOS, 17, 0, message: "Use the 'UITraitChangeObservable' protocol instead.")]
[Deprecated (PlatformName.MacCatalyst, 17, 0, message: "Use the 'UITraitChangeObservable' protocol instead.")]
[Deprecated (PlatformName.TvOS, 17, 0, message: "Use the 'UITraitChangeObservable' protocol instead.")]
@@ -21653,10 +22162,17 @@ partial interface UITransitionContext {
[Model, BaseType (typeof (NSObject))]
[Protocol]
partial interface UIViewControllerAnimatedTransitioning {
+ /// To be added.
+ /// The duration, in seconds, of the transition.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("transitionDuration:")]
double TransitionDuration (IUIViewControllerContextTransitioning transitionContext);
+ /// To be added.
+ /// Animate the transition with the animator object.
+ /// To be added.
[Abstract]
[Export ("animateTransition:")]
void AnimateTransition (IUIViewControllerContextTransitioning transitionContext);
@@ -21681,6 +22197,9 @@ interface IUIViewControllerAnimatedTransitioning { }
[Model, BaseType (typeof (NSObject))]
[Protocol]
partial interface UIViewControllerInteractiveTransitioning {
+ /// To be added.
+ /// Sets up and begins a view controller interactive transition.
+ /// To be added.
[Abstract]
[Export ("startInteractiveTransition:")]
void StartInteractiveTransition (IUIViewControllerContextTransitioning transitionContext);
@@ -21793,55 +22312,100 @@ partial interface UIPercentDrivenInteractiveTransition : UIViewControllerInterac
[MacCatalyst (13, 1)]
[Protocol]
partial interface UIViewControllerTransitionCoordinatorContext {
+ ///
+ /// if the transition is explicitly animated or uses presentation.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("isAnimated")]
bool IsAnimated { get; }
+ /// The presentation style whose transition is being modified.
+ /// Use if the transition is not a modal presentation or dismissal.
+ /// To be added.
[Abstract]
[Export ("presentationStyle")]
UIModalPresentationStyle PresentationStyle { get; }
+ ///
+ /// iff is and the transition was initiated interactively.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("initiallyInteractive")]
bool InitiallyInteractive { get; }
+ ///
+ /// if the transition is currently interactive.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("isInteractive")]
bool IsInteractive { get; }
+ ///
+ /// if the interactive transition is ending and the user canceled the transition.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("isCancelled")]
bool IsCancelled { get; }
+ /// The expected duration, in seconds, of the transition, if it is noninteractive.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("transitionDuration")]
double TransitionDuration { get; }
+ /// The percent of completion of a transition when it moves to the noninteractive completion phase.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("percentComplete")]
nfloat PercentComplete { get; }
+ /// The completion velocity for the view controller transition.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("completionVelocity")]
nfloat CompletionVelocity { get; }
+ /// The UIViewAnimationCurve for the view controller transition.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("completionCurve")]
UIViewAnimationCurve CompletionCurve { get; }
+ /// To be added.
+ /// The UIViewController for the specified uiTransitionKey.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("viewControllerForKey:")]
UIViewController GetViewControllerForKey (NSString uiTransitionKey);
+ /// The container UIView for the view controller transition animation.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("containerView")]
UIView ContainerView { get; }
- [Abstract]
+ /// Returns the transform that describes the rotation of the transition.
+ /// To be added.
+ /// To be added.
+ [Abstract]
[MacCatalyst (13, 1)]
[Export ("targetTransform")]
CGAffineTransform TargetTransform ();
+ /// To be added.
+ /// Gets the transition that is specified by .
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("viewForKey:")]
@@ -21864,15 +22428,29 @@ interface IUIViewControllerTransitionCoordinatorContext { }
[MacCatalyst (13, 1)]
[Protocol]
partial interface UIViewControllerTransitionCoordinator : UIViewControllerTransitionCoordinatorContext {
+ /// To be added.
+ /// To be added.
+ /// Runs the animation simultaneously with the animated view controller transition, and runs when it is finished.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("animateAlongsideTransition:completion:")]
bool AnimateAlongsideTransition (Action animate,
[NullAllowed] Action completion);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Runs the animation inside of , and runs when it is finished.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("animateAlongsideTransitionInView:animation:completion:")]
bool AnimateAlongsideTransitionInView (UIView view, Action animation, [NullAllowed] Action completion);
+ /// To be added.
+ /// Developers should not use this deprecated method. Developers should use 'NotifyWhenInteractionChanges' instead.
+ /// To be added.
[Abstract]
[Deprecated (PlatformName.iOS, 10, 0, message: "Use 'NotifyWhenInteractionChanges' instead.")]
[Deprecated (PlatformName.TvOS, 10, 0, message: "Use 'NotifyWhenInteractionChanges' instead.")]
@@ -21892,6 +22470,9 @@ interface IUIViewControllerTransitionCoordinator { }
[MacCatalyst (13, 1)]
[Category, BaseType (typeof (UIViewController))]
partial interface TransitionCoordinator_UIViewController {
+ /// The IUIViewControllerTransitionCoordinator coordinating the transition of the specified UIViewController.
+ /// To be added.
+ /// To be added.
[Export ("transitionCoordinator")]
[return: NullAllowed]
IUIViewControllerTransitionCoordinator GetTransitionCoordinator ();
@@ -22027,15 +22608,45 @@ interface IUIWebViewDelegate { }
[Model]
[Protocol]
interface UIWebViewDelegate {
+ ///
+ /// To be added.
+ ///
+ ///
+ /// To be added.
+ ///
+ ///
+ /// To be added.
+ ///
+ /// Whether the UIWebView should begin loading data.
+ /// To be added.
+ /// To be added.
[Export ("webView:shouldStartLoadWithRequest:navigationType:"), DelegateName ("UIWebLoaderControl"), DefaultValue ("true")]
bool ShouldStartLoad (UIWebView webView, NSUrlRequest request, UIWebViewNavigationType navigationType);
+ ///
+ /// To be added.
+ ///
+ /// Indicates that loading has begun.
+ /// To be added.
[Export ("webViewDidStartLoad:"), EventArgs ("UIWebView")]
void LoadStarted (UIWebView webView);
+ ///
+ /// To be added.
+ ///
+ /// Indicates that loading has completed.
+ /// To be added.
[Export ("webViewDidFinishLoad:"), EventArgs ("UIWebView"), EventName ("LoadFinished")]
void LoadingFinished (UIWebView webView);
+ ///
+ /// To be added.
+ ///
+ ///
+ /// To be added.
+ ///
+ /// Indicates that the UIWebView's attempt to load data failed.
+ /// To be added.
[Export ("webView:didFailLoadWithError:"), EventArgs ("UIWebErrorArgs", false, true), EventName ("LoadError")]
void LoadFailed (UIWebView webView, NSError error);
}
@@ -22686,15 +23297,26 @@ interface UISplitViewControllerDelegate {
[Category]
[BaseType (typeof (UIViewController))]
partial interface UISplitViewController_UIViewController {
+ /// Returns te split view controller for the nested view controller.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("splitViewController", ArgumentSemantic.Retain)]
[return: NullAllowed]
UISplitViewController GetSplitViewController ();
+ /// To be added.
+ /// To be added.
+ /// Collapses the secondary view controller on
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("collapseSecondaryViewController:forSplitViewController:")]
void CollapseSecondaryViewController (UIViewController secondaryViewController, UISplitViewController splitViewController);
+ /// To be added.
+ /// Returns the separate secondary view controller for .
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("separateSecondaryViewControllerForSplitViewController:")]
UIViewController SeparateSecondaryViewControllerForSplitViewController (UISplitViewController splitViewController);
@@ -24042,6 +24664,14 @@ interface UISpringTimingParameters : UITimingCurveProvider {
[Category, BaseType (typeof (NSString))]
interface UIStringDrawing {
// note: duplicate from maccore's foundation.cs where it's binded on NSString2 (for Classic)
+ /// To be added.
+ /// To be added.
+ /// Developers should not use this deprecated method. Developers should use 'NSString.DrawString (CGPoint, UIStringAttributes)' instead.
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This can be used from a background thread.
+ ///
[ThreadSafe]
[Deprecated (PlatformName.iOS, 7, 0, message: "Use 'NSString.DrawString (CGPoint, UIStringAttributes)' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'NSString.DrawString (CGPoint, UIStringAttributes)' instead.")]
@@ -24070,6 +24700,14 @@ interface UIStringDrawing {
CGSize DrawString (CGPoint point, nfloat width, UIFont font, nfloat minFontSize, ref nfloat actualFontSize, UILineBreakMode breakMode, UIBaselineAdjustment adjustment);
// note: duplicate from maccore's foundation.cs where it's binded on NSString2 (for Classic)
+ /// To be added.
+ /// To be added.
+ /// Developers should use M:Foundation.NSString.DrawString(CoreGraphics.CGRect, UIKit.UIStringAttributes) rather than this deprecated method.
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This can be used from a background thread.
+ ///
[ThreadSafe]
[Deprecated (PlatformName.iOS, 7, 0, message: "Use 'NSString.DrawString (CGRect, UIStringAttributes)' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'NSString.DrawString (CGRect, UIStringAttributes)' instead.")]
@@ -24077,6 +24715,15 @@ interface UIStringDrawing {
CGSize DrawString (CGRect rect, UIFont font);
// note: duplicate from maccore's foundation.cs where it's binded on NSString2 (for Classic)
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Developers should use M:Foundation.NSString.DrawString(CoreGraphics.CGRect, UIKit.UIStringAttributes) rather than this deprecated method.
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This can be used from a background thread.
+ ///
[ThreadSafe]
[Deprecated (PlatformName.iOS, 7, 0, message: "Use 'NSString.DrawString (CGRect, UIStringAttributes)' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'NSString.DrawString (CGRect, UIStringAttributes)' instead.")]
@@ -24084,6 +24731,16 @@ interface UIStringDrawing {
CGSize DrawString (CGRect rect, UIFont font, UILineBreakMode mode);
// note: duplicate from maccore's foundation.cs where it's binded on NSString2 (for Classic)
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Developers should use M:Foundation.NSString.DrawString(CoreGraphics.CGRect, UIKit.UIStringAttributes) rather than this deprecated method.
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This can be used from a background thread.
+ ///
[ThreadSafe]
[Deprecated (PlatformName.iOS, 7, 0, message: "Use 'NSString.DrawString (CGRect, UIStringAttributes)' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'NSString.DrawString (CGRect, UIStringAttributes)' instead.")]
@@ -24091,6 +24748,13 @@ interface UIStringDrawing {
CGSize DrawString (CGRect rect, UIFont font, UILineBreakMode mode, UITextAlignment alignment);
// note: duplicate from maccore's foundation.cs where it's binded on NSString2 (for Classic)
+ /// To be added.
+ /// Developers should use rather than this deprecated method.
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This can be used from a background thread.
+ ///
[ThreadSafe]
[Deprecated (PlatformName.iOS, 7, 0, message: "Use 'NSString.GetSizeUsingAttributes (UIStringAttributes)' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'NSString.GetSizeUsingAttributes (UIStringAttributes)' instead.")]
@@ -24105,6 +24769,14 @@ interface UIStringDrawing {
CGSize StringSize (UIFont font, nfloat forWidth, UILineBreakMode breakMode);
// note: duplicate from maccore's foundation.cs where it's binded on NSString2 (for Classic)
+ /// To be added.
+ /// To be added.
+ /// The calculated size of the string if rendered with the or , whichever is smaller.
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This can be used from a background thread.
+ ///
[ThreadSafe]
[Deprecated (PlatformName.iOS, 7, 0, message: "Use 'NSString.GetBoundingRect (CGSize, NSStringDrawingOptions, UIStringAttributes, NSStringDrawingContext)' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'NSString.GetBoundingRect (CGSize, NSStringDrawingOptions, UIStringAttributes, NSStringDrawingContext)' instead.")]
@@ -24112,6 +24784,15 @@ interface UIStringDrawing {
CGSize StringSize (UIFont font, CGSize constrainedToSize);
// note: duplicate from maccore's foundation.cs where it's binded on NSString2 (for Classic)
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// Gets the necessary to display this .
+ /// To be added.
+ ///
+ /// (More documentation for this node is coming)
+ /// This can be used from a background thread.
+ ///
[ThreadSafe]
[Deprecated (PlatformName.iOS, 7, 0, message: "Use 'NSString.GetBoundingRect (CGSize, NSStringDrawingOptions, UIStringAttributes, NSStringDrawingContext)' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'NSString.GetBoundingRect (CGSize, NSStringDrawingOptions, UIStringAttributes, NSStringDrawingContext)' instead.")]
@@ -24130,21 +24811,45 @@ interface UIStringDrawing {
[Category, BaseType (typeof (NSString))]
interface NSStringDrawing {
+ /// To be added.
+ /// Returns the size of the rendered string.
+ /// To be added.
+ /// To be added.
[Export ("sizeWithAttributes:")]
CGSize WeakGetSizeUsingAttributes ([NullAllowed] NSDictionary attributes);
+ /// To be added.
+ /// The SizeF of the string, if rendered with the specified .
+ /// To be added.
+ /// To be added.
[Wrap ("WeakGetSizeUsingAttributes (This, attributes.GetDictionary ())")]
CGSize GetSizeUsingAttributes (UIStringAttributes attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawAtPoint:withAttributes:")]
void WeakDrawString (CGPoint point, [NullAllowed] NSDictionary attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("WeakDrawString (This, point, attributes.GetDictionary ())")]
void DrawString (CGPoint point, UIStringAttributes attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("drawInRect:withAttributes:")]
void WeakDrawString (CGRect rect, [NullAllowed] NSDictionary attributes);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Wrap ("WeakDrawString (This, rect, attributes.GetDictionary ())")]
void DrawString (CGRect rect, UIStringAttributes attributes);
}
@@ -24219,14 +24924,23 @@ partial interface UIInputViewController : UITextInputDelegate {
[MacCatalyst (13, 1)]
[Protocol]
interface UIInteraction {
+ /// Gets the view that owns the interaction.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("view", ArgumentSemantic.Weak)]
UIView View { get; }
+ /// The view that will contain the interaction.
+ /// Method that is called just before the interaction is added to the provided .
+ /// To be added.
[Abstract]
[Export ("willMoveToView:")]
void WillMoveToView ([NullAllowed] UIView view);
+ /// The view that now contains the interaction.
+ /// Method that is called after the interaction is added to the provided .
+ /// To be added.
[Abstract]
[Export ("didMoveToView:")]
void DidMoveToView ([NullAllowed] UIView view);
@@ -24236,11 +24950,17 @@ interface UIInteraction {
[Protocol, Model]
[BaseType (typeof (NSObject))]
partial interface UITextDocumentProxy : UIKeyInput {
+ /// Gets the textual context before the insertion point for this object.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("documentContextBeforeInput")]
[NullAllowed]
string DocumentContextBeforeInput { get; }
+ /// Gets the textual context after the insertion point for this object.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("documentContextAfterInput")]
[NullAllowed]
@@ -24346,6 +25066,9 @@ interface UILayoutGuide : NSCoding
[Model]
[BaseType (typeof (NSObject))]
interface UILayoutSupport {
+ /// Gets the length of the part of a view controller's area that is covered with see-through UIKit bars.
+ /// To be added.
+ /// To be added.
[Export ("length")]
[Abstract]
nfloat Length { get; }
@@ -24383,6 +25106,10 @@ interface IUILayoutSupport { }
[MacCatalyst (13, 1)]
[Protocol]
interface UIAccessibilityIdentification {
+ /// Uniquely identifies this for the purposes of accessibility.
+ ///
+ /// uniquely identifying this for the purposes of accessibility.
+ /// To be added.
[Abstract]
[NullAllowed] // by default this property is null
[Export ("accessibilityIdentifier", ArgumentSemantic.Copy)]
@@ -24617,6 +25344,10 @@ interface IUIDocumentMenuDelegate { }
[MacCatalyst (13, 1)]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'UIDocumentPickerViewController' instead.")]
partial interface UIDocumentMenuDelegate {
+ /// To be added.
+ /// To be added.
+ /// The user chose a document.
+ /// To be added.
[Abstract]
[Export ("documentMenu:didPickDocumentPicker:"), EventArgs ("UIDocumentMenuDocumentPicked")]
void DidPickDocumentPicker (UIDocumentMenuViewController documentMenu, UIDocumentPickerViewController documentPicker);
@@ -24624,6 +25355,9 @@ partial interface UIDocumentMenuDelegate {
#if !NET
[Abstract]
#endif
+ /// To be added.
+ /// The user dismissed the picker.
+ /// To be added.
[Export ("documentMenuWasCancelled:")]
void WasCancelled (UIDocumentMenuViewController documentMenu);
}
@@ -24729,6 +25463,10 @@ interface IUIDocumentPickerDelegate { }
[Protocol, Model]
[BaseType (typeof (NSObject))]
partial interface UIDocumentPickerDelegate {
+ /// The controller that made the request.
+ /// The URLS that was picked.
+ /// Developers should not use this deprecated method. Implement 'DidPickDocument (UIDocumentPickerViewController, NSUrl[])' instead.
+ /// The meaning will differ dependent upon the mode of the document picker.
[Deprecated (PlatformName.iOS, 11, 0, message: "Implement 'DidPickDocument (UIDocumentPickerViewController, NSUrl[])' instead.")]
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Implement 'DidPickDocument (UIDocumentPickerViewController, NSUrl[])' instead.")]
#if !NET
@@ -24793,10 +25531,20 @@ partial interface UIDocumentPickerExtensionViewController {
[Protocol]
interface UIDataSourceModelAssociation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("modelIdentifierForElementAtIndexPath:inView:")]
string GetModelIdentifier (NSIndexPath idx, UIView view);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("indexPathForElementWithModelIdentifier:inView:")]
NSIndexPath GetIndexPath (string identifier, UIView view);
@@ -24806,6 +25554,10 @@ interface UIDataSourceModelAssociation {
[Protocol]
interface UIAccessibilityReadingContent {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityLineNumberForPoint:")]
nint GetAccessibilityLineNumber (CGPoint point);
@@ -24818,6 +25570,9 @@ interface UIAccessibilityReadingContent {
[Export ("accessibilityFrameForLineNumber:")]
CGRect GetAccessibilityFrame (nint lineNumber);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("accessibilityPageContent")]
string GetAccessibilityPageContent ();
@@ -24839,15 +25594,26 @@ interface UIAccessibilityReadingContent {
[MacCatalyst (13, 1)]
[Protocol]
interface UIGuidedAccessRestrictionDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("guidedAccessRestrictionIdentifiers")]
string [] GetGuidedAccessRestrictionIdentifiers { get; }
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("guidedAccessRestrictionWithIdentifier:didChangeState:")]
[EventArgs ("UIGuidedAccessRestriction")]
void GuidedAccessRestrictionChangedState (string restrictionIdentifier, UIGuidedAccessRestrictionState newRestrictionState);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("textForGuidedAccessRestrictionWithIdentifier:")]
string GetTextForGuidedAccessRestriction (string restrictionIdentifier);
@@ -24902,6 +25668,9 @@ interface IUIFocusAnimationContext { }
[MacCatalyst (13, 1)]
[Protocol]
interface UIFocusAnimationContext {
+ /// Gets the time, in seconds, that the animation takes to complete.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("duration")]
double Duration { get; }
@@ -24989,6 +25758,9 @@ interface IUIFocusItem { }
[MacCatalyst (13, 1)]
[Protocol]
interface UIFocusItem : UIFocusEnvironment {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("canBecomeFocused")]
bool CanBecomeFocused { get; }
@@ -25243,6 +26015,9 @@ interface UIPreviewInteractionDelegate {
[EventArgs ("NSPreviewInteractionPreviewUpdate")]
void DidUpdatePreviewTransition (UIPreviewInteraction previewInteraction, nfloat transitionProgress, bool ended);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("previewInteractionDidCancel:")]
void DidCancel (UIPreviewInteraction previewInteraction);
@@ -25293,6 +26068,9 @@ interface UIFocusEnvironment {
#if !NET
[Abstract]
#endif
+ /// If not , indicates the child that should receive focus by default.
+ /// To be added.
+ /// To be added.
[NullAllowed, Export ("preferredFocusedView", ArgumentSemantic.Weak)]
[Deprecated (PlatformName.iOS, 10, 0, message: "Use 'PreferredFocusEnvironments' instead.")]
[Deprecated (PlatformName.TvOS, 10, 0, message: "Use 'PreferredFocusEnvironments' instead.")]
@@ -25300,18 +26078,30 @@ interface UIFocusEnvironment {
[Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'PreferredFocusEnvironments' instead.")]
UIView PreferredFocusedView { get; }
+ /// When this is the active focus environment, requests a focus update, which can potentially change the . (See also .)
+ /// To be added.
[Abstract]
[Export ("setNeedsFocusUpdate")]
void SetNeedsFocusUpdate ();
+ /// If any focus environment has a pending update, this method forces an immediate focus update. Unlike , this method may be called by any , whether it currently contains focus or not.
+ /// To be added.
[Abstract]
[Export ("updateFocusIfNeeded")]
void UpdateFocusIfNeeded ();
+ /// To be added.
+ /// Called prior to the current object either losing or receiving focus. If either focus environment returns , the focus update is canceled.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("shouldUpdateFocusInContext:")]
bool ShouldUpdateFocus (UIFocusUpdateContext context);
+ /// Metadata for the focus change.
+ /// The T:UIKit.UIFocusAnimationController coordinating the focus-change animations.
+ /// Delegate method called shortly after focus has changed to a new .
+ /// To be added.
[Abstract]
[Export ("didUpdateFocusInContext:withAnimationCoordinator:")]
void DidUpdateFocus (UIFocusUpdateContext context, UIFocusAnimationCoordinator coordinator);
@@ -25466,10 +26256,16 @@ interface IUITextDropRequest { }
[MacCatalyst (13, 1)]
[Protocol]
interface UIDragAnimating {
+ /// An action that animates UI elements.
+ /// Adds the specified animation action.
+ /// To be added.
[Abstract]
[Export ("addAnimations:")]
void AddAnimations (Action animations);
+ /// The completion handler to add.
+ /// Adds the specified block to run when the animation ends.
+ /// To be added.
[Abstract]
[Export ("addCompletion:")]
void AddCompletion (Action completion);
@@ -25480,26 +26276,47 @@ interface UIDragAnimating {
[MacCatalyst (13, 1)]
[Protocol]
interface UIDragDropSession {
+ /// Gets the drag items that are in the session.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("items")]
UIDragItem [] Items { get; }
+ /// The view to query.
+ /// Returns the location of the drag-drop activity in the coordinate frame of the specified .
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("locationInView:")]
CGPoint LocationInView ([NullAllowed] UIView view);
+ /// Gets a Boolean value that tells whether the session can move items within a single app.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("allowsMoveOperation")]
bool AllowsMoveOperation { get; }
+ /// Gets a Boolean value that tells whether the drag activity is confined to the originating app.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("restrictedToDraggingApplication")]
bool RestrictedToDraggingApplication { [Bind ("isRestrictedToDraggingApplication")] get; }
+ /// The type identifiers to check.
+ /// TReturns a Boolean value that tells whether the session contains at least one item that is described by any of the specified type identifiers.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("hasItemsConformingToTypeIdentifiers:")]
bool HasConformingItems (string [] typeIdentifiers);
+ /// The class of objects to check.
+ /// Returns a Boolean value that tells whether the session can load objects of the specified class.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("canLoadObjectsOfClass:")]
bool CanLoadObjects (Class itemProviderReadingClass);
@@ -25597,6 +26414,9 @@ interface UIDragPreviewTarget : NSCopying {
[MacCatalyst (13, 1)]
[Protocol]
interface UIDragSession : UIDragDropSession {
+ /// Gets or sets the optional object that contains context information visible to the originating activity.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("localContext", ArgumentSemantic.Strong)]
NSObject LocalContext { get; set; }
@@ -25640,6 +26460,11 @@ interface UIDragInteraction : UIInteraction {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface UIDragInteractionDelegate {
+ /// The interaction that is making the request.
+ /// The drag session to add initial items to.
+ /// Method that is called to get the items that will begin a drag interaction.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dragInteraction:itemsForBeginningSession:")]
UIDragItem [] GetItemsForBeginningSession (UIDragInteraction interaction, IUIDragSession session);
@@ -25893,14 +26718,25 @@ interface UIDropProposal : NSCopying {
[MacCatalyst (13, 1)]
[Protocol]
interface UIDropSession : UIDragDropSession, NSProgressReporting {
+ /// The local in-app drag session for the drop session.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("localDragSession")]
IUIDragSession LocalDragSession { get; }
+ /// Gets or sets the style of the drop indicator.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("progressIndicatorStyle", ArgumentSemantic.Assign)]
UIDropSessionProgressIndicatorStyle ProgressIndicatorStyle { get; set; }
+ /// The class of objects to load.
+ /// Handler to run after the objecs are loaded.
+ /// When implemented by the developer, instantiates every object in the drop session that has the type that is specified by the parameter.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("loadObjectsOfClass:completion:")]
NSProgress LoadObjects (Class itemProviderReadingClass, Action completion);
@@ -25954,6 +26790,12 @@ interface UITargetedDragPreview : NSCopying {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface UICollectionViewDragDelegate {
+ /// The originating collection view.
+ /// The drag session to which to add items.
+ /// The index path to the item.
+ /// Returns the items that were used to begin the drag operation, if present.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("collectionView:itemsForBeginningDragSession:atIndexPath:")]
UIDragItem [] GetItemsForBeginningDragSession (UICollectionView collectionView, IUIDragSession session, NSIndexPath indexPath);
@@ -26014,6 +26856,10 @@ interface UICollectionViewDragDelegate {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface UICollectionViewDropDelegate {
+ /// The receiving collection view.
+ /// The drop coordinator to use.
+ /// Method that is called to drop data into a collection view.
+ /// To be added.
[Abstract]
[Export ("collectionView:performDropWithCoordinator:")]
void PerformDrop (UICollectionView collectionView, IUICollectionViewDropCoordinator coordinator);
@@ -26093,34 +26939,67 @@ interface UICollectionViewDropProposal {
[MacCatalyst (13, 1)]
[Protocol]
interface UICollectionViewDropCoordinator {
+ /// Gets the drag items.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("items")]
IUICollectionViewDropItem [] Items { get; }
+ /// Gets the index path for the insertion.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("destinationIndexPath")]
NSIndexPath DestinationIndexPath { get; }
+ /// Gets the drop proposal.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("proposal")]
UICollectionViewDropProposal Proposal { get; }
+ /// Gets the drop session.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("session")]
IUIDropSession Session { get; }
+ /// The item to drop.
+ /// The placeholder into which to drop the item.
+ /// Drops the drag item to the specified placeholder.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropItem:toPlaceholder:")]
IUICollectionViewDropPlaceholderContext DropItemToPlaceholder (UIDragItem dragItem, UICollectionViewDropPlaceholder placeholder);
+ /// The item to drop.
+ /// The index path to which to drop the item.
+ /// Drops the drag item into the item at the specified item index path.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropItem:toItemAtIndexPath:")]
IUIDragAnimating DropItemToItem (UIDragItem dragItem, NSIndexPath itemIndexPath);
+ /// The item to drop.
+ /// The index path to the item into which to drop.
+ /// The destination drop rectangle.
+ /// Drops the drag item into the specified rectangle, in the coordinate system of the item at the specified item index path.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropItem:intoItemAtIndexPath:rect:")]
IUIDragAnimating DropItemIntoItem (UIDragItem dragItem, NSIndexPath itemIndexPath, CGRect rect);
+ /// The item to drop.
+ /// The target to which to drop the item.
+ /// Drops the drag item to the specified target.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropItem:toTarget:")]
IUIDragAnimating DropItemToTarget (UIDragItem dragItem, UIDragPreviewTarget target);
@@ -26157,14 +27036,23 @@ interface UICollectionViewDropPlaceholder {
[MacCatalyst (13, 1)]
[Protocol]
interface UICollectionViewDropItem {
+ /// Gets the drag item.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dragItem")]
UIDragItem DragItem { get; }
+ /// Gets the source index path for the item if it is being dragged from another location in the collection view.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("sourceIndexPath")]
NSIndexPath SourceIndexPath { get; }
+ /// Gets the preview size for the drag item.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("previewSize")]
CGSize PreviewSize { get; }
@@ -26175,18 +27063,30 @@ interface UICollectionViewDropItem {
[MacCatalyst (13, 1)]
[Protocol]
interface UICollectionViewDropPlaceholderContext : UIDragAnimating {
+ /// Gets the drag item that is represented by the placeholder.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dragItem")]
UIDragItem DragItem { get; }
+ /// Handler to run as the placeholder is replaced. Takes the index path where the content should drop.
+ /// Replaces the placeholder cell with dropped content.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("commitInsertionWithDataSourceUpdates:")]
bool CommitInsertion (Action dataSourceUpdates);
+ /// Removes the placeholder from the view.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("deletePlaceholder")]
bool DeletePlaceholder ();
+ /// Marks the placeholder cell as requiring updated content.
+ /// To be added.
[Abstract]
[Export ("setNeedsCellUpdate")]
void SetNeedsCellUpdate ();
@@ -26198,6 +27098,12 @@ interface UICollectionViewDropPlaceholderContext : UIDragAnimating {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface UITableViewDragDelegate {
+ /// The originating table view.
+ /// The session to which to add the items.
+ /// The index path to the dragged row.
+ /// Returns a list of any items that are present at the beginning of a drag session.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("tableView:itemsForBeginningDragSession:atIndexPath:")]
UIDragItem [] GetItemsForBeginningDragSession (UITableView tableView, IUIDragSession session, NSIndexPath indexPath);
@@ -26258,6 +27164,10 @@ interface UITableViewDragDelegate {
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface UITableViewDropDelegate {
+ /// The receiving table view.
+ /// The drop coordinator.
+ /// Method that is called to drop data into a table view.
+ /// To be added.
[Abstract]
[Export ("tableView:performDropWithCoordinator:")]
void PerformDrop (UITableView tableView, IUITableViewDropCoordinator coordinator);
@@ -26334,34 +27244,67 @@ interface UITableViewDropProposal {
[MacCatalyst (13, 1)]
[Protocol]
interface UITableViewDropCoordinator {
+ /// Gets the drag items.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("items")]
IUITableViewDropItem [] Items { get; }
+ /// Gets the index path for the insertion.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("destinationIndexPath")]
NSIndexPath DestinationIndexPath { get; }
+ /// Gets the drop proposal.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("proposal")]
UITableViewDropProposal Proposal { get; }
+ /// Gets the drop session.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("session")]
IUIDropSession Session { get; }
+ /// The item to drop.
+ /// The placeholder into which to drop the item.
+ /// Drops the drag item to the specified placeholder.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropItem:toPlaceholder:")]
IUITableViewDropPlaceholderContext DropItemToPlaceholder (UIDragItem dragItem, UITableViewDropPlaceholder placeholder);
+ /// The item to drop.
+ /// The index path at which to insert the item.
+ /// Drops the drag item to the row at the specified index path.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropItem:toRowAtIndexPath:")]
IUIDragAnimating DropItemToRow (UIDragItem dragItem, NSIndexPath indexPath);
+ /// The item to drop.
+ /// The index path of the row into which to drop the item.
+ /// The rectangle into which to animate the drop.
+ /// Drops the drag item into the specified rectangle, in the coordinate system of the item at the specified item index path.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropItem:intoRowAtIndexPath:rect:")]
IUIDragAnimating DropItemIntoRow (UIDragItem dragItem, NSIndexPath indexPath, CGRect rect);
+ /// The item to drop.
+ /// The drop target.
+ /// Drops the drag item to the specified target.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropItem:toTarget:")]
IUIDragAnimating DropItemToTarget (UIDragItem dragItem, UIDragPreviewTarget target);
@@ -26398,14 +27341,23 @@ interface UITableViewDropPlaceholder {
[MacCatalyst (13, 1)]
[Protocol]
interface UITableViewDropItem {
+ /// Gets the drag item.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dragItem")]
UIDragItem DragItem { get; }
+ /// Gets the source index path for the item if it is being dragged from another location in the table view.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("sourceIndexPath")]
NSIndexPath SourceIndexPath { get; }
+ /// Gets the preview size for the drag item.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("previewSize")]
CGSize PreviewSize { get; }
@@ -26416,14 +27368,24 @@ interface UITableViewDropItem {
[MacCatalyst (13, 1)]
[Protocol]
interface UITableViewDropPlaceholderContext : UIDragAnimating {
+ /// Gets the drag item that is represented by the placeholder.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dragItem")]
UIDragItem DragItem { get; }
+ /// The handler that will update the view's data source.
+ /// Replaces the placeholder cell with dropped content.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("commitInsertionWithDataSourceUpdates:")]
bool CommitInsertion (Action dataSourceUpdates);
+ /// Removes the placeholder from the view.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("deletePlaceholder")]
bool DeletePlaceholder ();
@@ -26465,18 +27427,30 @@ interface UITextDragPreviewRenderer {
[MacCatalyst (13, 1)]
[Protocol]
interface UITextDraggable : UITextInput {
+ /// Gets or sets a delegate for managing drag source behavior.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("textDragDelegate", ArgumentSemantic.Weak)]
IUITextDragDelegate TextDragDelegate { get; set; }
+ /// Gets the drag interaction on the text view.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("textDragInteraction")]
UIDragInteraction TextDragInteraction { get; }
+ /// Gets a Boolean value that tells whether a drag session is active for the text view.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("textDragActive")]
bool TextDragActive { [Bind ("isTextDragActive")] get; }
+ /// Gets a value that controls how formatting is displayed in dragged text.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("textDragOptions", ArgumentSemantic.Assign)]
UITextDragOptions TextDragOptions { get; set; }
@@ -26535,22 +27509,37 @@ interface UITextDragDelegate {
[MacCatalyst (13, 1)]
[Protocol]
interface UITextDragRequest {
+ /// Gets the range of the text that is being dragged.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dragRange")]
UITextRange DragRange { get; }
+ /// Gets the items that the system would supply if the developer does not provide a custom implementation.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("suggestedItems")]
UIDragItem [] SuggestedItems { get; }
+ /// Gets the items that are currently in the drag session.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("existingItems")]
UIDragItem [] ExistingItems { get; }
+ /// Gets a Boolean value that tells whether there is a selection that can be dragged.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("selected")]
bool Selected { [Bind ("isSelected")] get; }
+ /// Gets the drag session.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dragSession")]
IUIDragSession DragSession { get; }
@@ -26584,14 +27573,23 @@ interface UITextDropProposal : NSCopying {
[MacCatalyst (13, 1)]
[Protocol]
interface UITextDroppable : UITextInput, UITextPasteConfigurationSupporting {
+ /// Gets or sets a delegate for managing text drop behavior.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("textDropDelegate", ArgumentSemantic.Weak)]
IUITextDropDelegate TextDropDelegate { get; set; }
+ /// Gets the drop interaction on the text view.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("textDropInteraction")]
UIDropInteraction TextDropInteraction { get; }
+ /// Gets a Boolean value that tells whether there is an active text drop session on the view.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("textDropActive")]
bool TextDropActive { [Bind ("isTextDropActive")] get; }
@@ -26671,18 +27669,30 @@ interface UITextDropDelegate {
[MacCatalyst (13, 1)]
[Protocol]
interface UITextDropRequest {
+ /// Gets the text position where dropped text will appear.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropPosition")]
UITextPosition DropPosition { get; }
+ /// Gets the drop proposal that the text view is offering.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("suggestedProposal")]
UITextDropProposal SuggestedProposal { get; }
+ /// Gets a Boolean value that tells whether the drag for the drop started in the same view.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("sameView")]
bool SameView { [Bind ("isSameView")] get; }
+ /// Gets the drop session.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dropSession")]
IUIDropSession DropSession { get; }
@@ -26699,16 +27709,27 @@ interface UIDataSourceTranslating {
[Export ("dataSourceSectionIndexForPresentationSectionIndex:")]
nint GetDataSourceSectionIndex (nint presentationSectionIndex);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("presentationIndexPathForDataSourceIndexPath:")]
[return: NullAllowed]
NSIndexPath GetPresentationIndexPath ([NullAllowed] NSIndexPath dataSourceIndexPath);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("dataSourceIndexPathForPresentationIndexPath:")]
[return: NullAllowed]
NSIndexPath GetDataSourceIndexPath ([NullAllowed] NSIndexPath presentationIndexPath);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("performUsingPresentationValues:")]
void PerformUsingPresentationValues (Action actionsToTranslate);
@@ -26741,6 +27762,11 @@ interface IUISpringLoadedInteractionBehavior { }
[MacCatalyst (13, 1)]
[Protocol]
interface UISpringLoadedInteractionBehavior {
+ /// The interaction to check.
+ /// The context to query.
+ /// Returns a Boolean value that tells whether spring-loading should start or continue for the specified .
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("shouldAllowInteraction:withContext:")]
bool ShouldAllowInteraction (UISpringLoadedInteraction interaction, IUISpringLoadedInteractionContext context);
@@ -26759,6 +27785,10 @@ interface IUISpringLoadedInteractionEffect { }
[MacCatalyst (13, 1)]
[Protocol]
interface UISpringLoadedInteractionEffect {
+ /// The interaction whose state has changed.
+ /// The interaction context.
+ /// Method that is called when the interaction state changes.
+ /// To be added.
[Abstract]
[Export ("interaction:didChangeWithContext:")]
void DidChange (UISpringLoadedInteraction interaction, IUISpringLoadedInteractionContext context);
@@ -26771,18 +27801,31 @@ interface IUISpringLoadedInteractionContext { }
[MacCatalyst (13, 1)]
[Protocol]
interface UISpringLoadedInteractionContext {
+ /// Gets the current state of the spring-loaded interaction.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("state")]
UISpringLoadedInteractionEffectState State { get; }
+ /// Gets or sets the target view to which the spring-loaded interaction is being applied.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("targetView", ArgumentSemantic.Strong)]
UIView TargetView { get; set; }
+ /// Gets or sets the target item of the spring-loaded interaction.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("targetItem", ArgumentSemantic.Strong)]
NSObject TargetItem { get; set; }
+ /// The view whose coordinate system to use.
+ /// Method that is called to get the location of the drag activity in the coordinate system.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("locationInView:")]
CGPoint LocationInView ([NullAllowed] UIView view);
@@ -26793,6 +27836,9 @@ interface UISpringLoadedInteractionContext {
[MacCatalyst (13, 1)]
[Protocol]
interface UISpringLoadedInteractionSupporting {
+ /// Gets or sets a Boolean value that controls whether the object participates in spring-loaded interactions.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("springLoaded")]
bool SpringLoaded { [Bind ("isSpringLoaded")] get; set; }
@@ -26860,6 +27906,9 @@ interface IUITextPasteConfigurationSupporting { }
[MacCatalyst (13, 1)]
[Protocol]
interface UITextPasteConfigurationSupporting : UIPasteConfigurationSupporting {
+ /// Gets the delegate for handling text pasting and text drops.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("pasteDelegate", ArgumentSemantic.Weak)]
IUITextPasteDelegate PasteDelegate { get; set; }
@@ -26921,34 +27970,56 @@ interface IUITextPasteItem { }
[MacCatalyst (13, 1)]
[Protocol]
interface UITextPasteItem {
+ /// Gets the provider that provides the text data for the paste item.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("itemProvider")]
NSItemProvider ItemProvider { get; }
+ /// Gets the context object, if present, that was attached to the item when it was lifted.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("localObject")]
NSObject LocalObject { get; }
+ /// Gets the default attributes for plain text paste items.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("defaultAttributes")]
NSDictionary DefaultAttributes { get; }
+ /// The new attachment value.
+ /// Sets the text result.
+ /// To be added.
[Abstract]
[Export ("setStringResult:")]
void SetStringResult (string @string);
+ /// The new attachment value.
+ /// Sets the string value of the paste item.
+ /// To be added.
[Abstract]
[Export ("setAttributedStringResult:")]
void SetAttributedStringResult (NSAttributedString @string);
+ /// The new attachment value.
+ /// Sets the attachement result to the specified attachment.
+ /// To be added.
[Abstract]
[Export ("setAttachmentResult:")]
void SetAttachmentResult (NSTextAttachment textAttachment);
+ /// Causes the text value to not be provided by its provider.
+ /// To be added.
[Abstract]
[Export ("setNoResult")]
void SetNoResult ();
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setDefaultResult")]
void SetDefaultResult ();
@@ -26995,6 +28066,9 @@ interface IUIPasteConfigurationSupporting { }
[MacCatalyst (16, 0)]
[Protocol]
interface UIPasteConfigurationSupporting {
+ /// The supported by object.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("pasteConfiguration", ArgumentSemantic.Copy)]
UIPasteConfiguration PasteConfiguration { get; set; }
@@ -27251,10 +28325,17 @@ interface IUIFocusItemContainer { }
[NoMac]
[Protocol]
interface UIFocusItemContainer {
+ /// Gets the coordinate space implemenation.
+ /// The coordinate space implemenation.
+ /// To be added.
[Abstract]
[Export ("coordinateSpace")]
IUICoordinateSpace CoordinateSpace { get; }
+ /// The rectangle whose focus items to get.
+ /// Returns a list of all the child focus items within the specified rectangle.
+ /// The list of all the child focus items within the specified rectangle.
+ /// To be added.
[Abstract]
[Export ("focusItemsInRect:")]
IUIFocusItem [] GetFocusItems (CGRect rect);
@@ -27263,14 +28344,23 @@ interface UIFocusItemContainer {
[MacCatalyst (13, 1)]
[Protocol]
interface UIFocusItemScrollableContainer : UIFocusItemContainer {
+ /// Gets or sets the offset into the scrollable content.
+ /// The offset into the scrollable content.
+ /// To be added.
[Abstract]
[Export ("contentOffset", ArgumentSemantic.Assign)]
CGPoint ContentOffset { get; set; }
+ /// Gets or sets the total size of the scrollable content.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("contentSize")]
CGSize ContentSize { get; }
+ /// Gets the visible size of the scrollview container.
+ /// The visible size of the scrollview container.
+ /// To be added.
[Abstract]
[Export ("visibleSize")]
CGSize VisibleSize { get; }
@@ -27279,6 +28369,9 @@ interface UIFocusItemScrollableContainer : UIFocusItemContainer {
[MacCatalyst (13, 1)]
[Protocol]
interface UIUserActivityRestoring {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[MacCatalyst (13, 1)]
[Export ("restoreUserActivityState:")]
diff --git a/src/usernotificationsui.cs b/src/usernotificationsui.cs
index efa6d949bd12..0b0d6b14e072 100644
--- a/src/usernotificationsui.cs
+++ b/src/usernotificationsui.cs
@@ -55,6 +55,9 @@ interface IUNNotificationContentExtension { }
[Protocol]
interface UNNotificationContentExtension {
+ /// The notification that was sent.
+ /// Method that is called when the application is sent a notification.
+ /// To be added.
[Abstract]
[Export ("didReceiveNotification:")]
void DidReceiveNotification (UNNotification notification);
@@ -93,25 +96,39 @@ interface UNNotificationContentExtension {
[BaseType (typeof (NSExtensionContext))]
interface NSExtensionContext_UNNotificationContentExtension {
+ /// Method that is called when the user starts playable notification content.
+ /// To be added.
[Export ("mediaPlayingStarted")]
void MediaPlayingStarted ();
+ /// Method that is called when the user pauses playable notification content.
+ /// To be added.
[Export ("mediaPlayingPaused")]
void MediaPlayingPaused ();
+ /// To be added.
+ /// To be added.
[MacCatalyst (14, 0)]
[Export ("performNotificationDefaultAction")]
void PerformNotificationDefaultAction ();
+ /// To be added.
+ /// To be added.
[MacCatalyst (14, 0)]
[Export ("dismissNotificationContentExtension")]
void DismissNotificationContentExtension ();
// property, but we have to add the two methods since it is a category.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (14, 0)]
[Export ("notificationActions")]
UNNotificationAction [] GetNotificationActions ();
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (14, 0)]
[Export ("setNotificationActions:")]
void SetNotificationActions (UNNotificationAction [] actions);
diff --git a/src/vision.cs b/src/vision.cs
index 66ff94a63b3d..d77b0bd47cad 100644
--- a/src/vision.cs
+++ b/src/vision.cs
@@ -1639,6 +1639,9 @@ interface IVNFaceObservationAccepting { }
[Protocol]
interface VNFaceObservationAccepting {
+ /// Gets or sets the objects in the request.
+ /// To be added.
+ /// To be added.
[Abstract]
[NullAllowed, Export ("inputFaceObservations", ArgumentSemantic.Copy)]
VNFaceObservation [] InputFaceObservations { get; set; }
@@ -3493,6 +3496,9 @@ interface VNTrackingRequest {
[Protocol]
interface VNRequestRevisionProviding {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("requestRevision")]
VNRequestRevision RequestRevision { get; }
diff --git a/src/webkit.cs b/src/webkit.cs
index 57595de1fbe9..f2ac68ca9d91 100644
--- a/src/webkit.cs
+++ b/src/webkit.cs
@@ -484,6 +484,10 @@ interface IDomNodeFilter { }
#endif
[BaseType (typeof (NSObject), Name = "DOMNodeFilter")]
interface DomNodeFilter {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("acceptNode:")]
[Abstract]
short AcceptNode (DomNode n);
@@ -1181,14 +1185,28 @@ interface IDomEventTarget { }
[Protocol]
[Model]
partial interface DomEventTarget : NSCopying {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("addEventListener:listener:useCapture:")]
[Abstract]
void AddEventListener (string type, IDomEventListener listener, bool useCapture);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("removeEventListener:listener:useCapture:")]
[Abstract]
void RemoveEventListener (string type, IDomEventListener listener, bool useCapture);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("dispatchEvent:")]
[Abstract]
bool DispatchEvent (DomEvent evt);
@@ -1434,6 +1452,9 @@ partial interface DomWheelEvent {
[Model]
[Protocol]
partial interface DomEventListener {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("handleEvent:")]
void HandleEvent (DomEvent evt);
@@ -1911,18 +1932,32 @@ interface IWebDocumentRepresentation { }
[Model]
[Protocol]
partial interface WebDocumentRepresentation {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("setDataSource:")]
void SetDataSource (WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("receivedData:withDataSource:")]
void ReceivedData (NSData data, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("receivedError:withDataSource:")]
void ReceivedError (NSError error, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("finishedLoadingWithDataSource:")]
void FinishedLoading (WebDataSource dataSource);
@@ -1988,6 +2023,10 @@ interface IWebDownloadDelegate { }
[Model]
[Protocol (FormalSince = "10.11")]
partial interface WebDownloadDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("downloadWindowForAuthenticationSheet:"), DelegateName ("WebDownloadRequest"), DefaultValue (null)]
NSWindow OnDownloadWindowForSheet (WebDownload download);
}
@@ -2073,48 +2112,117 @@ interface IWebFrameLoadDelegate { }
[Protocol (FormalSince = "10.11")]
[BaseType (typeof (NSObject))]
partial interface WebFrameLoadDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didStartProvisionalLoadForFrame:"), EventArgs ("WebFrame")]
void StartedProvisionalLoad (WebView sender, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didReceiveServerRedirectForProvisionalLoadForFrame:"), EventArgs ("WebFrame")]
void ReceivedServerRedirectForProvisionalLoad (WebView sender, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didFailProvisionalLoadWithError:forFrame:"), EventArgs ("WebFrameError")]
void FailedProvisionalLoad (WebView sender, NSError error, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didCommitLoadForFrame:"), EventArgs ("WebFrame")]
void CommitedLoad (WebView sender, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didReceiveTitle:forFrame:"), EventArgs ("WebFrameTitle")]
void ReceivedTitle (WebView sender, string title, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didReceiveIcon:forFrame:"), EventArgs ("WebFrameImage")]
void ReceivedIcon (WebView sender, NSImage image, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didFinishLoadForFrame:"), EventArgs ("WebFrame")]
void FinishedLoad (WebView sender, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didFailLoadWithError:forFrame:"), EventArgs ("WebFrameError")]
void FailedLoadWithError (WebView sender, NSError error, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didChangeLocationWithinPageForFrame:"), EventArgs ("WebFrame")]
void ChangedLocationWithinPage (WebView sender, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:willPerformClientRedirectToURL:delay:fireDate:forFrame:"), EventArgs ("WebFrameClientRedirect")]
void WillPerformClientRedirect (WebView sender, NSUrl toUrl, double secondsDelay, NSDate fireDate, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didCancelClientRedirectForFrame:"), EventArgs ("WebFrame")]
void CanceledClientRedirect (WebView sender, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:willCloseFrame:"), EventArgs ("WebFrame")]
void WillCloseFrame (WebView sender, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didClearWindowObject:forFrame:"), EventArgs ("WebFrameScriptFrame")]
void ClearedWindowObject (WebView webView, WebScriptObject windowObject, WebFrame forFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:windowScriptObjectAvailable:"), EventArgs ("WebFrameScriptObject")]
void WindowScriptObjectAvailable (WebView webView, WebScriptObject windowScriptObject);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:didCreateJavaScriptContext:forFrame:"), EventArgs ("WebFrameJavaScriptContext")]
void DidCreateJavaScriptContext (WebView webView, JSContext context, WebFrame frame);
}
@@ -2267,15 +2375,41 @@ interface IWebPolicyDelegate { }
[Model]
[Protocol (FormalSince = "10.11")]
partial interface WebPolicyDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:decidePolicyForNavigationAction:request:frame:decisionListener:"), EventArgs ("WebNavigationPolicy")]
void DecidePolicyForNavigation (WebView webView, NSDictionary actionInformation, NSUrlRequest request, WebFrame frame, NSObject decisionToken);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:decidePolicyForNewWindowAction:request:newFrameName:decisionListener:"), EventArgs ("WebNewWindowPolicy")]
void DecidePolicyForNewWindow (WebView webView, NSDictionary actionInformation, NSUrlRequest request, string newFrameName, NSObject decisionToken);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:decidePolicyForMIMEType:request:frame:decisionListener:"), EventArgs ("WebMimeTypePolicy")]
void DecidePolicyForMimeType (WebView webView, string mimeType, NSUrlRequest request, WebFrame frame, NSObject decisionToken);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:unableToImplementPolicyWithError:frame:"), EventArgs ("WebFailureToImplementPolicy")]
void UnableToImplementPolicy (WebView webView, NSError error, WebFrame frame);
@@ -2472,30 +2606,78 @@ interface IWebResourceLoadDelegate { }
[Model]
[Protocol (FormalSince = "10.11")]
partial interface WebResourceLoadDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:identifierForInitialRequest:fromDataSource:"), DelegateName ("WebResourceIdentifierRequest"), DefaultValue (null)]
NSObject OnIdentifierForInitialRequest (WebView sender, NSUrlRequest request, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:resource:willSendRequest:redirectResponse:fromDataSource:"), DelegateName ("WebResourceOnRequestSend"), DefaultValueFromArgument ("request")]
NSUrlRequest OnSendRequest (WebView sender, NSObject identifier, NSUrlRequest request, NSUrlResponse redirectResponse, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:resource:didReceiveAuthenticationChallenge:fromDataSource:"), EventArgs ("WebResourceAuthenticationChallenge")]
void OnReceivedAuthenticationChallenge (WebView sender, NSObject identifier, NSUrlAuthenticationChallenge challenge, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:resource:didCancelAuthenticationChallenge:fromDataSource:"), EventArgs ("WebResourceCancelledChallenge")]
void OnCancelledAuthenticationChallenge (WebView sender, NSObject identifier, NSUrlAuthenticationChallenge challenge, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:resource:didReceiveResponse:fromDataSource:"), EventArgs ("WebResourceReceivedResponse")]
void OnReceivedResponse (WebView sender, NSObject identifier, NSUrlResponse responseReceived, WebDataSource dataSource);
[Export ("webView:resource:didReceiveContentLength:fromDataSource:"), EventArgs ("WebResourceReceivedContentLength")]
void OnReceivedContentLength (WebView sender, NSObject identifier, nint length, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:resource:didFinishLoadingFromDataSource:"), EventArgs ("WebResourceCompleted")]
void OnFinishedLoading (WebView sender, NSObject identifier, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:resource:didFailLoadingWithError:fromDataSource:"), EventArgs ("WebResourceError")]
void OnFailedLoading (WebView sender, NSObject identifier, NSError withError, WebDataSource dataSource);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:plugInFailedWithError:dataSource:"), EventArgs ("WebResourcePluginError")]
void OnPlugInFailed (WebView sender, NSError error, WebDataSource dataSource);
}
@@ -2508,84 +2690,202 @@ interface IWebUIDelegate { }
[Model]
[Protocol (FormalSince = "10.11")]
partial interface WebUIDelegate {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:createWebViewWithRequest:"), DelegateName ("CreateWebViewFromRequest"), DefaultValue (null)]
WebView UICreateWebView (WebView sender, NSUrlRequest request);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewShow:")]
void UIShow (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:createWebViewModalDialogWithRequest:"), DelegateName ("WebViewCreate"), DefaultValue (null)]
WebView UICreateModalDialog (WebView sender, NSUrlRequest request);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewRunModal:")]
void UIRunModal (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewClose:")]
void UIClose (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewFocus:")]
void UIFocus (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewUnfocus:")]
void UIUnfocus (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewFirstResponder:"), DelegateName ("WebViewGetResponder"), DefaultValue (null)]
NSResponder UIGetFirstResponder (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:makeFirstResponder:"), EventArgs ("WebViewResponder")]
void UIMakeFirstResponder (WebView sender, NSResponder newResponder);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:setStatusText:"), EventArgs ("WebViewStatusText")]
void UISetStatusText (WebView sender, string text);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewStatusText:"), DelegateName ("WebViewGetString"), DefaultValue (null)]
string UIGetStatusText (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewAreToolbarsVisible:"), DelegateName ("WebViewGetBool"), DefaultValue (null)]
bool UIAreToolbarsVisible (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:setToolbarsVisible:"), EventArgs ("WebViewToolBars")]
void UISetToolbarsVisible (WebView sender, bool visible);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewIsStatusBarVisible:"), DelegateName ("WebViewGetBool"), DefaultValue (false)]
bool UIIsStatusBarVisible (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:setStatusBarVisible:"), EventArgs ("WebViewStatusBar")]
void UISetStatusBarVisible (WebView sender, bool visible);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewIsResizable:"), DelegateName ("WebViewGetBool"), DefaultValue (null)]
bool UIIsResizable (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:setResizable:"), EventArgs ("WebViewResizable")]
void UISetResizable (WebView sender, bool resizable);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:setFrame:"), EventArgs ("WebViewFrame")]
void UISetFrame (WebView sender, CGRect newFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewFrame:"), DelegateName ("WebViewGetRectangle"), DefaultValue (null)]
CGRect UIGetFrame (WebView sender);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:"), EventArgs ("WebViewJavaScriptFrame")]
void UIRunJavaScriptAlertPanelMessage (WebView sender, string withMessage, WebFrame initiatedByFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:"), DelegateName ("WebViewConfirmationPanel"), DefaultValue (null)]
bool UIRunJavaScriptConfirmationPanel (WebView sender, string withMessage, WebFrame initiatedByFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:"), DelegateName ("WebViewPromptPanel"), DefaultValue (null)]
string UIRunJavaScriptTextInputPanelWithFrame (WebView sender, string prompt, string defaultText, WebFrame initiatedByFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:runBeforeUnloadConfirmPanelWithMessage:initiatedByFrame:"), DelegateName ("WebViewJavaScriptFrame"), DefaultValue (null)]
bool UIRunBeforeUnload (WebView sender, string message, WebFrame initiatedByFrame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:runOpenPanelForFileButtonWithResultListener:"), EventArgs ("WebViewRunOpenPanel")]
void UIRunOpenPanelForFileButton (WebView sender, IWebOpenPanelResultListener resultListener);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:mouseDidMoveOverElement:modifierFlags:"), EventArgs ("WebViewMouseMoved")]
void UIMouseDidMoveOverElement (WebView sender, NSDictionary elementInformation, NSEventModifierMask modifierFlags);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:contextMenuItemsForElement:defaultMenuItems:"), DelegateName ("WebViewGetContextMenuItems"), DefaultValue (null)]
NSMenuItem [] UIGetContextMenuItems (WebView sender, NSDictionary forElement, NSMenuItem [] defaultMenuItems);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:validateUserInterfaceItem:defaultValidation:"), DelegateName ("WebViewValidateUserInterface"), DefaultValueFromArgument ("defaultValidation")]
bool UIValidateUserInterfaceItem (WebView webView, NSObject validatedUserInterfaceItem, bool defaultValidation);
@@ -2611,6 +2911,11 @@ partial interface WebUIDelegate {
void UIWillPerformDragDestination (WebView webView, WebDragDestinationAction action, NSDraggingInfo draggingInfo);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:dragSourceActionMaskForPoint:"), DelegateName ("DragSourceGetActionMask"), DefaultValue (0)]
#if NET
WebDragSourceAction UIDragSourceActionMask (WebView webView, CGPoint point);
@@ -2618,36 +2923,85 @@ partial interface WebUIDelegate {
NSEventModifierMask UIDragSourceActionMask (WebView webView, CGPoint point);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:willPerformDragSourceAction:fromPoint:withPasteboard:"), EventArgs ("WebViewPerformDrag")]
void UIWillPerformDragSource (WebView webView, WebDragSourceAction action, CGPoint sourcePoint, NSPasteboard pasteboard);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:printFrameView:"), EventArgs ("WebViewPrint")]
void UIPrintFrameView (WebView sender, WebFrameView frameView);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewHeaderHeight:"), DelegateName ("WebViewGetFloat"), DefaultValue (null)]
float UIGetHeaderHeight (WebView sender); /* float, not CGFloat */
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewFooterHeight:"), DelegateName ("WebViewGetFloat"), DefaultValue (null)]
float UIGetFooterHeight (WebView sender); /* float, not CGFloat */
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:drawHeaderInRect:"), EventArgs ("WebViewHeader")]
void UIDrawHeaderInRect (WebView sender, CGRect rect);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:drawFooterInRect:"), EventArgs ("WebViewFooter")]
void UIDrawFooterInRect (WebView sender, CGRect rect);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:runJavaScriptAlertPanelWithMessage:"), EventArgs ("WebViewJavaScript")]
void UIRunJavaScriptAlertPanel (WebView sender, string message);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:runJavaScriptConfirmPanelWithMessage:"), DelegateName ("WebViewPrompt"), DefaultValue (null)]
bool UIRunJavaScriptConfirmPanel (WebView sender, string message);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:runJavaScriptTextInputPanelWithPrompt:defaultText:"), DelegateName ("WebViewJavaScriptInput"), DefaultValue (null)]
string UIRunJavaScriptTextInputPanel (WebView sender, string prompt, string defaultText);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webView:setContentRect:"), EventArgs ("WebViewContent")]
void UISetContentRect (WebView sender, CGRect frame);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Export ("webViewContentRect:"), DelegateName ("WebViewGetRectangle"), DefaultValue (null)]
CGRect UIGetContentRect (WebView sender);
}
@@ -4926,6 +5280,10 @@ interface IWKScriptMessageHandler { }
[BaseType (typeof (NSObject))]
interface WKScriptMessageHandler {
+ /// To be added.
+ /// To be added.
+ /// Method that is called after a message is received from a script.
+ /// To be added.
[Export ("userContentController:didReceiveScriptMessage:")]
[Abstract]
void DidReceiveScriptMessage (WKUserContentController userContentController, WKScriptMessage message);
@@ -4971,10 +5329,18 @@ interface IWKUrlSchemeHandler { }
[MacCatalyst (13, 1)]
[Protocol (Name = "WKURLSchemeHandler")]
interface WKUrlSchemeHandler {
+ /// The web view that is making the request.
+ /// The task for which to load data.
+ /// Starts a URL scheme task that processes a URL and loads data for the specified .
+ /// To be added.
[Abstract]
[Export ("webView:startURLSchemeTask:")]
void StartUrlSchemeTask (WKWebView webView, IWKUrlSchemeTask urlSchemeTask);
+ /// The web view that is making the request.
+ /// The task for which to stop loading data.
+ /// Stops a URL scheme task that processes a URL and loads data for the specified .
+ /// To be added.
[Abstract]
[Export ("webView:stopURLSchemeTask:")]
void StopUrlSchemeTask (WKWebView webView, IWKUrlSchemeTask urlSchemeTask);
@@ -4986,22 +5352,36 @@ interface IWKUrlSchemeTask { }
[MacCatalyst (13, 1)]
[Protocol (Name = "WKURLSchemeTask")]
interface WKUrlSchemeTask {
+ /// Gets the request.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("request", ArgumentSemantic.Copy)]
NSUrlRequest Request { get; }
+ /// The response that was received.
+ /// Method that is called to indicate that the task received a response.
+ /// To be added.
[Abstract]
[Export ("didReceiveResponse:")]
void DidReceiveResponse (NSUrlResponse response);
+ /// The data that was received.
+ /// Method that is called to indicate that the task received the data.
+ /// To be added.
[Abstract]
[Export ("didReceiveData:")]
void DidReceiveData (NSData data);
+ /// Method that is called to indicate that the task is finished.
+ /// To be added.
[Abstract]
[Export ("didFinish")]
void DidFinish ();
+ /// The error that occurred.
+ /// Method that is called to indicate failure.
+ /// To be added.
[Abstract]
[Export ("didFailWithError:")]
void DidFailWithError (NSError error);
@@ -5292,6 +5672,12 @@ void RunJavaScriptTextInputPanel (WKWebView webView, string prompt, [NullAllowed
void RunJavaScriptTextInputPanel (WKWebView webView, string prompt, [NullAllowed] string defaultText, WKFrameInfo frame, WKUIDelegateRunJavaScriptTextInputPanelCallback completionHandler);
#endif
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[iOS (18, 4), NoTV]
[MacCatalyst (18, 4)]
[Export ("webView:runOpenPanelWithParameters:initiatedByFrame:completionHandler:")]
@@ -6165,6 +6551,9 @@ interface IWKPreviewActionItem { }
[MacCatalyst (13, 1)]
[Protocol]
interface WKPreviewActionItem : UIPreviewActionItem {
+ /// Gets the unique identifier of the preview action type.
+ /// The unique identifier of the preview action type.
+ /// To be added.
[Abstract]
[Export ("identifier", ArgumentSemantic.Copy)]
NSString Identifier { get; }
diff --git a/src/xkit.cs b/src/xkit.cs
index c823fe570ba5..f81320730e4f 100644
--- a/src/xkit.cs
+++ b/src/xkit.cs
@@ -3790,6 +3790,9 @@ interface NSTextTab : NSSecureCoding, NSCopying {
// no [Model] since it's not exposed in any API
// only NSTextContainer conforms to it but it's only queried by iOS itself
interface NSTextLayoutOrientationProvider {
+ /// To be added.
+ /// To be added.
+ /// To be added.
[Abstract]
[Export ("layoutOrientation")]
NSTextLayoutOrientation LayoutOrientation {
@@ -3921,18 +3924,50 @@ partial interface NSTextContainer : NSTextLayoutOrientationProvider, NSSecureCod
[ThreadSafe]
[Category, BaseType (typeof (NSString))]
interface NSExtendedStringDrawing {
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("drawWithRect:options:attributes:context:")]
void WeakDrawString (CGRect rect, NSStringDrawingOptions options, [NullAllowed] NSDictionary attributes, [NullAllowed] NSStringDrawingContext context);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("WeakDrawString (This, rect, options, attributes.GetDictionary (), context)")]
void DrawString (CGRect rect, NSStringDrawingOptions options, StringAttributes attributes, [NullAllowed] NSStringDrawingContext context);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ ///
+ /// To be added.
+ /// This parameter can be .
+ ///
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Export ("boundingRectWithSize:options:attributes:context:")]
CGRect WeakGetBoundingRect (CGSize size, NSStringDrawingOptions options, [NullAllowed] NSDictionary attributes, [NullAllowed] NSStringDrawingContext context);
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
+ /// To be added.
[MacCatalyst (13, 1)]
[Wrap ("WeakGetBoundingRect (This, size, options, attributes.GetDictionary (), context)")]
CGRect GetBoundingRect (CGSize size, NSStringDrawingOptions options, StringAttributes attributes, [NullAllowed] NSStringDrawingContext context);
diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt
index 7502cb4af97b..0f6a07200d70 100644
--- a/tests/cecil-tests/Documentation.KnownFailures.txt
+++ b/tests/cecil-tests/Documentation.KnownFailures.txt
@@ -7604,27 +7604,18 @@ M:Accelerate.vImage.RichardsonLucyDeConvolvePlanar8(Accelerate.vImageBuffer@,Acc
M:Accelerate.vImage.RichardsonLucyDeConvolvePlanarF(Accelerate.vImageBuffer@,Accelerate.vImageBuffer@,System.IntPtr,System.IntPtr,System.IntPtr,System.Single*,System.Single*,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.Single,System.UInt32,Accelerate.vImageFlags)
M:Accelerate.vImage.TentConvolveARGB8888(Accelerate.vImageBuffer@,Accelerate.vImageBuffer@,System.IntPtr,System.IntPtr,System.IntPtr,System.UInt32,System.UInt32,Accelerate.Pixel8888,Accelerate.vImageFlags)
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.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.Copy(Foundation.NSZone)
-M:Accessibility.AXChartDescriptor.Copy(Foundation.NSZone)
-M:Accessibility.AXCustomContent.Copy(Foundation.NSZone)
M:Accessibility.AXCustomContentProvider_Extensions.GetAccessibilityCustomContentHandler(Accessibility.IAXCustomContentProvider)
M:Accessibility.AXCustomContentProvider_Extensions.SetAccessibilityCustomContentHandler(Accessibility.IAXCustomContentProvider,System.Func{Accessibility.AXCustomContent[]})
-M:Accessibility.AXDataPoint.Copy(Foundation.NSZone)
-M:Accessibility.AXDataPointValue.Copy(Foundation.NSZone)
-M:Accessibility.AXDataSeriesDescriptor.Copy(Foundation.NSZone)
M:Accessibility.AXHearingUtilities.AXSupportsBidirectionalAXMFiHearingDeviceStreaming
M:Accessibility.AXHearingUtilities.GetMFiHearingDevicePairedUuids
M:Accessibility.AXHearingUtilities.GetMFiHearingDeviceStreamingEar
M:Accessibility.AXHearingUtilities.SupportsBidirectionalStreaming
-M:Accessibility.AXNumericDataAxisDescriptor.Copy(Foundation.NSZone)
M:Accessibility.AXPrefers.HorizontalTextEnabled
M:Accessibility.AXPrefers.NonBlinkingTextInsertionIndicator
-M:Accessibility.AXRequest.Copy(Foundation.NSZone)
M:AccessorySetupKit.ASAccessorySession.FailAuthorizationAsync(AccessorySetupKit.ASAccessory)
M:AccessorySetupKit.ASAccessorySession.FinishAuthorizationAsync(AccessorySetupKit.ASAccessory,AccessorySetupKit.ASAccessorySettings)
M:AccessorySetupKit.ASAccessorySession.RemoveAccessoryAsync(AccessorySetupKit.ASAccessory)
@@ -7661,7 +7652,6 @@ M:AddressBookUI.ABUnknownPersonViewController.remove_PerformDefaultAction(System
M:AddressBookUI.ABUnknownPersonViewController.remove_PersonCreated(System.EventHandler{AddressBookUI.ABUnknownPersonCreatedEventArgs})
M:AppClip.APActivationPayload.ConfirmAcquired(CoreLocation.CLRegion,System.Action{System.Boolean,Foundation.NSError})
M:AppClip.APActivationPayload.ConfirmAcquiredAsync(CoreLocation.CLRegion)
-M:AppClip.APActivationPayload.Copy(Foundation.NSZone)
M:AppKit.AppKitFramework.#ctor
M:AppKit.INSAccessibility.AccessibilityPerformCancel
M:AppKit.INSAccessibility.AccessibilityPerformConfirm
@@ -7689,187 +7679,52 @@ M:AppKit.INSAccessibility.GetAccessibilityScreenForLayout(CoreGraphics.CGSize)
M:AppKit.INSAccessibility.GetAccessibilityString(Foundation.NSRange)
M:AppKit.INSAccessibility.GetAccessibilityStyleRange(System.IntPtr)
M:AppKit.INSAccessibility.IsAccessibilitySelectorAllowed(ObjCRuntime.Selector)
-M:AppKit.INSAccessibilityButton.AccessibilityPerformPress
-M:AppKit.INSAccessibilityContainsTransientUI.AccessibilityPerformShowAlternateUI
-M:AppKit.INSAccessibilityContainsTransientUI.AccessibilityPerformShowDefaultUI
-M:AppKit.INSAccessibilityCustomRotorItemSearchDelegate.GetResult(AppKit.NSAccessibilityCustomRotor,AppKit.NSAccessibilityCustomRotorSearchParameters)
-M:AppKit.INSAccessibilityElementLoading.GetAccessibilityElement(Foundation.INSSecureCoding)
-M:AppKit.INSAccessibilityElementLoading.GetAccessibilityRangeInTargetElement(Foundation.INSSecureCoding)
-M:AppKit.INSAccessibilityLayoutItem.SetAccessibilityFrame(CoreGraphics.CGRect)
-M:AppKit.INSAccessibilityNavigableStaticText.GetAccessibilityFrame(Foundation.NSRange)
M:AppKit.INSAccessibilityNavigableStaticText.GetAccessibilityLine(System.IntPtr)
M:AppKit.INSAccessibilityNavigableStaticText.GetAccessibilityRangeForLine(System.IntPtr)
-M:AppKit.INSAccessibilityNavigableStaticText.GetAccessibilityString(Foundation.NSRange)
-M:AppKit.INSAccessibilitySlider.AccessibilityPerformDecrement
-M:AppKit.INSAccessibilitySlider.AccessibilityPerformIncrement
-M:AppKit.INSAccessibilityStaticText.GetAccessibilityAttributedString(Foundation.NSRange)
-M:AppKit.INSAccessibilityStepper.AccessibilityPerformDecrement
-M:AppKit.INSAccessibilityStepper.AccessibilityPerformIncrement
-M:AppKit.INSAccessibilitySwitch.AccessibilityPerformDecrement
-M:AppKit.INSAccessibilitySwitch.AccessibilityPerformIncrement
-M:AppKit.INSAlertDelegate.ShowHelp(AppKit.NSAlert)
-M:AppKit.INSAnimationDelegate.AnimationDidEnd(AppKit.NSAnimation)
-M:AppKit.INSAnimationDelegate.AnimationDidReachProgressMark(AppKit.NSAnimation,System.Single)
-M:AppKit.INSAnimationDelegate.AnimationDidStop(AppKit.NSAnimation)
-M:AppKit.INSAnimationDelegate.AnimationShouldStart(AppKit.NSAnimation)
-M:AppKit.INSAnimationDelegate.ComputeAnimationCurve(AppKit.NSAnimation,System.Single)
-M:AppKit.INSApplicationDelegate.ApplicationDockMenu(AppKit.NSApplication)
-M:AppKit.INSApplicationDelegate.ApplicationOpenUntitledFile(AppKit.NSApplication)
-M:AppKit.INSApplicationDelegate.ApplicationShouldHandleReopen(AppKit.NSApplication,System.Boolean)
-M:AppKit.INSApplicationDelegate.ApplicationShouldOpenUntitledFile(AppKit.NSApplication)
-M:AppKit.INSApplicationDelegate.ApplicationShouldTerminate(AppKit.NSApplication)
-M:AppKit.INSApplicationDelegate.ApplicationShouldTerminateAfterLastWindowClosed(AppKit.NSApplication)
-M:AppKit.INSApplicationDelegate.ContinueUserActivity(AppKit.NSApplication,Foundation.NSUserActivity,AppKit.ContinueUserActivityRestorationHandler)
-M:AppKit.INSApplicationDelegate.DecodedRestorableState(AppKit.NSApplication,Foundation.NSCoder)
-M:AppKit.INSApplicationDelegate.DidBecomeActive(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.DidFinishLaunching(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.DidHide(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.DidResignActive(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.DidUnhide(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.DidUpdate(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.FailedToContinueUserActivity(AppKit.NSApplication,System.String,Foundation.NSError)
-M:AppKit.INSApplicationDelegate.FailedToRegisterForRemoteNotifications(AppKit.NSApplication,Foundation.NSError)
M:AppKit.INSApplicationDelegate.GetHandler(AppKit.NSApplication,Intents.INIntent)
-M:AppKit.INSApplicationDelegate.HandlesKey(AppKit.NSApplication,System.String)
-M:AppKit.INSApplicationDelegate.OpenFile(AppKit.NSApplication,System.String)
-M:AppKit.INSApplicationDelegate.OpenFiles(AppKit.NSApplication,System.String[])
-M:AppKit.INSApplicationDelegate.OpenFileWithoutUI(Foundation.NSObject,System.String)
-M:AppKit.INSApplicationDelegate.OpenTempFile(AppKit.NSApplication,System.String)
-M:AppKit.INSApplicationDelegate.OpenUrls(AppKit.NSApplication,Foundation.NSUrl[])
-M:AppKit.INSApplicationDelegate.PrintFile(AppKit.NSApplication,System.String)
-M:AppKit.INSApplicationDelegate.PrintFiles(AppKit.NSApplication,System.String[],Foundation.NSDictionary,System.Boolean)
M:AppKit.INSApplicationDelegate.ProtectedDataDidBecomeAvailable(Foundation.NSNotification)
M:AppKit.INSApplicationDelegate.ProtectedDataWillBecomeUnavailable(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.ReceivedRemoteNotification(AppKit.NSApplication,Foundation.NSDictionary)
-M:AppKit.INSApplicationDelegate.RegisteredForRemoteNotifications(AppKit.NSApplication,Foundation.NSData)
-M:AppKit.INSApplicationDelegate.ScreenParametersChanged(Foundation.NSNotification)
M:AppKit.INSApplicationDelegate.ShouldAutomaticallyLocalizeKeyEquivalents(AppKit.NSApplication)
M:AppKit.INSApplicationDelegate.SupportsSecureRestorableState(AppKit.NSApplication)
-M:AppKit.INSApplicationDelegate.UpdatedUserActivity(AppKit.NSApplication,Foundation.NSUserActivity)
-M:AppKit.INSApplicationDelegate.UserDidAcceptCloudKitShare(AppKit.NSApplication,CloudKit.CKShareMetadata)
-M:AppKit.INSApplicationDelegate.WillBecomeActive(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.WillContinueUserActivity(AppKit.NSApplication,System.String)
-M:AppKit.INSApplicationDelegate.WillEncodeRestorableState(AppKit.NSApplication,Foundation.NSCoder)
-M:AppKit.INSApplicationDelegate.WillFinishLaunching(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.WillHide(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.WillPresentError(AppKit.NSApplication,Foundation.NSError)
-M:AppKit.INSApplicationDelegate.WillResignActive(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.WillTerminate(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.WillUnhide(Foundation.NSNotification)
-M:AppKit.INSApplicationDelegate.WillUpdate(Foundation.NSNotification)
M:AppKit.INSBrowserDelegate.AcceptDrop(AppKit.NSBrowser,AppKit.INSDraggingInfo,System.IntPtr,System.IntPtr,AppKit.NSBrowserDropOperation)
M:AppKit.INSBrowserDelegate.CanDragRowsWithIndexes(AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr,AppKit.NSEvent)
-M:AppKit.INSBrowserDelegate.ColumnConfigurationDidChange(Foundation.NSNotification)
M:AppKit.INSBrowserDelegate.ColumnTitle(AppKit.NSBrowser,System.IntPtr)
-M:AppKit.INSBrowserDelegate.CountChildren(AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.INSBrowserDelegate.CreateRowsForColumn(AppKit.NSBrowser,System.IntPtr,AppKit.NSMatrix)
M:AppKit.INSBrowserDelegate.DidChangeLastColumn(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.INSBrowserDelegate.DidScroll(AppKit.NSBrowser)
M:AppKit.INSBrowserDelegate.GetChild(AppKit.NSBrowser,System.IntPtr,Foundation.NSObject)
-M:AppKit.INSBrowserDelegate.HeaderViewControllerForItem(AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.INSBrowserDelegate.IsColumnValid(AppKit.NSBrowser,System.IntPtr)
-M:AppKit.INSBrowserDelegate.IsLeafItem(AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.INSBrowserDelegate.NextTypeSelectMatch(AppKit.NSBrowser,System.IntPtr,System.IntPtr,System.IntPtr,System.String)
-M:AppKit.INSBrowserDelegate.ObjectValueForItem(AppKit.NSBrowser,Foundation.NSObject)
-M:AppKit.INSBrowserDelegate.PreviewViewControllerForLeafItem(AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.INSBrowserDelegate.PromisedFilesDroppedAtDestination(AppKit.NSBrowser,Foundation.NSUrl,Foundation.NSIndexSet,System.IntPtr)
-M:AppKit.INSBrowserDelegate.RootItemForBrowser(AppKit.NSBrowser)
M:AppKit.INSBrowserDelegate.RowHeight(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
M:AppKit.INSBrowserDelegate.RowsInColumn(AppKit.NSBrowser,System.IntPtr)
M:AppKit.INSBrowserDelegate.SelectCellWithString(AppKit.NSBrowser,System.String,System.IntPtr)
M:AppKit.INSBrowserDelegate.SelectionIndexesForProposedSelection(AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr)
M:AppKit.INSBrowserDelegate.SelectRowInColumn(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.INSBrowserDelegate.SetObjectValue(AppKit.NSBrowser,Foundation.NSObject,Foundation.NSObject)
-M:AppKit.INSBrowserDelegate.ShouldEditItem(AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.INSBrowserDelegate.ShouldShowCellExpansion(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
M:AppKit.INSBrowserDelegate.ShouldSizeColumn(AppKit.NSBrowser,System.IntPtr,System.Boolean,System.Runtime.InteropServices.NFloat)
-M:AppKit.INSBrowserDelegate.ShouldTypeSelectForEvent(AppKit.NSBrowser,AppKit.NSEvent,System.String)
M:AppKit.INSBrowserDelegate.SizeToFitWidth(AppKit.NSBrowser,System.IntPtr)
M:AppKit.INSBrowserDelegate.TypeSelectString(AppKit.NSBrowser,System.IntPtr,System.IntPtr)
M:AppKit.INSBrowserDelegate.ValidateDrop(AppKit.NSBrowser,AppKit.INSDraggingInfo,System.IntPtr@,System.IntPtr@,AppKit.NSBrowserDropOperation@)
M:AppKit.INSBrowserDelegate.WillDisplayCell(AppKit.NSBrowser,Foundation.NSObject,System.IntPtr,System.IntPtr)
-M:AppKit.INSBrowserDelegate.WillScroll(AppKit.NSBrowser)
M:AppKit.INSBrowserDelegate.WriteRowsWithIndexesToPasteboard(AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr,AppKit.NSPasteboard)
M:AppKit.INSCandidateListTouchBarItemDelegate.BeginSelectingCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr)
-M:AppKit.INSCandidateListTouchBarItemDelegate.ChangedCandidateListVisibility(AppKit.NSCandidateListTouchBarItem,System.Boolean)
M:AppKit.INSCandidateListTouchBarItemDelegate.ChangeSelectionFromCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr,System.IntPtr)
M:AppKit.INSCandidateListTouchBarItemDelegate.EndSelectingCandidate(AppKit.NSCandidateListTouchBarItem,System.IntPtr)
-M:AppKit.INSCloudSharingServiceDelegate.Completed(AppKit.NSSharingService,Foundation.NSObject[],Foundation.NSError)
-M:AppKit.INSCloudSharingServiceDelegate.Options(AppKit.NSSharingService,Foundation.NSItemProvider)
-M:AppKit.INSCloudSharingServiceDelegate.Saved(AppKit.NSSharingService,CloudKit.CKShare)
-M:AppKit.INSCloudSharingServiceDelegate.Stopped(AppKit.NSSharingService,CloudKit.CKShare)
-M:AppKit.INSCloudSharingValidation.GetCloudShare(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.INSCollectionViewDataSource.GetItem(AppKit.NSCollectionView,Foundation.NSIndexPath)
M:AppKit.INSCollectionViewDataSource.GetNumberofItems(AppKit.NSCollectionView,System.IntPtr)
-M:AppKit.INSCollectionViewDataSource.GetNumberOfSections(AppKit.NSCollectionView)
-M:AppKit.INSCollectionViewDataSource.GetView(AppKit.NSCollectionView,Foundation.NSString,Foundation.NSIndexPath)
M:AppKit.INSCollectionViewDelegate.AcceptDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,Foundation.NSIndexPath,AppKit.NSCollectionViewDropOperation)
M:AppKit.INSCollectionViewDelegate.AcceptDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSCollectionViewDropOperation)
-M:AppKit.INSCollectionViewDelegate.CanDragItems(AppKit.NSCollectionView,Foundation.NSIndexSet,AppKit.NSEvent)
-M:AppKit.INSCollectionViewDelegate.CanDragItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSEvent)
-M:AppKit.INSCollectionViewDelegate.DisplayingItemEnded(AppKit.NSCollectionView,AppKit.NSCollectionViewItem,Foundation.NSIndexPath)
-M:AppKit.INSCollectionViewDelegate.DisplayingSupplementaryViewEnded(AppKit.NSCollectionView,AppKit.NSView,System.String,Foundation.NSIndexPath)
-M:AppKit.INSCollectionViewDelegate.DraggingSessionEnded(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.INSCollectionViewDelegate.DraggingSessionWillBegin(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet)
-M:AppKit.INSCollectionViewDelegate.DraggingSessionWillBegin(AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSSet)
-M:AppKit.INSCollectionViewDelegate.GetDraggingImage(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSEvent,CoreGraphics.CGPoint@)
-M:AppKit.INSCollectionViewDelegate.GetNamesOfPromisedFiles(AppKit.NSCollectionView,Foundation.NSUrl,Foundation.NSSet)
-M:AppKit.INSCollectionViewDelegate.GetPasteboardWriter(AppKit.NSCollectionView,Foundation.NSIndexPath)
-M:AppKit.INSCollectionViewDelegate.ItemsChanged(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSCollectionViewItemHighlightState)
-M:AppKit.INSCollectionViewDelegate.ItemsDeselected(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.INSCollectionViewDelegate.ItemsSelected(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.INSCollectionViewDelegate.NamesOfPromisedFilesDroppedAtDestination(AppKit.NSCollectionView,Foundation.NSUrl,Foundation.NSIndexSet)
M:AppKit.INSCollectionViewDelegate.PasteboardWriterForItem(AppKit.NSCollectionView,System.UIntPtr)
-M:AppKit.INSCollectionViewDelegate.ShouldChangeItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSCollectionViewItemHighlightState)
-M:AppKit.INSCollectionViewDelegate.ShouldDeselectItems(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.INSCollectionViewDelegate.ShouldSelectItems(AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.INSCollectionViewDelegate.TransitionLayout(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
M:AppKit.INSCollectionViewDelegate.UpdateDraggingItemsForDrag(AppKit.NSCollectionView,AppKit.INSDraggingInfo)
M:AppKit.INSCollectionViewDelegate.ValidateDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,Foundation.NSIndexPath@,AppKit.NSCollectionViewDropOperation@)
M:AppKit.INSCollectionViewDelegate.ValidateDrop(AppKit.NSCollectionView,AppKit.INSDraggingInfo,System.IntPtr@,AppKit.NSCollectionViewDropOperation@)
-M:AppKit.INSCollectionViewDelegate.WillDisplayItem(AppKit.NSCollectionView,AppKit.NSCollectionViewItem,Foundation.NSIndexPath)
-M:AppKit.INSCollectionViewDelegate.WillDisplaySupplementaryView(AppKit.NSCollectionView,AppKit.NSView,Foundation.NSString,Foundation.NSIndexPath)
-M:AppKit.INSCollectionViewDelegate.WriteItems(AppKit.NSCollectionView,Foundation.NSIndexSet,AppKit.NSPasteboard)
-M:AppKit.INSCollectionViewDelegate.WriteItems(AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSPasteboard)
M:AppKit.INSCollectionViewDelegateFlowLayout.InsetForSection(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.INSCollectionViewDelegateFlowLayout.MinimumInteritemSpacingForSection(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.INSCollectionViewDelegateFlowLayout.MinimumLineSpacing(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.INSCollectionViewDelegateFlowLayout.ReferenceSizeForFooter(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
M:AppKit.INSCollectionViewDelegateFlowLayout.ReferenceSizeForHeader(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,System.IntPtr)
-M:AppKit.INSCollectionViewDelegateFlowLayout.SizeForItem(AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,Foundation.NSIndexPath)
-M:AppKit.INSCollectionViewElement.ApplyLayoutAttributes(AppKit.NSCollectionViewLayoutAttributes)
-M:AppKit.INSCollectionViewElement.DidTransition(AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
-M:AppKit.INSCollectionViewElement.GetPreferredLayoutAttributes(AppKit.NSCollectionViewLayoutAttributes)
-M:AppKit.INSCollectionViewElement.PrepareForReuse
-M:AppKit.INSCollectionViewElement.WillTransition(AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
-M:AppKit.INSCollectionViewPrefetching.CancelPrefetching(AppKit.NSCollectionView,Foundation.NSIndexPath[])
-M:AppKit.INSCollectionViewPrefetching.PrefetchItems(AppKit.NSCollectionView,Foundation.NSIndexPath[])
-M:AppKit.INSColorChanging.ChangeColor(AppKit.NSColorPanel)
-M:AppKit.INSComboBoxCellDataSource.CompletedString(AppKit.NSComboBoxCell,System.String)
-M:AppKit.INSComboBoxCellDataSource.IndexOfItem(AppKit.NSComboBoxCell,System.String)
-M:AppKit.INSComboBoxCellDataSource.ItemCount(AppKit.NSComboBoxCell)
M:AppKit.INSComboBoxCellDataSource.ObjectValueForItem(AppKit.NSComboBoxCell,System.IntPtr)
-M:AppKit.INSComboBoxDataSource.CompletedString(AppKit.NSComboBox,System.String)
-M:AppKit.INSComboBoxDataSource.IndexOfItem(AppKit.NSComboBox,System.String)
-M:AppKit.INSComboBoxDataSource.ItemCount(AppKit.NSComboBox)
M:AppKit.INSComboBoxDataSource.ObjectValueForItem(AppKit.NSComboBox,System.IntPtr)
-M:AppKit.INSComboBoxDelegate.SelectionChanged(Foundation.NSNotification)
-M:AppKit.INSComboBoxDelegate.SelectionIsChanging(Foundation.NSNotification)
-M:AppKit.INSComboBoxDelegate.WillDismiss(Foundation.NSNotification)
-M:AppKit.INSComboBoxDelegate.WillPopUp(Foundation.NSNotification)
-M:AppKit.INSControlTextEditingDelegate.ControlTextDidBeginEditing(Foundation.NSNotification)
-M:AppKit.INSControlTextEditingDelegate.ControlTextDidChange(Foundation.NSNotification)
-M:AppKit.INSControlTextEditingDelegate.ControlTextDidEndEditing(Foundation.NSNotification)
-M:AppKit.INSControlTextEditingDelegate.DidFailToFormatString(AppKit.NSControl,System.String,System.String)
-M:AppKit.INSControlTextEditingDelegate.DidFailToValidatePartialString(AppKit.NSControl,System.String,System.String)
-M:AppKit.INSControlTextEditingDelegate.DoCommandBySelector(AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector)
M:AppKit.INSControlTextEditingDelegate.GetCompletions(AppKit.NSControl,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.INSControlTextEditingDelegate.IsValidObject(AppKit.NSControl,Foundation.NSObject)
-M:AppKit.INSControlTextEditingDelegate.TextShouldBeginEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.INSControlTextEditingDelegate.TextShouldEndEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.INSDatePickerCellDelegate.ValidateProposedDateValue(AppKit.NSDatePickerCell,Foundation.NSDate@,System.Double)
-M:AppKit.INSDockTilePlugIn.DockMenu
-M:AppKit.INSDockTilePlugIn.SetDockTile(AppKit.NSDockTile)
M:AppKit.INSDraggingDestination.ConcludeDragOperation(AppKit.INSDraggingInfo)
M:AppKit.INSDraggingDestination.DraggingEnded(AppKit.INSDraggingInfo)
M:AppKit.INSDraggingDestination.DraggingEntered(AppKit.INSDraggingInfo)
@@ -7883,42 +7738,8 @@ M:AppKit.INSDraggingInfo.EnumerateDraggingItems(AppKit.NSDraggingItemEnumeration
M:AppKit.INSDraggingInfo.PromisedFilesDroppedAtDestination(Foundation.NSUrl)
M:AppKit.INSDraggingInfo.ResetSpringLoading
M:AppKit.INSDraggingInfo.SlideDraggedImageTo(CoreGraphics.CGPoint)
-M:AppKit.INSDraggingSource.DraggedImageBeganAt(AppKit.NSImage,CoreGraphics.CGPoint)
-M:AppKit.INSDraggingSource.DraggedImageEndedAtDeposited(AppKit.NSImage,CoreGraphics.CGPoint,System.Boolean)
-M:AppKit.INSDraggingSource.DraggedImageEndedAtOperation(AppKit.NSImage,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.INSDraggingSource.DraggedImageMovedTo(AppKit.NSImage,CoreGraphics.CGPoint)
-M:AppKit.INSDraggingSource.DraggingSourceOperationMaskForLocal(System.Boolean)
-M:AppKit.INSDraggingSource.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl)
-M:AppKit.INSDrawerDelegate.DrawerDidClose(Foundation.NSNotification)
-M:AppKit.INSDrawerDelegate.DrawerDidOpen(Foundation.NSNotification)
-M:AppKit.INSDrawerDelegate.DrawerShouldClose(AppKit.NSDrawer)
-M:AppKit.INSDrawerDelegate.DrawerShouldOpen(AppKit.NSDrawer)
-M:AppKit.INSDrawerDelegate.DrawerWillClose(Foundation.NSNotification)
-M:AppKit.INSDrawerDelegate.DrawerWillOpen(Foundation.NSNotification)
-M:AppKit.INSDrawerDelegate.DrawerWillResizeContents(AppKit.NSDrawer,CoreGraphics.CGSize)
-M:AppKit.INSEditor.CommitEditing
-M:AppKit.INSEditor.CommitEditing(Foundation.NSError@)
-M:AppKit.INSEditor.CommitEditing(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:AppKit.INSEditor.DiscardEditing
-M:AppKit.INSEditorRegistration.ObjectDidBeginEditing(AppKit.INSEditor)
-M:AppKit.INSEditorRegistration.ObjectDidEndEditing(AppKit.INSEditor)
-M:AppKit.INSFilePromiseProviderDelegate.GetFileNameForDestination(AppKit.NSFilePromiseProvider,System.String)
-M:AppKit.INSFilePromiseProviderDelegate.GetOperationQueue(AppKit.NSFilePromiseProvider)
M:AppKit.INSFilePromiseProviderDelegate.WritePromiseToUrl(AppKit.NSFilePromiseProvider,Foundation.NSUrl,System.Action{Foundation.NSError})
-M:AppKit.INSFontChanging.ChangeFont(AppKit.NSFontManager)
-M:AppKit.INSFontChanging.GetValidModes(AppKit.NSFontPanel)
-M:AppKit.INSGestureRecognizerDelegate.ShouldAttemptToRecognize(AppKit.NSGestureRecognizer,AppKit.NSEvent)
-M:AppKit.INSGestureRecognizerDelegate.ShouldBegin(AppKit.NSGestureRecognizer)
-M:AppKit.INSGestureRecognizerDelegate.ShouldBeRequiredToFail(AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer)
-M:AppKit.INSGestureRecognizerDelegate.ShouldReceiveTouch(AppKit.NSGestureRecognizer,AppKit.NSTouch)
-M:AppKit.INSGestureRecognizerDelegate.ShouldRecognizeSimultaneously(AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer)
-M:AppKit.INSGestureRecognizerDelegate.ShouldRequireFailure(AppKit.NSGestureRecognizer,AppKit.NSGestureRecognizer)
-M:AppKit.INSHapticFeedbackPerformer.PerformFeedback(AppKit.NSHapticFeedbackPattern,AppKit.NSHapticFeedbackPerformanceTime)
M:AppKit.INSImageDelegate.DidLoadPartOfRepresentation(AppKit.NSImage,AppKit.NSImageRep,System.IntPtr)
-M:AppKit.INSImageDelegate.DidLoadRepresentation(AppKit.NSImage,AppKit.NSImageRep,AppKit.NSImageLoadStatus)
-M:AppKit.INSImageDelegate.DidLoadRepresentationHeader(AppKit.NSImage,AppKit.NSImageRep)
-M:AppKit.INSImageDelegate.ImageDidNotDraw(Foundation.NSObject,CoreGraphics.CGRect)
-M:AppKit.INSImageDelegate.WillLoadRepresentation(AppKit.NSImage,AppKit.NSImageRep)
M:AppKit.INSLayerDelegateContentsScaleUpdating.ShouldInheritContentsScale(CoreAnimation.CALayer,System.Runtime.InteropServices.NFloat,AppKit.NSWindow)
M:AppKit.INSLayoutManagerDelegate.GetBoundingBox(AppKit.NSLayoutManager,System.UIntPtr,AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr)
M:AppKit.INSLayoutManagerDelegate.GetLineSpacingAfterGlyph(AppKit.NSLayoutManager,System.UIntPtr,CoreGraphics.CGRect)
@@ -7929,325 +7750,78 @@ M:AppKit.INSLayoutManagerDelegate.ShouldBreakLineByWordBeforeCharacter(AppKit.NS
M:AppKit.INSLayoutManagerDelegate.ShouldSetLineFragmentRect(AppKit.NSLayoutManager,CoreGraphics.CGRect@,CoreGraphics.CGRect@,System.Runtime.InteropServices.NFloat@,AppKit.NSTextContainer,Foundation.NSRange)
M:AppKit.INSLayoutManagerDelegate.ShouldUseAction(AppKit.NSLayoutManager,AppKit.NSControlCharacterAction,System.UIntPtr)
M:AppKit.INSLayoutManagerDelegate.ShouldUseTemporaryAttributes(AppKit.NSLayoutManager,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.Boolean,System.UIntPtr,Foundation.NSRange@)
-M:AppKit.INSMenuDelegate.ConfinementRectForMenu(AppKit.NSMenu,AppKit.NSScreen)
-M:AppKit.INSMenuDelegate.HasKeyEquivalentForEvent(AppKit.NSMenu,AppKit.NSEvent,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.INSMenuDelegate.MenuDidClose(AppKit.NSMenu)
-M:AppKit.INSMenuDelegate.MenuItemCount(AppKit.NSMenu)
-M:AppKit.INSMenuDelegate.MenuWillHighlightItem(AppKit.NSMenu,AppKit.NSMenuItem)
-M:AppKit.INSMenuDelegate.MenuWillOpen(AppKit.NSMenu)
-M:AppKit.INSMenuDelegate.NeedsUpdate(AppKit.NSMenu)
M:AppKit.INSMenuDelegate.UpdateItem(AppKit.NSMenu,AppKit.NSMenuItem,System.IntPtr,System.Boolean)
-M:AppKit.INSMenuItemValidation.ValidateMenuItem(AppKit.NSMenuItem)
-M:AppKit.INSMenuValidation.ValidateMenuItem(AppKit.NSMenuItem)
-M:AppKit.INSOpenSavePanelDelegate.CompareFilenames(AppKit.NSSavePanel,System.String,System.String,System.Boolean)
-M:AppKit.INSOpenSavePanelDelegate.DidChangeToDirectory(AppKit.NSSavePanel,Foundation.NSUrl)
M:AppKit.INSOpenSavePanelDelegate.DidSelectType(AppKit.NSSavePanel,UniformTypeIdentifiers.UTType)
-M:AppKit.INSOpenSavePanelDelegate.DirectoryDidChange(AppKit.NSSavePanel,System.String)
M:AppKit.INSOpenSavePanelDelegate.GetDisplayName(AppKit.NSSavePanel,UniformTypeIdentifiers.UTType)
-M:AppKit.INSOpenSavePanelDelegate.IsValidFilename(AppKit.NSSavePanel,System.String)
-M:AppKit.INSOpenSavePanelDelegate.SelectionDidChange(AppKit.NSSavePanel)
-M:AppKit.INSOpenSavePanelDelegate.ShouldEnableUrl(AppKit.NSSavePanel,Foundation.NSUrl)
-M:AppKit.INSOpenSavePanelDelegate.ShouldShowFilename(AppKit.NSSavePanel,System.String)
-M:AppKit.INSOpenSavePanelDelegate.UserEnteredFilename(AppKit.NSSavePanel,System.String,System.Boolean)
-M:AppKit.INSOpenSavePanelDelegate.ValidateUrl(AppKit.NSSavePanel,Foundation.NSUrl,Foundation.NSError@)
-M:AppKit.INSOpenSavePanelDelegate.WillExpand(AppKit.NSSavePanel,System.Boolean)
M:AppKit.INSOutlineViewDataSource.AcceptDrop(AppKit.NSOutlineView,AppKit.INSDraggingInfo,Foundation.NSObject,System.IntPtr)
-M:AppKit.INSOutlineViewDataSource.DraggingSessionEnded(AppKit.NSOutlineView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.INSOutlineViewDataSource.DraggingSessionWillBegin(AppKit.NSOutlineView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSArray)
-M:AppKit.INSOutlineViewDataSource.FilesDropped(AppKit.NSOutlineView,Foundation.NSUrl,Foundation.NSArray)
M:AppKit.INSOutlineViewDataSource.GetChild(AppKit.NSOutlineView,System.IntPtr,Foundation.NSObject)
-M:AppKit.INSOutlineViewDataSource.GetChildrenCount(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDataSource.GetObjectValue(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSOutlineViewDataSource.ItemExpandable(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDataSource.ItemForPersistentObject(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDataSource.OutlineViewwriteItemstoPasteboard(AppKit.NSOutlineView,Foundation.NSArray,AppKit.NSPasteboard)
-M:AppKit.INSOutlineViewDataSource.PasteboardWriterForItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDataSource.PersistentObjectForItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDataSource.SetObjectValue(AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSOutlineViewDataSource.SortDescriptorsChanged(AppKit.NSOutlineView,Foundation.NSSortDescriptor[])
M:AppKit.INSOutlineViewDataSource.UpdateDraggingItemsForDrag(AppKit.NSOutlineView,AppKit.INSDraggingInfo)
M:AppKit.INSOutlineViewDataSource.ValidateDrop(AppKit.NSOutlineView,AppKit.INSDraggingInfo,Foundation.NSObject,System.IntPtr)
-M:AppKit.INSOutlineViewDelegate.ColumnDidMove(Foundation.NSNotification)
-M:AppKit.INSOutlineViewDelegate.ColumnDidResize(Foundation.NSNotification)
M:AppKit.INSOutlineViewDelegate.DidAddRowView(AppKit.NSOutlineView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.INSOutlineViewDelegate.DidClickTableColumn(AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.INSOutlineViewDelegate.DidDragTableColumn(AppKit.NSOutlineView,AppKit.NSTableColumn)
M:AppKit.INSOutlineViewDelegate.DidRemoveRowView(AppKit.NSOutlineView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.INSOutlineViewDelegate.GetCell(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.GetNextTypeSelectMatch(AppKit.NSOutlineView,Foundation.NSObject,Foundation.NSObject,System.String)
-M:AppKit.INSOutlineViewDelegate.GetRowHeight(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.GetSelectionIndexes(AppKit.NSOutlineView,Foundation.NSIndexSet)
-M:AppKit.INSOutlineViewDelegate.GetSelectString(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
M:AppKit.INSOutlineViewDelegate.GetSizeToFitColumnWidth(AppKit.NSOutlineView,System.IntPtr)
M:AppKit.INSOutlineViewDelegate.GetTintConfiguration(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.GetView(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.IsGroupItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.ItemDidCollapse(Foundation.NSNotification)
-M:AppKit.INSOutlineViewDelegate.ItemDidExpand(Foundation.NSNotification)
-M:AppKit.INSOutlineViewDelegate.ItemWillCollapse(Foundation.NSNotification)
-M:AppKit.INSOutlineViewDelegate.ItemWillExpand(Foundation.NSNotification)
-M:AppKit.INSOutlineViewDelegate.MouseDown(AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.INSOutlineViewDelegate.RowViewForItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.SelectionDidChange(Foundation.NSNotification)
-M:AppKit.INSOutlineViewDelegate.SelectionIsChanging(Foundation.NSNotification)
-M:AppKit.INSOutlineViewDelegate.SelectionShouldChange(AppKit.NSOutlineView)
-M:AppKit.INSOutlineViewDelegate.ShouldCollapseItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.ShouldEditTableColumn(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.ShouldExpandItem(AppKit.NSOutlineView,Foundation.NSObject)
M:AppKit.INSOutlineViewDelegate.ShouldReorder(AppKit.NSOutlineView,System.IntPtr,System.IntPtr)
-M:AppKit.INSOutlineViewDelegate.ShouldSelectItem(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.ShouldSelectTableColumn(AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.INSOutlineViewDelegate.ShouldShowCellExpansion(AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.ShouldShowOutlineCell(AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.ShouldTrackCell(AppKit.NSOutlineView,AppKit.NSCell,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.ShouldTypeSelect(AppKit.NSOutlineView,AppKit.NSEvent,System.String)
-M:AppKit.INSOutlineViewDelegate.ToolTipForCell(AppKit.NSOutlineView,AppKit.NSCell,CoreGraphics.CGRect@,AppKit.NSTableColumn,Foundation.NSObject,CoreGraphics.CGPoint)
M:AppKit.INSOutlineViewDelegate.UserCanChangeVisibility(AppKit.NSOutlineView,AppKit.NSTableColumn)
M:AppKit.INSOutlineViewDelegate.UserDidChangeVisibility(AppKit.NSOutlineView,AppKit.NSTableColumn[])
-M:AppKit.INSOutlineViewDelegate.WillDisplayCell(AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSOutlineViewDelegate.WillDisplayOutlineCell(AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.INSPageControllerDelegate.DidEndLiveTransition(AppKit.NSPageController)
-M:AppKit.INSPageControllerDelegate.DidTransition(AppKit.NSPageController,Foundation.NSObject)
-M:AppKit.INSPageControllerDelegate.GetFrame(AppKit.NSPageController,Foundation.NSObject)
-M:AppKit.INSPageControllerDelegate.GetIdentifier(AppKit.NSPageController,Foundation.NSObject)
-M:AppKit.INSPageControllerDelegate.GetViewController(AppKit.NSPageController,System.String)
-M:AppKit.INSPageControllerDelegate.PrepareViewController(AppKit.NSPageController,AppKit.NSViewController,Foundation.NSObject)
-M:AppKit.INSPageControllerDelegate.WillStartLiveTransition(AppKit.NSPageController)
-M:AppKit.INSPasteboardItemDataProvider.FinishedWithDataProvider(AppKit.NSPasteboard)
-M:AppKit.INSPasteboardItemDataProvider.ProvideDataForType(AppKit.NSPasteboard,AppKit.NSPasteboardItem,System.String)
M:AppKit.INSPasteboardReading.CreateInstance``1(Foundation.NSObject,AppKit.NSPasteboardType)
M:AppKit.INSPasteboardReading.CreateInstance``1(Foundation.NSObject,Foundation.NSString)
M:AppKit.INSPasteboardReading.GetReadableTypesForPasteboard``1(AppKit.NSPasteboard)
M:AppKit.INSPasteboardReading.GetReadingOptionsForType``1(System.String,AppKit.NSPasteboard)
-M:AppKit.INSPasteboardTypeOwner.PasteboardChangedOwner(AppKit.NSPasteboard)
-M:AppKit.INSPasteboardTypeOwner.ProvideData(AppKit.NSPasteboard,System.String)
M:AppKit.INSPasteboardWriting.GetPasteboardPropertyListForType(System.String)
M:AppKit.INSPasteboardWriting.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
-M:AppKit.INSPasteboardWriting.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
-M:AppKit.INSPathCellDelegate.WillDisplayOpenPanel(AppKit.NSPathCell,AppKit.NSOpenPanel)
-M:AppKit.INSPathCellDelegate.WillPopupMenu(AppKit.NSPathCell,AppKit.NSMenu)
M:AppKit.INSPathControlDelegate.AcceptDrop(AppKit.NSPathControl,AppKit.INSDraggingInfo)
-M:AppKit.INSPathControlDelegate.ShouldDragItem(AppKit.NSPathControl,AppKit.NSPathControlItem,AppKit.NSPasteboard)
-M:AppKit.INSPathControlDelegate.ShouldDragPathComponentCell(AppKit.NSPathControl,AppKit.NSPathComponentCell,AppKit.NSPasteboard)
M:AppKit.INSPathControlDelegate.ValidateDrop(AppKit.NSPathControl,AppKit.INSDraggingInfo)
-M:AppKit.INSPathControlDelegate.WillDisplayOpenPanel(AppKit.NSPathControl,AppKit.NSOpenPanel)
-M:AppKit.INSPathControlDelegate.WillPopUpMenu(AppKit.NSPathControl,AppKit.NSMenu)
-M:AppKit.INSPopoverDelegate.DidClose(Foundation.NSNotification)
-M:AppKit.INSPopoverDelegate.DidDetach(AppKit.NSPopover)
-M:AppKit.INSPopoverDelegate.DidShow(Foundation.NSNotification)
-M:AppKit.INSPopoverDelegate.GetDetachableWindowForPopover(AppKit.NSPopover)
-M:AppKit.INSPopoverDelegate.ShouldClose(AppKit.NSPopover)
-M:AppKit.INSPopoverDelegate.WillClose(Foundation.NSNotification)
-M:AppKit.INSPopoverDelegate.WillShow(Foundation.NSNotification)
-M:AppKit.INSPrintPanelAccessorizing.KeyPathsForValuesAffectingPreview
-M:AppKit.INSPrintPanelAccessorizing.LocalizedSummaryItems
-M:AppKit.INSRuleEditorDelegate.Changed(Foundation.NSNotification)
M:AppKit.INSRuleEditorDelegate.ChildForCriterion(AppKit.NSRuleEditor,System.IntPtr,Foundation.NSObject,AppKit.NSRuleEditorRowType)
M:AppKit.INSRuleEditorDelegate.DisplayValue(AppKit.NSRuleEditor,Foundation.NSObject,System.IntPtr)
-M:AppKit.INSRuleEditorDelegate.EditingBegan(Foundation.NSNotification)
-M:AppKit.INSRuleEditorDelegate.EditingEnded(Foundation.NSNotification)
-M:AppKit.INSRuleEditorDelegate.NumberOfChildren(AppKit.NSRuleEditor,Foundation.NSObject,AppKit.NSRuleEditorRowType)
M:AppKit.INSRuleEditorDelegate.PredicateParts(AppKit.NSRuleEditor,Foundation.NSObject,Foundation.NSObject,System.IntPtr)
-M:AppKit.INSRuleEditorDelegate.RowsDidChange(Foundation.NSNotification)
-M:AppKit.INSScrubberDataSource.GetNumberOfItems(AppKit.NSScrubber)
M:AppKit.INSScrubberDataSource.GetViewForItem(AppKit.NSScrubber,System.IntPtr)
-M:AppKit.INSScrubberDelegate.DidBeginInteracting(AppKit.NSScrubber)
-M:AppKit.INSScrubberDelegate.DidCancelInteracting(AppKit.NSScrubber)
-M:AppKit.INSScrubberDelegate.DidChangeVisible(AppKit.NSScrubber,Foundation.NSRange)
-M:AppKit.INSScrubberDelegate.DidFinishInteracting(AppKit.NSScrubber)
M:AppKit.INSScrubberDelegate.DidHighlightItem(AppKit.NSScrubber,System.IntPtr)
M:AppKit.INSScrubberDelegate.DidSelectItem(AppKit.NSScrubber,System.IntPtr)
M:AppKit.INSScrubberFlowLayoutDelegate.Layout(AppKit.NSScrubber,AppKit.NSScrubberFlowLayout,System.IntPtr)
-M:AppKit.INSSearchFieldDelegate.SearchingEnded(AppKit.NSSearchField)
-M:AppKit.INSSearchFieldDelegate.SearchingStarted(AppKit.NSSearchField)
-M:AppKit.INSSeguePerforming.PerformSegue(System.String,Foundation.NSObject)
-M:AppKit.INSSeguePerforming.PrepareForSegue(AppKit.NSStoryboardSegue,Foundation.NSObject)
-M:AppKit.INSSeguePerforming.ShouldPerformSegue(System.String,Foundation.NSObject)
-M:AppKit.INSServicesMenuRequestor.ReadSelectionFromPasteboard(AppKit.NSPasteboard)
-M:AppKit.INSServicesMenuRequestor.WriteSelectionToPasteboard(AppKit.NSPasteboard,System.String[])
-M:AppKit.INSSharingServiceDelegate.CreateAnchoringView(AppKit.NSSharingService,CoreGraphics.CGRect@,AppKit.NSRectEdge@)
-M:AppKit.INSSharingServiceDelegate.DidFailToShareItems(AppKit.NSSharingService,Foundation.NSObject[],Foundation.NSError)
-M:AppKit.INSSharingServiceDelegate.DidShareItems(AppKit.NSSharingService,Foundation.NSObject[])
-M:AppKit.INSSharingServiceDelegate.SourceFrameOnScreenForShareItem(AppKit.NSSharingService,AppKit.INSPasteboardWriting)
-M:AppKit.INSSharingServiceDelegate.SourceWindowForShareItems(AppKit.NSSharingService,Foundation.NSObject[],AppKit.NSSharingContentScope)
-M:AppKit.INSSharingServiceDelegate.TransitionImageForShareItem(AppKit.NSSharingService,AppKit.INSPasteboardWriting,CoreGraphics.CGRect)
-M:AppKit.INSSharingServiceDelegate.WillShareItems(AppKit.NSSharingService,Foundation.NSObject[])
-M:AppKit.INSSharingServicePickerDelegate.DelegateForSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)
-M:AppKit.INSSharingServicePickerDelegate.DidChooseSharingService(AppKit.NSSharingServicePicker,AppKit.NSSharingService)
M:AppKit.INSSharingServicePickerDelegate.GetCollaborationModeRestrictions(AppKit.NSSharingServicePicker)
-M:AppKit.INSSharingServicePickerDelegate.SharingServicesForItems(AppKit.NSSharingServicePicker,Foundation.NSObject[],AppKit.NSSharingService[])
M:AppKit.INSSharingServicePickerToolbarItemDelegate.GetItems(AppKit.NSSharingServicePickerToolbarItem)
-M:AppKit.INSSharingServicePickerTouchBarItemDelegate.ItemsForSharingServicePickerTouchBarItem(AppKit.NSSharingServicePickerTouchBarItem)
-M:AppKit.INSSoundDelegate.DidFinishPlaying(AppKit.NSSound,System.Boolean)
-M:AppKit.INSSpeechRecognizerDelegate.DidRecognizeCommand(AppKit.NSSpeechRecognizer,System.String)
M:AppKit.INSSpeechSynthesizerDelegate.DidEncounterError(AppKit.NSSpeechSynthesizer,System.UIntPtr,System.String,System.String)
-M:AppKit.INSSpeechSynthesizerDelegate.DidEncounterSyncMessage(AppKit.NSSpeechSynthesizer,System.String)
-M:AppKit.INSSpeechSynthesizerDelegate.DidFinishSpeaking(AppKit.NSSpeechSynthesizer,System.Boolean)
-M:AppKit.INSSpeechSynthesizerDelegate.WillSpeakPhoneme(AppKit.NSSpeechSynthesizer,System.Int16)
-M:AppKit.INSSpeechSynthesizerDelegate.WillSpeakWord(AppKit.NSSpeechSynthesizer,Foundation.NSRange,System.String)
-M:AppKit.INSSplitViewDelegate.CanCollapse(AppKit.NSSplitView,AppKit.NSView)
M:AppKit.INSSplitViewDelegate.ConstrainSplitPosition(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.INSSplitViewDelegate.DidResizeSubviews(Foundation.NSNotification)
M:AppKit.INSSplitViewDelegate.GetAdditionalEffectiveRect(AppKit.NSSplitView,System.IntPtr)
M:AppKit.INSSplitViewDelegate.GetEffectiveRect(AppKit.NSSplitView,CoreGraphics.CGRect,CoreGraphics.CGRect,System.IntPtr)
-M:AppKit.INSSplitViewDelegate.Resize(AppKit.NSSplitView,CoreGraphics.CGSize)
M:AppKit.INSSplitViewDelegate.SetMaxCoordinateOfSubview(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
M:AppKit.INSSplitViewDelegate.SetMinCoordinateOfSubview(AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.INSSplitViewDelegate.ShouldAdjustSize(AppKit.NSSplitView,AppKit.NSView)
M:AppKit.INSSplitViewDelegate.ShouldCollapseForDoubleClick(AppKit.NSSplitView,AppKit.NSView,System.IntPtr)
M:AppKit.INSSplitViewDelegate.ShouldHideDivider(AppKit.NSSplitView,System.IntPtr)
-M:AppKit.INSSplitViewDelegate.SplitViewWillResizeSubviews(Foundation.NSNotification)
M:AppKit.INSSpringLoadingDestination.Activated(System.Boolean,AppKit.INSDraggingInfo)
M:AppKit.INSSpringLoadingDestination.DraggingEnded(AppKit.INSDraggingInfo)
M:AppKit.INSSpringLoadingDestination.Entered(AppKit.INSDraggingInfo)
M:AppKit.INSSpringLoadingDestination.Exited(AppKit.INSDraggingInfo)
M:AppKit.INSSpringLoadingDestination.HighlightChanged(AppKit.INSDraggingInfo)
M:AppKit.INSSpringLoadingDestination.Updated(AppKit.INSDraggingInfo)
-M:AppKit.INSStackViewDelegate.DidReattachViews(AppKit.NSStackView,AppKit.NSView[])
-M:AppKit.INSStackViewDelegate.WillDetachViews(AppKit.NSStackView,AppKit.NSView[])
-M:AppKit.INSStandardKeyBindingResponding.CancelOperation(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.CapitalizeWord(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.CenterSelectionInVisibleArea(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.ChangeCaseOfLetter(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.Complete(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteBackward(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteBackwardByDecomposingPreviousCharacter(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteForward(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteToBeginningOfLine(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteToBeginningOfParagraph(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteToEndOfLine(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteToEndOfParagraph(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteToMark(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteWordBackward(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DeleteWordForward(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.DoCommandBySelector(ObjCRuntime.Selector)
-M:AppKit.INSStandardKeyBindingResponding.Indent(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertBacktab(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertContainerBreak(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertDoubleQuoteIgnoringSubstitution(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertLineBreak(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertNewline(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertNewlineIgnoringFieldEditor(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertParagraphSeparator(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertSingleQuoteIgnoringSubstitution(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertTab(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertTabIgnoringFieldEditor(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.InsertText(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.LowercaseWord(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MakeBaseWritingDirectionLeftToRight(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MakeBaseWritingDirectionNatural(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MakeBaseWritingDirectionRightToLeft(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MakeTextWritingDirectionLeftToRight(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MakeTextWritingDirectionNatural(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MakeTextWritingDirectionRightToLeft(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveBackward(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveBackwardAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveDown(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveDownAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveForward(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveForwardAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveLeft(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveLeftAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveParagraphBackwardAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveParagraphForwardAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveRight(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveRightAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToBeginningOfDocument(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToBeginningOfDocumentAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToBeginningOfLine(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToBeginningOfLineAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToBeginningOfParagraph(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToBeginningOfParagraphAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToEndOfDocument(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToEndOfDocumentAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToEndOfLine(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToEndOfLineAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToEndOfParagraph(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToEndOfParagraphAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToLeftEndOfLine(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToLeftEndOfLineAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToRightEndOfLine(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveToRightEndOfLineAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveUp(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveUpAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveWordBackward(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveWordBackwardAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveWordForward(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveWordForwardAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveWordLeft(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveWordLeftAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveWordRight(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.MoveWordRightAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.PageDown(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.PageDownAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.PageUp(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.PageUpAndModifySelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.QuickLookPreviewItems(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.ScrollLineDown(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.ScrollLineUp(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.ScrollPageDown(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.ScrollPageUp(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.ScrollToBeginningOfDocument(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.ScrollToEndOfDocument(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.SelectAll(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.SelectLine(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.SelectParagraph(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.SelectToMark(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.SelectWord(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.SetMark(Foundation.NSObject)
M:AppKit.INSStandardKeyBindingResponding.ShowContextMenuForSelection(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.SwapWithMark(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.Transpose(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.TransposeWords(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.UppercaseWord(Foundation.NSObject)
-M:AppKit.INSStandardKeyBindingResponding.Yank(Foundation.NSObject)
M:AppKit.INSTableViewDataSource.AcceptDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
-M:AppKit.INSTableViewDataSource.DraggingSessionEnded(AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.INSTableViewDataSource.DraggingSessionWillBegin(AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet)
-M:AppKit.INSTableViewDataSource.FilesDropped(AppKit.NSTableView,Foundation.NSUrl,Foundation.NSIndexSet)
M:AppKit.INSTableViewDataSource.GetObjectValue(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.INSTableViewDataSource.GetPasteboardWriterForRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.INSTableViewDataSource.GetRowCount(AppKit.NSTableView)
M:AppKit.INSTableViewDataSource.SetObjectValue(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.INSTableViewDataSource.SortDescriptorsChanged(AppKit.NSTableView,Foundation.NSSortDescriptor[])
M:AppKit.INSTableViewDataSource.UpdateDraggingItems(AppKit.NSTableView,AppKit.INSDraggingInfo)
M:AppKit.INSTableViewDataSource.ValidateDrop(AppKit.NSTableView,AppKit.INSDraggingInfo,System.IntPtr,AppKit.NSTableViewDropOperation)
-M:AppKit.INSTableViewDataSource.WriteRows(AppKit.NSTableView,Foundation.NSIndexSet,AppKit.NSPasteboard)
-M:AppKit.INSTableViewDelegate.ColumnDidMove(Foundation.NSNotification)
-M:AppKit.INSTableViewDelegate.ColumnDidResize(Foundation.NSNotification)
M:AppKit.INSTableViewDelegate.CoreGetRowView(AppKit.NSTableView,System.IntPtr)
M:AppKit.INSTableViewDelegate.DidAddRowView(AppKit.NSTableView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.INSTableViewDelegate.DidClickTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.INSTableViewDelegate.DidDragTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
M:AppKit.INSTableViewDelegate.DidRemoveRowView(AppKit.NSTableView,AppKit.NSTableRowView,System.IntPtr)
M:AppKit.INSTableViewDelegate.GetDataCell(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.INSTableViewDelegate.GetNextTypeSelectMatch(AppKit.NSTableView,System.IntPtr,System.IntPtr,System.String)
M:AppKit.INSTableViewDelegate.GetRowHeight(AppKit.NSTableView,System.IntPtr)
-M:AppKit.INSTableViewDelegate.GetSelectionIndexes(AppKit.NSTableView,Foundation.NSIndexSet)
M:AppKit.INSTableViewDelegate.GetSelectString(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.INSTableViewDelegate.GetSizeToFitColumnWidth(AppKit.NSTableView,System.IntPtr)
M:AppKit.INSTableViewDelegate.GetToolTip(AppKit.NSTableView,AppKit.NSCell,CoreGraphics.CGRect@,AppKit.NSTableColumn,System.IntPtr,CoreGraphics.CGPoint)
M:AppKit.INSTableViewDelegate.GetViewForItem(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.INSTableViewDelegate.IsGroupRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.INSTableViewDelegate.MouseDownInHeaderOfTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
M:AppKit.INSTableViewDelegate.RowActions(AppKit.NSTableView,System.IntPtr,AppKit.NSTableRowActionEdge)
-M:AppKit.INSTableViewDelegate.SelectionDidChange(Foundation.NSNotification)
-M:AppKit.INSTableViewDelegate.SelectionIsChanging(Foundation.NSNotification)
-M:AppKit.INSTableViewDelegate.SelectionShouldChange(AppKit.NSTableView)
M:AppKit.INSTableViewDelegate.ShouldEditTableColumn(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.INSTableViewDelegate.ShouldReorder(AppKit.NSTableView,System.IntPtr,System.IntPtr)
M:AppKit.INSTableViewDelegate.ShouldSelectRow(AppKit.NSTableView,System.IntPtr)
-M:AppKit.INSTableViewDelegate.ShouldSelectTableColumn(AppKit.NSTableView,AppKit.NSTableColumn)
M:AppKit.INSTableViewDelegate.ShouldShowCellExpansion(AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.INSTableViewDelegate.ShouldTrackCell(AppKit.NSTableView,AppKit.NSCell,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.INSTableViewDelegate.ShouldTypeSelect(AppKit.NSTableView,AppKit.NSEvent,System.String)
M:AppKit.INSTableViewDelegate.UserCanChangeVisibility(AppKit.NSTableView,AppKit.NSTableColumn)
M:AppKit.INSTableViewDelegate.UserDidChangeVisibility(AppKit.NSTableView,AppKit.NSTableColumn[])
M:AppKit.INSTableViewDelegate.WillDisplayCell(AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.INSTabViewDelegate.DidSelect(AppKit.NSTabView,AppKit.NSTabViewItem)
-M:AppKit.INSTabViewDelegate.NumberOfItemsChanged(AppKit.NSTabView)
-M:AppKit.INSTabViewDelegate.ShouldSelectTabViewItem(AppKit.NSTabView,AppKit.NSTabViewItem)
-M:AppKit.INSTabViewDelegate.WillSelect(AppKit.NSTabView,AppKit.NSTabViewItem)
M:AppKit.INSTextAttachmentCellProtocol.CellFrameForTextContainer(AppKit.NSTextContainer,CoreGraphics.CGRect,CoreGraphics.CGPoint,System.UIntPtr)
M:AppKit.INSTextAttachmentCellProtocol.DrawWithFrame(CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr,AppKit.NSLayoutManager)
M:AppKit.INSTextAttachmentCellProtocol.DrawWithFrame(CoreGraphics.CGRect,AppKit.NSView,System.UIntPtr)
@@ -8274,51 +7848,25 @@ M:AppKit.INSTextContent.SetContentType(Foundation.NSString)
M:AppKit.INSTextContentManagerDelegate.GetTextContentManager(AppKit.NSTextContentManager,AppKit.INSTextLocation)
M:AppKit.INSTextContentManagerDelegate.ShouldEnumerateTextElement(AppKit.NSTextContentManager,AppKit.NSTextElement,AppKit.NSTextContentManagerEnumerationOptions)
M:AppKit.INSTextContentStorageDelegate.GetTextParagraph(AppKit.NSTextContentStorage,Foundation.NSRange)
-M:AppKit.INSTextDelegate.TextDidBeginEditing(Foundation.NSNotification)
-M:AppKit.INSTextDelegate.TextDidChange(Foundation.NSNotification)
-M:AppKit.INSTextDelegate.TextDidEndEditing(Foundation.NSNotification)
-M:AppKit.INSTextDelegate.TextShouldBeginEditing(AppKit.NSText)
-M:AppKit.INSTextDelegate.TextShouldEndEditing(AppKit.NSText)
M:AppKit.INSTextElementProvider.AdjustedRange(AppKit.NSTextRange,System.Boolean)
M:AppKit.INSTextElementProvider.EnumerateTextElements(AppKit.INSTextLocation,AppKit.NSTextContentManagerEnumerationOptions,System.Func{AppKit.NSTextElement,System.Boolean})
M:AppKit.INSTextElementProvider.GetLocation(AppKit.INSTextLocation,System.IntPtr)
M:AppKit.INSTextElementProvider.GetOffset(AppKit.INSTextLocation,AppKit.INSTextLocation)
M:AppKit.INSTextElementProvider.ReplaceContents(AppKit.NSTextRange,AppKit.NSTextElement[])
M:AppKit.INSTextElementProvider.Synchronize(System.Action{Foundation.NSError})
-M:AppKit.INSTextFieldDelegate.Changed(Foundation.NSNotification)
-M:AppKit.INSTextFieldDelegate.DidFailToFormatString(AppKit.NSControl,System.String,System.String)
-M:AppKit.INSTextFieldDelegate.DidFailToValidatePartialString(AppKit.NSControl,System.String,System.String)
-M:AppKit.INSTextFieldDelegate.DoCommandBySelector(AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector)
-M:AppKit.INSTextFieldDelegate.EditingBegan(Foundation.NSNotification)
-M:AppKit.INSTextFieldDelegate.EditingEnded(Foundation.NSNotification)
-M:AppKit.INSTextFieldDelegate.GetCandidates(AppKit.NSTextField,AppKit.NSTextView,Foundation.NSRange)
M:AppKit.INSTextFieldDelegate.GetCompletions(AppKit.NSControl,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.INSTextFieldDelegate.GetTextCheckingResults(AppKit.NSTextField,AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange)
-M:AppKit.INSTextFieldDelegate.IsValidObject(AppKit.NSControl,Foundation.NSObject)
M:AppKit.INSTextFieldDelegate.ShouldSelectCandidate(AppKit.NSTextField,AppKit.NSTextView,System.UIntPtr)
-M:AppKit.INSTextFieldDelegate.TextShouldBeginEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.INSTextFieldDelegate.TextShouldEndEditing(AppKit.NSControl,AppKit.NSText)
-M:AppKit.INSTextFinderBarContainer.FindBarViewDidChangeHeight
-M:AppKit.INSTextFinderClient.DidReplaceCharacters
M:AppKit.INSTextFinderClient.DrawCharacters(Foundation.NSRange,AppKit.NSView)
M:AppKit.INSTextFinderClient.GetContentView(System.UIntPtr,Foundation.NSRange@)
M:AppKit.INSTextFinderClient.GetRects(Foundation.NSRange)
M:AppKit.INSTextFinderClient.GetString(System.UIntPtr,Foundation.NSRange@,System.Boolean)
M:AppKit.INSTextFinderClient.ReplaceCharacters(Foundation.NSRange,System.String)
-M:AppKit.INSTextFinderClient.ScrollRangeToVisible(Foundation.NSRange)
M:AppKit.INSTextFinderClient.ShouldReplaceCharacters(Foundation.NSArray,Foundation.NSArray)
-M:AppKit.INSTextInput.GetAttributedSubstring(Foundation.NSRange)
-M:AppKit.INSTextInput.GetCharacterIndex(CoreGraphics.CGPoint)
-M:AppKit.INSTextInput.GetFirstRectForCharacterRange(Foundation.NSRange)
-M:AppKit.INSTextInput.InsertText(Foundation.NSObject)
-M:AppKit.INSTextInput.SetMarkedText(Foundation.NSObject,Foundation.NSRange)
-M:AppKit.INSTextInput.UnmarkText
M:AppKit.INSTextInputClient.DrawsVertically(System.UIntPtr)
M:AppKit.INSTextInputClient.GetAttributedSubstring(Foundation.NSRange,Foundation.NSRange@)
M:AppKit.INSTextInputClient.GetBaselineDelta(System.UIntPtr)
M:AppKit.INSTextInputClient.GetCharacterIndex(CoreGraphics.CGPoint)
M:AppKit.INSTextInputClient.GetFirstRect(Foundation.NSRange,Foundation.NSRange@)
-M:AppKit.INSTextInputClient.GetFractionOfDistanceThroughGlyph(CoreGraphics.CGPoint)
M:AppKit.INSTextInputClient.InsertAdaptiveImageGlyph(AppKit.NSAdaptiveImageGlyph,Foundation.NSRange)
M:AppKit.INSTextInputClient.InsertText(Foundation.NSObject,Foundation.NSRange)
M:AppKit.INSTextInputClient.SetMarkedText(Foundation.NSObject,Foundation.NSRange,Foundation.NSRange)
@@ -8342,28 +7890,15 @@ M:AppKit.INSTextStorageObserving.PerformEditingTransaction(AppKit.NSTextStorage,
M:AppKit.INSTextStorageObserving.ProcessEditing(AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr,Foundation.NSRange)
M:AppKit.INSTextViewDelegate.CellClicked(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr)
M:AppKit.INSTextViewDelegate.CellDoubleClicked(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,System.UIntPtr)
-M:AppKit.INSTextViewDelegate.DidChangeSelection(Foundation.NSNotification)
-M:AppKit.INSTextViewDelegate.DidChangeTypingAttributes(Foundation.NSNotification)
M:AppKit.INSTextViewDelegate.DidCheckText(AppKit.NSTextView,Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,Foundation.NSTextCheckingResult[],Foundation.NSOrthography,System.IntPtr)
-M:AppKit.INSTextViewDelegate.DoCommandBySelector(AppKit.NSTextView,ObjCRuntime.Selector)
M:AppKit.INSTextViewDelegate.DraggedCell(AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,AppKit.NSEvent,System.UIntPtr)
-M:AppKit.INSTextViewDelegate.GetCandidates(AppKit.NSTextView,Foundation.NSRange)
M:AppKit.INSTextViewDelegate.GetCompletions(AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.INSTextViewDelegate.GetTextCheckingCandidates(AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange)
-M:AppKit.INSTextViewDelegate.GetUndoManager(AppKit.NSTextView)
M:AppKit.INSTextViewDelegate.GetWritablePasteboardTypes(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr)
M:AppKit.INSTextViewDelegate.GetWritingToolsIgnoredRangesInEnclosingRange(AppKit.NSTextView,Foundation.NSRange)
M:AppKit.INSTextViewDelegate.LinkClicked(AppKit.NSTextView,Foundation.NSObject,System.UIntPtr)
M:AppKit.INSTextViewDelegate.MenuForEvent(AppKit.NSTextView,AppKit.NSMenu,AppKit.NSEvent,System.UIntPtr)
-M:AppKit.INSTextViewDelegate.ShouldChangeTextInRange(AppKit.NSTextView,Foundation.NSRange,System.String)
-M:AppKit.INSTextViewDelegate.ShouldChangeTextInRanges(AppKit.NSTextView,Foundation.NSValue[],System.String[])
-M:AppKit.INSTextViewDelegate.ShouldChangeTypingAttributes(AppKit.NSTextView,Foundation.NSDictionary,Foundation.NSDictionary)
M:AppKit.INSTextViewDelegate.ShouldSelectCandidates(AppKit.NSTextView,System.UIntPtr)
M:AppKit.INSTextViewDelegate.ShouldSetSpellingState(AppKit.NSTextView,System.IntPtr,Foundation.NSRange)
-M:AppKit.INSTextViewDelegate.ShouldUpdateTouchBarItemIdentifiers(AppKit.NSTextView,System.String[])
-M:AppKit.INSTextViewDelegate.WillChangeSelection(AppKit.NSTextView,Foundation.NSRange,Foundation.NSRange)
-M:AppKit.INSTextViewDelegate.WillChangeSelectionFromRanges(AppKit.NSTextView,Foundation.NSValue[],Foundation.NSValue[])
-M:AppKit.INSTextViewDelegate.WillCheckText(AppKit.NSTextView,Foundation.NSRange,Foundation.NSDictionary,Foundation.NSTextCheckingTypes)
M:AppKit.INSTextViewDelegate.WillDisplayToolTip(AppKit.NSTextView,System.String,System.UIntPtr)
M:AppKit.INSTextViewDelegate.WriteCell(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr,AppKit.NSPasteboard,System.String)
M:AppKit.INSTextViewDelegate.WritingToolsDidEnd(AppKit.NSTextView)
@@ -8373,90 +7908,20 @@ M:AppKit.INSTextViewportLayoutControllerDelegate.DidLayout(AppKit.NSTextViewport
M:AppKit.INSTextViewportLayoutControllerDelegate.GetViewportBounds(AppKit.NSTextViewportLayoutController)
M:AppKit.INSTextViewportLayoutControllerDelegate.WillLayout(AppKit.NSTextViewportLayoutController)
M:AppKit.INSTokenFieldCellDelegate.GetCompletionStrings(AppKit.NSTokenFieldCell,System.String,System.IntPtr,System.IntPtr@)
-M:AppKit.INSTokenFieldCellDelegate.GetDisplayString(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.INSTokenFieldCellDelegate.GetEditingString(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.INSTokenFieldCellDelegate.GetMenu(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.INSTokenFieldCellDelegate.GetRepresentedObject(AppKit.NSTokenFieldCell,System.String)
-M:AppKit.INSTokenFieldCellDelegate.GetStyle(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.INSTokenFieldCellDelegate.HasMenu(AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.INSTokenFieldCellDelegate.Read(AppKit.NSTokenFieldCell,AppKit.NSPasteboard)
M:AppKit.INSTokenFieldCellDelegate.ShouldAddObjects(AppKit.NSTokenFieldCell,Foundation.NSObject[],System.UIntPtr)
-M:AppKit.INSTokenFieldCellDelegate.WriteRepresentedObjects(AppKit.NSTokenFieldCell,Foundation.NSObject[],AppKit.NSPasteboard)
M:AppKit.INSTokenFieldDelegate.GetCompletionStrings(AppKit.NSTokenField,System.String,System.IntPtr,System.IntPtr)
-M:AppKit.INSTokenFieldDelegate.GetDisplayString(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.INSTokenFieldDelegate.GetEditingString(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.INSTokenFieldDelegate.GetMenu(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.INSTokenFieldDelegate.GetRepresentedObject(AppKit.NSTokenField,System.String)
-M:AppKit.INSTokenFieldDelegate.GetStyle(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.INSTokenFieldDelegate.HasMenu(AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.INSTokenFieldDelegate.Read(AppKit.NSTokenField,AppKit.NSPasteboard)
M:AppKit.INSTokenFieldDelegate.ShouldAddObjects(AppKit.NSTokenField,Foundation.NSArray,System.UIntPtr)
-M:AppKit.INSTokenFieldDelegate.WriteRepresented(AppKit.NSTokenField,Foundation.NSArray,AppKit.NSPasteboard)
M:AppKit.INSToolbarDelegate.GetItemCanBeInsertedAt(AppKit.NSToolbar,System.String,System.IntPtr)
M:AppKit.INSToolbarDelegate.GetToolbarImmovableItemIdentifiers(AppKit.NSToolbar)
-M:AppKit.INSToolbarItemValidation.ValidateToolbarItem(AppKit.NSToolbarItem)
M:AppKit.INSToolTipOwner.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr)
M:AppKit.INSUserActivityRestoring.RestoreUserActivityState(Foundation.NSUserActivity)
-M:AppKit.INSUserInterfaceCompression.Compress(AppKit.NSUserInterfaceCompressionOptions[])
-M:AppKit.INSUserInterfaceCompression.GetMinimumSize(AppKit.NSUserInterfaceCompressionOptions[])
M:AppKit.INSUserInterfaceItemSearching.GetLocalizedTitles(Foundation.NSObject)
M:AppKit.INSUserInterfaceItemSearching.PerformAction(Foundation.NSObject)
M:AppKit.INSUserInterfaceItemSearching.SearchForItems(System.String,System.IntPtr,System.Action{Foundation.NSObject[]})
M:AppKit.INSUserInterfaceItemSearching.ShowAllHelpTopics(System.String)
-M:AppKit.INSUserInterfaceValidations.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
-M:AppKit.INSViewControllerPresentationAnimator.AnimateDismissal(AppKit.NSViewController,AppKit.NSViewController)
-M:AppKit.INSViewControllerPresentationAnimator.AnimatePresentation(AppKit.NSViewController,AppKit.NSViewController)
M:AppKit.INSViewToolTipOwner.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr)
-M:AppKit.INSWindowDelegate.CustomWindowsToEnterFullScreen(AppKit.NSWindow)
-M:AppKit.INSWindowDelegate.CustomWindowsToExitFullScreen(AppKit.NSWindow)
-M:AppKit.INSWindowDelegate.DidBecomeKey(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidBecomeMain(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidChangeBackingProperties(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidChangeScreen(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidChangeScreenProfile(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidDecodeRestorableState(AppKit.NSWindow,Foundation.NSCoder)
-M:AppKit.INSWindowDelegate.DidDeminiaturize(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidEndLiveResize(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidEndSheet(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidEnterFullScreen(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidEnterVersionBrowser(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidExitFullScreen(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidExitVersionBrowser(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidExpose(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidFailToEnterFullScreen(AppKit.NSWindow)
-M:AppKit.INSWindowDelegate.DidFailToExitFullScreen(AppKit.NSWindow)
-M:AppKit.INSWindowDelegate.DidMiniaturize(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidMove(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidResignKey(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidResignMain(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidResize(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.DidUpdate(Foundation.NSNotification)
M:AppKit.INSWindowDelegate.GetPreviewRepresentableActivityItems(AppKit.NSWindow)
M:AppKit.INSWindowDelegate.GetWindowForSharingRequest(AppKit.NSWindow)
-M:AppKit.INSWindowDelegate.ShouldDragDocumentWithEvent(AppKit.NSWindow,AppKit.NSEvent,CoreGraphics.CGPoint,AppKit.NSPasteboard)
-M:AppKit.INSWindowDelegate.ShouldPopUpDocumentPathMenu(AppKit.NSWindow,AppKit.NSMenu)
-M:AppKit.INSWindowDelegate.ShouldZoom(AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.INSWindowDelegate.StartCustomAnimationToEnterFullScreen(AppKit.NSWindow,System.Double)
-M:AppKit.INSWindowDelegate.StartCustomAnimationToExitFullScreen(AppKit.NSWindow,System.Double)
-M:AppKit.INSWindowDelegate.WillBeginSheet(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillClose(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillEncodeRestorableState(AppKit.NSWindow,Foundation.NSCoder)
-M:AppKit.INSWindowDelegate.WillEnterFullScreen(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillEnterVersionBrowser(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillExitFullScreen(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillExitVersionBrowser(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillMiniaturize(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillMove(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillPositionSheet(AppKit.NSWindow,AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.INSWindowDelegate.WillResize(AppKit.NSWindow,CoreGraphics.CGSize)
-M:AppKit.INSWindowDelegate.WillResizeForVersionBrowser(AppKit.NSWindow,CoreGraphics.CGSize,CoreGraphics.CGSize)
-M:AppKit.INSWindowDelegate.WillReturnFieldEditor(AppKit.NSWindow,Foundation.NSObject)
-M:AppKit.INSWindowDelegate.WillReturnUndoManager(AppKit.NSWindow)
-M:AppKit.INSWindowDelegate.WillStartLiveResize(Foundation.NSNotification)
-M:AppKit.INSWindowDelegate.WillUseFullScreenContentSize(AppKit.NSWindow,CoreGraphics.CGSize)
-M:AppKit.INSWindowDelegate.WillUseFullScreenPresentationOptions(AppKit.NSWindow,AppKit.NSApplicationPresentationOptions)
-M:AppKit.INSWindowDelegate.WillUseStandardFrame(AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.INSWindowDelegate.WindowShouldClose(Foundation.NSObject)
M:AppKit.INSWindowRestoration.RestoreWindow``1(System.String,Foundation.NSCoder,AppKit.NSWindowCompletionHandler)
M:AppKit.INSWritingToolsCoordinatorDelegate.FinishTextAnimation(AppKit.NSWritingToolsCoordinator,AppKit.NSWritingToolsCoordinatorTextAnimation,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,System.Action)
M:AppKit.INSWritingToolsCoordinatorDelegate.PrepareForTextAnimation(AppKit.NSWritingToolsCoordinator,AppKit.NSWritingToolsCoordinatorTextAnimation,Foundation.NSRange,AppKit.NSWritingToolsCoordinatorContext,System.Action)
@@ -8480,16 +7945,11 @@ M:AppKit.NSAccessibilityCustomAction.Dispose(System.Boolean)
M:AppKit.NSAccessibilityCustomRotor.Dispose(System.Boolean)
M:AppKit.NSAccessibilityCustomRotorItemResult.Dispose(System.Boolean)
M:AppKit.NSAccessibilityElement.Dispose(System.Boolean)
-M:AppKit.NSAccessibilityElementLoading_Extensions.GetAccessibilityRangeInTargetElement(AppKit.INSAccessibilityElementLoading,Foundation.INSSecureCoding)
M:AppKit.NSAccessibilityElementProtocol_Extensions.GetAccessibilityFocused(AppKit.INSAccessibilityElementProtocol)
M:AppKit.NSAccessibilityElementProtocol_Extensions.GetAccessibilityIdentifier(AppKit.INSAccessibilityElementProtocol)
-M:AppKit.NSAccessibilityLayoutItem_Extensions.SetAccessibilityFrame(AppKit.INSAccessibilityLayoutItem,CoreGraphics.CGRect)
M:AppKit.NSAccessibilityRow_Extensions.GetAccessibilityDisclosureLevel(AppKit.INSAccessibilityRow)
-M:AppKit.NSAccessibilityStaticText_Extensions.GetAccessibilityAttributedString(AppKit.INSAccessibilityStaticText,Foundation.NSRange)
M:AppKit.NSAccessibilityStaticText_Extensions.GetAccessibilityVisibleCharacterRange(AppKit.INSAccessibilityStaticText)
M:AppKit.NSAccessibilityStepper_Extensions.GetAccessibilityValue(AppKit.INSAccessibilityStepper)
-M:AppKit.NSAccessibilitySwitch_Extensions.AccessibilityPerformDecrement(AppKit.INSAccessibilitySwitch)
-M:AppKit.NSAccessibilitySwitch_Extensions.AccessibilityPerformIncrement(AppKit.INSAccessibilitySwitch)
M:AppKit.NSAccessibilityTable_Extensions.GetAccessibilityColumnHeaderUIElements(AppKit.INSAccessibilityTable)
M:AppKit.NSAccessibilityTable_Extensions.GetAccessibilityColumns(AppKit.INSAccessibilityTable)
M:AppKit.NSAccessibilityTable_Extensions.GetAccessibilityHeaderGroup(AppKit.INSAccessibilityTable)
@@ -8504,30 +7964,19 @@ M:AppKit.NSAccessibilityTable_Extensions.SetAccessibilitySelectedRows(AppKit.INS
M:AppKit.NSActionCell.add_Activated(System.EventHandler)
M:AppKit.NSActionCell.Dispose(System.Boolean)
M:AppKit.NSActionCell.remove_Activated(System.EventHandler)
-M:AppKit.NSAdaptiveImageGlyph.Copy(Foundation.NSZone)
M:AppKit.NSAdaptiveImageGlyph.GetImage(CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint@,CoreGraphics.CGSize@)
M:AppKit.NSAlert.BeginSheetForResponse(AppKit.NSWindow,System.Action{System.IntPtr})
M:AppKit.NSAlert.Dispose(System.Boolean)
-M:AppKit.NSAlertDelegate_Extensions.ShowHelp(AppKit.INSAlertDelegate,AppKit.NSAlert)
M:AppKit.NSAnimation.add_AnimationDidEnd(System.EventHandler)
M:AppKit.NSAnimation.add_AnimationDidReachProgressMark(System.EventHandler{AppKit.NSAnimationEventArgs})
M:AppKit.NSAnimation.add_AnimationDidStop(System.EventHandler)
-M:AppKit.NSAnimation.Copy(Foundation.NSZone)
M:AppKit.NSAnimation.Dispose(System.Boolean)
M:AppKit.NSAnimation.remove_AnimationDidEnd(System.EventHandler)
M:AppKit.NSAnimation.remove_AnimationDidReachProgressMark(System.EventHandler{AppKit.NSAnimationEventArgs})
M:AppKit.NSAnimation.remove_AnimationDidStop(System.EventHandler)
-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.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.add_DecodedRestorableState(System.EventHandler{AppKit.NSCoderEventArgs})
M:AppKit.NSApplication.add_DidBecomeActive(System.EventHandler)
M:AppKit.NSApplication.add_DidFinishLaunching(System.EventHandler)
@@ -8581,53 +8030,11 @@ 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.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)
-M:AppKit.NSApplicationDelegate_Extensions.ApplicationShouldOpenUntitledFile(AppKit.INSApplicationDelegate,AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate_Extensions.ApplicationShouldTerminate(AppKit.INSApplicationDelegate,AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate_Extensions.ApplicationShouldTerminateAfterLastWindowClosed(AppKit.INSApplicationDelegate,AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate_Extensions.ContinueUserActivity(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSUserActivity,AppKit.ContinueUserActivityRestorationHandler)
-M:AppKit.NSApplicationDelegate_Extensions.DecodedRestorableState(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSCoder)
-M:AppKit.NSApplicationDelegate_Extensions.DidBecomeActive(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.DidFinishLaunching(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.DidHide(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.DidResignActive(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.DidUnhide(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.DidUpdate(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.FailedToContinueUserActivity(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.String,Foundation.NSError)
-M:AppKit.NSApplicationDelegate_Extensions.FailedToRegisterForRemoteNotifications(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSError)
M:AppKit.NSApplicationDelegate_Extensions.GetHandler(AppKit.INSApplicationDelegate,AppKit.NSApplication,Intents.INIntent)
-M:AppKit.NSApplicationDelegate_Extensions.HandlesKey(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate_Extensions.OpenFile(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate_Extensions.OpenFiles(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.String[])
-M:AppKit.NSApplicationDelegate_Extensions.OpenFileWithoutUI(AppKit.INSApplicationDelegate,Foundation.NSObject,System.String)
-M:AppKit.NSApplicationDelegate_Extensions.OpenTempFile(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate_Extensions.OpenUrls(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSUrl[])
-M:AppKit.NSApplicationDelegate_Extensions.PrintFile(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate_Extensions.PrintFiles(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.String[],Foundation.NSDictionary,System.Boolean)
M:AppKit.NSApplicationDelegate_Extensions.ProtectedDataDidBecomeAvailable(AppKit.INSApplicationDelegate,Foundation.NSNotification)
M:AppKit.NSApplicationDelegate_Extensions.ProtectedDataWillBecomeUnavailable(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.ReceivedRemoteNotification(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSDictionary)
-M:AppKit.NSApplicationDelegate_Extensions.RegisteredForRemoteNotifications(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSData)
-M:AppKit.NSApplicationDelegate_Extensions.ScreenParametersChanged(AppKit.INSApplicationDelegate,Foundation.NSNotification)
M:AppKit.NSApplicationDelegate_Extensions.ShouldAutomaticallyLocalizeKeyEquivalents(AppKit.INSApplicationDelegate,AppKit.NSApplication)
M:AppKit.NSApplicationDelegate_Extensions.SupportsSecureRestorableState(AppKit.INSApplicationDelegate,AppKit.NSApplication)
-M:AppKit.NSApplicationDelegate_Extensions.UpdatedUserActivity(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSUserActivity)
-M:AppKit.NSApplicationDelegate_Extensions.UserDidAcceptCloudKitShare(AppKit.INSApplicationDelegate,AppKit.NSApplication,CloudKit.CKShareMetadata)
-M:AppKit.NSApplicationDelegate_Extensions.WillBecomeActive(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.WillContinueUserActivity(AppKit.INSApplicationDelegate,AppKit.NSApplication,System.String)
-M:AppKit.NSApplicationDelegate_Extensions.WillEncodeRestorableState(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSCoder)
-M:AppKit.NSApplicationDelegate_Extensions.WillFinishLaunching(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.WillHide(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-M:AppKit.NSApplicationDelegate_Extensions.WillPresentError(AppKit.INSApplicationDelegate,AppKit.NSApplication,Foundation.NSError)
-M:AppKit.NSApplicationDelegate_Extensions.WillResignActive(AppKit.INSApplicationDelegate,Foundation.NSNotification)
-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.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.NSBezierPath.Copy(Foundation.NSZone)
M:AppKit.NSBezierPath.ElementAt(System.IntPtr,CoreGraphics.CGPoint[]@)
M:AppKit.NSBezierPath.GetLineDash(System.Runtime.InteropServices.NFloat[]@,System.Runtime.InteropServices.NFloat@)
M:AppKit.NSBezierPath.SetAssociatedPointsAtIndex(CoreGraphics.CGPoint[],System.IntPtr)
@@ -8637,119 +8044,53 @@ M:AppKit.NSBrowser.Dispose(System.Boolean)
M:AppKit.NSBrowser.remove_DoubleClick(System.EventHandler)
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)
M:AppKit.NSBrowserDelegate_Extensions.ColumnTitle(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr)
-M:AppKit.NSBrowserDelegate_Extensions.CountChildren(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.NSBrowserDelegate_Extensions.CreateRowsForColumn(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,AppKit.NSMatrix)
M:AppKit.NSBrowserDelegate_Extensions.DidChangeLastColumn(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowserDelegate_Extensions.DidScroll(AppKit.INSBrowserDelegate,AppKit.NSBrowser)
M:AppKit.NSBrowserDelegate_Extensions.GetChild(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate_Extensions.HeaderViewControllerForItem(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.NSBrowserDelegate_Extensions.IsColumnValid(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr)
-M:AppKit.NSBrowserDelegate_Extensions.IsLeafItem(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.NSBrowserDelegate_Extensions.NextTypeSelectMatch(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,System.IntPtr,System.IntPtr,System.String)
-M:AppKit.NSBrowserDelegate_Extensions.ObjectValueForItem(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate_Extensions.PreviewViewControllerForLeafItem(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.NSBrowserDelegate_Extensions.PromisedFilesDroppedAtDestination(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSUrl,Foundation.NSIndexSet,System.IntPtr)
-M:AppKit.NSBrowserDelegate_Extensions.RootItemForBrowser(AppKit.INSBrowserDelegate,AppKit.NSBrowser)
M:AppKit.NSBrowserDelegate_Extensions.RowHeight(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,System.IntPtr)
M:AppKit.NSBrowserDelegate_Extensions.RowsInColumn(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr)
M:AppKit.NSBrowserDelegate_Extensions.SelectCellWithString(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.String,System.IntPtr)
M:AppKit.NSBrowserDelegate_Extensions.SelectionIndexesForProposedSelection(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSIndexSet,System.IntPtr)
M:AppKit.NSBrowserDelegate_Extensions.SelectRowInColumn(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,System.IntPtr)
-M:AppKit.NSBrowserDelegate_Extensions.SetObjectValue(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSObject,Foundation.NSObject)
-M:AppKit.NSBrowserDelegate_Extensions.ShouldEditItem(AppKit.INSBrowserDelegate,AppKit.NSBrowser,Foundation.NSObject)
M:AppKit.NSBrowserDelegate_Extensions.ShouldShowCellExpansion(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,System.IntPtr)
M:AppKit.NSBrowserDelegate_Extensions.ShouldSizeColumn(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,System.Boolean,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSBrowserDelegate_Extensions.ShouldTypeSelectForEvent(AppKit.INSBrowserDelegate,AppKit.NSBrowser,AppKit.NSEvent,System.String)
M:AppKit.NSBrowserDelegate_Extensions.SizeToFitWidth(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr)
M:AppKit.NSBrowserDelegate_Extensions.TypeSelectString(AppKit.INSBrowserDelegate,AppKit.NSBrowser,System.IntPtr,System.IntPtr)
M:AppKit.NSBrowserDelegate_Extensions.ValidateDrop(AppKit.INSBrowserDelegate,AppKit.NSBrowser,AppKit.INSDraggingInfo,System.IntPtr@,System.IntPtr@,AppKit.NSBrowserDropOperation@)
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.NSButton.Dispose(System.Boolean)
M:AppKit.NSButtonTouchBarItem.Dispose(System.Boolean)
M:AppKit.NSCandidateListTouchBarItem.Dispose(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.NSCell.Copy(Foundation.NSZone)
M:AppKit.NSCell.Dispose(System.Boolean)
M:AppKit.NSCell.DrawNinePartImage(CoreGraphics.CGRect,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat,System.Boolean)
M:AppKit.NSCell.DrawThreePartImage(CoreGraphics.CGRect,AppKit.NSImage,AppKit.NSImage,AppKit.NSImage,System.Boolean,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat,System.Boolean)
-M:AppKit.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.NSCoderAppKitAddons.DecodeNXColor(Foundation.NSCoder)
-M:AppKit.NSCollectionLayoutAnchor.Copy(Foundation.NSZone)
M:AppKit.NSCollectionLayoutAnchor.Create(AppKit.NSDirectionalRectEdge,AppKit.NSCollectionLayoutAnchorOffsetType,CoreGraphics.CGPoint)
-M:AppKit.NSCollectionLayoutBoundarySupplementaryItem.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutDecorationItem.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutDimension.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutEdgeSpacing.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutGroup.Copy(Foundation.NSZone)
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.NSCollectionLayoutItem.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutSection.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutSize.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutSpacing.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionLayoutSupplementaryItem.Copy(Foundation.NSZone)
M:AppKit.NSCollectionView.Dispose(System.Boolean)
-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.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)
-M:AppKit.NSCollectionViewDelegate_Extensions.CanDragItems(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSEvent)
-M:AppKit.NSCollectionViewDelegate_Extensions.DisplayingItemEnded(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.NSCollectionViewItem,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegate_Extensions.DisplayingSupplementaryViewEnded(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.NSView,System.String,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegate_Extensions.DraggingSessionEnded(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.NSCollectionViewDelegate_Extensions.DraggingSessionWillBegin(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet)
-M:AppKit.NSCollectionViewDelegate_Extensions.DraggingSessionWillBegin(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate_Extensions.GetDraggingImage(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSEvent,CoreGraphics.CGPoint@)
-M:AppKit.NSCollectionViewDelegate_Extensions.GetNamesOfPromisedFiles(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSUrl,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate_Extensions.GetPasteboardWriter(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSIndexPath)
-M:AppKit.NSCollectionViewDelegate_Extensions.ItemsChanged(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSCollectionViewItemHighlightState)
-M:AppKit.NSCollectionViewDelegate_Extensions.ItemsDeselected(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate_Extensions.ItemsSelected(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate_Extensions.NamesOfPromisedFilesDroppedAtDestination(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSUrl,Foundation.NSIndexSet)
M:AppKit.NSCollectionViewDelegate_Extensions.PasteboardWriterForItem(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,System.UIntPtr)
-M:AppKit.NSCollectionViewDelegate_Extensions.ShouldChangeItems(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet,AppKit.NSCollectionViewItemHighlightState)
-M:AppKit.NSCollectionViewDelegate_Extensions.ShouldDeselectItems(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate_Extensions.ShouldSelectItems(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,Foundation.NSSet)
-M:AppKit.NSCollectionViewDelegate_Extensions.TransitionLayout(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.NSCollectionViewLayout,AppKit.NSCollectionViewLayout)
M:AppKit.NSCollectionViewDelegate_Extensions.UpdateDraggingItemsForDrag(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.INSDraggingInfo)
M:AppKit.NSCollectionViewDelegate_Extensions.ValidateDrop(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.INSDraggingInfo,Foundation.NSIndexPath@,AppKit.NSCollectionViewDropOperation@)
M:AppKit.NSCollectionViewDelegate_Extensions.ValidateDrop(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.INSDraggingInfo,System.IntPtr@,AppKit.NSCollectionViewDropOperation@)
-M:AppKit.NSCollectionViewDelegate_Extensions.WillDisplayItem(AppKit.INSCollectionViewDelegate,AppKit.NSCollectionView,AppKit.NSCollectionViewItem,Foundation.NSIndexPath)
-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.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.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.NSCollectionViewItem.Copy(Foundation.NSZone)
M:AppKit.NSCollectionViewItem.Dispose(System.Boolean)
M:AppKit.NSCollectionViewLayout.Dispose(System.Boolean)
-M:AppKit.NSCollectionViewLayoutAttributes.Copy(Foundation.NSZone)
-M:AppKit.NSCollectionViewPrefetching_Extensions.CancelPrefetching(AppKit.INSCollectionViewPrefetching,AppKit.NSCollectionView,Foundation.NSIndexPath[])
M:AppKit.NSCollectionViewSectionHeaderView_Extensions.GetSectionCollapseButton(AppKit.INSCollectionViewSectionHeaderView)
M:AppKit.NSCollectionViewSectionHeaderView_Extensions.SetSectionCollapseButton(AppKit.INSCollectionViewSectionHeaderView,AppKit.NSButton)
-M:AppKit.NSColor.Copy(Foundation.NSZone)
M:AppKit.NSColor.FromCalibratedHsb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromCalibratedRgb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSColor.FromColorSpace(AppKit.NSColorSpace,System.Runtime.InteropServices.NFloat[])
@@ -8773,46 +8114,23 @@ M:AppKit.NSComboBox.remove_SelectionIsChanging(System.EventHandler)
M:AppKit.NSComboBox.remove_WillDismiss(System.EventHandler)
M:AppKit.NSComboBox.remove_WillPopUp(System.EventHandler)
M:AppKit.NSComboBoxCell.Dispose(System.Boolean)
-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.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.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.NSControl.add_Activated(System.EventHandler)
M:AppKit.NSControl.Dispose(System.Boolean)
M:AppKit.NSControl.remove_Activated(System.EventHandler)
-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)
-M:AppKit.NSControlTextEditingDelegate_Extensions.DidFailToFormatString(AppKit.INSControlTextEditingDelegate,AppKit.NSControl,System.String,System.String)
-M:AppKit.NSControlTextEditingDelegate_Extensions.DidFailToValidatePartialString(AppKit.INSControlTextEditingDelegate,AppKit.NSControl,System.String,System.String)
-M:AppKit.NSControlTextEditingDelegate_Extensions.DoCommandBySelector(AppKit.INSControlTextEditingDelegate,AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector)
M:AppKit.NSControlTextEditingDelegate_Extensions.GetCompletions(AppKit.INSControlTextEditingDelegate,AppKit.NSControl,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-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.NSCustomImageRep.Dispose(System.Boolean)
-M:AppKit.NSDataAsset.Copy(Foundation.NSZone)
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.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.NSDiffableDataSourceSnapshot`2.Copy(Foundation.NSZone)
M:AppKit.NSDiffableDataSourceSnapshot`2.ReconfigureItems(`1[])
M:AppKit.NSDirectionalEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:AppKit.NSDirectionalEdgeInsets.op_Equality(AppKit.NSDirectionalEdgeInsets,AppKit.NSDirectionalEdgeInsets)
M:AppKit.NSDirectionalEdgeInsets.op_Inequality(AppKit.NSDirectionalEdgeInsets,AppKit.NSDirectionalEdgeInsets)
-M:AppKit.NSDockTilePlugIn_Extensions.DockMenu(AppKit.INSDockTilePlugIn)
M:AppKit.NSDocument.AccommodatePresentedItemEviction(System.Action{Foundation.NSError})
M:AppKit.NSDocument.StopBrowsingVersionsAsync
M:AppKit.NSDraggingDestination_Extensions.ConcludeDragOperation(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo)
@@ -8824,13 +8142,7 @@ M:AppKit.NSDraggingDestination_Extensions.GetWantsPeriodicDraggingUpdates(AppKit
M:AppKit.NSDraggingDestination_Extensions.PerformDragOperation(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo)
M:AppKit.NSDraggingDestination_Extensions.PrepareForDragOperation(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo)
M:AppKit.NSDraggingSession.EnumerateDraggingItems(AppKit.NSDraggingItemEnumerationOptions,AppKit.NSView,AppKit.INSPasteboardReading[],Foundation.NSDictionary,AppKit.NSDraggingEnumerator)
-M:AppKit.NSDraggingSource_Extensions.DraggedImageBeganAt(AppKit.INSDraggingSource,AppKit.NSImage,CoreGraphics.CGPoint)
-M:AppKit.NSDraggingSource_Extensions.DraggedImageEndedAtDeposited(AppKit.INSDraggingSource,AppKit.NSImage,CoreGraphics.CGPoint,System.Boolean)
-M:AppKit.NSDraggingSource_Extensions.DraggedImageEndedAtOperation(AppKit.INSDraggingSource,AppKit.NSImage,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:AppKit.NSDraggingSource_Extensions.DraggedImageMovedTo(AppKit.INSDraggingSource,AppKit.NSImage,CoreGraphics.CGPoint)
-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.NSDrawer.add_DrawerDidClose(System.EventHandler)
M:AppKit.NSDrawer.add_DrawerDidOpen(System.EventHandler)
M:AppKit.NSDrawer.add_DrawerWillClose(System.EventHandler)
@@ -8840,26 +8152,10 @@ 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.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)
-M:AppKit.NSDrawerDelegate_Extensions.DrawerShouldOpen(AppKit.INSDrawerDelegate,AppKit.NSDrawer)
-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.NSEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:AppKit.NSEditorRegistration_Extensions.ObjectDidBeginEditing(AppKit.INSEditorRegistration,AppKit.INSEditor)
-M:AppKit.NSEditorRegistration_Extensions.ObjectDidEndEditing(AppKit.INSEditorRegistration,AppKit.INSEditor)
-M:AppKit.NSEvent.Copy(Foundation.NSZone)
-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.Dispose(System.Boolean)
-M:AppKit.NSFilePromiseProviderDelegate_Extensions.GetOperationQueue(AppKit.INSFilePromiseProviderDelegate,AppKit.NSFilePromiseProvider)
M:AppKit.NSFont.BoldSystemFontOfSize(System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.ControlContentFontOfSize(System.Runtime.InteropServices.NFloat)
-M:AppKit.NSFont.Copy(Foundation.NSZone)
M:AppKit.NSFont.FromDescription(AppKit.NSFontDescriptor,System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.FromFontName(System.String,System.Runtime.InteropServices.NFloat)
M:AppKit.NSFont.LabelFontOfSize(System.Runtime.InteropServices.NFloat)
@@ -8876,24 +8172,9 @@ 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.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.MutableCopy(Foundation.NSZone)
-M:AppKit.NSFontDescriptor.Copy(Foundation.NSZone)
M:AppKit.NSFontDescriptor.Create(AppKit.NSFontDescriptorSystemDesign)
M:AppKit.NSFontManager.Dispose(System.Boolean)
-M:AppKit.NSGestureRecognizer_NSTouchBar.GetAllowedTouchTypes(AppKit.NSGestureRecognizer)
-M:AppKit.NSGestureRecognizer_NSTouchBar.SetAllowedTouchTypes(AppKit.NSGestureRecognizer,AppKit.NSTouchTypeMask)
M:AppKit.NSGestureRecognizer.Dispose(System.Boolean)
-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.NSGlyphInfo.Copy(Foundation.NSZone)
-M:AppKit.NSGradient.Copy(Foundation.NSZone)
M:AppKit.NSGraphics.DrawTiledRects(CoreGraphics.CGRect,CoreGraphics.CGRect,AppKit.NSRectEdge[],System.Runtime.InteropServices.NFloat[])
M:AppKit.NSGraphics.FrameRect(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat,AppKit.NSCompositingOperation)
M:AppKit.NSGraphics.FrameRect(CoreGraphics.CGRect,System.Runtime.InteropServices.NFloat)
@@ -8906,23 +8187,15 @@ M:AppKit.NSImage.add_DidLoadPartOfRepresentation(System.EventHandler{AppKit.NSIm
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.Copy(Foundation.NSZone)
M:AppKit.NSImage.Dispose(System.Boolean)
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.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.NSImageRep.Copy(Foundation.NSZone)
M:AppKit.NSImageResizingModeExtensions.ToManaged(System.IntPtr)
M:AppKit.NSImageResizingModeExtensions.ToNative(AppKit.NSImageResizingMode)
-M:AppKit.NSImageSymbolConfiguration.Copy(Foundation.NSZone)
M:AppKit.NSLayerDelegateContentsScaleUpdating_Extensions.ShouldInheritContentsScale(AppKit.INSLayerDelegateContentsScaleUpdating,CoreAnimation.CALayer,System.Runtime.InteropServices.NFloat,AppKit.NSWindow)
-M:AppKit.NSLayoutAnchor`1.Copy(Foundation.NSZone)
M:AppKit.NSLayoutAnchor`1.Dispose(System.Boolean)
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)
@@ -8976,114 +8249,29 @@ M:AppKit.NSLayoutManagerDelegate_Extensions.ShouldUseTemporaryAttributes(AppKit.
M:AppKit.NSMatrix.add_DoubleClick(System.EventHandler)
M:AppKit.NSMatrix.Dispose(System.Boolean)
M:AppKit.NSMatrix.remove_DoubleClick(System.EventHandler)
-M:AppKit.NSMenu.Copy(Foundation.NSZone)
M:AppKit.NSMenu.Dispose(System.Boolean)
M:AppKit.NSMenu.InsertItem(System.String,System.String,System.IntPtr)
-M:AppKit.NSMenuDelegate_Extensions.ConfinementRectForMenu(AppKit.INSMenuDelegate,AppKit.NSMenu,AppKit.NSScreen)
-M:AppKit.NSMenuDelegate_Extensions.HasKeyEquivalentForEvent(AppKit.INSMenuDelegate,AppKit.NSMenu,AppKit.NSEvent,Foundation.NSObject,ObjCRuntime.Selector)
-M:AppKit.NSMenuDelegate_Extensions.MenuDidClose(AppKit.INSMenuDelegate,AppKit.NSMenu)
-M:AppKit.NSMenuDelegate_Extensions.MenuItemCount(AppKit.INSMenuDelegate,AppKit.NSMenu)
-M:AppKit.NSMenuDelegate_Extensions.MenuWillHighlightItem(AppKit.INSMenuDelegate,AppKit.NSMenu,AppKit.NSMenuItem)
-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.NSMenuItem.add_Activated(System.EventHandler)
-M:AppKit.NSMenuItem.Copy(Foundation.NSZone)
M:AppKit.NSMenuItem.Dispose(System.Boolean)
M:AppKit.NSMenuItem.remove_Activated(System.EventHandler)
-M:AppKit.NSMenuItemBadge.Copy(Foundation.NSZone)
-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)
-M:AppKit.NSMutableAttributedStringAppKitAddons.FixParagraphStyleAttributeInRange(Foundation.NSMutableAttributedString,Foundation.NSRange)
-M:AppKit.NSMutableAttributedStringAppKitAddons.ReadFromData(Foundation.NSMutableAttributedString,Foundation.NSData,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary@,Foundation.NSError@)
-M:AppKit.NSMutableAttributedStringAppKitAddons.ReadFromData(Foundation.NSMutableAttributedString,Foundation.NSData,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary@)
-M:AppKit.NSMutableAttributedStringAppKitAddons.ReadFromData(Foundation.NSMutableAttributedString,Foundation.NSData,Foundation.NSDictionary,Foundation.NSDictionary@,Foundation.NSError@)
-M:AppKit.NSMutableAttributedStringAppKitAddons.ReadFromData(Foundation.NSMutableAttributedString,Foundation.NSData,Foundation.NSDictionary,Foundation.NSDictionary@)
-M:AppKit.NSMutableAttributedStringAppKitAddons.ReadFromURL(Foundation.NSMutableAttributedString,Foundation.NSUrl,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary@,Foundation.NSError@)
-M:AppKit.NSMutableAttributedStringAppKitAddons.ReadFromURL(Foundation.NSMutableAttributedString,Foundation.NSUrl,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary@)
-M:AppKit.NSMutableAttributedStringAppKitAddons.ReadFromURL(Foundation.NSMutableAttributedString,Foundation.NSUrl,Foundation.NSDictionary,Foundation.NSDictionary@,Foundation.NSError@)
-M:AppKit.NSMutableAttributedStringAppKitAddons.ReadFromURL(Foundation.NSMutableAttributedString,Foundation.NSUrl,Foundation.NSDictionary,Foundation.NSDictionary@)
-M:AppKit.NSMutableAttributedStringAppKitAddons.SetAlignment(Foundation.NSMutableAttributedString,AppKit.NSTextAlignment,Foundation.NSRange)
M:AppKit.NSMutableAttributedStringAppKitAddons.SetBaseWritingDirection(Foundation.NSMutableAttributedString,Foundation.NSWritingDirection,Foundation.NSRange)
-M:AppKit.NSMutableAttributedStringAppKitAddons.SubscriptRange(Foundation.NSMutableAttributedString,Foundation.NSRange)
-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.NSNibConnector.Dispose(System.Boolean)
-M:AppKit.NSObject_NSEditorRegistration.ObjectDidBeginEditing(Foundation.NSObject,AppKit.INSEditor)
-M:AppKit.NSObject_NSEditorRegistration.ObjectDidEndEditing(Foundation.NSObject,AppKit.INSEditor)
-M:AppKit.NSObject_NSFontPanelValidationAdditions.GetValidModes(Foundation.NSObject,AppKit.NSFontPanel)
-M:AppKit.NSObject_NSToolbarItemValidation.ValidateToolbarItem(Foundation.NSObject,AppKit.NSToolbarItem)
M:AppKit.NSOpenGLLayer.Dispose(System.Boolean)
-M:AppKit.NSOpenSavePanelDelegate_Extensions.CompareFilenames(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,System.String,System.String,System.Boolean)
-M:AppKit.NSOpenSavePanelDelegate_Extensions.DidChangeToDirectory(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,Foundation.NSUrl)
M:AppKit.NSOpenSavePanelDelegate_Extensions.DidSelectType(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,UniformTypeIdentifiers.UTType)
-M:AppKit.NSOpenSavePanelDelegate_Extensions.DirectoryDidChange(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,System.String)
M:AppKit.NSOpenSavePanelDelegate_Extensions.GetDisplayName(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,UniformTypeIdentifiers.UTType)
-M:AppKit.NSOpenSavePanelDelegate_Extensions.IsValidFilename(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,System.String)
-M:AppKit.NSOpenSavePanelDelegate_Extensions.SelectionDidChange(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel)
-M:AppKit.NSOpenSavePanelDelegate_Extensions.ShouldEnableUrl(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,Foundation.NSUrl)
-M:AppKit.NSOpenSavePanelDelegate_Extensions.ShouldShowFilename(AppKit.INSOpenSavePanelDelegate,AppKit.NSSavePanel,System.String)
-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.NSOutlineView.Dispose(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)
-M:AppKit.NSOutlineViewDataSource_Extensions.FilesDropped(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSUrl,Foundation.NSArray)
M:AppKit.NSOutlineViewDataSource_Extensions.GetChild(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,System.IntPtr,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource_Extensions.GetChildrenCount(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource_Extensions.GetObjectValue(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource_Extensions.ItemExpandable(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource_Extensions.ItemForPersistentObject(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource_Extensions.OutlineViewwriteItemstoPasteboard(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSArray,AppKit.NSPasteboard)
-M:AppKit.NSOutlineViewDataSource_Extensions.PasteboardWriterForItem(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource_Extensions.PersistentObjectForItem(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDataSource_Extensions.SetObjectValue(AppKit.INSOutlineViewDataSource,AppKit.NSOutlineView,Foundation.NSObject,AppKit.NSTableColumn,Foundation.NSObject)
-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.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)
-M:AppKit.NSOutlineViewDelegate_Extensions.DidClickTableColumn(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.NSOutlineViewDelegate_Extensions.DidDragTableColumn(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn)
M:AppKit.NSOutlineViewDelegate_Extensions.DidRemoveRowView(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSOutlineViewDelegate_Extensions.GetCell(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.GetNextTypeSelectMatch(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject,Foundation.NSObject,System.String)
-M:AppKit.NSOutlineViewDelegate_Extensions.GetRowHeight(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.GetSelectionIndexes(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSIndexSet)
-M:AppKit.NSOutlineViewDelegate_Extensions.GetSelectString(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
M:AppKit.NSOutlineViewDelegate_Extensions.GetSizeToFitColumnWidth(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,System.IntPtr)
M:AppKit.NSOutlineViewDelegate_Extensions.GetTintConfiguration(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.GetView(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.IsGroupItem(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.ItemDidCollapse(AppKit.INSOutlineViewDelegate,Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate_Extensions.ItemDidExpand(AppKit.INSOutlineViewDelegate,Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate_Extensions.ItemWillCollapse(AppKit.INSOutlineViewDelegate,Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate_Extensions.ItemWillExpand(AppKit.INSOutlineViewDelegate,Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate_Extensions.MouseDown(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.NSOutlineViewDelegate_Extensions.RowViewForItem(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.SelectionDidChange(AppKit.INSOutlineViewDelegate,Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate_Extensions.SelectionIsChanging(AppKit.INSOutlineViewDelegate,Foundation.NSNotification)
-M:AppKit.NSOutlineViewDelegate_Extensions.SelectionShouldChange(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldCollapseItem(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldEditTableColumn(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldExpandItem(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject)
M:AppKit.NSOutlineViewDelegate_Extensions.ShouldReorder(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,System.IntPtr,System.IntPtr)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldSelectItem(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldSelectTableColumn(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldShowCellExpansion(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldShowOutlineCell(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldTrackCell(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSCell,AppKit.NSTableColumn,Foundation.NSObject)
-M:AppKit.NSOutlineViewDelegate_Extensions.ShouldTypeSelect(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSEvent,System.String)
-M:AppKit.NSOutlineViewDelegate_Extensions.ToolTipForCell(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSCell,CoreGraphics.CGRect@,AppKit.NSTableColumn,Foundation.NSObject,CoreGraphics.CGPoint)
M:AppKit.NSOutlineViewDelegate_Extensions.UserCanChangeVisibility(AppKit.INSOutlineViewDelegate,AppKit.NSOutlineView,AppKit.NSTableColumn)
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.NSPageController.add_DidEndLiveTransition(System.EventHandler)
M:AppKit.NSPageController.add_DidTransition(System.EventHandler{AppKit.NSPageControllerTransitionEventArgs})
M:AppKit.NSPageController.add_PrepareViewController(System.EventHandler{AppKit.NSPageControllerPrepareViewControllerEventArgs})
@@ -9093,16 +8281,7 @@ 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})
M:AppKit.NSPageController.remove_WillStartLiveTransition(System.EventHandler)
-M:AppKit.NSPageControllerDelegate_Extensions.DidEndLiveTransition(AppKit.INSPageControllerDelegate,AppKit.NSPageController)
-M:AppKit.NSPageControllerDelegate_Extensions.DidTransition(AppKit.INSPageControllerDelegate,AppKit.NSPageController,Foundation.NSObject)
-M:AppKit.NSPageControllerDelegate_Extensions.GetFrame(AppKit.INSPageControllerDelegate,AppKit.NSPageController,Foundation.NSObject)
-M:AppKit.NSPageControllerDelegate_Extensions.GetIdentifier(AppKit.INSPageControllerDelegate,AppKit.NSPageController,Foundation.NSObject)
-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.NSPageLayout.BeginSheetAsync(AppKit.NSPrintInfo,AppKit.NSWindow)
-M:AppKit.NSParagraphStyle.Copy(Foundation.NSZone)
-M:AppKit.NSParagraphStyle.MutableCopy(Foundation.NSZone)
M:AppKit.NSPasteboard.DetectMetadata(System.Collections.Generic.HashSet{AppKit.NSPasteboardMetadataType},AppKit.NSPasteboardDetectMetadataCompletionHandler)
M:AppKit.NSPasteboard.DetectMetadata(System.Collections.Generic.HashSet{AppKit.NSPasteboardMetadataType},AppKit.NSPasteboardDetectMetadataHandler)
M:AppKit.NSPasteboard.DetectPatterns(System.Collections.Generic.HashSet{AppKit.NSPasteboardDetectionPattern},AppKit.NSPasteboardDetectPatternsCompletionHandler)
@@ -9115,9 +8294,6 @@ M:AppKit.NSPasteboardItem.DetectPatterns(System.Collections.Generic.HashSet{AppK
M:AppKit.NSPasteboardItem.DetectPatterns(System.Collections.Generic.HashSet{AppKit.NSPasteboardDetectionPattern},AppKit.NSPasteboardDetectPatternsHandler)
M:AppKit.NSPasteboardItem.DetectValues(System.Collections.Generic.HashSet{AppKit.NSPasteboardDetectionPattern},AppKit.NSPasteboardDetectValuesCompletionHandler)
M:AppKit.NSPasteboardItem.DetectValues(System.Collections.Generic.HashSet{AppKit.NSPasteboardDetectionPattern},AppKit.NSPasteboardDetectValuesHandler)
-M:AppKit.NSPasteboardItemDataProvider_Extensions.FinishedWithDataProvider(AppKit.INSPasteboardItemDataProvider,AppKit.NSPasteboard)
-M:AppKit.NSPasteboardTypeOwner_Extensions.PasteboardChangedOwner(AppKit.INSPasteboardTypeOwner,AppKit.NSPasteboard)
-M:AppKit.NSPasteboardWriting_Extensions.GetWritingOptionsForType(AppKit.INSPasteboardWriting,System.String,AppKit.NSPasteboard)
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})
@@ -9125,37 +8301,17 @@ M:AppKit.NSPathCell.Dispose(System.Boolean)
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.NSPathCellDelegate_Extensions.WillDisplayOpenPanel(AppKit.INSPathCellDelegate,AppKit.NSPathCell,AppKit.NSOpenPanel)
-M:AppKit.NSPathCellDelegate_Extensions.WillPopupMenu(AppKit.INSPathCellDelegate,AppKit.NSPathCell,AppKit.NSMenu)
M:AppKit.NSPathControl.add_DoubleClick(System.EventHandler)
M:AppKit.NSPathControl.Dispose(System.Boolean)
M:AppKit.NSPathControl.remove_DoubleClick(System.EventHandler)
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.NSPickerTouchBarItem.Dispose(System.Boolean)
M:AppKit.NSPopover.Dispose(System.Boolean)
-M:AppKit.NSPopoverDelegate_Extensions.DidClose(AppKit.INSPopoverDelegate,Foundation.NSNotification)
-M:AppKit.NSPopoverDelegate_Extensions.DidDetach(AppKit.INSPopoverDelegate,AppKit.NSPopover)
-M:AppKit.NSPopoverDelegate_Extensions.DidShow(AppKit.INSPopoverDelegate,Foundation.NSNotification)
-M:AppKit.NSPopoverDelegate_Extensions.GetDetachableWindowForPopover(AppKit.INSPopoverDelegate,AppKit.NSPopover)
-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.NSPredicateEditorRowTemplate.Copy(Foundation.NSZone)
M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetIconProvider(AppKit.INSPreviewRepresentableActivityItem)
M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetImageProvider(AppKit.INSPreviewRepresentableActivityItem)
M:AppKit.NSPreviewRepresentableActivityItem_Extensions.GetTitle(AppKit.INSPreviewRepresentableActivityItem)
-M:AppKit.NSPrinter.Copy(Foundation.NSZone)
-M:AppKit.NSPrintInfo.Copy(Foundation.NSZone)
M:AppKit.NSPrintPanel.BeginSheetAsync(AppKit.NSPrintInfo,AppKit.NSWindow)
-M:AppKit.NSPrintPanelAccessorizing_Extensions.KeyPathsForValuesAffectingPreview(AppKit.INSPrintPanelAccessorizing)
-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.NSRuleEditor.add_Changed(System.EventHandler)
M:AppKit.NSRuleEditor.add_EditingBegan(System.EventHandler)
@@ -9166,13 +8322,7 @@ 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.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.NSRulerMarker.Copy(Foundation.NSZone)
-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.Dispose(System.Boolean)
M:AppKit.NSSavePanel.add_DidChangeToDirectory(System.EventHandler{AppKit.NSOpenSavePanelUrlEventArgs})
@@ -9187,29 +8337,15 @@ M:AppKit.NSSavePanel.remove_DirectoryDidChange(System.EventHandler{AppKit.NSOpen
M:AppKit.NSSavePanel.remove_SelectionDidChange(System.EventHandler)
M:AppKit.NSSavePanel.remove_WillExpand(System.EventHandler{AppKit.NSOpenSaveExpandingEventArgs})
M:AppKit.NSScrubber.Dispose(System.Boolean)
-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.NSScrubberFlowLayoutDelegate_Extensions.Layout(AppKit.INSScrubberFlowLayoutDelegate,AppKit.NSScrubber,AppKit.NSScrubberFlowLayout,System.IntPtr)
M:AppKit.NSScrubberLayout.Dispose(System.Boolean)
-M:AppKit.NSScrubberLayoutAttributes.Copy(Foundation.NSZone)
M:AppKit.NSSearchField.add_SearchingEnded(System.EventHandler)
M:AppKit.NSSearchField.add_SearchingStarted(System.EventHandler)
M:AppKit.NSSearchField.Dispose(System.Boolean)
M:AppKit.NSSearchField.remove_SearchingEnded(System.EventHandler)
M:AppKit.NSSearchField.remove_SearchingStarted(System.EventHandler)
-M:AppKit.NSSearchFieldDelegate_Extensions.SearchingEnded(AppKit.INSSearchFieldDelegate,AppKit.NSSearchField)
-M:AppKit.NSSearchFieldDelegate_Extensions.SearchingStarted(AppKit.INSSearchFieldDelegate,AppKit.NSSearchField)
-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.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.NSSharingCollaborationModeRestriction.Copy(Foundation.NSZone)
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})
@@ -9217,177 +8353,47 @@ M:AppKit.NSSharingService.Dispose(System.Boolean)
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.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[])
-M:AppKit.NSSharingServiceDelegate_Extensions.SourceFrameOnScreenForShareItem(AppKit.INSSharingServiceDelegate,AppKit.NSSharingService,AppKit.INSPasteboardWriting)
-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.NSSharingServicePicker.add_DidChooseSharingService(System.EventHandler{AppKit.NSSharingServicePickerDidChooseSharingServiceEventArgs})
M:AppKit.NSSharingServicePicker.Dispose(System.Boolean)
M:AppKit.NSSharingServicePicker.remove_DidChooseSharingService(System.EventHandler{AppKit.NSSharingServicePickerDidChooseSharingServiceEventArgs})
-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.NSSharingServicePickerToolbarItem.Dispose(System.Boolean)
M:AppKit.NSSharingServicePickerTouchBarItem.Dispose(System.Boolean)
M:AppKit.NSSliderAccessory.Dispose(System.Boolean)
-M:AppKit.NSSliderAccessoryBehavior.Copy(Foundation.NSZone)
M:AppKit.NSSliderTouchBarItem.add_Activated(System.EventHandler)
M:AppKit.NSSliderTouchBarItem.Dispose(System.Boolean)
M:AppKit.NSSliderTouchBarItem.remove_Activated(System.EventHandler)
M:AppKit.NSSound.add_DidFinishPlaying(System.EventHandler{AppKit.NSSoundFinishedEventArgs})
-M:AppKit.NSSound.Copy(Foundation.NSZone)
M:AppKit.NSSound.Dispose(System.Boolean)
M:AppKit.NSSound.remove_DidFinishPlaying(System.EventHandler{AppKit.NSSoundFinishedEventArgs})
-M:AppKit.NSSoundDelegate_Extensions.DidFinishPlaying(AppKit.INSSoundDelegate,AppKit.NSSound,System.Boolean)
M:AppKit.NSSpeechRecognizer.Dispose(System.Boolean)
-M:AppKit.NSSpeechRecognizerDelegate_Extensions.DidRecognizeCommand(AppKit.INSSpeechRecognizerDelegate,AppKit.NSSpeechRecognizer,System.String)
M:AppKit.NSSpeechSynthesizer.Dispose(System.Boolean)
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.NSSpellChecker.CheckString(System.String,Foundation.NSRange,Foundation.NSTextCheckingTypes,AppKit.NSTextCheckingOptions,System.IntPtr,Foundation.NSOrthography@,System.IntPtr@)
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.NSSpellCheckerCandidates.#ctor(System.IntPtr,Foundation.NSTextCheckingResult[])
M:AppKit.NSSplitView.Dispose(System.Boolean)
-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)
M:AppKit.NSSplitViewDelegate_Extensions.GetAdditionalEffectiveRect(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,System.IntPtr)
M:AppKit.NSSplitViewDelegate_Extensions.GetEffectiveRect(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,CoreGraphics.CGRect,CoreGraphics.CGRect,System.IntPtr)
-M:AppKit.NSSplitViewDelegate_Extensions.Resize(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,CoreGraphics.CGSize)
M:AppKit.NSSplitViewDelegate_Extensions.SetMaxCoordinateOfSubview(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
M:AppKit.NSSplitViewDelegate_Extensions.SetMinCoordinateOfSubview(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,System.Runtime.InteropServices.NFloat,System.IntPtr)
-M:AppKit.NSSplitViewDelegate_Extensions.ShouldAdjustSize(AppKit.INSSplitViewDelegate,AppKit.NSSplitView,AppKit.NSView)
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.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.NSStackView.Dispose(System.Boolean)
-M:AppKit.NSStackViewDelegate_Extensions.DidReattachViews(AppKit.INSStackViewDelegate,AppKit.NSStackView,AppKit.NSView[])
-M:AppKit.NSStackViewDelegate_Extensions.WillDetachViews(AppKit.INSStackViewDelegate,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)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.CenterSelectionInVisibleArea(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.ChangeCaseOfLetter(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.Complete(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteBackward(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteBackwardByDecomposingPreviousCharacter(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteForward(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteToBeginningOfLine(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteToBeginningOfParagraph(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteToEndOfLine(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteToEndOfParagraph(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteToMark(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteWordBackward(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DeleteWordForward(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.DoCommandBySelector(AppKit.INSStandardKeyBindingResponding,ObjCRuntime.Selector)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.Indent(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertBacktab(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertContainerBreak(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertDoubleQuoteIgnoringSubstitution(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertLineBreak(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertNewline(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertNewlineIgnoringFieldEditor(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertParagraphSeparator(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertSingleQuoteIgnoringSubstitution(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertTab(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertTabIgnoringFieldEditor(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.InsertText(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.LowercaseWord(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MakeBaseWritingDirectionLeftToRight(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MakeBaseWritingDirectionNatural(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MakeBaseWritingDirectionRightToLeft(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MakeTextWritingDirectionLeftToRight(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MakeTextWritingDirectionNatural(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MakeTextWritingDirectionRightToLeft(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveBackward(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveBackwardAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveDown(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveDownAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveForward(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveForwardAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveLeft(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveLeftAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveParagraphBackwardAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveParagraphForwardAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveRight(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveRightAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToBeginningOfDocument(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToBeginningOfDocumentAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToBeginningOfLine(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToBeginningOfLineAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToBeginningOfParagraph(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToBeginningOfParagraphAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToEndOfDocument(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToEndOfDocumentAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToEndOfLine(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToEndOfLineAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToEndOfParagraph(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToEndOfParagraphAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToLeftEndOfLine(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToLeftEndOfLineAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToRightEndOfLine(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveToRightEndOfLineAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveUp(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveUpAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveWordBackward(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveWordBackwardAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveWordForward(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveWordForwardAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveWordLeft(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveWordLeftAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveWordRight(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.MoveWordRightAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.PageDown(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.PageDownAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.PageUp(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.PageUpAndModifySelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.QuickLookPreviewItems(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.ScrollLineDown(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.ScrollLineUp(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.ScrollPageDown(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.ScrollPageUp(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.ScrollToBeginningOfDocument(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.ScrollToEndOfDocument(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.SelectAll(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.SelectLine(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.SelectParagraph(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.SelectToMark(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.SelectWord(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.SetMark(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
M:AppKit.NSStandardKeyBindingResponding_Extensions.ShowContextMenuForSelection(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.SwapWithMark(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.Transpose(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.TransposeWords(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.UppercaseWord(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
-M:AppKit.NSStandardKeyBindingResponding_Extensions.Yank(AppKit.INSStandardKeyBindingResponding,Foundation.NSObject)
M:AppKit.NSStatusItem.add_DoubleClick(System.EventHandler)
M:AppKit.NSStatusItem.Dispose(System.Boolean)
M:AppKit.NSStatusItem.remove_DoubleClick(System.EventHandler)
M:AppKit.NSStepperTouchBarItem.Dispose(System.Boolean)
M:AppKit.NSStringAttributes.SetStrikethroughStyle(Foundation.NSUnderlineStyle,AppKit.NSUnderlinePattern,System.Boolean)
M:AppKit.NSStringAttributes.SetUnderlineStyle(Foundation.NSUnderlineStyle,AppKit.NSUnderlinePattern,System.Boolean)
-M:AppKit.NSStringDrawing_NSAttributedString.DrawAtPoint(Foundation.NSAttributedString,CoreGraphics.CGPoint)
-M:AppKit.NSStringDrawing_NSAttributedString.DrawInRect(Foundation.NSAttributedString,CoreGraphics.CGRect)
-M:AppKit.NSStringDrawing_NSAttributedString.GetSize(Foundation.NSAttributedString)
-M:AppKit.NSStringDrawing_NSString.DrawAtPoint(Foundation.NSString,CoreGraphics.CGPoint,AppKit.NSStringAttributes)
-M:AppKit.NSStringDrawing_NSString.DrawAtPoint(Foundation.NSString,CoreGraphics.CGPoint,Foundation.NSDictionary)
-M:AppKit.NSStringDrawing_NSString.DrawInRect(Foundation.NSString,CoreGraphics.CGRect,AppKit.NSStringAttributes)
-M:AppKit.NSStringDrawing_NSString.DrawInRect(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSDictionary)
-M:AppKit.NSStringDrawing_NSString.StringSize(Foundation.NSString,AppKit.NSStringAttributes)
-M:AppKit.NSStringDrawing_NSString.StringSize(Foundation.NSString,Foundation.NSDictionary)
M:AppKit.NSTableCellView.Dispose(System.Boolean)
M:AppKit.NSTableView.add_ColumnDidMove(System.EventHandler)
M:AppKit.NSTableView.add_ColumnDidResize(System.EventHandler)
@@ -9417,50 +8423,32 @@ M:AppKit.NSTableView.remove_WillDisplayCell(System.EventHandler{AppKit.NSTableVi
M:AppKit.NSTableView.SelectColumn(System.IntPtr,System.Boolean)
M:AppKit.NSTableView.SelectRow(System.IntPtr,System.Boolean)
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)
-M:AppKit.NSTableViewDataSource_Extensions.DraggingSessionWillBegin(AppKit.INSTableViewDataSource,AppKit.NSTableView,AppKit.NSDraggingSession,CoreGraphics.CGPoint,Foundation.NSIndexSet)
-M:AppKit.NSTableViewDataSource_Extensions.FilesDropped(AppKit.INSTableViewDataSource,AppKit.NSTableView,Foundation.NSUrl,Foundation.NSIndexSet)
M:AppKit.NSTableViewDataSource_Extensions.GetObjectValue(AppKit.INSTableViewDataSource,AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.NSTableViewDataSource_Extensions.GetPasteboardWriterForRow(AppKit.INSTableViewDataSource,AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDataSource_Extensions.GetRowCount(AppKit.INSTableViewDataSource,AppKit.NSTableView)
M:AppKit.NSTableViewDataSource_Extensions.SetObjectValue(AppKit.INSTableViewDataSource,AppKit.NSTableView,Foundation.NSObject,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDataSource_Extensions.SortDescriptorsChanged(AppKit.INSTableViewDataSource,AppKit.NSTableView,Foundation.NSSortDescriptor[])
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.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)
M:AppKit.NSTableViewDelegate_Extensions.DidAddRowView(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableRowView,System.IntPtr)
-M:AppKit.NSTableViewDelegate_Extensions.DidClickTableColumn(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn)
-M:AppKit.NSTableViewDelegate_Extensions.DidDragTableColumn(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn)
M:AppKit.NSTableViewDelegate_Extensions.DidRemoveRowView(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableRowView,System.IntPtr)
M:AppKit.NSTableViewDelegate_Extensions.GetDataCell(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.NSTableViewDelegate_Extensions.GetNextTypeSelectMatch(AppKit.INSTableViewDelegate,AppKit.NSTableView,System.IntPtr,System.IntPtr,System.String)
M:AppKit.NSTableViewDelegate_Extensions.GetRowHeight(AppKit.INSTableViewDelegate,AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDelegate_Extensions.GetSelectionIndexes(AppKit.INSTableViewDelegate,AppKit.NSTableView,Foundation.NSIndexSet)
M:AppKit.NSTableViewDelegate_Extensions.GetSelectString(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.NSTableViewDelegate_Extensions.GetSizeToFitColumnWidth(AppKit.INSTableViewDelegate,AppKit.NSTableView,System.IntPtr)
M:AppKit.NSTableViewDelegate_Extensions.GetToolTip(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSCell,CoreGraphics.CGRect@,AppKit.NSTableColumn,System.IntPtr,CoreGraphics.CGPoint)
M:AppKit.NSTableViewDelegate_Extensions.GetViewForItem(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.NSTableViewDelegate_Extensions.IsGroupRow(AppKit.INSTableViewDelegate,AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDelegate_Extensions.MouseDownInHeaderOfTableColumn(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn)
M:AppKit.NSTableViewDelegate_Extensions.RowActions(AppKit.INSTableViewDelegate,AppKit.NSTableView,System.IntPtr,AppKit.NSTableRowActionEdge)
-M:AppKit.NSTableViewDelegate_Extensions.SelectionDidChange(AppKit.INSTableViewDelegate,Foundation.NSNotification)
-M:AppKit.NSTableViewDelegate_Extensions.SelectionIsChanging(AppKit.INSTableViewDelegate,Foundation.NSNotification)
-M:AppKit.NSTableViewDelegate_Extensions.SelectionShouldChange(AppKit.INSTableViewDelegate,AppKit.NSTableView)
M:AppKit.NSTableViewDelegate_Extensions.ShouldEditTableColumn(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.NSTableViewDelegate_Extensions.ShouldReorder(AppKit.INSTableViewDelegate,AppKit.NSTableView,System.IntPtr,System.IntPtr)
M:AppKit.NSTableViewDelegate_Extensions.ShouldSelectRow(AppKit.INSTableViewDelegate,AppKit.NSTableView,System.IntPtr)
-M:AppKit.NSTableViewDelegate_Extensions.ShouldSelectTableColumn(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn)
M:AppKit.NSTableViewDelegate_Extensions.ShouldShowCellExpansion(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSTableColumn,System.IntPtr)
M:AppKit.NSTableViewDelegate_Extensions.ShouldTrackCell(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSCell,AppKit.NSTableColumn,System.IntPtr)
-M:AppKit.NSTableViewDelegate_Extensions.ShouldTypeSelect(AppKit.INSTableViewDelegate,AppKit.NSTableView,AppKit.NSEvent,System.String)
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.NSTableViewDiffableDataSource`2.ApplySnapshotAsync(AppKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
-M:AppKit.NSTableViewRowAction.Copy(Foundation.NSZone)
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})
@@ -9468,10 +8456,6 @@ M:AppKit.NSTabView.Dispose(System.Boolean)
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.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.NSText.add_TextDidBeginEditing(System.EventHandler)
M:AppKit.NSText.add_TextDidChange(System.EventHandler)
M:AppKit.NSText.add_TextDidEndEditing(System.EventHandler)
@@ -9482,7 +8466,6 @@ M:AppKit.NSText.remove_TextDidEndEditing(System.EventHandler)
M:AppKit.NSTextAlignmentExtensions.ToManaged(System.UIntPtr)
M:AppKit.NSTextAlignmentExtensions.ToNative(AppKit.NSTextAlignment)
M:AppKit.NSTextAttachmentViewProvider.Dispose(System.Boolean)
-M:AppKit.NSTextBlock.Copy(Foundation.NSZone)
M:AppKit.NSTextCheckingController.CheckText(Foundation.NSRange,Foundation.NSTextCheckingTypes,AppKit.NSTextCheckingOptions)
M:AppKit.NSTextContainer.Dispose(System.Boolean)
M:AppKit.NSTextContentManager.Dispose(System.Boolean)
@@ -9492,19 +8475,10 @@ M:AppKit.NSTextContentManagerDelegate_Extensions.GetTextContentManager(AppKit.IN
M:AppKit.NSTextContentManagerDelegate_Extensions.ShouldEnumerateTextElement(AppKit.INSTextContentManagerDelegate,AppKit.NSTextContentManager,AppKit.NSTextElement,AppKit.NSTextContentManagerEnumerationOptions)
M:AppKit.NSTextContentStorage.Dispose(System.Boolean)
M:AppKit.NSTextContentStorageDelegate_Extensions.GetTextParagraph(AppKit.INSTextContentStorageDelegate,AppKit.NSTextContentStorage,Foundation.NSRange)
-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.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)
M:AppKit.NSTextElementProvider_Extensions.GetOffset(AppKit.INSTextElementProvider,AppKit.INSTextLocation,AppKit.INSTextLocation)
-M:AppKit.NSTextField_NSTouchBar.GetAllowsCharacterPickerTouchBarItem(AppKit.NSTextField)
-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.add_Changed(System.EventHandler)
M:AppKit.NSTextField.add_DidFailToValidatePartialString(System.EventHandler{AppKit.NSControlTextErrorEventArgs})
M:AppKit.NSTextField.add_EditingBegan(System.EventHandler)
@@ -9515,22 +8489,10 @@ M:AppKit.NSTextField.remove_DidFailToValidatePartialString(System.EventHandler{A
M:AppKit.NSTextField.remove_EditingBegan(System.EventHandler)
M:AppKit.NSTextField.remove_EditingEnded(System.EventHandler)
M:AppKit.NSTextField.SetContentType(Foundation.NSString)
-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)
-M:AppKit.NSTextFieldDelegate_Extensions.DoCommandBySelector(AppKit.INSTextFieldDelegate,AppKit.NSControl,AppKit.NSTextView,ObjCRuntime.Selector)
-M:AppKit.NSTextFieldDelegate_Extensions.EditingBegan(AppKit.INSTextFieldDelegate,Foundation.NSNotification)
-M:AppKit.NSTextFieldDelegate_Extensions.EditingEnded(AppKit.INSTextFieldDelegate,Foundation.NSNotification)
-M:AppKit.NSTextFieldDelegate_Extensions.GetCandidates(AppKit.INSTextFieldDelegate,AppKit.NSTextField,AppKit.NSTextView,Foundation.NSRange)
M:AppKit.NSTextFieldDelegate_Extensions.GetCompletions(AppKit.INSTextFieldDelegate,AppKit.NSControl,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.NSTextFieldDelegate_Extensions.GetTextCheckingResults(AppKit.INSTextFieldDelegate,AppKit.NSTextField,AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange)
-M:AppKit.NSTextFieldDelegate_Extensions.IsValidObject(AppKit.INSTextFieldDelegate,AppKit.NSControl,Foundation.NSObject)
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.NSTextFinder.Dispose(System.Boolean)
M:AppKit.NSTextFinderBarContainer_Extensions.GetContentView(AppKit.INSTextFinderBarContainer)
-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)
M:AppKit.NSTextFinderClient_Extensions.GetContentView(AppKit.INSTextFinderClient,System.UIntPtr,Foundation.NSRange@)
@@ -9544,15 +8506,12 @@ M:AppKit.NSTextFinderClient_Extensions.GetString(AppKit.INSTextFinderClient)
M:AppKit.NSTextFinderClient_Extensions.GetStringLength(AppKit.INSTextFinderClient)
M:AppKit.NSTextFinderClient_Extensions.GetVisibleCharacterRanges(AppKit.INSTextFinderClient)
M:AppKit.NSTextFinderClient_Extensions.ReplaceCharacters(AppKit.INSTextFinderClient,Foundation.NSRange,System.String)
-M:AppKit.NSTextFinderClient_Extensions.ScrollRangeToVisible(AppKit.INSTextFinderClient,Foundation.NSRange)
M:AppKit.NSTextFinderClient_Extensions.SetSelectedRanges(AppKit.INSTextFinderClient,Foundation.NSArray)
M:AppKit.NSTextFinderClient_Extensions.ShouldReplaceCharacters(AppKit.INSTextFinderClient,Foundation.NSArray,Foundation.NSArray)
-M:AppKit.NSTextFinderSupport.PerformTextFinderAction(AppKit.NSResponder,Foundation.NSObject)
M:AppKit.NSTextInputClient_Extensions.DrawsVertically(AppKit.INSTextInputClient,System.UIntPtr)
M:AppKit.NSTextInputClient_Extensions.GetAttributedString(AppKit.INSTextInputClient)
M:AppKit.NSTextInputClient_Extensions.GetBaselineDelta(AppKit.INSTextInputClient,System.UIntPtr)
M:AppKit.NSTextInputClient_Extensions.GetDocumentVisibleRect(AppKit.INSTextInputClient)
-M:AppKit.NSTextInputClient_Extensions.GetFractionOfDistanceThroughGlyph(AppKit.INSTextInputClient,CoreGraphics.CGPoint)
M:AppKit.NSTextInputClient_Extensions.GetPreferredTextAccessoryPlacement(AppKit.INSTextInputClient)
M:AppKit.NSTextInputClient_Extensions.GetSupportsAdaptiveImageGlyph(AppKit.INSTextInputClient)
M:AppKit.NSTextInputClient_Extensions.GetUnionRectInVisibleSelectedRange(AppKit.INSTextInputClient)
@@ -9593,7 +8552,6 @@ M:AppKit.NSTextLayoutManagerDelegate_Extensions.GetTextLayoutFragment(AppKit.INS
M:AppKit.NSTextLayoutManagerDelegate_Extensions.ShouldBreakLineBeforeLocation(AppKit.INSTextLayoutManagerDelegate,AppKit.NSTextLayoutManager,AppKit.INSTextLocation,System.Boolean)
M:AppKit.NSTextList.#ctor(AppKit.NSTextListMarkerFormats)
M:AppKit.NSTextList.#ctor(System.String)
-M:AppKit.NSTextList.Copy(Foundation.NSZone)
M:AppKit.NSTextListElement.Dispose(System.Boolean)
M:AppKit.NSTextSelectionDataSource_Extensions.EnumerateContainerBoundaries(AppKit.INSTextSelectionDataSource,AppKit.INSTextLocation,System.Boolean,AppKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate)
M:AppKit.NSTextSelectionDataSource_Extensions.GetTextLayoutOrientation(AppKit.INSTextSelectionDataSource,AppKit.INSTextLocation)
@@ -9609,8 +8567,6 @@ M:AppKit.NSTextStorage.remove_TextStorageWillProcessEditing(System.EventHandler)
M:AppKit.NSTextStorage.remove_WillProcessEditing(System.EventHandler{AppKit.NSTextStorageEventArgs})
M:AppKit.NSTextStorageDelegate_Extensions.DidProcessEditing(AppKit.INSTextStorageDelegate,AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
M:AppKit.NSTextStorageDelegate_Extensions.WillProcessEditing(AppKit.INSTextStorageDelegate,AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr)
-M:AppKit.NSTextTab.Copy(Foundation.NSZone)
-M:AppKit.NSTextView_SharingService.OrderFrontSharingServicePicker(AppKit.NSTextView,Foundation.NSObject)
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)
@@ -9629,28 +8585,15 @@ M:AppKit.NSTextView.remove_WritingToolsWillBegin(System.EventHandler)
M:AppKit.NSTextView.SetContentType(Foundation.NSString)
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)
-M:AppKit.NSTextViewDelegate_Extensions.DidChangeSelection(AppKit.INSTextViewDelegate,Foundation.NSNotification)
-M:AppKit.NSTextViewDelegate_Extensions.DidChangeTypingAttributes(AppKit.INSTextViewDelegate,Foundation.NSNotification)
M:AppKit.NSTextViewDelegate_Extensions.DidCheckText(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,Foundation.NSTextCheckingResult[],Foundation.NSOrthography,System.IntPtr)
-M:AppKit.NSTextViewDelegate_Extensions.DoCommandBySelector(AppKit.INSTextViewDelegate,AppKit.NSTextView,ObjCRuntime.Selector)
M:AppKit.NSTextViewDelegate_Extensions.DraggedCell(AppKit.INSTextViewDelegate,AppKit.NSTextView,AppKit.NSTextAttachmentCell,CoreGraphics.CGRect,AppKit.NSEvent,System.UIntPtr)
-M:AppKit.NSTextViewDelegate_Extensions.GetCandidates(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSRange)
M:AppKit.NSTextViewDelegate_Extensions.GetCompletions(AppKit.INSTextViewDelegate,AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
-M:AppKit.NSTextViewDelegate_Extensions.GetTextCheckingCandidates(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange)
-M:AppKit.NSTextViewDelegate_Extensions.GetUndoManager(AppKit.INSTextViewDelegate,AppKit.NSTextView)
M:AppKit.NSTextViewDelegate_Extensions.GetWritablePasteboardTypes(AppKit.INSTextViewDelegate,AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr)
M:AppKit.NSTextViewDelegate_Extensions.GetWritingToolsIgnoredRangesInEnclosingRange(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSRange)
M:AppKit.NSTextViewDelegate_Extensions.LinkClicked(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSObject,System.UIntPtr)
M:AppKit.NSTextViewDelegate_Extensions.MenuForEvent(AppKit.INSTextViewDelegate,AppKit.NSTextView,AppKit.NSMenu,AppKit.NSEvent,System.UIntPtr)
-M:AppKit.NSTextViewDelegate_Extensions.ShouldChangeTextInRange(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSRange,System.String)
-M:AppKit.NSTextViewDelegate_Extensions.ShouldChangeTextInRanges(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSValue[],System.String[])
-M:AppKit.NSTextViewDelegate_Extensions.ShouldChangeTypingAttributes(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSDictionary,Foundation.NSDictionary)
M:AppKit.NSTextViewDelegate_Extensions.ShouldSelectCandidates(AppKit.INSTextViewDelegate,AppKit.NSTextView,System.UIntPtr)
M:AppKit.NSTextViewDelegate_Extensions.ShouldSetSpellingState(AppKit.INSTextViewDelegate,AppKit.NSTextView,System.IntPtr,Foundation.NSRange)
-M:AppKit.NSTextViewDelegate_Extensions.ShouldUpdateTouchBarItemIdentifiers(AppKit.INSTextViewDelegate,AppKit.NSTextView,System.String[])
-M:AppKit.NSTextViewDelegate_Extensions.WillChangeSelection(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSRange,Foundation.NSRange)
-M:AppKit.NSTextViewDelegate_Extensions.WillChangeSelectionFromRanges(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSValue[],Foundation.NSValue[])
-M:AppKit.NSTextViewDelegate_Extensions.WillCheckText(AppKit.INSTextViewDelegate,AppKit.NSTextView,Foundation.NSRange,Foundation.NSDictionary,Foundation.NSTextCheckingTypes)
M:AppKit.NSTextViewDelegate_Extensions.WillDisplayToolTip(AppKit.INSTextViewDelegate,AppKit.NSTextView,System.String,System.UIntPtr)
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)
@@ -9658,29 +8601,12 @@ M:AppKit.NSTextViewDelegate_Extensions.WritingToolsWillBegin(AppKit.INSTextViewD
M:AppKit.NSTextViewportLayoutController.Dispose(System.Boolean)
M:AppKit.NSTextViewportLayoutControllerDelegate_Extensions.DidLayout(AppKit.INSTextViewportLayoutControllerDelegate,AppKit.NSTextViewportLayoutController)
M:AppKit.NSTextViewportLayoutControllerDelegate_Extensions.WillLayout(AppKit.INSTextViewportLayoutControllerDelegate,AppKit.NSTextViewportLayoutController)
-M:AppKit.NSTintConfiguration.Copy(Foundation.NSZone)
M:AppKit.NSTokenField.Dispose(System.Boolean)
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)
-M:AppKit.NSTokenFieldCellDelegate_Extensions.GetEditingString(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.NSTokenFieldCellDelegate_Extensions.GetMenu(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.NSTokenFieldCellDelegate_Extensions.GetRepresentedObject(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,System.String)
-M:AppKit.NSTokenFieldCellDelegate_Extensions.GetStyle(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,Foundation.NSObject)
-M:AppKit.NSTokenFieldCellDelegate_Extensions.HasMenu(AppKit.INSTokenFieldCellDelegate,AppKit.NSTokenFieldCell,Foundation.NSObject)
-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.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)
-M:AppKit.NSTokenFieldDelegate_Extensions.GetMenu(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.NSTokenFieldDelegate_Extensions.GetRepresentedObject(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,System.String)
-M:AppKit.NSTokenFieldDelegate_Extensions.GetStyle(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,Foundation.NSObject)
-M:AppKit.NSTokenFieldDelegate_Extensions.HasMenu(AppKit.INSTokenFieldDelegate,AppKit.NSTokenField,Foundation.NSObject)
-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.NSToolbar.add_DidRemoveItem(System.EventHandler)
M:AppKit.NSToolbar.add_WillAddItem(System.EventHandler)
M:AppKit.NSToolbar.Dispose(System.Boolean)
@@ -9689,28 +8615,17 @@ M:AppKit.NSToolbar.remove_WillAddItem(System.EventHandler)
M:AppKit.NSToolbarDelegate_Extensions.GetItemCanBeInsertedAt(AppKit.INSToolbarDelegate,AppKit.NSToolbar,System.String,System.IntPtr)
M:AppKit.NSToolbarDelegate_Extensions.GetToolbarImmovableItemIdentifiers(AppKit.INSToolbarDelegate,AppKit.NSToolbar)
M:AppKit.NSToolbarItem.add_Activated(System.EventHandler)
-M:AppKit.NSToolbarItem.Copy(Foundation.NSZone)
M:AppKit.NSToolbarItem.Dispose(System.Boolean)
M:AppKit.NSToolbarItem.GetFrame(UIKit.UIView)
M:AppKit.NSToolbarItem.remove_Activated(System.EventHandler)
-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)
M:AppKit.NSTouch.#ctor
-M:AppKit.NSTouch.Copy(Foundation.NSZone)
M:AppKit.NSTouchBar.Dispose(System.Boolean)
-M:AppKit.NSTrackingArea.Copy(Foundation.NSZone)
-M:AppKit.NSUserInterfaceCompressionOptions.Copy(Foundation.NSZone)
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.AddToolTip(CoreGraphics.CGRect,AppKit.INSToolTipOwner)
M:AppKit.NSView.AddToolTip(CoreGraphics.CGRect,Foundation.NSObject)
M:AppKit.NSView.Dispose(System.Boolean)
M:AppKit.NSView.SortSubviews(System.Func{AppKit.NSView,AppKit.NSView,Foundation.NSComparisonResult})
-M:AppKit.NSViewController.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:AppKit.NSViewController.Dispose(System.Boolean)
M:AppKit.NSWindow.add_DidBecomeKey(System.EventHandler)
M:AppKit.NSWindow.add_DidBecomeMain(System.EventHandler)
@@ -9788,56 +8703,8 @@ M:AppKit.NSWindow.SetIsMiniaturized(System.Boolean)
M:AppKit.NSWindow.SetIsVisible(System.Boolean)
M:AppKit.NSWindow.SetIsZoomed(System.Boolean)
M:AppKit.NSWindow.TransferWindowSharingAsync(AppKit.NSWindow)
-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)
-M:AppKit.NSWindowDelegate_Extensions.DidBecomeMain(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidChangeBackingProperties(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidChangeScreen(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidChangeScreenProfile(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidDecodeRestorableState(AppKit.INSWindowDelegate,AppKit.NSWindow,Foundation.NSCoder)
-M:AppKit.NSWindowDelegate_Extensions.DidDeminiaturize(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidEndLiveResize(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidEndSheet(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidEnterFullScreen(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidEnterVersionBrowser(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidExitFullScreen(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidExitVersionBrowser(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidExpose(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidFailToEnterFullScreen(AppKit.INSWindowDelegate,AppKit.NSWindow)
-M:AppKit.NSWindowDelegate_Extensions.DidFailToExitFullScreen(AppKit.INSWindowDelegate,AppKit.NSWindow)
-M:AppKit.NSWindowDelegate_Extensions.DidMiniaturize(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidMove(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidResignKey(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidResignMain(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidResize(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.DidUpdate(AppKit.INSWindowDelegate,Foundation.NSNotification)
M:AppKit.NSWindowDelegate_Extensions.GetPreviewRepresentableActivityItems(AppKit.INSWindowDelegate,AppKit.NSWindow)
M:AppKit.NSWindowDelegate_Extensions.GetWindowForSharingRequest(AppKit.INSWindowDelegate,AppKit.NSWindow)
-M:AppKit.NSWindowDelegate_Extensions.ShouldDragDocumentWithEvent(AppKit.INSWindowDelegate,AppKit.NSWindow,AppKit.NSEvent,CoreGraphics.CGPoint,AppKit.NSPasteboard)
-M:AppKit.NSWindowDelegate_Extensions.ShouldPopUpDocumentPathMenu(AppKit.INSWindowDelegate,AppKit.NSWindow,AppKit.NSMenu)
-M:AppKit.NSWindowDelegate_Extensions.ShouldZoom(AppKit.INSWindowDelegate,AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.NSWindowDelegate_Extensions.StartCustomAnimationToEnterFullScreen(AppKit.INSWindowDelegate,AppKit.NSWindow,System.Double)
-M:AppKit.NSWindowDelegate_Extensions.StartCustomAnimationToExitFullScreen(AppKit.INSWindowDelegate,AppKit.NSWindow,System.Double)
-M:AppKit.NSWindowDelegate_Extensions.WillBeginSheet(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillClose(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillEncodeRestorableState(AppKit.INSWindowDelegate,AppKit.NSWindow,Foundation.NSCoder)
-M:AppKit.NSWindowDelegate_Extensions.WillEnterFullScreen(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillEnterVersionBrowser(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillExitFullScreen(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillExitVersionBrowser(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillMiniaturize(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillMove(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillPositionSheet(AppKit.INSWindowDelegate,AppKit.NSWindow,AppKit.NSWindow,CoreGraphics.CGRect)
-M:AppKit.NSWindowDelegate_Extensions.WillResize(AppKit.INSWindowDelegate,AppKit.NSWindow,CoreGraphics.CGSize)
-M:AppKit.NSWindowDelegate_Extensions.WillResizeForVersionBrowser(AppKit.INSWindowDelegate,AppKit.NSWindow,CoreGraphics.CGSize,CoreGraphics.CGSize)
-M:AppKit.NSWindowDelegate_Extensions.WillReturnFieldEditor(AppKit.INSWindowDelegate,AppKit.NSWindow,Foundation.NSObject)
-M:AppKit.NSWindowDelegate_Extensions.WillReturnUndoManager(AppKit.INSWindowDelegate,AppKit.NSWindow)
-M:AppKit.NSWindowDelegate_Extensions.WillStartLiveResize(AppKit.INSWindowDelegate,Foundation.NSNotification)
-M:AppKit.NSWindowDelegate_Extensions.WillUseFullScreenContentSize(AppKit.INSWindowDelegate,AppKit.NSWindow,CoreGraphics.CGSize)
-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.NSWindowTabGroup.Dispose(System.Boolean)
M:AppKit.NSWorkspace.IconForFileType(AppKit.HfsTypeCode)
M:AppKit.NSWorkspace.OpenApplicationAsync(Foundation.NSUrl,AppKit.NSWorkspaceOpenConfiguration)
@@ -9847,26 +8714,18 @@ M:AppKit.NSWorkspace.SetDefaultApplicationToOpenContentTypeAsync(Foundation.NSUr
M:AppKit.NSWorkspace.SetDefaultApplicationToOpenContentTypeAsync(Foundation.NSUrl,UniformTypeIdentifiers.UTType)
M:AppKit.NSWorkspace.SetDefaultApplicationToOpenFileAsync(Foundation.NSUrl,Foundation.NSUrl)
M:AppKit.NSWorkspace.SetDefaultApplicationToOpenUrlsAsync(Foundation.NSUrl,System.String)
-M:AppKit.NSWorkspaceOpenConfiguration.Copy(Foundation.NSZone)
M:AppKit.NSWritingToolsCoordinator.Dispose(System.Boolean)
M:AppTrackingTransparency.ATTrackingManager.RequestTrackingAuthorization(System.Action{AppTrackingTransparency.ATTrackingManagerAuthorizationStatus})
M:AppTrackingTransparency.ATTrackingManager.RequestTrackingAuthorizationAsync
-M:ARKit.ARAnchor.Copy(Foundation.NSZone)
-M:ARKit.ARCamera.Copy(Foundation.NSZone)
M:ARKit.ARCoachingOverlayView.#ctor(CoreGraphics.CGRect)
M:ARKit.ARCoachingOverlayView.ARCoachingOverlayViewAppearance.#ctor(System.IntPtr)
M:ARKit.ARCoachingOverlayView.Dispose(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.ARConfiguration.Copy(Foundation.NSZone)
M:ARKit.ARDepthData.Dispose(System.Boolean)
-M:ARKit.ARFaceGeometry.Copy(Foundation.NSZone)
-M:ARKit.ARFrame.Copy(Foundation.NSZone)
M:ARKit.ARGeoTrackingConfiguration.CheckAvailabilityAsync
M:ARKit.ARGeoTrackingConfiguration.CheckAvailabilityAsync(CoreLocation.CLLocationCoordinate2D)
-M:ARKit.ARGeoTrackingStatus.Copy(Foundation.NSZone)
-M:ARKit.ARReferenceImage.Copy(Foundation.NSZone)
M:ARKit.ARReferenceImage.ValidateAsync
M:ARKit.ARSCNView.ARSCNViewAppearance.#ctor(System.IntPtr)
M:ARKit.ARSCNView.Dispose(System.Boolean)
@@ -9886,8 +8745,6 @@ 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.ARVideoFormat.Copy(Foundation.NSZone)
-M:ARKit.ARWorldMap.Copy(Foundation.NSZone)
M:ARKit.GeoLocationForPoint.#ctor(CoreLocation.CLLocationCoordinate2D,System.Double)
M:ARKit.IARCoachingOverlayViewDelegate.DidDeactivate(ARKit.ARCoachingOverlayView)
M:ARKit.IARCoachingOverlayViewDelegate.DidRequestSessionReset(ARKit.ARCoachingOverlayView)
@@ -9924,23 +8781,6 @@ M:AudioToolbox.MusicTrack.GetDestMidiEndpoint(CoreMidi.MidiEndpoint@)
M:AudioToolbox.OutputAudioQueue.add_BufferCompleted(System.EventHandler{AudioToolbox.BufferCompletedEventArgs})
M:AudioToolbox.OutputAudioQueue.remove_BufferCompleted(System.EventHandler{AudioToolbox.BufferCompletedEventArgs})
M:AudioToolbox.SystemSound.Finalize
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.CanPerformOutput(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.GetCanPerformInput(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.GetDeviceId(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.GetDeviceInputLatency(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.GetDeviceOutputLatency(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.GetInputHandler(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.GetOutputProvider(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.IsInputEnabled(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.IsOutputEnabled(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.IsRunning(AudioUnit.AUAudioUnit)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.SetDeviceId(AudioUnit.AUAudioUnit,System.UInt32,Foundation.NSError@)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.SetInputEnabled(AudioUnit.AUAudioUnit,System.Boolean)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.SetInputHandler(AudioUnit.AUAudioUnit,AudioUnit.AUInputHandler)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.SetOutputEnabled(AudioUnit.AUAudioUnit,System.Boolean)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.SetOutputProvider(AudioUnit.AUAudioUnit,AudioUnit.AURenderPullInputBlock)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.StartHardware(AudioUnit.AUAudioUnit,Foundation.NSError@)
-M:AudioUnit.AUAudioUnit_AUAudioInputOutputUnit.StopHardware(AudioUnit.AUAudioUnit)
M:AudioUnit.AUAudioUnit.DeleteUserPreset(AudioUnit.AUAudioUnitPreset,Foundation.NSError@)
M:AudioUnit.AUAudioUnit.GetParametersForOverview(System.IntPtr)
M:AudioUnit.AUAudioUnit.GetPresetState(AudioUnit.AUAudioUnitPreset,Foundation.NSError@)
@@ -9965,7 +8805,6 @@ M:AudioUnit.AURenderEventEnumerator.#ctor(ObjCRuntime.NativeHandle)
M:AudioUnit.AURenderEventEnumerator.EnumeratorCurrentEvents(System.IntPtr)
M:AudioUnit.AUScheduledAudioFileRegion.Finalize
M:AudioUnit.ExtAudioFile.Finalize
-M:AudioUnit.IAUAudioUnitFactory.CreateAudioUnit(AudioUnit.AudioComponentDescription,Foundation.NSError@)
M:AuthenticationServices.ASAccountAuthenticationModificationController.Dispose(System.Boolean)
M:AuthenticationServices.ASAccountAuthenticationModificationController.PerformRequest(AuthenticationServices.ASAccountAuthenticationModificationRequest)
M:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegate_Extensions.DidFailRequest(AuthenticationServices.IASAccountAuthenticationModificationControllerDelegate,AuthenticationServices.ASAccountAuthenticationModificationController,AuthenticationServices.ASAccountAuthenticationModificationRequest,Foundation.NSError)
@@ -9987,10 +8826,8 @@ M:AuthenticationServices.ASAccountAuthenticationModificationViewController.Prepa
M:AuthenticationServices.ASAuthorization.GetCredential``1
M:AuthenticationServices.ASAuthorization.GetProvider``1
M:AuthenticationServices.ASAuthorizationAppleIdButton.#ctor(AuthenticationServices.ASAuthorizationAppleIdButtonType,AuthenticationServices.ASAuthorizationAppleIdButtonStyle)
-M:AuthenticationServices.ASAuthorizationAppleIdButton.AccessibilityPerformPress
M:AuthenticationServices.ASAuthorizationAppleIdButton.ASAuthorizationAppleIdButtonAppearance.#ctor(System.IntPtr)
M:AuthenticationServices.ASAuthorizationAppleIdButton.Create(AuthenticationServices.ASAuthorizationAppleIdButtonType,AuthenticationServices.ASAuthorizationAppleIdButtonStyle)
-M:AuthenticationServices.ASAuthorizationAppleIdCredential.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationAppleIdProvider.CreateRequest
M:AuthenticationServices.ASAuthorizationAppleIdProvider.GetCredentialState(System.String,System.Action{AuthenticationServices.ASAuthorizationAppleIdProviderCredentialState,Foundation.NSError})
M:AuthenticationServices.ASAuthorizationAppleIdProvider.GetCredentialStateAsync(System.String)
@@ -10007,19 +8844,14 @@ M:AuthenticationServices.ASAuthorizationControllerDelegate.DidComplete(Authentic
M:AuthenticationServices.ASAuthorizationControllerDelegate.DidComplete(AuthenticationServices.ASAuthorizationController,Foundation.NSError)
M:AuthenticationServices.ASAuthorizationControllerDelegate.DidComplete(AuthenticationServices.ASAuthorizationController,Foundation.NSString)
M:AuthenticationServices.ASAuthorizationPasswordProvider.CreateRequest
-M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertion.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertion.Dispose(System.Boolean)
-M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertionRequest.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertionRequest.Dispose(System.Boolean)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialDescriptor.#ctor(Foundation.NSData)
-M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialDescriptor.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider.#ctor(System.String)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider.CreateCredentialAssertionRequest(Foundation.NSData)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider.CreateCredentialRegistrationRequest(Foundation.NSData,System.String,Foundation.NSData,AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistrationRequestStyle)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider.CreateCredentialRegistrationRequest(Foundation.NSData,System.String,Foundation.NSData)
-M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistration.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistration.Dispose(System.Boolean)
-M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest.Dispose(System.Boolean)
M:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequest.Cancel
M:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequest.Complete
@@ -10095,27 +8927,18 @@ M:AuthenticationServices.ASAuthorizationProviderExtensionUserLoginConfiguration.
M:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput.#ctor(AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionOperation)
M:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput.Dispose(System.Boolean)
M:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput.#ctor(AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobSupportRequirement)
-M:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationPublicKeyCredentialParameters.#ctor(AuthenticationServices.ASCoseAlgorithmIdentifier)
-M:AuthenticationServices.ASAuthorizationPublicKeyCredentialParameters.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInput.#ctor(AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues,Foundation.NSDictionary{Foundation.NSData,AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues})
M:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues.#ctor(Foundation.NSData,Foundation.NSData)
M:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationInput.#ctor(AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues)
M:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationInput.GetCheckForSupport
-M:AuthenticationServices.ASAuthorizationRequest.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationRequest.GetProvider``1
-M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion.Copy(Foundation.NSZone)
-M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor.#ctor(Foundation.NSData,AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptorTransport[])
-M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor.Dispose(System.Boolean)
M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider.#ctor(System.String)
M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider.Create(Foundation.NSData,System.String,System.String,Foundation.NSData)
M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider.Create(Foundation.NSData)
-M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration.Dispose(System.Boolean)
-M:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest.Copy(Foundation.NSZone)
-M:AuthenticationServices.ASAuthorizationSingleSignOnCredential.Copy(Foundation.NSZone)
M:AuthenticationServices.ASAuthorizationSingleSignOnProvider.CreateProvider(Foundation.NSUrl)
M:AuthenticationServices.ASAuthorizationSingleSignOnProvider.CreateRequest
M:AuthenticationServices.ASAuthorizationWebBrowserPublicKeyCredentialManager.GetPlatformCredentials(System.String,System.Action{AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredential[]})
@@ -10147,42 +8970,26 @@ M:AuthenticationServices.ASCredentialProviderViewController.PrepareInterfaceForU
M:AuthenticationServices.ASCredentialProviderViewController.PrepareInterfaceToProvideCredential(AuthenticationServices.IASCredentialRequest)
M:AuthenticationServices.ASCredentialProviderViewController.PrepareOneTimeCodeCredentialList(AuthenticationServices.ASCredentialServiceIdentifier[])
M:AuthenticationServices.ASCredentialProviderViewController.ProvideCredentialWithoutUserInteraction(AuthenticationServices.IASCredentialRequest)
-M:AuthenticationServices.ASCredentialServiceIdentifier.Copy(Foundation.NSZone)
M:AuthenticationServices.ASExtensionErrorCodeExtensions.#ctor
M:AuthenticationServices.ASOneTimeCodeCredential.#ctor(System.String)
-M:AuthenticationServices.ASOneTimeCodeCredential.Copy(Foundation.NSZone)
M:AuthenticationServices.ASOneTimeCodeCredential.Create(System.String)
M:AuthenticationServices.ASOneTimeCodeCredentialIdentity.#ctor(AuthenticationServices.ASCredentialServiceIdentifier,System.String,System.String)
-M:AuthenticationServices.ASOneTimeCodeCredentialIdentity.Copy(Foundation.NSZone)
M:AuthenticationServices.ASOneTimeCodeCredentialRequest.#ctor(AuthenticationServices.ASOneTimeCodeCredentialIdentity)
-M:AuthenticationServices.ASOneTimeCodeCredentialRequest.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyAssertionCredential.#ctor(Foundation.NSData,System.String,Foundation.NSData,Foundation.NSData,Foundation.NSData,Foundation.NSData,AuthenticationServices.ASPasskeyAssertionCredentialExtensionOutput)
M:AuthenticationServices.ASPasskeyAssertionCredential.#ctor(Foundation.NSData,System.String,Foundation.NSData,Foundation.NSData,Foundation.NSData,Foundation.NSData)
-M:AuthenticationServices.ASPasskeyAssertionCredential.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyAssertionCredential.CreateCredential(Foundation.NSData,System.String,Foundation.NSData,Foundation.NSData,Foundation.NSData,Foundation.NSData)
-M:AuthenticationServices.ASPasskeyAssertionCredentialExtensionInput.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyAssertionCredentialExtensionOutput.#ctor(AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput)
-M:AuthenticationServices.ASPasskeyAssertionCredentialExtensionOutput.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyCredentialIdentity.#ctor(System.String,System.String,Foundation.NSData,Foundation.NSData,System.String)
-M:AuthenticationServices.ASPasskeyCredentialIdentity.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyCredentialIdentity.CreateIdentity(System.String,System.String,Foundation.NSData,Foundation.NSData,System.String)
M:AuthenticationServices.ASPasskeyCredentialRequest.#ctor(AuthenticationServices.ASPasskeyCredentialIdentity,Foundation.NSData,AuthenticationServices.ASAuthorizationPublicKeyCredentialUserVerificationPreferenceEnum,Foundation.NSNumber[],AuthenticationServices.ASPasskeyAssertionCredentialExtensionInput)
M:AuthenticationServices.ASPasskeyCredentialRequest.#ctor(AuthenticationServices.ASPasskeyCredentialIdentity,Foundation.NSData,AuthenticationServices.ASAuthorizationPublicKeyCredentialUserVerificationPreferenceEnum,Foundation.NSNumber[],AuthenticationServices.ASPasskeyRegistrationCredentialExtensionInput)
M:AuthenticationServices.ASPasskeyCredentialRequest.#ctor(AuthenticationServices.ASPasskeyCredentialIdentity,Foundation.NSData,System.String,Foundation.NSNumber[])
-M:AuthenticationServices.ASPasskeyCredentialRequest.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyCredentialRequest.Create(AuthenticationServices.ASPasskeyCredentialIdentity,Foundation.NSData,System.String,Foundation.NSNumber[])
-M:AuthenticationServices.ASPasskeyCredentialRequestParameters.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyRegistrationCredential.#ctor(System.String,Foundation.NSData,Foundation.NSData,Foundation.NSData,AuthenticationServices.ASPasskeyRegistrationCredentialExtensionOutput)
M:AuthenticationServices.ASPasskeyRegistrationCredential.#ctor(System.String,Foundation.NSData,Foundation.NSData,Foundation.NSData)
-M:AuthenticationServices.ASPasskeyRegistrationCredential.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyRegistrationCredential.CreateCredential(System.String,Foundation.NSData,Foundation.NSData,Foundation.NSData)
-M:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionInput.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionOutput.#ctor(AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput)
-M:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionOutput.Copy(Foundation.NSZone)
-M:AuthenticationServices.ASPasswordCredential.Copy(Foundation.NSZone)
-M:AuthenticationServices.ASPasswordCredentialIdentity.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasswordCredentialRequest.#ctor(AuthenticationServices.ASPasswordCredentialIdentity)
-M:AuthenticationServices.ASPasswordCredentialRequest.Copy(Foundation.NSZone)
M:AuthenticationServices.ASPasswordCredentialRequest.Request(AuthenticationServices.ASPasswordCredentialIdentity)
M:AuthenticationServices.ASPublicKeyCredentialClientData.#ctor(Foundation.NSData,System.String)
M:AuthenticationServices.ASPublicKeyCredentialClientData.Dispose(System.Boolean)
@@ -10199,7 +9006,6 @@ M:AuthenticationServices.ASWebAuthenticationSessionCallback.Create(System.String
M:AuthenticationServices.ASWebAuthenticationSessionCallback.MatchesUrl(Foundation.NSUrl)
M:AuthenticationServices.ASWebAuthenticationSessionRequest.Cancel(Foundation.NSError)
M:AuthenticationServices.ASWebAuthenticationSessionRequest.Complete(Foundation.NSUrl)
-M:AuthenticationServices.ASWebAuthenticationSessionRequest.Copy(Foundation.NSZone)
M:AuthenticationServices.ASWebAuthenticationSessionRequest.Dispose(System.Boolean)
M:AuthenticationServices.ASWebAuthenticationSessionRequestDelegate_Extensions.DidCancel(AuthenticationServices.IASWebAuthenticationSessionRequestDelegate,AuthenticationServices.ASWebAuthenticationSessionRequest,Foundation.NSError)
M:AuthenticationServices.ASWebAuthenticationSessionRequestDelegate_Extensions.DidComplete(AuthenticationServices.IASWebAuthenticationSessionRequestDelegate,AuthenticationServices.ASWebAuthenticationSessionRequest,Foundation.NSUrl)
@@ -10234,11 +9040,8 @@ M:AuthenticationServices.IASWebAuthenticationSessionWebBrowserSessionHandling.Ca
M:AuthenticationServices.PublicPrivateKeyAuthentication.GetAllSupportedPublicKeyCredentialDescriptorTransports
M:AutomaticAssessmentConfiguration.AEAssessmentApplication.#ctor(System.String,System.String)
M:AutomaticAssessmentConfiguration.AEAssessmentApplication.#ctor(System.String)
-M:AutomaticAssessmentConfiguration.AEAssessmentApplication.Copy(Foundation.NSZone)
-M:AutomaticAssessmentConfiguration.AEAssessmentConfiguration.Copy(Foundation.NSZone)
M:AutomaticAssessmentConfiguration.AEAssessmentConfiguration.Remove(AutomaticAssessmentConfiguration.AEAssessmentApplication)
M:AutomaticAssessmentConfiguration.AEAssessmentConfiguration.SetConfiguration(AutomaticAssessmentConfiguration.AEAssessmentParticipantConfiguration,AutomaticAssessmentConfiguration.AEAssessmentApplication)
-M:AutomaticAssessmentConfiguration.AEAssessmentParticipantConfiguration.Copy(Foundation.NSZone)
M:AutomaticAssessmentConfiguration.AEAssessmentSession.#ctor(AutomaticAssessmentConfiguration.AEAssessmentConfiguration)
M:AutomaticAssessmentConfiguration.AEAssessmentSession.Begin
M:AutomaticAssessmentConfiguration.AEAssessmentSession.Dispose(System.Boolean)
@@ -10285,7 +9088,6 @@ M:AVFoundation.AVAssetPlaybackAssistant.LoadPlaybackConfigurationOptionsAsync
M:AVFoundation.AVAssetReaderCaptionValidationHandling_Extensions.DidVendCaption(AVFoundation.IAVAssetReaderCaptionValidationHandling,AVFoundation.AVAssetReaderOutputCaptionAdaptor,AVFoundation.AVCaption,System.String[])
M:AVFoundation.AVAssetReaderOutputCaptionAdaptor.Dispose(System.Boolean)
M:AVFoundation.AVAssetResourceLoader.Dispose(System.Boolean)
-M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.ShouldWaitForLoadingOfRequestedResource(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest)
M:AVFoundation.AVAssetTrack.Dispose(System.Boolean)
M:AVFoundation.AVAssetTrack.LoadAssociatedTracksAsync(System.String)
M:AVFoundation.AVAssetTrack.LoadMetadataAsync(System.String)
@@ -10435,9 +9237,7 @@ M:AVFoundation.AVCaptureDeskViewApplication.PresentAsync(AVFoundation.AVCaptureD
M:AVFoundation.AVCaptureDevice.Dispose(System.Boolean)
M:AVFoundation.AVCaptureDeviceRotationCoordinator.Dispose(System.Boolean)
M:AVFoundation.AVCaptureFileOutput.Dispose(System.Boolean)
-M:AVFoundation.AVCaptureFileOutputDelegate_Extensions.DidOutputSampleBuffer(AVFoundation.IAVCaptureFileOutputDelegate,AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.DidStartRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,CoreMedia.CMTime,Foundation.NSObject[])
-M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.WillFinishRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[],Foundation.NSError)
M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishCapturingDeferredPhotoProxy(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureDeferredPhotoProxy,Foundation.NSError)
M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementAppleProRawCompressionSettings(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr)
M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementSemanticSegmentationMatte(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,Foundation.NSString,AVFoundation.AVCapturePhoto)
@@ -10452,11 +9252,6 @@ M:AVFoundation.AVCaptureWhiteBalanceGains.op_Equality(AVFoundation.AVCaptureWhit
M:AVFoundation.AVCaptureWhiteBalanceGains.op_Inequality(AVFoundation.AVCaptureWhiteBalanceGains,AVFoundation.AVCaptureWhiteBalanceGains)
M:AVFoundation.AVCaptureWhiteBalanceTemperatureAndTintValues.op_Equality(AVFoundation.AVCaptureWhiteBalanceTemperatureAndTintValues,AVFoundation.AVCaptureWhiteBalanceTemperatureAndTintValues)
M:AVFoundation.AVCaptureWhiteBalanceTemperatureAndTintValues.op_Inequality(AVFoundation.AVCaptureWhiteBalanceTemperatureAndTintValues,AVFoundation.AVCaptureWhiteBalanceTemperatureAndTintValues)
-M:AVFoundation.AVComposition_AVCompositionTrackInspection.GetTrack(AVFoundation.AVComposition,System.Int32)
-M:AVFoundation.AVComposition_AVCompositionTrackInspection.GetTracks(AVFoundation.AVComposition,AVFoundation.AVMediaCharacteristics)
-M:AVFoundation.AVComposition_AVCompositionTrackInspection.GetTracks(AVFoundation.AVComposition,AVFoundation.AVMediaTypes)
-M:AVFoundation.AVComposition_AVCompositionTrackInspection.GetTracks(AVFoundation.AVComposition,System.String)
-M:AVFoundation.AVComposition_AVCompositionTrackInspection.GetTracksWithMediaCharacteristic(AVFoundation.AVComposition,System.String)
M:AVFoundation.AVComposition_AVCompositionTrackInspection.LoadTrack(AVFoundation.AVComposition,System.Int32,System.Action{AVFoundation.AVMutableCompositionTrack,Foundation.NSError})
M:AVFoundation.AVComposition_AVCompositionTrackInspection.LoadTrackAsync(AVFoundation.AVComposition,System.Int32)
M:AVFoundation.AVComposition_AVCompositionTrackInspection.LoadTracksWithMediaCharacteristic(AVFoundation.AVComposition,System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
@@ -10464,11 +9259,7 @@ M:AVFoundation.AVComposition_AVCompositionTrackInspection.LoadTracksWithMediaCha
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.AVContentKeyRecipient_Extensions.DidProvideContentKey(AVFoundation.IAVContentKeyRecipient,AVFoundation.AVContentKeySession,AVFoundation.AVContentKey)
-M:AVFoundation.AVContentKeyRequest_AVContentKeyRequestRenewal.GetRenewsExpiringResponseData(AVFoundation.AVContentKeyRequest)
M:AVFoundation.AVContentKeyResponse.Create(Foundation.NSData,AVFoundation.AVContentKeyResponseDataType)
-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.Dispose(System.Boolean)
M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidProvideContentKeyRequests(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest[],Foundation.NSData)
M:AVFoundation.AVContentKeySessionDelegate_Extensions.ExternalProtectionStatusDidChange(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKey)
@@ -10482,30 +9273,18 @@ M:AVFoundation.AVExtendedNoteOnEvent.#ctor(System.Single,System.Single,System.UI
M:AVFoundation.AVExtendedNoteOnEvent.#ctor(System.Single,System.Single,System.UInt32,System.UInt32,System.Double)
M:AVFoundation.AVExtendedTempoEvent.#ctor(System.Double)
M:AVFoundation.AVExternalStorageDevice.RequestAccessAsync
-M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.GetTrack(AVFoundation.AVFragmentedAsset,System.Int32)
-M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.GetTracks(AVFoundation.AVFragmentedAsset,AVFoundation.AVMediaCharacteristics)
-M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.GetTracks(AVFoundation.AVFragmentedAsset,AVFoundation.AVMediaTypes)
-M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.GetTracks(AVFoundation.AVFragmentedAsset,System.String)
-M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.GetTracksWithMediaCharacteristic(AVFoundation.AVFragmentedAsset,System.String)
M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.LoadTrack(AVFoundation.AVFragmentedAsset,System.Int32,System.Action{AVFoundation.AVFragmentedAssetTrack,Foundation.NSError})
M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.LoadTrackAsync(AVFoundation.AVFragmentedAsset,System.Int32)
M:AVFoundation.AVFragmentedAsset_AVFragmentedAssetTrackInspection.LoadTracksWithMediaCharacteristic(AVFoundation.AVFragmentedAsset,System.String,System.Action{Foundation.NSArray{AVFoundation.AVFragmentedAssetTrack},Foundation.NSError})
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.IsAssociatedWithFragmentMinder
-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)
-M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.GetTracks(AVFoundation.AVFragmentedMovie,System.String)
-M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.GetTracksWithMediaCharacteristic(AVFoundation.AVFragmentedMovie,System.String)
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.LoadTrack(AVFoundation.AVFragmentedMovie,System.Int32,System.Action{AVFoundation.AVMutableCompositionTrack,Foundation.NSError})
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.LoadTrackAsync(AVFoundation.AVFragmentedMovie,System.Int32)
M:AVFoundation.AVFragmentedMovie_AVFragmentedMovieTrackInspection.LoadTracksWithMediaCharacteristic(AVFoundation.AVFragmentedMovie,System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
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.IsAssociatedWithFragmentMinder
M:AVFoundation.AVMediaSelection.Dispose(System.Boolean)
M:AVFoundation.AVMetadataItem.LoadValuesTaskAsync(System.String[])
M:AVFoundation.AVMetadataItemValueRequest.Dispose(System.Boolean)
@@ -10521,14 +9300,6 @@ M:AVFoundation.AVMidiPlayer.PlayAsync
M:AVFoundation.AVMidiPolyPressureEvent.#ctor(System.UInt32,System.UInt32,System.UInt32)
M:AVFoundation.AVMidiProgramChangeEvent.#ctor(System.UInt32,System.UInt32)
M:AVFoundation.AVMidiSysexEvent.#ctor(Foundation.NSData)
-M:AVFoundation.AVMovie_AVMovieMovieHeaderSupport.GetMovieHeader(AVFoundation.AVMovie,System.String,Foundation.NSError@)
-M:AVFoundation.AVMovie_AVMovieMovieHeaderSupport.IsCompatibleWithFileType(AVFoundation.AVMovie,System.String)
-M:AVFoundation.AVMovie_AVMovieMovieHeaderSupport.WriteMovieHeader(AVFoundation.AVMovie,Foundation.NSUrl,System.String,AVFoundation.AVMovieWritingOptions,Foundation.NSError@)
-M:AVFoundation.AVMovie_AVMovieTrackInspection.GetTrack(AVFoundation.AVMovie,System.Int32)
-M:AVFoundation.AVMovie_AVMovieTrackInspection.GetTracks(AVFoundation.AVMovie,AVFoundation.AVMediaCharacteristics)
-M:AVFoundation.AVMovie_AVMovieTrackInspection.GetTracks(AVFoundation.AVMovie,AVFoundation.AVMediaTypes)
-M:AVFoundation.AVMovie_AVMovieTrackInspection.GetTracks(AVFoundation.AVMovie,System.String)
-M:AVFoundation.AVMovie_AVMovieTrackInspection.GetTracksWithMediaCharacteristic(AVFoundation.AVMovie,System.String)
M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTrack(AVFoundation.AVMovie,System.Int32,System.Action{AVFoundation.AVMutableCompositionTrack,Foundation.NSError})
M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTrackAsync(AVFoundation.AVMovie,System.Int32)
M:AVFoundation.AVMovie_AVMovieTrackInspection.LoadTracksWithMediaCharacteristic(AVFoundation.AVMovie,System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
@@ -10543,11 +9314,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.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)
-M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.GetTracks(AVFoundation.AVMutableComposition,System.String)
-M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.GetTracksWithMediaCharacteristic(AVFoundation.AVMutableComposition,System.String)
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.LoadTrack(AVFoundation.AVMutableComposition,System.Int32,System.Action{AVFoundation.AVMutableCompositionTrack,Foundation.NSError})
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.LoadTrackAsync(AVFoundation.AVMutableComposition,System.Int32)
M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.LoadTracksWithMediaCharacteristic(AVFoundation.AVMutableComposition,System.String,System.Action{Foundation.NSArray{AVFoundation.AVMutableCompositionTrack},Foundation.NSError})
@@ -10555,28 +9321,9 @@ M:AVFoundation.AVMutableComposition_AVMutableCompositionTrackInspection.LoadTrac
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.InsertAsync(CoreMedia.CMTimeRange,AVFoundation.AVAsset,CoreMedia.CMTime)
-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)
-M:AVFoundation.AVMutableMovie_AVMutableMovieMovieLevelEditing.ScaleTimeRange(AVFoundation.AVMutableMovie,CoreMedia.CMTimeRange,CoreMedia.CMTime)
-M:AVFoundation.AVMutableMovie_AVMutableMovieTrackInspection.GetTrack(AVFoundation.AVMutableMovie,System.Int32)
-M:AVFoundation.AVMutableMovie_AVMutableMovieTrackInspection.GetTracks(AVFoundation.AVMutableMovie,AVFoundation.AVMediaCharacteristics)
-M:AVFoundation.AVMutableMovie_AVMutableMovieTrackInspection.GetTracks(AVFoundation.AVMutableMovie,AVFoundation.AVMediaTypes)
-M:AVFoundation.AVMutableMovie_AVMutableMovieTrackInspection.GetTracks(AVFoundation.AVMutableMovie,System.String)
-M:AVFoundation.AVMutableMovie_AVMutableMovieTrackInspection.GetTracksWithMediaCharacteristic(AVFoundation.AVMutableMovie,System.String)
-M:AVFoundation.AVMutableMovie_AVMutableMovieTrackLevelEditing.AddMutableTrack(AVFoundation.AVMutableMovie,System.String,AVFoundation.AVAssetTrack,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-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.LoadTrackAsync(System.Int32)
M:AVFoundation.AVMutableMovie.LoadTracksWithMediaCharacteristicAsync(System.String)
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@)
-M:AVFoundation.AVMutableMovieTrack_AVMutableMovieTrack_TrackLevelEditing.RemoveTimeRange(AVFoundation.AVMutableMovieTrack,CoreMedia.CMTimeRange)
-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.AVMutableVideoComposition.CreateAsync(AVFoundation.AVAsset,AVFoundation.AVMutableVideoCompositionCreateApplier)
M:AVFoundation.AVMutableVideoComposition.CreateAsync(AVFoundation.AVAsset,AVFoundation.AVVideoCompositionInstruction)
M:AVFoundation.AVMutableVideoComposition.CreateAsync(AVFoundation.AVAsset)
@@ -10593,12 +9340,6 @@ M:AVFoundation.AVPlayerItem_AVPlaybackRestrictions.RequestPlaybackRestrictionsAu
M:AVFoundation.AVPlayerItem_AVPlayerInterstitialSupport.GetAutomaticallyHandlesInterstitialEvents(AVFoundation.AVPlayerItem)
M:AVFoundation.AVPlayerItem_AVPlayerInterstitialSupport.GetTemplatePlayerItem(AVFoundation.AVPlayerItem)
M:AVFoundation.AVPlayerItem_AVPlayerInterstitialSupport.SetAutomaticallyHandlesInterstitialEvents(AVFoundation.AVPlayerItem,System.Boolean)
-M:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent.CancelContentAuthorizationRequest(AVFoundation.AVPlayerItem)
-M:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent.GetContentAuthorizationRequestStatus(AVFoundation.AVPlayerItem)
-M:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent.IsApplicationAuthorizedForPlayback(AVFoundation.AVPlayerItem)
-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.Dispose(System.Boolean)
M:AVFoundation.AVPlayerItemIntegratedTimeline.SeekToDateAsync(Foundation.NSDate)
M:AVFoundation.AVPlayerItemIntegratedTimeline.SeekToTimeAsync(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime)
@@ -10654,21 +9395,14 @@ M:AVFoundation.AVVideoComposition.DetermineValidityAsync(AVFoundation.AVAsset,Co
M:AVFoundation.IAVAssetDownloadDelegate.WillDownloadVariants(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,AVFoundation.AVAssetVariant[])
M:AVFoundation.IAVAssetDownloadDelegate.WilllDownloadToUrl(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl)
M:AVFoundation.IAVAssetReaderCaptionValidationHandling.DidVendCaption(AVFoundation.AVAssetReaderOutputCaptionAdaptor,AVFoundation.AVCaption,System.String[])
-M:AVFoundation.IAVAssetResourceLoaderDelegate.ShouldWaitForLoadingOfRequestedResource(AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest)
M:AVFoundation.IAVAssetWriterDelegate.DidOutputSegmentData(AVFoundation.AVAssetWriter,Foundation.NSData,AVFoundation.AVAssetSegmentType,AVFoundation.AVAssetSegmentReport)
M:AVFoundation.IAVAssetWriterDelegate.DidOutputSegmentData(AVFoundation.AVAssetWriter,Foundation.NSData,AVFoundation.AVAssetSegmentType)
M:AVFoundation.IAVAsynchronousKeyValueLoading.GetStatusOfValue(System.String,Foundation.NSError@)
-M:AVFoundation.IAVAsynchronousKeyValueLoading.LoadValuesAsynchronously(System.String[],System.Action)
M:AVFoundation.IAVAudioMixing.DestinationForMixer(AVFoundation.AVAudioNode,System.UIntPtr)
M:AVFoundation.IAVAudioPlayerDelegate.EndInterruption(AVFoundation.AVAudioPlayer,AVFoundation.AVAudioSessionInterruptionOptions)
M:AVFoundation.IAVAudioRecorderDelegate.EndInterruption(AVFoundation.AVAudioRecorder,AVFoundation.AVAudioSessionInterruptionOptions)
M:AVFoundation.IAVAudioSessionDelegate.EndInterruption(AVFoundation.AVAudioSessionInterruptionOptions)
-M:AVFoundation.IAVCaptureDataOutputSynchronizerDelegate.DidOutputSynchronizedDataCollection(AVFoundation.AVCaptureDataOutputSynchronizer,AVFoundation.AVCaptureSynchronizedDataCollection)
-M:AVFoundation.IAVCaptureFileOutputDelegate.DidOutputSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection)
-M:AVFoundation.IAVCaptureFileOutputDelegate.ShouldProvideSampleAccurateRecordingStart(AVFoundation.AVCaptureOutput)
M:AVFoundation.IAVCaptureFileOutputRecordingDelegate.DidStartRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,CoreMedia.CMTime,Foundation.NSObject[])
-M:AVFoundation.IAVCaptureFileOutputRecordingDelegate.FinishedRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,Foundation.NSObject[],Foundation.NSError)
-M:AVFoundation.IAVCaptureFileOutputRecordingDelegate.WillFinishRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[],Foundation.NSError)
M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidFinishCapturingDeferredPhotoProxy(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureDeferredPhotoProxy,Foundation.NSError)
M:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer.GetReplacementAppleProRawCompressionSettings(AVFoundation.AVCapturePhoto,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr)
M:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer.GetReplacementSemanticSegmentationMatte(Foundation.NSString,AVFoundation.AVCapturePhoto)
@@ -10678,35 +9412,22 @@ M:AVFoundation.IAVCaptureSessionControlsDelegate.DidBecomeInactive(AVFoundation.
M:AVFoundation.IAVCaptureSessionControlsDelegate.WillEnterFullscreenAppearance(AVFoundation.AVCaptureSession)
M:AVFoundation.IAVCaptureSessionControlsDelegate.WillExitFullscreenAppearance(AVFoundation.AVCaptureSession)
M:AVFoundation.IAVContentKeyRecipient.DidProvideContentKey(AVFoundation.AVContentKeySession,AVFoundation.AVContentKey)
-M:AVFoundation.IAVContentKeySessionDelegate.DidProvideContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest)
M:AVFoundation.IAVContentKeySessionDelegate.DidProvideContentKeyRequests(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest[],Foundation.NSData)
M:AVFoundation.IAVContentKeySessionDelegate.ExternalProtectionStatusDidChange(AVFoundation.AVContentKeySession,AVFoundation.AVContentKey)
-M:AVFoundation.IAVFragmentMinding.IsAssociatedWithFragmentMinder
M:AVFoundation.IAVMetricEventStreamSubscriber.DidReceiveEvent(AVFoundation.IAVMetricEventStreamPublisher,AVFoundation.AVMetricEvent)
M:AVFoundation.IAVPlaybackCoordinatorPlaybackControlDelegate.DidIssueBufferingCommand(AVFoundation.AVDelegatingPlaybackCoordinator,AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand,System.Action)
M:AVFoundation.IAVPlaybackCoordinatorPlaybackControlDelegate.DidIssuePauseCommand(AVFoundation.AVDelegatingPlaybackCoordinator,AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand,System.Action)
M:AVFoundation.IAVPlaybackCoordinatorPlaybackControlDelegate.DidIssuePlayCommand(AVFoundation.AVDelegatingPlaybackCoordinator,AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand,System.Action)
M:AVFoundation.IAVPlaybackCoordinatorPlaybackControlDelegate.DidIssueSeekCommand(AVFoundation.AVDelegatingPlaybackCoordinator,AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand,System.Action)
-M:AVFoundation.IAVPlayerItemMetadataCollectorPushDelegate.DidCollectDateRange(AVFoundation.AVPlayerItemMetadataCollector,AVFoundation.AVDateRangeMetadataGroup[],Foundation.NSIndexSet,Foundation.NSIndexSet)
M:AVFoundation.IAVPlayerItemRenderedLegibleOutputPushDelegate.DidOutputRenderedCaptionImages(AVFoundation.AVPlayerItemRenderedLegibleOutput,AVFoundation.AVRenderedCaptionImage[],CoreMedia.CMTime)
M:AVFoundation.IAVPlayerPlaybackCoordinatorDelegate.GetIdentifier(AVFoundation.AVPlayerPlaybackCoordinator,AVFoundation.AVPlayerItem)
M:AVFoundation.IAVPlayerPlaybackCoordinatorDelegate.GetInterstitialTimeRanges(AVFoundation.AVPlayerPlaybackCoordinator,AVFoundation.AVPlayerItem)
-M:AVFoundation.IAVQueuedSampleBufferRendering.Enqueue(CoreMedia.CMSampleBuffer)
-M:AVFoundation.IAVQueuedSampleBufferRendering.Flush
-M:AVFoundation.IAVQueuedSampleBufferRendering.RequestMediaData(CoreFoundation.DispatchQueue,System.Action)
-M:AVFoundation.IAVQueuedSampleBufferRendering.StopRequestingMediaData
M:AVFoundation.IAVSpeechSynthesizerDelegate.WillSpeakMarker(AVFoundation.AVSpeechSynthesizer,AVFoundation.AVSpeechSynthesisMarker,AVFoundation.AVSpeechUtterance)
M:AVFoundation.IAVVideoCompositing.AnticipateRendering(AVFoundation.AVVideoCompositionRenderHint)
M:AVFoundation.IAVVideoCompositing.PrerollForRendering(AVFoundation.AVVideoCompositionRenderHint)
-M:AVFoundation.IAVVideoCompositing.RenderContextChanged(AVFoundation.AVVideoCompositionRenderContext)
-M:AVFoundation.IAVVideoCompositing.RequiredPixelBufferAttributesForRenderContext
-M:AVFoundation.IAVVideoCompositing.SourcePixelBufferAttributes
-M:AVFoundation.IAVVideoCompositing.StartVideoCompositionRequest(AVFoundation.AVAsynchronousVideoCompositionRequest)
M:AVKit.AVAudioSession_AVPlaybackRouteSelecting.PrepareRouteSelectionForPlayback(AVFoundation.AVAudioSession,System.Action{System.Boolean,AVKit.AVAudioSessionRouteSelection})
M:AVKit.AVAudioSession_AVPlaybackRouteSelecting.PrepareRouteSelectionForPlaybackAsync(AVFoundation.AVAudioSession)
-M:AVKit.AVCaptureEventInteraction.DidMoveToView(UIKit.UIView)
M:AVKit.AVCaptureEventInteraction.Dispose(System.Boolean)
-M:AVKit.AVCaptureEventInteraction.WillMoveToView(UIKit.UIView)
M:AVKit.AVCaptureView.Dispose(System.Boolean)
M:AVKit.AVContentProposalViewController.#ctor(System.String,Foundation.NSBundle)
M:AVKit.AVContentProposalViewController.Dispose(System.Boolean)
@@ -10716,7 +9437,6 @@ M:AVKit.AVCustomRoutingControllerDelegate_Extensions.EventDidTimeOut(AVKit.IAVCu
M:AVKit.AVCustomRoutingControllerDelegate.DidSelectItem(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingActionItem)
M:AVKit.AVCustomRoutingControllerDelegate.EventDidTimeOut(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingEvent)
M:AVKit.AVCustomRoutingControllerDelegate.HandleEvent(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingEvent,AVKit.AVCustomRoutingControllerDelegateCompletionHandler)
-M:AVKit.AVInterstitialTimeRange.Copy(Foundation.NSZone)
M:AVKit.AVPictureInPictureController.Dispose(System.Boolean)
M:AVKit.AVPictureInPictureControllerContentSource.Dispose(System.Boolean)
M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate_Extensions.ShouldProhibitBackgroundAudioPlayback(AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate,AVKit.AVPictureInPictureController)
@@ -10759,7 +9479,6 @@ M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.WillStart(AVKit.IAVPlaye
M:AVKit.AVPlayerViewPictureInPictureDelegate_Extensions.WillStop(AVKit.IAVPlayerViewPictureInPictureDelegate,AVKit.AVPlayerView)
M:AVKit.AVRoutePickerView.AVRoutePickerViewAppearance.#ctor(System.IntPtr)
M:AVKit.AVRoutePickerView.Dispose(System.Boolean)
-M:AVKit.IAVCaptureViewDelegate.StartRecording(AVKit.AVCaptureView,AVFoundation.AVCaptureFileOutput)
M:AVKit.IAVContinuityDevicePickerViewControllerDelegate.DidCancel(AVKit.AVContinuityDevicePickerViewController)
M:AVKit.IAVContinuityDevicePickerViewControllerDelegate.DidConnectDevice(AVKit.AVContinuityDevicePickerViewController,AVFoundation.AVContinuityDevice)
M:AVKit.IAVContinuityDevicePickerViewControllerDelegate.DidEndPresenting(AVKit.AVContinuityDevicePickerViewController)
@@ -10811,7 +9530,6 @@ M:AVKit.IAVPlayerViewPictureInPictureDelegate.WillStop(AVKit.AVPlayerView)
M:AVKit.PreparingRouteSelectionForPlayback.#ctor(System.Boolean,AVKit.AVAudioSessionRouteSelection)
M:AVKit.UIWindow_AVAdditions.GetAVDisplayManager(UIKit.UIWindow)
M:AVRouting.AVCustomRoutingController.Dispose(System.Boolean)
-M:BackgroundAssets.BADownload.Copy(Foundation.NSZone)
M:BackgroundAssets.BADownload.CopyAsNonEssential
M:BackgroundAssets.BADownloaderExtension_Extensions.DidReceiveChallenge(BackgroundAssets.IBADownloaderExtension,BackgroundAssets.BADownload,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential})
M:BackgroundAssets.BADownloaderExtension_Extensions.Failed(BackgroundAssets.IBADownloaderExtension,BackgroundAssets.BADownload,Foundation.NSError)
@@ -10857,15 +9575,12 @@ M:BackgroundAssets.IBADownloadManagerDelegate.Finished(BackgroundAssets.BADownlo
M:BackgroundTasks.BGAppRefreshTaskRequest.#ctor(System.String)
M:BackgroundTasks.BGProcessingTaskRequest.#ctor(System.String)
M:BackgroundTasks.BGTask.SetTaskCompleted(System.Boolean)
-M:BackgroundTasks.BGTaskRequest.Copy(Foundation.NSZone)
M:BackgroundTasks.BGTaskScheduler.Cancel(System.String)
M:BackgroundTasks.BGTaskScheduler.CancelAll
M:BackgroundTasks.BGTaskScheduler.GetPending(System.Action{BackgroundTasks.BGTaskRequest[]})
M:BackgroundTasks.BGTaskScheduler.GetPendingAsync
M:BackgroundTasks.BGTaskScheduler.Register(System.String,CoreFoundation.DispatchQueue,System.Action{BackgroundTasks.BGTask})
M:BackgroundTasks.BGTaskScheduler.Submit(BackgroundTasks.BGTaskRequest,Foundation.NSError@)
-M:BrowserEngineKit.BEAccessibilityTextMarker.Copy(Foundation.NSZone)
-M:BrowserEngineKit.BEAccessibilityTextMarkerRange.Copy(Foundation.NSZone)
M:BrowserEngineKit.BEDownloadMonitor.BeginMonitoringAsync
M:BrowserEngineKit.BEDownloadMonitor.ResumeMonitoringAsync(Foundation.NSUrl)
M:BrowserEngineKit.BEDragInteraction.Dispose(System.Boolean)
@@ -10875,9 +9590,7 @@ M:BrowserEngineKit.BERenderingProcess.CreateAsync(System.Action)
M:BrowserEngineKit.BERenderingProcess.CreateAsync(System.String,System.Action)
M:BrowserEngineKit.BEScrollView.BEScrollViewAppearance.#ctor(System.IntPtr)
M:BrowserEngineKit.BEScrollView.Dispose(System.Boolean)
-M:BrowserEngineKit.BETextInteraction.DidMoveToView(UIKit.UIView)
M:BrowserEngineKit.BETextInteraction.Dispose(System.Boolean)
-M:BrowserEngineKit.BETextInteraction.WillMoveToView(UIKit.UIView)
M:BrowserEngineKit.BEWebContentProcess.CreateAsync(System.Action)
M:BrowserEngineKit.BEWebContentProcess.CreateAsync(System.String,System.Action)
M:BrowserEngineKit.IBEAccessibilityTextMarkerSupport.GetAccessibilityBounds(BrowserEngineKit.BEAccessibilityTextMarkerRange)
@@ -10990,19 +9703,10 @@ M:BrowserEngineKit.NSObject_BEAccessibility.SetBrowserAccessibilityRoleDescripti
M:BrowserEngineKit.NSObject_BEAccessibility.SetBrowserAccessibilitySelectedTextRange(Foundation.NSObject,Foundation.NSRange)
M:BrowserEngineKit.NSObject_BEAccessibility.SetBrowserAccessibilitySortDirection(Foundation.NSObject,System.String)
M:BusinessChat.BCChatButton.BCChatButtonAppearance.#ctor(System.IntPtr)
-M:CallKit.CXAction.Copy(Foundation.NSZone)
M:CallKit.CXCallDirectoryExtensionContext.CompleteRequestAsync
M:CallKit.CXCallDirectoryExtensionContext.Dispose(System.Boolean)
M:CallKit.CXCallDirectoryManager.OpenSettingsAsync
-M:CallKit.CXCallUpdate.Copy(Foundation.NSZone)
-M:CallKit.CXHandle.Copy(Foundation.NSZone)
M:CallKit.CXProvider.ReportNewIncomingVoIPPushPayloadAsync(Foundation.NSDictionary)
-M:CallKit.CXProviderConfiguration.Copy(Foundation.NSZone)
-M:CallKit.CXTransaction.Copy(Foundation.NSZone)
-M:CallKit.ICXCallDirectoryExtensionContextDelegate.RequestFailed(CallKit.CXCallDirectoryExtensionContext,Foundation.NSError)
-M:CallKit.ICXCallObserverDelegate.CallChanged(CallKit.CXCallObserver,CallKit.CXCall)
-M:CallKit.ICXProviderDelegate.DidReset(CallKit.CXProvider)
-M:CarPlay.CPApplicationDelegate.AccessibilityPerformMagicTap
M:CarPlay.CPApplicationDelegate.DidDiscardSceneSessions(UIKit.UIApplication,Foundation.NSSet{UIKit.UISceneSession})
M:CarPlay.CPApplicationDelegate.DidFailToContinueUserActivity(UIKit.UIApplication,System.String,Foundation.NSError)
M:CarPlay.CPApplicationDelegate.GetConfiguration(UIKit.UIApplication,UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
@@ -11023,10 +9727,7 @@ M:CarPlay.CPInterfaceController.PopToTemplateAsync(CarPlay.CPTemplate,System.Boo
M:CarPlay.CPInterfaceController.PresentTemplateAsync(CarPlay.CPTemplate,System.Boolean)
M:CarPlay.CPInterfaceController.PushTemplateAsync(CarPlay.CPTemplate,System.Boolean)
M:CarPlay.CPInterfaceController.SetRootTemplateAsync(CarPlay.CPTemplate,System.Boolean)
-M:CarPlay.CPLane.Copy(Foundation.NSZone)
-M:CarPlay.CPLaneGuidance.Copy(Foundation.NSZone)
M:CarPlay.CPListTemplate.Dispose(System.Boolean)
-M:CarPlay.CPManeuver.Copy(Foundation.NSZone)
M:CarPlay.CPManeuver.Dispose(System.Boolean)
M:CarPlay.CPMapTemplate.Dispose(System.Boolean)
M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldProvideNavigationMetadata(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate)
@@ -11036,11 +9737,9 @@ M:CarPlay.CPNowPlayingTemplateObserver_Extensions.AlbumArtistButtonTapped(CarPla
M:CarPlay.CPNowPlayingTemplateObserver_Extensions.UpNextButtonTapped(CarPlay.ICPNowPlayingTemplateObserver,CarPlay.CPNowPlayingTemplate)
M:CarPlay.CPPointOfInterestTemplate.Dispose(System.Boolean)
M:CarPlay.CPPointOfInterestTemplateDelegate_Extensions.DidSelectPointOfInterest(CarPlay.ICPPointOfInterestTemplateDelegate,CarPlay.CPPointOfInterestTemplate,CarPlay.CPPointOfInterest)
-M:CarPlay.CPRouteChoice.Copy(Foundation.NSZone)
M:CarPlay.CPSearchTemplate.Dispose(System.Boolean)
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.CPTabBarTemplate.Dispose(System.Boolean)
M:CarPlay.CPTemplateApplicationDashboardScene.#ctor(UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
M:CarPlay.CPTemplateApplicationDashboardSceneDelegate_Extensions.DidConnectDashboardController(CarPlay.ICPTemplateApplicationDashboardSceneDelegate,CarPlay.CPTemplateApplicationDashboardScene,CarPlay.CPDashboardController,UIKit.UIWindow)
@@ -11098,24 +9797,18 @@ M:CarPlay.CPTemplateApplicationSceneDelegate.WillEnterForeground(UIKit.UIScene)
M:CarPlay.CPTemplateApplicationSceneDelegate.WillResignActive(UIKit.UIScene)
M:CarPlay.CPWindow.CPWindowAppearance.#ctor(System.IntPtr)
M:CarPlay.CPWindow.Dispose(System.Boolean)
-M:CarPlay.ICPApplicationDelegate.DidConnectCarInterfaceController(UIKit.UIApplication,CarPlay.CPInterfaceController,CarPlay.CPWindow)
-M:CarPlay.ICPApplicationDelegate.DidDisconnectCarInterfaceController(UIKit.UIApplication,CarPlay.CPInterfaceController,CarPlay.CPWindow)
M:CarPlay.ICPInstrumentClusterControllerDelegate.DidChangeCompassSetting(CarPlay.CPInstrumentClusterController,CarPlay.CPInstrumentClusterSetting)
M:CarPlay.ICPInstrumentClusterControllerDelegate.DidChangeSpeedLimitSetting(CarPlay.CPInstrumentClusterController,CarPlay.CPInstrumentClusterSetting)
M:CarPlay.ICPInstrumentClusterControllerDelegate.DidConnectWindow(UIKit.UIWindow)
M:CarPlay.ICPInstrumentClusterControllerDelegate.DidDisconnectWindow(UIKit.UIWindow)
M:CarPlay.ICPInstrumentClusterControllerDelegate.DidZoomIn(CarPlay.CPInstrumentClusterController)
M:CarPlay.ICPInstrumentClusterControllerDelegate.DidZoomOut(CarPlay.CPInstrumentClusterController)
-M:CarPlay.ICPListTemplateDelegate.DidSelectListItem(CarPlay.CPListTemplate,CarPlay.CPListItem,System.Action)
M:CarPlay.ICPMapTemplateDelegate.ShouldProvideNavigationMetadata(CarPlay.CPMapTemplate)
M:CarPlay.ICPNowPlayingTemplateObserver.AlbumArtistButtonTapped(CarPlay.CPNowPlayingTemplate)
M:CarPlay.ICPNowPlayingTemplateObserver.UpNextButtonTapped(CarPlay.CPNowPlayingTemplate)
M:CarPlay.ICPPointOfInterestTemplateDelegate.DidChangeMapRegion(CarPlay.CPPointOfInterestTemplate,MapKit.MKCoordinateRegion)
M:CarPlay.ICPPointOfInterestTemplateDelegate.DidSelectPointOfInterest(CarPlay.CPPointOfInterestTemplate,CarPlay.CPPointOfInterest)
-M:CarPlay.ICPSearchTemplateDelegate.SelectedResult(CarPlay.CPSearchTemplate,CarPlay.CPListItem,System.Action)
-M:CarPlay.ICPSearchTemplateDelegate.UpdatedSearchText(CarPlay.CPSearchTemplate,System.String,CarPlay.CPSearchTemplateDelegateUpdateHandler)
M:CarPlay.ICPSessionConfigurationDelegate.ContentStyleChanged(CarPlay.CPSessionConfiguration,CarPlay.CPContentStyle)
-M:CarPlay.ICPSessionConfigurationDelegate.LimitedUserInterfacesChanged(CarPlay.CPSessionConfiguration,CarPlay.CPLimitableUserInterface)
M:CarPlay.ICPTabBarTemplateDelegate.DidSelectTemplate(CarPlay.CPTabBarTemplate,CarPlay.CPTemplate)
M:CarPlay.ICPTemplateApplicationDashboardSceneDelegate.DidConnectDashboardController(CarPlay.CPTemplateApplicationDashboardScene,CarPlay.CPDashboardController,UIKit.UIWindow)
M:CarPlay.ICPTemplateApplicationDashboardSceneDelegate.DidDisconnectDashboardController(CarPlay.CPTemplateApplicationDashboardScene,CarPlay.CPDashboardController,UIKit.UIWindow)
@@ -11151,52 +9844,22 @@ M:CFNetwork.CFHTTPStream.GetResponseHeader
M:CFNetwork.CFHTTPStream.SetProxy(CoreFoundation.CFProxySettings)
M:Cinematic.CNAssetInfo.CheckIfCinematicAsync(AVFoundation.AVAsset)
M:Cinematic.CNAssetInfo.LoadFromAssetAsync(AVFoundation.AVAsset)
-M:Cinematic.CNBoundsPrediction.Copy(Foundation.NSZone)
-M:Cinematic.CNBoundsPrediction.MutableCopy(Foundation.NSZone)
M:Cinematic.CNDecision.#ctor(CoreMedia.CMTime,System.Int64,System.Boolean,Cinematic.CNDecisionIdentifierType)
-M:Cinematic.CNDecision.Copy(Foundation.NSZone)
-M:Cinematic.CNDetection.Copy(Foundation.NSZone)
-M:Cinematic.CNDetectionTrack.Copy(Foundation.NSZone)
M:Cinematic.CNRenderingSessionAttributes.LoadAsync(AVFoundation.AVAsset)
-M:Cinematic.CNRenderingSessionFrameAttributes.Copy(Foundation.NSZone)
-M:Cinematic.CNRenderingSessionFrameAttributes.MutableCopy(Foundation.NSZone)
M:Cinematic.CNScript.LoadAsync(AVFoundation.AVAsset,Cinematic.CNScriptChanges,Foundation.NSProgress)
-M:Cinematic.CNScriptFrame.Copy(Foundation.NSZone)
M:ClassKit.CLSDataStore.Dispose(System.Boolean)
M:ClassKit.CLSDataStore.FetchActivityAsync(Foundation.NSUrl)
M:ClassKit.CLSDataStore.SaveAsync
-M:ClassKit.ICLSContextProvider.UpdateDescendants(ClassKit.CLSContext,System.Action{Foundation.NSError})
-M:ClassKit.ICLSDataStoreDelegate.CreateContext(System.String,ClassKit.CLSContext,System.String[])
-M:CloudKit.CKAllowedSharingOptions.Copy(Foundation.NSZone)
M:CloudKit.CKContainer.DiscoverAllIdentitiesAsync
M:CloudKit.CKContainer.FetchAllLongLivedOperationIDsAsync
M:CloudKit.CKContainer.FetchUserRecordIdAsync
M:CloudKit.CKContainer.GetAccountStatusAsync
M:CloudKit.CKDatabase.FetchAllRecordZonesAsync
M:CloudKit.CKDatabase.FetchAllSubscriptionsAsync
-M:CloudKit.CKDatabaseSubscription.Copy(Foundation.NSZone)
M:CloudKit.CKFetchNotificationChangesOperation.#ctor(ObjCRuntime.NativeHandle)
-M:CloudKit.CKFetchRecordZoneChangesConfiguration.Copy(Foundation.NSZone)
-M:CloudKit.CKFetchRecordZoneChangesOptions.Copy(Foundation.NSZone)
M:CloudKit.CKMarkNotificationsReadOperation.#ctor(ObjCRuntime.NativeHandle)
M:CloudKit.CKModifyBadgeOperation.#ctor(ObjCRuntime.NativeHandle)
M:CloudKit.CKModifyBadgeOperation.#ctor(System.UIntPtr)
-M:CloudKit.CKNotificationID.Copy(Foundation.NSZone)
-M:CloudKit.CKNotificationInfo.Copy(Foundation.NSZone)
-M:CloudKit.CKOperationConfiguration.Copy(Foundation.NSZone)
-M:CloudKit.CKQuery.Copy(Foundation.NSZone)
-M:CloudKit.CKQueryCursor.Copy(Foundation.NSZone)
-M:CloudKit.CKQuerySubscription.Copy(Foundation.NSZone)
-M:CloudKit.CKRecord.Copy(Foundation.NSZone)
-M:CloudKit.CKRecordID.Copy(Foundation.NSZone)
-M:CloudKit.CKRecordZone.Copy(Foundation.NSZone)
-M:CloudKit.CKRecordZoneID.Copy(Foundation.NSZone)
-M:CloudKit.CKRecordZoneSubscription.Copy(Foundation.NSZone)
-M:CloudKit.CKReference.Copy(Foundation.NSZone)
-M:CloudKit.CKServerChangeToken.Copy(Foundation.NSZone)
-M:CloudKit.CKShareMetadata.Copy(Foundation.NSZone)
-M:CloudKit.CKShareParticipant.Copy(Foundation.NSZone)
-M:CloudKit.CKSubscription.Copy(Foundation.NSZone)
M:CloudKit.CKSyncEngine.CancelOperationsAsync
M:CloudKit.CKSyncEngine.FetchChangesAsync
M:CloudKit.CKSyncEngine.FetchChangesAsync(CloudKit.CKSyncEngineFetchChangesOptions)
@@ -11204,18 +9867,11 @@ M:CloudKit.CKSyncEngine.SendChangesAsync
M:CloudKit.CKSyncEngine.SendChangesAsync(CloudKit.CKSyncEngineSendChangesOptions)
M:CloudKit.CKSyncEngineConfiguration.Dispose(System.Boolean)
M:CloudKit.CKSyncEngineDelegate_Extensions.SyncEngine(CloudKit.ICKSyncEngineDelegate,CloudKit.CKSyncEngine,CloudKit.CKSyncEngineFetchChangesContext)
-M:CloudKit.CKSyncEngineFetchChangesOptions.Copy(Foundation.NSZone)
M:CloudKit.CKSyncEngineFetchChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean)
-M:CloudKit.CKSyncEngineFetchChangesScope.Copy(Foundation.NSZone)
-M:CloudKit.CKSyncEngineSendChangesOptions.Copy(Foundation.NSZone)
M:CloudKit.CKSyncEngineSendChangesScope.#ctor(Foundation.NSSet{CloudKit.CKRecordZoneID},System.Boolean)
-M:CloudKit.CKSyncEngineSendChangesScope.Copy(Foundation.NSZone)
-M:CloudKit.CKUserIdentity.Copy(Foundation.NSZone)
-M:CloudKit.CKUserIdentityLookupInfo.Copy(Foundation.NSZone)
M:CloudKit.ICKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineEvent)
M:CloudKit.ICKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineFetchChangesContext)
M:CloudKit.ICKSyncEngineDelegate.SyncEngine(CloudKit.CKSyncEngine,CloudKit.CKSyncEngineSendChangesContext)
-M:Contacts.CNChangeHistoryEvent.Copy(Foundation.NSZone)
M:Contacts.CNChangeHistoryEventVisitor_Extensions.AddGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryAddGroupEvent)
M:Contacts.CNChangeHistoryEventVisitor_Extensions.AddMemberToGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryAddMemberToGroupEvent)
M:Contacts.CNChangeHistoryEventVisitor_Extensions.AddSubgroupToGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryAddSubgroupToGroupEvent)
@@ -11223,23 +9879,9 @@ M:Contacts.CNChangeHistoryEventVisitor_Extensions.DeleteGroup(Contacts.ICNChange
M:Contacts.CNChangeHistoryEventVisitor_Extensions.RemoveMemberFromGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryRemoveMemberFromGroupEvent)
M:Contacts.CNChangeHistoryEventVisitor_Extensions.RemoveSubgroupFromGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent)
M:Contacts.CNChangeHistoryEventVisitor_Extensions.UpdateGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryUpdateGroupEvent)
-M:Contacts.CNContact.Copy(Foundation.NSZone)
M:Contacts.CNContact.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
-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.MutableCopy(Foundation.NSZone)
-M:Contacts.CNContactProperty.Copy(Foundation.NSZone)
-M:Contacts.CNContactRelation.Copy(Foundation.NSZone)
-M:Contacts.CNContainer.Copy(Foundation.NSZone)
-M:Contacts.CNGroup.Copy(Foundation.NSZone)
-M:Contacts.CNGroup.MutableCopy(Foundation.NSZone)
-M:Contacts.CNInstantMessageAddress.Copy(Foundation.NSZone)
-M:Contacts.CNLabeledValue`1.Copy(Foundation.NSZone)
-M:Contacts.CNPhoneNumber.Copy(Foundation.NSZone)
-M:Contacts.CNPostalAddress.Copy(Foundation.NSZone)
-M:Contacts.CNPostalAddress.MutableCopy(Foundation.NSZone)
-M:Contacts.CNSocialProfile.Copy(Foundation.NSZone)
M:Contacts.ICNChangeHistoryEventVisitor.AddContact(Contacts.CNChangeHistoryAddContactEvent)
M:Contacts.ICNChangeHistoryEventVisitor.AddGroup(Contacts.CNChangeHistoryAddGroupEvent)
M:Contacts.ICNChangeHistoryEventVisitor.AddMemberToGroup(Contacts.CNChangeHistoryAddMemberToGroupEvent)
@@ -11256,14 +9898,11 @@ M:ContactsUI.CNContactPickerViewController.Dispose(System.Boolean)
M:ContactsUI.CNContactViewController.Dispose(System.Boolean)
M:CoreAnimation.CAAnimation.add_AnimationStarted(System.EventHandler)
M:CoreAnimation.CAAnimation.add_AnimationStopped(System.EventHandler{CoreAnimation.CAAnimationStateEventArgs})
-M:CoreAnimation.CAAnimation.Copy(Foundation.NSZone)
-M:CoreAnimation.CAAnimation.MutableCopy(Foundation.NSZone)
M:CoreAnimation.CAAnimation.remove_AnimationStarted(System.EventHandler)
M:CoreAnimation.CAAnimation.remove_AnimationStopped(System.EventHandler{CoreAnimation.CAAnimationStateEventArgs})
M:CoreAnimation.CAConstraint.#ctor(CoreAnimation.CAConstraintAttribute,System.String,CoreAnimation.CAConstraintAttribute,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:CoreAnimation.CAConstraint.Create(CoreAnimation.CAConstraintAttribute,System.String,CoreAnimation.CAConstraintAttribute,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:CoreAnimation.CAConstraint.Create(CoreAnimation.CAConstraintAttribute,System.String,CoreAnimation.CAConstraintAttribute,System.Runtime.InteropServices.NFloat)
-M:CoreAnimation.CAEdrMetadata.Copy(Foundation.NSZone)
M:CoreAnimation.CAEdrMetadata.GetHdr10Metadata(Foundation.NSData,Foundation.NSData,System.Single)
M:CoreAnimation.CAEdrMetadata.GetHdr10Metadata(System.Single,System.Single,System.Single)
M:CoreAnimation.CAEdrMetadata.GetHlgMetadata(Foundation.NSData)
@@ -11287,13 +9926,10 @@ M:CoreAnimation.CATransform3D.Scale(System.Runtime.InteropServices.NFloat,System
M:CoreAnimation.CATransform3D.Scale(System.Runtime.InteropServices.NFloat)
M:CoreAnimation.CATransform3D.Translate(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:CoreAnimation.ICAMetalDisplayLinkDelegate.NeedsUpdate(CoreAnimation.CAMetalDisplayLink,CoreAnimation.CAMetalDisplayLinkUpdate)
-M:CoreAudioKit.AUAudioUnitViewControllerExtensions.GetSupportedViewConfigurations(AudioUnit.AUAudioUnit,CoreAudioKit.AUAudioUnitViewConfiguration[])
-M:CoreAudioKit.AUAudioUnitViewControllerExtensions.SelectViewConfiguration(AudioUnit.AUAudioUnit,CoreAudioKit.AUAudioUnitViewConfiguration)
M:CoreAudioKit.AUGenericView.Dispose(System.Boolean)
M:CoreAudioKit.AUGenericViewController.#ctor(System.String,Foundation.NSBundle)
M:CoreAudioKit.CAInterAppAudioSwitcherView.CAInterAppAudioSwitcherViewAppearance.#ctor(System.IntPtr)
M:CoreAudioKit.CAInterAppAudioTransportView.CAInterAppAudioTransportViewAppearance.#ctor(System.IntPtr)
-M:CoreBluetooth.CBCentral.Copy(Foundation.NSZone)
M:CoreBluetooth.CBCentralManager.add_ConnectedPeripheral(System.EventHandler{CoreBluetooth.CBPeripheralEventArgs})
M:CoreBluetooth.CBCentralManager.add_ConnectionEventDidOccur(System.EventHandler{CoreBluetooth.CBPeripheralConnectionEventEventArgs})
M:CoreBluetooth.CBCentralManager.add_DidDisconnectPeripheral(System.EventHandler{CoreBluetooth.CBPeripheralDiconnectionEventEventArgs})
@@ -11324,7 +9960,6 @@ M:CoreBluetooth.CBCentralManagerDelegate.DidDisconnectPeripheral(CoreBluetooth.C
M:CoreBluetooth.CBCentralManagerDelegate.DidUpdateAncsAuthorization(CoreBluetooth.CBCentralManager,CoreBluetooth.CBPeripheral)
M:CoreBluetooth.CBCharacteristic.Dispose(System.Boolean)
M:CoreBluetooth.CBDescriptor.Dispose(System.Boolean)
-M:CoreBluetooth.CBPeer.Copy(Foundation.NSZone)
M:CoreBluetooth.CBPeripheral.add_DidOpenL2CapChannel(System.EventHandler{CoreBluetooth.CBPeripheralOpenL2CapChannelEventArgs})
M:CoreBluetooth.CBPeripheral.add_DiscoveredCharacteristics(System.EventHandler{CoreBluetooth.CBServiceEventArgs})
M:CoreBluetooth.CBPeripheral.add_DiscoveredDescriptor(System.EventHandler{CoreBluetooth.CBCharacteristicEventArgs})
@@ -11340,7 +9975,6 @@ M:CoreBluetooth.CBPeripheral.add_UpdatedNotificationState(System.EventHandler{Co
M:CoreBluetooth.CBPeripheral.add_UpdatedValue(System.EventHandler{CoreBluetooth.CBDescriptorEventArgs})
M:CoreBluetooth.CBPeripheral.add_WroteCharacteristicValue(System.EventHandler{CoreBluetooth.CBCharacteristicEventArgs})
M:CoreBluetooth.CBPeripheral.add_WroteDescriptorValue(System.EventHandler{CoreBluetooth.CBDescriptorEventArgs})
-M:CoreBluetooth.CBPeripheral.Copy(Foundation.NSZone)
M:CoreBluetooth.CBPeripheral.Dispose(System.Boolean)
M:CoreBluetooth.CBPeripheral.remove_DidOpenL2CapChannel(System.EventHandler{CoreBluetooth.CBPeripheralOpenL2CapChannelEventArgs})
M:CoreBluetooth.CBPeripheral.remove_DiscoveredCharacteristics(System.EventHandler{CoreBluetooth.CBServiceEventArgs})
@@ -11385,7 +10019,6 @@ M:CoreBluetooth.CBPeripheralManager.remove_StateUpdated(System.EventHandler)
M:CoreBluetooth.CBPeripheralManager.remove_WillRestoreState(System.EventHandler{CoreBluetooth.CBWillRestoreEventArgs})
M:CoreBluetooth.CBPeripheralManager.remove_WriteRequestsReceived(System.EventHandler{CoreBluetooth.CBATTRequestsEventArgs})
M:CoreBluetooth.CBService.Dispose(System.Boolean)
-M:CoreBluetooth.CBUUID.Copy(Foundation.NSZone)
M:CoreBluetooth.CBUUID.op_Equality(CoreBluetooth.CBUUID,CoreBluetooth.CBUUID)
M:CoreBluetooth.CBUUID.op_Inequality(CoreBluetooth.CBUUID,CoreBluetooth.CBUUID)
M:CoreBluetooth.ICBCentralManagerDelegate.ConnectionEventDidOccur(CoreBluetooth.CBCentralManager,CoreBluetooth.CBConnectionEvent,CoreBluetooth.CBPeripheral)
@@ -11409,16 +10042,13 @@ M:CoreData.NSCoreDataCoreSpotlightDelegate.DeleteSpotlightIndexAsync
M:CoreData.NSCoreDataCoreSpotlightDelegate.StartSpotlightIndexing
M:CoreData.NSCoreDataCoreSpotlightDelegate.StopSpotlightIndexing
M:CoreData.NSCustomMigrationStage.#ctor(CoreData.NSManagedObjectModelReference,CoreData.NSManagedObjectModelReference)
-M:CoreData.NSEntityDescription.Copy(Foundation.NSZone)
M:CoreData.NSEntityDescription.InsertNewObject(System.String,CoreData.NSManagedObjectContext)
M:CoreData.NSFetchedResultsController.Dispose(System.Boolean)
M:CoreData.NSFetchedResultsController.GetSectionIndexTitle(System.String)
M:CoreData.NSFetchedResultsController.SectionFor(System.String,System.IntPtr)
M:CoreData.NSFetchedResultsControllerDelegate_Extensions.DidChangeSection(CoreData.INSFetchedResultsControllerDelegate,CoreData.NSFetchedResultsController,CoreData.INSFetchedResultsSectionInfo,System.UIntPtr,CoreData.NSFetchedResultsChangeType)
M:CoreData.NSFetchedResultsControllerDelegate.DidChangeSection(CoreData.NSFetchedResultsController,CoreData.INSFetchedResultsSectionInfo,System.UIntPtr,CoreData.NSFetchedResultsChangeType)
-M:CoreData.NSFetchIndexDescription.Copy(Foundation.NSZone)
M:CoreData.NSFetchIndexDescription.Dispose(System.Boolean)
-M:CoreData.NSFetchIndexElementDescription.Copy(Foundation.NSZone)
M:CoreData.NSFetchIndexElementDescription.Dispose(System.Boolean)
M:CoreData.NSIncrementalStore.GetIdentifierForNewStore(Foundation.NSUrl)
M:CoreData.NSLightweightMigrationStage.#ctor(System.String[])
@@ -11428,17 +10058,9 @@ M:CoreData.NSManagedObject.GetValue(System.String)
M:CoreData.NSManagedObject.SetPrimitiveValue(Foundation.NSObject,System.String)
M:CoreData.NSManagedObject.SetValue(Foundation.NSObject,System.String)
M:CoreData.NSManagedObjectContext.AssignObject(Foundation.NSObject,CoreData.NSPersistentStore)
-M:CoreData.NSManagedObjectContext.CommitEditing
-M:CoreData.NSManagedObjectContext.CommitEditing(Foundation.NSError@)
-M:CoreData.NSManagedObjectContext.CommitEditing(Foundation.NSObject,ObjCRuntime.Selector,System.IntPtr)
-M:CoreData.NSManagedObjectContext.DiscardEditing
-M:CoreData.NSManagedObjectContext.ObjectDidBeginEditing(AppKit.INSEditor)
-M:CoreData.NSManagedObjectContext.ObjectDidEndEditing(AppKit.INSEditor)
M:CoreData.NSManagedObjectContext.ObserveValue(System.String,Foundation.NSObject,Foundation.NSDictionary,System.IntPtr)
-M:CoreData.NSManagedObjectID.Copy(Foundation.NSZone)
M:CoreData.NSManagedObjectID.Dispose(System.Boolean)
M:CoreData.NSManagedObjectModel.ChecksumsForVersionedModel(Foundation.NSUrl,Foundation.NSError@)
-M:CoreData.NSManagedObjectModel.Copy(Foundation.NSZone)
M:CoreData.NSManagedObjectModel.GetFetchRequestFromTemplate(System.String,Foundation.NSDictionary)
M:CoreData.NSManagedObjectModel.GetFetchRequestTemplate(System.String)
M:CoreData.NSManagedObjectModel.GetMergedModel(Foundation.NSBundle[],Foundation.NSDictionary)
@@ -11474,7 +10096,6 @@ M:CoreData.NSPersistentCloudKitContainer.PurgeObjectsAndRecordsInZoneAsync(Cloud
M:CoreData.NSPersistentCloudKitContainer.ShareManagedObjects(CoreData.NSManagedObject[],CloudKit.CKShare,CoreData.NSPersistentCloudKitContainerShareManagedObjectsHandler)
M:CoreData.NSPersistentCloudKitContainer.ShareManagedObjectsAsync(CoreData.NSManagedObject[],CloudKit.CKShare)
M:CoreData.NSPersistentCloudKitContainerAcceptShareInvitationsResult.#ctor(Foundation.NSArray{CloudKit.CKShareMetadata})
-M:CoreData.NSPersistentCloudKitContainerEvent.Copy(Foundation.NSZone)
M:CoreData.NSPersistentCloudKitContainerEventRequest.FetchEvents(CoreData.NSFetchRequest)
M:CoreData.NSPersistentCloudKitContainerEventRequest.FetchEventsAfter(CoreData.NSPersistentCloudKitContainerEvent)
M:CoreData.NSPersistentCloudKitContainerEventRequest.FetchEventsAfter(Foundation.NSDate)
@@ -11485,11 +10106,8 @@ M:CoreData.NSPersistentCloudKitContainerPersistUpdatedShareResult.#ctor(CloudKit
M:CoreData.NSPersistentCloudKitContainerPurgeObjectsAndRecordsInZone.#ctor(CloudKit.CKRecordZoneID)
M:CoreData.NSPersistentCloudKitContainerShareManagedObjectsResult.#ctor(Foundation.NSSet{CoreData.NSManagedObjectID},CloudKit.CKShare,CloudKit.CKContainer)
M:CoreData.NSPersistentContainer.LoadPersistentStoresAsync
-M:CoreData.NSPersistentHistoryChange.Copy(Foundation.NSZone)
M:CoreData.NSPersistentHistoryChange.GetEntityDescription(CoreData.NSManagedObjectContext)
M:CoreData.NSPersistentHistoryChangeRequest.FetchHistory(CoreData.NSFetchRequest)
-M:CoreData.NSPersistentHistoryToken.Copy(Foundation.NSZone)
-M:CoreData.NSPersistentHistoryTransaction.Copy(Foundation.NSZone)
M:CoreData.NSPersistentHistoryTransaction.GetEntityDescription(CoreData.NSManagedObjectContext)
M:CoreData.NSPersistentStore.Dispose(System.Boolean)
M:CoreData.NSPersistentStoreCoordinator.#ctor(CoreData.NSManagedObjectModel)
@@ -11502,10 +10120,6 @@ M:CoreData.NSPersistentStoreCoordinator.GetCurrentPersistentHistoryToken(Foundat
M:CoreData.NSPersistentStoreCoordinator.GetManagedObjectId(System.IntPtr,System.UIntPtr)
M:CoreData.NSPersistentStoreCoordinator.GetManagedObjectId(System.String)
M:CoreData.NSPersistentStoreCoordinator.GetMetadata(CoreData.NSPersistentStore)
-M:CoreData.NSPersistentStoreDescription.Copy(Foundation.NSZone)
-M:CoreData.NSPersistentStoreRequest.Copy(Foundation.NSZone)
-M:CoreData.NSPropertyDescription.Copy(Foundation.NSZone)
-M:CoreData.NSQueryGenerationToken.Copy(Foundation.NSZone)
M:CoreData.NSStagedMigrationManager.#ctor(CoreData.NSMigrationStage[])
M:CoreFoundation.CFArray.ArrayFromHandle``1(ObjCRuntime.NativeHandle,System.Boolean)
M:CoreFoundation.CFArray.ArrayFromHandle``1(ObjCRuntime.NativeHandle)
@@ -12023,13 +10637,11 @@ M:CoreImage.CIAttributedTextImageGeneratorProtocol_Extensions.SetPadding(CoreIma
M:CoreImage.CIAutoAdjustmentFilterOptions.#ctor
M:CoreImage.CIAztecCodeDescriptor.#ctor(Foundation.NSData,System.Boolean,System.IntPtr,System.IntPtr)
M:CoreImage.CIAztecCodeDescriptor.CreateDescriptor(Foundation.NSData,System.Boolean,System.IntPtr,System.IntPtr)
-M:CoreImage.CIBarcodeDescriptor.Copy(Foundation.NSZone)
M:CoreImage.CIBlendKernel.Apply(CoreImage.CIImage,CoreImage.CIImage,CoreGraphics.CGColorSpace)
M:CoreImage.CIColor.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,CoreGraphics.CGColorSpace)
M:CoreImage.CIColor.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,CoreGraphics.CGColorSpace)
M:CoreImage.CIColor.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:CoreImage.CIColor.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:CoreImage.CIColor.Copy(Foundation.NSZone)
M:CoreImage.CIColor.FromRgb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,CoreGraphics.CGColorSpace)
M:CoreImage.CIColor.FromRgb(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:CoreImage.CIColor.FromRgba(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,CoreGraphics.CGColorSpace)
@@ -12042,33 +10654,10 @@ M:CoreImage.CIColorCubeWithColorSpaceProtocol_Extensions.GetExtrapolate(CoreImag
M:CoreImage.CIColorCubeWithColorSpaceProtocol_Extensions.SetExtrapolate(CoreImage.ICIColorCubeWithColorSpaceProtocol,System.Boolean)
M:CoreImage.CIContext_CIDepthBlurEffect.GetDepthBlurEffectFilter(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIImage,CoreImage.CIImage,CoreImage.CIImage,CoreImage.CIImage,CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
M:CoreImage.CIContext_CIDepthBlurEffect.GetDepthBlurEffectFilter(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIImage,CoreImage.CIImage,CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
-M:CoreImage.CIContext_CIDepthBlurEffect.GetDepthBlurEffectFilter(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIImage,CoreImage.CIImage,ImageIO.CGImagePropertyOrientation,Foundation.NSDictionary)
-M:CoreImage.CIContext_CIDepthBlurEffect.GetDepthBlurEffectFilter(CoreImage.CIContext,Foundation.NSData,Foundation.NSDictionary)
-M:CoreImage.CIContext_CIDepthBlurEffect.GetDepthBlurEffectFilter(CoreImage.CIContext,Foundation.NSUrl,Foundation.NSDictionary)
-M:CoreImage.CIContext_CIRenderDestination.PrepareRender(CoreImage.CIContext,CoreImage.CIImage,CoreGraphics.CGRect,CoreImage.CIRenderDestination,CoreGraphics.CGPoint,Foundation.NSError@)
-M:CoreImage.CIContext_CIRenderDestination.StartTaskToClear(CoreImage.CIContext,CoreImage.CIRenderDestination,Foundation.NSError@)
-M:CoreImage.CIContext_CIRenderDestination.StartTaskToRender(CoreImage.CIContext,CoreImage.CIImage,CoreGraphics.CGRect,CoreImage.CIRenderDestination,CoreGraphics.CGPoint,Foundation.NSError@)
-M:CoreImage.CIContext_CIRenderDestination.StartTaskToRender(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIRenderDestination,Foundation.NSError@)
M:CoreImage.CIContext_ImageRepresentation.GetHeif10Representation(CoreImage.CIContext,CoreImage.CIImage,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions,Foundation.NSError@)
M:CoreImage.CIContext_ImageRepresentation.GetHeif10Representation(CoreImage.CIContext,CoreImage.CIImage,CoreGraphics.CGColorSpace,Foundation.NSDictionary,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.GetHeifRepresentation(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIFormat,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions)
-M:CoreImage.CIContext_ImageRepresentation.GetHeifRepresentation(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIFormat,CoreGraphics.CGColorSpace,Foundation.NSDictionary)
-M:CoreImage.CIContext_ImageRepresentation.GetJpegRepresentation(CoreImage.CIContext,CoreImage.CIImage,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions)
-M:CoreImage.CIContext_ImageRepresentation.GetJpegRepresentation(CoreImage.CIContext,CoreImage.CIImage,CoreGraphics.CGColorSpace,Foundation.NSDictionary)
-M:CoreImage.CIContext_ImageRepresentation.GetPngRepresentation(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIFormat,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions)
-M:CoreImage.CIContext_ImageRepresentation.GetPngRepresentation(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIFormat,CoreGraphics.CGColorSpace,Foundation.NSDictionary)
-M:CoreImage.CIContext_ImageRepresentation.GetTiffRepresentation(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIFormat,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions)
-M:CoreImage.CIContext_ImageRepresentation.GetTiffRepresentation(CoreImage.CIContext,CoreImage.CIImage,CoreImage.CIFormat,CoreGraphics.CGColorSpace,Foundation.NSDictionary)
M:CoreImage.CIContext_ImageRepresentation.WriteHeif10Representation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions,Foundation.NSError@)
M:CoreImage.CIContext_ImageRepresentation.WriteHeif10Representation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreGraphics.CGColorSpace,Foundation.NSDictionary,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.WriteHeifRepresentation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreImage.CIFormat,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.WriteHeifRepresentation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreImage.CIFormat,CoreGraphics.CGColorSpace,Foundation.NSDictionary,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.WriteJpegRepresentation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.WriteJpegRepresentation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreGraphics.CGColorSpace,Foundation.NSDictionary,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.WritePngRepresentation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreImage.CIFormat,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.WritePngRepresentation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreImage.CIFormat,CoreGraphics.CGColorSpace,Foundation.NSDictionary,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.WriteTiffRepresentation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreImage.CIFormat,CoreGraphics.CGColorSpace,CoreImage.CIImageRepresentationOptions,Foundation.NSError@)
-M:CoreImage.CIContext_ImageRepresentation.WriteTiffRepresentation(CoreImage.CIContext,CoreImage.CIImage,Foundation.NSUrl,CoreImage.CIFormat,CoreGraphics.CGColorSpace,Foundation.NSDictionary,Foundation.NSError@)
M:CoreImage.CIContext.Create(Metal.IMTLCommandQueue,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:CoreImage.CIContext.Create(Metal.IMTLCommandQueue)
M:CoreImage.CIContext.GetOpenEXRRepresentation(CoreImage.CIImage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@)
@@ -12077,11 +10666,7 @@ M:CoreImage.CIContext.WriteOpenExrRepresentation(CoreImage.CIImage,Foundation.NS
M:CoreImage.CIDataMatrixCodeDescriptor.#ctor(Foundation.NSData,System.IntPtr,System.IntPtr,CoreImage.CIDataMatrixCodeEccVersion)
M:CoreImage.CIDataMatrixCodeDescriptor.CreateDescriptor(Foundation.NSData,System.IntPtr,System.IntPtr,CoreImage.CIDataMatrixCodeEccVersion)
M:CoreImage.CIDetectorOptions.#ctor
-M:CoreImage.CIFilter.Copy(Foundation.NSZone)
M:CoreImage.CIFilter.RegisterFilterName(System.String,CoreImage.ICIFilterConstructor,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:CoreImage.CIFilterGenerator.Copy(Foundation.NSZone)
-M:CoreImage.CIFilterGenerator.FilterWithName(System.String)
-M:CoreImage.CIFilterShape.Copy(Foundation.NSZone)
M:CoreImage.CIImage.#ctor(AVFoundation.AVSemanticSegmentationMatte,Foundation.NSDictionary)
M:CoreImage.CIImage.#ctor(AVFoundation.AVSemanticSegmentationMatte)
M:CoreImage.CIImage.#ctor(CoreImage.ICIImageProvider,System.UIntPtr,System.UIntPtr,CoreImage.CIFormat,CoreGraphics.CGColorSpace,CoreImage.CIImageProviderOptions)
@@ -12089,7 +10674,6 @@ M:CoreImage.CIImage.#ctor(Foundation.NSData,System.IntPtr,CoreGraphics.CGSize,Sy
M:CoreImage.CIImage.#ctor(ImageIO.CGImageSource,System.UIntPtr,CoreImage.CIImageInitializationOptionsWithMetadata)
M:CoreImage.CIImage.ConvertLabToWorkingSpace
M:CoreImage.CIImage.ConvertWorkingSpaceToLab
-M:CoreImage.CIImage.Copy(Foundation.NSZone)
M:CoreImage.CIImage.CreateByApplyingGainMap(CoreImage.CIImage,System.Single)
M:CoreImage.CIImage.CreateByApplyingGainMap(CoreImage.CIImage)
M:CoreImage.CIImage.Draw(CoreGraphics.CGPoint,CoreGraphics.CGRect,AppKit.NSCompositingOperation,System.Runtime.InteropServices.NFloat)
@@ -12115,14 +10699,12 @@ M:CoreImage.CIPhotoEffectProtocol_Extensions.SetExtrapolate(CoreImage.ICIPhotoEf
M:CoreImage.CIPlugIn.LoadNonExecutablePlugIn(Foundation.NSUrl)
M:CoreImage.CIQRCodeDescriptor.#ctor(Foundation.NSData,System.IntPtr,System.Byte,CoreImage.CIQRCodeErrorCorrectionLevel)
M:CoreImage.CIQRCodeDescriptor.CreateDescriptor(Foundation.NSData,System.IntPtr,System.Byte,CoreImage.CIQRCodeErrorCorrectionLevel)
-M:CoreImage.CIQRCodeFeature.Copy(Foundation.NSZone)
M:CoreImage.CIRawFilter.Create(CoreVideo.CVPixelBuffer,Foundation.NSDictionary)
M:CoreImage.CIRawFilter.Create(Foundation.NSData,System.String)
M:CoreImage.CIRawFilter.Create(Foundation.NSUrl)
M:CoreImage.CIRenderDestination.#ctor(System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,CoreImage.CIFormat)
M:CoreImage.CIRenderDestination.#ctor(System.UInt32,System.UInt32,System.UIntPtr,System.UIntPtr)
M:CoreImage.CIRenderDestination.#ctor(System.UIntPtr,System.UIntPtr,Metal.MTLPixelFormat,Metal.IMTLCommandBuffer,System.Func{Metal.IMTLTexture})
-M:CoreImage.CISampler.Copy(Foundation.NSZone)
M:CoreImage.CITextImageGeneratorProtocol_Extensions.GetPadding(CoreImage.ICITextImageGeneratorProtocol)
M:CoreImage.CITextImageGeneratorProtocol_Extensions.SetPadding(CoreImage.ICITextImageGeneratorProtocol,System.Single)
M:CoreImage.CIVector.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
@@ -12131,35 +10713,26 @@ M:CoreImage.CIVector.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.
M:CoreImage.CIVector.#ctor(System.Runtime.InteropServices.NFloat)
M:CoreImage.CIVector.#ctor(System.Runtime.InteropServices.NFloat[],System.IntPtr)
M:CoreImage.CIVector.#ctor(System.Runtime.InteropServices.NFloat[])
-M:CoreImage.CIVector.Copy(Foundation.NSZone)
M:CoreImage.CIVector.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:CoreImage.CIVector.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:CoreImage.CIVector.Create(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:CoreImage.CIVector.Create(System.Runtime.InteropServices.NFloat)
M:CoreImage.CIVector.FromValues(System.Runtime.InteropServices.NFloat[])
-M:CoreImage.ICIFilterConstructor.FilterWithName(System.String)
M:CoreImage.ICIFilterProtocol.GetCustomAttributes``1
M:CoreImage.ICIImageProvider.ProvideImageData(System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,Foundation.NSObject)
M:CoreLocation.CLBackgroundActivitySession.Create
M:CoreLocation.CLBackgroundActivitySession.Create(CoreFoundation.DispatchQueue,CoreLocation.CLBackgroundActivitySessionCreateHandler)
M:CoreLocation.CLBackgroundActivitySession.Invalidate
-M:CoreLocation.CLBeacon.Copy(Foundation.NSZone)
M:CoreLocation.CLBeaconIdentityCondition.#ctor(Foundation.NSUuid,System.UInt16,System.UInt16)
M:CoreLocation.CLBeaconIdentityCondition.#ctor(Foundation.NSUuid,System.UInt16)
M:CoreLocation.CLBeaconIdentityCondition.#ctor(Foundation.NSUuid)
-M:CoreLocation.CLBeaconIdentityCondition.Copy(Foundation.NSZone)
M:CoreLocation.CLBeaconIdentityConstraint.#ctor(Foundation.NSUuid,System.UInt16,System.UInt16)
M:CoreLocation.CLBeaconIdentityConstraint.#ctor(Foundation.NSUuid,System.UInt16)
M:CoreLocation.CLBeaconIdentityConstraint.#ctor(Foundation.NSUuid)
-M:CoreLocation.CLBeaconIdentityConstraint.Copy(Foundation.NSZone)
M:CoreLocation.CLBeaconRegion.#ctor(CoreLocation.CLBeaconIdentityConstraint,System.String)
M:CoreLocation.CLCircularGeographicCondition.#ctor(CoreLocation.CLLocationCoordinate2D,System.Double)
-M:CoreLocation.CLCondition.Copy(Foundation.NSZone)
-M:CoreLocation.CLFloor.Copy(Foundation.NSZone)
-M:CoreLocation.CLHeading.Copy(Foundation.NSZone)
M:CoreLocation.CLLocation.#ctor(CoreLocation.CLLocationCoordinate2D,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,Foundation.NSDate,CoreLocation.CLLocationSourceInformation)
M:CoreLocation.CLLocation.#ctor(CoreLocation.CLLocationCoordinate2D,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,Foundation.NSDate)
-M:CoreLocation.CLLocation.Copy(Foundation.NSZone)
M:CoreLocation.CLLocationManager.add_AuthorizationChanged(System.EventHandler{CoreLocation.CLAuthorizationChangedEventArgs})
M:CoreLocation.CLLocationManager.add_DeferredUpdatesFinished(System.EventHandler{Foundation.NSErrorEventArgs})
M:CoreLocation.CLLocationManager.add_DidChangeAuthorization(System.EventHandler)
@@ -12215,7 +10788,6 @@ M:CoreLocation.CLLocationManagerDelegate.DidFailRangingBeacons(CoreLocation.CLLo
M:CoreLocation.CLLocationManagerDelegate.DidRangeBeaconsSatisfyingConstraint(CoreLocation.CLLocationManager,CoreLocation.CLBeacon[],CoreLocation.CLBeaconIdentityConstraint)
M:CoreLocation.CLLocationPushServiceExtension_Extensions.ServiceExtensionWillTerminate(CoreLocation.ICLLocationPushServiceExtension)
M:CoreLocation.CLLocationSourceInformation.#ctor(System.Boolean,System.Boolean)
-M:CoreLocation.CLLocationSourceInformation.Copy(Foundation.NSZone)
M:CoreLocation.CLLocationUpdater.CreateLiveUpdates(CoreFoundation.DispatchQueue,System.Action{CoreLocation.CLUpdate})
M:CoreLocation.CLLocationUpdater.CreateLiveUpdates(CoreLocation.CLLiveUpdateConfiguration,CoreFoundation.DispatchQueue,System.Action{CoreLocation.CLUpdate})
M:CoreLocation.CLLocationUpdater.Invalidate
@@ -12229,14 +10801,11 @@ M:CoreLocation.CLMonitor.RequestMonitor(CoreLocation.CLMonitorConfiguration,Syst
M:CoreLocation.CLMonitor.RequestMonitorAsync(CoreLocation.CLMonitorConfiguration)
M:CoreLocation.CLMonitorConfiguration.Create(System.String,CoreFoundation.DispatchQueue,System.Action{CoreLocation.CLMonitor,CoreLocation.CLMonitoringEvent})
M:CoreLocation.CLPlacemark.#ctor(CoreLocation.CLPlacemark)
-M:CoreLocation.CLPlacemark.Copy(Foundation.NSZone)
-M:CoreLocation.CLRegion.Copy(Foundation.NSZone)
M:CoreLocation.CLServiceSession.CreateSession(CoreLocation.CLServiceSessionAuthorizationRequirement,CoreFoundation.DispatchQueue,CoreLocation.CLServiceSessionCreateHandler)
M:CoreLocation.CLServiceSession.CreateSession(CoreLocation.CLServiceSessionAuthorizationRequirement,System.String,CoreFoundation.DispatchQueue,CoreLocation.CLServiceSessionCreateHandler)
M:CoreLocation.CLServiceSession.CreateSession(CoreLocation.CLServiceSessionAuthorizationRequirement,System.String)
M:CoreLocation.CLServiceSession.CreateSession(CoreLocation.CLServiceSessionAuthorizationRequirement)
M:CoreLocation.CLServiceSession.Invalidate
-M:CoreLocation.CLVisit.Copy(Foundation.NSZone)
M:CoreLocation.ICLLocationManagerDelegate.DidChangeAuthorization(CoreLocation.CLLocationManager)
M:CoreLocation.ICLLocationManagerDelegate.DidFailRangingBeacons(CoreLocation.CLLocationManager,CoreLocation.CLBeaconIdentityConstraint,Foundation.NSError)
M:CoreLocation.ICLLocationManagerDelegate.DidRangeBeaconsSatisfyingConstraint(CoreLocation.CLLocationManager,CoreLocation.CLBeacon[],CoreLocation.CLBeaconIdentityConstraint)
@@ -12356,10 +10925,6 @@ M:CoreMidi.MidiUmpMutableFunctionBlock.ReconfigureWithFirstGroup(System.Byte,Cor
M:CoreMidi.MidiUmpMutableFunctionBlock.SetEnabled(System.Boolean,Foundation.NSError@)
M:CoreMidi.MidiUmpMutableFunctionBlock.SetName(System.String,Foundation.NSError@)
M:CoreML.IMLBatchProvider.GetFeatures(System.IntPtr)
-M:CoreML.IMLCustomLayer.EvaluateOnCpu(CoreML.MLMultiArray[],CoreML.MLMultiArray[],Foundation.NSError@)
-M:CoreML.IMLCustomLayer.GetOutputShapes(Foundation.NSArray[],Foundation.NSError@)
-M:CoreML.IMLCustomLayer.SetWeightData(Foundation.NSData[],Foundation.NSError@)
-M:CoreML.IMLFeatureProvider.GetFeatureValue(System.String)
M:CoreML.IMLWritable.Write(Foundation.NSUrl,Foundation.NSError@)
M:CoreML.MLArrayBatchProvider.GetFeatures(System.IntPtr)
M:CoreML.MLComputePlan.ComputeDeviceUsage(CoreML.MLModelStructureNeuralNetworkLayer)
@@ -12367,10 +10932,7 @@ M:CoreML.MLComputePlan.ComputeDeviceUsage(CoreML.MLModelStructureProgramOperatio
M:CoreML.MLComputePlan.GetEstimatedCost(CoreML.MLModelStructureProgramOperation)
M:CoreML.MLComputePlan.Load(CoreML.MLModelAsset,CoreML.MLModelConfiguration,System.Action{CoreML.MLComputePlan,Foundation.NSError})
M:CoreML.MLComputePlan.Load(Foundation.NSUrl,CoreML.MLModelConfiguration,System.Action{CoreML.MLComputePlan,Foundation.NSError})
-M:CoreML.MLDictionaryFeatureProvider.GetFeatureValue(System.String)
-M:CoreML.MLFeatureDescription.Copy(Foundation.NSZone)
M:CoreML.MLFeatureDescription.Dispose(System.Boolean)
-M:CoreML.MLFeatureValue.Copy(Foundation.NSZone)
M:CoreML.MLFeatureValue.Create(CoreGraphics.CGImage,CoreML.MLImageConstraint,CoreML.MLFeatureValueImageOption,Foundation.NSError@)
M:CoreML.MLFeatureValue.Create(CoreGraphics.CGImage,CoreML.MLImageConstraint,Foundation.NSDictionary,Foundation.NSError@)
M:CoreML.MLFeatureValue.Create(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,CoreML.MLImageConstraint,CoreML.MLFeatureValueImageOption,Foundation.NSError@)
@@ -12387,7 +10949,6 @@ M:CoreML.MLFeatureValue.Create(Foundation.NSUrl,ImageIO.CGImagePropertyOrientati
M:CoreML.MLFeatureValue.Create(Foundation.NSUrl,ImageIO.CGImagePropertyOrientation,System.IntPtr,System.IntPtr,CoreVideo.CVPixelFormatType,Foundation.NSDictionary,Foundation.NSError@)
M:CoreML.MLFeatureValue.Create(Foundation.NSUrl,System.IntPtr,System.IntPtr,CoreVideo.CVPixelFormatType,CoreML.MLFeatureValueImageOption,Foundation.NSError@)
M:CoreML.MLFeatureValue.Create(Foundation.NSUrl,System.IntPtr,System.IntPtr,CoreVideo.CVPixelFormatType,Foundation.NSDictionary,Foundation.NSError@)
-M:CoreML.MLKey.Copy(Foundation.NSZone)
M:CoreML.MLModel_MLState.CreateNewState(CoreML.MLModel)
M:CoreML.MLModel_MLState.GetPrediction(CoreML.MLModel,CoreML.IMLFeatureProvider,CoreML.MLState,CoreML.MLPredictionOptions,CoreML.MLStateGetPredictionCompletionHandler)
M:CoreML.MLModel_MLState.GetPrediction(CoreML.MLModel,CoreML.IMLFeatureProvider,CoreML.MLState,CoreML.MLPredictionOptions,Foundation.NSError@)
@@ -12418,7 +10979,6 @@ M:CoreML.MLModelCollection.EndAccessingModelCollectionAsync(System.String)
M:CoreML.MLModelCollectionEntry.IsEqual(CoreML.MLModelCollectionEntry)
M:CoreML.MLModelCompilationLoadResult.#ctor(CoreML.MLModel)
M:CoreML.MLModelCompilationResult.#ctor(Foundation.NSUrl)
-M:CoreML.MLModelConfiguration.Copy(Foundation.NSZone)
M:CoreML.MLModelConfiguration.Dispose(System.Boolean)
M:CoreML.MLModelStructure.Load(CoreML.MLModelAsset,System.Action{CoreML.MLModelStructure,Foundation.NSError})
M:CoreML.MLModelStructure.Load(Foundation.NSUrl,System.Action{CoreML.MLModelStructure,Foundation.NSError})
@@ -12438,9 +10998,7 @@ M:CoreML.MLMultiArray.SetObject(Foundation.NSNumber,System.IntPtr[])
M:CoreML.MLMultiArray.TransferToMultiArray(CoreML.MLMultiArray)
M:CoreML.MLMultiArrayDataPointer.#ctor(System.IntPtr,System.IntPtr)
M:CoreML.MLMultiArrayMutableDataPointer.#ctor(System.IntPtr,System.IntPtr,Foundation.NSArray{Foundation.NSNumber})
-M:CoreML.MLOptimizationHints.Copy(Foundation.NSZone)
M:CoreML.MLParameterKey.GetScopedParameter(System.String)
-M:CoreML.MLSequenceConstraint.Copy(Foundation.NSZone)
M:CoreML.MLState.GetMultiArrayForState(System.String,CoreML.MLStateGetMultiArrayForStateHandler)
M:CoreML.MLTask.Cancel
M:CoreML.MLTask.Resume
@@ -12452,14 +11010,12 @@ M:CoreML.MLUpdateTask.Create(Foundation.NSUrl,CoreML.IMLBatchProvider,System.Act
M:CoreML.MLUpdateTask.Resume(Foundation.NSDictionary{CoreML.MLParameterKey,Foundation.NSObject})
M:CoreMotion.CMAltimeter.StartAbsoluteAltitudeUpdates(Foundation.NSOperationQueue,System.Action{CoreMotion.CMAbsoluteAltitudeData,Foundation.NSError})
M:CoreMotion.CMAltimeter.StopAbsoluteAltitudeUpdates
-M:CoreMotion.CMAttitude.Copy(Foundation.NSZone)
M:CoreMotion.CMBatchedSensorManager.StartAccelerometerUpdates
M:CoreMotion.CMBatchedSensorManager.StartAccelerometerUpdates(System.Action{CoreMotion.CMAccelerometerData[],Foundation.NSError})
M:CoreMotion.CMBatchedSensorManager.StartDeviceMotionUpdates
M:CoreMotion.CMBatchedSensorManager.StartDeviceMotionUpdates(System.Action{CoreMotion.CMDeviceMotion[],Foundation.NSError})
M:CoreMotion.CMBatchedSensorManager.StopAccelerometerUpdates
M:CoreMotion.CMBatchedSensorManager.StopDeviceMotionUpdates
-M:CoreMotion.CMDyskineticSymptomResult.Copy(Foundation.NSZone)
M:CoreMotion.CMHeadphoneActivityManager.StartActivityUpdates(Foundation.NSOperationQueue,CoreMotion.CMHeadphoneActivityHandler)
M:CoreMotion.CMHeadphoneActivityManager.StartStatusUpdates(Foundation.NSOperationQueue,CoreMotion.CMHeadphoneActivityStatusHandler)
M:CoreMotion.CMHeadphoneActivityManager.StopActivityUpdates
@@ -12474,22 +11030,13 @@ M:CoreMotion.CMHeadphoneMotionManagerDelegate_Extensions.DidConnect(CoreMotion.I
M:CoreMotion.CMHeadphoneMotionManagerDelegate_Extensions.DidDisconnect(CoreMotion.ICMHeadphoneMotionManagerDelegate,CoreMotion.CMHeadphoneMotionManager)
M:CoreMotion.CMHeadphoneMotionManagerDelegate.DidConnect(CoreMotion.CMHeadphoneMotionManager)
M:CoreMotion.CMHeadphoneMotionManagerDelegate.DidDisconnect(CoreMotion.CMHeadphoneMotionManager)
-M:CoreMotion.CMLogItem.Copy(Foundation.NSZone)
-M:CoreMotion.CMMotionActivity.Copy(Foundation.NSZone)
-M:CoreMotion.CMOdometerData.Copy(Foundation.NSZone)
M:CoreMotion.CMPedometer.StartPedometerEventUpdatesAsync
-M:CoreMotion.CMPedometerData.Copy(Foundation.NSZone)
-M:CoreMotion.CMPedometerEvent.Copy(Foundation.NSZone)
M:CoreMotion.CMStepCounter.StartStepCountingUpdates(Foundation.NSOperationQueue,System.IntPtr,CoreMotion.CMStepUpdateHandler)
-M:CoreMotion.CMTremorResult.Copy(Foundation.NSZone)
-M:CoreMotion.CMWaterSubmersionEvent.Copy(Foundation.NSZone)
M:CoreMotion.CMWaterSubmersionManager.Dispose(System.Boolean)
M:CoreMotion.CMWaterSubmersionManagerDelegate.DidUpdateEvent(CoreMotion.CMWaterSubmersionManager,CoreMotion.CMWaterSubmersionEvent)
M:CoreMotion.CMWaterSubmersionManagerDelegate.DidUpdateMeasurement(CoreMotion.CMWaterSubmersionManager,CoreMotion.CMWaterSubmersionMeasurement)
M:CoreMotion.CMWaterSubmersionManagerDelegate.DidUpdateTemperature(CoreMotion.CMWaterSubmersionManager,CoreMotion.CMWaterTemperature)
M:CoreMotion.CMWaterSubmersionManagerDelegate.ErrorOccurred(CoreMotion.CMWaterSubmersionManager,Foundation.NSError)
-M:CoreMotion.CMWaterSubmersionMeasurement.Copy(Foundation.NSZone)
-M:CoreMotion.CMWaterTemperature.Copy(Foundation.NSZone)
M:CoreMotion.ICMHeadphoneMotionManagerDelegate.DidConnect(CoreMotion.CMHeadphoneMotionManager)
M:CoreMotion.ICMHeadphoneMotionManagerDelegate.DidDisconnect(CoreMotion.CMHeadphoneMotionManager)
M:CoreMotion.ICMWaterSubmersionManagerDelegate.DidUpdateEvent(CoreMotion.CMWaterSubmersionManager,CoreMotion.CMWaterSubmersionEvent)
@@ -12526,12 +11073,10 @@ M:CoreNFC.INFCIso15693Tag.LockBlock(CoreNFC.NFCIso15693RequestFlag,System.Byte,S
M:CoreNFC.INFCIso15693Tag.LockDfsi(CoreNFC.NFCIso15693RequestFlag,System.Action{Foundation.NSError})
M:CoreNFC.INFCIso15693Tag.LockDsfId(CoreNFC.NFCIso15693RequestFlag,System.Action{Foundation.NSError})
M:CoreNFC.INFCIso15693Tag.ReadBuffer(CoreNFC.NFCIso15693RequestFlag,CoreNFC.NFCIso15693TagResponseCallback)
-M:CoreNFC.INFCIso15693Tag.ReadMultipleBlocks(CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration,System.Action{Foundation.NSData,Foundation.NSError})
M:CoreNFC.INFCIso15693Tag.ReadMultipleBlocks(CoreNFC.NFCIso15693RequestFlag,Foundation.NSRange,System.Action{Foundation.NSData[],Foundation.NSError})
M:CoreNFC.INFCIso15693Tag.ReadSingleBlock(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action{Foundation.NSData,Foundation.NSError})
M:CoreNFC.INFCIso15693Tag.ResetToReady(CoreNFC.NFCIso15693RequestFlag,System.Action{Foundation.NSError})
M:CoreNFC.INFCIso15693Tag.Select(CoreNFC.NFCIso15693RequestFlag,System.Action{Foundation.NSError})
-M:CoreNFC.INFCIso15693Tag.SendCustomCommand(CoreNFC.NFCIso15693CustomCommandConfiguration,System.Action{Foundation.NSData,Foundation.NSError})
M:CoreNFC.INFCIso15693Tag.SendRequest(System.IntPtr,System.IntPtr,Foundation.NSData,CoreNFC.NFCIso15693TagResponseCallback)
M:CoreNFC.INFCIso15693Tag.StayQuiet(System.Action{Foundation.NSError})
M:CoreNFC.INFCIso15693Tag.WriteAfi(CoreNFC.NFCIso15693RequestFlag,System.Byte,System.Action{Foundation.NSError})
@@ -12547,8 +11092,6 @@ M:CoreNFC.INFCNdefTag.QueryNdefStatus(CoreNFC.NFCQueryNdefStatusCompletionHandle
M:CoreNFC.INFCNdefTag.ReadNdef(System.Action{CoreNFC.NFCNdefMessage,Foundation.NSError})
M:CoreNFC.INFCNdefTag.WriteLock(System.Action{Foundation.NSError})
M:CoreNFC.INFCNdefTag.WriteNdef(CoreNFC.NFCNdefMessage,System.Action{Foundation.NSError})
-M:CoreNFC.INFCReaderSessionContract.BeginSession
-M:CoreNFC.INFCReaderSessionContract.InvalidateSession
M:CoreNFC.INFCReaderSessionContract.InvalidateSession(System.String)
M:CoreNFC.INFCTagReaderSessionDelegate.DidBecomeActive(CoreNFC.NFCTagReaderSession)
M:CoreNFC.INFCTagReaderSessionDelegate.DidDetectTags(CoreNFC.NFCTagReaderSession,CoreNFC.INFCTag[])
@@ -12562,7 +11105,6 @@ M:CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration.#ctor(Foundation.NSRange,Sy
M:CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration.#ctor(Foundation.NSRange,System.UIntPtr)
M:CoreNFC.NFCIso7816Apdu.#ctor(Foundation.NSData)
M:CoreNFC.NFCIso7816Apdu.#ctor(System.Byte,System.Byte,System.Byte,System.Byte,Foundation.NSData,System.IntPtr)
-M:CoreNFC.NFCIso7816Apdu.Copy(Foundation.NSZone)
M:CoreNFC.NFCNdefMessage.#ctor(CoreNFC.NFCNdefPayload[])
M:CoreNFC.NFCNdefMessage.Create(Foundation.NSData)
M:CoreNFC.NFCNdefPayload.#ctor(CoreNFC.NFCTypeNameFormat,Foundation.NSData,Foundation.NSData,Foundation.NSData,System.UIntPtr)
@@ -12578,11 +11120,8 @@ M:CoreNFC.NFCNdefReaderSessionDelegate_Extensions.DidBecomeActive(CoreNFC.INFCNd
M:CoreNFC.NFCNdefReaderSessionDelegate_Extensions.DidDetectTags(CoreNFC.INFCNdefReaderSessionDelegate,CoreNFC.NFCNdefReaderSession,CoreNFC.INFCNdefTag[])
M:CoreNFC.NFCNdefReaderSessionDelegate.DidBecomeActive(CoreNFC.NFCNdefReaderSession)
M:CoreNFC.NFCNdefReaderSessionDelegate.DidDetectTags(CoreNFC.NFCNdefReaderSession,CoreNFC.INFCNdefTag[])
-M:CoreNFC.NFCReaderSession.BeginSession
M:CoreNFC.NFCReaderSession.Dispose(System.Boolean)
-M:CoreNFC.NFCReaderSession.InvalidateSession
M:CoreNFC.NFCReaderSession.InvalidateSession(System.String)
-M:CoreNFC.NFCTagCommandConfiguration.Copy(Foundation.NSZone)
M:CoreNFC.NFCTagReaderSession.#ctor(CoreNFC.NFCPollingOption,CoreNFC.INFCTagReaderSessionDelegate,CoreFoundation.DispatchQueue)
M:CoreNFC.NFCTagReaderSession.ConnectTo(CoreNFC.INFCTag,System.Action{Foundation.NSError})
M:CoreNFC.NFCTagReaderSession.ConnectToAsync(CoreNFC.INFCTag)
@@ -12593,14 +11132,11 @@ M:CoreNFC.NFCTagReaderSessionDelegate.DidBecomeActive(CoreNFC.NFCTagReaderSessio
M:CoreNFC.NFCTagReaderSessionDelegate.DidDetectTags(CoreNFC.NFCTagReaderSession,CoreNFC.INFCTag[])
M:CoreNFC.NFCTagReaderSessionDelegate.DidInvalidate(CoreNFC.NFCTagReaderSession,Foundation.NSError)
M:CoreNFC.NFCVasCommandConfiguration.#ctor(CoreNFC.NFCVasMode,System.String,Foundation.NSUrl)
-M:CoreNFC.NFCVasCommandConfiguration.Copy(Foundation.NSZone)
M:CoreNFC.NFCVasReaderSession.#ctor(CoreNFC.NFCVasCommandConfiguration[],CoreNFC.INFCVasReaderSessionDelegate,CoreFoundation.DispatchQueue)
M:CoreNFC.NFCVasReaderSessionDelegate_Extensions.DidBecomeActive(CoreNFC.INFCVasReaderSessionDelegate,CoreNFC.NFCVasReaderSession)
M:CoreNFC.NFCVasReaderSessionDelegate.DidBecomeActive(CoreNFC.NFCVasReaderSession)
M:CoreNFC.NFCVasReaderSessionDelegate.DidInvalidate(CoreNFC.NFCVasReaderSession,Foundation.NSError)
M:CoreNFC.NFCVasReaderSessionDelegate.DidReceiveVasResponses(CoreNFC.NFCVasReaderSession,CoreNFC.NFCVasResponse[])
-M:CoreNFC.NFCVasResponse.Copy(Foundation.NSZone)
-M:CoreNFC.NSUserActivity_CoreNFC.GetNdefMessagePayload(Foundation.NSUserActivity)
M:CoreServices.FSEventStream.#ctor(CoreServices.FSEventStreamCreateOptions)
M:CoreServices.FSEventStream.add_Events(CoreServices.FSEventStreamEventsHandler)
M:CoreServices.FSEventStream.Release
@@ -12616,17 +11152,10 @@ M:CoreServices.FSEventStreamCreateOptions.#ctor(CoreServices.FSEventStreamCreate
M:CoreServices.FSEventStreamCreateOptions.#ctor(CoreServices.FSEventStreamCreateFlags,System.TimeSpan,System.UInt64,System.String[])
M:CoreServices.FSEventStreamCreateOptions.CreateStream
M:CoreSpotlight.CoreSpotlightConstants.#ctor
-M:CoreSpotlight.CSCustomAttributeKey.Copy(Foundation.NSZone)
-M:CoreSpotlight.CSImportExtension.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:CoreSpotlight.CSImportExtension.Update(CoreSpotlight.CSSearchableItemAttributeSet,Foundation.NSUrl,Foundation.NSError@)
-M:CoreSpotlight.CSIndexExtensionRequestHandler.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:CoreSpotlight.CSIndexExtensionRequestHandler.DidUpdate(CoreSpotlight.CSSearchableItem[])
M:CoreSpotlight.CSIndexExtensionRequestHandler.GetSearchableItems(System.String[],CoreSpotlight.CSSearchableIndexDelegateGetSearchableItemsHandler)
-M:CoreSpotlight.CSPerson.Copy(Foundation.NSZone)
-M:CoreSpotlight.CSSearchableIndex_CSOptionalBatchingExtension.BeginIndexBatch(CoreSpotlight.CSSearchableIndex)
M:CoreSpotlight.CSSearchableIndex_CSOptionalBatchingExtension.EndIndexBatch(CoreSpotlight.CSSearchableIndex,Foundation.NSData,Foundation.NSData,CoreSpotlight.CSSearchableIndexEndIndexHandler)
-M:CoreSpotlight.CSSearchableIndex_CSOptionalBatchingExtension.EndIndexBatch(CoreSpotlight.CSSearchableIndex,Foundation.NSData,System.Action{Foundation.NSError})
-M:CoreSpotlight.CSSearchableIndex_CSOptionalBatchingExtension.FetchLastClientState(CoreSpotlight.CSSearchableIndex,CoreSpotlight.CSSearchableIndexFetchHandler)
M:CoreSpotlight.CSSearchableIndex.#ctor(System.String,Foundation.NSFileProtectionType,System.String,System.IntPtr)
M:CoreSpotlight.CSSearchableIndex.DeleteAllAsync
M:CoreSpotlight.CSSearchableIndex.Dispose(System.Boolean)
@@ -12640,15 +11169,11 @@ M:CoreSpotlight.CSSearchableIndexDelegate_Extensions.GetSearchableItems(CoreSpot
M:CoreSpotlight.CSSearchableIndexDelegate.DidUpdate(CoreSpotlight.CSSearchableItem[])
M:CoreSpotlight.CSSearchableIndexDelegate.GetSearchableItems(System.String[],CoreSpotlight.CSSearchableIndexDelegateGetSearchableItemsHandler)
M:CoreSpotlight.CSSearchableItem.CompareByRank(CoreSpotlight.CSSearchableItem)
-M:CoreSpotlight.CSSearchableItem.Copy(Foundation.NSZone)
M:CoreSpotlight.CSSearchableItemAttributeSet.#ctor(UniformTypeIdentifiers.UTType)
-M:CoreSpotlight.CSSearchableItemAttributeSet.Copy(Foundation.NSZone)
M:CoreSpotlight.CSSearchableItemAttributeSet.MoveFrom(CoreSpotlight.CSSearchableItemAttributeSet)
M:CoreSpotlight.CSSearchQuery.#ctor(System.String,CoreSpotlight.CSSearchQueryContext)
-M:CoreSpotlight.CSSearchQueryContext.Copy(Foundation.NSZone)
M:CoreSpotlight.CSSuggestion.Compare(CoreSpotlight.CSSuggestion)
M:CoreSpotlight.CSSuggestion.CompareByRank(CoreSpotlight.CSSuggestion)
-M:CoreSpotlight.CSSuggestion.Copy(Foundation.NSZone)
M:CoreSpotlight.CSUserQuery.#ctor(System.String,CoreSpotlight.CSUserQueryContext)
M:CoreSpotlight.CSUserQuery.Cancel
M:CoreSpotlight.CSUserQuery.Prepare
@@ -12665,7 +11190,6 @@ M:CoreTelephony.CTSubscriber.RefreshCarrierToken
M:CoreTelephony.CTTelephonyNetworkInfo.Dispose(System.Boolean)
M:CoreTelephony.CTTelephonyNetworkInfoDelegate_Extensions.DataServiceIdentifierDidChange(CoreTelephony.ICTTelephonyNetworkInfoDelegate,System.String)
M:CoreTelephony.CTTelephonyNetworkInfoDelegate.DataServiceIdentifierDidChange(System.String)
-M:CoreTelephony.ICTSubscriberDelegate.SubscriberTokenRefreshed(CoreTelephony.CTSubscriber)
M:CoreTelephony.ICTTelephonyNetworkInfoDelegate.DataServiceIdentifierDidChange(System.String)
M:CoreText.CTFont.#ctor(CoreGraphics.CGFont,System.Runtime.InteropServices.NFloat,CoreGraphics.CGAffineTransform,CoreText.CTFontDescriptor)
M:CoreText.CTFont.#ctor(CoreGraphics.CGFont,System.Runtime.InteropServices.NFloat,CoreGraphics.CGAffineTransform)
@@ -12753,11 +11277,8 @@ M:CoreVideo.CVPixelBufferPool.Retain
M:CoreVideo.CVPixelFormatComponentRangeKeys.#ctor
M:CoreVideo.CVPixelFormatKeys.#ctor
M:CoreVideo.CVPixelFormatTypeExtensions.IsCompressedPixelFormatAvailable(CoreVideo.CVPixelFormatType)
-M:CoreWlan.CWChannel.Copy(Foundation.NSZone)
M:CoreWlan.CWConfiguration.#ctor(CoreWlan.CWConfiguration)
-M:CoreWlan.CWConfiguration.Copy(Foundation.NSZone)
M:CoreWlan.CWConfiguration.Create(CoreWlan.CWConfiguration)
-M:CoreWlan.CWConfiguration.MutableCopy(Foundation.NSZone)
M:CoreWlan.CWInterface.#ctor(System.String)
M:CoreWlan.CWInterface.SetWEPKey(Foundation.NSData,CoreWlan.CWCipherKeyFlags,System.IntPtr,Foundation.NSError@)
M:CoreWlan.CWInterface.StartIbssModeWithSsid(Foundation.NSData,CoreWlan.CWIbssModeSecurity,System.UIntPtr,System.String,Foundation.NSError@)
@@ -12787,11 +11308,6 @@ M:CoreWlan.CWKeychain.TrySetWiFiPassword(CoreWlan.CWKeychainDomain,Foundation.NS
M:CoreWlan.CWKeychain.TrySetWiFiPassword(CoreWlan.CWKeychainDomain,Foundation.NSData,Foundation.NSString)
M:CoreWlan.CWKeychain.TrySetWiFiPassword(CoreWlan.CWKeychainDomain,Foundation.NSData,System.String,System.Int32@)
M:CoreWlan.CWKeychain.TrySetWiFiPassword(CoreWlan.CWKeychainDomain,Foundation.NSData,System.String)
-M:CoreWlan.CWMutableNetworkProfile.Copy(Foundation.NSZone)
-M:CoreWlan.CWMutableNetworkProfile.MutableCopy(Foundation.NSZone)
-M:CoreWlan.CWNetwork.Copy(Foundation.NSZone)
-M:CoreWlan.CWNetworkProfile.Copy(Foundation.NSZone)
-M:CoreWlan.CWNetworkProfile.MutableCopy(Foundation.NSZone)
M:CoreWlan.CWWiFiClient.Dispose(System.Boolean)
M:CryptoTokenKit.ITKSmartCardTokenDriverDelegate.CreateToken(CryptoTokenKit.TKSmartCardTokenDriver,CryptoTokenKit.TKSmartCard,Foundation.NSData,Foundation.NSError@)
M:CryptoTokenKit.ITKSmartCardUserInteractionDelegate.CharacterEntered(CryptoTokenKit.TKSmartCardUserInteraction)
@@ -12842,16 +11358,9 @@ M:DeviceCheck.DCAppAttestService.AttestKeyAsync(System.String,Foundation.NSData)
M:DeviceCheck.DCAppAttestService.GenerateAssertionAsync(System.String,Foundation.NSData)
M:DeviceCheck.DCAppAttestService.GenerateKeyAsync
M:DeviceCheck.DCDevice.GenerateTokenAsync
-M:EventKit.EKAlarm.Copy(Foundation.NSZone)
M:EventKit.EKEventStore.RequestFullAccessToEventsAsync
M:EventKit.EKEventStore.RequestFullAccessToRemindersAsync
M:EventKit.EKEventStore.RequestWriteOnlyAccessToEventsAsync
-M:EventKit.EKParticipant.Copy(Foundation.NSZone)
-M:EventKit.EKRecurrenceDayOfWeek.Copy(Foundation.NSZone)
-M:EventKit.EKRecurrenceEnd.Copy(Foundation.NSZone)
-M:EventKit.EKRecurrenceRule.Copy(Foundation.NSZone)
-M:EventKit.EKStructuredLocation.Copy(Foundation.NSZone)
-M:EventKit.EKVirtualConferenceProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:EventKit.EKVirtualConferenceProvider.FetchAvailableRoomTypesAsync
M:EventKit.EKVirtualConferenceProvider.FetchVirtualConferenceAsync(System.String)
M:EventKitUI.EKCalendarChooser.add_Cancelled(System.EventHandler)
@@ -12892,25 +11401,13 @@ M:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser.remove_DidFindUnconfigure
M:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser.remove_DidFinishConfiguringAccessory(System.EventHandler{ExternalAccessory.EAWiFiUnconfiguredAccessoryDidFinishEventArgs})
M:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser.remove_DidRemoveUnconfiguredAccessories(System.EventHandler{ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserEventArgs})
M:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser.remove_DidUpdateState(System.EventHandler{ExternalAccessory.EAWiFiUnconfiguredAccessoryEventArgs})
-M:FileProvider.INSFileProviderChangeObserver.DidDeleteItems(System.String[])
-M:FileProvider.INSFileProviderChangeObserver.DidUpdateItems(FileProvider.INSFileProviderItem[])
-M:FileProvider.INSFileProviderChangeObserver.FinishEnumerating(Foundation.NSError)
-M:FileProvider.INSFileProviderChangeObserver.FinishEnumeratingChanges(Foundation.NSData,System.Boolean)
M:FileProvider.INSFileProviderChangeObserver.GetSuggestedBatchSize
M:FileProvider.INSFileProviderCustomAction.PerformAction(System.String,System.String[],System.Action{Foundation.NSError})
M:FileProvider.INSFileProviderEnumerating.GetEnumerator(System.String,FileProvider.NSFileProviderRequest,Foundation.NSError@)
-M:FileProvider.INSFileProviderEnumerationObserver.DidEnumerateItems(FileProvider.INSFileProviderItem[])
-M:FileProvider.INSFileProviderEnumerationObserver.FinishEnumerating(Foundation.NSData)
-M:FileProvider.INSFileProviderEnumerationObserver.FinishEnumerating(Foundation.NSError)
M:FileProvider.INSFileProviderEnumerationObserver.GetSuggestedPageSize
-M:FileProvider.INSFileProviderEnumerator.EnumerateItems(FileProvider.INSFileProviderEnumerationObserver,Foundation.NSData)
-M:FileProvider.INSFileProviderEnumerator.Invalidate
M:FileProvider.INSFileProviderExternalVolumeHandling.ShouldConnectExternalDomain(FileProvider.NSFileProviderExternalVolumeHandlingShouldConnectExternalDomainCallback)
M:FileProvider.INSFileProviderIncrementalContentFetching.FetchContents(System.String,FileProvider.NSFileProviderItemVersion,Foundation.NSUrl,FileProvider.NSFileProviderItemVersion,FileProvider.NSFileProviderRequest,FileProvider.NSFileProviderFetchContentsCompletionHandler)
M:FileProvider.INSFileProviderItem.GetContentType
-M:FileProvider.INSFileProviderItem.GetFavoriteRank
-M:FileProvider.INSFileProviderItem.GetVersionIdentifier
-M:FileProvider.INSFileProviderItem.IsTrashed
M:FileProvider.INSFileProviderKnownFolderSupporting.GetKnownFolderLocations(FileProvider.NSFileProviderKnownFolders,FileProvider.NSFileProviderKnownFolderLocationCallback)
M:FileProvider.INSFileProviderPartialContentFetching.FetchPartialContents(System.String,FileProvider.NSFileProviderItemVersion,FileProvider.NSFileProviderRequest,Foundation.NSRange,System.UIntPtr,FileProvider.NSFileProviderFetchContentsOptions,FileProvider.NSFileProviderPartialContentFetchingCompletionHandler)
M:FileProvider.INSFileProviderReplicatedExtension.CreateItem(FileProvider.INSFileProviderItem,FileProvider.NSFileProviderItemFields,Foundation.NSUrl,FileProvider.NSFileProviderCreateItemOptions,FileProvider.NSFileProviderRequest,FileProvider.NSFileProviderCreateOrModifyItemCompletionHandler)
@@ -12922,7 +11419,6 @@ M:FileProvider.INSFileProviderReplicatedExtension.Invalidate
M:FileProvider.INSFileProviderReplicatedExtension.MaterializedItemsDidChange(System.Action)
M:FileProvider.INSFileProviderReplicatedExtension.ModifyItem(FileProvider.INSFileProviderItem,FileProvider.NSFileProviderItemVersion,FileProvider.NSFileProviderItemFields,Foundation.NSUrl,FileProvider.NSFileProviderModifyItemOptions,FileProvider.NSFileProviderRequest,FileProvider.NSFileProviderCreateOrModifyItemCompletionHandler)
M:FileProvider.INSFileProviderReplicatedExtension.PendingItemsDidChange(System.Action)
-M:FileProvider.INSFileProviderServiceSource.MakeListenerEndpoint(Foundation.NSError@)
M:FileProvider.INSFileProviderServicing.GetSupportedServiceSources(System.String,System.Action{FileProvider.INSFileProviderServiceSource[],Foundation.NSError})
M:FileProvider.INSFileProviderTestingOperation.GetAsChildrenEnumeration
M:FileProvider.INSFileProviderTestingOperation.GetAsCollisionResolution
@@ -12980,14 +11476,10 @@ M:FileProvider.NSFileProviderGetIdentifierResult.#ctor(Foundation.NSString,Found
M:FileProvider.NSFileProviderItem_Extensions.GetContentPolicy(FileProvider.INSFileProviderItem)
M:FileProvider.NSFileProviderItem_Extensions.GetContentType(FileProvider.INSFileProviderItem)
M:FileProvider.NSFileProviderItem_Extensions.GetExtendedAttributes(FileProvider.INSFileProviderItem)
-M:FileProvider.NSFileProviderItem_Extensions.GetFavoriteRank(FileProvider.INSFileProviderItem)
M:FileProvider.NSFileProviderItem_Extensions.GetFileSystemFlags(FileProvider.INSFileProviderItem)
M:FileProvider.NSFileProviderItem_Extensions.GetItemVersion(FileProvider.INSFileProviderItem)
M:FileProvider.NSFileProviderItem_Extensions.GetSymlinkTargetPath(FileProvider.INSFileProviderItem)
M:FileProvider.NSFileProviderItem_Extensions.GetTypeAndCreator(FileProvider.INSFileProviderItem)
-M:FileProvider.NSFileProviderItem_Extensions.GetTypeIdentifier(FileProvider.INSFileProviderItem)
-M:FileProvider.NSFileProviderItem_Extensions.GetVersionIdentifier(FileProvider.INSFileProviderItem)
-M:FileProvider.NSFileProviderItem_Extensions.IsTrashed(FileProvider.INSFileProviderItem)
M:FileProvider.NSFileProviderItemVersion.#ctor(Foundation.NSData,Foundation.NSData)
M:FileProvider.NSFileProviderKnownFolderLocation.#ctor(System.String,System.String)
M:FileProvider.NSFileProviderKnownFolderLocation.#ctor(System.String)
@@ -13040,9 +11532,7 @@ M:FileProvider.NSFileProviderReplicatedExtension_Extensions.PendingItemsDidChang
M:FileProvider.NSFileProviderServiceSource_Extensions.GetRestricted(FileProvider.INSFileProviderServiceSource)
M:FileProvider.NSFileProviderTypeAndCreator.GetCreatorAsFourCC
M:FileProvider.NSFileProviderTypeAndCreator.GetTypeAsFourCC
-M:FinderSync.FIFinderSync.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:FinderSync.FIFinderSync.GetValuesAsync(System.String[],Foundation.NSUrl)
-M:FinderSync.FIFinderSyncController.Copy(Foundation.NSZone)
M:FinderSync.FIFinderSyncProtocol_Extensions.GetToolbarItemImage(FinderSync.IFIFinderSyncProtocol)
M:FinderSync.FIFinderSyncProtocol_Extensions.GetToolbarItemName(FinderSync.IFIFinderSyncProtocol)
M:FinderSync.FIFinderSyncProtocol_Extensions.GetToolbarItemToolTip(FinderSync.IFIFinderSyncProtocol)
@@ -13057,67 +11547,24 @@ M:Foundation.DictionaryContainer.SetNumberValue(Foundation.NSString,System.Nulla
M:Foundation.DictionaryContainer.SetNumberValue(Foundation.NSString,System.Nullable{System.UIntPtr})
M:Foundation.DictionaryContainer.SetUIEdgeInsets(Foundation.NSString,System.Nullable{UIKit.UIEdgeInsets})
M:Foundation.INSCoding.CreateInstance``1(Foundation.NSCoder)
-M:Foundation.INSConnectionDelegate.AllowNewConnection(Foundation.NSConnection,Foundation.NSConnection)
-M:Foundation.INSConnectionDelegate.AuthenticateComponents(Foundation.NSArray,Foundation.NSData)
-M:Foundation.INSConnectionDelegate.CreateConversation(Foundation.NSConnection)
-M:Foundation.INSConnectionDelegate.GetAuthenticationData(Foundation.NSArray)
-M:Foundation.INSConnectionDelegate.HandleRequest(Foundation.NSConnection,Foundation.NSDistantObjectRequest)
-M:Foundation.INSConnectionDelegate.ShouldMakeNewConnection(Foundation.NSConnection,Foundation.NSConnection)
-M:Foundation.INSCopying.Copy(Foundation.NSZone)
-M:Foundation.INSDiscardableContent.BeginContentAccess
-M:Foundation.INSDiscardableContent.DiscardContentIfPossible
-M:Foundation.INSDiscardableContent.EndContentAccess
-M:Foundation.INSExtensionRequestHandling.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:Foundation.INSFilePresenter.AccommodatePresentedItemEviction(System.Action{Foundation.NSError})
M:Foundation.INSItemProviderReading.GetObject``1(Foundation.NSData,System.String,Foundation.NSError@)
M:Foundation.INSItemProviderReading.GetReadableTypeIdentifiers``1
M:Foundation.INSItemProviderWriting.GetWritableTypeIdentifiers``1
-M:Foundation.INSItemProviderWriting.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:Foundation.INSItemProviderWriting.LoadDataAsync(System.String,Foundation.NSProgress@)
M:Foundation.INSItemProviderWriting.LoadDataAsync(System.String)
-M:Foundation.INSLocking.Lock
-M:Foundation.INSLocking.Unlock
-M:Foundation.INSMutableCopying.MutableCopy(Foundation.NSZone)
-M:Foundation.INSObjectProtocol.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject,Foundation.NSObject)
-M:Foundation.INSObjectProtocol.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject)
-M:Foundation.INSObjectProtocol.PerformSelector(ObjCRuntime.Selector)
-M:Foundation.INSPortDelegate.MessageReceived(Foundation.NSPortMessage)
M:Foundation.INSUrlAuthenticationChallengeSender.CancelAuthenticationChallenge(Foundation.NSUrlAuthenticationChallenge)
M:Foundation.INSUrlAuthenticationChallengeSender.ContinueWithoutCredential(Foundation.NSUrlAuthenticationChallenge)
M:Foundation.INSUrlAuthenticationChallengeSender.PerformDefaultHandling(Foundation.NSUrlAuthenticationChallenge)
M:Foundation.INSUrlAuthenticationChallengeSender.RejectProtectionSpaceAndContinue(Foundation.NSUrlAuthenticationChallenge)
M:Foundation.INSUrlAuthenticationChallengeSender.UseCredential(Foundation.NSUrlCredential,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.INSUrlConnectionDataDelegate.SentBodyData(Foundation.NSUrlConnection,System.IntPtr,System.IntPtr,System.IntPtr)
-M:Foundation.INSUrlConnectionDownloadDelegate.FinishedDownloading(Foundation.NSUrlConnection,Foundation.NSUrl)
-M:Foundation.INSUrlDownloadDelegate.CanceledAuthenticationChallenge(Foundation.NSUrlDownload,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.INSUrlDownloadDelegate.CreatedDestination(Foundation.NSUrlDownload,System.String)
-M:Foundation.INSUrlDownloadDelegate.DecideDestination(Foundation.NSUrlDownload,System.String)
-M:Foundation.INSUrlDownloadDelegate.DecodeSourceData(Foundation.NSUrlDownload,System.String)
-M:Foundation.INSUrlDownloadDelegate.DownloadBegan(Foundation.NSUrlDownload)
-M:Foundation.INSUrlDownloadDelegate.FailedWithError(Foundation.NSUrlDownload,Foundation.NSError)
-M:Foundation.INSUrlDownloadDelegate.Finished(Foundation.NSUrlDownload)
-M:Foundation.INSUrlDownloadDelegate.ReceivedAuthenticationChallenge(Foundation.NSUrlDownload,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.INSUrlDownloadDelegate.ReceivedData(Foundation.NSUrlDownload,System.UIntPtr)
-M:Foundation.INSUrlDownloadDelegate.ReceivedResponse(Foundation.NSUrlDownload,Foundation.NSUrlResponse)
-M:Foundation.INSUrlDownloadDelegate.Resume(Foundation.NSUrlDownload,Foundation.NSUrlResponse,System.Int64)
-M:Foundation.INSUrlDownloadDelegate.WillSendRequest(Foundation.NSUrlDownload,Foundation.NSUrlRequest,Foundation.NSUrlResponse)
-M:Foundation.INSUrlProtocolClient.CachedResponseIsValid(Foundation.NSUrlProtocol,Foundation.NSCachedUrlResponse)
-M:Foundation.INSUrlProtocolClient.CancelledAuthenticationChallenge(Foundation.NSUrlProtocol,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.INSUrlProtocolClient.DataLoaded(Foundation.NSUrlProtocol,Foundation.NSData)
-M:Foundation.INSUrlProtocolClient.FailedWithError(Foundation.NSUrlProtocol,Foundation.NSError)
-M:Foundation.INSUrlProtocolClient.FinishedLoading(Foundation.NSUrlProtocol)
-M:Foundation.INSUrlProtocolClient.ReceivedAuthenticationChallenge(Foundation.NSUrlProtocol,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.INSUrlProtocolClient.ReceivedResponse(Foundation.NSUrlProtocol,Foundation.NSUrlResponse,Foundation.NSUrlCacheStoragePolicy)
-M:Foundation.INSUrlProtocolClient.Redirected(Foundation.NSUrlProtocol,Foundation.NSUrlRequest,Foundation.NSUrlResponse)
-M:Foundation.INSUrlSessionDownloadDelegate.DidFinishDownloading(Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,Foundation.NSUrl)
M:Foundation.INSUrlSessionTaskDelegate.DidCreateTask(Foundation.NSUrlSession,Foundation.NSUrlSessionTask)
M:Foundation.INSUrlSessionTaskDelegate.DidReceiveInformationalResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse)
M:Foundation.INSUrlSessionTaskDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action{Foundation.NSInputStream})
M:Foundation.INSUrlSessionWebSocketDelegate.DidClose(Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,Foundation.NSUrlSessionWebSocketCloseCode,Foundation.NSData)
M:Foundation.INSUrlSessionWebSocketDelegate.DidOpen(Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,System.String)
-M:Foundation.INSUserNotificationCenterDelegate.DidActivateNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
-M:Foundation.INSUserNotificationCenterDelegate.DidDeliverNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
-M:Foundation.INSUserNotificationCenterDelegate.ShouldPresentNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification)
M:Foundation.INSXpcListenerDelegate.ShouldAcceptConnection(Foundation.NSXpcListener,Foundation.NSXpcConnection)
M:Foundation.LoadInPlaceResult.#ctor(Foundation.NSUrl,System.Boolean)
M:Foundation.NSArray.ArrayFromHandle``1(ObjCRuntime.NativeHandle,System.Converter{ObjCRuntime.NativeHandle,``0},System.Boolean)
@@ -13159,7 +11606,6 @@ M:Foundation.NSAttributedString.GetUIKitAttributes(System.IntPtr,Foundation.NSRa
M:Foundation.NSAttributedString.GetUIKitAttributes(System.IntPtr,Foundation.NSRange@)
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.LoadDataAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSAttributedString.LoadDataAsync(System.String)
M:Foundation.NSAttributedString.LoadFromHtml(Foundation.NSData,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSAttributedStringCompletionHandler)
@@ -13186,12 +11632,6 @@ M:Foundation.NSCoder.DecodeBytes(System.String,System.UIntPtr)
M:Foundation.NSCoder.DecodeBytes(System.UIntPtr)
M:Foundation.NSCoder.TryDecode(System.String,System.IntPtr@)
M:Foundation.NSConnection.Dispose(System.Boolean)
-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.NSData.op_Implicit(System.String)~Foundation.NSData
M:Foundation.NSDataDetector.#ctor(Foundation.NSTextCheckingType,Foundation.NSError@)
M:Foundation.NSDataDetector.Create(Foundation.NSTextCheckingType,Foundation.NSError@)
@@ -13227,9 +11667,6 @@ M:Foundation.NSError.FromDomain(Foundation.NSString,System.IntPtr)
M:Foundation.NSError.GetFileProviderErrorForRejectedDeletion(FileProvider.INSFileProviderItem)
M:Foundation.NSExceptionError.#ctor(System.Exception)
M:Foundation.NSFileAttributes.#ctor
-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.Dispose(System.Boolean)
M:Foundation.NSFileManager.GetHomeDirectory(System.String)
M:Foundation.NSFilePresenter_Extensions.AccommodatePresentedItemEviction(Foundation.INSFilePresenter,System.Action{Foundation.NSError})
@@ -13279,10 +11716,6 @@ M:Foundation.NSKeyedUnarchiver.remove_Finishing(System.EventHandler)
M:Foundation.NSKeyedUnarchiver.remove_ReplacingObject(System.EventHandler{Foundation.NSArchiveReplaceEventArgs})
M:Foundation.NSKeyValueSharedObserverRegistration_NSObject.SetSharedObservers(Foundation.NSObject,Foundation.NSKeyValueSharedObserversSnapshot)
M:Foundation.NSKeyValueSharedObservers.#ctor(System.Type)
-M:Foundation.NSKeyValueSorting_NSMutableOrderedSet.SortUsingDescriptors(Foundation.NSMutableOrderedSet,Foundation.NSSortDescriptor[])
-M:Foundation.NSKeyValueSorting_NSOrderedSet.GetSortedArray(Foundation.NSOrderedSet,Foundation.NSSortDescriptor[])
-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.NSLoadFromHtmlResult.#ctor(Foundation.NSAttributedString,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:Foundation.NSMachPort.Dispose(System.Boolean)
M:Foundation.NSMetadataQuery.Dispose(System.Boolean)
@@ -13386,9 +11819,6 @@ M:Foundation.NSObject.GetDefaultPlaceholder(Foundation.NSObject,Foundation.NSStr
M:Foundation.NSObject.GetMethodForSelector(ObjCRuntime.Selector)
M:Foundation.NSObject.MutableCopy
M:Foundation.NSObject.ObjectDidEndEditing(Foundation.NSObject)
-M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject,Foundation.NSObject)
-M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector,Foundation.NSObject)
-M:Foundation.NSObject.PerformSelector(ObjCRuntime.Selector)
M:Foundation.NSObject.PrepareForInterfaceBuilder
M:Foundation.NSObject.RemoveObserver(Foundation.NSObject,System.String,System.IntPtr)
M:Foundation.NSObject.RemoveObserver(Foundation.NSObject,System.String)
@@ -13421,15 +11851,6 @@ M:Foundation.NSOrderedSet`1.op_Subtraction(Foundation.NSOrderedSet{`0},Foundatio
M:Foundation.NSOutputStream.Write(System.Byte[],System.Int32,System.UIntPtr)
M:Foundation.NSOutputStream.Write(System.Byte[],System.UIntPtr)
M:Foundation.NSPort.Dispose(System.Boolean)
-M:Foundation.NSPortDelegate_Extensions.MessageReceived(Foundation.INSPortDelegate,Foundation.NSPortMessage)
-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.NSProcessInfo_NSUserInformation.GetFullUserName(Foundation.NSProcessInfo)
-M:Foundation.NSProcessInfo_NSUserInformation.GetUserName(Foundation.NSProcessInfo)
M:Foundation.NSRange.#ctor(System.IntPtr,System.IntPtr)
M:Foundation.NSRange.Equals(Foundation.NSRange)
M:Foundation.NSRange.Equals(System.Object)
@@ -13440,7 +11861,6 @@ M:Foundation.NSSet.op_Subtraction(Foundation.NSSet,Foundation.NSOrderedSet)
M:Foundation.NSSet.op_Subtraction(Foundation.NSSet,Foundation.NSSet)
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.NSSortDescriptorSorting_NSMutableArray.SortUsingDescriptors(Foundation.NSMutableArray,Foundation.NSSortDescriptor[])
M:Foundation.NSStream.add_OnEvent(System.EventHandler{Foundation.NSStreamEventArgs})
M:Foundation.NSStream.CreateBoundPair(Foundation.NSInputStream@,Foundation.NSOutputStream@,System.IntPtr)
M:Foundation.NSStream.Dispose(System.Boolean)
@@ -13457,7 +11877,6 @@ M:Foundation.NSString.GetPasteboardPropertyListForType(System.String)
M:Foundation.NSString.GetReadableTypesForPasteboard(AppKit.NSPasteboard)
M:Foundation.NSString.GetReadingOptionsForType(System.String,AppKit.NSPasteboard)
M:Foundation.NSString.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
-M:Foundation.NSString.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
M:Foundation.NSString.IsEqualTo(System.IntPtr)
M:Foundation.NSString.LoadDataAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSString.LoadDataAsync(System.String)
@@ -13468,14 +11887,10 @@ M:Foundation.NSString.op_Inequality(Foundation.NSString,Foundation.NSString)
M:Foundation.NSString.ReleaseNative(ObjCRuntime.NativeHandle)
M:Foundation.NSString.StringSize(Foundation.NSDictionary)
M:Foundation.NSTimer.Dispose(System.Boolean)
-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.GetPasteboardPropertyListForType(System.String)
M:Foundation.NSUrl.GetReadableTypesForPasteboard(AppKit.NSPasteboard)
M:Foundation.NSUrl.GetReadingOptionsForType(System.String,AppKit.NSPasteboard)
M:Foundation.NSUrl.GetWritableTypesForPasteboard(AppKit.NSPasteboard)
-M:Foundation.NSUrl.GetWritingOptionsForType(System.String,AppKit.NSPasteboard)
M:Foundation.NSUrl.LoadDataAsync(System.String,Foundation.NSProgress@)
M:Foundation.NSUrl.LoadDataAsync(System.String)
M:Foundation.NSUrl.op_Equality(Foundation.NSUrl,Foundation.NSUrl)
@@ -13487,18 +11902,7 @@ M:Foundation.NSUrlAuthenticationChallengeSender_Extensions.PerformDefaultHandlin
M:Foundation.NSUrlAuthenticationChallengeSender_Extensions.RejectProtectionSpaceAndContinue(Foundation.INSUrlAuthenticationChallengeSender,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlConnection.SendRequestAsync(Foundation.NSUrlRequest,Foundation.NSOperationQueue)
M:Foundation.NSUrlConnectionDataDelegate_Extensions.SentBodyData(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,System.IntPtr,System.IntPtr,System.IntPtr)
-M:Foundation.NSUrlDownloadDelegate_Extensions.CanceledAuthenticationChallenge(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,Foundation.NSUrlAuthenticationChallenge)
-M:Foundation.NSUrlDownloadDelegate_Extensions.CreatedDestination(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,System.String)
-M:Foundation.NSUrlDownloadDelegate_Extensions.DecideDestination(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,System.String)
-M:Foundation.NSUrlDownloadDelegate_Extensions.DecodeSourceData(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,System.String)
-M:Foundation.NSUrlDownloadDelegate_Extensions.DownloadBegan(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload)
-M:Foundation.NSUrlDownloadDelegate_Extensions.FailedWithError(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,Foundation.NSError)
-M:Foundation.NSUrlDownloadDelegate_Extensions.Finished(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload)
-M:Foundation.NSUrlDownloadDelegate_Extensions.ReceivedAuthenticationChallenge(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,Foundation.NSUrlAuthenticationChallenge)
M:Foundation.NSUrlDownloadDelegate_Extensions.ReceivedData(Foundation.INSUrlDownloadDelegate,Foundation.NSUrlDownload,System.UIntPtr)
-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.NSUrlSession.CreateUploadTaskAsync(Foundation.NSData,Foundation.NSUrlSessionUploadTask@)
M:Foundation.NSUrlSession.CreateUploadTaskAsync(Foundation.NSData)
M:Foundation.NSUrlSession.FlushAsync
@@ -13523,10 +11927,6 @@ M:Foundation.NSUrlSessionWebSocketDelegate_Extensions.DidOpen(Foundation.INSUrlS
M:Foundation.NSUrlSessionWebSocketTask.ReceiveMessageAsync
M:Foundation.NSUrlSessionWebSocketTask.SendMessageAsync(Foundation.NSUrlSessionWebSocketMessage)
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.DeleteAllSavedUserActivitiesAsync
M:Foundation.NSUserActivity.Dispose(System.Boolean)
M:Foundation.NSUserActivity.GetContinuationStreamsAsync
@@ -13538,9 +11938,6 @@ M:Foundation.NSUserNotificationCenter.add_DidDeliverNotification(System.EventHan
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.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.NSValue.FromCMVideoDimensions(CoreMedia.CMVideoDimensions)
M:Foundation.NSXpcConnection.CreateRemoteObjectProxy``1
M:Foundation.NSXpcConnection.CreateRemoteObjectProxy``1(System.Action{Foundation.NSError})
@@ -13554,7 +11951,6 @@ M:Foundation.OptionalMemberAttribute.#ctor
M:Foundation.RequiredMemberAttribute.#ctor
M:Foundation.XpcInterfaceAttribute.#ctor
M:GameController.GCColor.#ctor(System.Single,System.Single,System.Single)
-M:GameController.GCColor.Copy(Foundation.NSZone)
M:GameController.GCController.Capture
M:GameController.GCController.GetExtendedGamepadController
M:GameController.GCController.GetMicroGamepadController
@@ -13573,9 +11969,7 @@ M:GameController.GCDualSenseAdaptiveTrigger.SetModeWeapon(System.Single,System.S
M:GameController.GCDualSenseAdaptiveTriggerPositionalAmplitudes.#ctor(System.Single[])
M:GameController.GCDualSenseAdaptiveTriggerPositionalResistiveStrengths.#ctor(System.Single[])
M:GameController.GCEventInteraction.#ctor
-M:GameController.GCEventInteraction.DidMoveToView(UIKit.UIView)
M:GameController.GCEventInteraction.Dispose(System.Boolean)
-M:GameController.GCEventInteraction.WillMoveToView(UIKit.UIView)
M:GameController.GCExtendedGamepad.Dispose(System.Boolean)
M:GameController.GCExtendedGamepad.SetState(GameController.GCExtendedGamepad)
M:GameController.GCGameControllerSceneDelegate.DidActivateGameController(UIKit.UIScene,GameController.GCGameControllerActivationContext)
@@ -13729,13 +12123,9 @@ 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.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.GKPeerPickerController.#ctor(ObjCRuntime.NativeHandle)
M:GameKit.GKPeerPickerControllerDelegate.#ctor(ObjCRuntime.NativeHandle)
-M:GameKit.GKSavedGame.Copy(Foundation.NSZone)
M:GameKit.GKSavedGame.LoadDataAsync
M:GameKit.GKScore.ReportLeaderboardScoresAsync(GameKit.GKLeaderboardScore[],GameKit.GKChallenge[])
M:GameKit.GKScore.ReportScoreAsync
@@ -13760,40 +12150,15 @@ M:GameKit.GKTurnBasedMatch.RematchAsync
M:GameKit.GKTurnBasedMatch.RemoveAsync
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.GKVoiceChatClient_Extensions.ReceivedInvitation(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String,System.IntPtr)
M:GameKit.GKVoiceChatService.Dispose(System.Boolean)
-M:GameKit.IGKAchievementViewControllerDelegate.DidFinish(GameKit.GKAchievementViewController)
-M:GameKit.IGKChallengesViewControllerDelegate.DidFinish(GameKit.GKChallengesViewController)
-M:GameKit.IGKFriendRequestComposeViewControllerDelegate.DidFinish(GameKit.GKFriendRequestComposeViewController)
-M:GameKit.IGKGameCenterControllerDelegate.Finished(GameKit.GKGameCenterViewController)
M:GameKit.IGKGameSessionSharingViewControllerDelegate.DidFinish(GameKit.GKGameSessionSharingViewController,Foundation.NSError)
-M:GameKit.IGKLeaderboardViewControllerDelegate.DidFinish(GameKit.GKLeaderboardViewController)
-M:GameKit.IGKMatchmakerViewControllerDelegate.DidFailWithError(GameKit.GKMatchmakerViewController,Foundation.NSError)
-M:GameKit.IGKMatchmakerViewControllerDelegate.DidFindHostedPlayers(GameKit.GKMatchmakerViewController,GameKit.GKPlayer[])
-M:GameKit.IGKMatchmakerViewControllerDelegate.DidFindMatch(GameKit.GKMatchmakerViewController,GameKit.GKMatch)
-M:GameKit.IGKMatchmakerViewControllerDelegate.DidFindPlayers(GameKit.GKMatchmakerViewController,System.String[])
M:GameKit.IGKMatchmakerViewControllerDelegate.GetMatchProperties(GameKit.GKMatchmakerViewController,GameKit.GKPlayer,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}})
-M:GameKit.IGKMatchmakerViewControllerDelegate.WasCancelled(GameKit.GKMatchmakerViewController)
-M:GameKit.IGKTurnBasedEventHandlerDelegate.HandleInviteFromGameCenter(Foundation.NSString[])
-M:GameKit.IGKTurnBasedEventHandlerDelegate.HandleTurnEvent(GameKit.GKTurnBasedMatch,System.Boolean)
-M:GameKit.IGKTurnBasedMatchmakerViewControllerDelegate.FailedWithError(GameKit.GKTurnBasedMatchmakerViewController,Foundation.NSError)
-M:GameKit.IGKTurnBasedMatchmakerViewControllerDelegate.FoundMatch(GameKit.GKTurnBasedMatchmakerViewController,GameKit.GKTurnBasedMatch)
-M:GameKit.IGKTurnBasedMatchmakerViewControllerDelegate.PlayerQuitForMatch(GameKit.GKTurnBasedMatchmakerViewController,GameKit.GKTurnBasedMatch)
-M:GameKit.IGKTurnBasedMatchmakerViewControllerDelegate.WasCancelled(GameKit.GKTurnBasedMatchmakerViewController)
-M:GameKit.IGKVoiceChatClient.ParticipantID
M:GameKit.IGKVoiceChatClient.ReceivedInvitation(GameKit.GKVoiceChatService,System.String,System.IntPtr)
-M:GameKit.IGKVoiceChatClient.SendData(GameKit.GKVoiceChatService,Foundation.NSData,System.String)
M:GameplayKit.GKAgent.Dispose(System.Boolean)
-M:GameplayKit.GKBehavior.Copy(Foundation.NSZone)
-M:GameplayKit.GKComponent.Copy(Foundation.NSZone)
M:GameplayKit.GKComponent.Dispose(System.Boolean)
M:GameplayKit.GKComponentSystem`1.GetTypeForGenericArgument(System.UIntPtr)
-M:GameplayKit.GKEntity.Copy(Foundation.NSZone)
M:GameplayKit.GKGameModel.#ctor
-M:GameplayKit.GKGoal.Copy(Foundation.NSZone)
-M:GameplayKit.GKGraph.Copy(Foundation.NSZone)
M:GameplayKit.GKGridGraph.#ctor(CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean,System.Type)
M:GameplayKit.GKGridGraph.FromGridStartingAt(CoreGraphics.NVector2i,System.Int32,System.Int32,System.Boolean,System.Type)
M:GameplayKit.GKGridGraph.GetNodeAt``1(CoreGraphics.NVector2i)
@@ -13808,70 +12173,31 @@ M:GameplayKit.GKPath.FromPoints(System.Numerics.Vector2[],System.Single,System.B
M:GameplayKit.GKPath.FromPoints(System.Numerics.Vector3[],System.Single,System.Boolean)
M:GameplayKit.GKPolygonObstacle.#ctor(System.Numerics.Vector2[])
M:GameplayKit.GKPolygonObstacle.FromPoints(System.Numerics.Vector2[])
-M:GameplayKit.GKRandomSource.Copy(Foundation.NSZone)
-M:GameplayKit.GKScene.Copy(Foundation.NSZone)
M:GameplayKit.GKScene.Dispose(System.Boolean)
M:GameplayKit.GKState.Dispose(System.Boolean)
-M:GameplayKit.IGKGameModel.ApplyGameModelUpdate(GameplayKit.IGKGameModelUpdate)
-M:GameplayKit.IGKGameModel.GetActivePlayer
-M:GameplayKit.IGKGameModel.GetGameModelUpdates(GameplayKit.IGKGameModelPlayer)
-M:GameplayKit.IGKGameModel.GetPlayers
-M:GameplayKit.IGKGameModel.SetGameModel(GameplayKit.IGKGameModel)
-M:GameplayKit.IGKRandom.GetNextBool
-M:GameplayKit.IGKRandom.GetNextInt
M:GameplayKit.IGKRandom.GetNextInt(System.UIntPtr)
-M:GameplayKit.IGKRandom.GetNextUniform
-M:GameplayKit.IGKStrategist.GetBestMoveForActivePlayer
-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.GLKMeshBuffer.Copy(Foundation.NSZone)
M:GLKit.GLKMeshBuffer.FillData(Foundation.NSData,System.UIntPtr)
-M:GLKit.GLKMeshBufferAllocator.CreateBuffer(Foundation.NSData,ModelIO.MDLMeshBufferType)
-M:GLKit.GLKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,Foundation.NSData,ModelIO.MDLMeshBufferType)
M:GLKit.GLKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,System.UIntPtr,ModelIO.MDLMeshBufferType)
M:GLKit.GLKMeshBufferAllocator.CreateBuffer(System.UIntPtr,ModelIO.MDLMeshBufferType)
-M:GLKit.GLKMeshBufferAllocator.CreateZone(Foundation.NSNumber[],Foundation.NSNumber[])
M:GLKit.GLKMeshBufferAllocator.CreateZone(System.UIntPtr)
M:GLKit.GLKSubmesh.Dispose(System.Boolean)
-M:GLKit.GLKTextureInfo.Copy(Foundation.NSZone)
M:GLKit.GLKTextureLoader.BeginTextureLoadAsync(System.String,System.Runtime.InteropServices.NFloat,Foundation.NSBundle,Foundation.NSDictionary{Foundation.NSString,Foundation.NSNumber},CoreFoundation.DispatchQueue)
M:GLKit.GLKView.add_DrawInRect(System.EventHandler{GLKit.GLKViewDrawEventArgs})
M:GLKit.GLKView.Dispose(System.Boolean)
M:GLKit.GLKView.GLKViewAppearance.#ctor(System.IntPtr)
M:GLKit.GLKView.remove_DrawInRect(System.EventHandler{GLKit.GLKViewDrawEventArgs})
M:GLKit.GLKViewController.Dispose(System.Boolean)
-M:GLKit.IGLKViewControllerDelegate.Update(GLKit.GLKViewController)
-M:GLKit.IGLKViewDelegate.DrawInRect(GLKit.GLKView,CoreGraphics.CGRect)
-M:HealthKit.HKActivityMoveModeObject.Copy(Foundation.NSZone)
-M:HealthKit.HKActivitySummary.Copy(Foundation.NSZone)
M:HealthKit.HKAppleWalkingSteadiness.GetMaximumQuantity(HealthKit.HKAppleWalkingSteadinessClassification)
M:HealthKit.HKAppleWalkingSteadiness.GetMinimumQuantity(HealthKit.HKAppleWalkingSteadinessClassification)
M:HealthKit.HKAppleWalkingSteadiness.TryGetClassification(HealthKit.HKQuantity,System.Nullable{HealthKit.HKAppleWalkingSteadinessClassification}@,Foundation.NSError@)
-M:HealthKit.HKAttachment.Copy(Foundation.NSZone)
M:HealthKit.HKAttachmentStore.AddAttachmentAsync(HealthKit.HKObject,System.String,UniformTypeIdentifiers.UTType,Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:HealthKit.HKAttachmentStore.GetAttachmentsAsync(HealthKit.HKObject)
M:HealthKit.HKAttachmentStore.GetDataAsync(HealthKit.HKAttachment,Foundation.NSProgress@)
M:HealthKit.HKAttachmentStore.GetDataAsync(HealthKit.HKAttachment)
M:HealthKit.HKAttachmentStore.RemoveAttachmentAsync(HealthKit.HKAttachment,HealthKit.HKObject)
-M:HealthKit.HKAudiogramSensitivityPointClampingRange.Copy(Foundation.NSZone)
-M:HealthKit.HKAudiogramSensitivityTest.Copy(Foundation.NSZone)
-M:HealthKit.HKBiologicalSexObject.Copy(Foundation.NSZone)
-M:HealthKit.HKBloodTypeObject.Copy(Foundation.NSZone)
M:HealthKit.HKCategorySample.FromType(HealthKit.HKCategoryType,System.IntPtr,Foundation.NSDate,Foundation.NSDate,HealthKit.HKMetadata)
M:HealthKit.HKCategoryValueSleepAnalysisAsleep.#ctor
M:HealthKit.HKCategoryValueSleepAnalysisAsleep.GetAsleepValues
-M:HealthKit.HKClinicalRecord.Copy(Foundation.NSZone)
-M:HealthKit.HKContactsLensSpecification.Copy(Foundation.NSZone)
-M:HealthKit.HKContactsPrescription.Copy(Foundation.NSZone)
-M:HealthKit.HKDevice.Copy(Foundation.NSZone)
-M:HealthKit.HKElectrocardiogramVoltageMeasurement.Copy(Foundation.NSZone)
-M:HealthKit.HKFhirResource.Copy(Foundation.NSZone)
-M:HealthKit.HKFhirVersion.Copy(Foundation.NSZone)
-M:HealthKit.HKFitzpatrickSkinTypeObject.Copy(Foundation.NSZone)
-M:HealthKit.HKGlassesLensSpecification.Copy(Foundation.NSZone)
-M:HealthKit.HKGlassesPrescription.Copy(Foundation.NSZone)
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.DisableAllBackgroundDeliveryAsync
@@ -13885,33 +12211,13 @@ M:HealthKit.HKHeartbeatSeriesBuilder.FinishSeriesAsync
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.HKObjectType.Copy(Foundation.NSZone)
-M:HealthKit.HKQuantity.Copy(Foundation.NSZone)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeries(HealthKit.HKMetadata,Foundation.NSDate,HealthKit.HKQuantitySeriesSampleBuilderFinishSeriesDelegate)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeriesAsync(Foundation.NSDictionary,Foundation.NSDate)
M:HealthKit.HKQuantitySeriesSampleBuilder.FinishSeriesAsync(HealthKit.HKMetadata,Foundation.NSDate)
-M:HealthKit.HKQueryAnchor.Copy(Foundation.NSZone)
-M:HealthKit.HKQueryDescriptor.Copy(Foundation.NSZone)
-M:HealthKit.HKScoredAssessment.Copy(Foundation.NSZone)
-M:HealthKit.HKSeriesSample.Copy(Foundation.NSZone)
-M:HealthKit.HKSource.Copy(Foundation.NSZone)
-M:HealthKit.HKSourceRevision.Copy(Foundation.NSZone)
-M:HealthKit.HKStateOfMind.Copy(Foundation.NSZone)
-M:HealthKit.HKStatistics.Copy(Foundation.NSZone)
-M:HealthKit.HKUnit.Copy(Foundation.NSZone)
-M:HealthKit.HKVerifiableClinicalRecordSubject.Copy(Foundation.NSZone)
-M:HealthKit.HKVisionPrescription.Copy(Foundation.NSZone)
-M:HealthKit.HKVisionPrism.Copy(Foundation.NSZone)
-M:HealthKit.HKWheelchairUseObject.Copy(Foundation.NSZone)
-M:HealthKit.HKWorkoutActivity.Copy(Foundation.NSZone)
M:HealthKit.HKWorkoutBuilder.AddWorkoutActivityAsync(HealthKit.HKWorkoutActivity)
M:HealthKit.HKWorkoutBuilder.FinishWorkoutAsync
M:HealthKit.HKWorkoutBuilder.UpdateActivityAsync(Foundation.NSUuid,Foundation.NSDate)
M:HealthKit.HKWorkoutBuilder.UpdateActivityAsync(Foundation.NSUuid,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
-M:HealthKit.HKWorkoutConfiguration.Copy(Foundation.NSZone)
-M:HealthKit.HKWorkoutEffortRelationship.Copy(Foundation.NSZone)
-M:HealthKit.HKWorkoutEvent.Copy(Foundation.NSZone)
-M:HealthKit.HKWorkoutRoute.Copy(Foundation.NSZone)
M:HealthKit.HKWorkoutSession.Dispose(System.Boolean)
M:HealthKit.HKWorkoutSession.SendDataToRemoteWorkoutSessionAsync(Foundation.NSData)
M:HealthKit.HKWorkoutSessionDelegate_Extensions.DidBeginActivity(HealthKit.IHKWorkoutSessionDelegate,HealthKit.HKWorkoutSession,HealthKit.HKWorkoutConfiguration,Foundation.NSDate)
@@ -13957,27 +12263,15 @@ M:HomeKit.HMAccessoryBrowser.add_DidRemoveNewAccessory(System.EventHandler{HomeK
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.HMAccessoryBrowserDelegate_Extensions.DidFindNewAccessory(HomeKit.IHMAccessoryBrowserDelegate,HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
-M:HomeKit.HMAccessoryBrowserDelegate_Extensions.DidRemoveNewAccessory(HomeKit.IHMAccessoryBrowserDelegate,HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
M:HomeKit.HMAccessoryProfile.Dispose(System.Boolean)
M:HomeKit.HMAccessorySetupManager.PerformAccessorySetupAsync(HomeKit.HMAccessorySetupRequest)
-M:HomeKit.HMAccessorySetupRequest.Copy(Foundation.NSZone)
-M:HomeKit.HMAccessorySetupResult.Copy(Foundation.NSZone)
-M:HomeKit.HMCalendarEvent.Copy(Foundation.NSZone)
-M:HomeKit.HMCalendarEvent.MutableCopy(Foundation.NSZone)
M:HomeKit.HMCameraSnapshotControl.Dispose(System.Boolean)
M:HomeKit.HMCameraStreamControl.Dispose(System.Boolean)
M:HomeKit.HMCameraView.HMCameraViewAppearance.#ctor(System.IntPtr)
M:HomeKit.HMCharacteristic.Dispose(System.Boolean)
M:HomeKit.HMCharacteristic.ReadValueAsync
-M:HomeKit.HMCharacteristicEvent.Copy(Foundation.NSZone)
-M:HomeKit.HMCharacteristicEvent.MutableCopy(Foundation.NSZone)
M:HomeKit.HMCharacteristicProperties.#ctor
-M:HomeKit.HMCharacteristicThresholdRangeEvent.Copy(Foundation.NSZone)
-M:HomeKit.HMCharacteristicThresholdRangeEvent.MutableCopy(Foundation.NSZone)
M:HomeKit.HMCharacteristicWriteAction.UpdateTargetValueAsync(Foundation.INSCopying)
-M:HomeKit.HMDurationEvent.Copy(Foundation.NSZone)
-M:HomeKit.HMDurationEvent.MutableCopy(Foundation.NSZone)
M:HomeKit.HMHome.add_DidAddAccessory(System.EventHandler{HomeKit.HMHomeAccessoryEventArgs})
M:HomeKit.HMHome.add_DidAddActionSet(System.EventHandler{HomeKit.HMHomeActionSetEventArgs})
M:HomeKit.HMHome.add_DidAddRoom(System.EventHandler{HomeKit.HMHomeRoomEventArgs})
@@ -14062,8 +12356,6 @@ M:HomeKit.HMHomeManager.remove_DidUpdateHomes(System.EventHandler)
M:HomeKit.HMHomeManager.remove_DidUpdatePrimaryHome(System.EventHandler)
M:HomeKit.HMHomeManagerDelegate_Extensions.DidReceiveAddAccessoryRequest(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager,HomeKit.HMAddAccessoryRequest)
M:HomeKit.HMHomeManagerDelegate_Extensions.DidUpdateAuthorizationStatus(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager,HomeKit.HMHomeManagerAuthorizationStatus)
-M:HomeKit.HMLocationEvent.Copy(Foundation.NSZone)
-M:HomeKit.HMLocationEvent.MutableCopy(Foundation.NSZone)
M:HomeKit.HMMatterHome.#ctor(Foundation.NSCoder)
M:HomeKit.HMMatterHome.#ctor(Foundation.NSObjectFlag)
M:HomeKit.HMMatterHome.#ctor(Foundation.NSUuid,System.String)
@@ -14092,24 +12384,15 @@ 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.HMMutableCharacteristicEvent.Copy(Foundation.NSZone)
-M:HomeKit.HMMutableCharacteristicEvent.MutableCopy(Foundation.NSZone)
M:HomeKit.HMNetworkConfigurationProfile.Dispose(System.Boolean)
M:HomeKit.HMNetworkConfigurationProfileDelegate_Extensions.DidUpdateNetworkAccessMode(HomeKit.IHMNetworkConfigurationProfileDelegate,HomeKit.HMNetworkConfigurationProfile)
-M:HomeKit.HMPresenceEvent.Copy(Foundation.NSZone)
-M:HomeKit.HMPresenceEvent.MutableCopy(Foundation.NSZone)
M:HomeKit.HMService.Dispose(System.Boolean)
M:HomeKit.HMServiceTypeExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
-M:HomeKit.HMSignificantTimeEvent.Copy(Foundation.NSZone)
-M:HomeKit.HMSignificantTimeEvent.MutableCopy(Foundation.NSZone)
-M:HomeKit.IHMAccessoryBrowserDelegate.DidFindNewAccessory(HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
-M:HomeKit.IHMAccessoryBrowserDelegate.DidRemoveNewAccessory(HomeKit.HMAccessoryBrowser,HomeKit.HMAccessory)
M:HomeKit.IHMHomeDelegate.DidUpdateSupportedFeatures(HomeKit.HMHome)
M:HomeKit.IHMHomeManagerDelegate.DidReceiveAddAccessoryRequest(HomeKit.HMHomeManager,HomeKit.HMAddAccessoryRequest)
M:HomeKit.IHMHomeManagerDelegate.DidUpdateAuthorizationStatus(HomeKit.HMHomeManager,HomeKit.HMHomeManagerAuthorizationStatus)
M:HomeKit.IHMNetworkConfigurationProfileDelegate.DidUpdateNetworkAccessMode(HomeKit.HMNetworkConfigurationProfile)
M:IdentityLookup.IILMessageFilterCapabilitiesQueryHandling.HandleQueryRequest(IdentityLookup.ILMessageFilterCapabilitiesQueryRequest,IdentityLookup.ILMessageFilterExtensionContext,System.Action{IdentityLookup.ILMessageFilterCapabilitiesQueryResponse})
-M:IdentityLookup.IILMessageFilterQueryHandling.HandleQueryRequest(IdentityLookup.ILMessageFilterQueryRequest,IdentityLookup.ILMessageFilterExtensionContext,System.Action{IdentityLookup.ILMessageFilterQueryResponse})
M:IdentityLookup.ILCallCommunication.IsEqualTo(IdentityLookup.ILCallCommunication)
M:IdentityLookup.ILClassificationResponse.#ctor(IdentityLookup.ILClassificationAction)
M:IdentityLookup.ILCommunication.IsEqualTo(IdentityLookup.ILCommunication)
@@ -14255,18 +12538,12 @@ M:ImageKit.IKImageBrowserView.add_CellWasRightClicked(System.EventHandler{ImageK
M:ImageKit.IKImageBrowserView.add_SelectionDidChange(System.EventHandler)
M:ImageKit.IKImageBrowserView.CollapseGroup(System.IntPtr)
M:ImageKit.IKImageBrowserView.Dispose(System.Boolean)
-M:ImageKit.IKImageBrowserView.DraggedImageBeganAt(AppKit.NSImage,CoreGraphics.CGPoint)
-M:ImageKit.IKImageBrowserView.DraggedImageEndedAtDeposited(AppKit.NSImage,CoreGraphics.CGPoint,System.Boolean)
-M:ImageKit.IKImageBrowserView.DraggedImageEndedAtOperation(AppKit.NSImage,CoreGraphics.CGPoint,AppKit.NSDragOperation)
-M:ImageKit.IKImageBrowserView.DraggedImageMovedTo(AppKit.NSImage,CoreGraphics.CGPoint)
-M:ImageKit.IKImageBrowserView.DraggingSourceOperationMaskForLocal(System.Boolean)
M:ImageKit.IKImageBrowserView.ExpandGroup(System.IntPtr)
M:ImageKit.IKImageBrowserView.GetCellAt(System.IntPtr)
M:ImageKit.IKImageBrowserView.GetItemFrame(System.IntPtr)
M:ImageKit.IKImageBrowserView.GetRectOfColumn(System.IntPtr)
M:ImageKit.IKImageBrowserView.GetRectOfRow(System.IntPtr)
M:ImageKit.IKImageBrowserView.IsGroupExpanded(System.IntPtr)
-M:ImageKit.IKImageBrowserView.NamesOfPromisedFilesDroppedAtDestination(Foundation.NSUrl)
M:ImageKit.IKImageBrowserView.remove_BackgroundWasRightClicked(System.EventHandler{ImageKit.IKImageBrowserViewEventEventArgs})
M:ImageKit.IKImageBrowserView.remove_CellWasDoubleClicked(System.EventHandler{ImageKit.IKImageBrowserViewIndexEventArgs})
M:ImageKit.IKImageBrowserView.remove_CellWasRightClicked(System.EventHandler{ImageKit.IKImageBrowserViewIndexEventEventArgs})
@@ -14299,25 +12576,17 @@ M:ImageKit.IKSlideshowDataSource.DidChange(System.IntPtr)
M:ImageKit.IKSlideshowDataSource.GetItemAt(System.IntPtr)
M:ImageKit.IKSlideshowDataSource.GetNameOfItemAt(System.IntPtr)
M:Intents.IINActivateCarSignalIntentHandling.Confirm(Intents.INActivateCarSignalIntent,System.Action{Intents.INActivateCarSignalIntentResponse})
-M:Intents.IINActivateCarSignalIntentHandling.HandleActivateCarSignal(Intents.INActivateCarSignalIntent,System.Action{Intents.INActivateCarSignalIntentResponse})
M:Intents.IINAddMediaIntentHandling.Confirm(Intents.INAddMediaIntent,System.Action{Intents.INAddMediaIntentResponse})
M:Intents.IINAddMediaIntentHandling.HandleAddMedia(Intents.INAddMediaIntent,System.Action{Intents.INAddMediaIntentResponse})
M:Intents.IINAddMediaIntentHandling.ResolveMediaDestination(Intents.INAddMediaIntent,System.Action{Intents.INAddMediaMediaDestinationResolutionResult})
M:Intents.IINAddMediaIntentHandling.ResolveMediaItems(Intents.INAddMediaIntent,System.Action{Intents.INAddMediaMediaItemResolutionResult[]})
-M:Intents.IINAddTasksIntentHandling.HandleAddTasks(Intents.INAddTasksIntent,System.Action{Intents.INAddTasksIntentResponse})
M:Intents.IINAddTasksIntentHandling.ResolvePriority(Intents.INAddTasksIntent,System.Action{Intents.INTaskPriorityResolutionResult})
M:Intents.IINAddTasksIntentHandling.ResolveTargetTaskList(Intents.INAddTasksIntent,System.Action{Intents.INAddTasksTargetTaskListResolutionResult})
M:Intents.IINAddTasksIntentHandling.ResolveTemporalEventTrigger(Intents.INAddTasksIntent,System.Action{Intents.INAddTasksTemporalEventTriggerResolutionResult})
M:Intents.IINAnswerCallIntentHandling.ConfirmAnswerCall(Intents.INAnswerCallIntent,System.Action{Intents.INAnswerCallIntentResponse})
M:Intents.IINAnswerCallIntentHandling.HandleAnswerCall(Intents.INAnswerCallIntent,System.Action{Intents.INAnswerCallIntentResponse})
-M:Intents.IINAppendToNoteIntentHandling.HandleAppendToNote(Intents.INAppendToNoteIntent,System.Action{Intents.INAppendToNoteIntentResponse})
M:Intents.IINBookRestaurantReservationIntentHandling.Confirm(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INBookRestaurantReservationIntentResponse})
-M:Intents.IINBookRestaurantReservationIntentHandling.HandleBookRestaurantReservation(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INBookRestaurantReservationIntentResponse})
-M:Intents.IINCancelRideIntentHandling.HandleCancelRide(Intents.INCancelRideIntent,System.Action{Intents.INCancelRideIntentResponse})
M:Intents.IINCancelWorkoutIntentHandling.Confirm(Intents.INCancelWorkoutIntent,System.Action{Intents.INCancelWorkoutIntentResponse})
-M:Intents.IINCancelWorkoutIntentHandling.HandleCancelWorkout(Intents.INCancelWorkoutIntent,System.Action{Intents.INCancelWorkoutIntentResponse})
-M:Intents.IINCreateNoteIntentHandling.HandleCreateNote(Intents.INCreateNoteIntent,System.Action{Intents.INCreateNoteIntentResponse})
-M:Intents.IINCreateTaskListIntentHandling.HandleCreateTaskList(Intents.INCreateTaskListIntent,System.Action{Intents.INCreateTaskListIntentResponse})
M:Intents.IINDeleteTasksIntentHandling.Confirm(Intents.INDeleteTasksIntent,System.Action{Intents.INDeleteTasksIntentResponse})
M:Intents.IINDeleteTasksIntentHandling.HandleDeleteTasks(Intents.INDeleteTasksIntent,System.Action{Intents.INDeleteTasksIntentResponse})
M:Intents.IINDeleteTasksIntentHandling.ResolveTaskList(Intents.INDeleteTasksIntent,System.Action{Intents.INDeleteTasksTaskListResolutionResult})
@@ -14326,40 +12595,24 @@ M:Intents.IINEditMessageIntentHandling.ConfirmEditMessage(Intents.INEditMessageI
M:Intents.IINEditMessageIntentHandling.HandleEditMessage(Intents.INEditMessageIntent,System.Action{Intents.INEditMessageIntentResponse})
M:Intents.IINEditMessageIntentHandling.ResolveEditedContent(Intents.INEditMessageIntent,System.Action{Intents.INStringResolutionResult})
M:Intents.IINEndWorkoutIntentHandling.Confirm(Intents.INEndWorkoutIntent,System.Action{Intents.INEndWorkoutIntentResponse})
-M:Intents.IINEndWorkoutIntentHandling.HandleEndWorkout(Intents.INEndWorkoutIntent,System.Action{Intents.INEndWorkoutIntentResponse})
M:Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling.Confirm(Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse})
-M:Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling.HandleAvailableRestaurantReservationBookingDefaults(Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse})
M:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling.Confirm(Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingsIntentResponse})
-M:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling.HandleAvailableRestaurantReservationBookings(Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingsIntentResponse})
M:Intents.IINGetCarLockStatusIntentHandling.Confirm(Intents.INGetCarLockStatusIntent,System.Action{Intents.INGetCarLockStatusIntentResponse})
-M:Intents.IINGetCarLockStatusIntentHandling.HandleGetCarLockStatus(Intents.INGetCarLockStatusIntent,System.Action{Intents.INGetCarLockStatusIntentResponse})
M:Intents.IINGetCarPowerLevelStatusIntentHandling.Confirm(Intents.INGetCarPowerLevelStatusIntent,System.Action{Intents.INGetCarPowerLevelStatusIntentResponse})
-M:Intents.IINGetCarPowerLevelStatusIntentHandling.HandleGetCarPowerLevelStatus(Intents.INGetCarPowerLevelStatusIntent,System.Action{Intents.INGetCarPowerLevelStatusIntentResponse})
M:Intents.IINGetCarPowerLevelStatusIntentHandling.StartSendingUpdates(Intents.INGetCarPowerLevelStatusIntent,Intents.IINGetCarPowerLevelStatusIntentResponseObserver)
M:Intents.IINGetCarPowerLevelStatusIntentHandling.StopSendingUpdates(Intents.INGetCarPowerLevelStatusIntent)
M:Intents.IINGetCarPowerLevelStatusIntentResponseObserver.DidUpdate(Intents.INGetCarPowerLevelStatusIntentResponse)
M:Intents.IINGetRestaurantGuestIntentHandling.Confirm(Intents.INGetRestaurantGuestIntent,System.Action{Intents.INGetRestaurantGuestIntentResponse})
-M:Intents.IINGetRestaurantGuestIntentHandling.HandleRestaurantGuest(Intents.INGetRestaurantGuestIntent,System.Action{Intents.INGetRestaurantGuestIntentResponse})
M:Intents.IINGetRideStatusIntentHandling.Confirm(Intents.INGetRideStatusIntent,System.Action{Intents.INGetRideStatusIntentResponse})
-M:Intents.IINGetRideStatusIntentHandling.HandleRideStatus(Intents.INGetRideStatusIntent,System.Action{Intents.INGetRideStatusIntentResponse})
-M:Intents.IINGetRideStatusIntentHandling.StartSendingUpdates(Intents.INGetRideStatusIntent,Intents.IINGetRideStatusIntentResponseObserver)
-M:Intents.IINGetRideStatusIntentHandling.StopSendingUpdates(Intents.INGetRideStatusIntent)
-M:Intents.IINGetRideStatusIntentResponseObserver.DidUpdateRideStatus(Intents.INGetRideStatusIntentResponse)
M:Intents.IINGetUserCurrentRestaurantReservationBookingsIntentHandling.Confirm(Intents.INGetUserCurrentRestaurantReservationBookingsIntent,System.Action{Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse})
-M:Intents.IINGetUserCurrentRestaurantReservationBookingsIntentHandling.HandleUserCurrentRestaurantReservationBookings(Intents.INGetUserCurrentRestaurantReservationBookingsIntent,System.Action{Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse})
-M:Intents.IINGetVisualCodeIntentHandling.HandleGetVisualCode(Intents.INGetVisualCodeIntent,System.Action{Intents.INGetVisualCodeIntentResponse})
M:Intents.IINHangUpCallIntentHandling.ConfirmHangUpCall(Intents.INHangUpCallIntent,System.Action{Intents.INHangUpCallIntentResponse})
M:Intents.IINHangUpCallIntentHandling.HandleHangUpCall(Intents.INHangUpCallIntent,System.Action{Intents.INHangUpCallIntentResponse})
-M:Intents.IINIntentHandlerProviding.GetHandler(Intents.INIntent)
M:Intents.IINListCarsIntentHandling.ConfirmListCars(Intents.INListCarsIntent,System.Action{Intents.INListCarsIntentResponse})
M:Intents.IINListCarsIntentHandling.HandleListCars(Intents.INListCarsIntent,System.Action{Intents.INListCarsIntentResponse})
M:Intents.IINListRideOptionsIntentHandling.Confirm(Intents.INListRideOptionsIntent,System.Action{Intents.INListRideOptionsIntentResponse})
-M:Intents.IINListRideOptionsIntentHandling.HandleListRideOptions(Intents.INListRideOptionsIntent,System.Action{Intents.INListRideOptionsIntentResponse})
M:Intents.IINPauseWorkoutIntentHandling.Confirm(Intents.INPauseWorkoutIntent,System.Action{Intents.INPauseWorkoutIntentResponse})
-M:Intents.IINPauseWorkoutIntentHandling.HandlePauseWorkout(Intents.INPauseWorkoutIntent,System.Action{Intents.INPauseWorkoutIntentResponse})
M:Intents.IINPayBillIntentHandling.Confirm(Intents.INPayBillIntent,System.Action{Intents.INPayBillIntentResponse})
M:Intents.IINPayBillIntentHandling.HandlePayBill(Intents.INPayBillIntent,System.Action{Intents.INPayBillIntentResponse})
-M:Intents.IINPlayMediaIntentHandling.HandlePlayMedia(Intents.INPlayMediaIntent,System.Action{Intents.INPlayMediaIntentResponse})
M:Intents.IINPlayMediaIntentHandling.ResolveMediaItems(Intents.INPlayMediaIntent,System.Action{Foundation.NSArray{Intents.INPlayMediaMediaItemResolutionResult}})
M:Intents.IINPlayMediaIntentHandling.ResolvePlaybackQueueLocation(Intents.INPlayMediaIntent,System.Action{Intents.INPlaybackQueueLocationResolutionResult})
M:Intents.IINPlayMediaIntentHandling.ResolvePlaybackRepeatMode(Intents.INPlayMediaIntent,System.Action{Intents.INPlaybackRepeatModeResolutionResult})
@@ -14367,51 +12620,30 @@ M:Intents.IINPlayMediaIntentHandling.ResolvePlaybackSpeed(Intents.INPlayMediaInt
M:Intents.IINPlayMediaIntentHandling.ResolvePlayShuffled(Intents.INPlayMediaIntent,System.Action{Intents.INBooleanResolutionResult})
M:Intents.IINPlayMediaIntentHandling.ResolveResumePlayback(Intents.INPlayMediaIntent,System.Action{Intents.INBooleanResolutionResult})
M:Intents.IINRequestPaymentIntentHandling.Confirm(Intents.INRequestPaymentIntent,System.Action{Intents.INRequestPaymentIntentResponse})
-M:Intents.IINRequestPaymentIntentHandling.HandleRequestPayment(Intents.INRequestPaymentIntent,System.Action{Intents.INRequestPaymentIntentResponse})
M:Intents.IINRequestRideIntentHandling.Confirm(Intents.INRequestRideIntent,System.Action{Intents.INRequestRideIntentResponse})
-M:Intents.IINRequestRideIntentHandling.HandleRequestRide(Intents.INRequestRideIntent,System.Action{Intents.INRequestRideIntentResponse})
M:Intents.IINResumeWorkoutIntentHandling.Confirm(Intents.INResumeWorkoutIntent,System.Action{Intents.INResumeWorkoutIntentResponse})
-M:Intents.IINResumeWorkoutIntentHandling.HandleResumeWorkout(Intents.INResumeWorkoutIntent,System.Action{Intents.INResumeWorkoutIntentResponse})
M:Intents.IINSaveProfileInCarIntentHandling.Confirm(Intents.INSaveProfileInCarIntent,System.Action{Intents.INSaveProfileInCarIntentResponse})
-M:Intents.IINSaveProfileInCarIntentHandling.HandleSaveProfileInCar(Intents.INSaveProfileInCarIntent,System.Action{Intents.INSaveProfileInCarIntentResponse})
M:Intents.IINSearchCallHistoryIntentHandling.Confirm(Intents.INSearchCallHistoryIntent,System.Action{Intents.INSearchCallHistoryIntentResponse})
-M:Intents.IINSearchCallHistoryIntentHandling.HandleSearchCallHistory(Intents.INSearchCallHistoryIntent,System.Action{Intents.INSearchCallHistoryIntentResponse})
-M:Intents.IINSearchForAccountsIntentHandling.HandleSearchForAccounts(Intents.INSearchForAccountsIntent,System.Action{Intents.INSearchForAccountsIntentResponse})
M:Intents.IINSearchForBillsIntentHandling.Confirm(Intents.INSearchForBillsIntent,System.Action{Intents.INSearchForBillsIntentResponse})
M:Intents.IINSearchForBillsIntentHandling.HandleSearch(Intents.INSearchForBillsIntent,System.Action{Intents.INSearchForBillsIntentResponse})
M:Intents.IINSearchForMediaIntentHandling.Confirm(Intents.INSearchForMediaIntent,System.Action{Intents.INSearchForMediaIntentResponse})
M:Intents.IINSearchForMediaIntentHandling.HandleSearch(Intents.INSearchForMediaIntent,System.Action{Intents.INSearchForMediaIntentResponse})
M:Intents.IINSearchForMediaIntentHandling.ResolveMediaItems(Intents.INSearchForMediaIntent,System.Action{Intents.INSearchForMediaMediaItemResolutionResult[]})
M:Intents.IINSearchForMessagesIntentHandling.Confirm(Intents.INSearchForMessagesIntent,System.Action{Intents.INSearchForMessagesIntentResponse})
-M:Intents.IINSearchForMessagesIntentHandling.HandleSearchForMessages(Intents.INSearchForMessagesIntent,System.Action{Intents.INSearchForMessagesIntentResponse})
-M:Intents.IINSearchForNotebookItemsIntentHandling.HandleSearchForNotebookItems(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INSearchForNotebookItemsIntentResponse})
M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveTaskPriority(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INTaskPriorityResolutionResult})
M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveTemporalEventTriggerTypes(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INTemporalEventTriggerTypeOptionsResolutionResult})
M:Intents.IINSearchForPhotosIntentHandling.Confirm(Intents.INSearchForPhotosIntent,System.Action{Intents.INSearchForPhotosIntentResponse})
-M:Intents.IINSearchForPhotosIntentHandling.HandleSearchForPhotos(Intents.INSearchForPhotosIntent,System.Action{Intents.INSearchForPhotosIntentResponse})
M:Intents.IINSendMessageIntentHandling.Confirm(Intents.INSendMessageIntent,System.Action{Intents.INSendMessageIntentResponse})
-M:Intents.IINSendMessageIntentHandling.HandleSendMessage(Intents.INSendMessageIntent,System.Action{Intents.INSendMessageIntentResponse})
M:Intents.IINSendMessageIntentHandling.ResolveOutgoingMessageType(Intents.INSendMessageIntent,System.Action{Intents.INOutgoingMessageTypeResolutionResult})
M:Intents.IINSendPaymentIntentHandling.Confirm(Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentIntentResponse})
-M:Intents.IINSendPaymentIntentHandling.HandleSendPayment(Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentIntentResponse})
-M:Intents.IINSendRideFeedbackIntentHandling.HandleSendRideFeedback(Intents.INSendRideFeedbackIntent,System.Action{Intents.INSendRideFeedbackIntentResponse})
M:Intents.IINSetAudioSourceInCarIntentHandling.Confirm(Intents.INSetAudioSourceInCarIntent,System.Action{Intents.INSetAudioSourceInCarIntentResponse})
-M:Intents.IINSetAudioSourceInCarIntentHandling.HandleSetAudioSourceInCar(Intents.INSetAudioSourceInCarIntent,System.Action{Intents.INSetAudioSourceInCarIntentResponse})
M:Intents.IINSetCarLockStatusIntentHandling.Confirm(Intents.INSetCarLockStatusIntent,System.Action{Intents.INSetCarLockStatusIntentResponse})
-M:Intents.IINSetCarLockStatusIntentHandling.HandleSetCarLockStatus(Intents.INSetCarLockStatusIntent,System.Action{Intents.INSetCarLockStatusIntentResponse})
M:Intents.IINSetClimateSettingsInCarIntentHandling.Confirm(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INSetClimateSettingsInCarIntentResponse})
-M:Intents.IINSetClimateSettingsInCarIntentHandling.HandleSetClimateSettingsInCar(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INSetClimateSettingsInCarIntentResponse})
M:Intents.IINSetDefrosterSettingsInCarIntentHandling.Confirm(Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INSetDefrosterSettingsInCarIntentResponse})
-M:Intents.IINSetDefrosterSettingsInCarIntentHandling.HandleSetDefrosterSettingsInCar(Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INSetDefrosterSettingsInCarIntentResponse})
M:Intents.IINSetMessageAttributeIntentHandling.Confirm(Intents.INSetMessageAttributeIntent,System.Action{Intents.INSetMessageAttributeIntentResponse})
-M:Intents.IINSetMessageAttributeIntentHandling.HandleSetMessageAttribute(Intents.INSetMessageAttributeIntent,System.Action{Intents.INSetMessageAttributeIntentResponse})
M:Intents.IINSetProfileInCarIntentHandling.Confirm(Intents.INSetProfileInCarIntent,System.Action{Intents.INSetProfileInCarIntentResponse})
-M:Intents.IINSetProfileInCarIntentHandling.HandleSetProfileInCar(Intents.INSetProfileInCarIntent,System.Action{Intents.INSetProfileInCarIntentResponse})
M:Intents.IINSetRadioStationIntentHandling.Confirm(Intents.INSetRadioStationIntent,System.Action{Intents.INSetRadioStationIntentResponse})
-M:Intents.IINSetRadioStationIntentHandling.HandleSetRadioStation(Intents.INSetRadioStationIntent,System.Action{Intents.INSetRadioStationIntentResponse})
M:Intents.IINSetSeatSettingsInCarIntentHandling.Confirm(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INSetSeatSettingsInCarIntentResponse})
-M:Intents.IINSetSeatSettingsInCarIntentHandling.HandleSetSeatSettingsInCar(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INSetSeatSettingsInCarIntentResponse})
-M:Intents.IINSetTaskAttributeIntentHandling.HandleSetTaskAttribute(Intents.INSetTaskAttributeIntent,System.Action{Intents.INSetTaskAttributeIntentResponse})
M:Intents.IINSetTaskAttributeIntentHandling.ResolvePriority(Intents.INSetTaskAttributeIntent,System.Action{Intents.INTaskPriorityResolutionResult})
M:Intents.IINSetTaskAttributeIntentHandling.ResolveTaskTitle(Intents.INSetTaskAttributeIntent,System.Action{Intents.INSpeakableStringResolutionResult})
M:Intents.IINSetTaskAttributeIntentHandling.ResolveTemporalEventTrigger(Intents.INSetTaskAttributeIntent,System.Action{Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult})
@@ -14422,7 +12654,6 @@ M:Intents.IINSnoozeTasksIntentHandling.HandleSnoozeTasks(Intents.INSnoozeTasksIn
M:Intents.IINSnoozeTasksIntentHandling.ResolveNextTriggerTime(Intents.INSnoozeTasksIntent,System.Action{Intents.INDateComponentsRangeResolutionResult})
M:Intents.IINSnoozeTasksIntentHandling.ResolveTasks(Intents.INSnoozeTasksIntent,System.Action{Intents.INSnoozeTasksTaskResolutionResult[]})
M:Intents.IINStartAudioCallIntentHandling.Confirm(Intents.INStartAudioCallIntent,System.Action{Intents.INStartAudioCallIntentResponse})
-M:Intents.IINStartAudioCallIntentHandling.HandleStartAudioCall(Intents.INStartAudioCallIntent,System.Action{Intents.INStartAudioCallIntentResponse})
M:Intents.IINStartCallIntentHandling.Confirm(Intents.INStartCallIntent,System.Action{Intents.INStartCallIntentResponse})
M:Intents.IINStartCallIntentHandling.HandleStartCall(Intents.INStartCallIntent,System.Action{Intents.INStartCallIntentResponse})
M:Intents.IINStartCallIntentHandling.ResolveCallCapability(Intents.INStartCallIntent,System.Action{Intents.INStartCallCallCapabilityResolutionResult})
@@ -14430,12 +12661,8 @@ M:Intents.IINStartCallIntentHandling.ResolveCallRecordToCallBack(Intents.INStart
M:Intents.IINStartCallIntentHandling.ResolveContacts(Intents.INStartCallIntent,System.Action{Foundation.NSArray{Intents.INStartCallContactResolutionResult}})
M:Intents.IINStartCallIntentHandling.ResolveDestinationType(Intents.INStartCallIntent,System.Action{Intents.INCallDestinationTypeResolutionResult})
M:Intents.IINStartPhotoPlaybackIntentHandling.Confirm(Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INStartPhotoPlaybackIntentResponse})
-M:Intents.IINStartPhotoPlaybackIntentHandling.HandleStartPhotoPlayback(Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INStartPhotoPlaybackIntentResponse})
M:Intents.IINStartVideoCallIntentHandling.Confirm(Intents.INStartVideoCallIntent,System.Action{Intents.INStartVideoCallIntentResponse})
-M:Intents.IINStartVideoCallIntentHandling.HandleStartVideoCall(Intents.INStartVideoCallIntent,System.Action{Intents.INStartVideoCallIntentResponse})
M:Intents.IINStartWorkoutIntentHandling.Confirm(Intents.INStartWorkoutIntent,System.Action{Intents.INStartWorkoutIntentResponse})
-M:Intents.IINStartWorkoutIntentHandling.HandleStartWorkout(Intents.INStartWorkoutIntent,System.Action{Intents.INStartWorkoutIntentResponse})
-M:Intents.IINTransferMoneyIntentHandling.HandleTransferMoney(Intents.INTransferMoneyIntent,System.Action{Intents.INTransferMoneyIntentResponse})
M:Intents.IINUnsendMessagesIntentHandling.ConfirmUnsendMessages(Intents.INUnsendMessagesIntent,System.Action{Intents.INUnsendMessagesIntentResponse})
M:Intents.IINUnsendMessagesIntentHandling.HandleUnsendMessages(Intents.INUnsendMessagesIntent,System.Action{Intents.INUnsendMessagesIntentResponse})
M:Intents.IINUpdateMediaAffinityIntentHandling.Confirm(Intents.INUpdateMediaAffinityIntent,System.Action{Intents.INUpdateMediaAffinityIntentResponse})
@@ -14490,11 +12717,8 @@ M:Intents.INAddTasksTemporalEventTriggerResolutionResult.GetSuccess(Intents.INTe
M:Intents.INAddTasksTemporalEventTriggerResolutionResult.GetUnsupported(Intents.INAddTasksTemporalEventTriggerUnsupportedReason)
M:Intents.INAddTasksTemporalEventTriggerResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INAirline.#ctor(System.String,System.String,System.String)
-M:Intents.INAirline.Copy(Foundation.NSZone)
M:Intents.INAirport.#ctor(System.String,System.String,System.String)
-M:Intents.INAirport.Copy(Foundation.NSZone)
M:Intents.INAirportGate.#ctor(Intents.INAirport,System.String,System.String)
-M:Intents.INAirportGate.Copy(Foundation.NSZone)
M:Intents.INAnswerCallIntent.#ctor(Intents.INCallAudioRoute,System.String)
M:Intents.INAnswerCallIntentHandling_Extensions.ConfirmAnswerCall(Intents.IINAnswerCallIntentHandling,Intents.INAnswerCallIntent,System.Action{Intents.INAnswerCallIntentResponse})
M:Intents.INAnswerCallIntentResponse.#ctor(Intents.INAnswerCallIntentResponseCode,Foundation.NSUserActivity)
@@ -14502,15 +12726,12 @@ M:Intents.INAppendToNoteIntent.#ctor(Intents.INNote,Intents.INNoteContent)
M:Intents.INAppendToNoteIntentResponse.#ctor(Intents.INAppendToNoteIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INBalanceAmount.#ctor(Foundation.NSDecimalNumber,Intents.INBalanceType)
M:Intents.INBalanceAmount.#ctor(Foundation.NSDecimalNumber,System.String)
-M:Intents.INBalanceAmount.Copy(Foundation.NSZone)
M:Intents.INBalanceTypeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INBalanceTypeResolutionResult.GetConfirmationRequired(Intents.INBalanceType)
M:Intents.INBalanceTypeResolutionResult.GetSuccess(Intents.INBalanceType)
M:Intents.INBalanceTypeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INBillDetails.#ctor(Intents.INBillType,Intents.INPaymentStatus,Intents.INBillPayee,Intents.INCurrencyAmount,Intents.INCurrencyAmount,Intents.INCurrencyAmount,Foundation.NSDateComponents,Foundation.NSDateComponents)
-M:Intents.INBillDetails.Copy(Foundation.NSZone)
M:Intents.INBillPayee.#ctor(Intents.INSpeakableString,System.String,Intents.INSpeakableString)
-M:Intents.INBillPayee.Copy(Foundation.NSZone)
M:Intents.INBillPayeeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INBillPayeeResolutionResult.GetConfirmationRequired(Intents.INBillPayee)
M:Intents.INBillPayeeResolutionResult.GetDisambiguation(Intents.INBillPayee[])
@@ -14521,11 +12742,8 @@ M:Intents.INBillTypeResolutionResult.GetConfirmationRequired(Intents.INBillType)
M:Intents.INBillTypeResolutionResult.GetSuccess(Intents.INBillType)
M:Intents.INBillTypeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INBoatReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Foundation.NSUrl,Intents.INSeat,Intents.INBoatTrip)
-M:Intents.INBoatReservation.Copy(Foundation.NSZone)
M:Intents.INBoatTrip.#ctor(System.String,System.String,System.String,Intents.INDateComponentsRange,CoreLocation.CLPlacemark,CoreLocation.CLPlacemark)
-M:Intents.INBoatTrip.Copy(Foundation.NSZone)
M:Intents.INBookRestaurantReservationIntent.#ctor(Intents.INRestaurant,Foundation.NSDateComponents,System.UIntPtr,System.String,Intents.INRestaurantGuest,Intents.INRestaurantOffer,System.String)
-M:Intents.INBookRestaurantReservationIntent.Copy(Foundation.NSZone)
M:Intents.INBookRestaurantReservationIntentHandling_Extensions.Confirm(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INBookRestaurantReservationIntentResponse})
M:Intents.INBookRestaurantReservationIntentResponse.#ctor(Intents.INBookRestaurantReservationIntentCode,Foundation.NSUserActivity)
M:Intents.INBooleanResolutionResult.GetConfirmationRequired(Foundation.NSNumber)
@@ -14533,9 +12751,7 @@ M:Intents.INBooleanResolutionResult.GetConfirmationRequired(Foundation.NSObject,
M:Intents.INBooleanResolutionResult.GetSuccess(System.Boolean)
M:Intents.INBooleanResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INBusReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Foundation.NSUrl,Intents.INSeat,Intents.INBusTrip)
-M:Intents.INBusReservation.Copy(Foundation.NSZone)
M:Intents.INBusTrip.#ctor(System.String,System.String,System.String,Intents.INDateComponentsRange,CoreLocation.CLPlacemark,System.String,CoreLocation.CLPlacemark,System.String)
-M:Intents.INBusTrip.Copy(Foundation.NSZone)
M:Intents.INCallCapabilityResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INCallCapabilityResolutionResult.GetConfirmationRequired(Intents.INCallCapability)
M:Intents.INCallCapabilityResolutionResult.GetSuccess(Intents.INCallCapability)
@@ -14545,15 +12761,12 @@ M:Intents.INCallDestinationTypeResolutionResult.GetConfirmationRequired(Intents.
M:Intents.INCallDestinationTypeResolutionResult.GetSuccess(Intents.INCallDestinationType)
M:Intents.INCallDestinationTypeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INCallGroup.#ctor(System.String,System.String)
-M:Intents.INCallGroup.Copy(Foundation.NSZone)
M:Intents.INCallRecord.#ctor(System.String,Foundation.NSDate,Intents.INCallRecordType,Intents.INCallCapability,System.Nullable{System.Double},System.Nullable{System.Boolean},Intents.INPerson[],System.Nullable{System.Int32},System.Nullable{System.Boolean})
M:Intents.INCallRecord.#ctor(System.String,Foundation.NSDate,Intents.INCallRecordType,Intents.INCallCapability,System.Nullable{System.Double},System.Nullable{System.Boolean},System.Nullable{System.Int32})
M:Intents.INCallRecord.#ctor(System.String,Foundation.NSDate,Intents.INCallRecordType,Intents.INCallCapability,System.Nullable{System.Double},System.Nullable{System.Boolean})
M:Intents.INCallRecord.#ctor(System.String,Foundation.NSDate,Intents.INPerson,Intents.INCallRecordType,Intents.INCallCapability,Foundation.NSNumber,Foundation.NSNumber)
M:Intents.INCallRecord.#ctor(System.String,Foundation.NSDate,Intents.INPerson,Intents.INCallRecordType,Intents.INCallCapability,System.Nullable{System.Double},System.Nullable{System.Boolean},System.Nullable{System.Int32})
-M:Intents.INCallRecord.Copy(Foundation.NSZone)
M:Intents.INCallRecordFilter.#ctor(Intents.INPerson[],Intents.INCallRecordTypeOptions,Intents.INCallCapability)
-M:Intents.INCallRecordFilter.Copy(Foundation.NSZone)
M:Intents.INCallRecordResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INCallRecordResolutionResult.GetConfirmationRequired(Intents.INCallRecord)
M:Intents.INCallRecordResolutionResult.GetDisambiguation(Intents.INCallRecord[])
@@ -14573,7 +12786,6 @@ M:Intents.INCancelWorkoutIntent.#ctor(Intents.INSpeakableString)
M:Intents.INCancelWorkoutIntentHandling_Extensions.Confirm(Intents.IINCancelWorkoutIntentHandling,Intents.INCancelWorkoutIntent,System.Action{Intents.INCancelWorkoutIntentResponse})
M:Intents.INCancelWorkoutIntentResponse.#ctor(Intents.INCancelWorkoutIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INCar.#ctor(System.String,System.String,System.String,System.String,System.String,CoreGraphics.CGColor,Intents.INCarHeadUnit,Intents.INCarChargingConnectorType[])
-M:Intents.INCar.Copy(Foundation.NSZone)
M:Intents.INCar.GetMaximumPower(Intents.INCarChargingConnectorType)
M:Intents.INCar.SetMaximumPower(Foundation.NSMeasurement{Foundation.NSUnitPower},Intents.INCarChargingConnectorType)
M:Intents.INCarAirCirculationModeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
@@ -14589,7 +12801,6 @@ M:Intents.INCarDefrosterResolutionResult.GetConfirmationRequired(Intents.INCarDe
M:Intents.INCarDefrosterResolutionResult.GetSuccess(Intents.INCarDefroster)
M:Intents.INCarDefrosterResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INCarHeadUnit.#ctor(System.String,System.String)
-M:Intents.INCarHeadUnit.Copy(Foundation.NSZone)
M:Intents.INCarSeatResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INCarSeatResolutionResult.GetConfirmationRequired(Intents.INCarSeat)
M:Intents.INCarSeatResolutionResult.GetSuccess(Intents.INCarSeat)
@@ -14603,7 +12814,6 @@ M:Intents.INCreateNoteIntentResponse.#ctor(Intents.INCreateNoteIntentResponseCod
M:Intents.INCreateTaskListIntent.#ctor(Intents.INSpeakableString,Intents.INSpeakableString[],Intents.INSpeakableString)
M:Intents.INCreateTaskListIntentResponse.#ctor(Intents.INCreateTaskListIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INCurrencyAmount.#ctor(Foundation.NSDecimalNumber,System.String)
-M:Intents.INCurrencyAmount.Copy(Foundation.NSZone)
M:Intents.INCurrencyAmountResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INCurrencyAmountResolutionResult.GetConfirmationRequired(Intents.INCurrencyAmount)
M:Intents.INCurrencyAmountResolutionResult.GetDisambiguation(Intents.INCurrencyAmount[])
@@ -14613,7 +12823,6 @@ M:Intents.INDailyRoutineRelevanceProvider.#ctor(Intents.INDailyRoutineSituation)
M:Intents.INDateComponentsRange.#ctor(EventKit.EKRecurrenceRule)
M:Intents.INDateComponentsRange.#ctor(Foundation.NSDateComponents,Foundation.NSDateComponents,Intents.INRecurrenceRule)
M:Intents.INDateComponentsRange.#ctor(Foundation.NSDateComponents,Foundation.NSDateComponents)
-M:Intents.INDateComponentsRange.Copy(Foundation.NSZone)
M:Intents.INDateComponentsRangeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INDateComponentsRangeResolutionResult.GetConfirmationRequired(Intents.INDateComponentsRange)
M:Intents.INDateComponentsRangeResolutionResult.GetDisambiguation(Intents.INDateComponentsRange[])
@@ -14630,7 +12839,6 @@ M:Intents.INDateSearchTypeResolutionResult.GetConfirmationRequired(Intents.INDat
M:Intents.INDateSearchTypeResolutionResult.GetSuccess(Intents.INDateSearchType)
M:Intents.INDateSearchTypeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INDefaultCardTemplate.#ctor(System.String)
-M:Intents.INDefaultCardTemplate.Copy(Foundation.NSZone)
M:Intents.INDeleteTasksIntent.#ctor(Intents.INTaskList,Intents.INTask[],System.Nullable{System.Boolean})
M:Intents.INDeleteTasksIntentHandling_Extensions.Confirm(Intents.IINDeleteTasksIntentHandling,Intents.INDeleteTasksIntent,System.Action{Intents.INDeleteTasksIntentResponse})
M:Intents.INDeleteTasksIntentHandling_Extensions.ResolveTaskList(Intents.IINDeleteTasksIntentHandling,Intents.INDeleteTasksIntent,System.Action{Intents.INDeleteTasksTaskListResolutionResult})
@@ -14670,7 +12878,6 @@ M:Intents.INEnumResolutionResult.GetConfirmationRequired(Foundation.NSObject,Sys
M:Intents.INEnumResolutionResult.GetConfirmationRequired(System.IntPtr)
M:Intents.INEnumResolutionResult.GetSuccess(System.IntPtr)
M:Intents.INEnumResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INExtension.GetHandler(Intents.INIntent)
M:Intents.INFile.Create(Foundation.NSData,System.String,System.String)
M:Intents.INFile.Create(Foundation.NSUrl,System.String,System.String)
M:Intents.INFileResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
@@ -14679,19 +12886,15 @@ M:Intents.INFileResolutionResult.GetDisambiguation(Intents.INFile[])
M:Intents.INFileResolutionResult.GetSuccess(Intents.INFile)
M:Intents.INFileResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INFlight.#ctor(Intents.INAirline,System.String,Intents.INDateComponentsRange,Intents.INDateComponentsRange,Intents.INAirportGate,Intents.INAirportGate)
-M:Intents.INFlight.Copy(Foundation.NSZone)
M:Intents.INFlightReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Foundation.NSUrl,Intents.INSeat,Intents.INFlight)
M:Intents.INFlightReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Intents.INSeat,Intents.INFlight)
-M:Intents.INFlightReservation.Copy(Foundation.NSZone)
M:Intents.INFocusStatus.#ctor(System.Nullable{System.Boolean})
-M:Intents.INFocusStatus.Copy(Foundation.NSZone)
M:Intents.INFocusStatusCenter.RequestAuthorization(System.Action{Intents.INFocusStatusAuthorizationStatus})
M:Intents.INFocusStatusCenter.RequestAuthorizationAsync
M:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent.#ctor(Intents.INRestaurant)
M:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentHandling_Extensions.Confirm(Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse})
M:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse.#ctor(System.UIntPtr,Foundation.NSDate,Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INGetAvailableRestaurantReservationBookingsIntent.#ctor(Intents.INRestaurant,System.UIntPtr,Foundation.NSDateComponents,Foundation.NSNumber,Foundation.NSDate,Foundation.NSDate)
-M:Intents.INGetAvailableRestaurantReservationBookingsIntent.Copy(Foundation.NSZone)
M:Intents.INGetAvailableRestaurantReservationBookingsIntentHandling_Extensions.Confirm(Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingsIntentResponse})
M:Intents.INGetAvailableRestaurantReservationBookingsIntentResponse.#ctor(Intents.INRestaurantReservationBooking[],Intents.INGetAvailableRestaurantReservationBookingsIntentCode,Foundation.NSUserActivity)
M:Intents.INGetCarLockStatusIntent.#ctor(Intents.INSpeakableString)
@@ -14711,7 +12914,6 @@ M:Intents.INGetRideStatusIntentHandling_Extensions.Confirm(Intents.IINGetRideSta
M:Intents.INGetRideStatusIntentResponse.#ctor(Intents.INGetRideStatusIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.#ctor(Intents.INRestaurant,System.String,Foundation.NSNumber,Foundation.NSDate)
M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.#ctor(Intents.INRestaurant,System.String,System.IntPtr,Foundation.NSDate)
-M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.Copy(Foundation.NSZone)
M:Intents.INGetUserCurrentRestaurantReservationBookingsIntentHandling_Extensions.Confirm(Intents.IINGetUserCurrentRestaurantReservationBookingsIntentHandling,Intents.INGetUserCurrentRestaurantReservationBookingsIntent,System.Action{Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse})
M:Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse.#ctor(Intents.INRestaurantReservationUserBooking[],Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INGetVisualCodeIntent.#ctor(Intents.INVisualCodeType)
@@ -14719,7 +12921,6 @@ M:Intents.INGetVisualCodeIntentResponse.#ctor(Intents.INGetVisualCodeIntentRespo
M:Intents.INHangUpCallIntent.#ctor(System.String)
M:Intents.INHangUpCallIntentHandling_Extensions.ConfirmHangUpCall(Intents.IINHangUpCallIntentHandling,Intents.INHangUpCallIntent,System.Action{Intents.INHangUpCallIntentResponse})
M:Intents.INHangUpCallIntentResponse.#ctor(Intents.INHangUpCallIntentResponseCode,Foundation.NSUserActivity)
-M:Intents.INImage.Copy(Foundation.NSZone)
M:Intents.INImage.FetchImageAsync
M:Intents.INImage.FromData(Foundation.NSData)
M:Intents.INImage.FromImage(AppKit.NSImage)
@@ -14728,21 +12929,16 @@ M:Intents.INImage.FromSystem(System.String)
M:Intents.INImage.FromUrl(Foundation.NSUrl,System.Double,System.Double)
M:Intents.INImage.FromUrl(Foundation.NSUrl)
M:Intents.INImageNoteContent.#ctor(Intents.INImage)
-M:Intents.INImageNoteContent.Copy(Foundation.NSZone)
M:Intents.INIntegerResolutionResult.GetConfirmationRequired(Foundation.NSNumber)
M:Intents.INIntegerResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INIntegerResolutionResult.GetSuccess(System.IntPtr)
M:Intents.INIntegerResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INIntent.Copy(Foundation.NSZone)
M:Intents.INIntent.GetImage(System.String)
M:Intents.INIntent.GetKeyImage
M:Intents.INIntent.SetImage(Intents.INImage,System.String)
-M:Intents.INIntentDonationMetadata.Copy(Foundation.NSZone)
M:Intents.INIntentResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INIntentResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INIntentResponse.Copy(Foundation.NSZone)
M:Intents.INInteraction.#ctor(Intents.INIntent,Intents.INIntentResponse)
-M:Intents.INInteraction.Copy(Foundation.NSZone)
M:Intents.INInteraction.DeleteAllInteractions(System.Action{Foundation.NSError})
M:Intents.INInteraction.DeleteAllInteractionsAsync
M:Intents.INInteraction.DeleteGroupedInteractions(System.String,System.Action{Foundation.NSError})
@@ -14766,7 +12962,6 @@ M:Intents.INLocationSearchTypeResolutionResult.GetSuccess(Intents.INLocationSear
M:Intents.INLocationSearchTypeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INLodgingReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],CoreLocation.CLPlacemark,Intents.INDateComponentsRange,System.Nullable{System.Int32},System.Nullable{System.Int32})
M:Intents.INLodgingReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Foundation.NSUrl,CoreLocation.CLPlacemark,Intents.INDateComponentsRange,System.Nullable{System.Int32},System.Nullable{System.Int32})
-M:Intents.INLodgingReservation.Copy(Foundation.NSZone)
M:Intents.INMassResolutionResult.GetConfirmationRequired(Foundation.NSMeasurement{Foundation.NSUnitMass})
M:Intents.INMassResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INMassResolutionResult.GetDisambiguation(Foundation.NSMeasurement{Foundation.NSUnitMass}[])
@@ -14776,7 +12971,6 @@ M:Intents.INMediaAffinityTypeResolutionResult.GetConfirmationRequired(Foundation
M:Intents.INMediaAffinityTypeResolutionResult.GetConfirmationRequired(Intents.INMediaAffinityType)
M:Intents.INMediaAffinityTypeResolutionResult.GetSuccess(Intents.INMediaAffinityType)
M:Intents.INMediaAffinityTypeResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INMediaDestination.Copy(Foundation.NSZone)
M:Intents.INMediaDestination.CreateLibraryDestination
M:Intents.INMediaDestination.CreatePlaylistDestination(System.String)
M:Intents.INMediaDestinationResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
@@ -14786,7 +12980,6 @@ M:Intents.INMediaDestinationResolutionResult.GetSuccess(Intents.INMediaDestinati
M:Intents.INMediaDestinationResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INMediaItem.#ctor(System.String,System.String,Intents.INMediaItemType,Intents.INImage,System.String)
M:Intents.INMediaItem.#ctor(System.String,System.String,Intents.INMediaItemType,Intents.INImage)
-M:Intents.INMediaItem.Copy(Foundation.NSZone)
M:Intents.INMediaItemResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INMediaItemResolutionResult.GetConfirmationRequired(Intents.INMediaItem)
M:Intents.INMediaItemResolutionResult.GetDisambiguation(Intents.INMediaItem[])
@@ -14794,7 +12987,6 @@ M:Intents.INMediaItemResolutionResult.GetSuccess(Intents.INMediaItem)
M:Intents.INMediaItemResolutionResult.GetSuccesses(Intents.INMediaItem[])
M:Intents.INMediaItemResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INMediaSearch.#ctor(Intents.INMediaItemType,Intents.INMediaSortOrder,System.String,System.String,System.String,System.String[],System.String[],Intents.INDateComponentsRange,Intents.INMediaReference,System.String)
-M:Intents.INMediaSearch.Copy(Foundation.NSZone)
M:Intents.INMessage.#ctor(System.String,System.String,Foundation.NSDate,Intents.INPerson,Intents.INPerson[])
M:Intents.INMessage.#ctor(System.String,System.String,System.String,Foundation.NSDate,Intents.INPerson,Intents.INPerson[],Intents.INMessageType)
M:Intents.INMessage.#ctor(System.String,System.String,System.String,Foundation.NSDate,Intents.INPerson,Intents.INPerson[],Intents.INSpeakableString,Intents.INMessageType,System.String,Intents.INFile)
@@ -14805,7 +12997,6 @@ M:Intents.INMessage.#ctor(System.String,System.String,System.String,Foundation.N
M:Intents.INMessage.#ctor(System.String,System.String,System.String,Foundation.NSDate,Intents.INPerson,Intents.INPerson[],Intents.INSpeakableString,System.String,Intents.INMessageType,Foundation.NSNumber)
M:Intents.INMessage.#ctor(System.String,System.String,System.String,Foundation.NSDate,Intents.INPerson,Intents.INPerson[],Intents.INSpeakableString,System.String,Intents.INMessageType,Intents.INMessage,Intents.INMessageReaction)
M:Intents.INMessage.#ctor(System.String,System.String,System.String,Foundation.NSDate,Intents.INPerson,Intents.INPerson[],Intents.INSpeakableString,System.String,Intents.INMessageType,Intents.INMessage,Intents.INSticker,Intents.INMessageReaction)
-M:Intents.INMessage.Copy(Foundation.NSZone)
M:Intents.INMessageAttributeOptionsResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INMessageAttributeOptionsResolutionResult.GetConfirmationRequired(Intents.INMessageAttributeOptions)
M:Intents.INMessageAttributeOptionsResolutionResult.GetSuccess(Intents.INMessageAttributeOptions)
@@ -14815,17 +13006,13 @@ M:Intents.INMessageAttributeResolutionResult.GetConfirmationRequired(Intents.INM
M:Intents.INMessageAttributeResolutionResult.GetSuccess(Intents.INMessageAttribute)
M:Intents.INMessageAttributeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INMessageLinkMetadata.#ctor(System.String,System.String,System.String,System.String,Foundation.NSUrl)
-M:Intents.INMessageLinkMetadata.Copy(Foundation.NSZone)
M:Intents.INMessageReaction.#ctor(Intents.INMessageReactionType,System.String,System.String)
-M:Intents.INMessageReaction.Copy(Foundation.NSZone)
M:Intents.INNote.#ctor(Intents.INSpeakableString,Intents.INNoteContent[],Intents.INSpeakableString,Foundation.NSDateComponents,Foundation.NSDateComponents,System.String)
-M:Intents.INNote.Copy(Foundation.NSZone)
M:Intents.INNotebookItemTypeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INNotebookItemTypeResolutionResult.GetConfirmationRequired(Intents.INNotebookItemType)
M:Intents.INNotebookItemTypeResolutionResult.GetDisambiguation(Foundation.NSNumber[])
M:Intents.INNotebookItemTypeResolutionResult.GetSuccess(Intents.INNotebookItemType)
M:Intents.INNotebookItemTypeResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INNoteContent.Copy(Foundation.NSZone)
M:Intents.INNoteContentResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INNoteContentResolutionResult.GetConfirmationRequired(Intents.INNoteContent)
M:Intents.INNoteContentResolutionResult.GetDisambiguation(Intents.INNoteContent[])
@@ -14844,24 +13031,20 @@ M:Intents.INObject.#ctor(System.String,System.String,System.String,Intents.INIma
M:Intents.INObject.#ctor(System.String,System.String,System.String,System.String,Intents.INImage)
M:Intents.INObject.#ctor(System.String,System.String,System.String)
M:Intents.INObject.#ctor(System.String,System.String)
-M:Intents.INObject.Copy(Foundation.NSZone)
M:Intents.INObject.GetAlternativeSpeakableMatches
M:Intents.INObject.SetAlternativeSpeakableMatches(Intents.INSpeakableString[])
M:Intents.INObjectCollection`1.#ctor(`0[])
M:Intents.INObjectCollection`1.#ctor(Intents.INObjectSection{`0}[])
-M:Intents.INObjectCollection`1.Copy(Foundation.NSZone)
M:Intents.INObjectResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INObjectResolutionResult.GetConfirmationRequired(Intents.INObject)
M:Intents.INObjectResolutionResult.GetDisambiguation(Intents.INObject[])
M:Intents.INObjectResolutionResult.GetSuccess(Intents.INObject)
M:Intents.INObjectResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INObjectSection`1.#ctor(System.String,`0[])
-M:Intents.INObjectSection`1.Copy(Foundation.NSZone)
M:Intents.INOutgoingMessageTypeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INOutgoingMessageTypeResolutionResult.GetConfirmationRequired(Intents.INOutgoingMessageType)
M:Intents.INOutgoingMessageTypeResolutionResult.GetSuccess(Intents.INOutgoingMessageType)
M:Intents.INOutgoingMessageTypeResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INParameter.Copy(Foundation.NSZone)
M:Intents.INParameter.GetIndex(System.String)
M:Intents.INParameter.GetParameter(ObjCRuntime.Class,System.String)
M:Intents.INParameter.IsEqualTo(Intents.INParameter)
@@ -14874,21 +13057,18 @@ M:Intents.INPayBillIntentHandling_Extensions.Confirm(Intents.IINPayBillIntentHan
M:Intents.INPayBillIntentResponse.#ctor(Intents.INPayBillIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INPaymentAccount.#ctor(Intents.INSpeakableString,System.String,Intents.INAccountType,Intents.INSpeakableString,Intents.INBalanceAmount,Intents.INBalanceAmount)
M:Intents.INPaymentAccount.#ctor(Intents.INSpeakableString,System.String,Intents.INAccountType,Intents.INSpeakableString)
-M:Intents.INPaymentAccount.Copy(Foundation.NSZone)
M:Intents.INPaymentAccountResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INPaymentAccountResolutionResult.GetConfirmationRequired(Intents.INPaymentAccount)
M:Intents.INPaymentAccountResolutionResult.GetDisambiguation(Intents.INPaymentAccount[])
M:Intents.INPaymentAccountResolutionResult.GetSuccess(Intents.INPaymentAccount)
M:Intents.INPaymentAccountResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INPaymentAmount.#ctor(Intents.INAmountType,Intents.INCurrencyAmount)
-M:Intents.INPaymentAmount.Copy(Foundation.NSZone)
M:Intents.INPaymentAmountResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INPaymentAmountResolutionResult.GetConfirmationRequired(Intents.INPaymentAmount)
M:Intents.INPaymentAmountResolutionResult.GetDisambiguation(Intents.INPaymentAmount[])
M:Intents.INPaymentAmountResolutionResult.GetSuccess(Intents.INPaymentAmount)
M:Intents.INPaymentAmountResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INPaymentMethod.#ctor(Intents.INPaymentMethodType,System.String,System.String,Intents.INImage)
-M:Intents.INPaymentMethod.Copy(Foundation.NSZone)
M:Intents.INPaymentMethodResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INPaymentMethodResolutionResult.GetConfirmationRequired(Intents.INPaymentMethod)
M:Intents.INPaymentMethodResolutionResult.GetDisambiguation(Intents.INPaymentMethod[])
@@ -14896,7 +13076,6 @@ M:Intents.INPaymentMethodResolutionResult.GetSuccess(Intents.INPaymentMethod)
M:Intents.INPaymentMethodResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INPaymentRecord.#ctor(Intents.INPerson,Intents.INPerson,Intents.INCurrencyAmount,Intents.INPaymentMethod,System.String,Intents.INPaymentStatus,Intents.INCurrencyAmount)
M:Intents.INPaymentRecord.#ctor(Intents.INPerson,Intents.INPerson,Intents.INCurrencyAmount,Intents.INPaymentMethod,System.String,Intents.INPaymentStatus)
-M:Intents.INPaymentRecord.Copy(Foundation.NSZone)
M:Intents.INPaymentStatusResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INPaymentStatusResolutionResult.GetConfirmationRequired(Intents.INPaymentStatus)
M:Intents.INPaymentStatusResolutionResult.GetSuccess(Intents.INPaymentStatus)
@@ -14905,10 +13084,8 @@ M:Intents.INPerson.#ctor(Intents.INPersonHandle,Foundation.NSPersonNameComponent
M:Intents.INPerson.#ctor(Intents.INPersonHandle,Foundation.NSPersonNameComponents,System.String,Intents.INImage,System.String,System.String,System.Boolean)
M:Intents.INPerson.#ctor(Intents.INPersonHandle,Foundation.NSPersonNameComponents,System.String,Intents.INImage,System.String,System.String,System.String)
M:Intents.INPerson.#ctor(Intents.INPersonHandle,Foundation.NSPersonNameComponents,System.String,Intents.INImage,System.String,System.String)
-M:Intents.INPerson.Copy(Foundation.NSZone)
M:Intents.INPersonHandle.#ctor(System.String,Intents.INPersonHandleType,Foundation.NSString)
M:Intents.INPersonHandle.#ctor(System.String,Intents.INPersonHandleType)
-M:Intents.INPersonHandle.Copy(Foundation.NSZone)
M:Intents.INPersonResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INPersonResolutionResult.GetConfirmationRequired(Intents.INPerson)
M:Intents.INPersonResolutionResult.GetDisambiguation(Intents.INPerson[])
@@ -14954,14 +13131,12 @@ M:Intents.INPreferences.RequestSiriAuthorization(System.Action{Intents.INSiriAut
M:Intents.INPreferences.RequestSiriAuthorizationAsync
M:Intents.INPriceRange.#ctor(Foundation.NSDecimalNumber,Foundation.NSDecimalNumber,System.String)
M:Intents.INPriceRange.#ctor(Foundation.NSDecimalNumber,System.String)
-M:Intents.INPriceRange.Copy(Foundation.NSZone)
M:Intents.INRadioTypeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INRadioTypeResolutionResult.GetConfirmationRequired(Intents.INRadioType)
M:Intents.INRadioTypeResolutionResult.GetSuccess(Intents.INRadioType)
M:Intents.INRadioTypeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INRecurrenceRule.#ctor(System.UIntPtr,Intents.INRecurrenceFrequency,Intents.INDayOfWeekOptions)
M:Intents.INRecurrenceRule.#ctor(System.UIntPtr,Intents.INRecurrenceFrequency)
-M:Intents.INRecurrenceRule.Copy(Foundation.NSZone)
M:Intents.INRelativeReferenceResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INRelativeReferenceResolutionResult.GetConfirmationRequired(Intents.INRelativeReference)
M:Intents.INRelativeReferenceResolutionResult.GetSuccess(Intents.INRelativeReference)
@@ -14970,15 +13145,11 @@ M:Intents.INRelativeSettingResolutionResult.GetConfirmationRequired(Foundation.N
M:Intents.INRelativeSettingResolutionResult.GetConfirmationRequired(Intents.INRelativeSetting)
M:Intents.INRelativeSettingResolutionResult.GetSuccess(Intents.INRelativeSetting)
M:Intents.INRelativeSettingResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INRelevanceProvider.Copy(Foundation.NSZone)
M:Intents.INRelevantShortcut.#ctor(Intents.INShortcut)
-M:Intents.INRelevantShortcut.Copy(Foundation.NSZone)
M:Intents.INRelevantShortcutStore.SetRelevantShortcuts(Intents.INRelevantShortcut[],System.Action{Foundation.NSError})
M:Intents.INRentalCar.#ctor(System.String,System.String,System.String,System.String,System.String)
-M:Intents.INRentalCar.Copy(Foundation.NSZone)
M:Intents.INRentalCarReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Foundation.NSUrl,Intents.INRentalCar,Intents.INDateComponentsRange,CoreLocation.CLPlacemark,CoreLocation.CLPlacemark)
M:Intents.INRentalCarReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Intents.INRentalCar,Intents.INDateComponentsRange,CoreLocation.CLPlacemark,CoreLocation.CLPlacemark)
-M:Intents.INRentalCarReservation.Copy(Foundation.NSZone)
M:Intents.INRequestPaymentCurrencyAmountResolutionResult.#ctor(Intents.INCurrencyAmountResolutionResult)
M:Intents.INRequestPaymentCurrencyAmountResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INRequestPaymentCurrencyAmountResolutionResult.GetUnsupported(Intents.INRequestPaymentCurrencyAmountUnsupportedReason)
@@ -14997,27 +13168,19 @@ M:Intents.INRequestRideIntent.#ctor(CoreLocation.CLPlacemark,CoreLocation.CLPlac
M:Intents.INRequestRideIntent.#ctor(CoreLocation.CLPlacemark,CoreLocation.CLPlacemark,Intents.INSpeakableString,Foundation.NSNumber,Intents.INPaymentMethod)
M:Intents.INRequestRideIntentHandling_Extensions.Confirm(Intents.IINRequestRideIntentHandling,Intents.INRequestRideIntent,System.Action{Intents.INRequestRideIntentResponse})
M:Intents.INRequestRideIntentResponse.#ctor(Intents.INRequestRideIntentResponseCode,Foundation.NSUserActivity)
-M:Intents.INReservation.Copy(Foundation.NSZone)
M:Intents.INReservationAction.#ctor(Intents.INReservationActionType,Intents.INDateComponentsRange,Foundation.NSUserActivity)
-M:Intents.INReservationAction.Copy(Foundation.NSZone)
M:Intents.INRestaurant.#ctor(CoreLocation.CLLocation,System.String,System.String,System.String)
-M:Intents.INRestaurant.Copy(Foundation.NSZone)
M:Intents.INRestaurantGuest.#ctor(Foundation.NSPersonNameComponents,System.String,System.String)
-M:Intents.INRestaurantGuestDisplayPreferences.Copy(Foundation.NSZone)
M:Intents.INRestaurantGuestResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INRestaurantGuestResolutionResult.GetConfirmationRequired(Intents.INRestaurantGuest)
M:Intents.INRestaurantGuestResolutionResult.GetDisambiguation(Intents.INRestaurantGuest[])
M:Intents.INRestaurantGuestResolutionResult.GetSuccess(Intents.INRestaurantGuest)
M:Intents.INRestaurantGuestResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INRestaurantOffer.Copy(Foundation.NSZone)
M:Intents.INRestaurantReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Foundation.NSUrl,Intents.INDateComponentsRange,System.Nullable{System.Int32},CoreLocation.CLPlacemark)
M:Intents.INRestaurantReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Intents.INDateComponentsRange,System.Nullable{System.Int32},CoreLocation.CLPlacemark)
-M:Intents.INRestaurantReservation.Copy(Foundation.NSZone)
M:Intents.INRestaurantReservationBooking.#ctor(Intents.INRestaurant,Foundation.NSDate,System.UIntPtr,System.String)
-M:Intents.INRestaurantReservationBooking.Copy(Foundation.NSZone)
M:Intents.INRestaurantReservationUserBooking.#ctor(Intents.INRestaurant,Foundation.NSDate,System.UIntPtr,System.String,Intents.INRestaurantGuest,Intents.INRestaurantReservationUserBookingStatus,Foundation.NSDate)
M:Intents.INRestaurantReservationUserBooking.#ctor(Intents.INRestaurant,Foundation.NSDate,System.UIntPtr,System.String)
-M:Intents.INRestaurantReservationUserBooking.Copy(Foundation.NSZone)
M:Intents.INRestaurantResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INRestaurantResolutionResult.GetConfirmationRequired(Intents.INRestaurant)
M:Intents.INRestaurantResolutionResult.GetDisambiguation(Intents.INRestaurant[])
@@ -15026,7 +13189,6 @@ M:Intents.INRestaurantResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INResumeWorkoutIntent.#ctor(Intents.INSpeakableString)
M:Intents.INResumeWorkoutIntentHandling_Extensions.Confirm(Intents.IINResumeWorkoutIntentHandling,Intents.INResumeWorkoutIntent,System.Action{Intents.INResumeWorkoutIntentResponse})
M:Intents.INResumeWorkoutIntentResponse.#ctor(Intents.INResumeWorkoutIntentResponseCode,Foundation.NSUserActivity)
-M:Intents.INRideCompletionStatus.Copy(Foundation.NSZone)
M:Intents.INRideCompletionStatus.GetCanceledByService
M:Intents.INRideCompletionStatus.GetCanceledByUser
M:Intents.INRideCompletionStatus.GetCanceledMissedPickup
@@ -15036,15 +13198,9 @@ M:Intents.INRideCompletionStatus.GetOutstandingPaymentAmount(Intents.INCurrencyA
M:Intents.INRideCompletionStatus.GetSettledPaymentAmount(Intents.INCurrencyAmount)
M:Intents.INRideDriver.#ctor(Intents.INPersonHandle,Foundation.NSPersonNameComponents,System.String,Intents.INImage,System.String,System.String)
M:Intents.INRideDriver.#ctor(System.String,Foundation.NSPersonNameComponents,System.String,Intents.INImage,System.String)
-M:Intents.INRideDriver.Copy(Foundation.NSZone)
M:Intents.INRideFareLineItem.#ctor(System.String,Foundation.NSDecimalNumber,System.String)
-M:Intents.INRideFareLineItem.Copy(Foundation.NSZone)
M:Intents.INRideOption.#ctor(System.String,Foundation.NSDate)
-M:Intents.INRideOption.Copy(Foundation.NSZone)
M:Intents.INRidePartySizeOption.#ctor(Foundation.NSRange,System.String,Intents.INPriceRange)
-M:Intents.INRidePartySizeOption.Copy(Foundation.NSZone)
-M:Intents.INRideStatus.Copy(Foundation.NSZone)
-M:Intents.INRideVehicle.Copy(Foundation.NSZone)
M:Intents.INSaveProfileInCarIntent.#ctor(Foundation.NSNumber,System.String)
M:Intents.INSaveProfileInCarIntentHandling_Extensions.Confirm(Intents.IINSaveProfileInCarIntentHandling,Intents.INSaveProfileInCarIntent,System.Action{Intents.INSaveProfileInCarIntentResponse})
M:Intents.INSaveProfileInCarIntentResponse.#ctor(Intents.INSaveProfileInCarIntentResponseCode,Foundation.NSUserActivity)
@@ -15084,7 +13240,6 @@ M:Intents.INSearchForPhotosIntent.#ctor(Intents.INDateComponentsRange,CoreLocati
M:Intents.INSearchForPhotosIntentHandling_Extensions.Confirm(Intents.IINSearchForPhotosIntentHandling,Intents.INSearchForPhotosIntent,System.Action{Intents.INSearchForPhotosIntentResponse})
M:Intents.INSearchForPhotosIntentResponse.#ctor(Intents.INSearchForPhotosIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INSeat.#ctor(System.String,System.String,System.String,System.String)
-M:Intents.INSeat.Copy(Foundation.NSZone)
M:Intents.INSendMessageAttachment.Create(Intents.INFile)
M:Intents.INSendMessageIntent.#ctor(Intents.INPerson[],Intents.INOutgoingMessageType,System.String,Intents.INSpeakableString,System.String,System.String,Intents.INPerson,Intents.INSendMessageAttachment[])
M:Intents.INSendMessageIntent.#ctor(Intents.INPerson[],System.String,Intents.INSpeakableString,System.String,System.String,Intents.INPerson)
@@ -15162,7 +13317,6 @@ M:Intents.INShareFocusStatusIntentHandling_Extensions.ConfirmShareFocusStatus(In
M:Intents.INShareFocusStatusIntentResponse.#ctor(Intents.INShareFocusStatusIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INShortcut.#ctor(Foundation.NSUserActivity)
M:Intents.INShortcut.#ctor(Intents.INIntent)
-M:Intents.INShortcut.Copy(Foundation.NSZone)
M:Intents.INSnoozeTasksIntent.#ctor(Intents.INTask[],Intents.INDateComponentsRange,System.Nullable{System.Boolean})
M:Intents.INSnoozeTasksIntentHandling_Extensions.Confirm(Intents.IINSnoozeTasksIntentHandling,Intents.INSnoozeTasksIntent,System.Action{Intents.INSnoozeTasksIntentResponse})
M:Intents.INSnoozeTasksIntentHandling_Extensions.ResolveNextTriggerTime(Intents.IINSnoozeTasksIntentHandling,Intents.INSnoozeTasksIntent,System.Action{Intents.INDateComponentsRangeResolutionResult})
@@ -15176,16 +13330,13 @@ M:Intents.INSnoozeTasksTaskResolutionResult.GetSuccess(Intents.INTask)
M:Intents.INSnoozeTasksTaskResolutionResult.GetUnsupported(Intents.INSnoozeTasksTaskUnsupportedReason)
M:Intents.INSnoozeTasksTaskResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INSpatialEventTrigger.#ctor(CoreLocation.CLPlacemark,Intents.INSpatialEvent)
-M:Intents.INSpatialEventTrigger.Copy(Foundation.NSZone)
M:Intents.INSpatialEventTriggerResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INSpatialEventTriggerResolutionResult.GetConfirmationRequired(Intents.INSpatialEventTrigger)
M:Intents.INSpatialEventTriggerResolutionResult.GetDisambiguation(Intents.INSpatialEventTrigger[])
M:Intents.INSpatialEventTriggerResolutionResult.GetSuccess(Intents.INSpatialEventTrigger)
M:Intents.INSpatialEventTriggerResolutionResult.GetUnsupported(System.IntPtr)
-M:Intents.INSpeakable_Extensions.GetIdentifier(Intents.IINSpeakable)
M:Intents.INSpeakableString.#ctor(System.String,System.String,System.String)
M:Intents.INSpeakableString.#ctor(System.String)
-M:Intents.INSpeakableString.Copy(Foundation.NSZone)
M:Intents.INSpeakableStringResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INSpeakableStringResolutionResult.GetConfirmationRequired(Intents.INSpeakableString)
M:Intents.INSpeakableStringResolutionResult.GetDisambiguation(Intents.INSpeakableString[])
@@ -15238,7 +13389,6 @@ M:Intents.INStartWorkoutIntent.#ctor(Intents.INSpeakableString,Foundation.NSNumb
M:Intents.INStartWorkoutIntentHandling_Extensions.Confirm(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INStartWorkoutIntentResponse})
M:Intents.INStartWorkoutIntentResponse.#ctor(Intents.INStartWorkoutIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INSticker.#ctor(Intents.INStickerType,System.String)
-M:Intents.INSticker.Copy(Foundation.NSZone)
M:Intents.INStringResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INStringResolutionResult.GetConfirmationRequired(System.String)
M:Intents.INStringResolutionResult.GetDisambiguation(System.String[])
@@ -15246,9 +13396,7 @@ M:Intents.INStringResolutionResult.GetSuccess(System.String)
M:Intents.INStringResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INTask.#ctor(Intents.INSpeakableString,Intents.INTaskStatus,Intents.INTaskType,Intents.INSpatialEventTrigger,Intents.INTemporalEventTrigger,Foundation.NSDateComponents,Foundation.NSDateComponents,System.String,Intents.INTaskPriority)
M:Intents.INTask.#ctor(Intents.INSpeakableString,Intents.INTaskStatus,Intents.INTaskType,Intents.INSpatialEventTrigger,Intents.INTemporalEventTrigger,Foundation.NSDateComponents,Foundation.NSDateComponents,System.String)
-M:Intents.INTask.Copy(Foundation.NSZone)
M:Intents.INTaskList.#ctor(Intents.INSpeakableString,Intents.INTask[],Intents.INSpeakableString,Foundation.NSDateComponents,Foundation.NSDateComponents,System.String)
-M:Intents.INTaskList.Copy(Foundation.NSZone)
M:Intents.INTaskListResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INTaskListResolutionResult.GetConfirmationRequired(Intents.INTaskList)
M:Intents.INTaskListResolutionResult.GetDisambiguation(Intents.INTaskList[])
@@ -15273,7 +13421,6 @@ M:Intents.INTemperatureResolutionResult.GetDisambiguation(Foundation.NSMeasureme
M:Intents.INTemperatureResolutionResult.GetSuccess(Foundation.NSMeasurement{Foundation.NSUnitTemperature})
M:Intents.INTemperatureResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INTemporalEventTrigger.#ctor(Intents.INDateComponentsRange)
-M:Intents.INTemporalEventTrigger.Copy(Foundation.NSZone)
M:Intents.INTemporalEventTriggerResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INTemporalEventTriggerResolutionResult.GetConfirmationRequired(Intents.INTemporalEventTrigger)
M:Intents.INTemporalEventTriggerResolutionResult.GetDisambiguation(Intents.INTemporalEventTrigger[])
@@ -15284,23 +13431,17 @@ M:Intents.INTemporalEventTriggerTypeOptionsResolutionResult.GetConfirmationRequi
M:Intents.INTemporalEventTriggerTypeOptionsResolutionResult.GetSuccess(Intents.INTemporalEventTriggerTypeOptions)
M:Intents.INTemporalEventTriggerTypeOptionsResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INTermsAndConditions.#ctor(System.String,Foundation.NSUrl,Foundation.NSUrl)
-M:Intents.INTermsAndConditions.Copy(Foundation.NSZone)
M:Intents.INTextNoteContent.#ctor(System.String)
-M:Intents.INTextNoteContent.Copy(Foundation.NSZone)
M:Intents.INTicketedEvent.#ctor(Intents.INTicketedEventCategory,System.String,Intents.INDateComponentsRange,CoreLocation.CLPlacemark)
-M:Intents.INTicketedEvent.Copy(Foundation.NSZone)
M:Intents.INTicketedEventReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Foundation.NSUrl,Intents.INSeat,Intents.INTicketedEvent)
M:Intents.INTicketedEventReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Intents.INSeat,Intents.INTicketedEvent)
-M:Intents.INTicketedEventReservation.Copy(Foundation.NSZone)
M:Intents.INTimeIntervalResolutionResult.ConfirmationRequired(System.Double)
M:Intents.INTimeIntervalResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr)
M:Intents.INTimeIntervalResolutionResult.GetSuccess(System.Double)
M:Intents.INTimeIntervalResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INTrainReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Foundation.NSUrl,Intents.INSeat,Intents.INTrainTrip)
M:Intents.INTrainReservation.#ctor(Intents.INSpeakableString,System.String,Foundation.NSDate,Intents.INReservationStatus,System.String,Intents.INReservationAction[],Intents.INSeat,Intents.INTrainTrip)
-M:Intents.INTrainReservation.Copy(Foundation.NSZone)
M:Intents.INTrainTrip.#ctor(System.String,System.String,System.String,Intents.INDateComponentsRange,CoreLocation.CLPlacemark,System.String,CoreLocation.CLPlacemark,System.String)
-M:Intents.INTrainTrip.Copy(Foundation.NSZone)
M:Intents.INTransferMoneyIntent.#ctor(Intents.INPaymentAccount,Intents.INPaymentAccount,Intents.INPaymentAmount,Intents.INDateComponentsRange,System.String)
M:Intents.INTransferMoneyIntentResponse.#ctor(Intents.INTransferMoneyIntentResponseCode,Foundation.NSUserActivity)
M:Intents.INUnsendMessagesIntent.#ctor(System.String[])
@@ -15334,7 +13475,6 @@ M:Intents.INVisualCodeTypeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.INVocabulary.RemoveAllVocabularyStrings
M:Intents.INVocabulary.SetVocabulary(Foundation.NSOrderedSet{Intents.IINSpeakable},Intents.INVocabularyStringType)
M:Intents.INVocabulary.SetVocabularyStrings(Foundation.NSOrderedSet{Foundation.NSString},Intents.INVocabularyStringType)
-M:Intents.INVoiceShortcut.Copy(Foundation.NSZone)
M:Intents.INVoiceShortcutCenter.GetAllVoiceShortcuts(Intents.INVoiceShortcutCenterGetVoiceShortcutsHandler)
M:Intents.INVoiceShortcutCenter.GetAllVoiceShortcutsAsync
M:Intents.INVoiceShortcutCenter.GetVoiceShortcut(Foundation.NSUuid,System.Action{Intents.INVoiceShortcut,Foundation.NSError})
@@ -15353,42 +13493,21 @@ M:Intents.INWorkoutLocationTypeResolutionResult.GetConfirmationRequired(Intents.
M:Intents.INWorkoutLocationTypeResolutionResult.GetSuccess(Intents.INWorkoutLocationType)
M:Intents.INWorkoutLocationTypeResolutionResult.GetUnsupported(System.IntPtr)
M:Intents.NSExtensionContext_ShareExtension.GetIntent(Foundation.NSExtensionContext)
-M:Intents.NSUserActivity_IntentsAdditions.GetInteraction(Foundation.NSUserActivity)
M:Intents.NSUserActivity_IntentsAdditions.GetShortcutAvailability(Foundation.NSUserActivity)
M:Intents.NSUserActivity_IntentsAdditions.GetSuggestedInvocationPhrase(Foundation.NSUserActivity)
M:Intents.NSUserActivity_IntentsAdditions.SetShortcutAvailability(Foundation.NSUserActivity,Intents.INShortcutAvailabilityOptions)
M:Intents.NSUserActivity_IntentsAdditions.SetSuggestedInvocationPhrase(Foundation.NSUserActivity,System.String)
-M:IntentsUI.IINUIAddVoiceShortcutButtonDelegate.PresentAddVoiceShortcut(IntentsUI.INUIAddVoiceShortcutViewController,IntentsUI.INUIAddVoiceShortcutButton)
-M:IntentsUI.IINUIAddVoiceShortcutButtonDelegate.PresentEditVoiceShortcut(IntentsUI.INUIEditVoiceShortcutViewController,IntentsUI.INUIAddVoiceShortcutButton)
-M:IntentsUI.IINUIAddVoiceShortcutViewControllerDelegate.DidCancel(IntentsUI.INUIAddVoiceShortcutViewController)
-M:IntentsUI.IINUIAddVoiceShortcutViewControllerDelegate.DidFinish(IntentsUI.INUIAddVoiceShortcutViewController,Intents.INVoiceShortcut,Foundation.NSError)
-M:IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate.DidCancel(IntentsUI.INUIEditVoiceShortcutViewController)
-M:IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate.DidDelete(IntentsUI.INUIEditVoiceShortcutViewController,Foundation.NSUuid)
-M:IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate.DidUpdate(IntentsUI.INUIEditVoiceShortcutViewController,Intents.INVoiceShortcut,Foundation.NSError)
-M:IntentsUI.IINUIHostedViewControlling.Configure(Intents.INInteraction,IntentsUI.INUIHostedViewContext,System.Action{CoreGraphics.CGSize})
M:IntentsUI.INUIAddVoiceShortcutButton.#ctor(IntentsUI.INUIAddVoiceShortcutButtonStyle)
M:IntentsUI.INUIAddVoiceShortcutButton.Dispose(System.Boolean)
M:IntentsUI.INUIAddVoiceShortcutButton.INUIAddVoiceShortcutButtonAppearance.#ctor(System.IntPtr)
M:IntentsUI.INUIAddVoiceShortcutButton.SetStyle(IntentsUI.INUIAddVoiceShortcutButtonStyle)
-M:IntentsUI.INUIAddVoiceShortcutButtonDelegate.PresentAddVoiceShortcut(IntentsUI.INUIAddVoiceShortcutViewController,IntentsUI.INUIAddVoiceShortcutButton)
-M:IntentsUI.INUIAddVoiceShortcutButtonDelegate.PresentEditVoiceShortcut(IntentsUI.INUIEditVoiceShortcutViewController,IntentsUI.INUIAddVoiceShortcutButton)
M:IntentsUI.INUIAddVoiceShortcutViewController.#ctor(Intents.INShortcut)
M:IntentsUI.INUIAddVoiceShortcutViewController.Dispose(System.Boolean)
-M:IntentsUI.INUIAddVoiceShortcutViewControllerDelegate.DidCancel(IntentsUI.INUIAddVoiceShortcutViewController)
-M:IntentsUI.INUIAddVoiceShortcutViewControllerDelegate.DidFinish(IntentsUI.INUIAddVoiceShortcutViewController,Intents.INVoiceShortcut,Foundation.NSError)
M:IntentsUI.INUIEditVoiceShortcutViewController.#ctor(Intents.INVoiceShortcut)
M:IntentsUI.INUIEditVoiceShortcutViewController.Dispose(System.Boolean)
-M:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate.DidCancel(IntentsUI.INUIEditVoiceShortcutViewController)
-M:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate.DidDelete(IntentsUI.INUIEditVoiceShortcutViewController,Foundation.NSUuid)
-M:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate.DidUpdate(IntentsUI.INUIEditVoiceShortcutViewController,Intents.INVoiceShortcut,Foundation.NSError)
-M:IntentsUI.INUIHostedViewControlling_Extensions.Configure(IntentsUI.IINUIHostedViewControlling,Intents.INInteraction,IntentsUI.INUIHostedViewContext,System.Action{CoreGraphics.CGSize})
M:IntentsUI.INUIHostedViewSiriProviding_Extensions.GetDisplaysMap(IntentsUI.IINUIHostedViewSiriProviding)
M:IntentsUI.INUIHostedViewSiriProviding_Extensions.GetDisplaysMessage(IntentsUI.IINUIHostedViewSiriProviding)
M:IntentsUI.INUIHostedViewSiriProviding_Extensions.GetDisplaysPaymentTransaction(IntentsUI.IINUIHostedViewSiriProviding)
-M:IntentsUI.NSExtensionContext_INUIHostedViewControlling.GetHostedViewMaximumAllowedSize(Foundation.NSExtensionContext)
-M:IntentsUI.NSExtensionContext_INUIHostedViewControlling.GetHostedViewMinimumAllowedSize(Foundation.NSExtensionContext)
-M:IntentsUI.NSExtensionContext_INUIHostedViewControlling.GetInterfaceParametersDescription(Foundation.NSExtensionContext)
-M:LinkPresentation.LPLinkMetadata.Copy(Foundation.NSZone)
M:LinkPresentation.LPLinkView.#ctor(CoreGraphics.CGRect)
M:LinkPresentation.LPLinkView.#ctor(Foundation.NSUrl)
M:LinkPresentation.LPLinkView.#ctor(LinkPresentation.LPLinkMetadata)
@@ -15404,7 +13523,6 @@ M:LocalAuthentication.LADomainStateCompanion.GetStateHash(LocalAuthentication.LA
M:LocalAuthentication.LAEnvironment.AddObserver(LocalAuthentication.ILAEnvironmentObserver)
M:LocalAuthentication.LAEnvironment.RemoveObserver(LocalAuthentication.ILAEnvironmentObserver)
M:LocalAuthentication.LAEnvironmentObserver.StateDidChangeFromOldState(LocalAuthentication.LAEnvironment,LocalAuthentication.LAEnvironmentState)
-M:LocalAuthentication.LAEnvironmentState.Copy(Foundation.NSZone)
M:LocalAuthentication.LAPrivateKey.CanDecrypt(Security.SecKeyAlgorithm)
M:LocalAuthentication.LAPrivateKey.CanExchangeKeys(Security.SecKeyAlgorithm)
M:LocalAuthentication.LAPrivateKey.CanSign(Security.SecKeyAlgorithm)
@@ -15463,8 +13581,6 @@ M:MailKit.IMEMessageSecurityHandler.SetPrimaryActionClicked(Foundation.NSData,Sy
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.MEDecodedMessageBanner.Copy(Foundation.NSZone)
-M:MailKit.MEEmailAddress.Copy(Foundation.NSZone)
M:MailKit.MEExtension_Extensions.GetHandlerForComposeSession(MailKit.IMEExtension,MailKit.MEComposeSession)
M:MailKit.MEExtension_Extensions.GetHandlerForContentBlocker(MailKit.IMEExtension)
M:MailKit.MEExtension_Extensions.GetHandlerForMessageActions(MailKit.IMEExtension)
@@ -15481,9 +13597,6 @@ M:MapKit.IMKMapItemDetailViewControllerDelegate.DidFinish(MapKit.MKMapItemDetail
M:MapKit.IMKMapViewDelegate.DidDeselectAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation)
M:MapKit.IMKMapViewDelegate.DidSelectAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation)
M:MapKit.IMKMapViewDelegate.GetSelectionAccessory(MapKit.MKMapView,MapKit.IMKAnnotation)
-M:MapKit.IMKReverseGeocoderDelegate.FailedWithError(MapKit.MKReverseGeocoder,Foundation.NSError)
-M:MapKit.IMKReverseGeocoderDelegate.FoundWithPlacemark(MapKit.MKReverseGeocoder,MapKit.MKPlacemark)
-M:MapKit.MKAddressFilter.Copy(Foundation.NSZone)
M:MapKit.MKAnnotation_Extensions.GetSubtitle(MapKit.IMKAnnotation)
M:MapKit.MKAnnotation_Extensions.GetTitle(MapKit.IMKAnnotation)
M:MapKit.MKAnnotationView.Dispose(System.Boolean)
@@ -15494,11 +13607,8 @@ M:MapKit.MKCompassButton.MKCompassButtonAppearance.#ctor(System.IntPtr)
M:MapKit.MKDirections.CalculateDirectionsAsync
M:MapKit.MKDirections.CalculateETAAsync
M:MapKit.MKLaunchOptions.#ctor
-M:MapKit.MKLocalPointsOfInterestRequest.Copy(Foundation.NSZone)
M:MapKit.MKLocalSearch.StartAsync
M:MapKit.MKLocalSearchCompleter.Dispose(System.Boolean)
-M:MapKit.MKLocalSearchRequest.Copy(Foundation.NSZone)
-M:MapKit.MKLookAroundScene.Copy(Foundation.NSZone)
M:MapKit.MKLookAroundSceneRequest.GetSceneAsync
M:MapKit.MKLookAroundSnapshotter.GetSnapshotAsync
M:MapKit.MKLookAroundViewController.Dispose(System.Boolean)
@@ -15508,12 +13618,7 @@ 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.MKMapCamera.Copy(Foundation.NSZone)
-M:MapKit.MKMapCameraBoundary.Copy(Foundation.NSZone)
-M:MapKit.MKMapCameraZoomRange.Copy(Foundation.NSZone)
-M:MapKit.MKMapConfiguration.Copy(Foundation.NSZone)
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.OpenInMapsAsync(Foundation.NSDictionary,UIKit.UIScene)
@@ -15521,7 +13626,6 @@ M:MapKit.MKMapItem.OpenInMapsAsync(Foundation.NSDictionary)
M:MapKit.MKMapItem.OpenMapsAsync(MapKit.MKMapItem[],Foundation.NSDictionary,UIKit.UIScene)
M:MapKit.MKMapItem.OpenMapsAsync(MapKit.MKMapItem[],Foundation.NSDictionary)
M:MapKit.MKMapItemDetailViewController.Dispose(System.Boolean)
-M:MapKit.MKMapItemIdentifier.Copy(Foundation.NSZone)
M:MapKit.MKMapItemRequest.GetMapItemAsync
M:MapKit.MKMapPoint.op_Equality(MapKit.MKMapPoint,MapKit.MKMapPoint)
M:MapKit.MKMapPoint.op_Inequality(MapKit.MKMapPoint,MapKit.MKMapPoint)
@@ -15529,7 +13633,6 @@ M:MapKit.MKMapRect.op_Equality(MapKit.MKMapRect,MapKit.MKMapRect)
M:MapKit.MKMapRect.op_Inequality(MapKit.MKMapRect,MapKit.MKMapRect)
M:MapKit.MKMapSize.op_Equality(MapKit.MKMapSize,MapKit.MKMapSize)
M:MapKit.MKMapSize.op_Inequality(MapKit.MKMapSize,MapKit.MKMapSize)
-M:MapKit.MKMapSnapshotOptions.Copy(Foundation.NSZone)
M:MapKit.MKMapSnapshotter.StartAsync
M:MapKit.MKMapView.add_CalloutAccessoryControlTapped(System.EventHandler{MapKit.MKMapViewAccessoryTappedEventArgs})
M:MapKit.MKMapView.add_ChangedDragState(System.EventHandler{MapKit.MKMapViewDragStateEventArgs})
@@ -15590,8 +13693,6 @@ M:MapKit.MKPinAnnotationView.MKPinAnnotationViewAppearance.#ctor(System.IntPtr)
M:MapKit.MKPitchControl.#ctor(CoreGraphics.CGRect)
M:MapKit.MKPitchControl.Dispose(System.Boolean)
M:MapKit.MKPitchControl.MKPitchControlAppearance.#ctor(System.IntPtr)
-M:MapKit.MKPlacemark.Copy(Foundation.NSZone)
-M:MapKit.MKPointOfInterestFilter.Copy(Foundation.NSZone)
M:MapKit.MKPolygonView.MKPolygonViewAppearance.#ctor(System.IntPtr)
M:MapKit.MKPolylineView.MKPolylineViewAppearance.#ctor(System.IntPtr)
M:MapKit.MKReverseGeocoder.Dispose(System.Boolean)
@@ -15605,8 +13706,6 @@ M:MapKit.MKUserTrackingButton.MKUserTrackingButtonAppearance.#ctor(System.IntPtr
M:MapKit.MKZoomControl.#ctor(CoreGraphics.CGRect)
M:MapKit.MKZoomControl.Dispose(System.Boolean)
M:MapKit.MKZoomControl.MKZoomControlAppearance.#ctor(System.IntPtr)
-M:MapKit.NSUserActivity_MKMapItem.GetMapItem(Foundation.NSUserActivity)
-M:MapKit.NSUserActivity_MKMapItem.SetMapItem(Foundation.NSUserActivity,MapKit.MKMapItem)
M:MediaAccessibility.MACaptionAppearance.DidDisplayCaptions(Foundation.NSAttributedString[])
M:MediaAccessibility.MACaptionAppearance.DidDisplayCaptions(System.String[])
M:MediaAccessibility.MAFlashingLightsProcessor.CanProcess(IOSurface.IOSurface)
@@ -15651,30 +13750,14 @@ 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.MEFileInfo.Copy(Foundation.NSZone)
-M:MediaExtension.MEFormatReaderInstantiationOptions.Copy(Foundation.NSZone)
M:MediaExtension.MESampleCursorChunk.#ctor(MediaExtension.MEByteSource,AVFoundation.AVSampleCursorStorageRange,AVFoundation.AVSampleCursorChunkInfo,System.IntPtr)
-M:MediaExtension.MESampleCursorChunk.Copy(Foundation.NSZone)
-M:MediaExtension.MESampleLocation.Copy(Foundation.NSZone)
-M:MediaExtension.METrackInfo.Copy(Foundation.NSZone)
M:MediaLibrary.MLMediaGroup.Dispose(System.Boolean)
M:MediaLibrary.MLMediaObject.Dispose(System.Boolean)
M:MediaLibrary.MLMediaSource.Dispose(System.Boolean)
-M:MediaPlayer.AVMediaSelectionGroup_MPNowPlayingInfoLanguageOptionAdditions.CreateNowPlayingInfoLanguageOptionGroup(AVFoundation.AVMediaSelectionGroup)
-M:MediaPlayer.AVMediaSelectionOption_MPNowPlayingInfoLanguageOptionAdditions.CreateNowPlayingInfoLanguageOption(AVFoundation.AVMediaSelectionOption)
-M:MediaPlayer.IMPMediaPlayback.BeginSeekingBackward
-M:MediaPlayer.IMPMediaPlayback.BeginSeekingForward
-M:MediaPlayer.IMPMediaPlayback.EndSeeking
-M:MediaPlayer.IMPMediaPlayback.Pause
-M:MediaPlayer.IMPMediaPlayback.Play
-M:MediaPlayer.IMPMediaPlayback.PrepareToPlay
-M:MediaPlayer.IMPMediaPlayback.Stop
M:MediaPlayer.IMPNowPlayingSessionDelegate.DidChangeActive(MediaPlayer.MPNowPlayingSession)
M:MediaPlayer.IMPNowPlayingSessionDelegate.DidChangeCanBecomeActive(MediaPlayer.MPNowPlayingSession)
M:MediaPlayer.IMPPlayableContentDataSource.GetContentItem(Foundation.NSIndexPath)
-M:MediaPlayer.IMPSystemMusicPlayerController.OpenToPlay(MediaPlayer.MPMusicPlayerQueueDescriptor)
M:MediaPlayer.MPAdTimeRange.#ctor(CoreMedia.CMTimeRange)
-M:MediaPlayer.MPAdTimeRange.Copy(Foundation.NSZone)
M:MediaPlayer.MPMediaItemArtwork.#ctor(CoreGraphics.CGSize,System.Func{CoreGraphics.CGSize,AppKit.NSImage})
M:MediaPlayer.MPMediaItemArtwork.#ctor(CoreGraphics.CGSize,System.Func{CoreGraphics.CGSize,UIKit.UIImage})
M:MediaPlayer.MPMediaItemArtwork.#ctor(UIKit.UIImage)
@@ -15684,30 +13767,10 @@ M:MediaPlayer.MPMediaPickerController.add_ItemsPicked(System.EventHandler{MediaP
M:MediaPlayer.MPMediaPickerController.Dispose(System.Boolean)
M:MediaPlayer.MPMediaPickerController.remove_DidCancel(System.EventHandler)
M:MediaPlayer.MPMediaPickerController.remove_ItemsPicked(System.EventHandler{MediaPlayer.ItemsPickedEventArgs})
-M:MediaPlayer.MPMediaQuery.Copy(Foundation.NSZone)
M:MediaPlayer.MPMediaQuery.GetCollection(System.UIntPtr)
M:MediaPlayer.MPMediaQuery.GetItem(System.UIntPtr)
M:MediaPlayer.MPMediaQuery.GetSection(System.UIntPtr)
-M:MediaPlayer.MPMediaQuerySection.Copy(Foundation.NSZone)
-M:MediaPlayer.MPMovieAccessLog.Copy(Foundation.NSZone)
-M:MediaPlayer.MPMovieAccessLogEvent.Copy(Foundation.NSZone)
-M:MediaPlayer.MPMovieErrorLog.Copy(Foundation.NSZone)
-M:MediaPlayer.MPMovieErrorLogEvent.Copy(Foundation.NSZone)
-M:MediaPlayer.MPMoviePlayerController.BeginSeekingBackward
-M:MediaPlayer.MPMoviePlayerController.BeginSeekingForward
-M:MediaPlayer.MPMoviePlayerController.EndSeeking
-M:MediaPlayer.MPMoviePlayerController.Pause
-M:MediaPlayer.MPMoviePlayerController.Play
-M:MediaPlayer.MPMoviePlayerController.PrepareToPlay
-M:MediaPlayer.MPMoviePlayerController.Stop
-M:MediaPlayer.MPMusicPlayerController.BeginSeekingBackward
-M:MediaPlayer.MPMusicPlayerController.BeginSeekingForward
-M:MediaPlayer.MPMusicPlayerController.EndSeeking
-M:MediaPlayer.MPMusicPlayerController.Pause
-M:MediaPlayer.MPMusicPlayerController.Play
-M:MediaPlayer.MPMusicPlayerController.PrepareToPlay
M:MediaPlayer.MPMusicPlayerController.PrepareToPlayAsync
-M:MediaPlayer.MPMusicPlayerController.Stop
M:MediaPlayer.MPNowPlayingSession.#ctor(AVFoundation.AVPlayer[])
M:MediaPlayer.MPNowPlayingSession.AddPlayer(AVFoundation.AVPlayer)
M:MediaPlayer.MPNowPlayingSession.BecomeActiveIfPossible(System.Action{System.Boolean})
@@ -15721,18 +13784,12 @@ M:MediaPlayer.MPNowPlayingSessionDelegate.DidChangeCanBecomeActive(MediaPlayer.M
M:MediaPlayer.MPPlayableContentDataSource.GetContentItem(Foundation.NSIndexPath)
M:MediaPlayer.MPPlayableContentManager.Dispose(System.Boolean)
M:MediaPlayer.MPVolumeView.MPVolumeViewAppearance.#ctor(System.IntPtr)
-M:MediaPlayer.NSUserActivity_MediaPlayerAdditions.GetExternalMediaContentIdentifier(Foundation.NSUserActivity)
-M:MediaPlayer.NSUserActivity_MediaPlayerAdditions.SetExternalMediaContentIdentifier(Foundation.NSUserActivity,Foundation.NSString)
M:MediaSetup.MSServiceAccount.#ctor(System.String,System.String)
M:MediaSetup.MSSetupSession.#ctor(MediaSetup.MSServiceAccount)
M:MediaSetup.MSSetupSession.Dispose(System.Boolean)
M:MediaSetup.MSSetupSession.Start(Foundation.NSError@)
M:MediaToolbox.MTAudioProcessingTap.GetSourceAudio(System.IntPtr,AudioToolbox.AudioBuffers,MediaToolbox.MTAudioProcessingTapFlags@,CoreMedia.CMTimeRange@,System.IntPtr@)
-M:Messages.IMSMessagesAppTranscriptPresentation.GetContentSizeThatFits(CoreGraphics.CGSize)
-M:Messages.IMSStickerBrowserViewDataSource.GetNumberOfStickers(Messages.MSStickerBrowserView)
M:Messages.IMSStickerBrowserViewDataSource.GetSticker(Messages.MSStickerBrowserView,System.IntPtr)
-M:Messages.MSMessage.Copy(Foundation.NSZone)
-M:Messages.MSMessageLayout.Copy(Foundation.NSZone)
M:Messages.MSSticker.#ctor(Foundation.NSUrl,Foundation.NSUuid,System.String)
M:Messages.MSStickerBrowserView.Dispose(System.Boolean)
M:Messages.MSStickerBrowserView.MSStickerBrowserViewAppearance.#ctor(System.IntPtr)
@@ -15780,9 +13837,7 @@ M:Metal.IMTLArgumentEncoder.SetIntersectionFunctionTables(Metal.IMTLIntersection
M:Metal.IMTLArgumentEncoder.SetRenderPipelineState(Metal.IMTLRenderPipelineState,System.UIntPtr)
M:Metal.IMTLArgumentEncoder.SetRenderPipelineStates(Metal.IMTLRenderPipelineState[],Foundation.NSRange)
M:Metal.IMTLArgumentEncoder.SetSamplerState(Metal.IMTLSamplerState,System.UIntPtr)
-M:Metal.IMTLArgumentEncoder.SetSamplerStates(Metal.IMTLSamplerState[],Foundation.NSRange)
M:Metal.IMTLArgumentEncoder.SetTexture(Metal.IMTLTexture,System.UIntPtr)
-M:Metal.IMTLArgumentEncoder.SetTextures(Metal.IMTLTexture[],Foundation.NSRange)
M:Metal.IMTLArgumentEncoder.SetVisibleFunctionTable(Metal.IMTLVisibleFunctionTable,System.UIntPtr)
M:Metal.IMTLArgumentEncoder.SetVisibleFunctionTables(Metal.IMTLVisibleFunctionTable[],Foundation.NSRange)
M:Metal.IMTLBinaryArchive.AddComputePipelineFunctions(Metal.MTLComputePipelineDescriptor,Foundation.NSError@)
@@ -15801,8 +13856,6 @@ M:Metal.IMTLBlitCommandEncoder.CopyFromBuffer(Metal.IMTLBuffer,System.UIntPtr,Sy
M:Metal.IMTLBlitCommandEncoder.CopyFromTexture(Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin,Metal.MTLSize,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr,Metal.MTLBlitOption)
M:Metal.IMTLBlitCommandEncoder.CopyFromTexture(Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin,Metal.MTLSize,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLBlitCommandEncoder.CopyFromTexture(Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin,Metal.MTLSize,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin)
-M:Metal.IMTLBlitCommandEncoder.FillBuffer(Metal.IMTLBuffer,Foundation.NSRange,System.Byte)
-M:Metal.IMTLBlitCommandEncoder.GenerateMipmapsForTexture(Metal.IMTLTexture)
M:Metal.IMTLBlitCommandEncoder.GetTextureAccessCounters(Metal.IMTLTexture,Metal.MTLRegion,System.UIntPtr,System.UIntPtr,System.Boolean,Metal.IMTLBuffer,System.UIntPtr)
M:Metal.IMTLBlitCommandEncoder.Optimize(Metal.IMTLIndirectCommandBuffer,Foundation.NSRange)
M:Metal.IMTLBlitCommandEncoder.OptimizeContentsForCpuAccess(Metal.IMTLTexture,System.UIntPtr,System.UIntPtr)
@@ -15813,54 +13866,32 @@ M:Metal.IMTLBlitCommandEncoder.ResetCommands(Metal.IMTLIndirectCommandBuffer,Fou
M:Metal.IMTLBlitCommandEncoder.ResetTextureAccessCounters(Metal.IMTLTexture,Metal.MTLRegion,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLBlitCommandEncoder.ResolveCounters(Metal.IMTLCounterSampleBuffer,Foundation.NSRange,Metal.IMTLBuffer,System.UIntPtr)
M:Metal.IMTLBlitCommandEncoder.SampleCounters(Metal.IMTLCounterSampleBuffer,System.UIntPtr,System.Boolean)
-M:Metal.IMTLBlitCommandEncoder.Synchronize(Metal.IMTLResource)
M:Metal.IMTLBlitCommandEncoder.Synchronize(Metal.IMTLTexture,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLBlitCommandEncoder.Update(Metal.IMTLFence)
M:Metal.IMTLBlitCommandEncoder.Wait(Metal.IMTLFence)
M:Metal.IMTLBuffer.AddDebugMarker(System.String,Foundation.NSRange)
M:Metal.IMTLBuffer.CreateRemoteBuffer(Metal.IMTLDevice)
M:Metal.IMTLBuffer.CreateTexture(Metal.MTLTextureDescriptor,System.UIntPtr,System.UIntPtr)
-M:Metal.IMTLBuffer.DidModify(Foundation.NSRange)
M:Metal.IMTLBuffer.RemoveAllDebugMarkers
-M:Metal.IMTLCaptureScope.BeginScope
-M:Metal.IMTLCaptureScope.EndScope
-M:Metal.IMTLCommandBuffer.AddCompletedHandler(System.Action{Metal.IMTLCommandBuffer})
-M:Metal.IMTLCommandBuffer.AddScheduledHandler(System.Action{Metal.IMTLCommandBuffer})
-M:Metal.IMTLCommandBuffer.Commit
M:Metal.IMTLCommandBuffer.ComputeCommandEncoderDispatch(Metal.MTLDispatchType)
M:Metal.IMTLCommandBuffer.CreateAccelerationStructureCommandEncoder
M:Metal.IMTLCommandBuffer.CreateAccelerationStructureCommandEncoder(Metal.MTLAccelerationStructurePassDescriptor)
M:Metal.IMTLCommandBuffer.CreateBlitCommandEncoder(Metal.MTLBlitPassDescriptor)
M:Metal.IMTLCommandBuffer.CreateComputeCommandEncoder(Metal.MTLComputePassDescriptor)
-M:Metal.IMTLCommandBuffer.CreateParallelRenderCommandEncoder(Metal.MTLRenderPassDescriptor)
-M:Metal.IMTLCommandBuffer.CreateRenderCommandEncoder(Metal.MTLRenderPassDescriptor)
M:Metal.IMTLCommandBuffer.CreateResourceStateCommandEncoder(Metal.MTLResourceStatePassDescriptor)
M:Metal.IMTLCommandBuffer.EncodeSignal(Metal.IMTLEvent,System.UInt64)
M:Metal.IMTLCommandBuffer.EncodeWait(Metal.IMTLEvent,System.UInt64)
-M:Metal.IMTLCommandBuffer.Enqueue
M:Metal.IMTLCommandBuffer.PopDebugGroup
-M:Metal.IMTLCommandBuffer.PresentDrawable(Metal.IMTLDrawable,System.Double)
-M:Metal.IMTLCommandBuffer.PresentDrawable(Metal.IMTLDrawable)
M:Metal.IMTLCommandBuffer.PresentDrawableAfter(Metal.IMTLDrawable,System.Double)
M:Metal.IMTLCommandBuffer.PushDebugGroup(System.String)
M:Metal.IMTLCommandBuffer.UseResidencySet(Metal.IMTLResidencySet)
M:Metal.IMTLCommandBuffer.UseResidencySets(System.IntPtr,System.UIntPtr)
-M:Metal.IMTLCommandBuffer.WaitUntilCompleted
-M:Metal.IMTLCommandBuffer.WaitUntilScheduled
-M:Metal.IMTLCommandEncoder.EndEncoding
-M:Metal.IMTLCommandEncoder.InsertDebugSignpost(System.String)
-M:Metal.IMTLCommandEncoder.PopDebugGroup
-M:Metal.IMTLCommandEncoder.PushDebugGroup(System.String)
M:Metal.IMTLCommandQueue.AddResidencySet(Metal.IMTLResidencySet)
M:Metal.IMTLCommandQueue.AddResidencySets(System.IntPtr,System.UIntPtr)
-M:Metal.IMTLCommandQueue.CommandBuffer
-M:Metal.IMTLCommandQueue.CommandBufferWithUnretainedReferences
M:Metal.IMTLCommandQueue.CreateCommandBuffer(Metal.MTLCommandBufferDescriptor)
-M:Metal.IMTLCommandQueue.InsertDebugCaptureBoundary
M:Metal.IMTLCommandQueue.RemoveResidencySet(Metal.IMTLResidencySet)
M:Metal.IMTLCommandQueue.RemoveResidencySets(System.IntPtr,System.UIntPtr)
M:Metal.IMTLComputeCommandEncoder.DispatchThreadgroups(Metal.IMTLBuffer,System.UIntPtr,Metal.MTLSize)
-M:Metal.IMTLComputeCommandEncoder.DispatchThreadgroups(Metal.MTLSize,Metal.MTLSize)
M:Metal.IMTLComputeCommandEncoder.DispatchThreads(Metal.MTLSize,Metal.MTLSize)
M:Metal.IMTLComputeCommandEncoder.ExecuteCommands(Metal.IMTLIndirectCommandBuffer,Foundation.NSRange)
M:Metal.IMTLComputeCommandEncoder.ExecuteCommands(Metal.IMTLIndirectCommandBuffer,Metal.IMTLBuffer,System.UIntPtr)
@@ -15876,18 +13907,14 @@ M:Metal.IMTLComputeCommandEncoder.SetBuffers(System.IntPtr,System.IntPtr,Foundat
M:Metal.IMTLComputeCommandEncoder.SetBuffers(System.IntPtr,System.IntPtr,System.IntPtr,Foundation.NSRange)
M:Metal.IMTLComputeCommandEncoder.SetBytes(System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLComputeCommandEncoder.SetBytes(System.IntPtr,System.UIntPtr,System.UIntPtr)
-M:Metal.IMTLComputeCommandEncoder.SetComputePipelineState(Metal.IMTLComputePipelineState)
M:Metal.IMTLComputeCommandEncoder.SetImageblock(System.UIntPtr,System.UIntPtr)
M:Metal.IMTLComputeCommandEncoder.SetIntersectionFunctionTable(Metal.IMTLIntersectionFunctionTable,System.UIntPtr)
M:Metal.IMTLComputeCommandEncoder.SetIntersectionFunctionTables(Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange)
M:Metal.IMTLComputeCommandEncoder.SetSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)
M:Metal.IMTLComputeCommandEncoder.SetSamplerState(Metal.IMTLSamplerState,System.UIntPtr)
-M:Metal.IMTLComputeCommandEncoder.SetSamplerStates(Metal.IMTLSamplerState[],Foundation.NSRange)
-M:Metal.IMTLComputeCommandEncoder.SetSamplerStates(Metal.IMTLSamplerState[],System.IntPtr,System.IntPtr,Foundation.NSRange)
M:Metal.IMTLComputeCommandEncoder.SetStage(Metal.MTLRegion)
M:Metal.IMTLComputeCommandEncoder.SetStageInRegion(Metal.IMTLBuffer,System.UIntPtr)
M:Metal.IMTLComputeCommandEncoder.SetTexture(Metal.IMTLTexture,System.UIntPtr)
-M:Metal.IMTLComputeCommandEncoder.SetTextures(Metal.IMTLTexture[],Foundation.NSRange)
M:Metal.IMTLComputeCommandEncoder.SetThreadgroupMemoryLength(System.UIntPtr,System.UIntPtr)
M:Metal.IMTLComputeCommandEncoder.SetVisibleFunctionTable(Metal.IMTLVisibleFunctionTable,System.UIntPtr)
M:Metal.IMTLComputeCommandEncoder.SetVisibleFunctionTables(Metal.IMTLVisibleFunctionTable[],Foundation.NSRange)
@@ -15915,19 +13942,12 @@ M:Metal.IMTLDevice.CreateBinaryArchive(Metal.MTLBinaryArchiveDescriptor,Foundati
M:Metal.IMTLDevice.CreateBuffer(System.IntPtr,System.UIntPtr,Metal.MTLResourceOptions)
M:Metal.IMTLDevice.CreateBuffer(System.UIntPtr,Metal.MTLResourceOptions)
M:Metal.IMTLDevice.CreateBufferNoCopy(System.IntPtr,System.UIntPtr,Metal.MTLResourceOptions,Metal.MTLDeallocator)
-M:Metal.IMTLDevice.CreateCommandQueue
M:Metal.IMTLDevice.CreateCommandQueue(Metal.MTLCommandQueueDescriptor)
M:Metal.IMTLDevice.CreateCommandQueue(System.UIntPtr)
-M:Metal.IMTLDevice.CreateComputePipelineState(Metal.IMTLFunction,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateComputePipelineState(Metal.IMTLFunction,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection@,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateComputePipelineState(Metal.IMTLFunction,Metal.MTLPipelineOption,System.Action{Metal.IMTLComputePipelineState,Metal.MTLComputePipelineReflection,Foundation.NSError})
-M:Metal.IMTLDevice.CreateComputePipelineState(Metal.IMTLFunction,System.Action{Metal.IMTLComputePipelineState,Foundation.NSError})
M:Metal.IMTLDevice.CreateComputePipelineState(Metal.MTLComputePipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLComputePipelineReflection@,Foundation.NSError@)
M:Metal.IMTLDevice.CreateComputePipelineState(Metal.MTLComputePipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLNewComputePipelineStateWithReflectionCompletionHandler)
M:Metal.IMTLDevice.CreateCounterSampleBuffer(Metal.MTLCounterSampleBufferDescriptor,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateDefaultLibrary
M:Metal.IMTLDevice.CreateDefaultLibrary(Foundation.NSBundle,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateDepthStencilState(Metal.MTLDepthStencilDescriptor)
M:Metal.IMTLDevice.CreateDynamicLibrary(Foundation.NSUrl,Foundation.NSError@)
M:Metal.IMTLDevice.CreateDynamicLibrary(Metal.IMTLLibrary,Foundation.NSError@)
M:Metal.IMTLDevice.CreateEvent
@@ -15938,28 +13958,19 @@ M:Metal.IMTLDevice.CreateLibrary(CoreFoundation.DispatchData,Foundation.NSError@
M:Metal.IMTLDevice.CreateLibrary(Foundation.NSUrl,Foundation.NSError@)
M:Metal.IMTLDevice.CreateLibrary(Metal.MTLStitchedLibraryDescriptor,Foundation.NSError@)
M:Metal.IMTLDevice.CreateLibrary(Metal.MTLStitchedLibraryDescriptor,System.Action{Metal.IMTLLibrary,Foundation.NSError})
-M:Metal.IMTLDevice.CreateLibrary(System.String,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateLibrary(System.String,Metal.MTLCompileOptions,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateLibrary(System.String,Metal.MTLCompileOptions,System.Action{Metal.IMTLLibrary,Foundation.NSError})
M:Metal.IMTLDevice.CreateLibraryAsync(Metal.MTLStitchedLibraryDescriptor)
M:Metal.IMTLDevice.CreateLibraryAsync(System.String,Metal.MTLCompileOptions)
M:Metal.IMTLDevice.CreateRasterizationRateMap(Metal.MTLRasterizationRateMapDescriptor)
M:Metal.IMTLDevice.CreateRenderPipelineState(Metal.MTLMeshRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLNewRenderPipelineStateWithReflectionCompletionHandler)
M:Metal.IMTLDevice.CreateRenderPipelineState(Metal.MTLMeshRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLRenderPipelineReflection@,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLRenderPipelineReflection@,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,Metal.MTLPipelineOption,System.Action{Metal.IMTLRenderPipelineState,Metal.MTLRenderPipelineReflection,Foundation.NSError})
-M:Metal.IMTLDevice.CreateRenderPipelineState(Metal.MTLRenderPipelineDescriptor,System.Action{Metal.IMTLRenderPipelineState,Foundation.NSError})
M:Metal.IMTLDevice.CreateRenderPipelineState(Metal.MTLTileRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLNewRenderPipelineStateWithReflectionCompletionHandler)
M:Metal.IMTLDevice.CreateRenderPipelineState(Metal.MTLTileRenderPipelineDescriptor,Metal.MTLPipelineOption,Metal.MTLRenderPipelineReflection@,Foundation.NSError@)
M:Metal.IMTLDevice.CreateResidencySet(Metal.MTLResidencySetDescriptor,Foundation.NSError@)
-M:Metal.IMTLDevice.CreateSamplerState(Metal.MTLSamplerDescriptor)
M:Metal.IMTLDevice.CreateSharedEvent
M:Metal.IMTLDevice.CreateSharedEvent(Metal.MTLSharedEventHandle)
M:Metal.IMTLDevice.CreateSharedTexture(Metal.MTLSharedTextureHandle)
M:Metal.IMTLDevice.CreateSharedTexture(Metal.MTLTextureDescriptor)
M:Metal.IMTLDevice.CreateTexture(Metal.MTLTextureDescriptor,IOSurface.IOSurface,System.UIntPtr)
-M:Metal.IMTLDevice.CreateTexture(Metal.MTLTextureDescriptor)
M:Metal.IMTLDevice.GetDefaultSamplePositions(System.IntPtr,System.UIntPtr)
M:Metal.IMTLDevice.GetHeapAccelerationStructureSizeAndAlign(Metal.MTLAccelerationStructureDescriptor)
M:Metal.IMTLDevice.GetHeapAccelerationStructureSizeAndAlign(System.UIntPtr)
@@ -15974,13 +13985,10 @@ M:Metal.IMTLDevice.GetSparseTileSize(Metal.MTLTextureType,Metal.MTLPixelFormat,S
M:Metal.IMTLDevice.GetSparseTileSizeInBytes(Metal.MTLSparsePageSize)
M:Metal.IMTLDevice.SupportsCounterSampling(Metal.MTLCounterSamplingPoint)
M:Metal.IMTLDevice.SupportsFamily(Metal.MTLGpuFamily)
-M:Metal.IMTLDevice.SupportsFeatureSet(Metal.MTLFeatureSet)
M:Metal.IMTLDevice.SupportsRasterizationRateMap(System.UIntPtr)
M:Metal.IMTLDevice.SupportsTextureSampleCount(System.UIntPtr)
M:Metal.IMTLDevice.SupportsVertexAmplification(System.UIntPtr)
M:Metal.IMTLDrawable.AddPresentedHandler(System.Action{Metal.IMTLDrawable})
-M:Metal.IMTLDrawable.Present
-M:Metal.IMTLDrawable.Present(System.Double)
M:Metal.IMTLDrawable.PresentAfter(System.Double)
M:Metal.IMTLDynamicLibrary.Serialize(Foundation.NSUrl,Foundation.NSError@)
M:Metal.IMTLFunction.CreateArgumentEncoder(System.UIntPtr,Metal.MTLArgument@)
@@ -15992,12 +14000,9 @@ M:Metal.IMTLHeap.CreateAccelerationStructure(System.UIntPtr)
M:Metal.IMTLHeap.CreateBuffer(System.UIntPtr,Metal.MTLResourceOptions,System.UIntPtr)
M:Metal.IMTLHeap.CreateBuffer(System.UIntPtr,Metal.MTLResourceOptions)
M:Metal.IMTLHeap.CreateTexture(Metal.MTLTextureDescriptor,System.UIntPtr)
-M:Metal.IMTLHeap.CreateTexture(Metal.MTLTextureDescriptor)
M:Metal.IMTLHeap.GetMaxAvailableSize(System.UIntPtr)
-M:Metal.IMTLHeap.SetPurgeableState(Metal.MTLPurgeableState)
M:Metal.IMTLIndirectCommandBuffer.GetCommand(System.UIntPtr)
M:Metal.IMTLIndirectCommandBuffer.GetIndirectComputeCommand(System.UIntPtr)
-M:Metal.IMTLIndirectCommandBuffer.Reset(Foundation.NSRange)
M:Metal.IMTLIndirectComputeCommand.ClearBarrier
M:Metal.IMTLIndirectComputeCommand.ConcurrentDispatchThreadgroups(Metal.MTLSize,Metal.MTLSize)
M:Metal.IMTLIndirectComputeCommand.ConcurrentDispatchThreads(Metal.MTLSize,Metal.MTLSize)
@@ -16016,13 +14021,11 @@ M:Metal.IMTLIndirectRenderCommand.DrawMeshThreadgroups(Metal.MTLSize,Metal.MTLSi
M:Metal.IMTLIndirectRenderCommand.DrawMeshThreads(Metal.MTLSize,Metal.MTLSize,Metal.MTLSize)
M:Metal.IMTLIndirectRenderCommand.DrawPatches(System.UIntPtr,System.UIntPtr,System.UIntPtr,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLIndirectRenderCommand.DrawPrimitives(Metal.MTLPrimitiveType,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
-M:Metal.IMTLIndirectRenderCommand.Reset
M:Metal.IMTLIndirectRenderCommand.SetBarrier
M:Metal.IMTLIndirectRenderCommand.SetFragmentBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLIndirectRenderCommand.SetMeshBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLIndirectRenderCommand.SetObjectBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLIndirectRenderCommand.SetObjectThreadgroupMemoryLength(System.UIntPtr,System.UIntPtr)
-M:Metal.IMTLIndirectRenderCommand.SetRenderPipelineState(Metal.IMTLRenderPipelineState)
M:Metal.IMTLIndirectRenderCommand.SetVertexBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLIndirectRenderCommand.SetVertexBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLIntersectionFunctionTable.SetBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
@@ -16039,12 +14042,10 @@ M:Metal.IMTLLibrary.CreateFunction(Metal.MTLFunctionDescriptor,Foundation.NSErro
M:Metal.IMTLLibrary.CreateFunction(Metal.MTLFunctionDescriptor,System.Action{Metal.IMTLFunction,Foundation.NSError})
M:Metal.IMTLLibrary.CreateFunction(System.String,Metal.MTLFunctionConstantValues,Foundation.NSError@)
M:Metal.IMTLLibrary.CreateFunction(System.String,Metal.MTLFunctionConstantValues,System.Action{Metal.IMTLFunction,Foundation.NSError})
-M:Metal.IMTLLibrary.CreateFunction(System.String)
M:Metal.IMTLLibrary.CreateFunctionAsync(System.String,Metal.MTLFunctionConstantValues)
M:Metal.IMTLLibrary.CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,Foundation.NSError@)
M:Metal.IMTLLibrary.CreateIntersectionFunction(Metal.MTLIntersectionFunctionDescriptor,System.Action{Metal.IMTLFunction,Foundation.NSError})
M:Metal.IMTLLogState.AddLogHandler(Metal.MTLLogStateLogHandler)
-M:Metal.IMTLParallelRenderCommandEncoder.CreateRenderCommandEncoder
M:Metal.IMTLParallelRenderCommandEncoder.SetColorStoreAction(Metal.MTLStoreAction,System.UIntPtr)
M:Metal.IMTLParallelRenderCommandEncoder.SetColorStoreActionOptions(Metal.MTLStoreActionOptions,System.UIntPtr)
M:Metal.IMTLParallelRenderCommandEncoder.SetDepthStoreAction(Metal.MTLStoreAction)
@@ -16077,31 +14078,22 @@ M:Metal.IMTLRenderCommandEncoder.ExecuteCommands(Metal.IMTLIndirectCommandBuffer
M:Metal.IMTLRenderCommandEncoder.ExecuteCommands(Metal.IMTLIndirectCommandBuffer,Metal.IMTLBuffer,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.MemoryBarrier(Metal.IMTLResource[],System.UIntPtr,Metal.MTLRenderStages,Metal.MTLRenderStages)
M:Metal.IMTLRenderCommandEncoder.SampleCounters(Metal.IMTLCounterSampleBuffer,System.UIntPtr,System.Boolean)
-M:Metal.IMTLRenderCommandEncoder.SetBlendColor(System.Single,System.Single,System.Single,System.Single)
M:Metal.IMTLRenderCommandEncoder.SetColorStoreAction(Metal.MTLStoreAction,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetColorStoreActionOptions(Metal.MTLStoreActionOptions,System.UIntPtr)
-M:Metal.IMTLRenderCommandEncoder.SetCullMode(Metal.MTLCullMode)
-M:Metal.IMTLRenderCommandEncoder.SetDepthBias(System.Single,System.Single,System.Single)
M:Metal.IMTLRenderCommandEncoder.SetDepthClipMode(Metal.MTLDepthClipMode)
-M:Metal.IMTLRenderCommandEncoder.SetDepthStencilState(Metal.IMTLDepthStencilState)
M:Metal.IMTLRenderCommandEncoder.SetDepthStoreAction(Metal.MTLStoreAction)
M:Metal.IMTLRenderCommandEncoder.SetDepthStoreActionOptions(Metal.MTLStoreActionOptions)
M:Metal.IMTLRenderCommandEncoder.SetFragmentAccelerationStructure(Metal.IMTLAccelerationStructure,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetFragmentBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetFragmentBufferOffset(System.UIntPtr,System.UIntPtr)
-M:Metal.IMTLRenderCommandEncoder.SetFragmentBuffers(Metal.IMTLBuffer,System.IntPtr,Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetFragmentBytes(System.IntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetFragmentIntersectionFunctionTable(Metal.IMTLIntersectionFunctionTable,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetFragmentIntersectionFunctionTables(Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetFragmentSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetFragmentSamplerState(Metal.IMTLSamplerState,System.UIntPtr)
-M:Metal.IMTLRenderCommandEncoder.SetFragmentSamplerStates(Metal.IMTLSamplerState[],Foundation.NSRange)
-M:Metal.IMTLRenderCommandEncoder.SetFragmentSamplerStates(Metal.IMTLSamplerState[],System.IntPtr,System.IntPtr,Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetFragmentTexture(Metal.IMTLTexture,System.UIntPtr)
-M:Metal.IMTLRenderCommandEncoder.SetFragmentTextures(Metal.IMTLTexture[],Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetFragmentVisibleFunctionTable(Metal.IMTLVisibleFunctionTable,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetFragmentVisibleFunctionTables(Metal.IMTLVisibleFunctionTable[],Foundation.NSRange)
-M:Metal.IMTLRenderCommandEncoder.SetFrontFacingWinding(Metal.MTLWinding)
M:Metal.IMTLRenderCommandEncoder.SetMeshBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetMeshBufferOffset(System.UIntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetMeshBuffers(System.IntPtr,System.IntPtr,Foundation.NSRange)
@@ -16123,11 +14115,8 @@ M:Metal.IMTLRenderCommandEncoder.SetObjectSamplerStates(System.IntPtr,System.Int
M:Metal.IMTLRenderCommandEncoder.SetObjectTexture(Metal.IMTLTexture,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetObjectTextures(System.IntPtr,Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetObjectThreadgroupMemoryLength(System.UIntPtr,System.UIntPtr)
-M:Metal.IMTLRenderCommandEncoder.SetRenderPipelineState(Metal.IMTLRenderPipelineState)
-M:Metal.IMTLRenderCommandEncoder.SetScissorRect(Metal.MTLScissorRect)
M:Metal.IMTLRenderCommandEncoder.SetScissorRects(System.IntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetStencilFrontReferenceValue(System.UInt32,System.UInt32)
-M:Metal.IMTLRenderCommandEncoder.SetStencilReferenceValue(System.UInt32)
M:Metal.IMTLRenderCommandEncoder.SetStencilStoreAction(Metal.MTLStoreAction)
M:Metal.IMTLRenderCommandEncoder.SetStencilStoreActionOptions(Metal.MTLStoreActionOptions)
M:Metal.IMTLRenderCommandEncoder.SetTessellationFactorBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
@@ -16148,14 +14137,12 @@ M:Metal.IMTLRenderCommandEncoder.SetTileTexture(Metal.IMTLTexture,System.UIntPtr
M:Metal.IMTLRenderCommandEncoder.SetTileTextures(Metal.IMTLTexture[],Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetTileVisibleFunctionTable(Metal.IMTLVisibleFunctionTable,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetTileVisibleFunctionTables(Metal.IMTLVisibleFunctionTable[],Foundation.NSRange)
-M:Metal.IMTLRenderCommandEncoder.SetTriangleFillMode(Metal.MTLTriangleFillMode)
M:Metal.IMTLRenderCommandEncoder.SetVertexAccelerationStructure(Metal.IMTLAccelerationStructure,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetVertexAmplificationCount(System.UIntPtr,Metal.MTLVertexAmplificationViewMapping)
M:Metal.IMTLRenderCommandEncoder.SetVertexBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetVertexBuffer(Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetVertexBufferOffset(System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetVertexBufferOffset(System.UIntPtr,System.UIntPtr)
-M:Metal.IMTLRenderCommandEncoder.SetVertexBuffers(Metal.IMTLBuffer[],System.IntPtr,Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetVertexBuffers(System.IntPtr,System.IntPtr,System.IntPtr,Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetVertexBytes(System.IntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetVertexBytes(System.IntPtr,System.UIntPtr,System.UIntPtr)
@@ -16163,13 +14150,9 @@ M:Metal.IMTLRenderCommandEncoder.SetVertexIntersectionFunctionTable(Metal.IMTLIn
M:Metal.IMTLRenderCommandEncoder.SetVertexIntersectionFunctionTables(Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetVertexSamplerState(Metal.IMTLSamplerState,System.Single,System.Single,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetVertexSamplerState(Metal.IMTLSamplerState,System.UIntPtr)
-M:Metal.IMTLRenderCommandEncoder.SetVertexSamplerStates(Metal.IMTLSamplerState[],Foundation.NSRange)
-M:Metal.IMTLRenderCommandEncoder.SetVertexSamplerStates(Metal.IMTLSamplerState[],System.IntPtr,System.IntPtr,Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetVertexTexture(Metal.IMTLTexture,System.UIntPtr)
-M:Metal.IMTLRenderCommandEncoder.SetVertexTextures(Metal.IMTLTexture[],Foundation.NSRange)
M:Metal.IMTLRenderCommandEncoder.SetVertexVisibleFunctionTable(Metal.IMTLVisibleFunctionTable,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetVertexVisibleFunctionTables(Metal.IMTLVisibleFunctionTable[],Foundation.NSRange)
-M:Metal.IMTLRenderCommandEncoder.SetViewport(Metal.MTLViewport)
M:Metal.IMTLRenderCommandEncoder.SetViewports(System.IntPtr,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.SetVisibilityResultMode(Metal.MTLVisibilityResultMode,System.UIntPtr)
M:Metal.IMTLRenderCommandEncoder.TextureBarrier
@@ -16199,21 +14182,17 @@ M:Metal.IMTLResidencySet.RemoveAllocations(System.IntPtr,System.UIntPtr)
M:Metal.IMTLResidencySet.RequestResidency
M:Metal.IMTLResource.MakeAliasable
M:Metal.IMTLResource.SetOwnerWithIdentity(System.UInt32)
-M:Metal.IMTLResource.SetPurgeableState(Metal.MTLPurgeableState)
M:Metal.IMTLResourceStateCommandEncoder.MoveTextureMappings(Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin,Metal.MTLSize,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin)
M:Metal.IMTLResourceStateCommandEncoder.Update(Metal.IMTLFence)
M:Metal.IMTLResourceStateCommandEncoder.Update(Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,Metal.IMTLBuffer,System.UIntPtr)
M:Metal.IMTLResourceStateCommandEncoder.Update(Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,Metal.MTLRegion,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLResourceStateCommandEncoder.Update(Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr)
M:Metal.IMTLResourceStateCommandEncoder.Wait(Metal.IMTLFence)
-M:Metal.IMTLSharedEvent.CreateSharedEventHandle
-M:Metal.IMTLSharedEvent.NotifyListener(Metal.MTLSharedEventListener,System.UInt64,Metal.MTLSharedEventNotificationBlock)
M:Metal.IMTLSharedEvent.WaitUntilSignaledValue(System.UInt64,System.UInt64)
M:Metal.IMTLTexture.Create(Metal.MTLPixelFormat,Metal.MTLTextureType,Foundation.NSRange,Foundation.NSRange,Metal.MTLTextureSwizzleChannels)
M:Metal.IMTLTexture.CreateRemoteTexture(Metal.IMTLDevice)
M:Metal.IMTLTexture.CreateSharedTextureHandle
M:Metal.IMTLTexture.CreateTextureView(Metal.MTLPixelFormat,Metal.MTLTextureType,Foundation.NSRange,Foundation.NSRange)
-M:Metal.IMTLTexture.CreateTextureView(Metal.MTLPixelFormat)
M:Metal.IMTLTexture.GetBytes(System.IntPtr,System.UIntPtr,Metal.MTLRegion,System.UIntPtr)
M:Metal.IMTLTexture.GetBytes(System.IntPtr,System.UIntPtr,System.UIntPtr,Metal.MTLRegion,System.UIntPtr,System.UIntPtr)
M:Metal.IMTLTexture.ReplaceRegion(Metal.MTLRegion,System.UIntPtr,System.IntPtr,System.UIntPtr)
@@ -16221,34 +14200,19 @@ M:Metal.IMTLTexture.ReplaceRegion(Metal.MTLRegion,System.UIntPtr,System.UIntPtr,
M:Metal.IMTLVisibleFunctionTable.SetFunction(Metal.IMTLFunctionHandle,System.UIntPtr)
M:Metal.IMTLVisibleFunctionTable.SetFunctions(Metal.IMTLFunctionHandle[],Foundation.NSRange)
M:Metal.MTLAccelerationStructureCommandEncoder_Extensions.RefitAccelerationStructure(Metal.IMTLAccelerationStructureCommandEncoder,Metal.IMTLAccelerationStructure,Metal.MTLAccelerationStructureDescriptor,Metal.IMTLAccelerationStructure,Metal.IMTLBuffer,System.UIntPtr,Metal.MTLAccelerationStructureRefitOptions)
-M:Metal.MTLAccelerationStructureDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLAccelerationStructureGeometryDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLAccelerationStructurePassDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLArchitecture.Copy(Foundation.NSZone)
-M:Metal.MTLArgumentDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLArgumentEncoder_Extensions.SetAccelerationStructure(Metal.IMTLArgumentEncoder,Metal.IMTLAccelerationStructure,System.UIntPtr)
M:Metal.MTLArgumentEncoder_Extensions.SetBuffers(Metal.IMTLArgumentEncoder,Metal.IMTLBuffer[],System.UIntPtr[],Foundation.NSRange)
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.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.MTLBlitPassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLBuffer_Extensions.GetGpuAddress(Metal.IMTLBuffer)
-M:Metal.MTLBufferLayoutDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLCaptureDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLCommandBuffer_Extensions.CreateAccelerationStructureCommandEncoder(Metal.IMTLCommandBuffer,Metal.MTLAccelerationStructurePassDescriptor)
M:Metal.MTLCommandBuffer_Extensions.CreateAccelerationStructureCommandEncoder(Metal.IMTLCommandBuffer)
M:Metal.MTLCommandBuffer_Extensions.CreateResourceStateCommandEncoder(Metal.IMTLCommandBuffer,Metal.MTLResourceStatePassDescriptor)
M:Metal.MTLCommandBuffer_Extensions.GetResourceStateCommandEncoder(Metal.IMTLCommandBuffer)
-M:Metal.MTLCommandBufferDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLCommandQueueDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLCompileOptions.Copy(Foundation.NSZone)
M:Metal.MTLComputeCommandEncoder_Extensions.SetAccelerationStructure(Metal.IMTLComputeCommandEncoder,Metal.IMTLAccelerationStructure,System.UIntPtr)
M:Metal.MTLComputeCommandEncoder_Extensions.SetBuffer(Metal.IMTLComputeCommandEncoder,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:Metal.MTLComputeCommandEncoder_Extensions.SetBufferOffset(Metal.IMTLComputeCommandEncoder,System.UIntPtr,System.UIntPtr,System.UIntPtr)
@@ -16258,16 +14222,11 @@ M:Metal.MTLComputeCommandEncoder_Extensions.SetIntersectionFunctionTable(Metal.I
M:Metal.MTLComputeCommandEncoder_Extensions.SetIntersectionFunctionTables(Metal.IMTLComputeCommandEncoder,Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange)
M:Metal.MTLComputeCommandEncoder_Extensions.SetVisibleFunctionTable(Metal.IMTLComputeCommandEncoder,Metal.IMTLVisibleFunctionTable,System.UIntPtr)
M:Metal.MTLComputeCommandEncoder_Extensions.SetVisibleFunctionTables(Metal.IMTLComputeCommandEncoder,Metal.IMTLVisibleFunctionTable[],Foundation.NSRange)
-M:Metal.MTLComputePassDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLComputePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLComputePipelineDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLComputePipelineState_Extensions.CreateComputePipelineState(Metal.IMTLComputePipelineState,Metal.IMTLFunction[],Foundation.NSError@)
M:Metal.MTLComputePipelineState_Extensions.CreateFunctionHandle(Metal.IMTLComputePipelineState,Metal.IMTLFunction)
M:Metal.MTLComputePipelineState_Extensions.CreateIntersectionFunctionTable(Metal.IMTLComputePipelineState,Metal.MTLIntersectionFunctionTableDescriptor)
M:Metal.MTLComputePipelineState_Extensions.CreateVisibleFunctionTable(Metal.IMTLComputePipelineState,Metal.MTLVisibleFunctionTableDescriptor)
M:Metal.MTLComputePipelineState_Extensions.GetGpuResourceId(Metal.IMTLComputePipelineState)
-M:Metal.MTLCounterSampleBufferDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLDepthStencilDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLDevice_Extensions.ConvertSparsePixelRegions(Metal.IMTLDevice,Metal.MTLRegion[],Metal.MTLRegion[],Metal.MTLSize,Metal.MTLSparseTextureRegionAlignmentMode,System.UIntPtr)
M:Metal.MTLDevice_Extensions.ConvertSparsePixelRegions(Metal.IMTLDevice,System.IntPtr,System.IntPtr,Metal.MTLSize,Metal.MTLSparseTextureRegionAlignmentMode,System.UIntPtr)
M:Metal.MTLDevice_Extensions.ConvertSparseTileRegions(Metal.IMTLDevice,Metal.MTLRegion[],Metal.MTLRegion[],Metal.MTLSize,System.UIntPtr)
@@ -16305,18 +14264,11 @@ M:Metal.MTLDevice_Extensions.SupportsRasterizationRateMap(Metal.IMTLDevice,Syste
M:Metal.MTLDevice_Extensions.SupportsVertexAmplification(Metal.IMTLDevice,System.UIntPtr)
M:Metal.MTLDevice.GetAllDevices(Metal.MTLDeviceNotificationHandler,Foundation.NSObject@)
M:Metal.MTLFunction_Extensions.GetOptions(Metal.IMTLFunction)
-M:Metal.MTLFunctionConstantValues.Copy(Foundation.NSZone)
-M:Metal.MTLFunctionDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLFunctionStitchingFunctionNode.Copy(Foundation.NSZone)
-M:Metal.MTLFunctionStitchingGraph.Copy(Foundation.NSZone)
-M:Metal.MTLFunctionStitchingInputNode.Copy(Foundation.NSZone)
M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,Metal.MTLAccelerationStructureDescriptor,System.UIntPtr)
M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,Metal.MTLAccelerationStructureDescriptor)
M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,System.UIntPtr,System.UIntPtr)
M:Metal.MTLHeap_Extensions.CreateAccelerationStructure(Metal.IMTLHeap,System.UIntPtr)
-M:Metal.MTLHeapDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLIndirectCommandBuffer_Extensions.GetGpuResourceID(Metal.IMTLIndirectCommandBuffer)
-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.MTLIndirectRenderCommand_Extensions.ClearBarrier(Metal.IMTLIndirectRenderCommand)
@@ -16327,11 +14279,9 @@ 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.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.MTLIntersectionFunctionTableExtensions.SetBuffers(Metal.IMTLIntersectionFunctionTable,Metal.IMTLBuffer[],System.UIntPtr[],Foundation.NSRange)
M:Metal.MTLIOCompressionContext.AppendData(Foundation.NSData)
M:Metal.MTLIOCompressionContext.AppendData(System.Byte[])
@@ -16342,14 +14292,8 @@ M:Metal.MTLIOCompressionContext.FlushAndDestroy
M:Metal.MTLLibrary_Extensions.CreateFunctionAsync(Metal.IMTLLibrary,System.String,Metal.MTLFunctionConstantValues)
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.MTLLogStateDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLMeshRenderPipelineDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLOrigin.#ctor(System.IntPtr,System.IntPtr,System.IntPtr)
-M:Metal.MTLPipelineBufferDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRasterizationRateLayerDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLRasterizationRateLayerDescriptor.Create(Metal.MTLSize,System.Single[],System.Single[])
-M:Metal.MTLRasterizationRateMapDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLRegion.Create1D(System.IntPtr,System.IntPtr)
M:Metal.MTLRegion.Create1D(System.UIntPtr,System.UIntPtr)
M:Metal.MTLRegion.Create2D(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)
@@ -16401,12 +14345,6 @@ M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexIntersectionFunctionTable(Me
M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexIntersectionFunctionTables(Metal.IMTLRenderCommandEncoder,Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange)
M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexVisibleFunctionTable(Metal.IMTLRenderCommandEncoder,Metal.IMTLVisibleFunctionTable,System.UIntPtr)
M:Metal.MTLRenderCommandEncoder_Extensions.SetVertexVisibleFunctionTables(Metal.IMTLRenderCommandEncoder,Metal.IMTLVisibleFunctionTable[],Foundation.NSRange)
-M:Metal.MTLRenderPassAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRenderPassDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRenderPassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRenderPipelineColorAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRenderPipelineDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLRenderPipelineFunctionsDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLRenderPipelineState_Extensions.FunctionHandleWithFunction(Metal.IMTLRenderPipelineState,Metal.IMTLFunction,Metal.MTLRenderStages)
M:Metal.MTLRenderPipelineState_Extensions.GetMaxTotalThreadsPerMeshThreadgroup(Metal.IMTLRenderPipelineState)
M:Metal.MTLRenderPipelineState_Extensions.GetMaxTotalThreadsPerObjectThreadgroup(Metal.IMTLRenderPipelineState)
@@ -16414,7 +14352,6 @@ M:Metal.MTLRenderPipelineState_Extensions.GetObjectThreadExecutionWidth(Metal.IM
M:Metal.MTLRenderPipelineState_Extensions.NewIntersectionFunctionTableWithDescriptor(Metal.IMTLRenderPipelineState,Metal.MTLIntersectionFunctionTableDescriptor,Metal.MTLRenderStages)
M:Metal.MTLRenderPipelineState_Extensions.NewRenderPipelineStateWithAdditionalBinaryFunctions(Metal.IMTLRenderPipelineState,Metal.MTLRenderPipelineFunctionsDescriptor,Foundation.NSError@)
M:Metal.MTLRenderPipelineState_Extensions.NewVisibleFunctionTableWithDescriptor(Metal.IMTLRenderPipelineState,Metal.MTLVisibleFunctionTableDescriptor,Metal.MTLRenderStages)
-M:Metal.MTLResidencySetDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLResourceStateCommandEncoder_Extensions.MoveTextureMappings(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin,Metal.MTLSize,Metal.IMTLTexture,System.UIntPtr,System.UIntPtr,Metal.MTLOrigin)
M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLFence)
M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,Metal.IMTLBuffer,System.UIntPtr)
@@ -16422,42 +14359,23 @@ M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceState
M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,Metal.MTLRegion[],System.UIntPtr[],System.UIntPtr[])
M:Metal.MTLResourceStateCommandEncoder_Extensions.Update(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLTexture,Metal.MTLSparseTextureMappingMode,System.IntPtr,System.IntPtr,System.IntPtr,System.UIntPtr)
M:Metal.MTLResourceStateCommandEncoder_Extensions.Wait(Metal.IMTLResourceStateCommandEncoder,Metal.IMTLFence)
-M:Metal.MTLResourceStatePassDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor.Copy(Foundation.NSZone)
-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.MTLSize.#ctor(System.IntPtr,System.IntPtr,System.IntPtr)
M:Metal.MTLSizeAndAlign.#ctor(System.UIntPtr,System.UIntPtr)
-M:Metal.MTLStageInputOutputDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLStencilDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLStitchedLibraryDescriptor.Copy(Foundation.NSZone)
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.MTLTileRenderPipelineColorAttachmentDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLTileRenderPipelineDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLVertexAttributeDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLVertexBufferLayoutDescriptor.Copy(Foundation.NSZone)
-M:Metal.MTLVertexDescriptor.Copy(Foundation.NSZone)
M:Metal.MTLVisibleFunctionTable_Extensions.GetGpuResourceId(Metal.IMTLVisibleFunctionTable)
-M:Metal.MTLVisibleFunctionTableDescriptor.Copy(Foundation.NSZone)
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:MetalKit.IMTKViewDelegate.Draw(MetalKit.MTKView)
-M:MetalKit.IMTKViewDelegate.DrawableSizeWillChange(MetalKit.MTKView,CoreGraphics.CGSize)
-M:MetalKit.MTKMeshBuffer.Copy(Foundation.NSZone)
M:MetalKit.MTKMeshBuffer.FillData(Foundation.NSData,System.UIntPtr)
-M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(Foundation.NSData,ModelIO.MDLMeshBufferType)
-M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,Foundation.NSData,ModelIO.MDLMeshBufferType)
M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,System.UIntPtr,ModelIO.MDLMeshBufferType)
M:MetalKit.MTKMeshBufferAllocator.CreateBuffer(System.UIntPtr,ModelIO.MDLMeshBufferType)
-M:MetalKit.MTKMeshBufferAllocator.CreateZone(Foundation.NSNumber[],Foundation.NSNumber[])
M:MetalKit.MTKMeshBufferAllocator.CreateZone(System.UIntPtr)
M:MetalKit.MTKSubmesh.Dispose(System.Boolean)
M:MetalKit.MTKTextureLoader.FromName(System.String,System.Runtime.InteropServices.NFloat,AppKit.NSDisplayGamut,Foundation.NSBundle,MetalKit.MTKTextureLoaderOptions,Foundation.NSError@)
@@ -16478,21 +14396,14 @@ M:MetalKit.MTKView.Dispose(System.Boolean)
M:MetalKit.MTKView.MTKViewAppearance.#ctor(System.IntPtr)
M:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource.GetSupportsSecureCoding``1
M:MetalPerformanceShaders.IMPSCnnConvolutionDataSource.Load
-M:MetalPerformanceShaders.IMPSDeviceProvider.GetMTLDevice
M:MetalPerformanceShaders.IMPSHeapProvider.GetNewHeap(Metal.MTLHeapDescriptor)
M:MetalPerformanceShaders.IMPSHeapProvider.RetireHeap(Metal.IMTLHeap,System.Double)
-M:MetalPerformanceShaders.IMPSImageAllocator.GetImage(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSImageDescriptor,MetalPerformanceShaders.MPSKernel)
M:MetalPerformanceShaders.IMPSImageAllocator.GetImageBatch(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSImageDescriptor,MetalPerformanceShaders.MPSKernel,System.UIntPtr)
-M:MetalPerformanceShaders.IMPSImageTransformProvider.GetTransform(MetalPerformanceShaders.MPSImage,MetalPerformanceShaders.IMPSHandle)
M:MetalPerformanceShaders.IMPSNDArrayAllocator.AllocateArray(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSNDArrayDescriptor,MetalPerformanceShaders.MPSKernel)
M:MetalPerformanceShaders.IMPSNNLossCallback.GetScalarWeight(MetalPerformanceShaders.MPSImage,MetalPerformanceShaders.MPSImage)
-M:MetalPerformanceShaders.MPSAccelerationStructure.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSAccelerationStructure.RebuildAsync
-M:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSource.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSCnnConvolutionDataSource_Extensions.GetKernelWeightsDataType(MetalPerformanceShaders.IMPSCnnConvolutionDataSource)
-M:MetalPerformanceShaders.MPSCnnConvolutionDataSource.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSCnnConvolutionDataSource.Load
-M:MetalPerformanceShaders.MPSCnnConvolutionDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSCnnConvolutionDescriptor.CreateCnnConvolutionDescriptor(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnConvolutionDescriptor.GetConvolutionDescriptor(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShaders.MPSCnnNeuron)
M:MetalPerformanceShaders.MPSCnnCrossChannelNormalization.#ctor(Metal.IMTLDevice,System.UIntPtr)
@@ -16516,15 +14427,12 @@ M:MetalPerformanceShaders.MPSCnnDropoutGradientNode.#ctor(MetalPerformanceShader
M:MetalPerformanceShaders.MPSCnnDropoutGradientNode.Create(MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNGradientStateNode,System.Single,System.UIntPtr,Metal.MTLSize)
M:MetalPerformanceShaders.MPSCnnDropoutNode.#ctor(MetalPerformanceShaders.MPSNNImageNode,System.Single,System.UIntPtr,Metal.MTLSize)
M:MetalPerformanceShaders.MPSCnnDropoutNode.Create(MetalPerformanceShaders.MPSNNImageNode,System.Single,System.UIntPtr,Metal.MTLSize)
-M:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSource.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSCnnLocalContrastNormalization.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradient.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradientNode.#ctor(MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNGradientStateNode,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradientNode.Create(MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNGradientStateNode,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationNode.#ctor(MetalPerformanceShaders.MPSNNImageNode,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationNode.Create(MetalPerformanceShaders.MPSNNImageNode,System.UIntPtr)
-M:MetalPerformanceShaders.MPSCnnLossDataDescriptor.Copy(Foundation.NSZone)
-M:MetalPerformanceShaders.MPSCnnLossDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSCnnNormalizationGammaAndBetaState.GetTemporaryState(Metal.IMTLCommandBuffer,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnNormalizationMeanAndVarianceState.GetTemporaryState(Metal.IMTLCommandBuffer,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnPooling.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
@@ -16576,12 +14484,8 @@ M:MetalPerformanceShaders.MPSCnnUpsamplingNearest.#ctor(Metal.IMTLDevice,System.
M:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradient.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnUpsamplingNearestNode.#ctor(MetalPerformanceShaders.MPSNNImageNode,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSCnnUpsamplingNearestNode.Create(MetalPerformanceShaders.MPSNNImageNode,System.UIntPtr,System.UIntPtr)
-M:MetalPerformanceShaders.MPSCnnYoloLossDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSCnnYoloLossDescriptor.Create(MetalPerformanceShaders.MPSCnnLossType,MetalPerformanceShaders.MPSCnnLossType,MetalPerformanceShaders.MPSCnnLossType,MetalPerformanceShaders.MPSCnnLossType,MetalPerformanceShaders.MPSCnnReductionType,Foundation.NSData,System.UIntPtr)
M:MetalPerformanceShaders.MPSCommandBuffer.#ctor(Metal.IMTLCommandBuffer)
-M:MetalPerformanceShaders.MPSCommandBuffer.AddCompletedHandler(System.Action{Metal.IMTLCommandBuffer})
-M:MetalPerformanceShaders.MPSCommandBuffer.AddScheduledHandler(System.Action{Metal.IMTLCommandBuffer})
-M:MetalPerformanceShaders.MPSCommandBuffer.Commit
M:MetalPerformanceShaders.MPSCommandBuffer.CommitAndContinue
M:MetalPerformanceShaders.MPSCommandBuffer.ComputeCommandEncoderDispatch(Metal.MTLDispatchType)
M:MetalPerformanceShaders.MPSCommandBuffer.Create(Metal.IMTLCommandBuffer)
@@ -16590,22 +14494,15 @@ M:MetalPerformanceShaders.MPSCommandBuffer.CreateAccelerationStructureCommandEnc
M:MetalPerformanceShaders.MPSCommandBuffer.CreateAccelerationStructureCommandEncoder(Metal.MTLAccelerationStructurePassDescriptor)
M:MetalPerformanceShaders.MPSCommandBuffer.CreateBlitCommandEncoder(Metal.MTLBlitPassDescriptor)
M:MetalPerformanceShaders.MPSCommandBuffer.CreateComputeCommandEncoder(Metal.MTLComputePassDescriptor)
-M:MetalPerformanceShaders.MPSCommandBuffer.CreateParallelRenderCommandEncoder(Metal.MTLRenderPassDescriptor)
-M:MetalPerformanceShaders.MPSCommandBuffer.CreateRenderCommandEncoder(Metal.MTLRenderPassDescriptor)
M:MetalPerformanceShaders.MPSCommandBuffer.CreateResourceStateCommandEncoder(Metal.MTLResourceStatePassDescriptor)
M:MetalPerformanceShaders.MPSCommandBuffer.EncodeSignal(Metal.IMTLEvent,System.UInt64)
M:MetalPerformanceShaders.MPSCommandBuffer.EncodeWait(Metal.IMTLEvent,System.UInt64)
-M:MetalPerformanceShaders.MPSCommandBuffer.Enqueue
M:MetalPerformanceShaders.MPSCommandBuffer.PopDebugGroup
M:MetalPerformanceShaders.MPSCommandBuffer.PrefetchHeap(System.UIntPtr)
-M:MetalPerformanceShaders.MPSCommandBuffer.PresentDrawable(Metal.IMTLDrawable,System.Double)
-M:MetalPerformanceShaders.MPSCommandBuffer.PresentDrawable(Metal.IMTLDrawable)
M:MetalPerformanceShaders.MPSCommandBuffer.PresentDrawableAfter(Metal.IMTLDrawable,System.Double)
M:MetalPerformanceShaders.MPSCommandBuffer.PushDebugGroup(System.String)
M:MetalPerformanceShaders.MPSCommandBuffer.UseResidencySet(Metal.IMTLResidencySet)
M:MetalPerformanceShaders.MPSCommandBuffer.UseResidencySets(System.IntPtr,System.UIntPtr)
-M:MetalPerformanceShaders.MPSCommandBuffer.WaitUntilCompleted
-M:MetalPerformanceShaders.MPSCommandBuffer.WaitUntilScheduled
M:MetalPerformanceShaders.MPSGRUDescriptor.Create(System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSHeapProvider_Extensions.RetireHeap(MetalPerformanceShaders.IMPSHeapProvider,Metal.IMTLHeap,System.Double)
M:MetalPerformanceShaders.MPSImage.#ctor(Metal.IMTLTexture,System.UIntPtr)
@@ -16623,7 +14520,6 @@ M:MetalPerformanceShaders.MPSImageAreaMin.#ctor(Metal.IMTLDevice,System.UIntPtr,
M:MetalPerformanceShaders.MPSImageBatch.IncrementReadCount(Foundation.NSArray{MetalPerformanceShaders.MPSImage},System.IntPtr)
M:MetalPerformanceShaders.MPSImageBox.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSImageConversion.#ctor(Metal.IMTLDevice,MetalPerformanceShaders.MPSAlphaType,MetalPerformanceShaders.MPSAlphaType,System.Runtime.InteropServices.NFloat[],CoreGraphics.CGColorConversionInfo)
-M:MetalPerformanceShaders.MPSImageDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSImageDescriptor.GetImageDescriptor(MetalPerformanceShaders.MPSImageFeatureChannelFormat,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,Metal.MTLTextureUsage)
M:MetalPerformanceShaders.MPSImageDescriptor.GetImageDescriptor(MetalPerformanceShaders.MPSImageFeatureChannelFormat,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSImageDilate.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr,System.Single[])
@@ -16650,10 +14546,8 @@ M:MetalPerformanceShaders.MPSImageMedian.#ctor(Metal.IMTLDevice,System.UIntPtr)
M:MetalPerformanceShaders.MPSImageNormalizedHistogram.Encode(Metal.IMTLCommandBuffer,Metal.IMTLTexture,Metal.IMTLTexture,Metal.IMTLBuffer,System.UIntPtr)
M:MetalPerformanceShaders.MPSImagePyramid.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr,System.Single[])
M:MetalPerformanceShaders.MPSImageTent.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr)
-M:MetalPerformanceShaders.MPSKernel.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSKernel.GetPreferredDevice(MetalPerformanceShaders.MPSDeviceOptions)
M:MetalPerformanceShaders.MPSKernel.HintTemporaryMemoryHighWaterMark(Metal.IMTLCommandBuffer,System.UIntPtr)
-M:MetalPerformanceShaders.MPSKeyedUnarchiver.GetMTLDevice
M:MetalPerformanceShaders.MPSLSTMDescriptor.Create(System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSMatrix.#ctor(Metal.IMTLBuffer,System.UIntPtr,MetalPerformanceShaders.MPSMatrixDescriptor)
M:MetalPerformanceShaders.MPSMatrixCopy.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean)
@@ -16673,7 +14567,6 @@ M:MetalPerformanceShaders.MPSMatrixMultiplication.#ctor(Metal.IMTLDevice,System.
M:MetalPerformanceShaders.MPSMatrixMultiplication.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSMatrixRandom.EncodeToCommandBuffer(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSMatrix)
M:MetalPerformanceShaders.MPSMatrixRandom.EncodeToCommandBuffer(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSVector)
-M:MetalPerformanceShaders.MPSMatrixRandomDistributionDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSMatrixRandomDistributionDescriptor.CreateDefault
M:MetalPerformanceShaders.MPSMatrixRandomDistributionDescriptor.CreateUniform(System.Single,System.Single)
M:MetalPerformanceShaders.MPSMatrixRandomMtgp32.#ctor(Foundation.NSCoder,Metal.IMTLDevice)
@@ -16756,7 +14649,6 @@ M:MetalPerformanceShaders.MPSNDArrayMultiaryKernel.EncodeToCommandBuffer(Metal.I
M:MetalPerformanceShaders.MPSNDArrayMultiaryKernel.EncodeToCommandBuffer(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSNDArray[],MetalPerformanceShaders.MPSState@,System.Boolean)
M:MetalPerformanceShaders.MPSNDArrayMultiaryKernel.EncodeToCommandBuffer(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSNDArray[])
M:MetalPerformanceShaders.MPSNDArrayMultiaryKernel.EncodeToCommandEncoder(Metal.IMTLComputeCommandEncoder,Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSNDArray[],MetalPerformanceShaders.MPSNDArray)
-M:MetalPerformanceShaders.MPSNDArrayQuantizationDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSNDArrayQuantizedMatrixMultiplication.#ctor(Metal.IMTLDevice,MetalPerformanceShaders.MPSNDArrayQuantizationDescriptor,MetalPerformanceShaders.MPSNDArrayQuantizationDescriptor)
M:MetalPerformanceShaders.MPSNDArrayUnaryKernel.#ctor(Metal.IMTLDevice)
M:MetalPerformanceShaders.MPSNDArrayUnaryKernel.EncodeToCommandBuffer(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSNDArray,MetalPerformanceShaders.MPSNDArray)
@@ -16779,7 +14671,6 @@ M:MetalPerformanceShaders.MPSNNForwardLossNode.GetFilters(MetalPerformanceShader
M:MetalPerformanceShaders.MPSNNForwardLossNode.GetFilters(MetalPerformanceShaders.MPSNNImageNode[])
M:MetalPerformanceShaders.MPSNNGradientState.#ctor(Metal.IMTLDevice,System.UIntPtr)
M:MetalPerformanceShaders.MPSNNGradientState.CreateTemporaryState(Metal.IMTLCommandBuffer,System.UIntPtr)
-M:MetalPerformanceShaders.MPSNNGraph.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSNNGraph.Create(Metal.IMTLDevice,MetalPerformanceShaders.MPSNNImageNode[],System.Boolean[])
M:MetalPerformanceShaders.MPSNNGraph.Create(Metal.IMTLDevice,MetalPerformanceShaders.MPSNNImageNode[],System.IntPtr)
M:MetalPerformanceShaders.MPSNNGraph.GetReadCountForSourceImage(System.UIntPtr)
@@ -16792,7 +14683,6 @@ M:MetalPerformanceShaders.MPSNNLossGradientNode.#ctor(MetalPerformanceShaders.MP
M:MetalPerformanceShaders.MPSNNLossGradientNode.Create(MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNGradientStateNode,MetalPerformanceShaders.MPSCnnLossDescriptor,System.Boolean)
M:MetalPerformanceShaders.MPSNNLossGradientNode.Create(MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNGradientStateNode,MetalPerformanceShaders.MPSCnnLossDescriptor,System.Boolean)
M:MetalPerformanceShaders.MPSNNLossGradientNode.Create(MetalPerformanceShaders.MPSNNImageNode[],MetalPerformanceShaders.MPSNNGradientStateNode,MetalPerformanceShaders.MPSCnnLossDescriptor,System.Boolean)
-M:MetalPerformanceShaders.MPSNNNeuronDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSNNOptimizerAdam.#ctor(Metal.IMTLDevice,System.Double,System.Double,System.Single,System.UIntPtr,MetalPerformanceShaders.MPSNNOptimizerDescriptor)
M:MetalPerformanceShaders.MPSNNReshapeNode.#ctor(MetalPerformanceShaders.MPSNNImageNode,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:MetalPerformanceShaders.MPSNNReshapeNode.Create(MetalPerformanceShaders.MPSNNImageNode,System.UIntPtr,System.UIntPtr,System.UIntPtr)
@@ -16800,7 +14690,6 @@ M:MetalPerformanceShaders.MPSNNResizeBilinear.#ctor(Metal.IMTLDevice,System.UInt
M:MetalPerformanceShaders.MPSPredicate.#ctor(Metal.IMTLBuffer,System.UIntPtr)
M:MetalPerformanceShaders.MPSPredicate.#ctor(Metal.IMTLDevice)
M:MetalPerformanceShaders.MPSPredicate.Create(Metal.IMTLBuffer,System.UIntPtr)
-M:MetalPerformanceShaders.MPSRayIntersector.Copy(Foundation.NSZone)
M:MetalPerformanceShaders.MPSRayIntersector.EncodeIntersection(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSIntersectionType,Metal.IMTLBuffer,System.UIntPtr,Metal.IMTLBuffer,System.UIntPtr,Metal.IMTLBuffer,System.UIntPtr,MetalPerformanceShaders.MPSAccelerationStructure)
M:MetalPerformanceShaders.MPSRayIntersector.EncodeIntersection(Metal.IMTLCommandBuffer,MetalPerformanceShaders.MPSIntersectionType,Metal.IMTLBuffer,System.UIntPtr,Metal.IMTLBuffer,System.UIntPtr,System.UIntPtr,MetalPerformanceShaders.MPSAccelerationStructure)
M:MetalPerformanceShaders.MPSRayIntersector.GetRecommendedMinimumRayBatchSize(System.UIntPtr)
@@ -17214,23 +15103,17 @@ M:MetalPerformanceShadersGraph.MPSGraph.Run(Metal.IMTLCommandQueue,Foundation.NS
M:MetalPerformanceShadersGraph.MPSGraph.RunAsync(Foundation.NSDictionary{MetalPerformanceShadersGraph.MPSGraphTensor,MetalPerformanceShadersGraph.MPSGraphTensorData},MetalPerformanceShadersGraph.MPSGraphTensor[],MetalPerformanceShadersGraph.MPSGraphOperation[],MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor)
M:MetalPerformanceShadersGraph.MPSGraph.RunAsync(Metal.IMTLCommandQueue,Foundation.NSDictionary{MetalPerformanceShadersGraph.MPSGraphTensor,MetalPerformanceShadersGraph.MPSGraphTensorData},MetalPerformanceShadersGraph.MPSGraphOperation[],Foundation.NSDictionary{MetalPerformanceShadersGraph.MPSGraphTensor,MetalPerformanceShadersGraph.MPSGraphTensorData},MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor)
M:MetalPerformanceShadersGraph.MPSGraph.RunAsync(Metal.IMTLCommandQueue,Foundation.NSDictionary{MetalPerformanceShadersGraph.MPSGraphTensor,MetalPerformanceShadersGraph.MPSGraphTensorData},MetalPerformanceShadersGraph.MPSGraphTensor[],MetalPerformanceShadersGraph.MPSGraphOperation[],MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor)
-M:MetalPerformanceShadersGraph.MPSGraphCompilationDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphCompilationDescriptor.DisableTypeInference
-M:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphPaddingStyle,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphPaddingStyle,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor.SetExplicitPadding(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
-M:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphPaddingStyle,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphPaddingStyle,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor.SetExplicitPadding(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
-M:MetalPerformanceShadersGraph.MPSGraphCreateSparseOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphCreateSparseOpDescriptor.Create(MetalPerformanceShadersGraph.MPSGraphSparseStorageType,MetalPerformanceShaders.MPSDataType)
-M:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor.Create(MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphPaddingStyle,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor.SetExplicitPadding(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
-M:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution3DOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution3DOpDescriptor.Create(MetalPerformanceShadersGraph.MPSGraphPaddingStyle)
M:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution3DOpDescriptor.Create(System.Int32[],System.Int32[],System.Int32[],MetalPerformanceShadersGraph.MPSGraphPaddingStyle)
M:MetalPerformanceShadersGraph.MPSGraphDevice.Create(Metal.IMTLDevice)
@@ -17240,45 +15123,33 @@ M:MetalPerformanceShadersGraph.MPSGraphExecutable.Run(Metal.IMTLCommandQueue,Met
M:MetalPerformanceShadersGraph.MPSGraphExecutable.RunAsync(Metal.IMTLCommandQueue,MetalPerformanceShadersGraph.MPSGraphTensorData[],MetalPerformanceShadersGraph.MPSGraphTensorData[],MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor)
M:MetalPerformanceShadersGraph.MPSGraphExecutable.SerializeToMPSGraphPackage(Foundation.NSUrl,MetalPerformanceShadersGraph.MPSGraphExecutableSerializationDescriptor)
M:MetalPerformanceShadersGraph.MPSGraphExecutable.Specialize(MetalPerformanceShadersGraph.MPSGraphDevice,MetalPerformanceShadersGraph.MPSGraphType[],MetalPerformanceShadersGraph.MPSGraphCompilationDescriptor)
-M:MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor.SignalEvent(Metal.IMTLSharedEvent,MetalPerformanceShadersGraph.MPSGraphExecutionStage,System.UInt64)
M:MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor.WaitForEvent(Metal.IMTLSharedEvent,System.UInt64)
M:MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor.SignalEvent(Metal.IMTLSharedEvent,MetalPerformanceShadersGraph.MPSGraphExecutionStage,System.UInt64)
M:MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor.WaitForEvent(Metal.IMTLSharedEvent,System.UInt64)
-M:MetalPerformanceShadersGraph.MPSGraphFftDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphFftDescriptor.Create
-M:MetalPerformanceShadersGraph.MPSGraphGruDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphGruDescriptor.Create
-M:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor.SetExplicitPadding(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
-M:MetalPerformanceShadersGraph.MPSGraphLstmDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphLstmDescriptor.Create
M:MetalPerformanceShadersGraph.MPSGraphMemoryOps_Extensions.Constant(MetalPerformanceShadersGraph.MPSGraph,System.ReadOnlySpan{System.Single},System.Int32[])
M:MetalPerformanceShadersGraph.MPSGraphMemoryOps_Extensions.Constant(MetalPerformanceShadersGraph.MPSGraph,System.Single)
M:MetalPerformanceShadersGraph.MPSGraphMemoryOps_Extensions.Variable(MetalPerformanceShadersGraph.MPSGraph,System.ReadOnlySpan{System.Single},System.Int32[],System.String)
M:MetalPerformanceShadersGraph.MPSGraphMemoryOps_Extensions.Variable(MetalPerformanceShadersGraph.MPSGraph,System.Single,System.Int32[],System.String)
-M:MetalPerformanceShadersGraph.MPSGraphOperation.Copy(Foundation.NSZone)
-M:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphPaddingStyle,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MetalPerformanceShadersGraph.MPSGraphPaddingStyle,MetalPerformanceShadersGraph.MPSGraphTensorNamedDataLayout)
M:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor.SetExplicitPadding(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
-M:MetalPerformanceShadersGraph.MPSGraphPooling4DOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphPooling4DOpDescriptor.Create(System.Int32[],MetalPerformanceShadersGraph.MPSGraphPaddingStyle)
M:MetalPerformanceShadersGraph.MPSGraphPooling4DOpDescriptor.Create(System.Int32[],System.Int32[],System.Int32[],System.Int32[],MetalPerformanceShadersGraph.MPSGraphPaddingStyle)
-M:MetalPerformanceShadersGraph.MPSGraphRandomOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphRandomOpDescriptor.Create(MetalPerformanceShadersGraph.MPSGraphRandomDistribution,MetalPerformanceShaders.MPSDataType)
M:MetalPerformanceShadersGraph.MPSGraphShapedType.#ctor(System.Int32[],MetalPerformanceShaders.MPSDataType)
M:MetalPerformanceShadersGraph.MPSGraphShapedType.IsEqualTo(MetalPerformanceShadersGraph.MPSGraphShapedType)
-M:MetalPerformanceShadersGraph.MPSGraphSingleGateRnnDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphSingleGateRnnDescriptor.Create
-M:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor.Create(MetalPerformanceShadersGraph.MPSGraphPaddingStyle)
M:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor.Create(MetalPerformanceShadersGraph.MPSGraphReductionMode,System.Int32[],System.Int32[],System.Int32[],System.Int32[],MetalPerformanceShadersGraph.MPSGraphPaddingMode,MetalPerformanceShadersGraph.MPSGraphPaddingStyle,System.Single)
M:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor.Create(System.Int32[],System.Int32[])
M:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor.Create(System.Int32[])
-M:MetalPerformanceShadersGraph.MPSGraphTensor.Copy(Foundation.NSZone)
M:MetalPerformanceShadersGraph.MPSGraphTensorData.#ctor(Foundation.NSArray{MetalPerformanceShaders.MPSImage})
M:MetalPerformanceShadersGraph.MPSGraphTensorData.#ctor(Metal.IMTLBuffer,System.Int32[],MetalPerformanceShaders.MPSDataType,System.UIntPtr)
M:MetalPerformanceShadersGraph.MPSGraphTensorData.#ctor(Metal.IMTLBuffer,System.Int32[],MetalPerformanceShaders.MPSDataType)
@@ -17291,17 +15162,13 @@ M:MetalPerformanceShadersGraph.MPSGraphTensorData.#ctor(MetalPerformanceShadersG
M:MetalPerformanceShadersGraph.MPSGraphTensorData.Create(Metal.IMTLDevice,System.ReadOnlySpan{System.Single},System.Int32[])
M:MetalPerformanceShadersGraph.MPSGraphTensorData.Create(MetalPerformanceShaders.MPSImage[])
M:MetalPerformanceShadersGraph.MPSGraphTensorData.Read(System.Span{System.Single})
-M:MetalPerformanceShadersGraph.MPSGraphType.Copy(Foundation.NSZone)
M:MetricKit.IMXMetricManagerSubscriber.DidReceiveDiagnosticPayloads(MetricKit.MXDiagnosticPayload[])
M:MetricKit.IMXMetricManagerSubscriber.DidReceiveMetricPayloads(MetricKit.MXMetricPayload[])
M:MetricKit.MXMetricManager.MakeLogHandle(Foundation.NSString)
M:MetricKit.MXMetricManagerSubscriber_Extensions.DidReceiveDiagnosticPayloads(MetricKit.IMXMetricManagerSubscriber,MetricKit.MXDiagnosticPayload[])
M:MetricKit.MXMetricManagerSubscriber_Extensions.DidReceiveMetricPayloads(MetricKit.IMXMetricManagerSubscriber,MetricKit.MXMetricPayload[])
M:MetricKit.MXUnitAveragePixelLuminance.#ctor(System.String,Foundation.NSUnitConverter)
-M:MetricKit.MXUnitAveragePixelLuminance.Copy(Foundation.NSZone)
M:MetricKit.MXUnitSignalBars.#ctor(System.String,Foundation.NSUnitConverter)
-M:MetricKit.MXUnitSignalBars.Copy(Foundation.NSZone)
-M:MLCompute.MLCActivationDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCActivationDescriptor.Create(MLCompute.MLCActivationType,System.Single,System.Single,System.Single)
M:MLCompute.MLCActivationDescriptor.Create(MLCompute.MLCActivationType,System.Single,System.Single)
M:MLCompute.MLCActivationDescriptor.Create(MLCompute.MLCActivationType,System.Single)
@@ -17319,11 +15186,9 @@ M:MLCompute.MLCActivationLayer.CreateSoftPlusLayer(System.Single)
M:MLCompute.MLCActivationLayer.CreateSoftShrinkLayer(System.Single)
M:MLCompute.MLCActivationLayer.CreateThresholdLayer(System.Single,System.Single)
M:MLCompute.MLCActivationTypeExtensions.GetDebugDescription(MLCompute.MLCActivationType)
-M:MLCompute.MLCAdamOptimizer.Copy(Foundation.NSZone)
M:MLCompute.MLCAdamOptimizer.Create(MLCompute.MLCOptimizerDescriptor,System.Single,System.Single,System.Single,System.Boolean,System.UIntPtr)
M:MLCompute.MLCAdamOptimizer.Create(MLCompute.MLCOptimizerDescriptor,System.Single,System.Single,System.Single,System.UIntPtr)
M:MLCompute.MLCAdamOptimizer.Create(MLCompute.MLCOptimizerDescriptor)
-M:MLCompute.MLCAdamWOptimizer.Copy(Foundation.NSZone)
M:MLCompute.MLCAdamWOptimizer.GetOptimizer(MLCompute.MLCOptimizerDescriptor,System.Single,System.Single,System.Single,System.Boolean,System.UIntPtr)
M:MLCompute.MLCAdamWOptimizer.GetOptimizer(MLCompute.MLCOptimizerDescriptor)
M:MLCompute.MLCArithmeticLayer.Create(MLCompute.MLCArithmeticOperation)
@@ -17334,7 +15199,6 @@ M:MLCompute.MLCComparisonLayer.Create(MLCompute.MLCComparisonOperation)
M:MLCompute.MLCComparisonOperationExtensions.GetDebugDescription(MLCompute.MLCComparisonOperation)
M:MLCompute.MLCConcatenationLayer.Create
M:MLCompute.MLCConcatenationLayer.Create(System.UIntPtr)
-M:MLCompute.MLCConvolutionDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCConvolutionDescriptor.Create(MLCompute.MLCConvolutionType,System.UIntPtr[],System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr[],System.UIntPtr[],MLCompute.MLCPaddingPolicy,System.UIntPtr[])
M:MLCompute.MLCConvolutionDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr)
M:MLCompute.MLCConvolutionDescriptor.Create(System.UIntPtr[],System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr[],System.UIntPtr[],MLCompute.MLCPaddingPolicy,System.UIntPtr[])
@@ -17347,7 +15211,6 @@ M:MLCompute.MLCConvolutionDescriptor.CreateDepthwiseConvolution(System.UIntPtr[]
M:MLCompute.MLCConvolutionDescriptor.CreateDepthwiseConvolution(System.UIntPtr[],System.UIntPtr,System.UIntPtr,System.UIntPtr[],System.UIntPtr[],MLCompute.MLCPaddingPolicy,System.UIntPtr[])
M:MLCompute.MLCConvolutionLayer.Create(MLCompute.MLCTensor,MLCompute.MLCTensor,MLCompute.MLCConvolutionDescriptor)
M:MLCompute.MLCConvolutionTypeExtensions.GetDebugDescription(MLCompute.MLCConvolutionType)
-M:MLCompute.MLCDevice.Copy(Foundation.NSZone)
M:MLCompute.MLCDevice.GetAneDevice
M:MLCompute.MLCDevice.GetCpu
M:MLCompute.MLCDevice.GetDevice(Metal.IMTLDevice[])
@@ -17355,7 +15218,6 @@ M:MLCompute.MLCDevice.GetDevice(MLCompute.MLCDeviceType,System.Boolean)
M:MLCompute.MLCDevice.GetDevice(MLCompute.MLCDeviceType)
M:MLCompute.MLCDevice.GetGpu
M:MLCompute.MLCDropoutLayer.Create(System.Single,System.UIntPtr)
-M:MLCompute.MLCEmbeddingDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCEmbeddingDescriptor.Create(System.IntPtr,System.IntPtr,System.Nullable{System.IntPtr},System.Nullable{System.Single},System.Nullable{System.Single},System.Boolean)
M:MLCompute.MLCEmbeddingDescriptor.Create(System.IntPtr,System.IntPtr)
M:MLCompute.MLCEmbeddingLayer.Create(MLCompute.MLCEmbeddingDescriptor,MLCompute.MLCTensor)
@@ -17406,7 +15268,6 @@ M:MLCompute.MLCInstanceNormalizationLayer.Create(System.UIntPtr,MLCompute.MLCTen
M:MLCompute.MLCInstanceNormalizationLayer.Create(System.UIntPtr,MLCompute.MLCTensor,MLCompute.MLCTensor,System.Single)
M:MLCompute.MLCLayer.SupportsDataType(MLCompute.MLCDataType,MLCompute.MLCDeviceType)
M:MLCompute.MLCLayerNormalizationLayer.Create(System.IntPtr[],MLCompute.MLCTensor,MLCompute.MLCTensor,System.Single)
-M:MLCompute.MLCLossDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCLossDescriptor.Create(MLCompute.MLCLossType,MLCompute.MLCReductionType,System.Single,System.Single,System.UIntPtr,System.Single,System.Single)
M:MLCompute.MLCLossDescriptor.Create(MLCompute.MLCLossType,MLCompute.MLCReductionType,System.Single,System.Single,System.UIntPtr)
M:MLCompute.MLCLossDescriptor.Create(MLCompute.MLCLossType,MLCompute.MLCReductionType,System.Single)
@@ -17432,7 +15293,6 @@ M:MLCompute.MLCLossLayer.CreateSigmoidCrossEntropyLoss(MLCompute.MLCReductionTyp
M:MLCompute.MLCLossLayer.CreateSoftmaxCrossEntropyLoss(MLCompute.MLCReductionType,System.Single,System.UIntPtr,MLCompute.MLCTensor)
M:MLCompute.MLCLossLayer.CreateSoftmaxCrossEntropyLoss(MLCompute.MLCReductionType,System.Single,System.UIntPtr,System.Single)
M:MLCompute.MLCLossTypeExtensions.GetDebugDescription(MLCompute.MLCLossType)
-M:MLCompute.MLCLstmDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCLstmDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single,MLCompute.MLCLstmResultMode)
M:MLCompute.MLCLstmDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Single)
M:MLCompute.MLCLstmDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Boolean,System.Boolean,System.Boolean,System.Single)
@@ -17442,20 +15302,15 @@ M:MLCompute.MLCLstmLayer.Create(MLCompute.MLCLstmDescriptor,MLCompute.MLCTensor[
M:MLCompute.MLCLstmLayer.Create(MLCompute.MLCLstmDescriptor,MLCompute.MLCTensor[],MLCompute.MLCTensor[],MLCompute.MLCTensor[],MLCompute.MLCTensor[])
M:MLCompute.MLCLstmLayer.Create(MLCompute.MLCLstmDescriptor,MLCompute.MLCTensor[],MLCompute.MLCTensor[],MLCompute.MLCTensor[])
M:MLCompute.MLCLstmResultModeExtensions.GetDebugDescription(MLCompute.MLCLstmResultMode)
-M:MLCompute.MLCMatMulDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCMatMulDescriptor.Create
M:MLCompute.MLCMatMulDescriptor.Create(System.Single,System.Boolean,System.Boolean)
M:MLCompute.MLCMatMulLayer.Create(MLCompute.MLCMatMulDescriptor)
-M:MLCompute.MLCMultiheadAttentionDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCMultiheadAttentionDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.Single,System.Boolean,System.Boolean,System.Boolean)
M:MLCompute.MLCMultiheadAttentionDescriptor.Create(System.UIntPtr,System.UIntPtr)
M:MLCompute.MLCMultiheadAttentionLayer.Create(MLCompute.MLCMultiheadAttentionDescriptor,MLCompute.MLCTensor[],MLCompute.MLCTensor[],MLCompute.MLCTensor[])
-M:MLCompute.MLCOptimizer.Copy(Foundation.NSZone)
-M:MLCompute.MLCOptimizerDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCOptimizerDescriptor.Create(System.Single,System.Single,MLCompute.MLCRegularizationType,System.Single)
M:MLCompute.MLCOptimizerDescriptor.Create(System.Single,System.Single,System.Boolean,MLCompute.MLCGradientClippingType,System.Single,System.Single,System.Single,System.Single,MLCompute.MLCRegularizationType,System.Single)
M:MLCompute.MLCOptimizerDescriptor.Create(System.Single,System.Single,System.Boolean,System.Single,System.Single,MLCompute.MLCRegularizationType,System.Single)
-M:MLCompute.MLCPaddingLayer.Copy(Foundation.NSZone)
M:MLCompute.MLCPaddingLayer.CreateConstantPadding(System.UIntPtr[],System.Single)
M:MLCompute.MLCPaddingLayer.CreateReflectionPadding(System.UIntPtr[])
M:MLCompute.MLCPaddingLayer.CreateSymmetricPadding(System.UIntPtr[])
@@ -17464,7 +15319,6 @@ M:MLCompute.MLCPaddingPolicyExtensions.GetDebugDescription(MLCompute.MLCPaddingP
M:MLCompute.MLCPaddingTypeExtensions.GetDebugDescription(MLCompute.MLCPaddingType)
M:MLCompute.MLCPlatform.GetRngSeed
M:MLCompute.MLCPlatform.SetRngSeed(System.UIntPtr)
-M:MLCompute.MLCPoolingDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCPoolingDescriptor.Create(MLCompute.MLCPoolingType,System.UIntPtr,System.UIntPtr)
M:MLCompute.MLCPoolingDescriptor.CreateAveragePooling(System.UIntPtr[],System.UIntPtr[],MLCompute.MLCPaddingPolicy,System.UIntPtr[],System.Boolean)
M:MLCompute.MLCPoolingDescriptor.CreateAveragePooling(System.UIntPtr[],System.UIntPtr[],System.UIntPtr[],MLCompute.MLCPaddingPolicy,System.UIntPtr[],System.Boolean)
@@ -17478,13 +15332,11 @@ M:MLCompute.MLCReductionLayer.Create(MLCompute.MLCReductionType,System.UIntPtr)
M:MLCompute.MLCReductionLayer.Create(MLCompute.MLCReductionType,System.UIntPtr[])
M:MLCompute.MLCReductionTypeExtensions.GetDebugDescription(MLCompute.MLCReductionType)
M:MLCompute.MLCReshapeLayer.Create(System.IntPtr[])
-M:MLCompute.MLCRmsPropOptimizer.Copy(Foundation.NSZone)
M:MLCompute.MLCRmsPropOptimizer.Create(MLCompute.MLCOptimizerDescriptor,System.Single,System.Single,System.Single,System.Boolean)
M:MLCompute.MLCRmsPropOptimizer.Create(MLCompute.MLCOptimizerDescriptor)
M:MLCompute.MLCSampleModeExtensions.GetDebugDescription(MLCompute.MLCSampleMode)
M:MLCompute.MLCScatterLayer.Create(System.UIntPtr,MLCompute.MLCReductionType)
M:MLCompute.MLCSelectionLayer.Create
-M:MLCompute.MLCSgdOptimizer.Copy(Foundation.NSZone)
M:MLCompute.MLCSgdOptimizer.Create(MLCompute.MLCOptimizerDescriptor,System.Single,System.Boolean)
M:MLCompute.MLCSgdOptimizer.Create(MLCompute.MLCOptimizerDescriptor)
M:MLCompute.MLCSliceLayer.Create(System.IntPtr[],System.IntPtr[],System.IntPtr[])
@@ -17495,7 +15347,6 @@ M:MLCompute.MLCSplitLayer.Create(System.IntPtr[],System.UIntPtr)
M:MLCompute.MLCSplitLayer.Create(System.UIntPtr,System.UIntPtr)
M:MLCompute.MLCTensor.BindAndWrite(MLCompute.MLCTensorData,MLCompute.MLCDevice)
M:MLCompute.MLCTensor.BindOptimizer(MLCompute.MLCTensorData[],MLCompute.MLCTensorOptimizerDeviceData[])
-M:MLCompute.MLCTensor.Copy(Foundation.NSZone)
M:MLCompute.MLCTensor.CopyDataFromDeviceMemory(System.IntPtr,System.UIntPtr,System.Boolean)
M:MLCompute.MLCTensor.Create(MLCompute.MLCTensorDescriptor,Foundation.NSNumber)
M:MLCompute.MLCTensor.Create(MLCompute.MLCTensorDescriptor,MLCompute.MLCRandomInitializerType)
@@ -17526,7 +15377,6 @@ M:MLCompute.MLCTensor.SynchronizeOptimizerData
M:MLCompute.MLCTensorData.CreateFromBytesNoCopy(System.IntPtr,System.UIntPtr,System.Action{System.IntPtr,System.UIntPtr})
M:MLCompute.MLCTensorData.CreateFromBytesNoCopy(System.IntPtr,System.UIntPtr)
M:MLCompute.MLCTensorData.CreateFromImmutableBytesNoCopy(System.IntPtr,System.UIntPtr)
-M:MLCompute.MLCTensorDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCTensorDescriptor.Create(System.IntPtr[],MLCompute.MLCDataType)
M:MLCompute.MLCTensorDescriptor.Create(System.IntPtr[],System.IntPtr[],System.Boolean,MLCompute.MLCDataType)
M:MLCompute.MLCTensorDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MLCompute.MLCDataType)
@@ -17534,7 +15384,6 @@ M:MLCompute.MLCTensorDescriptor.Create(System.UIntPtr,System.UIntPtr,System.UInt
M:MLCompute.MLCTensorDescriptor.CreateConvolutionBiases(System.UIntPtr,MLCompute.MLCDataType)
M:MLCompute.MLCTensorDescriptor.CreateConvolutionWeights(System.UIntPtr,System.UIntPtr,MLCompute.MLCDataType)
M:MLCompute.MLCTensorDescriptor.CreateConvolutionWeights(System.UIntPtr,System.UIntPtr,System.UIntPtr,System.UIntPtr,MLCompute.MLCDataType)
-M:MLCompute.MLCTensorOptimizerDeviceData.Copy(Foundation.NSZone)
M:MLCompute.MLCTensorParameter.Create(MLCompute.MLCTensor,MLCompute.MLCTensorData[])
M:MLCompute.MLCTensorParameter.Create(MLCompute.MLCTensor)
M:MLCompute.MLCTrainingGraph.AddInputs(Foundation.NSDictionary{Foundation.NSString,MLCompute.MLCTensor},Foundation.NSDictionary{Foundation.NSString,MLCompute.MLCTensor},Foundation.NSDictionary{Foundation.NSString,MLCompute.MLCTensor})
@@ -17578,28 +15427,18 @@ M:MLCompute.MLCTrainingGraph.SynchronizeUpdates
M:MLCompute.MLCTransposeLayer.Create(System.IntPtr[])
M:MLCompute.MLCUpsampleLayer.Create(System.IntPtr[],MLCompute.MLCSampleMode,System.Boolean)
M:MLCompute.MLCUpsampleLayer.Create(System.IntPtr[])
-M:MLCompute.MLCYoloLossDescriptor.Copy(Foundation.NSZone)
M:MLCompute.MLCYoloLossDescriptor.Create(Foundation.NSData,System.UIntPtr)
M:MLCompute.MLCYoloLossLayer.Create(MLCompute.MLCYoloLossDescriptor)
M:MobileCoreServices.UTType.GetDeclaringBundleUrl(System.String)
-M:ModelIO.IMDLAssetResolver.CanResolveAsset(System.String)
-M:ModelIO.IMDLAssetResolver.ResolveAsset(System.String)
M:ModelIO.IMDLLightProbeIrradianceDataSource.GetSphericalHarmonicsCoefficients(System.Numerics.Vector3)
M:ModelIO.IMDLMeshBuffer.FillData(Foundation.NSData,System.UIntPtr)
-M:ModelIO.IMDLMeshBufferAllocator.CreateBuffer(Foundation.NSData,ModelIO.MDLMeshBufferType)
-M:ModelIO.IMDLMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,Foundation.NSData,ModelIO.MDLMeshBufferType)
M:ModelIO.IMDLMeshBufferAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,System.UIntPtr,ModelIO.MDLMeshBufferType)
M:ModelIO.IMDLMeshBufferAllocator.CreateBuffer(System.UIntPtr,ModelIO.MDLMeshBufferType)
-M:ModelIO.IMDLMeshBufferAllocator.CreateZone(Foundation.NSNumber[],Foundation.NSNumber[])
M:ModelIO.IMDLMeshBufferAllocator.CreateZone(System.UIntPtr)
-M:ModelIO.IMDLObjectContainerComponent.AddObject(ModelIO.MDLObject)
M:ModelIO.IMDLObjectContainerComponent.GetObject(System.UIntPtr)
-M:ModelIO.IMDLObjectContainerComponent.RemoveObject(ModelIO.MDLObject)
M:ModelIO.IMDLTransformComponent.CreateGlobalTransform``1(ModelIO.MDLObject,System.Double)
M:ModelIO.IMDLTransformComponent.SetLocalTransform(CoreGraphics.NMatrix4,System.Double)
M:ModelIO.IMDLTransformComponent.SetLocalTransform(CoreGraphics.NMatrix4)
-M:ModelIO.IMDLTransformOp.GetNMatrix4(System.Double)
-M:ModelIO.IMDLTransformOp.GetNMatrix4d(System.Double)
M:ModelIO.MDLAnimatedMatrix4x4.Reset(CoreGraphics.NMatrix4[],System.Double[])
M:ModelIO.MDLAnimatedMatrix4x4.Reset(CoreGraphics.NMatrix4d[],System.Double[])
M:ModelIO.MDLAnimatedMatrix4x4.SetValue(CoreGraphics.NMatrix4,System.Double)
@@ -17618,7 +15457,6 @@ M:ModelIO.MDLAnimatedQuaternionArray.Reset(System.Numerics.Quaternion[],System.D
M:ModelIO.MDLAnimatedQuaternionArray.SetValues(CoreGraphics.NQuaterniond[],System.Double)
M:ModelIO.MDLAnimatedQuaternionArray.SetValues(System.Numerics.Quaternion[],System.Double)
M:ModelIO.MDLAnimatedScalarArray.#ctor(System.UIntPtr)
-M:ModelIO.MDLAnimatedValue.Copy(Foundation.NSZone)
M:ModelIO.MDLAnimatedVector2.Reset(CoreGraphics.NVector2d[],System.Double[])
M:ModelIO.MDLAnimatedVector2.Reset(System.Numerics.Vector2[],System.Double[])
M:ModelIO.MDLAnimatedVector2.SetValue(CoreGraphics.NVector2d,System.Double)
@@ -17636,13 +15474,9 @@ M:ModelIO.MDLAnimatedVector4.Reset(CoreGraphics.NVector4d[],System.Double[])
M:ModelIO.MDLAnimatedVector4.Reset(System.Numerics.Vector4[],System.Double[])
M:ModelIO.MDLAnimatedVector4.SetValue(CoreGraphics.NVector4d,System.Double)
M:ModelIO.MDLAnimatedVector4.SetValue(System.Numerics.Vector4,System.Double)
-M:ModelIO.MDLAnimationBindComponent.Copy(Foundation.NSZone)
-M:ModelIO.MDLAsset.Copy(Foundation.NSZone)
M:ModelIO.MDLAsset.GetObject(System.UIntPtr)
M:ModelIO.MDLAsset.GetObjectAtIndexedSubscript(System.UIntPtr)
M:ModelIO.MDLAxisAlignedBoundingBox.#ctor(System.Numerics.Vector3,System.Numerics.Vector3)
-M:ModelIO.MDLBundleAssetResolver.CanResolveAsset(System.String)
-M:ModelIO.MDLBundleAssetResolver.ResolveAsset(System.String)
M:ModelIO.MDLCamera.BokehKernelWithSize(CoreGraphics.NVector2i)
M:ModelIO.MDLCamera.LookAt(System.Numerics.Vector3,System.Numerics.Vector3)
M:ModelIO.MDLCamera.LookAt(System.Numerics.Vector3)
@@ -17662,10 +15496,8 @@ M:ModelIO.MDLMaterialProperty.#ctor(System.String,ModelIO.MDLMaterialSemantic,Co
M:ModelIO.MDLMaterialProperty.#ctor(System.String,ModelIO.MDLMaterialSemantic,System.Numerics.Vector2)
M:ModelIO.MDLMaterialProperty.#ctor(System.String,ModelIO.MDLMaterialSemantic,System.Numerics.Vector3)
M:ModelIO.MDLMaterialProperty.#ctor(System.String,ModelIO.MDLMaterialSemantic,System.Numerics.Vector4)
-M:ModelIO.MDLMaterialProperty.Copy(Foundation.NSZone)
M:ModelIO.MDLMaterialPropertyConnection.Dispose(System.Boolean)
M:ModelIO.MDLMatrix4x4Array.#ctor(System.UIntPtr)
-M:ModelIO.MDLMatrix4x4Array.Copy(Foundation.NSZone)
M:ModelIO.MDLMatrix4x4Array.SetValues(CoreGraphics.NMatrix4[])
M:ModelIO.MDLMatrix4x4Array.SetValues(CoreGraphics.NMatrix4d[])
M:ModelIO.MDLMesh.#ctor(ModelIO.IMDLMeshBuffer,System.UIntPtr,ModelIO.MDLVertexDescriptor,ModelIO.MDLSubmesh[])
@@ -17691,13 +15523,9 @@ M:ModelIO.MDLMesh.GenerateAmbientOcclusionTexture(CoreGraphics.NVector2i,System.
M:ModelIO.MDLMesh.GenerateAmbientOcclusionVertexColors(System.IntPtr,System.Single,ModelIO.MDLObject[],System.String)
M:ModelIO.MDLMesh.GenerateLightMapTexture(CoreGraphics.NVector2i,ModelIO.MDLLight[],ModelIO.MDLObject[],System.String,System.String)
M:ModelIO.MDLMeshBufferData.#ctor(ModelIO.MDLMeshBufferType,System.UIntPtr)
-M:ModelIO.MDLMeshBufferData.Copy(Foundation.NSZone)
M:ModelIO.MDLMeshBufferData.FillData(Foundation.NSData,System.UIntPtr)
-M:ModelIO.MDLMeshBufferDataAllocator.CreateBuffer(Foundation.NSData,ModelIO.MDLMeshBufferType)
-M:ModelIO.MDLMeshBufferDataAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,Foundation.NSData,ModelIO.MDLMeshBufferType)
M:ModelIO.MDLMeshBufferDataAllocator.CreateBuffer(ModelIO.IMDLMeshBufferZone,System.UIntPtr,ModelIO.MDLMeshBufferType)
M:ModelIO.MDLMeshBufferDataAllocator.CreateBuffer(System.UIntPtr,ModelIO.MDLMeshBufferType)
-M:ModelIO.MDLMeshBufferDataAllocator.CreateZone(Foundation.NSNumber[],Foundation.NSNumber[])
M:ModelIO.MDLMeshBufferDataAllocator.CreateZone(System.UIntPtr)
M:ModelIO.MDLNoiseTexture.#ctor(Foundation.NSData,System.Boolean,System.String,CoreGraphics.NVector2i,System.IntPtr,System.UIntPtr,ModelIO.MDLTextureChannelEncoding,System.Boolean)
M:ModelIO.MDLNoiseTexture.#ctor(System.Single,System.String,CoreGraphics.NVector2i,ModelIO.MDLTextureChannelEncoding,ModelIO.MDLNoiseTextureType)
@@ -17705,19 +15533,11 @@ M:ModelIO.MDLNoiseTexture.#ctor(System.Single,System.String,CoreGraphics.NVector
M:ModelIO.MDLNoiseTexture.#ctor(System.Single,System.String,CoreGraphics.NVector2i,System.Int32,ModelIO.MDLTextureChannelEncoding,System.Boolean)
M:ModelIO.MDLNormalMapTexture.#ctor(Foundation.NSData,System.Boolean,System.String,CoreGraphics.NVector2i,System.IntPtr,System.UIntPtr,ModelIO.MDLTextureChannelEncoding,System.Boolean)
M:ModelIO.MDLObject.Dispose(System.Boolean)
-M:ModelIO.MDLObjectContainer.AddObject(ModelIO.MDLObject)
M:ModelIO.MDLObjectContainer.GetObject(System.UIntPtr)
-M:ModelIO.MDLObjectContainer.RemoveObject(ModelIO.MDLObject)
-M:ModelIO.MDLPackedJointAnimation.Copy(Foundation.NSZone)
-M:ModelIO.MDLPathAssetResolver.CanResolveAsset(System.String)
-M:ModelIO.MDLPathAssetResolver.ResolveAsset(System.String)
M:ModelIO.MDLPhotometricLight.GenerateCubemap(System.UIntPtr)
M:ModelIO.MDLPhotometricLight.GenerateSphericalHarmonics(System.UIntPtr)
M:ModelIO.MDLPhotometricLight.GenerateTexture(System.UIntPtr)
-M:ModelIO.MDLRelativeAssetResolver.CanResolveAsset(System.String)
M:ModelIO.MDLRelativeAssetResolver.Dispose(System.Boolean)
-M:ModelIO.MDLRelativeAssetResolver.ResolveAsset(System.String)
-M:ModelIO.MDLSkeleton.Copy(Foundation.NSZone)
M:ModelIO.MDLSkyCubeTexture.#ctor(Foundation.NSData,System.Boolean,System.String,CoreGraphics.NVector2i,System.IntPtr,System.UIntPtr,ModelIO.MDLTextureChannelEncoding,System.Boolean)
M:ModelIO.MDLSkyCubeTexture.#ctor(System.String,ModelIO.MDLTextureChannelEncoding,CoreGraphics.NVector2i,System.Single,System.Single,System.Single,System.Single,System.Single)
M:ModelIO.MDLSkyCubeTexture.#ctor(System.String,ModelIO.MDLTextureChannelEncoding,CoreGraphics.NVector2i,System.Single,System.Single,System.Single,System.Single)
@@ -17734,7 +15554,6 @@ M:ModelIO.MDLTexture.WriteToUrl(Foundation.NSUrl,System.String,System.UIntPtr)
M:ModelIO.MDLTexture.WriteToUrl(Foundation.NSUrl,System.UIntPtr)
M:ModelIO.MDLTransform.#ctor(CoreGraphics.NMatrix4,System.Boolean)
M:ModelIO.MDLTransform.#ctor(CoreGraphics.NMatrix4)
-M:ModelIO.MDLTransform.Copy(Foundation.NSZone)
M:ModelIO.MDLTransform.CreateGlobalTransform(ModelIO.MDLObject,System.Double)
M:ModelIO.MDLTransform.SetLocalTransform(CoreGraphics.NMatrix4,System.Double)
M:ModelIO.MDLTransform.SetLocalTransform(CoreGraphics.NMatrix4)
@@ -17745,34 +15564,14 @@ M:ModelIO.MDLTransform.SetShear(System.Numerics.Vector3,System.Double)
M:ModelIO.MDLTransform.SetTranslation(System.Numerics.Vector3,System.Double)
M:ModelIO.MDLTransformComponent_Extensions.SetLocalTransform(ModelIO.IMDLTransformComponent,CoreGraphics.NMatrix4,System.Double)
M:ModelIO.MDLTransformComponent_Extensions.SetLocalTransform(ModelIO.IMDLTransformComponent,CoreGraphics.NMatrix4)
-M:ModelIO.MDLTransformMatrixOp.GetNMatrix4(System.Double)
-M:ModelIO.MDLTransformMatrixOp.GetNMatrix4d(System.Double)
-M:ModelIO.MDLTransformOrientOp.GetNMatrix4(System.Double)
-M:ModelIO.MDLTransformOrientOp.GetNMatrix4d(System.Double)
-M:ModelIO.MDLTransformRotateOp.GetNMatrix4(System.Double)
-M:ModelIO.MDLTransformRotateOp.GetNMatrix4d(System.Double)
-M:ModelIO.MDLTransformRotateXOp.GetNMatrix4(System.Double)
-M:ModelIO.MDLTransformRotateXOp.GetNMatrix4d(System.Double)
-M:ModelIO.MDLTransformRotateYOp.GetNMatrix4(System.Double)
-M:ModelIO.MDLTransformRotateYOp.GetNMatrix4d(System.Double)
-M:ModelIO.MDLTransformRotateZOp.GetNMatrix4(System.Double)
-M:ModelIO.MDLTransformRotateZOp.GetNMatrix4d(System.Double)
-M:ModelIO.MDLTransformScaleOp.GetNMatrix4(System.Double)
-M:ModelIO.MDLTransformScaleOp.GetNMatrix4d(System.Double)
M:ModelIO.MDLTransformStack.AddOrientOp(System.String,System.Boolean)
-M:ModelIO.MDLTransformStack.Copy(Foundation.NSZone)
M:ModelIO.MDLTransformStack.CreateGlobalTransform(ModelIO.MDLObject,System.Double)
M:ModelIO.MDLTransformStack.SetLocalTransform(CoreGraphics.NMatrix4,System.Double)
M:ModelIO.MDLTransformStack.SetLocalTransform(CoreGraphics.NMatrix4)
-M:ModelIO.MDLTransformTranslateOp.GetNMatrix4(System.Double)
-M:ModelIO.MDLTransformTranslateOp.GetNMatrix4d(System.Double)
M:ModelIO.MDLUrlTexture.#ctor(Foundation.NSData,System.Boolean,System.String,CoreGraphics.NVector2i,System.IntPtr,System.UIntPtr,ModelIO.MDLTextureChannelEncoding,System.Boolean)
M:ModelIO.MDLUtility.ConvertToUsdz(Foundation.NSUrl,Foundation.NSUrl)
M:ModelIO.MDLVertexAttribute.#ctor(System.String,ModelIO.MDLVertexFormat,System.UIntPtr,System.UIntPtr)
-M:ModelIO.MDLVertexAttribute.Copy(Foundation.NSZone)
M:ModelIO.MDLVertexBufferLayout.#ctor(System.UIntPtr)
-M:ModelIO.MDLVertexBufferLayout.Copy(Foundation.NSZone)
-M:ModelIO.MDLVertexDescriptor.Copy(Foundation.NSZone)
M:ModelIO.MDLVoxelArray.GetIndex(System.Numerics.Vector3)
M:ModelIO.MDLVoxelArray.GetSpatialLocation(CoreGraphics.NVector4i)
M:ModelIO.MDLVoxelArray.GetVoxelBoundingBox(CoreGraphics.NVector4i)
@@ -17783,7 +15582,6 @@ M:MultipeerConnectivity.MCAdvertiserAssistant.Dispose(System.Boolean)
M:MultipeerConnectivity.MCBrowserViewController.Dispose(System.Boolean)
M:MultipeerConnectivity.MCNearbyServiceAdvertiser.Dispose(System.Boolean)
M:MultipeerConnectivity.MCNearbyServiceBrowser.Dispose(System.Boolean)
-M:MultipeerConnectivity.MCPeerID.Copy(Foundation.NSZone)
M:MultipeerConnectivity.MCSession.Dispose(System.Boolean)
M:NaturalLanguage.NLContextualEmbedding.Create(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:NaturalLanguage.NLContextualEmbedding.CreateWithLanguage(System.String)
@@ -17827,7 +15625,6 @@ M:NaturalLanguage.NLGazetteer.Write(NaturalLanguage.NLStrongDictionary,System.Nu
M:NaturalLanguage.NLLanguageRecognizer.GetLanguageHypotheses(System.UIntPtr)
M:NaturalLanguage.NLModel.GetPredictedLabelHypotheses(System.String,System.UIntPtr)
M:NaturalLanguage.NLModel.GetPredictedLabelHypotheses(System.String[],System.UIntPtr)
-M:NaturalLanguage.NLModelConfiguration.Copy(Foundation.NSZone)
M:NaturalLanguage.NLStrongDictionary.#ctor
M:NaturalLanguage.NLStrongDictionary.#ctor(Foundation.NSDictionary)
M:NaturalLanguage.NLTagger.GetGazetteers(NaturalLanguage.NLTagScheme)
@@ -17851,15 +15648,11 @@ M:NearbyInteraction.INISessionDelegate.DidSessionUpdateNearbyObjects(NearbyInter
M:NearbyInteraction.INISessionDelegate.DidUpdateAlgorithmConvergence(NearbyInteraction.NISession,NearbyInteraction.NIAlgorithmConvergence,NearbyInteraction.NINearbyObject)
M:NearbyInteraction.INISessionDelegate.SessionSuspensionEnded(NearbyInteraction.NISession)
M:NearbyInteraction.INISessionDelegate.SessionWasSuspended(NearbyInteraction.NISession)
-M:NearbyInteraction.NIAlgorithmConvergence.Copy(Foundation.NSZone)
M:NearbyInteraction.NIAlgorithmConvergenceStatusReasonValues.#ctor
M:NearbyInteraction.NIAlgorithmConvergenceStatusReasonValues.GetConvergenceStatusReason(NearbyInteraction.NIAlgorithmConvergenceStatusReason)
-M:NearbyInteraction.NIConfiguration.Copy(Foundation.NSZone)
M:NearbyInteraction.NIDeviceCapability_Extensions.GetSupportsExtendedDistanceMeasurement(NearbyInteraction.INIDeviceCapability)
-M:NearbyInteraction.NIDiscoveryToken.Copy(Foundation.NSZone)
M:NearbyInteraction.NINearbyAccessoryConfiguration.#ctor(Foundation.NSData,Foundation.NSError@)
M:NearbyInteraction.NINearbyAccessoryConfiguration.#ctor(Foundation.NSData,Foundation.NSUuid,Foundation.NSError@)
-M:NearbyInteraction.NINearbyObject.Copy(Foundation.NSZone)
M:NearbyInteraction.NINearbyPeerConfiguration.#ctor(NearbyInteraction.NIDiscoveryToken)
M:NearbyInteraction.NISession.Dispose(System.Boolean)
M:NearbyInteraction.NISession.GetWorldTransform(NearbyInteraction.NINearbyObject)
@@ -18097,7 +15890,6 @@ M:NetworkExtension.NEAppPushProvider.Start(System.Action{Foundation.NSError})
M:NetworkExtension.NEAppPushProvider.StartAsync
M:NetworkExtension.NEAppPushProvider.Stop(NetworkExtension.NEProviderStopReason,System.Action)
M:NetworkExtension.NEAppPushProvider.StopAsync(NetworkExtension.NEProviderStopReason)
-M:NetworkExtension.NEAppRule.Copy(Foundation.NSZone)
M:NetworkExtension.NEDatagramAndFlowEndpointsReadResult.#ctor(Foundation.NSData[],Network.NWEndpoint[])
M:NetworkExtension.NEDatagramReadResult.#ctor(Foundation.NSData[],NetworkExtension.NWEndpoint[])
M:NetworkExtension.NEDnsProxyManager.LoadFromPreferencesAsync
@@ -18105,7 +15897,6 @@ M:NetworkExtension.NEDnsProxyManager.RemoveFromPreferencesAsync
M:NetworkExtension.NEDnsProxyManager.SaveToPreferencesAsync
M:NetworkExtension.NEDnsProxyProvider.HandleNewUdpFlow(NetworkExtension.NEAppProxyUdpFlow,NetworkExtension.NWEndpoint)
M:NetworkExtension.NEDnsProxyProvider.HandleNewUdpFlowWithInitialFlowEndPoint(NetworkExtension.NEAppProxyUdpFlow,Network.NWEndpoint)
-M:NetworkExtension.NEDnsSettings.Copy(Foundation.NSZone)
M:NetworkExtension.NEDnsSettingsManager.LoadFromPreferences(System.Action{Foundation.NSError})
M:NetworkExtension.NEDnsSettingsManager.LoadFromPreferencesAsync
M:NetworkExtension.NEDnsSettingsManager.RemoveFromPreferences(System.Action{Foundation.NSError})
@@ -18113,75 +15904,49 @@ M:NetworkExtension.NEDnsSettingsManager.RemoveFromPreferencesAsync
M:NetworkExtension.NEDnsSettingsManager.SaveToPreferences(System.Action{Foundation.NSError})
M:NetworkExtension.NEDnsSettingsManager.SaveToPreferencesAsync
M:NetworkExtension.NEEthernetTunnelNetworkSettings.#ctor(System.String,System.String,System.IntPtr)
-M:NetworkExtension.NEEvaluateConnectionRule.Copy(Foundation.NSZone)
M:NetworkExtension.NEFailureHandlerProvider.#ctor(Foundation.NSObjectFlag)
M:NetworkExtension.NEFailureHandlerProvider.#ctor(ObjCRuntime.NativeHandle)
M:NetworkExtension.NEFailureHandlerProvider.HandleFailure(Foundation.NSError,System.Action)
M:NetworkExtension.NEFailureHandlerProvider.HandleFailureAsync(Foundation.NSError)
-M:NetworkExtension.NEFilterControlVerdict.Copy(Foundation.NSZone)
M:NetworkExtension.NEFilterDataProvider.ApplySettings(NetworkExtension.NEFilterSettings,System.Action{Foundation.NSError})
M:NetworkExtension.NEFilterDataProvider.ApplySettingsAsync(NetworkExtension.NEFilterSettings)
M:NetworkExtension.NEFilterDataProvider.HandleInboundDataFromFlow(NetworkExtension.NEFilterFlow,System.UIntPtr,Foundation.NSData)
M:NetworkExtension.NEFilterDataProvider.HandleOutboundDataFromFlow(NetworkExtension.NEFilterFlow,System.UIntPtr,Foundation.NSData)
M:NetworkExtension.NEFilterDataProvider.ResumeFlow(NetworkExtension.NEFilterFlow,NetworkExtension.NEFilterVerdict)
M:NetworkExtension.NEFilterDataProvider.UpdateFlow(NetworkExtension.NEFilterSocketFlow,NetworkExtension.NEFilterDataVerdict,NetworkExtension.NETrafficDirection)
-M:NetworkExtension.NEFilterDataVerdict.Copy(Foundation.NSZone)
M:NetworkExtension.NEFilterDataVerdict.DataVerdict(System.UIntPtr,System.UIntPtr)
M:NetworkExtension.NEFilterDataVerdict.PauseVerdict
-M:NetworkExtension.NEFilterFlow.Copy(Foundation.NSZone)
M:NetworkExtension.NEFilterManager.LoadFromPreferencesAsync
M:NetworkExtension.NEFilterManager.RemoveFromPreferencesAsync
M:NetworkExtension.NEFilterManager.SaveToPreferencesAsync
-M:NetworkExtension.NEFilterNewFlowVerdict.Copy(Foundation.NSZone)
M:NetworkExtension.NEFilterNewFlowVerdict.FilterDataVerdict(System.Boolean,System.UIntPtr,System.Boolean,System.UIntPtr)
M:NetworkExtension.NEFilterNewFlowVerdict.PauseVerdict
M:NetworkExtension.NEFilterPacketProvider.AllowPacket(NetworkExtension.NEPacket)
M:NetworkExtension.NEFilterPacketProvider.DelayCurrentPacket(NetworkExtension.NEFilterPacketContext)
M:NetworkExtension.NEFilterProvider.HandleReport(NetworkExtension.NEFilterReport)
M:NetworkExtension.NEFilterProvider.StartFilterAsync
-M:NetworkExtension.NEFilterProviderConfiguration.Copy(Foundation.NSZone)
-M:NetworkExtension.NEFilterRemediationVerdict.Copy(Foundation.NSZone)
-M:NetworkExtension.NEFilterReport.Copy(Foundation.NSZone)
M:NetworkExtension.NEFilterRule.#ctor(NetworkExtension.NENetworkRule,NetworkExtension.NEFilterAction)
-M:NetworkExtension.NEFilterRule.Copy(Foundation.NSZone)
M:NetworkExtension.NEFilterSettings.#ctor(NetworkExtension.NEFilterRule[],NetworkExtension.NEFilterAction)
-M:NetworkExtension.NEFilterSettings.Copy(Foundation.NSZone)
-M:NetworkExtension.NEFilterVerdict.Copy(Foundation.NSZone)
-M:NetworkExtension.NEFlowMetaData.Copy(Foundation.NSZone)
M:NetworkExtension.NEHotspotConfiguration.#ctor(System.String,System.Boolean)
M:NetworkExtension.NEHotspotConfiguration.#ctor(System.String,System.String,System.Boolean,System.Boolean)
-M:NetworkExtension.NEHotspotConfiguration.Copy(Foundation.NSZone)
M:NetworkExtension.NEHotspotConfigurationManager.GetConfiguredSsidsAsync
M:NetworkExtension.NEHotspotConfigurationManager.JoinAccessoryHotspot(AccessorySetupKit.ASAccessory,System.String,NetworkExtension.NEHotspotConfigurationManagerJoinHotspotCallback)
M:NetworkExtension.NEHotspotConfigurationManager.JoinAccessoryHotspotAsync(AccessorySetupKit.ASAccessory,System.String)
M:NetworkExtension.NEHotspotConfigurationManager.JoinAccessoryHotspotWithoutSecurit(AccessorySetupKit.ASAccessory,NetworkExtension.NEHotspotConfigurationManagerJoinHotspotCallback)
M:NetworkExtension.NEHotspotConfigurationManager.JoinAccessoryHotspotWithoutSecuritAsync(AccessorySetupKit.ASAccessory)
-M:NetworkExtension.NEHotspotEapSettings.Copy(Foundation.NSZone)
-M:NetworkExtension.NEHotspotHS20Settings.Copy(Foundation.NSZone)
M:NetworkExtension.NEHotspotNetwork.FetchCurrent(System.Action{NetworkExtension.NEHotspotNetwork})
M:NetworkExtension.NEHotspotNetwork.FetchCurrentAsync
-M:NetworkExtension.NEIPv4Route.Copy(Foundation.NSZone)
-M:NetworkExtension.NEIPv4Settings.Copy(Foundation.NSZone)
-M:NetworkExtension.NEIPv6Route.Copy(Foundation.NSZone)
-M:NetworkExtension.NEIPv6Settings.Copy(Foundation.NSZone)
M:NetworkExtension.NENetworkRule.#ctor(Network.NWEndpoint,NetworkExtension.NENetworkRuleProtocol)
M:NetworkExtension.NENetworkRule.#ctor(Network.NWEndpoint,System.UIntPtr,Network.NWEndpoint,System.UIntPtr,NetworkExtension.NENetworkRuleProtocol,NetworkExtension.NETrafficDirection)
M:NetworkExtension.NENetworkRule.#ctor(Network.NWEndpoint,System.UIntPtr,NetworkExtension.NENetworkRuleProtocol)
M:NetworkExtension.NENetworkRule.#ctor(NetworkExtension.NWHostEndpoint,NetworkExtension.NENetworkRuleProtocol)
M:NetworkExtension.NENetworkRule.#ctor(NetworkExtension.NWHostEndpoint,System.UIntPtr,NetworkExtension.NENetworkRuleProtocol)
M:NetworkExtension.NENetworkRule.#ctor(NetworkExtension.NWHostEndpoint,System.UIntPtr,NetworkExtension.NWHostEndpoint,System.UIntPtr,NetworkExtension.NENetworkRuleProtocol,NetworkExtension.NETrafficDirection)
-M:NetworkExtension.NENetworkRule.Copy(Foundation.NSZone)
-M:NetworkExtension.NEOnDemandRule.Copy(Foundation.NSZone)
-M:NetworkExtension.NEPacket.Copy(Foundation.NSZone)
M:NetworkExtension.NEPacketTunnelFlow.ReadPacketObjectsAsync
M:NetworkExtension.NEPacketTunnelFlow.ReadPacketsAsync
-M:NetworkExtension.NEPrivateLteNetwork.Copy(Foundation.NSZone)
M:NetworkExtension.NEProvider.SleepAsync
M:NetworkExtension.NEProvider.StartSystemExtensionMode
M:NetworkExtension.NEProxyServer.#ctor(System.String,System.IntPtr)
-M:NetworkExtension.NEProxyServer.Copy(Foundation.NSZone)
-M:NetworkExtension.NEProxySettings.Copy(Foundation.NSZone)
-M:NetworkExtension.NERelay.Copy(Foundation.NSZone)
M:NetworkExtension.NERelayManager.GetLastClientErrors(System.Double,NetworkExtension.NERelayManagerGetLastClientErrorsCallback)
M:NetworkExtension.NERelayManager.GetLastClientErrorsAsync(System.Double)
M:NetworkExtension.NERelayManager.LoadAllManagersFromPreferences(System.Action{Foundation.NSArray{NetworkExtension.NERelayManager},Foundation.NSError})
@@ -18194,21 +15959,15 @@ M:NetworkExtension.NERelayManager.SaveToPreferences(System.Action{Foundation.NSE
M:NetworkExtension.NERelayManager.SaveToPreferencesAsync
M:NetworkExtension.NETransparentProxyManager.LoadAllFromPreferences(System.Action{NetworkExtension.NETransparentProxyManager[],Foundation.NSError})
M:NetworkExtension.NETransparentProxyManager.LoadAllFromPreferencesAsync
-M:NetworkExtension.NETunnelNetworkSettings.Copy(Foundation.NSZone)
M:NetworkExtension.NETunnelProviderManager.CopyAppRules
M:NetworkExtension.NETunnelProviderManager.CreatePerAppVpn
M:NetworkExtension.NETunnelProviderManager.LoadAllFromPreferencesAsync
M:NetworkExtension.NEVpnConnection.FetchLastDisconnectError(System.Action{Foundation.NSError})
M:NetworkExtension.NEVpnConnection.FetchLastDisconnectErrorAsync
-M:NetworkExtension.NEVpnIke2SecurityAssociationParameters.Copy(Foundation.NSZone)
M:NetworkExtension.NEVpnIkev2PpkConfiguration.#ctor(System.String,Foundation.NSData)
-M:NetworkExtension.NEVpnIkev2PpkConfiguration.Copy(Foundation.NSZone)
M:NetworkExtension.NEVpnManager.LoadFromPreferencesAsync
M:NetworkExtension.NEVpnManager.RemoveFromPreferencesAsync
M:NetworkExtension.NEVpnManager.SaveToPreferencesAsync
-M:NetworkExtension.NEVpnProtocol.Copy(Foundation.NSZone)
-M:NetworkExtension.NSMutableURLRequest_NEHotspotHelper.BindTo(Foundation.NSMutableUrlRequest,NetworkExtension.NEHotspotHelperCommand)
-M:NetworkExtension.NWEndpoint.Copy(Foundation.NSZone)
M:NetworkExtension.NWTcpConnection.ReadLength(System.UIntPtr,System.Action{Foundation.NSData,Foundation.NSError})
M:NetworkExtension.NWTcpConnection.ReadLengthAsync(System.UIntPtr)
M:NetworkExtension.NWTcpConnection.ReadMinimumLength(System.UIntPtr,System.UIntPtr,System.Action{Foundation.NSData,Foundation.NSError})
@@ -18248,10 +16007,6 @@ M:NotificationCenter.NCWidgetSearchViewController.remove_ResultSelected(System.E
M:NotificationCenter.NCWidgetSearchViewController.remove_SearchForTerm(System.EventHandler{NotificationCenter.NSWidgetSearchForTermEventArgs})
M:NotificationCenter.NCWidgetSearchViewController.remove_TermCleared(System.EventHandler)
M:NotificationCenter.NCWidgetSearchViewDelegate.SearchForTerm(NotificationCenter.NCWidgetSearchViewController,System.String,System.UIntPtr)
-M:NotificationCenter.NSExtensionContext_NCWidgetAdditions.GetWidgetActiveDisplayMode(Foundation.NSExtensionContext)
-M:NotificationCenter.NSExtensionContext_NCWidgetAdditions.GetWidgetLargestAvailableDisplayMode(Foundation.NSExtensionContext)
-M:NotificationCenter.NSExtensionContext_NCWidgetAdditions.GetWidgetMaximumSize(Foundation.NSExtensionContext,NotificationCenter.NCWidgetDisplayMode)
-M:NotificationCenter.NSExtensionContext_NCWidgetAdditions.SetWidgetLargestAvailableDisplayMode(Foundation.NSExtensionContext,NotificationCenter.NCWidgetDisplayMode)
M:ObjCBindings.ExportAttribute`1.#ctor
M:ObjCRuntime.AssemblyRegistrationEventArgs.#ctor
M:ObjCRuntime.BaseWrapper.#ctor(ObjCRuntime.NativeHandle,System.Boolean)
@@ -18421,13 +16176,11 @@ M:PassKit.PKBarcodeEventMetadataResponse.#ctor(Foundation.NSData)
M:PassKit.PKBarcodeEventSignatureResponse.#ctor(Foundation.NSData)
M:PassKit.PKContactFieldsExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
M:PassKit.PKDateComponentsRange.#ctor(Foundation.NSDateComponents,Foundation.NSDateComponents)
-M:PassKit.PKDateComponentsRange.Copy(Foundation.NSZone)
M:PassKit.PKDeferredPaymentRequest.#ctor(System.String,PassKit.PKDeferredPaymentSummaryItem,Foundation.NSUrl)
M:PassKit.PKDisbursementAuthorizationController.#ctor(ObjCRuntime.NativeHandle)
M:PassKit.PKDisbursementAuthorizationControllerDelegate.#ctor(ObjCRuntime.NativeHandle)
M:PassKit.PKDisbursementRequest.#ctor(System.String,System.String,System.String,System.String[],PassKit.PKMerchantCapability,PassKit.PKPaymentSummaryItem[])
M:PassKit.PKDisbursementRequest.GetDisbursementContactInvalidError(System.String,System.String)
-M:PassKit.PKDisbursementSummaryItem.Copy(Foundation.NSZone)
M:PassKit.PKDisbursementVoucher.#ctor(ObjCRuntime.NativeHandle)
M:PassKit.PKIdentityAuthorizationController.CancelRequest
M:PassKit.PKIdentityAuthorizationController.CheckCanRequestDocument(PassKit.IPKIdentityDocumentDescriptor,System.Action{System.Boolean})
@@ -18440,12 +16193,9 @@ M:PassKit.PKIdentityButton.PKIdentityButtonAppearance.#ctor(System.IntPtr)
M:PassKit.PKIdentityDriversLicenseDescriptor.AddElements(PassKit.PKIdentityElement[],PassKit.PKIdentityIntentToStore)
M:PassKit.PKIdentityDriversLicenseDescriptor.GetIntentToStore(PassKit.PKIdentityElement)
M:PassKit.PKIdentityElement.AgeThresholdElementWithAge(System.IntPtr)
-M:PassKit.PKIdentityElement.Copy(Foundation.NSZone)
-M:PassKit.PKIdentityIntentToStore.Copy(Foundation.NSZone)
M:PassKit.PKIdentityIntentToStore.MayStoreIntentForDays(System.IntPtr)
M:PassKit.PKIdentityNationalIdCardDescriptor.AddElements(PassKit.PKIdentityElement[],PassKit.PKIdentityIntentToStore)
M:PassKit.PKIdentityNationalIdCardDescriptor.GetIntentToStore(PassKit.PKIdentityElement)
-M:PassKit.PKInstantFundsOutFeeSummaryItem.Copy(Foundation.NSZone)
M:PassKit.PKIssuerProvisioningExtensionHandler.GenerateAddPaymentPassRequest(System.String,PassKit.PKAddPaymentPassRequestConfiguration,Foundation.NSData[],Foundation.NSData,Foundation.NSData,System.Action{PassKit.PKAddPaymentPassRequest})
M:PassKit.PKIssuerProvisioningExtensionHandler.GenerateAddPaymentPassRequestAsync(System.String,PassKit.PKAddPaymentPassRequestConfiguration,Foundation.NSData[],Foundation.NSData,Foundation.NSData)
M:PassKit.PKIssuerProvisioningExtensionHandler.GetStatus(System.Action{PassKit.PKIssuerProvisioningExtensionStatus})
@@ -18456,8 +16206,6 @@ M:PassKit.PKIssuerProvisioningExtensionHandler.RemotePassEntries(System.Action{P
M:PassKit.PKIssuerProvisioningExtensionHandler.RemotePassEntriesAsync
M:PassKit.PKIssuerProvisioningExtensionPaymentPassEntry.#ctor(System.String,System.String,CoreGraphics.CGImage,PassKit.PKAddPaymentPassRequestConfiguration)
M:PassKit.PKJapanIndividualNumberCardMetadata.#ctor(System.String,System.String,System.String,PassKit.PKAddPassMetadataPreview,PassKit.PKJapanIndividualNumberCardMetadataConstructorOption)
-M:PassKit.PKObject.Copy(Foundation.NSZone)
-M:PassKit.PKPass.Copy(Foundation.NSZone)
M:PassKit.PKPassLibrary.ActivateSecureElementPass(PassKit.PKSecureElementPass,Foundation.NSData,System.Action{System.Boolean,Foundation.NSError})
M:PassKit.PKPassLibrary.ActivateSecureElementPassAsync(PassKit.PKSecureElementPass,Foundation.NSData)
M:PassKit.PKPassLibrary.CanAddSecureElementPass(System.String)
@@ -18563,16 +16311,11 @@ M:PdfKit.IPdfPageOverlayViewProvider.WillDisplayOverlayView(PdfKit.PdfView,UIKit
M:PdfKit.IPdfPageOverlayViewProvider.WillEndDisplayingOverlayView(PdfKit.PdfView,AppKit.NSView,PdfKit.PdfPage)
M:PdfKit.IPdfPageOverlayViewProvider.WillEndDisplayingOverlayView(PdfKit.PdfView,UIKit.UIView,PdfKit.PdfPage)
M:PdfKit.IPdfViewDelegate.WillChangeScaleFactor(PdfKit.PdfView,System.Runtime.InteropServices.NFloat)
-M:PdfKit.PdfAction.Copy(Foundation.NSZone)
M:PdfKit.PdfActionRemoteGoTo.#ctor(System.IntPtr,CoreGraphics.CGPoint,Foundation.NSUrl)
-M:PdfKit.PdfAnnotation.Copy(Foundation.NSZone)
M:PdfKit.PdfAnnotationInk.AddBezierPath(AppKit.NSBezierPath)
M:PdfKit.PdfAnnotationInk.RemoveBezierPath(AppKit.NSBezierPath)
M:PdfKit.PdfAnnotationMarkup.Dispose(System.Boolean)
-M:PdfKit.PdfAppearanceCharacteristics.Copy(Foundation.NSZone)
-M:PdfKit.PdfBorder.Copy(Foundation.NSZone)
M:PdfKit.PdfBorder.Dispose(System.Boolean)
-M:PdfKit.PdfDestination.Copy(Foundation.NSZone)
M:PdfKit.PdfDocument.add_DidBeginDocumentFind(System.EventHandler)
M:PdfKit.PdfDocument.add_DidMatchString(System.EventHandler)
M:PdfKit.PdfDocument.add_DidUnlock(System.EventHandler)
@@ -18580,7 +16323,6 @@ M:PdfKit.PdfDocument.add_FindFinished(System.EventHandler)
M:PdfKit.PdfDocument.add_MatchFound(System.EventHandler)
M:PdfKit.PdfDocument.add_PageFindFinished(System.EventHandler)
M:PdfKit.PdfDocument.add_PageFindStarted(System.EventHandler)
-M:PdfKit.PdfDocument.Copy(Foundation.NSZone)
M:PdfKit.PdfDocument.Dispose(System.Boolean)
M:PdfKit.PdfDocument.ExchangePages(System.IntPtr,System.IntPtr)
M:PdfKit.PdfDocument.GetPage(System.IntPtr)
@@ -18601,13 +16343,11 @@ M:PdfKit.PdfOutline.Child(System.IntPtr)
M:PdfKit.PdfOutline.InsertChild(PdfKit.PdfOutline,System.IntPtr)
M:PdfKit.PdfPage.#ctor(AppKit.NSImage,PdfKit.PdfPageImageInitializationOption)
M:PdfKit.PdfPage.#ctor(UIKit.UIImage,PdfKit.PdfPageImageInitializationOption)
-M:PdfKit.PdfPage.Copy(Foundation.NSZone)
M:PdfKit.PdfPage.GetCharacterBounds(System.IntPtr)
M:PdfKit.PdfPageOverlayViewProvider_Extensions.WillDisplayOverlayView(PdfKit.IPdfPageOverlayViewProvider,PdfKit.PdfView,AppKit.NSView,PdfKit.PdfPage)
M:PdfKit.PdfPageOverlayViewProvider_Extensions.WillDisplayOverlayView(PdfKit.IPdfPageOverlayViewProvider,PdfKit.PdfView,UIKit.UIView,PdfKit.PdfPage)
M:PdfKit.PdfPageOverlayViewProvider_Extensions.WillEndDisplayingOverlayView(PdfKit.IPdfPageOverlayViewProvider,PdfKit.PdfView,AppKit.NSView,PdfKit.PdfPage)
M:PdfKit.PdfPageOverlayViewProvider_Extensions.WillEndDisplayingOverlayView(PdfKit.IPdfPageOverlayViewProvider,PdfKit.PdfView,UIKit.UIView,PdfKit.PdfPage)
-M:PdfKit.PdfSelection.Copy(Foundation.NSZone)
M:PdfKit.PdfSelection.ExtendSelectionAtEnd(System.IntPtr)
M:PdfKit.PdfSelection.ExtendSelectionAtStart(System.IntPtr)
M:PdfKit.PdfSelection.GetRange(System.UIntPtr,PdfKit.PdfPage)
@@ -18618,22 +16358,10 @@ M:PdfKit.PdfView.add_PerformFind(System.EventHandler)
M:PdfKit.PdfView.add_PerformGoToPage(System.EventHandler)
M:PdfKit.PdfView.add_PerformPrint(System.EventHandler)
M:PdfKit.PdfView.add_WillClickOnLink(System.EventHandler{PdfKit.PdfViewUrlEventArgs})
-M:PdfKit.PdfView.AnimationDidEnd(AppKit.NSAnimation)
-M:PdfKit.PdfView.AnimationDidReachProgressMark(AppKit.NSAnimation,System.Single)
-M:PdfKit.PdfView.AnimationDidStop(AppKit.NSAnimation)
-M:PdfKit.PdfView.AnimationShouldStart(AppKit.NSAnimation)
-M:PdfKit.PdfView.ComputeAnimationCurve(AppKit.NSAnimation,System.Single)
-M:PdfKit.PdfView.ConfinementRectForMenu(AppKit.NSMenu,AppKit.NSScreen)
M:PdfKit.PdfView.DidBeginFindSession(UIKit.UIFindInteraction,UIKit.UIFindSession)
M:PdfKit.PdfView.DidEndFindSession(UIKit.UIFindInteraction,UIKit.UIFindSession)
M:PdfKit.PdfView.Dispose(System.Boolean)
M:PdfKit.PdfView.GetSession(UIKit.UIFindInteraction,UIKit.UIView)
-M:PdfKit.PdfView.HasKeyEquivalentForEvent(AppKit.NSMenu,AppKit.NSEvent,Foundation.NSObject,ObjCRuntime.Selector)
-M:PdfKit.PdfView.MenuDidClose(AppKit.NSMenu)
-M:PdfKit.PdfView.MenuItemCount(AppKit.NSMenu)
-M:PdfKit.PdfView.MenuWillHighlightItem(AppKit.NSMenu,AppKit.NSMenuItem)
-M:PdfKit.PdfView.MenuWillOpen(AppKit.NSMenu)
-M:PdfKit.PdfView.NeedsUpdate(AppKit.NSMenu)
M:PdfKit.PdfView.PdfViewAppearance.#ctor(System.IntPtr)
M:PdfKit.PdfView.remove_OpenPdf(System.EventHandler{PdfKit.PdfViewActionEventArgs})
M:PdfKit.PdfView.remove_PerformFind(System.EventHandler)
@@ -18663,18 +16391,9 @@ M:PencilKit.PKCanvasViewDelegate_Extensions.DrawingDidChange(PencilKit.IPKCanvas
M:PencilKit.PKCanvasViewDelegate_Extensions.EndUsingTool(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView)
M:PencilKit.PKCanvasViewDelegate.DidRefineStrokes(PencilKit.PKCanvasView,PencilKit.PKStroke[],PencilKit.PKStroke[])
M:PencilKit.PKCanvasViewDelegate.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat)
-M:PencilKit.PKDrawing.Copy(Foundation.NSZone)
-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.PKStroke.Copy(Foundation.NSZone)
-M:PencilKit.PKStrokePath.Copy(Foundation.NSZone)
-M:PencilKit.PKStrokePoint.Copy(Foundation.NSZone)
-M:PencilKit.PKTool.Copy(Foundation.NSZone)
M:PencilKit.PKToolPicker.Dispose(System.Boolean)
-M:PencilKit.PKToolPickerCustomItemConfiguration.Copy(Foundation.NSZone)
-M:PencilKit.PKToolPickerItem.Copy(Foundation.NSZone)
M:PencilKit.PKToolPickerObserver_Extensions.FramesObscuredDidChange(PencilKit.IPKToolPickerObserver,PencilKit.PKToolPicker)
M:PencilKit.PKToolPickerObserver_Extensions.IsRulerActiveDidChange(PencilKit.IPKToolPickerObserver,PencilKit.PKToolPicker)
M:PencilKit.PKToolPickerObserver_Extensions.SelectedToolDidChange(PencilKit.IPKToolPickerObserver,PencilKit.PKToolPicker)
@@ -18752,7 +16471,6 @@ M:Phase.PhaseNumberMetaParameterDefinition.#ctor(System.Double)
M:Phase.PhaseNumericPair.#ctor(System.Double,System.Double)
M:Phase.PhaseObject.#ctor(Phase.PhaseEngine)
M:Phase.PhaseObject.AddChild(Phase.PhaseObject,Foundation.NSError@)
-M:Phase.PhaseObject.Copy(Foundation.NSZone)
M:Phase.PhaseObject.Dispose(System.Boolean)
M:Phase.PhaseObject.RemoveChild(Phase.PhaseObject)
M:Phase.PhaseObject.RemoveChildren
@@ -18775,7 +16493,6 @@ M:Phase.PhaseSamplerNodeDefinition.#ctor(System.String,Phase.PhaseMixerDefinitio
M:Phase.PhaseSamplerNodeDefinition.#ctor(System.String,Phase.PhaseMixerDefinition)
M:Phase.PhaseShape.#ctor(Phase.PhaseEngine,ModelIO.MDLMesh,Phase.PhaseMaterial[])
M:Phase.PhaseShape.#ctor(Phase.PhaseEngine,ModelIO.MDLMesh)
-M:Phase.PhaseShape.Copy(Foundation.NSZone)
M:Phase.PhaseSoundEvent.#ctor(Phase.PhaseEngine,System.String,Foundation.NSError@)
M:Phase.PhaseSoundEvent.#ctor(Phase.PhaseEngine,System.String,Phase.PhaseMixerParameters,Foundation.NSError@)
M:Phase.PhaseSoundEvent.Pause
@@ -18802,7 +16519,6 @@ M:Phase.PhaseSwitchNodeDefinition.#ctor(Phase.PhaseStringMetaParameterDefinition
M:Phase.PhaseSwitchNodeDefinition.#ctor(Phase.PhaseStringMetaParameterDefinition)
M:Phase.PhaseSwitchNodeDefinition.AddSubtree(Phase.PhaseSoundEventNodeDefinition,System.String)
M:Photos.IPHPhotoLibraryAvailabilityObserver.PhotoLibraryDidBecomeUnavailable(Photos.PHPhotoLibrary)
-M:Photos.IPHPhotoLibraryChangeObserver.PhotoLibraryDidChange(Photos.PHChange)
M:Photos.PHAdjustmentData.#ctor(System.String,System.String,Foundation.NSData)
M:Photos.PHAsset.CanPerformEditOperation(Photos.PHAssetEditOperation)
M:Photos.PHAsset.FetchAssets(Foundation.NSUrl[],Photos.PHFetchOptions)
@@ -18838,17 +16554,14 @@ M:Photos.PHAssetCollectionChangeRequest.RemoveAssets(Foundation.NSIndexSet)
M:Photos.PHAssetCollectionChangeRequest.RemoveAssets(Photos.PHObject[])
M:Photos.PHAssetCollectionChangeRequest.ReplaceAssets(Foundation.NSIndexSet,Photos.PHObject[])
M:Photos.PHAssetContentEditingInputExtensions.CancelContentEditingInputRequest(Photos.PHAsset,System.UIntPtr)
-M:Photos.PHAssetContentEditingInputExtensions.RequestContentEditingInput(Photos.PHAsset,Photos.PHContentEditingInputRequestOptions,Photos.PHContentEditingHandler)
M:Photos.PHAssetCreationRequest.AddResource(Photos.PHAssetResourceType,Foundation.NSData,Photos.PHAssetResourceCreationOptions)
M:Photos.PHAssetCreationRequest.AddResource(Photos.PHAssetResourceType,Foundation.NSUrl,Photos.PHAssetResourceCreationOptions)
M:Photos.PHAssetCreationRequest.CreationRequestForAsset
M:Photos.PHAssetResource.GetAssetResources(Photos.PHAsset)
M:Photos.PHAssetResource.GetAssetResources(Photos.PHLivePhoto)
-M:Photos.PHAssetResourceCreationOptions.Copy(Foundation.NSZone)
M:Photos.PHAssetResourceManager.CancelDataRequest(System.Int32)
M:Photos.PHAssetResourceManager.RequestData(Photos.PHAssetResource,Photos.PHAssetResourceRequestOptions,System.Action{Foundation.NSData},System.Action{Foundation.NSError})
M:Photos.PHAssetResourceManager.WriteData(Photos.PHAssetResource,Foundation.NSUrl,Photos.PHAssetResourceRequestOptions,System.Action{Foundation.NSError})
-M:Photos.PHAssetResourceRequestOptions.Copy(Foundation.NSZone)
M:Photos.PHCachingImageManager.StartCaching(Photos.PHAsset[],CoreGraphics.CGSize,Photos.PHImageContentMode,Photos.PHImageRequestOptions)
M:Photos.PHCachingImageManager.StopCaching
M:Photos.PHCachingImageManager.StopCaching(Photos.PHAsset[],CoreGraphics.CGSize,Photos.PHImageContentMode,Photos.PHImageRequestOptions)
@@ -18879,9 +16592,7 @@ M:Photos.PHCollectionListChangeRequest.ReplaceChildCollection(Foundation.NSIndex
M:Photos.PHContentEditingOutput.#ctor(Photos.PHContentEditingInput)
M:Photos.PHContentEditingOutput.#ctor(Photos.PHObjectPlaceholder)
M:Photos.PHContentEditingOutput.GetRenderedContentUrl(UniformTypeIdentifiers.UTType,Foundation.NSError@)
-M:Photos.PHFetchOptions.Copy(Foundation.NSZone)
M:Photos.PHFetchResult.Contains(Foundation.NSObject)
-M:Photos.PHFetchResult.Copy(Foundation.NSZone)
M:Photos.PHFetchResult.CountOfAssetsWithMediaType(Photos.PHAssetMediaType)
M:Photos.PHFetchResult.Enumerate(Foundation.NSEnumerationOptions,Photos.PHFetchResultEnumerator)
M:Photos.PHFetchResult.Enumerate(Foundation.NSIndexSet,Foundation.NSEnumerationOptions,Photos.PHFetchResultEnumerator)
@@ -18899,23 +16610,16 @@ M:Photos.PHImageManager.RequestImageDataAndOrientation(Photos.PHAsset,Photos.PHI
M:Photos.PHImageManager.RequestImageForAsset(Photos.PHAsset,CoreGraphics.CGSize,Photos.PHImageContentMode,Photos.PHImageRequestOptions,Photos.PHImageResultHandler)
M:Photos.PHImageManager.RequestLivePhoto(Photos.PHAsset,CoreGraphics.CGSize,Photos.PHImageContentMode,Photos.PHLivePhotoRequestOptions,Photos.PHImageManagerRequestLivePhoto)
M:Photos.PHImageManager.RequestPlayerItem(Photos.PHAsset,Photos.PHVideoRequestOptions,Photos.PHImageManagerRequestPlayerHandler)
-M:Photos.PHImageRequestOptions.Copy(Foundation.NSZone)
M:Photos.PHLivePhoto.CancelLivePhotoRequest(System.Int32)
-M:Photos.PHLivePhoto.Copy(Foundation.NSZone)
M:Photos.PHLivePhoto.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
M:Photos.PHLivePhoto.RequestLivePhoto(Foundation.NSUrl[],AppKit.NSImage,CoreGraphics.CGSize,Photos.PHImageContentMode,System.Action{Photos.PHLivePhoto,Foundation.NSDictionary})
M:Photos.PHLivePhoto.RequestLivePhoto(Foundation.NSUrl[],UIKit.UIImage,CoreGraphics.CGSize,Photos.PHImageContentMode,System.Action{Photos.PHLivePhoto,Foundation.NSDictionary})
M:Photos.PHLivePhotoEditingContext.#ctor(Photos.PHContentEditingInput)
M:Photos.PHLivePhotoEditingContext.Cancel
-M:Photos.PHLivePhotoRequestOptions.Copy(Foundation.NSZone)
-M:Photos.PHObject.Copy(Foundation.NSZone)
M:Photos.PHPersistentChange.GetChangeDetails(Photos.PHObjectType,Foundation.NSError@)
M:Photos.PHPersistentChangeFetchResult.EnumerateChanges(Photos.PHPersistentChangeFetchResultEnumerator)
-M:Photos.PHPersistentChangeToken.Copy(Foundation.NSZone)
M:Photos.PHPhotoLibrary_CloudIdentifiers.GetCloudIdentifierMappings(Photos.PHPhotoLibrary,System.String[])
-M:Photos.PHPhotoLibrary_CloudIdentifiers.GetCloudIdentifiers(Photos.PHPhotoLibrary,System.String[])
M:Photos.PHPhotoLibrary_CloudIdentifiers.GetLocalIdentifierMappings(Photos.PHPhotoLibrary,Photos.PHCloudIdentifier[])
-M:Photos.PHPhotoLibrary_CloudIdentifiers.GetLocalIdentifiers(Photos.PHPhotoLibrary,Photos.PHCloudIdentifier[])
M:Photos.PHPhotoLibrary.FetchPersistentChanges(Photos.PHPersistentChangeToken,Foundation.NSError@)
M:Photos.PHPhotoLibrary.GetAuthorizationStatus(Photos.PHAccessLevel)
M:Photos.PHPhotoLibrary.PerformChanges(System.Action,System.Action{System.Boolean,Foundation.NSError})
@@ -18928,31 +16632,13 @@ M:Photos.PHPhotoLibrary.RequestAuthorizationAsync
M:Photos.PHPhotoLibrary.RequestAuthorizationAsync(Photos.PHAccessLevel)
M:Photos.PHPhotoLibrary.Unregister(Photos.IPHPhotoLibraryAvailabilityObserver)
M:Photos.PHPhotoLibrary.UnregisterChangeObserver(Photos.IPHPhotoLibraryChangeObserver)
-M:Photos.PHPhotoLibraryChangeObserver.PhotoLibraryDidChange(Photos.PHChange)
M:Photos.PHProjectChangeRequest.#ctor(Photos.PHProject)
M:Photos.PHProjectChangeRequest.RemoveAssets(Photos.PHAsset[])
M:Photos.PHProjectChangeRequest.SetKeyAsset(Photos.PHAsset)
M:Photos.PHProjectChangeRequest.SetProjectPreviewImage(AppKit.NSImage)
-M:Photos.PHVideoRequestOptions.Copy(Foundation.NSZone)
-M:PhotosUI.IPHContentEditingController.CancelContentEditing
-M:PhotosUI.IPHContentEditingController.CanHandleAdjustmentData(Photos.PHAdjustmentData)
-M:PhotosUI.IPHContentEditingController.FinishContentEditing(System.Action{Photos.PHContentEditingOutput})
-M:PhotosUI.IPHContentEditingController.StartContentEditing(Photos.PHContentEditingInput,AppKit.NSImage)
-M:PhotosUI.IPHContentEditingController.StartContentEditing(Photos.PHContentEditingInput,UIKit.UIImage)
M:PhotosUI.IPHLivePhotoViewDelegate.CanBeginPlayback(PhotosUI.PHLivePhotoView,PhotosUI.PHLivePhotoViewPlaybackStyle)
M:PhotosUI.IPHLivePhotoViewDelegate.GetExtraMinimumTouchDuration(PhotosUI.PHLivePhotoView,UIKit.UITouch,PhotosUI.PHLivePhotoViewPlaybackStyle)
M:PhotosUI.IPHPickerViewControllerDelegate.DidFinishPicking(PhotosUI.PHPickerViewController,PhotosUI.PHPickerResult[])
-M:PhotosUI.IPHProjectExtensionController.BeginProject(PhotosUI.PHProjectExtensionContext,PhotosUI.PHProjectInfo,System.Action{Foundation.NSError})
-M:PhotosUI.IPHProjectExtensionController.FinishProject(System.Action)
-M:PhotosUI.IPHProjectExtensionController.GetSupportedProjectTypes
-M:PhotosUI.IPHProjectExtensionController.GetTypeDescriptionDataSource(Foundation.NSString,PhotosUI.IPHProjectTypeDescriptionInvalidator)
-M:PhotosUI.IPHProjectExtensionController.ResumeProject(PhotosUI.PHProjectExtensionContext,System.Action{Foundation.NSError})
-M:PhotosUI.IPHProjectTypeDescriptionDataSource.GetFooterTextForSubtypes(Foundation.NSString)
-M:PhotosUI.IPHProjectTypeDescriptionDataSource.GetSubtypes(Foundation.NSString)
-M:PhotosUI.IPHProjectTypeDescriptionDataSource.GetTypeDescription(Foundation.NSString)
-M:PhotosUI.IPHProjectTypeDescriptionDataSource.WillDiscardDataSource
-M:PhotosUI.IPHProjectTypeDescriptionInvalidator.InvalidateFooterTextForSubtypes(Foundation.NSString)
-M:PhotosUI.IPHProjectTypeDescriptionInvalidator.InvalidateTypeDescription(Foundation.NSString)
M:PhotosUI.PHLivePhotoView.Dispose(System.Boolean)
M:PhotosUI.PHLivePhotoView.GetLivePhotoBadgeImage(PhotosUI.PHLivePhotoBadgeOptions)
M:PhotosUI.PHLivePhotoView.PHLivePhotoViewAppearance.#ctor(System.IntPtr)
@@ -18967,13 +16653,10 @@ M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPicker(Photos.PHP
M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPicker(Photos.PHPhotoLibrary,UIKit.UIViewController)
M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPickerAsync(Photos.PHPhotoLibrary,UIKit.UIViewController)
M:PhotosUI.PHPickerConfiguration.#ctor(Photos.PHPhotoLibrary)
-M:PhotosUI.PHPickerConfiguration.Copy(Foundation.NSZone)
-M:PhotosUI.PHPickerFilter.Copy(Foundation.NSZone)
M:PhotosUI.PHPickerFilter.GetAllFilterMatchingSubfilters(PhotosUI.PHPickerFilter[])
M:PhotosUI.PHPickerFilter.GetAnyFilterMatchingSubfilters(PhotosUI.PHPickerFilter[])
M:PhotosUI.PHPickerFilter.GetNotFilterOfSubfilter(PhotosUI.PHPickerFilter)
M:PhotosUI.PHPickerFilter.GetPlaybackStyleFilter(Photos.PHAssetPlaybackStyle)
-M:PhotosUI.PHPickerUpdateConfiguration.Copy(Foundation.NSZone)
M:PhotosUI.PHPickerViewController.#ctor(PhotosUI.PHPickerConfiguration)
M:PhotosUI.PHPickerViewController.DeselectAssets(System.String[])
M:PhotosUI.PHPickerViewController.Dispose(System.Boolean)
@@ -18983,27 +16666,16 @@ M:PhotosUI.PHPickerViewController.UpdatePicker(PhotosUI.PHPickerUpdateConfigurat
M:PhotosUI.PHPickerViewController.ZoomIn
M:PhotosUI.PHPickerViewController.ZoomOut
M:PhotosUI.PHPickerViewControllerDelegate.DidFinishPicking(PhotosUI.PHPickerViewController,PhotosUI.PHPickerResult[])
-M:PhotosUI.PHProjectExtensionContext.Copy(Foundation.NSZone)
M:PhotosUI.PHProjectExtensionContext.ShowEditor(Photos.PHAsset)
M:PhotosUI.PHProjectExtensionContext.UpdatedProjectInfo(PhotosUI.PHProjectInfo,System.Action{PhotosUI.PHProjectInfo})
-M:PhotosUI.PHProjectExtensionController_Extensions.GetSupportedProjectTypes(PhotosUI.IPHProjectExtensionController)
-M:PhotosUI.PHProjectExtensionController_Extensions.GetTypeDescriptionDataSource(PhotosUI.IPHProjectExtensionController,Foundation.NSString,PhotosUI.IPHProjectTypeDescriptionInvalidator)
M:PhotosUI.PHProjectTypeDescription.#ctor(Foundation.NSString,System.String,Foundation.NSAttributedString,AppKit.NSImage,PhotosUI.PHProjectTypeDescription[])
M:PhotosUI.PHProjectTypeDescription.#ctor(Foundation.NSString,System.String,Foundation.NSAttributedString,AppKit.NSImage,System.Boolean)
M:PhotosUI.PHProjectTypeDescription.#ctor(Foundation.NSString,System.String,System.String,AppKit.NSImage,PhotosUI.PHProjectTypeDescription[])
M:PhotosUI.PHProjectTypeDescription.#ctor(Foundation.NSString,System.String,System.String,AppKit.NSImage,System.Boolean)
M:PhotosUI.PHProjectTypeDescription.#ctor(Foundation.NSString,System.String,System.String,AppKit.NSImage)
-M:PhotosUI.PHProjectTypeDescriptionDataSource_Extensions.WillDiscardDataSource(PhotosUI.IPHProjectTypeDescriptionDataSource)
-M:PhotosUI.PHProjectTypeDescriptionDataSource.GetFooterTextForSubtypes(Foundation.NSString)
-M:PhotosUI.PHProjectTypeDescriptionDataSource.GetSubtypes(Foundation.NSString)
-M:PhotosUI.PHProjectTypeDescriptionDataSource.GetTypeDescription(Foundation.NSString)
-M:PhotosUI.PHProjectTypeDescriptionDataSource.WillDiscardDataSource
M:PrintCore.PMPrintCoreBase.Release
M:PrintCore.PMPrintCoreBase.Retain
-M:PushKit.IPKPushRegistryDelegate.DidReceiveIncomingPush(PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String)
-M:PushKit.IPKPushRegistryDelegate.DidUpdatePushCredentials(PushKit.PKPushRegistry,PushKit.PKPushCredentials,System.String)
M:PushKit.PKPushRegistry.Dispose(System.Boolean)
-M:PushKit.PKPushRegistryDelegate_Extensions.DidReceiveIncomingPush(PushKit.IPKPushRegistryDelegate,PushKit.PKPushRegistry,PushKit.PKPushPayload,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)
@@ -19056,9 +16728,7 @@ M:PushToTalk.PTChannelManagerDelegate.ReceivedEphemeralPushToken(PushToTalk.PTCh
M:PushToTalk.PTChannelRestorationDelegate.Create(Foundation.NSUuid)
M:PushToTalk.PTParticipant.#ctor(System.String,UIKit.UIImage)
M:PushToTalk.PTPushResult.Create(PushToTalk.PTParticipant)
-M:QuartzComposer.QCComposition.Copy(Foundation.NSZone)
M:QuickLook.IQLPreviewControllerDataSource.GetPreviewItem(QuickLook.QLPreviewController,System.IntPtr)
-M:QuickLook.IQLPreviewControllerDataSource.PreviewItemCount(QuickLook.QLPreviewController)
M:QuickLook.IQLPreviewControllerDelegate.DidSaveEditedCopy(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,Foundation.NSUrl)
M:QuickLook.IQLPreviewControllerDelegate.DidUpdateContents(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem)
M:QuickLook.IQLPreviewControllerDelegate.GetEditingMode(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem)
@@ -19076,7 +16746,6 @@ M:QuickLook.QLPreviewController.remove_DidSaveEditedCopy(System.EventHandler{Qui
M:QuickLook.QLPreviewController.remove_DidUpdateContents(System.EventHandler{QuickLook.QLPreviewControllerDelegateDidUpdateEventArgs})
M:QuickLook.QLPreviewController.remove_WillDismiss(System.EventHandler)
M:QuickLook.QLPreviewControllerDataSource.GetPreviewItem(QuickLook.QLPreviewController,System.IntPtr)
-M:QuickLook.QLPreviewControllerDataSource.PreviewItemCount(QuickLook.QLPreviewController)
M:QuickLook.QLPreviewControllerDelegate_Extensions.DidSaveEditedCopy(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,Foundation.NSUrl)
M:QuickLook.QLPreviewControllerDelegate_Extensions.DidUpdateContents(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController,QuickLook.IQLPreviewItem)
M:QuickLook.QLPreviewControllerDelegate_Extensions.GetEditingMode(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController,QuickLook.IQLPreviewItem)
@@ -19085,7 +16754,6 @@ M:QuickLook.QLPreviewControllerDelegate.DidUpdateContents(QuickLook.QLPreviewCon
M:QuickLook.QLPreviewControllerDelegate.GetEditingMode(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem)
M:QuickLook.QLPreviewingController_Extensions.ProvidePreview(QuickLook.IQLPreviewingController,QuickLook.QLFilePreviewRequest,System.Action{QuickLook.QLPreviewReply,Foundation.NSError})
M:QuickLook.QLPreviewItem_Extensions.GetPreviewItemTitle(QuickLook.IQLPreviewItem)
-M:QuickLook.QLPreviewProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:QuickLook.QLPreviewReply.#ctor(CoreGraphics.CGSize,QuickLook.QLPreviewReplyUIDocumentCreationHandler)
M:QuickLook.QLPreviewReply.#ctor(CoreGraphics.CGSize,System.Boolean,QuickLook.QLPreviewReplyDrawingHandler)
M:QuickLook.QLPreviewReply.#ctor(Foundation.NSUrl)
@@ -19094,7 +16762,6 @@ M:QuickLook.QLPreviewReplyAttachment.#ctor(Foundation.NSData,UniformTypeIdentifi
M:QuickLook.QLPreviewSceneActivationConfiguration.#ctor(Foundation.NSUrl[],QuickLook.QLPreviewSceneOptions)
M:QuickLook.QLPreviewSceneActivationConfiguration.#ctor(Foundation.NSUserActivity)
M:QuickLookThumbnailing.QLThumbnailGenerationRequest.#ctor(Foundation.NSUrl,CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,QuickLookThumbnailing.QLThumbnailGenerationRequestRepresentationTypes)
-M:QuickLookThumbnailing.QLThumbnailGenerationRequest.Copy(Foundation.NSZone)
M:QuickLookThumbnailing.QLThumbnailGenerator.CancelRequest(QuickLookThumbnailing.QLThumbnailGenerationRequest)
M:QuickLookThumbnailing.QLThumbnailGenerator.GenerateBestRepresentation(QuickLookThumbnailing.QLThumbnailGenerationRequest,System.Action{QuickLookThumbnailing.QLThumbnailRepresentation,Foundation.NSError})
M:QuickLookThumbnailing.QLThumbnailGenerator.GenerateBestRepresentationAsync(QuickLookThumbnailing.QLThumbnailGenerationRequest)
@@ -19138,60 +16805,11 @@ M:QuickLookUI.QLPreviewPanelDataSource.PreviewItemAtIndex(QuickLookUI.QLPreviewP
M:QuickLookUI.QLPreviewPanelDelegate_Extensions.HandleEvent(QuickLookUI.IQLPreviewPanelDelegate,QuickLookUI.QLPreviewPanel,AppKit.NSEvent)
M:QuickLookUI.QLPreviewPanelDelegate_Extensions.SourceFrameOnScreenForPreviewItem(QuickLookUI.IQLPreviewPanelDelegate,QuickLookUI.QLPreviewPanel,QuickLookUI.IQLPreviewItem)
M:QuickLookUI.QLPreviewPanelDelegate_Extensions.TransitionImageForPreviewItem(QuickLookUI.IQLPreviewPanelDelegate,QuickLookUI.QLPreviewPanel,QuickLookUI.IQLPreviewItem,CoreGraphics.CGRect)
-M:QuickLookUI.QLPreviewPanelDelegate.CustomWindowsToEnterFullScreen(AppKit.NSWindow)
-M:QuickLookUI.QLPreviewPanelDelegate.CustomWindowsToExitFullScreen(AppKit.NSWindow)
-M:QuickLookUI.QLPreviewPanelDelegate.DidBecomeKey(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidBecomeMain(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidChangeBackingProperties(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidChangeScreen(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidChangeScreenProfile(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidDecodeRestorableState(AppKit.NSWindow,Foundation.NSCoder)
-M:QuickLookUI.QLPreviewPanelDelegate.DidDeminiaturize(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidEndLiveResize(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidEndSheet(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidEnterFullScreen(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidEnterVersionBrowser(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidExitFullScreen(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidExitVersionBrowser(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidExpose(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidFailToEnterFullScreen(AppKit.NSWindow)
-M:QuickLookUI.QLPreviewPanelDelegate.DidFailToExitFullScreen(AppKit.NSWindow)
-M:QuickLookUI.QLPreviewPanelDelegate.DidMiniaturize(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidMove(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidResignKey(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidResignMain(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidResize(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.DidUpdate(Foundation.NSNotification)
M:QuickLookUI.QLPreviewPanelDelegate.GetPreviewRepresentableActivityItems(AppKit.NSWindow)
M:QuickLookUI.QLPreviewPanelDelegate.GetWindowForSharingRequest(AppKit.NSWindow)
M:QuickLookUI.QLPreviewPanelDelegate.HandleEvent(QuickLookUI.QLPreviewPanel,AppKit.NSEvent)
-M:QuickLookUI.QLPreviewPanelDelegate.ShouldDragDocumentWithEvent(AppKit.NSWindow,AppKit.NSEvent,CoreGraphics.CGPoint,AppKit.NSPasteboard)
-M:QuickLookUI.QLPreviewPanelDelegate.ShouldPopUpDocumentPathMenu(AppKit.NSWindow,AppKit.NSMenu)
-M:QuickLookUI.QLPreviewPanelDelegate.ShouldZoom(AppKit.NSWindow,CoreGraphics.CGRect)
M:QuickLookUI.QLPreviewPanelDelegate.SourceFrameOnScreenForPreviewItem(QuickLookUI.QLPreviewPanel,QuickLookUI.IQLPreviewItem)
-M:QuickLookUI.QLPreviewPanelDelegate.StartCustomAnimationToEnterFullScreen(AppKit.NSWindow,System.Double)
-M:QuickLookUI.QLPreviewPanelDelegate.StartCustomAnimationToExitFullScreen(AppKit.NSWindow,System.Double)
M:QuickLookUI.QLPreviewPanelDelegate.TransitionImageForPreviewItem(QuickLookUI.QLPreviewPanel,QuickLookUI.IQLPreviewItem,CoreGraphics.CGRect)
-M:QuickLookUI.QLPreviewPanelDelegate.WillBeginSheet(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillClose(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillEncodeRestorableState(AppKit.NSWindow,Foundation.NSCoder)
-M:QuickLookUI.QLPreviewPanelDelegate.WillEnterFullScreen(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillEnterVersionBrowser(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillExitFullScreen(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillExitVersionBrowser(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillMiniaturize(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillMove(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillPositionSheet(AppKit.NSWindow,AppKit.NSWindow,CoreGraphics.CGRect)
-M:QuickLookUI.QLPreviewPanelDelegate.WillResize(AppKit.NSWindow,CoreGraphics.CGSize)
-M:QuickLookUI.QLPreviewPanelDelegate.WillResizeForVersionBrowser(AppKit.NSWindow,CoreGraphics.CGSize,CoreGraphics.CGSize)
-M:QuickLookUI.QLPreviewPanelDelegate.WillReturnFieldEditor(AppKit.NSWindow,Foundation.NSObject)
-M:QuickLookUI.QLPreviewPanelDelegate.WillReturnUndoManager(AppKit.NSWindow)
-M:QuickLookUI.QLPreviewPanelDelegate.WillStartLiveResize(Foundation.NSNotification)
-M:QuickLookUI.QLPreviewPanelDelegate.WillUseFullScreenContentSize(AppKit.NSWindow,CoreGraphics.CGSize)
-M:QuickLookUI.QLPreviewPanelDelegate.WillUseFullScreenPresentationOptions(AppKit.NSWindow,AppKit.NSApplicationPresentationOptions)
-M:QuickLookUI.QLPreviewPanelDelegate.WillUseStandardFrame(AppKit.NSWindow,CoreGraphics.CGRect)
-M:QuickLookUI.QLPreviewPanelDelegate.WindowShouldClose(Foundation.NSObject)
-M:QuickLookUI.QLPreviewProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:QuickLookUI.QLPreviewReply.#ctor(CoreGraphics.CGSize,QuickLookUI.QLPreviewReplyUIDocumentCreationHandler)
M:QuickLookUI.QLPreviewReply.#ctor(CoreGraphics.CGSize,System.Boolean,QuickLookUI.QLPreviewReplyDrawingHandler)
M:QuickLookUI.QLPreviewReply.#ctor(Foundation.NSUrl)
@@ -19202,17 +16820,12 @@ M:QuickLookUI.QLPreviewView.#ctor(CoreGraphics.CGRect)
M:QuickLookUI.QLPreviewView.Close
M:QuickLookUI.QLPreviewView.RefreshPreviewItem
M:ReplayKit.IRPBroadcastActivityControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityController,ReplayKit.RPBroadcastController,Foundation.NSError)
-M:ReplayKit.IRPBroadcastActivityViewControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityViewController,ReplayKit.RPBroadcastController,Foundation.NSError)
-M:ReplayKit.NSExtensionContext_RPBroadcastExtension.CompleteRequest(Foundation.NSExtensionContext,Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding})
-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.RPBroadcastActivityViewController.Dispose(System.Boolean)
M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewControllerAsync
M:ReplayKit.RPBroadcastController.Dispose(System.Boolean)
M:ReplayKit.RPBroadcastController.FinishBroadcastAsync
M:ReplayKit.RPBroadcastController.StartBroadcastAsync
-M:ReplayKit.RPBroadcastHandler.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:ReplayKit.RPPreviewViewController.Dispose(System.Boolean)
M:ReplayKit.RPScreenRecorder.DiscardRecordingAsync
M:ReplayKit.RPScreenRecorder.Dispose(System.Boolean)
@@ -19234,7 +16847,6 @@ M:SafariServices.ISFSafariExtensionHandling.ValidateToolbarItemAsync(SafariServi
M:SafariServices.ISFSafariExtensionHandling.WillNavigate(SafariServices.SFSafariPage,Foundation.NSUrl)
M:SafariServices.ISFSafariViewControllerDelegate.WillOpenInBrowser(SafariServices.SFSafariViewController)
M:SafariServices.SFAddToHomeScreenInfo.#ctor(BrowserEngineKit.BEWebAppManifest)
-M:SafariServices.SFAddToHomeScreenInfo.Copy(Foundation.NSZone)
M:SafariServices.SFExtensionValidationResult.#ctor(System.Boolean,Foundation.NSString)
M:SafariServices.SFSafariApplication.GetActiveWindowAsync
M:SafariServices.SFSafariApplication.GetAllWindows(System.Action{SafariServices.SFSafariWindow[]})
@@ -19242,7 +16854,6 @@ M:SafariServices.SFSafariApplication.GetAllWindowsAsync
M:SafariServices.SFSafariApplication.GetHostApplicationAsync
M:SafariServices.SFSafariExtension.GetBaseUri(System.Action{Foundation.NSUrl})
M:SafariServices.SFSafariExtension.GetBaseUriAsync
-M:SafariServices.SFSafariExtensionHandler.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:SafariServices.SFSafariExtensionHandler.ContentBlocker(System.String,Foundation.NSUrl[],SafariServices.SFSafariPage)
M:SafariServices.SFSafariExtensionHandler.ValidateContextMenuItemAsync(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:SafariServices.SFSafariExtensionHandler.ValidateToolbarItemAsync(SafariServices.SFSafariWindow)
@@ -19253,7 +16864,6 @@ M:SafariServices.SFSafariExtensionHandling_Extensions.ValidateContextMenuItemAsy
M:SafariServices.SFSafariExtensionHandling_Extensions.ValidateToolbarItemAsync(SafariServices.ISFSafariExtensionHandling,SafariServices.SFSafariWindow)
M:SafariServices.SFSafariExtensionHandling_Extensions.WillNavigate(SafariServices.ISFSafariExtensionHandling,SafariServices.SFSafariPage,Foundation.NSUrl)
M:SafariServices.SFSafariExtensionViewController.DismissPopover
-M:SafariServices.SFSafariPage.Copy(Foundation.NSZone)
M:SafariServices.SFSafariPage.GetContainingTab(System.Action{SafariServices.SFSafariTab})
M:SafariServices.SFSafariPage.GetContainingTabAsync
M:SafariServices.SFSafariPage.GetPagePropertiesAsync
@@ -19261,26 +16871,21 @@ M:SafariServices.SFSafariPage.GetScreenshotOfVisibleArea(System.Action{AppKit.NS
M:SafariServices.SFSafariPage.GetScreenshotOfVisibleAreaAsync
M:SafariServices.SFSafariTab.ActivateAsync
M:SafariServices.SFSafariTab.Close
-M:SafariServices.SFSafariTab.Copy(Foundation.NSZone)
M:SafariServices.SFSafariTab.GetActivePageAsync
M:SafariServices.SFSafariTab.GetContainingWindow(System.Action{SafariServices.SFSafariWindow})
M:SafariServices.SFSafariTab.GetContainingWindowAsync
M:SafariServices.SFSafariTab.GetPagesAsync
M:SafariServices.SFSafariTab.NavigateTo(Foundation.NSUrl)
-M:SafariServices.SFSafariToolbarItem.Copy(Foundation.NSZone)
M:SafariServices.SFSafariToolbarItem.ShowPopover
M:SafariServices.SFSafariViewController.Dispose(System.Boolean)
M:SafariServices.SFSafariViewController.PrewarmConnections(Foundation.NSUrl[])
M:SafariServices.SFSafariViewControllerActivityButton.#ctor(UIKit.UIImage,System.String)
-M:SafariServices.SFSafariViewControllerActivityButton.Copy(Foundation.NSZone)
-M:SafariServices.SFSafariViewControllerConfiguration.Copy(Foundation.NSZone)
M:SafariServices.SFSafariViewControllerDataStore.ClearWebsiteData(System.Action)
M:SafariServices.SFSafariViewControllerDataStore.ClearWebsiteDataAsync
M:SafariServices.SFSafariViewControllerDelegate_Extensions.WillOpenInBrowser(SafariServices.ISFSafariViewControllerDelegate,SafariServices.SFSafariViewController)
M:SafariServices.SFSafariViewControllerDelegate.WillOpenInBrowser(SafariServices.SFSafariViewController)
M:SafariServices.SFSafariViewControllerPrewarmingToken.Invalidate
M:SafariServices.SFSafariWindow.Close
-M:SafariServices.SFSafariWindow.Copy(Foundation.NSZone)
M:SafariServices.SFSafariWindow.GetActiveTabAsync
M:SafariServices.SFSafariWindow.GetAllTabs(System.Action{SafariServices.SFSafariTab[]})
M:SafariServices.SFSafariWindow.GetAllTabsAsync
@@ -19290,83 +16895,35 @@ M:SafariServices.SFValidationResult.#ctor(System.Boolean,Foundation.NSString)
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.SACrashDetectionEvent.Copy(Foundation.NSZone)
M:SafetyKit.SACrashDetectionManager.Dispose(System.Boolean)
M:SafetyKit.SACrashDetectionManager.RequestAuthorizationAsync
M:SafetyKit.SAEmergencyResponseDelegate_Extensions.DidUpdateVoiceCallStatus(SafetyKit.ISAEmergencyResponseDelegate,SafetyKit.SAEmergencyResponseManager,SafetyKit.SAEmergencyResponseManagerVoiceCallStatus)
M:SafetyKit.SAEmergencyResponseManager.DialVoiceCallAsync(System.String)
M:SafetyKit.SAEmergencyResponseManager.Dispose(System.Boolean)
-M:SceneKit.ISCNActionable.GetAction(System.String)
-M:SceneKit.ISCNActionable.HasActions
-M:SceneKit.ISCNActionable.RemoveAction(System.String)
-M:SceneKit.ISCNActionable.RemoveAllActions
-M:SceneKit.ISCNActionable.RunAction(SceneKit.SCNAction,System.Action)
-M:SceneKit.ISCNActionable.RunAction(SceneKit.SCNAction,System.String,System.Action)
-M:SceneKit.ISCNActionable.RunAction(SceneKit.SCNAction,System.String)
-M:SceneKit.ISCNActionable.RunAction(SceneKit.SCNAction)
M:SceneKit.ISCNAnimatable.AddAnimation(SceneKit.ISCNAnimationProtocol,System.String)
M:SceneKit.ISCNAnimatable.AddAnimation(SceneKit.SCNAnimationPlayer,Foundation.NSString)
-M:SceneKit.ISCNAnimatable.GetAnimation(Foundation.NSString)
-M:SceneKit.ISCNAnimatable.GetAnimationKeys
M:SceneKit.ISCNAnimatable.GetAnimationPlayer(Foundation.NSString)
-M:SceneKit.ISCNAnimatable.IsAnimationPaused(Foundation.NSString)
-M:SceneKit.ISCNAnimatable.PauseAnimation(Foundation.NSString)
-M:SceneKit.ISCNAnimatable.RemoveAllAnimations
M:SceneKit.ISCNAnimatable.RemoveAllAnimationsWithBlendOutDuration(System.Runtime.InteropServices.NFloat)
M:SceneKit.ISCNAnimatable.RemoveAnimation(Foundation.NSString,System.Runtime.InteropServices.NFloat)
-M:SceneKit.ISCNAnimatable.RemoveAnimation(Foundation.NSString)
M:SceneKit.ISCNAnimatable.RemoveAnimationUsingBlendOutDuration(Foundation.NSString,System.Runtime.InteropServices.NFloat)
-M:SceneKit.ISCNAnimatable.ResumeAnimation(Foundation.NSString)
M:SceneKit.ISCNAnimatable.SetSpeed(System.Runtime.InteropServices.NFloat,Foundation.NSString)
-M:SceneKit.ISCNBoundingVolume.GetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@)
M:SceneKit.ISCNBoundingVolume.GetBoundingSphere(SceneKit.SCNVector3@,System.Runtime.InteropServices.NFloat@)
-M:SceneKit.ISCNBoundingVolume.SetBoundingBox(SceneKit.SCNVector3@,SceneKit.SCNVector3@)
M:SceneKit.ISCNBufferStream.Length(System.IntPtr,System.UIntPtr)
-M:SceneKit.ISCNProgramDelegate.BindValue(SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer)
-M:SceneKit.ISCNProgramDelegate.IsProgramOpaque(SceneKit.SCNProgram)
-M:SceneKit.ISCNProgramDelegate.UnbindValue(SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer)
M:SceneKit.ISCNSceneRenderer.GetNodesInsideFrustum(SceneKit.SCNNode)
-M:SceneKit.ISCNSceneRenderer.IsNodeInsideFrustum(SceneKit.SCNNode,SceneKit.SCNNode)
-M:SceneKit.ISCNSceneRenderer.Prepare(Foundation.NSObject,System.Func{System.Boolean})
-M:SceneKit.ISCNSceneRenderer.Prepare(Foundation.NSObject[],System.Action{System.Boolean})
M:SceneKit.ISCNSceneRenderer.PresentScene(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode,System.Action)
-M:SceneKit.ISCNSceneRenderer.ProjectPoint(SceneKit.SCNVector3)
-M:SceneKit.ISCNSceneRenderer.UnprojectPoint(SceneKit.SCNVector3)
-M:SceneKit.SCNAction.Copy(Foundation.NSZone)
-M:SceneKit.SCNAnimation.Copy(Foundation.NSZone)
-M:SceneKit.SCNAnimationPlayer.Copy(Foundation.NSZone)
-M:SceneKit.SCNAudioSource.Copy(Foundation.NSZone)
M:SceneKit.SCNAvoidOccluderConstraint.Dispose(System.Boolean)
-M:SceneKit.SCNCamera.Copy(Foundation.NSZone)
M:SceneKit.SCNCameraController.Dispose(System.Boolean)
-M:SceneKit.SCNConstraint.Copy(Foundation.NSZone)
-M:SceneKit.SCNGeometry.Copy(Foundation.NSZone)
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,SceneKit.SCNGeometrySourceSemantics,System.IntPtr,System.IntPtr,System.IntPtr)
-M:SceneKit.SCNGeometryTessellator.Copy(Foundation.NSZone)
M:SceneKit.SCNLayer.Dispose(System.Boolean)
-M:SceneKit.SCNLevelOfDetail.Copy(Foundation.NSZone)
-M:SceneKit.SCNLight.Copy(Foundation.NSZone)
-M:SceneKit.SCNMaterial.Copy(Foundation.NSZone)
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.SCNNode.Copy(Foundation.NSZone)
-M:SceneKit.SCNNode.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
M:SceneKit.SCNNode.Dispose(System.Boolean)
M:SceneKit.SCNNode.GetSoundIdentifier(UIKit.UIFocusUpdateContext)
M:SceneKit.SCNNode.RemoveAnimation(System.String,System.Runtime.InteropServices.NFloat)
-M:SceneKit.SCNNode.SetNeedsFocusUpdate
-M:SceneKit.SCNNode.ShouldUpdateFocus(UIKit.UIFocusUpdateContext)
-M:SceneKit.SCNNode.UpdateFocusIfNeeded
-M:SceneKit.SCNParticlePropertyController.Copy(Foundation.NSZone)
M:SceneKit.SCNParticlePropertyController.Dispose(System.Boolean)
-M:SceneKit.SCNParticleSystem.Copy(Foundation.NSZone)
-M:SceneKit.SCNPhysicsBody.Copy(Foundation.NSZone)
-M:SceneKit.SCNPhysicsField.Copy(Foundation.NSZone)
-M:SceneKit.SCNPhysicsShape.Copy(Foundation.NSZone)
-M:SceneKit.SCNPhysicsVehicleWheel.Copy(Foundation.NSZone)
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})
@@ -19374,11 +16931,7 @@ M:SceneKit.SCNPhysicsWorld.Dispose(System.Boolean)
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.SCNProgram.Copy(Foundation.NSZone)
M:SceneKit.SCNProgram.Dispose(System.Boolean)
-M:SceneKit.SCNProgramDelegate_Extensions.BindValue(SceneKit.ISCNProgramDelegate,SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer)
-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.SCNQuaternion.#ctor(CoreGraphics.RMatrix3@)
M:SceneKit.SCNQuaternion.#ctor(System.Numerics.Quaternion)
M:SceneKit.SCNRenderer.Dispose(System.Boolean)
@@ -19389,7 +16942,6 @@ M:SceneKit.SCNShadable_Extensions.GetWeakShaderModifiers(SceneKit.ISCNShadable)
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.SCNTechnique.Copy(Foundation.NSZone)
M:SceneKit.SCNText.Create(Foundation.NSAttributedString,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNText.Create(System.String,System.Runtime.InteropServices.NFloat)
M:SceneKit.SCNVector3.#ctor(System.Numerics.Vector3)
@@ -19512,18 +17064,6 @@ M:SensorKit.SRAbsoluteTime.FromCFAbsoluteTime(System.Double)
M:SensorKit.SRAbsoluteTime.FromContinuousTime(System.UInt64)
M:SensorKit.SRAbsoluteTime.GetCurrent
M:SensorKit.SRAbsoluteTime.ToCFAbsoluteTime(System.Double)
-M:SensorKit.SRAudioLevel.Copy(Foundation.NSZone)
-M:SensorKit.SRDevice.Copy(Foundation.NSZone)
-M:SensorKit.SRElectrocardiogramData.Copy(Foundation.NSZone)
-M:SensorKit.SRElectrocardiogramSample.Copy(Foundation.NSZone)
-M:SensorKit.SRElectrocardiogramSession.Copy(Foundation.NSZone)
-M:SensorKit.SRFaceMetrics.Copy(Foundation.NSZone)
-M:SensorKit.SRFaceMetricsExpression.Copy(Foundation.NSZone)
-M:SensorKit.SRFetchResult`1.Copy(Foundation.NSZone)
-M:SensorKit.SRMediaEvent.Copy(Foundation.NSZone)
-M:SensorKit.SRPhotoplethysmogramAccelerometerSample.Copy(Foundation.NSZone)
-M:SensorKit.SRPhotoplethysmogramOpticalSample.Copy(Foundation.NSZone)
-M:SensorKit.SRPhotoplethysmogramSample.Copy(Foundation.NSZone)
M:SensorKit.SRSensorExtensions.GetSensorForDeletionRecords(SensorKit.SRSensor)
M:SensorKit.SRSensorReader.#ctor(SensorKit.SRSensor)
M:SensorKit.SRSensorReader.Dispose(System.Boolean)
@@ -19538,11 +17078,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.SRSpeechExpression.Copy(Foundation.NSZone)
-M:SensorKit.SRSpeechMetrics.Copy(Foundation.NSZone)
-M:SensorKit.SRSupplementalCategory.Copy(Foundation.NSZone)
-M:SensorKit.SRWristTemperature.Copy(Foundation.NSZone)
-M:SensorKit.SRWristTemperatureSession.Copy(Foundation.NSZone)
M:ServiceManagement.SMAppService.CreateAgentService(System.String)
M:ServiceManagement.SMAppService.CreateDaemonService(System.String)
M:ServiceManagement.SMAppService.CreateLoginItemService(System.String)
@@ -19560,7 +17095,6 @@ M:SharedWithYou.ISWCollaborationViewDelegate.WillPresentPopover(SharedWithYou.SW
M:SharedWithYou.ISWHighlightCenterDelegate.HighlightsDidChange(SharedWithYou.SWHighlightCenter)
M:SharedWithYou.SWAttributionView.#ctor(CoreGraphics.CGRect)
M:SharedWithYou.SWAttributionView.SWAttributionViewAppearance.#ctor(System.IntPtr)
-M:SharedWithYou.SWCollaborationHighlight.Copy(Foundation.NSZone)
M:SharedWithYou.SWCollaborationView.#ctor(CoreGraphics.CGRect)
M:SharedWithYou.SWCollaborationView.#ctor(Foundation.NSItemProvider)
M:SharedWithYou.SWCollaborationView.DismissPopover(System.Action)
@@ -19575,7 +17109,6 @@ M:SharedWithYou.SWCollaborationViewDelegate_Extensions.WillPresentPopover(Shared
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.SWHighlightCenter.ClearNotices(SharedWithYou.SWCollaborationHighlight)
M:SharedWithYou.SWHighlightCenter.Dispose(System.Boolean)
M:SharedWithYou.SWHighlightCenter.GetCollaborationHighlight(Foundation.NSUrl,System.Action{SharedWithYou.SWCollaborationHighlight,Foundation.NSError})
@@ -19588,93 +17121,62 @@ M:SharedWithYou.SWHighlightCenter.GetSignedIdentityProofAsync(SharedWithYou.SWCo
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.SWHighlightMembershipEvent.#ctor(SharedWithYou.SWHighlight,SharedWithYou.SWHighlightMembershipEventTrigger)
-M:SharedWithYou.SWHighlightMembershipEvent.Copy(Foundation.NSZone)
M:SharedWithYou.SWHighlightMentionEvent.#ctor(SharedWithYou.SWHighlight,SharedWithYouCore.SWPersonIdentity)
M:SharedWithYou.SWHighlightMentionEvent.#ctor(SharedWithYou.SWHighlight,System.String)
-M:SharedWithYou.SWHighlightMentionEvent.Copy(Foundation.NSZone)
M:SharedWithYou.SWHighlightPersistenceEvent.#ctor(SharedWithYou.SWHighlight,SharedWithYou.SWHighlightPersistenceEventTrigger)
-M:SharedWithYou.SWHighlightPersistenceEvent.Copy(Foundation.NSZone)
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)
M:SharedWithYouCore.SWAction.Fail
M:SharedWithYouCore.SWAction.Fulfill
M:SharedWithYouCore.SWCollaborationCoordinator.Dispose(System.Boolean)
M:SharedWithYouCore.SWCollaborationMetadata.#ctor(System.String,SharedWithYouCore.SWIdentifierType)
M:SharedWithYouCore.SWCollaborationMetadata.#ctor(System.String)
-M:SharedWithYouCore.SWCollaborationMetadata.Copy(Foundation.NSZone)
M:SharedWithYouCore.SWCollaborationMetadata.GetObject(Foundation.NSData,System.String,Foundation.NSError@)
-M:SharedWithYouCore.SWCollaborationMetadata.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError})
M:SharedWithYouCore.SWCollaborationMetadata.LoadDataAsync(System.String,Foundation.NSProgress@)
M:SharedWithYouCore.SWCollaborationMetadata.LoadDataAsync(System.String)
-M:SharedWithYouCore.SWCollaborationMetadata.MutableCopy(Foundation.NSZone)
M:SharedWithYouCore.SWCollaborationOption.#ctor(System.String,System.String)
-M:SharedWithYouCore.SWCollaborationOption.Copy(Foundation.NSZone)
M:SharedWithYouCore.SWCollaborationOption.Create(System.String,System.String)
M:SharedWithYouCore.SWCollaborationOptionsGroup.#ctor(System.String,SharedWithYouCore.SWCollaborationOption[])
-M:SharedWithYouCore.SWCollaborationOptionsGroup.Copy(Foundation.NSZone)
M:SharedWithYouCore.SWCollaborationOptionsGroup.Create(System.String,SharedWithYouCore.SWCollaborationOption[])
M:SharedWithYouCore.SWCollaborationOptionsPickerGroup.#ctor(System.String,SharedWithYouCore.SWCollaborationOption[])
M:SharedWithYouCore.SWCollaborationShareOptions.#ctor(SharedWithYouCore.SWCollaborationOptionsGroup[],System.String)
M:SharedWithYouCore.SWCollaborationShareOptions.#ctor(SharedWithYouCore.SWCollaborationOptionsGroup[])
-M:SharedWithYouCore.SWCollaborationShareOptions.Copy(Foundation.NSZone)
M:SharedWithYouCore.SWCollaborationShareOptions.Create(SharedWithYouCore.SWCollaborationOptionsGroup[],System.String)
M:SharedWithYouCore.SWCollaborationShareOptions.Create(SharedWithYouCore.SWCollaborationOptionsGroup[])
M:SharedWithYouCore.SWPerson.#ctor(System.String,SharedWithYouCore.SWPersonIdentity,System.String,Foundation.NSData)
M:SharedWithYouCore.SWPersonIdentity.#ctor(Foundation.NSData)
-M:SharedWithYouCore.SWPersonIdentity.Copy(Foundation.NSZone)
-M:SharedWithYouCore.SWPersonIdentityProof.Copy(Foundation.NSZone)
M:SharedWithYouCore.SWSignedPersonIdentityProof.#ctor(SharedWithYouCore.SWPersonIdentityProof,Foundation.NSData)
-M:SharedWithYouCore.SWStartCollaborationAction.Copy(Foundation.NSZone)
M:SharedWithYouCore.SWStartCollaborationAction.Fulfill(Foundation.NSUrl,System.String)
-M:SharedWithYouCore.SWUpdateCollaborationParticipantsAction.Copy(Foundation.NSZone)
M:ShazamKit.ISHSessionDelegate.DidFindMatch(ShazamKit.SHSession,ShazamKit.SHMatch)
M:ShazamKit.ISHSessionDelegate.DidNotFindMatch(ShazamKit.SHSession,ShazamKit.SHSignature,Foundation.NSError)
-M:ShazamKit.SHMediaItem.Copy(Foundation.NSZone)
M:ShazamKit.SHMediaItem.FetchMediaItemAsync(System.String)
M:ShazamKit.SHMediaLibrary.AddAsync(ShazamKit.SHMediaItem[])
-M:ShazamKit.SHRange.Copy(Foundation.NSZone)
M:ShazamKit.SHSession.Dispose(System.Boolean)
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.SHSignature.Copy(Foundation.NSZone)
M:ShazamKit.SHSignatureGenerator.GenerateSignatureAsync(AVFoundation.AVAsset)
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.DidBeginFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController)
-M:Social.SLComposeServiceViewController.DidChangeSelection(Foundation.NSNotification)
-M:Social.SLComposeServiceViewController.DidChangeTypingAttributes(Foundation.NSNotification)
M:Social.SLComposeServiceViewController.DidCheckText(AppKit.NSTextView,Foundation.NSRange,Foundation.NSTextCheckingTypes,Foundation.NSDictionary,Foundation.NSTextCheckingResult[],Foundation.NSOrthography,System.IntPtr)
M:Social.SLComposeServiceViewController.DidEndFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController)
-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.GetCandidates(AppKit.NSTextView,Foundation.NSRange)
M:Social.SLComposeServiceViewController.GetCompletions(AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@)
M:Social.SLComposeServiceViewController.GetEditMenuForText(UIKit.UITextView,Foundation.NSRange,UIKit.UIMenuElement[])
M:Social.SLComposeServiceViewController.GetMenuConfiguration(UIKit.UITextView,UIKit.UITextItem,UIKit.UIMenu)
M:Social.SLComposeServiceViewController.GetPrimaryAction(UIKit.UITextView,UIKit.UITextItem,UIKit.UIAction)
-M:Social.SLComposeServiceViewController.GetTextCheckingCandidates(AppKit.NSTextView,Foundation.NSTextCheckingResult[],Foundation.NSRange)
-M:Social.SLComposeServiceViewController.GetUndoManager(AppKit.NSTextView)
M:Social.SLComposeServiceViewController.GetWritablePasteboardTypes(AppKit.NSTextView,AppKit.NSTextAttachmentCell,System.UIntPtr)
M:Social.SLComposeServiceViewController.GetWritingToolsIgnoredRangesInEnclosingRange(AppKit.NSTextView,Foundation.NSRange)
M:Social.SLComposeServiceViewController.GetWritingToolsIgnoredRangesInEnclosingRange(UIKit.UITextView,Foundation.NSRange)
M:Social.SLComposeServiceViewController.InsertInputSuggestion(UIKit.UITextView,UIKit.UIInputSuggestion)
M:Social.SLComposeServiceViewController.LinkClicked(AppKit.NSTextView,Foundation.NSObject,System.UIntPtr)
M:Social.SLComposeServiceViewController.MenuForEvent(AppKit.NSTextView,AppKit.NSMenu,AppKit.NSEvent,System.UIntPtr)
-M:Social.SLComposeServiceViewController.ShouldChangeTextInRange(AppKit.NSTextView,Foundation.NSRange,System.String)
-M:Social.SLComposeServiceViewController.ShouldChangeTextInRanges(AppKit.NSTextView,Foundation.NSValue[],System.String[])
-M:Social.SLComposeServiceViewController.ShouldChangeTypingAttributes(AppKit.NSTextView,Foundation.NSDictionary,Foundation.NSDictionary)
M:Social.SLComposeServiceViewController.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.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[])
-M:Social.SLComposeServiceViewController.WillCheckText(AppKit.NSTextView,Foundation.NSRange,Foundation.NSDictionary,Foundation.NSTextCheckingTypes)
M:Social.SLComposeServiceViewController.WillDismissEditMenu(UIKit.UITextView,UIKit.IUIEditMenuInteractionAnimating)
M:Social.SLComposeServiceViewController.WillDisplay(UIKit.UITextView,UIKit.UITextItem,UIKit.IUIContextMenuInteractionAnimating)
M:Social.SLComposeServiceViewController.WillDisplayToolTip(AppKit.NSTextView,System.String,System.UIntPtr)
@@ -19713,70 +17215,34 @@ M:SoundAnalysis.SNResultsObserving_Extensions.DidFail(SoundAnalysis.ISNResultsOb
M:SoundAnalysis.SNTimeDurationConstraint.#ctor(CoreMedia.CMTime[])
M:SoundAnalysis.SNTimeDurationConstraint.#ctor(CoreMedia.CMTimeRange)
M:Speech.ISFSpeechRecognitionTaskDelegate.DidProcessAudioDuration(Speech.SFSpeechRecognitionTask,System.Double)
-M:Speech.SFAcousticFeature.Copy(Foundation.NSZone)
M:Speech.SFAnalysisContextTag.#ctor
M:Speech.SFSpeechLanguageModel.PrepareCustomModelAsync(Foundation.NSUrl,System.String,Speech.SFSpeechLanguageModelConfiguration,System.Boolean)
M:Speech.SFSpeechLanguageModel.PrepareCustomModelAsync(Foundation.NSUrl,System.String,Speech.SFSpeechLanguageModelConfiguration)
-M:Speech.SFSpeechLanguageModelConfiguration.Copy(Foundation.NSZone)
-M:Speech.SFSpeechRecognitionMetadata.Copy(Foundation.NSZone)
-M:Speech.SFSpeechRecognitionResult.Copy(Foundation.NSZone)
M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidProcessAudioDuration(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,System.Double)
M:Speech.SFSpeechRecognizer.Dispose(System.Boolean)
-M:Speech.SFTranscription.Copy(Foundation.NSZone)
-M:Speech.SFTranscriptionSegment.Copy(Foundation.NSZone)
-M:Speech.SFVoiceAnalytics.Copy(Foundation.NSZone)
-M:SpriteKit.SKAction.Copy(Foundation.NSZone)
-M:SpriteKit.SKConstraint.Copy(Foundation.NSZone)
M:SpriteKit.SKEffectNode.Dispose(System.Boolean)
M:SpriteKit.SKEmitterNode.Dispose(System.Boolean)
-M:SpriteKit.SKKeyframeSequence.Copy(Foundation.NSZone)
-M:SpriteKit.SKNode.ConvertPointFromCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:SpriteKit.SKNode.ConvertPointToCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-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.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
M:SpriteKit.SKNode.Dispose(System.Boolean)
-M:SpriteKit.SKNode.GetFocusItems(CoreGraphics.CGRect)
M:SpriteKit.SKNode.GetSoundIdentifier(UIKit.UIFocusUpdateContext)
-M:SpriteKit.SKNode.SetNeedsFocusUpdate
-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.Copy(Foundation.NSZone)
M:SpriteKit.SKPhysicsBody.Dispose(System.Boolean)
M:SpriteKit.SKPhysicsWorld.add_DidBeginContact(System.EventHandler)
M:SpriteKit.SKPhysicsWorld.add_DidEndContact(System.EventHandler)
M:SpriteKit.SKPhysicsWorld.Dispose(System.Boolean)
M:SpriteKit.SKPhysicsWorld.remove_DidBeginContact(System.EventHandler)
M:SpriteKit.SKPhysicsWorld.remove_DidEndContact(System.EventHandler)
-M:SpriteKit.SKRange.Copy(Foundation.NSZone)
-M:SpriteKit.SKRegion.Copy(Foundation.NSZone)
M:SpriteKit.SKRenderer.Dispose(System.Boolean)
M:SpriteKit.SKScene.Dispose(System.Boolean)
-M:SpriteKit.SKShader.Copy(Foundation.NSZone)
M:SpriteKit.SKSpriteNode.Dispose(System.Boolean)
-M:SpriteKit.SKTexture.Copy(Foundation.NSZone)
M:SpriteKit.SKTexture.PreloadAsync
M:SpriteKit.SKTextureAtlas.PreloadAsync
M:SpriteKit.SKTextureAtlasLoadResult.#ctor(Foundation.NSError,SpriteKit.SKTextureAtlas)
-M:SpriteKit.SKTileDefinition.Copy(Foundation.NSZone)
-M:SpriteKit.SKTileGroup.Copy(Foundation.NSZone)
-M:SpriteKit.SKTileGroupRule.Copy(Foundation.NSZone)
-M:SpriteKit.SKTileMapNode.Copy(Foundation.NSZone)
M:SpriteKit.SKTileMapNode.Dispose(System.Boolean)
-M:SpriteKit.SKTileSet.Copy(Foundation.NSZone)
M:SpriteKit.SKTileSet.Dispose(System.Boolean)
-M:SpriteKit.SKTransition.Copy(Foundation.NSZone)
M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector2)
M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector3)
M:SpriteKit.SKUniform.#ctor(System.String,System.Numerics.Vector4)
-M:SpriteKit.SKUniform.Copy(Foundation.NSZone)
M:SpriteKit.SKView.Dispose(System.Boolean)
M:SpriteKit.SKView.SKViewAppearance.#ctor(System.IntPtr)
-M:SpriteKit.SKWarpGeometry.Copy(Foundation.NSZone)
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.GetGridByReplacingDestPositions(System.Numerics.Vector2[])
@@ -19790,8 +17256,6 @@ M:StoreKit.ISKPaymentQueueDelegate.ShouldContinueTransaction(StoreKit.SKPaymentQ
M:StoreKit.ISKPaymentQueueDelegate.ShouldShowPriceConsent(StoreKit.SKPaymentQueue)
M:StoreKit.ISKPaymentTransactionObserver.DidChangeStorefront(StoreKit.SKPaymentQueue)
M:StoreKit.ISKPaymentTransactionObserver.DidRevokeEntitlements(StoreKit.SKPaymentQueue,System.String[])
-M:StoreKit.ISKPaymentTransactionObserver.UpdatedTransactions(StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction[])
-M:StoreKit.ISKProductsRequestDelegate.ReceivedResponse(StoreKit.SKProductsRequest,StoreKit.SKProductsResponse)
M:StoreKit.SKAdNetwork.EndImpressionAsync(StoreKit.SKAdImpression)
M:StoreKit.SKAdNetwork.StartImpressionAsync(StoreKit.SKAdImpression)
M:StoreKit.SKAdNetwork.UpdatePostbackAsync(System.IntPtr,StoreKit.SKAdNetworkCoarseConversionValue,System.Boolean)
@@ -19808,8 +17272,6 @@ M:StoreKit.SKOverlayDelegate_Extensions.DidFinishDismissal(StoreKit.ISKOverlayDe
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.SKPayment.Copy(Foundation.NSZone)
-M:StoreKit.SKPayment.MutableCopy(Foundation.NSZone)
M:StoreKit.SKPaymentQueue.Dispose(System.Boolean)
M:StoreKit.SKPaymentQueueDelegate_Extensions.ShouldContinueTransaction(StoreKit.ISKPaymentQueueDelegate,StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction,StoreKit.SKStorefront)
M:StoreKit.SKPaymentQueueDelegate_Extensions.ShouldShowPriceConsent(StoreKit.ISKPaymentQueueDelegate,StoreKit.SKPaymentQueue)
@@ -19830,10 +17292,6 @@ M:StoreKit.SKStoreProductViewController.LoadProduct(StoreKit.StoreProductParamet
M:StoreKit.SKStoreProductViewController.LoadProductAsync(Foundation.NSDictionary,StoreKit.SKAdImpression)
M:StoreKit.SKStoreProductViewController.LoadProductAsync(StoreKit.StoreProductParameters,StoreKit.SKAdImpression)
M:StoreKit.SKStoreProductViewController.remove_Finished(System.EventHandler)
-M:Symbols.NSSymbolContentTransition.Copy(Foundation.NSZone)
-M:Symbols.NSSymbolEffect.Copy(Foundation.NSZone)
-M:Symbols.NSSymbolEffectOptions.Copy(Foundation.NSZone)
-M:Symbols.NSSymbolEffectOptionsRepeatBehavior.Copy(Foundation.NSZone)
M:ThreadNetwork.THClient.CheckPreferredNetworkAsync(Foundation.NSData)
M:ThreadNetwork.THClient.DeleteCredentialsForBorderAgentAsync(Foundation.NSData)
M:ThreadNetwork.THClient.IsPreferredNetworkAvailableAsync
@@ -19865,18 +17323,14 @@ M:TVMLKit.ITVInterfaceCreating.GetViewForElement(TVMLKit.TVViewElement,UIKit.UIV
M:TVMLKit.ITVPlaybackEventMarshaling.ProcessReturn(JavaScriptCore.JSValue,JavaScriptCore.JSContext)
M:TVMLKit.TVApplicationController.Dispose(System.Boolean)
M:TVMLKit.TVApplicationController.EvaluateAsync(System.Action{JavaScriptCore.JSContext})
-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.TVBrowserTransitionAnimator.AnimateTransition(UIKit.IUIViewControllerContextTransitioning)
-M:TVMLKit.TVBrowserTransitionAnimator.TransitionDuration(UIKit.IUIViewControllerContextTransitioning)
M:TVMLKit.TVBrowserViewController.Dispose(System.Boolean)
M:TVMLKit.TVBrowserViewControllerDelegate_Extensions.DidCenterOnViewElement(TVMLKit.ITVBrowserViewControllerDelegate,TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement)
M:TVMLKit.TVBrowserViewControllerDelegate_Extensions.WillCenterOnViewElement(TVMLKit.ITVBrowserViewControllerDelegate,TVMLKit.TVBrowserViewController,TVMLKit.TVViewElement)
-M:TVMLKit.TVColor.Copy(Foundation.NSZone)
M:TVMLKit.TVDocumentViewController.Dispose(System.Boolean)
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})
@@ -19891,18 +17345,13 @@ M:TVMLKit.TVInterfaceCreating_Extensions.GetViewControllerForElement(TVMLKit.ITV
M:TVMLKit.TVInterfaceCreating_Extensions.GetViewForElement(TVMLKit.ITVInterfaceCreating,TVMLKit.TVViewElement,UIKit.UIView)
M:TVMLKit.TVPlaybackEventMarshaling_Extensions.ProcessReturn(TVMLKit.ITVPlaybackEventMarshaling,JavaScriptCore.JSValue,JavaScriptCore.JSContext)
M:TVMLKit.TVPlayer.DispatchEventAsync(System.String,TVMLKit.ITVPlaybackEventMarshaling)
-M:TVMLKit.TVViewElement.Copy(Foundation.NSZone)
M:TVMLKit.TVViewElement.DispatchEventAsync(System.String,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:TVMLKit.TVViewElement.DispatchEventAsync(TVMLKit.TVElementEventType,System.Boolean,System.Boolean,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject})
M:TVMLKit.TVViewElement.Dispose(System.Boolean)
M:TVMLKit.TVViewElementDispatchResult.#ctor(System.Boolean,System.Boolean)
-M:TVMLKit.TVViewElementStyle.Copy(Foundation.NSZone)
M:TVServices.TVAppProfileDescriptor.#ctor(System.String)
-M:TVServices.TVAppProfileDescriptor.Copy(Foundation.NSZone)
M:TVServices.TVContentIdentifier.#ctor(System.String,TVServices.TVContentIdentifier)
-M:TVServices.TVContentIdentifier.Copy(Foundation.NSZone)
M:TVServices.TVContentItem.#ctor(TVServices.TVContentIdentifier)
-M:TVServices.TVContentItem.Copy(Foundation.NSZone)
M:TVServices.TVContentItem.GetImageUrl(TVServices.TVContentItemImageTrait)
M:TVServices.TVContentItem.SetImageUrl(Foundation.NSUrl,TVServices.TVContentItemImageTrait)
M:TVServices.TVContentItemImageShapeExtensions.GetSize(TVServices.TVContentItemImageShape,TVServices.TVTopShelfContentStyle)
@@ -19944,18 +17393,13 @@ M:TVUIKit.TVLockupHeaderFooterView.TVLockupHeaderFooterViewAppearance.#ctor(Syst
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.TVMediaItemContentConfiguration.Copy(Foundation.NSZone)
M:TVUIKit.TVMediaItemContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState)
M:TVUIKit.TVMediaItemContentConfiguration.MakeContentView
-M:TVUIKit.TVMediaItemContentTextProperties.Copy(Foundation.NSZone)
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.GetUpdatedConfiguration(UIKit.IUIConfigurationState)
M:TVUIKit.TVMonogramContentConfiguration.MakeContentView
-M:TVUIKit.TVMonogramContentTextProperties.Copy(Foundation.NSZone)
M:TVUIKit.TVMonogramContentView.GetConfiguration
M:TVUIKit.TVMonogramContentView.SupportsConfiguration(UIKit.IUIContentConfiguration)
M:TVUIKit.TVMonogramContentView.TVMonogramContentViewAppearance.#ctor(System.IntPtr)
@@ -20012,13 +17456,9 @@ M:UIKit.IUIAccessibilityContainer.GetAccessibilityElementAt(System.IntPtr)
M:UIKit.IUIAccessibilityContainerDataTable.GetAccessibilityDataTableCellElement(System.UIntPtr,System.UIntPtr)
M:UIKit.IUIAccessibilityContainerDataTable.GetAccessibilityHeaderElementsForColumn(System.UIntPtr)
M:UIKit.IUIAccessibilityContainerDataTable.GetAccessibilityHeaderElementsForRow(System.UIntPtr)
-M:UIKit.IUIAccessibilityContainerDataTableCell.GetAccessibilityColumnRange
-M:UIKit.IUIAccessibilityContainerDataTableCell.GetAccessibilityRowRange
M:UIKit.IUIAccessibilityReadingContent.GetAccessibilityAttributedContent(System.IntPtr)
M:UIKit.IUIAccessibilityReadingContent.GetAccessibilityContent(System.IntPtr)
M:UIKit.IUIAccessibilityReadingContent.GetAccessibilityFrame(System.IntPtr)
-M:UIKit.IUIAccessibilityReadingContent.GetAccessibilityLineNumber(CoreGraphics.CGPoint)
-M:UIKit.IUIAccessibilityReadingContent.GetAccessibilityPageContent
M:UIKit.IUIActionSheetDelegate.Clicked(UIKit.UIActionSheet,System.IntPtr)
M:UIKit.IUIActionSheetDelegate.Dismissed(UIKit.UIActionSheet,System.IntPtr)
M:UIKit.IUIActionSheetDelegate.WillDismiss(UIKit.UIActionSheet,System.IntPtr)
@@ -20027,9 +17467,7 @@ M:UIKit.IUIActivityItemsConfigurationReading.GetActivityItemsConfigurationMetada
M:UIKit.IUIActivityItemsConfigurationReading.GetActivityItemsConfigurationPreview(System.IntPtr,Foundation.NSString,CoreGraphics.CGSize)
M:UIKit.IUIActivityItemsConfigurationReading.GetActivityItemsConfigurationSupportsInteraction(Foundation.NSString)
M:UIKit.IUIActivityItemsConfigurationReading.GetApplicationActivitiesForActivityItemsConfiguration
-M:UIKit.IUIActivityItemSource.GetItemForActivity(UIKit.UIActivityViewController,Foundation.NSString)
M:UIKit.IUIActivityItemSource.GetLinkMetadata(UIKit.UIActivityViewController)
-M:UIKit.IUIActivityItemSource.GetPlaceholderData(UIKit.UIActivityViewController)
M:UIKit.IUIActivityItemSource.GetShareRecipients(UIKit.UIActivityViewController)
M:UIKit.IUIAdaptivePresentationControllerDelegate.DidAttemptToDismiss(UIKit.UIPresentationController)
M:UIKit.IUIAdaptivePresentationControllerDelegate.DidDismiss(UIKit.UIPresentationController)
@@ -20039,7 +17477,6 @@ M:UIKit.IUIAdaptivePresentationControllerDelegate.WillDismiss(UIKit.UIPresentati
M:UIKit.IUIAlertViewDelegate.Clicked(UIKit.UIAlertView,System.IntPtr)
M:UIKit.IUIAlertViewDelegate.Dismissed(UIKit.UIAlertView,System.IntPtr)
M:UIKit.IUIAlertViewDelegate.WillDismiss(UIKit.UIAlertView,System.IntPtr)
-M:UIKit.IUIApplicationDelegate.AccessibilityPerformMagicTap
M:UIKit.IUIApplicationDelegate.DidDiscardSceneSessions(UIKit.UIApplication,Foundation.NSSet{UIKit.UISceneSession})
M:UIKit.IUIApplicationDelegate.DidFailToContinueUserActivity(UIKit.UIApplication,System.String,Foundation.NSError)
M:UIKit.IUIApplicationDelegate.GetConfiguration(UIKit.UIApplication,UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
@@ -20058,12 +17495,8 @@ M:UIKit.IUICalendarSelectionWeekOfYearDelegate.DidSelectWeekOfYear(UIKit.UICalen
M:UIKit.IUICalendarViewDelegate.DidChangeVisibleDateComponents(UIKit.UICalendarView,Foundation.NSDateComponents)
M:UIKit.IUICalendarViewDelegate.GetDecoration(UIKit.UICalendarView,Foundation.NSDateComponents)
M:UIKit.IUICGFloatTraitDefinition.GetDefaultValue``1
-M:UIKit.IUICloudSharingControllerDelegate.FailedToSaveShare(UIKit.UICloudSharingController,Foundation.NSError)
-M:UIKit.IUICloudSharingControllerDelegate.GetItemTitle(UIKit.UICloudSharingController)
-M:UIKit.IUICollectionViewDataSource.GetCell(UIKit.UICollectionView,Foundation.NSIndexPath)
M:UIKit.IUICollectionViewDataSource.GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr)
M:UIKit.IUICollectionViewDataSource.GetItemsCount(UIKit.UICollectionView,System.IntPtr)
-M:UIKit.IUICollectionViewDataSourcePrefetching.PrefetchItems(UIKit.UICollectionView,Foundation.NSIndexPath[])
M:UIKit.IUICollectionViewDelegate.CanEditItem(UIKit.UICollectionView,Foundation.NSIndexPath)
M:UIKit.IUICollectionViewDelegate.CanPerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath)
M:UIKit.IUICollectionViewDelegate.DidBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath)
@@ -20087,15 +17520,6 @@ M:UIKit.IUICollectionViewDelegateFlowLayout.GetMinimumInteritemSpacingForSection
M:UIKit.IUICollectionViewDelegateFlowLayout.GetMinimumLineSpacingForSection(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
M:UIKit.IUICollectionViewDelegateFlowLayout.GetReferenceSizeForFooter(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
M:UIKit.IUICollectionViewDelegateFlowLayout.GetReferenceSizeForHeader(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
-M:UIKit.IUICollectionViewDragDelegate.GetItemsForBeginningDragSession(UIKit.UICollectionView,UIKit.IUIDragSession,Foundation.NSIndexPath)
-M:UIKit.IUICollectionViewDropCoordinator.DropItemIntoItem(UIKit.UIDragItem,Foundation.NSIndexPath,CoreGraphics.CGRect)
-M:UIKit.IUICollectionViewDropCoordinator.DropItemToItem(UIKit.UIDragItem,Foundation.NSIndexPath)
-M:UIKit.IUICollectionViewDropCoordinator.DropItemToPlaceholder(UIKit.UIDragItem,UIKit.UICollectionViewDropPlaceholder)
-M:UIKit.IUICollectionViewDropCoordinator.DropItemToTarget(UIKit.UIDragItem,UIKit.UIDragPreviewTarget)
-M:UIKit.IUICollectionViewDropDelegate.PerformDrop(UIKit.UICollectionView,UIKit.IUICollectionViewDropCoordinator)
-M:UIKit.IUICollectionViewDropPlaceholderContext.CommitInsertion(System.Action{Foundation.NSIndexPath})
-M:UIKit.IUICollectionViewDropPlaceholderContext.DeletePlaceholder
-M:UIKit.IUICollectionViewDropPlaceholderContext.SetNeedsCellUpdate
M:UIKit.IUIColorPickerViewControllerDelegate.DidFinish(UIKit.UIColorPickerViewController)
M:UIKit.IUIColorPickerViewControllerDelegate.DidSelectColor(UIKit.UIColorPickerViewController,UIKit.UIColor,System.Boolean)
M:UIKit.IUIColorPickerViewControllerDelegate.DidSelectColor(UIKit.UIColorPickerViewController)
@@ -20105,11 +17529,6 @@ M:UIKit.IUIConfigurationState.SetCustomState(Foundation.NSObject,System.String)
M:UIKit.IUIConfigurationState.SetObject(Foundation.NSObject,System.String)
M:UIKit.IUIContentConfiguration.GetUpdatedConfiguration(UIKit.IUIConfigurationState)
M:UIKit.IUIContentConfiguration.MakeContentView
-M:UIKit.IUIContentContainer.GetSizeForChildContentContainer(UIKit.IUIContentContainer,CoreGraphics.CGSize)
-M:UIKit.IUIContentContainer.PreferredContentSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer)
-M:UIKit.IUIContentContainer.SystemLayoutFittingSizeDidChangeForChildContentContainer(UIKit.IUIContentContainer)
-M:UIKit.IUIContentContainer.ViewWillTransitionToSize(CoreGraphics.CGSize,UIKit.IUIViewControllerTransitionCoordinator)
-M:UIKit.IUIContentContainer.WillTransitionToTraitCollection(UIKit.UITraitCollection,UIKit.IUIViewControllerTransitionCoordinator)
M:UIKit.IUIContentView.SupportsConfiguration(UIKit.IUIContentConfiguration)
M:UIKit.IUIContextMenuInteractionAnimating.AddAnimations(System.Action)
M:UIKit.IUIContextMenuInteractionAnimating.AddCompletion(System.Action)
@@ -20121,29 +17540,8 @@ M:UIKit.IUIContextMenuInteractionDelegate.GetPreviewForHighlightingMenu(UIKit.UI
M:UIKit.IUIContextMenuInteractionDelegate.WillDisplayMenu(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
M:UIKit.IUIContextMenuInteractionDelegate.WillEnd(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
M:UIKit.IUIContextMenuInteractionDelegate.WillPerformPreviewAction(UIKit.UIContextMenuInteraction,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.IUICoordinateSpace.ConvertPointFromCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:UIKit.IUICoordinateSpace.ConvertPointToCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUICoordinateSpace)
-M:UIKit.IUICoordinateSpace.ConvertRectFromCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace)
-M:UIKit.IUICoordinateSpace.ConvertRectToCoordinateSpace(CoreGraphics.CGRect,UIKit.IUICoordinateSpace)
-M:UIKit.IUIDataSourceModelAssociation.GetIndexPath(System.String,UIKit.UIView)
-M:UIKit.IUIDataSourceModelAssociation.GetModelIdentifier(Foundation.NSIndexPath,UIKit.UIView)
-M:UIKit.IUIDataSourceTranslating.GetDataSourceIndexPath(Foundation.NSIndexPath)
M:UIKit.IUIDataSourceTranslating.GetDataSourceSectionIndex(System.IntPtr)
-M:UIKit.IUIDataSourceTranslating.GetPresentationIndexPath(Foundation.NSIndexPath)
M:UIKit.IUIDataSourceTranslating.GetPresentationSectionIndex(System.IntPtr)
-M:UIKit.IUIDataSourceTranslating.PerformUsingPresentationValues(System.Action)
-M:UIKit.IUIDocumentMenuDelegate.DidPickDocumentPicker(UIKit.UIDocumentMenuViewController,UIKit.UIDocumentPickerViewController)
-M:UIKit.IUIDocumentMenuDelegate.WasCancelled(UIKit.UIDocumentMenuViewController)
-M:UIKit.IUIDocumentPickerDelegate.DidPickDocument(UIKit.UIDocumentPickerViewController,Foundation.NSUrl)
-M:UIKit.IUIDragAnimating.AddAnimations(System.Action)
-M:UIKit.IUIDragAnimating.AddCompletion(System.Action{UIKit.UIViewAnimatingPosition})
-M:UIKit.IUIDragDropSession.CanLoadObjects(ObjCRuntime.Class)
-M:UIKit.IUIDragDropSession.HasConformingItems(System.String[])
-M:UIKit.IUIDragDropSession.LocationInView(UIKit.UIView)
-M:UIKit.IUIDragInteractionDelegate.GetItemsForBeginningSession(UIKit.UIDragInteraction,UIKit.IUIDragSession)
-M:UIKit.IUIDropSession.LoadObjects(ObjCRuntime.Class,System.Action{Foundation.INSItemProviderReading[]})
-M:UIKit.IUIDynamicAnimatorDelegate.DidPause(UIKit.UIDynamicAnimator)
-M:UIKit.IUIDynamicAnimatorDelegate.WillResume(UIKit.UIDynamicAnimator)
M:UIKit.IUIEditMenuInteractionAnimating.AddAnimations(System.Action)
M:UIKit.IUIEditMenuInteractionAnimating.AddCompletion(System.Action)
M:UIKit.IUIEditMenuInteractionDelegate.GetMenu(UIKit.UIEditMenuInteraction,UIKit.UIEditMenuConfiguration,UIKit.UIMenuElement[])
@@ -20153,17 +17551,10 @@ M:UIKit.IUIEditMenuInteractionDelegate.WillPresentMenu(UIKit.UIEditMenuInteracti
M:UIKit.IUIFindInteractionDelegate.DidBeginFindSession(UIKit.UIFindInteraction,UIKit.UIFindSession)
M:UIKit.IUIFindInteractionDelegate.DidEndFindSession(UIKit.UIFindInteraction,UIKit.UIFindSession)
M:UIKit.IUIFindInteractionDelegate.GetSession(UIKit.UIFindInteraction,UIKit.UIView)
-M:UIKit.IUIFocusEnvironment.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator)
M:UIKit.IUIFocusEnvironment.GetSoundIdentifier(UIKit.UIFocusUpdateContext)
-M:UIKit.IUIFocusEnvironment.SetNeedsFocusUpdate
-M:UIKit.IUIFocusEnvironment.ShouldUpdateFocus(UIKit.UIFocusUpdateContext)
-M:UIKit.IUIFocusEnvironment.UpdateFocusIfNeeded
-M:UIKit.IUIFocusItemContainer.GetFocusItems(CoreGraphics.CGRect)
M:UIKit.IUIFontPickerViewControllerDelegate.DidCancel(UIKit.UIFontPickerViewController)
M:UIKit.IUIFontPickerViewControllerDelegate.DidPickFont(UIKit.UIFontPickerViewController)
M:UIKit.IUIGestureRecognizerDelegate.ShouldReceiveEvent(UIKit.UIGestureRecognizer,UIKit.UIEvent)
-M:UIKit.IUIGuidedAccessRestrictionDelegate.GetTextForGuidedAccessRestriction(System.String)
-M:UIKit.IUIGuidedAccessRestrictionDelegate.GuidedAccessRestrictionChangedState(System.String,UIKit.UIGuidedAccessRestrictionState)
M:UIKit.IUIIndirectScribbleInteractionDelegate.DidFinishWriting(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
M:UIKit.IUIIndirectScribbleInteractionDelegate.FocusElementIfNeeded(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject,CoreGraphics.CGPoint,System.Action{UIKit.IUITextInput})
M:UIKit.IUIIndirectScribbleInteractionDelegate.GetFrameForElement(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
@@ -20171,13 +17562,9 @@ M:UIKit.IUIIndirectScribbleInteractionDelegate.IsElementFocused(UIKit.UIIndirect
M:UIKit.IUIIndirectScribbleInteractionDelegate.RequestElements(UIKit.UIIndirectScribbleInteraction,CoreGraphics.CGRect,System.Action{Foundation.NSObject[]})
M:UIKit.IUIIndirectScribbleInteractionDelegate.ShouldDelayFocus(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
M:UIKit.IUIIndirectScribbleInteractionDelegate.WillBeginWriting(UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
-M:UIKit.IUIInteraction.DidMoveToView(UIKit.UIView)
-M:UIKit.IUIInteraction.WillMoveToView(UIKit.UIView)
M:UIKit.IUIItemProviderReadingAugmentationProviding.GetAdditionalLeadingReadableTypeIdentifiersForItemProvider``1
M:UIKit.IUIItemProviderReadingAugmentationProviding.GetAdditionalTrailingReadableTypeIdentifiersForItemProvider``1
M:UIKit.IUIItemProviderReadingAugmentationProviding.GetTypeIdentifier``1(Foundation.NSData,System.String,ObjCRuntime.Class,Foundation.NSError@)
-M:UIKit.IUIKeyInput.DeleteBackward
-M:UIKit.IUIKeyInput.InsertText(System.String)
M:UIKit.IUILargeContentViewerInteractionDelegate.DidEnd(UIKit.UILargeContentViewerInteraction,UIKit.IUILargeContentViewerItem,CoreGraphics.CGPoint)
M:UIKit.IUILargeContentViewerInteractionDelegate.GetItem(UIKit.UILargeContentViewerInteraction,CoreGraphics.CGPoint)
M:UIKit.IUILargeContentViewerInteractionDelegate.GetViewController(UIKit.UILargeContentViewerInteraction)
@@ -20209,8 +17596,6 @@ M:UIKit.IUIPageControlProgressDelegate.GetInitialProgressForPage(UIKit.UIPageCon
M:UIKit.IUIPageControlProgressDelegate.VisibilityDidChange(UIKit.UIPageControlProgress)
M:UIKit.IUIPageControlTimerProgressDelegate.PageControlTimerProgressDidChange(UIKit.UIPageControlTimerProgress)
M:UIKit.IUIPageControlTimerProgressDelegate.ShouldAdvanceToPage(UIKit.UIPageControlTimerProgress,System.IntPtr)
-M:UIKit.IUIPageViewControllerDataSource.GetNextViewController(UIKit.UIPageViewController,UIKit.UIViewController)
-M:UIKit.IUIPageViewControllerDataSource.GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController)
M:UIKit.IUIPencilInteractionDelegate.DidReceiveSqueeze(UIKit.UIPencilInteraction,UIKit.UIPencilInteractionSqueeze)
M:UIKit.IUIPencilInteractionDelegate.DidReceiveTap(UIKit.UIPencilInteraction,UIKit.UIPencilInteractionTap)
M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityAttributedHint(UIKit.UIPickerView,System.IntPtr)
@@ -20219,7 +17604,6 @@ M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityAttributedUserInputLa
M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityHint(UIKit.UIPickerView,System.IntPtr)
M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityLabel(UIKit.UIPickerView,System.IntPtr)
M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityUserInputLabels(UIKit.UIPickerView,System.IntPtr)
-M:UIKit.IUIPickerViewDataSource.GetComponentCount(UIKit.UIPickerView)
M:UIKit.IUIPickerViewDataSource.GetRowsInComponent(UIKit.UIPickerView,System.IntPtr)
M:UIKit.IUIPickerViewDelegate.GetAttributedTitle(UIKit.UIPickerView,System.IntPtr,System.IntPtr)
M:UIKit.IUIPickerViewDelegate.GetComponentWidth(UIKit.UIPickerView,System.IntPtr)
@@ -20237,7 +17621,6 @@ M:UIKit.IUIPopoverBackgroundViewMethods.GetArrowBase``1
M:UIKit.IUIPopoverBackgroundViewMethods.GetArrowHeight``1
M:UIKit.IUIPopoverBackgroundViewMethods.GetContentViewInsets``1
M:UIKit.IUIPopoverPresentationControllerSourceItem.GetFrame(UIKit.UIView)
-M:UIKit.IUIPreviewInteractionDelegate.DidCancel(UIKit.UIPreviewInteraction)
M:UIKit.IUIPreviewInteractionDelegate.DidUpdateCommit(UIKit.UIPreviewInteraction,System.Runtime.InteropServices.NFloat,System.Boolean)
M:UIKit.IUIPreviewInteractionDelegate.DidUpdatePreviewTransition(UIKit.UIPreviewInteraction,System.Runtime.InteropServices.NFloat,System.Boolean)
M:UIKit.IUIResponderStandardEditActions.Copy(Foundation.NSObject)
@@ -20292,7 +17675,6 @@ M:UIKit.IUISearchControllerDelegate.DidChangeFromSearchBarPlacement(UIKit.UISear
M:UIKit.IUISearchControllerDelegate.WillChangeToSearchBarPlacement(UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement)
M:UIKit.IUISearchDisplayDelegate.ShouldReloadForSearchScope(UIKit.UISearchDisplayController,System.IntPtr)
M:UIKit.IUISearchResultsUpdating.UpdateSearchResults(UIKit.UISearchController,UIKit.IUISearchSuggestion)
-M:UIKit.IUISearchResultsUpdating.UpdateSearchResultsForSearchController(UIKit.UISearchController)
M:UIKit.IUISearchSuggestion.GetIconImage
M:UIKit.IUISearchSuggestion.GetLocalizedDescription
M:UIKit.IUISearchTextFieldDelegate.DidSelectSuggestion(UIKit.UISearchTextField,UIKit.IUISearchSuggestion)
@@ -20308,9 +17690,6 @@ M:UIKit.IUISplitViewControllerDelegate.InteractivePresentationGestureDidEnd(UIKi
M:UIKit.IUISplitViewControllerDelegate.InteractivePresentationGestureWillBegin(UIKit.UISplitViewController)
M:UIKit.IUISplitViewControllerDelegate.WillHideColumn(UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn)
M:UIKit.IUISplitViewControllerDelegate.WillShowColumn(UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn)
-M:UIKit.IUISpringLoadedInteractionBehavior.ShouldAllowInteraction(UIKit.UISpringLoadedInteraction,UIKit.IUISpringLoadedInteractionContext)
-M:UIKit.IUISpringLoadedInteractionContext.LocationInView(UIKit.UIView)
-M:UIKit.IUISpringLoadedInteractionEffect.DidChange(UIKit.UISpringLoadedInteraction,UIKit.IUISpringLoadedInteractionContext)
M:UIKit.IUITabBarControllerDelegate.AcceptItemsFromDropSession(UIKit.UITabBarController,UIKit.UITab,UIKit.IUIDropSession)
M:UIKit.IUITabBarControllerDelegate.DidBeginEditing(UIKit.UITabBarController)
M:UIKit.IUITabBarControllerDelegate.DidSelectTab(UIKit.UITabBarController,UIKit.UITab,UIKit.UITab)
@@ -20334,12 +17713,10 @@ M:UIKit.IUITabBarControllerSidebarDelegate.GetTrailingSwipeActionsConfigurationF
M:UIKit.IUITabBarControllerSidebarDelegate.SidebarVisibilityWillChange(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.IUITabBarControllerSidebarAnimating)
M:UIKit.IUITabBarControllerSidebarDelegate.UpdateItem(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITabSidebarItem)
M:UIKit.IUITabBarControllerSidebarDelegate.WillBeginDisplayingTab(UIKit.UITabBarController,UIKit.UITabBarControllerSidebar,UIKit.UITab)
-M:UIKit.IUITableViewDataSource.GetCell(UIKit.UITableView,Foundation.NSIndexPath)
M:UIKit.IUITableViewDataSource.RowsInSection(UIKit.UITableView,System.IntPtr)
M:UIKit.IUITableViewDataSource.SectionFor(UIKit.UITableView,System.String,System.IntPtr)
M:UIKit.IUITableViewDataSource.TitleForFooter(UIKit.UITableView,System.IntPtr)
M:UIKit.IUITableViewDataSource.TitleForHeader(UIKit.UITableView,System.IntPtr)
-M:UIKit.IUITableViewDataSourcePrefetching.PrefetchRows(UIKit.UITableView,Foundation.NSIndexPath[])
M:UIKit.IUITableViewDelegate.CanPerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath)
M:UIKit.IUITableViewDelegate.DidBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath)
M:UIKit.IUITableViewDelegate.DidEndMultipleSelectionInteraction(UIKit.UITableView)
@@ -20362,14 +17739,6 @@ M:UIKit.IUITableViewDelegate.WillDisplayFooterView(UIKit.UITableView,UIKit.UIVie
M:UIKit.IUITableViewDelegate.WillDisplayHeaderView(UIKit.UITableView,UIKit.UIView,System.IntPtr)
M:UIKit.IUITableViewDelegate.WillEndContextMenuInteraction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating)
M:UIKit.IUITableViewDelegate.WillPerformPreviewAction(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating)
-M:UIKit.IUITableViewDragDelegate.GetItemsForBeginningDragSession(UIKit.UITableView,UIKit.IUIDragSession,Foundation.NSIndexPath)
-M:UIKit.IUITableViewDropCoordinator.DropItemIntoRow(UIKit.UIDragItem,Foundation.NSIndexPath,CoreGraphics.CGRect)
-M:UIKit.IUITableViewDropCoordinator.DropItemToPlaceholder(UIKit.UIDragItem,UIKit.UITableViewDropPlaceholder)
-M:UIKit.IUITableViewDropCoordinator.DropItemToRow(UIKit.UIDragItem,Foundation.NSIndexPath)
-M:UIKit.IUITableViewDropCoordinator.DropItemToTarget(UIKit.UIDragItem,UIKit.UIDragPreviewTarget)
-M:UIKit.IUITableViewDropDelegate.PerformDrop(UIKit.UITableView,UIKit.IUITableViewDropCoordinator)
-M:UIKit.IUITableViewDropPlaceholderContext.CommitInsertion(System.Action{Foundation.NSIndexPath})
-M:UIKit.IUITableViewDropPlaceholderContext.DeletePlaceholder
M:UIKit.IUITextCursorView.ResetBlinkAnimation
M:UIKit.IUITextDocumentProxy.AdjustTextPositionByCharacterOffset(System.IntPtr)
M:UIKit.IUITextDocumentProxy.SetMarkedText(System.String,Foundation.NSRange)
@@ -20384,25 +17753,13 @@ M:UIKit.IUITextFormattingViewControllerDelegate.DidChangeValue(UIKit.UITextForma
M:UIKit.IUITextFormattingViewControllerDelegate.ShouldPresentColorPicker(UIKit.UITextFormattingViewController,UIKit.UIColorPickerViewController)
M:UIKit.IUITextFormattingViewControllerDelegate.ShouldPresentFontPicker(UIKit.UITextFormattingViewController,UIKit.UIFontPickerViewController)
M:UIKit.IUITextFormattingViewControllerDelegate.TextFormattingDidFinish(UIKit.UITextFormattingViewController)
-M:UIKit.IUITextInput.ComparePosition(UIKit.UITextPosition,UIKit.UITextPosition)
M:UIKit.IUITextInput.DidDismissWritingTools
M:UIKit.IUITextInput.GetAttributedText(UIKit.UITextRange)
-M:UIKit.IUITextInput.GetBaseWritingDirection(UIKit.UITextPosition,UIKit.UITextStorageDirection)
-M:UIKit.IUITextInput.GetCaretRectForPosition(UIKit.UITextPosition)
M:UIKit.IUITextInput.GetCaretTransform(UIKit.UITextPosition)
-M:UIKit.IUITextInput.GetCharacterRange(UIKit.UITextPosition,UIKit.UITextLayoutDirection)
-M:UIKit.IUITextInput.GetCharacterRangeAtPoint(CoreGraphics.CGPoint)
-M:UIKit.IUITextInput.GetClosestPositionToPoint(CoreGraphics.CGPoint,UIKit.UITextRange)
-M:UIKit.IUITextInput.GetClosestPositionToPoint(CoreGraphics.CGPoint)
M:UIKit.IUITextInput.GetEditMenu(UIKit.UITextRange,UIKit.UIMenuElement[])
-M:UIKit.IUITextInput.GetFirstRectForRange(UIKit.UITextRange)
-M:UIKit.IUITextInput.GetOffsetFromPosition(UIKit.UITextPosition,UIKit.UITextPosition)
M:UIKit.IUITextInput.GetPosition(UIKit.UITextPosition,System.IntPtr)
M:UIKit.IUITextInput.GetPosition(UIKit.UITextPosition,UIKit.UITextLayoutDirection,System.IntPtr)
M:UIKit.IUITextInput.GetPosition(UIKit.UITextRange,System.IntPtr)
-M:UIKit.IUITextInput.GetPositionWithinRange(UIKit.UITextRange,UIKit.UITextLayoutDirection)
-M:UIKit.IUITextInput.GetSelectionRects(UIKit.UITextRange)
-M:UIKit.IUITextInput.GetTextRange(UIKit.UITextPosition,UIKit.UITextPosition)
M:UIKit.IUITextInput.InsertAdaptiveImageGlyph(UIKit.NSAdaptiveImageGlyph,UIKit.UITextRange)
M:UIKit.IUITextInput.InsertAttributedText(Foundation.NSAttributedString)
M:UIKit.IUITextInput.InsertInputSuggestion(UIKit.UIInputSuggestion)
@@ -20410,32 +17767,15 @@ M:UIKit.IUITextInput.InsertText(System.String,System.String[],UIKit.UITextAltern
M:UIKit.IUITextInput.InsertTextPlaceholder(CoreGraphics.CGSize)
M:UIKit.IUITextInput.RemoveTextPlaceholder(UIKit.UITextPlaceholder)
M:UIKit.IUITextInput.ReplaceRange(UIKit.UITextRange,Foundation.NSAttributedString)
-M:UIKit.IUITextInput.ReplaceText(UIKit.UITextRange,System.String)
M:UIKit.IUITextInput.SetAttributedMarkedText(Foundation.NSAttributedString,Foundation.NSRange)
M:UIKit.IUITextInput.SetBaseWritingDirectionforRange(Foundation.NSWritingDirection,UIKit.UITextRange)
-M:UIKit.IUITextInput.SetMarkedText(System.String,Foundation.NSRange)
-M:UIKit.IUITextInput.TextInRange(UIKit.UITextRange)
-M:UIKit.IUITextInput.UnmarkText
M:UIKit.IUITextInput.WillDismissEditMenu(UIKit.IUIEditMenuInteractionAnimating)
M:UIKit.IUITextInput.WillPresentEditMenu(UIKit.IUIEditMenuInteractionAnimating)
M:UIKit.IUITextInput.WillPresentWritingTools
M:UIKit.IUITextInputDelegate.ConversationContextDidChange(UIKit.UIConversationContext,UIKit.IUITextInput)
-M:UIKit.IUITextInputDelegate.SelectionDidChange(UIKit.IUITextInput)
-M:UIKit.IUITextInputDelegate.SelectionWillChange(UIKit.IUITextInput)
-M:UIKit.IUITextInputDelegate.TextDidChange(UIKit.IUITextInput)
-M:UIKit.IUITextInputDelegate.TextWillChange(UIKit.IUITextInput)
-M:UIKit.IUITextInputTokenizer.GetPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)
-M:UIKit.IUITextInputTokenizer.GetRangeEnclosingPosition(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)
-M:UIKit.IUITextInputTokenizer.ProbeDirection(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)
-M:UIKit.IUITextInputTokenizer.ProbeDirectionWithinTextUnit(UIKit.UITextPosition,UIKit.UITextGranularity,UIKit.UITextDirection)
M:UIKit.IUITextInteractionDelegate.DidEnd(UIKit.UITextInteraction)
M:UIKit.IUITextInteractionDelegate.ShouldBegin(UIKit.UITextInteraction,CoreGraphics.CGPoint)
M:UIKit.IUITextInteractionDelegate.WillBegin(UIKit.UITextInteraction)
-M:UIKit.IUITextPasteItem.SetAttachmentResult(UIKit.NSTextAttachment)
-M:UIKit.IUITextPasteItem.SetAttributedStringResult(Foundation.NSAttributedString)
-M:UIKit.IUITextPasteItem.SetDefaultResult
-M:UIKit.IUITextPasteItem.SetNoResult
-M:UIKit.IUITextPasteItem.SetStringResult(System.String)
M:UIKit.IUITextSearchAggregator.FinishedSearching
M:UIKit.IUITextSearchAggregator.GetFoundRange(UIKit.UITextRange,System.String,Foundation.INSCopying)
M:UIKit.IUITextSearchAggregator.Invalidate
@@ -20475,39 +17815,11 @@ M:UIKit.IUITraitChangeObservable.UnregisterForTraitChanges(UIKit.IUITraitChangeR
M:UIKit.IUITraitDefinition.GetAffectsColorAppearance``1
M:UIKit.IUITraitDefinition.GetIdentifier``1
M:UIKit.IUITraitDefinition.GetName``1
-M:UIKit.IUITraitEnvironment.TraitCollectionDidChange(UIKit.UITraitCollection)
-M:UIKit.IUIUserActivityRestoring.RestoreUserActivityState(Foundation.NSUserActivity)
-M:UIKit.IUIViewAnimating.FinishAnimation(UIKit.UIViewAnimatingPosition)
-M:UIKit.IUIViewAnimating.PauseAnimation
-M:UIKit.IUIViewAnimating.StartAnimation
-M:UIKit.IUIViewAnimating.StartAnimation(System.Double)
-M:UIKit.IUIViewAnimating.StopAnimation(System.Boolean)
-M:UIKit.IUIViewControllerAnimatedTransitioning.AnimateTransition(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.IUIViewControllerAnimatedTransitioning.TransitionDuration(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.IUIViewControllerContextTransitioning.CancelInteractiveTransition
-M:UIKit.IUIViewControllerContextTransitioning.CompleteTransition(System.Boolean)
-M:UIKit.IUIViewControllerContextTransitioning.FinishInteractiveTransition
-M:UIKit.IUIViewControllerContextTransitioning.GetFinalFrameForViewController(UIKit.UIViewController)
-M:UIKit.IUIViewControllerContextTransitioning.GetInitialFrameForViewController(UIKit.UIViewController)
-M:UIKit.IUIViewControllerContextTransitioning.GetViewControllerForKey(Foundation.NSString)
-M:UIKit.IUIViewControllerContextTransitioning.GetViewFor(Foundation.NSString)
M:UIKit.IUIViewControllerContextTransitioning.PauseInteractiveTransition
M:UIKit.IUIViewControllerContextTransitioning.UpdateInteractiveTransition(System.Runtime.InteropServices.NFloat)
-M:UIKit.IUIViewControllerInteractiveTransitioning.StartInteractiveTransition(UIKit.IUIViewControllerContextTransitioning)
-M:UIKit.IUIViewControllerPreviewingDelegate.CommitViewController(UIKit.IUIViewControllerPreviewing,UIKit.UIViewController)
-M:UIKit.IUIViewControllerPreviewingDelegate.GetViewControllerForPreview(UIKit.IUIViewControllerPreviewing,CoreGraphics.CGPoint)
-M:UIKit.IUIViewControllerTransitionCoordinator.AnimateAlongsideTransition(System.Action{UIKit.IUIViewControllerTransitionCoordinatorContext},System.Action{UIKit.IUIViewControllerTransitionCoordinatorContext})
-M:UIKit.IUIViewControllerTransitionCoordinator.AnimateAlongsideTransitionInView(UIKit.UIView,System.Action{UIKit.IUIViewControllerTransitionCoordinatorContext},System.Action{UIKit.IUIViewControllerTransitionCoordinatorContext})
M:UIKit.IUIViewControllerTransitionCoordinator.NotifyWhenInteractionChanges(System.Action{UIKit.IUIViewControllerTransitionCoordinatorContext})
-M:UIKit.IUIViewControllerTransitionCoordinator.NotifyWhenInteractionEndsUsingBlock(System.Action{UIKit.IUIViewControllerTransitionCoordinatorContext})
-M:UIKit.IUIViewControllerTransitionCoordinatorContext.GetViewControllerForKey(Foundation.NSString)
-M:UIKit.IUIViewControllerTransitionCoordinatorContext.TargetTransform
M:UIKit.IUIViewImplicitlyAnimating.AddAnimations(System.Action,System.Runtime.InteropServices.NFloat)
M:UIKit.IUIViewImplicitlyAnimating.ContinueAnimation(UIKit.IUITimingCurveProvider,System.Runtime.InteropServices.NFloat)
-M:UIKit.IUIWebViewDelegate.LoadFailed(UIKit.UIWebView,Foundation.NSError)
-M:UIKit.IUIWebViewDelegate.LoadingFinished(UIKit.UIWebView)
-M:UIKit.IUIWebViewDelegate.LoadStarted(UIKit.UIWebView)
-M:UIKit.IUIWebViewDelegate.ShouldStartLoad(UIKit.UIWebView,Foundation.NSUrlRequest,UIKit.UIWebViewNavigationType)
M:UIKit.IUIWindowSceneDelegate.DidUpdateCoordinateSpace(UIKit.UIWindowScene,UIKit.IUICoordinateSpace,UIKit.UIInterfaceOrientation,UIKit.UITraitCollection)
M:UIKit.IUIWindowSceneDelegate.PerformAction(UIKit.UIWindowScene,UIKit.UIApplicationShortcutItem,System.Action{System.Boolean})
M:UIKit.IUIWindowSceneDelegate.UserDidAcceptCloudKitShare(UIKit.UIWindowScene,CloudKit.CKShareMetadata)
@@ -20523,50 +17835,10 @@ 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.Copy(Foundation.NSZone)
M:UIKit.NSAdaptiveImageGlyph.GetImage(CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat,CoreGraphics.CGPoint@,CoreGraphics.CGSize@)
-M:UIKit.NSAttributedString_NSAttributedStringKitAdditions.ContainsAttachments(Foundation.NSAttributedString,Foundation.NSRange)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.DecodeCGAffineTransform(Foundation.NSCoder,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.DecodeCGPoint(Foundation.NSCoder,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.DecodeCGRect(Foundation.NSCoder,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.DecodeCGSize(Foundation.NSCoder,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.DecodeCGVector(Foundation.NSCoder,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.DecodeDirectionalEdgeInsets(Foundation.NSCoder,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.DecodeUIEdgeInsets(Foundation.NSCoder,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.DecodeUIOffsetForKey(Foundation.NSCoder,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,CoreGraphics.CGAffineTransform,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,CoreGraphics.CGPoint,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,CoreGraphics.CGRect,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,CoreGraphics.CGSize,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,CoreGraphics.CGVector,System.String)
-M:UIKit.NSCoder_UIGeometryKeyedCoding.Encode(Foundation.NSCoder,UIKit.NSDirectionalEdgeInsets,System.String)
-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.NSCollectionLayoutBoundarySupplementaryItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutDecorationItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutDimension.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutEdgeSpacing.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutGroup.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutGroupCustomItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutItem.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutSection.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutSize.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutSpacing.Copy(Foundation.NSZone)
-M:UIKit.NSCollectionLayoutSupplementaryItem.Copy(Foundation.NSZone)
-M:UIKit.NSDataAsset.Copy(Foundation.NSZone)
-M:UIKit.NSDiffableDataSourceSectionSnapshot`1.Copy(Foundation.NSZone)
-M:UIKit.NSDiffableDataSourceSnapshot`2.Copy(Foundation.NSZone)
M:UIKit.NSDirectionalEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:UIKit.NSDirectionalEdgeInsets.op_Equality(UIKit.NSDirectionalEdgeInsets,UIKit.NSDirectionalEdgeInsets)
M:UIKit.NSDirectionalEdgeInsets.op_Inequality(UIKit.NSDirectionalEdgeInsets,UIKit.NSDirectionalEdgeInsets)
-M:UIKit.NSExtendedStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSStringDrawingOptions,UIKit.UIStringAttributes,Foundation.NSStringDrawingContext)
-M:UIKit.NSExtendedStringDrawing.GetBoundingRect(Foundation.NSString,CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,UIKit.UIStringAttributes,Foundation.NSStringDrawingContext)
-M:UIKit.NSExtendedStringDrawing.WeakDrawString(Foundation.NSString,CoreGraphics.CGRect,Foundation.NSStringDrawingOptions,Foundation.NSDictionary,Foundation.NSStringDrawingContext)
-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.Copy(Foundation.NSZone)
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.Dispose(System.Boolean)
@@ -20597,9 +17869,6 @@ M:UIKit.NSLayoutManagerDelegate_Extensions.ShouldBreakLineByHyphenatingBeforeCha
M:UIKit.NSLayoutManagerDelegate_Extensions.ShouldBreakLineByWordBeforeCharacter(UIKit.INSLayoutManagerDelegate,UIKit.NSLayoutManager,System.UIntPtr)
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.NSMutableAttributedStringKitAdditions.FixAttributesInRange(Foundation.NSMutableAttributedString,Foundation.NSRange)
-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)
M:UIKit.NSObject_UIAccessibilityTextNavigation.GetAccessibilityNextTextNavigationElement(Foundation.NSObject)
M:UIKit.NSObject_UIAccessibilityTextNavigation.GetAccessibilityNextTextNavigationElementBlock(Foundation.NSObject)
@@ -20613,15 +17882,6 @@ M:UIKit.NSObject_UIAccessibilityTextOperations.GetAccessibilityTextInputResponde
M:UIKit.NSObject_UIAccessibilityTextOperations.GetAccessibilityTextInputResponderHandler(Foundation.NSObject)
M:UIKit.NSObject_UIAccessibilityTextOperations.SetAccessibilityTextInputResponder(Foundation.NSObject,UIKit.IUITextInput)
M:UIKit.NSObject_UIAccessibilityTextOperations.SetAccessibilityTextInputResponderHandler(Foundation.NSObject,UIKit.UITextInputReturnHandler)
-M:UIKit.NSParagraphStyle.Copy(Foundation.NSZone)
-M:UIKit.NSParagraphStyle.MutableCopy(Foundation.NSZone)
-M:UIKit.NSShadow.Copy(Foundation.NSZone)
-M:UIKit.NSStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGPoint,UIKit.UIStringAttributes)
-M:UIKit.NSStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGRect,UIKit.UIStringAttributes)
-M:UIKit.NSStringDrawing.GetSizeUsingAttributes(Foundation.NSString,UIKit.UIStringAttributes)
-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.NSTextAttachmentViewProvider.Dispose(System.Boolean)
M:UIKit.NSTextContainer.Dispose(System.Boolean)
M:UIKit.NSTextContentManager.Dispose(System.Boolean)
@@ -20642,7 +17902,6 @@ M:UIKit.NSTextLayoutManagerDelegate_Extensions.GetTextLayoutFragment(UIKit.INSTe
M:UIKit.NSTextLayoutManagerDelegate_Extensions.ShouldBreakLineBeforeLocation(UIKit.INSTextLayoutManagerDelegate,UIKit.NSTextLayoutManager,UIKit.INSTextLocation,System.Boolean)
M:UIKit.NSTextList.#ctor(System.String)
M:UIKit.NSTextList.#ctor(UIKit.NSTextListMarkerFormats)
-M:UIKit.NSTextList.Copy(Foundation.NSZone)
M:UIKit.NSTextListElement.Dispose(System.Boolean)
M:UIKit.NSTextSelectionDataSource_Extensions.EnumerateContainerBoundaries(UIKit.INSTextSelectionDataSource,UIKit.INSTextLocation,System.Boolean,UIKit.NSTextSelectionDataSourceEnumerateContainerBoundariesDelegate)
M:UIKit.NSTextSelectionDataSource_Extensions.GetTextLayoutOrientation(UIKit.INSTextSelectionDataSource,UIKit.INSTextLocation)
@@ -20655,11 +17914,9 @@ M:UIKit.NSTextStorage.remove_DidProcessEditing(System.EventHandler{UIKit.NSTextS
M:UIKit.NSTextStorage.remove_WillProcessEditing(System.EventHandler{UIKit.NSTextStorageEventArgs})
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.NSTextTab.Copy(Foundation.NSZone)
M:UIKit.NSTextViewportLayoutController.Dispose(System.Boolean)
M:UIKit.NSTextViewportLayoutControllerDelegate_Extensions.DidLayout(UIKit.INSTextViewportLayoutControllerDelegate,UIKit.NSTextViewportLayoutController)
M:UIKit.NSTextViewportLayoutControllerDelegate_Extensions.WillLayout(UIKit.INSTextViewportLayoutControllerDelegate,UIKit.NSTextViewportLayoutController)
-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})
@@ -20690,7 +17947,6 @@ M:UIKit.UIActionSheet.UIActionSheetAppearance.#ctor(System.IntPtr)
M:UIKit.UIActionSheetDelegate_Extensions.Clicked(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet,System.IntPtr)
M:UIKit.UIActionSheetDelegate_Extensions.Dismissed(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet,System.IntPtr)
M:UIKit.UIActionSheetDelegate_Extensions.WillDismiss(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet,System.IntPtr)
-M:UIKit.UIActivityCollaborationModeRestriction.Copy(Foundation.NSZone)
M:UIKit.UIActivityIndicatorView.UIActivityIndicatorViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigurationMetadata(UIKit.IUIActivityItemsConfigurationReading,Foundation.NSString)
M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigurationMetadata(UIKit.IUIActivityItemsConfigurationReading,System.IntPtr,Foundation.NSString)
@@ -20704,7 +17960,6 @@ M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.DidDismiss(UIKit.IUI
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.PrepareAdaptivePresentationController(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController,UIKit.UIPresentationController)
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.ShouldDismiss(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController)
M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.WillDismiss(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController)
-M:UIKit.UIAlertAction.Copy(Foundation.NSZone)
M:UIKit.UIAlertView.add_Canceled(System.EventHandler)
M:UIKit.UIAlertView.add_Clicked(System.EventHandler{UIKit.UIButtonEventArgs})
M:UIKit.UIAlertView.add_Dismissed(System.EventHandler{UIKit.UIButtonEventArgs})
@@ -20727,7 +17982,6 @@ M:UIKit.UIAppearance.op_Inequality(UIKit.UIAppearance,UIKit.UIAppearance)
M:UIKit.UIApplication_DefaultApplication.GetDefaultStatus(UIKit.UIApplication,UIKit.UIApplicationCategory,Foundation.NSError@)
M:UIKit.UIApplication.Dispose(System.Boolean)
M:UIKit.UIApplication.GetPreferredContentSizeCategory
-M:UIKit.UIApplicationDelegate_Extensions.AccessibilityPerformMagicTap(UIKit.IUIApplicationDelegate)
M:UIKit.UIApplicationDelegate_Extensions.DidDiscardSceneSessions(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSSet{UIKit.UISceneSession})
M:UIKit.UIApplicationDelegate_Extensions.DidFailToContinueUserActivity(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String,Foundation.NSError)
M:UIKit.UIApplicationDelegate_Extensions.GetConfiguration(UIKit.IUIApplicationDelegate,UIKit.UIApplication,UIKit.UISceneSession,UIKit.UISceneConnectionOptions)
@@ -20737,12 +17991,7 @@ M:UIKit.UIApplicationDelegate_Extensions.SetWindow(UIKit.IUIApplicationDelegate,
M:UIKit.UIApplicationDelegate_Extensions.ShouldAutomaticallyLocalizeKeyCommands(UIKit.IUIApplicationDelegate,UIKit.UIApplication)
M:UIKit.UIApplicationDelegate_Extensions.ShouldRestoreSecureApplicationState(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSCoder)
M:UIKit.UIApplicationDelegate_Extensions.ShouldSaveSecureApplicationState(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSCoder)
-M:UIKit.UIApplicationShortcutIcon.Copy(Foundation.NSZone)
-M:UIKit.UIApplicationShortcutItem.Copy(Foundation.NSZone)
-M:UIKit.UIApplicationShortcutItem.MutableCopy(Foundation.NSZone)
-M:UIKit.UIBackgroundConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIBandSelectionInteraction.Dispose(System.Boolean)
-M:UIKit.UIBarAppearance.Copy(Foundation.NSZone)
M:UIKit.UIBarButtonItem.add_Clicked(System.EventHandler)
M:UIKit.UIBarButtonItem.Dispose(System.Boolean)
M:UIKit.UIBarButtonItem.remove_Clicked(System.EventHandler)
@@ -20761,11 +18010,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.Copy(Foundation.NSZone)
M:UIKit.UIBarItem.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState)
M:UIKit.UIBarItem.UIBarItemAppearance.#ctor(System.IntPtr)
M:UIKit.UIBarItem.UIBarItemAppearance.SetTitleTextAttributes(UIKit.UIStringAttributes,UIKit.UIControlState)
-M:UIKit.UIBezierPath.Copy(Foundation.NSZone)
M:UIKit.UIBezierPath.GetLineDash(System.Runtime.InteropServices.NFloat[]@,System.Runtime.InteropServices.NFloat@)
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)
@@ -20779,7 +18026,6 @@ 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.UIButtonConfiguration.Copy(Foundation.NSZone)
M:UIKit.UICalendarSelectionMultiDate.Dispose(System.Boolean)
M:UIKit.UICalendarSelectionMultiDateDelegate_Extensions.CanDeselectDate(UIKit.IUICalendarSelectionMultiDateDelegate,UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents)
M:UIKit.UICalendarSelectionMultiDateDelegate_Extensions.CanSelectDate(UIKit.IUICalendarSelectionMultiDateDelegate,UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents)
@@ -20789,21 +18035,17 @@ M:UIKit.UICalendarSelectionWeekOfYear.Dispose(System.Boolean)
M:UIKit.UICalendarView.Dispose(System.Boolean)
M:UIKit.UICalendarView.UICalendarViewAppearance.#ctor(System.IntPtr)
M:UIKit.UICalendarViewDelegate_Extensions.DidChangeVisibleDateComponents(UIKit.IUICalendarViewDelegate,UIKit.UICalendarView,Foundation.NSDateComponents)
-M:UIKit.UICellAccessory.Copy(Foundation.NSZone)
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.UICloudSharingController.Dispose(System.Boolean)
-M:UIKit.UICollectionLayoutListConfiguration.Copy(Foundation.NSZone)
M:UIKit.UICollectionLayoutListConfiguration.Dispose(System.Boolean)
-M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.Copy(Foundation.NSZone)
M:UIKit.UICollectionReusableView.UICollectionReusableViewAppearance.#ctor(System.IntPtr)
M:UIKit.UICollectionView.Dispose(System.Boolean)
M:UIKit.UICollectionView.UICollectionViewAppearance.#ctor(System.IntPtr)
M:UIKit.UICollectionViewCell.UICollectionViewCellAppearance.#ctor(System.IntPtr)
M:UIKit.UICollectionViewCellRegistration.GetRegistration(System.Type,UIKit.UICollectionViewCellRegistrationConfigurationHandler)
-M:UIKit.UICollectionViewCompositionalLayoutConfiguration.Copy(Foundation.NSZone)
M:UIKit.UICollectionViewDataSource_Extensions.GetIndexPath(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,System.String,System.IntPtr)
M:UIKit.UICollectionViewDelegate_Extensions.CanEditItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath)
M:UIKit.UICollectionViewDelegate_Extensions.CanPerformPrimaryActionForItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath)
@@ -20830,9 +18072,6 @@ M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetReferenceSizeForFooter(
M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetReferenceSizeForHeader(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr)
M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshotAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
M:UIKit.UICollectionViewDiffableDataSource`2.ApplySnapshotUsingReloadDataAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1})
-M:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2.Copy(Foundation.NSZone)
-M:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1.Copy(Foundation.NSZone)
-M:UIKit.UICollectionViewLayoutAttributes.Copy(Foundation.NSZone)
M:UIKit.UICollectionViewListCell.UICollectionViewListCellAppearance.#ctor(System.IntPtr)
M:UIKit.UICollectionViewSupplementaryRegistration.GetRegistration(System.Type,System.String,UIKit.UICollectionViewSupplementaryRegistrationConfigurationHandler)
M:UIKit.UICollectionViewTransitionResult.#ctor(System.Boolean,System.Boolean)
@@ -20845,12 +18084,10 @@ M:UIKit.UICollisionBehavior.remove_BeganBoundaryContact(System.EventHandler{UIKi
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.UIColor.Copy(Foundation.NSZone)
M:UIKit.UIColor.FromHSB(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:UIKit.UIColor.FromRGB(System.Runtime.InteropServices.NFloat,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.GetRGBA(System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat@,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.UIColorPickerViewController.Dispose(System.Boolean)
@@ -20858,12 +18095,6 @@ M:UIKit.UIColorPickerViewControllerDelegate_Extensions.DidFinish(UIKit.IUIColorP
M:UIKit.UIColorPickerViewControllerDelegate_Extensions.DidSelectColor(UIKit.IUIColorPickerViewControllerDelegate,UIKit.UIColorPickerViewController,UIKit.UIColor,System.Boolean)
M:UIKit.UIColorPickerViewControllerDelegate_Extensions.DidSelectColor(UIKit.IUIColorPickerViewControllerDelegate,UIKit.UIColorPickerViewController)
M:UIKit.UIColorWell.UIColorWellAppearance.#ctor(System.IntPtr)
-M:UIKit.UICommandAlternate.Copy(Foundation.NSZone)
-M:UIKit.UIContentUnavailableButtonProperties.Copy(Foundation.NSZone)
-M:UIKit.UIContentUnavailableConfiguration.Copy(Foundation.NSZone)
-M:UIKit.UIContentUnavailableConfigurationState.Copy(Foundation.NSZone)
-M:UIKit.UIContentUnavailableImageProperties.Copy(Foundation.NSZone)
-M:UIKit.UIContentUnavailableTextProperties.Copy(Foundation.NSZone)
M:UIKit.UIContentUnavailableView.UIContentUnavailableViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIContentView_Extensions.SupportsConfiguration(UIKit.IUIContentView,UIKit.IUIContentConfiguration)
M:UIKit.UIContextMenuInteraction.Dispose(System.Boolean)
@@ -20911,7 +18142,6 @@ M:UIKit.UIControl.remove_TouchUpInside(System.EventHandler)
M:UIKit.UIControl.remove_TouchUpOutside(System.EventHandler)
M:UIKit.UIControl.remove_ValueChanged(System.EventHandler)
M:UIKit.UIControl.UIControlAppearance.#ctor(System.IntPtr)
-M:UIKit.UICubicTimingParameters.Copy(Foundation.NSZone)
M:UIKit.UIDatePicker.UIDatePickerAppearance.#ctor(System.IntPtr)
M:UIKit.UIDocument.AccommodatePresentedItemEviction(System.Action{Foundation.NSError})
M:UIKit.UIDocument.AutoSaveAsync
@@ -20938,13 +18168,11 @@ M:UIKit.UIDocumentInteractionController.remove_WillBeginPreview(System.EventHand
M:UIKit.UIDocumentInteractionController.remove_WillBeginSendingToApplication(System.EventHandler{UIKit.UIDocumentSendingToApplicationEventArgs})
M:UIKit.UIDocumentInteractionController.remove_WillPresentOpenInMenu(System.EventHandler)
M:UIKit.UIDocumentInteractionController.remove_WillPresentOptionsMenu(System.EventHandler)
-M:UIKit.UIDocumentMenuDelegate_Extensions.WasCancelled(UIKit.IUIDocumentMenuDelegate,UIKit.UIDocumentMenuViewController)
M:UIKit.UIDocumentMenuViewController.add_DidPickDocumentPicker(System.EventHandler{UIKit.UIDocumentMenuDocumentPickedEventArgs})
M:UIKit.UIDocumentMenuViewController.add_WasCancelled(System.EventHandler)
M:UIKit.UIDocumentMenuViewController.Dispose(System.Boolean)
M:UIKit.UIDocumentMenuViewController.remove_DidPickDocumentPicker(System.EventHandler{UIKit.UIDocumentMenuDocumentPickedEventArgs})
M:UIKit.UIDocumentMenuViewController.remove_WasCancelled(System.EventHandler)
-M:UIKit.UIDocumentPickerDelegate_Extensions.DidPickDocument(UIKit.IUIDocumentPickerDelegate,UIKit.UIDocumentPickerViewController,Foundation.NSUrl)
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)
@@ -20954,14 +18182,8 @@ M:UIKit.UIDocumentPickerViewController.remove_DidPickDocumentAtUrls(System.Event
M:UIKit.UIDocumentPickerViewController.remove_WasCancelled(System.EventHandler)
M:UIKit.UIDocViewController.OpenDocumentAsync
M:UIKit.UIDragInteraction.Dispose(System.Boolean)
-M:UIKit.UIDragPreview.Copy(Foundation.NSZone)
-M:UIKit.UIDragPreviewParameters.Copy(Foundation.NSZone)
-M:UIKit.UIDragPreviewTarget.Copy(Foundation.NSZone)
M:UIKit.UIDropInteraction.Dispose(System.Boolean)
-M:UIKit.UIDropProposal.Copy(Foundation.NSZone)
M:UIKit.UIDynamicAnimator.Dispose(System.Boolean)
-M:UIKit.UIDynamicAnimatorDelegate_Extensions.DidPause(UIKit.IUIDynamicAnimatorDelegate,UIKit.UIDynamicAnimator)
-M:UIKit.UIDynamicAnimatorDelegate_Extensions.WillResume(UIKit.IUIDynamicAnimatorDelegate,UIKit.UIDynamicAnimator)
M:UIKit.UIDynamicItem_Extensions.GetCollisionBoundingPath(UIKit.IUIDynamicItem)
M:UIKit.UIDynamicItem_Extensions.GetCollisionBoundsType(UIKit.IUIDynamicItem)
M:UIKit.UIEdgeInsets.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
@@ -20972,7 +18194,6 @@ M:UIKit.UIEditMenuInteractionDelegate_Extensions.GetMenu(UIKit.IUIEditMenuIntera
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.UIEventAttribution.Copy(Foundation.NSZone)
M:UIKit.UIEventAttributionView.UIEventAttributionViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIEventButtonMaskExtensions.Convert(System.IntPtr)
M:UIKit.UIFeedbackGenerator.Dispose(System.Boolean)
@@ -20981,9 +18202,7 @@ M:UIKit.UIFindInteractionDelegate_Extensions.DidBeginFindSession(UIKit.IUIFindIn
M:UIKit.UIFindInteractionDelegate_Extensions.DidEndFindSession(UIKit.IUIFindInteractionDelegate,UIKit.UIFindInteraction,UIKit.UIFindSession)
M:UIKit.UIFloatRange.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
M:UIKit.UIFocusDebugger.CheckFocusGroupTree(UIKit.IUIFocusEnvironment)
-M:UIKit.UIFocusEffect.Copy(Foundation.NSZone)
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.Dispose(System.Boolean)
@@ -20991,11 +18210,9 @@ M:UIKit.UIFocusItem_Extensions.GetFocusEffect(UIKit.IUIFocusItem)
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.Dispose(System.Boolean)
M:UIKit.UIFocusUpdateContext.Dispose(System.Boolean)
M:UIKit.UIFont.BoldSystemFontOfSize(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIFont.Copy(Foundation.NSZone)
M:UIKit.UIFont.FromDescriptor(UIKit.UIFontDescriptor,System.Runtime.InteropServices.NFloat)
M:UIKit.UIFont.FromName(System.String,System.Runtime.InteropServices.NFloat)
M:UIKit.UIFont.GetMonospacedSystemFont(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
@@ -21010,10 +18227,8 @@ M:UIKit.UIFont.SystemFontOfSize(System.Runtime.InteropServices.NFloat,UIKit.UIFo
M:UIKit.UIFont.SystemFontOfSize(System.Runtime.InteropServices.NFloat,UIKit.UIFontWeight)
M:UIKit.UIFont.SystemFontOfSize(System.Runtime.InteropServices.NFloat)
M:UIKit.UIFont.WithSize(System.Runtime.InteropServices.NFloat)
-M:UIKit.UIFontDescriptor.Copy(Foundation.NSZone)
M:UIKit.UIFontDescriptor.CreateWithDesign(UIKit.UIFontDescriptorSystemDesign)
M:UIKit.UIFontPickerViewController.Dispose(System.Boolean)
-M:UIKit.UIFontPickerViewControllerConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIFontPickerViewControllerDelegate_Extensions.DidCancel(UIKit.IUIFontPickerViewControllerDelegate,UIKit.UIFontPickerViewController)
M:UIKit.UIFontPickerViewControllerDelegate_Extensions.DidPickFont(UIKit.IUIFontPickerViewControllerDelegate,UIKit.UIFontPickerViewController)
M:UIKit.UIFontWeightExtensions.GetWeight(UIKit.UIFontWeight)
@@ -21021,21 +18236,14 @@ M:UIKit.UIGestureRecognizer.Dispose(System.Boolean)
M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldReceiveEvent(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIEvent)
M:UIKit.UIGraphics.BeginImageContextWithOptions(CoreGraphics.CGSize,System.Boolean,System.Runtime.InteropServices.NFloat)
M:UIKit.UIGraphics.EndPDFContext
-M:UIKit.UIGraphicsRendererFormat.Copy(Foundation.NSZone)
-M:UIKit.UIHoverAutomaticEffect.Copy(Foundation.NSZone)
M:UIKit.UIHoverGestureRecognizer.#ctor(System.Action)
M:UIKit.UIHoverGestureRecognizer.#ctor(System.Action{UIKit.UIHoverGestureRecognizer})
-M:UIKit.UIHoverHighlightEffect.Copy(Foundation.NSZone)
-M:UIKit.UIHoverLiftEffect.Copy(Foundation.NSZone)
-M:UIKit.UIHoverStyle.Copy(Foundation.NSZone)
M:UIKit.UIImage.AsJPEG(System.Runtime.InteropServices.NFloat)
-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.PrepareForDisplayAsync
M:UIKit.UIImage.PrepareThumbnailAsync(CoreGraphics.CGSize)
M:UIKit.UIImage.Scale(CoreGraphics.CGSize,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIImageConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIImagePickerController.add_Canceled(System.EventHandler)
M:UIKit.UIImagePickerController.add_FinishedPickingMedia(System.EventHandler{UIKit.UIImagePickerMediaPickedEventArgs})
M:UIKit.UIImagePickerController.Dispose(System.Boolean)
@@ -21043,7 +18251,6 @@ M:UIKit.UIImagePickerController.remove_Canceled(System.EventHandler)
M:UIKit.UIImagePickerController.remove_FinishedPickingMedia(System.EventHandler{UIKit.UIImagePickerMediaPickedEventArgs})
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.UIImageView.AddSymbolEffectAsync(Symbols.NSSymbolEffect,Symbols.NSSymbolEffectOptions,System.Boolean)
@@ -21055,31 +18262,17 @@ M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.DidFinishWriting(UIKit.
M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.ShouldDelayFocus(UIKit.IUIIndirectScribbleInteractionDelegate,UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
M:UIKit.UIIndirectScribbleInteractionDelegate_Extensions.WillBeginWriting(UIKit.IUIIndirectScribbleInteractionDelegate,UIKit.UIIndirectScribbleInteraction,Foundation.NSObject)
M:UIKit.UIInputView.UIInputViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIInputViewAudioFeedback_Extensions.GetEnableInputClicksWhenVisible(UIKit.IUIInputViewAudioFeedback)
M:UIKit.UIInputViewController.RequestSupplementaryLexiconAsync
-M:UIKit.UIKey.Copy(Foundation.NSZone)
M:UIKit.UIKeyboard.#ctor
M:UIKit.UILabel.UILabelAppearance.#ctor(System.IntPtr)
M:UIKit.UILargeContentViewerInteraction.Dispose(System.Boolean)
M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.DidEnd(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction,UIKit.IUILargeContentViewerItem,CoreGraphics.CGPoint)
M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.GetItem(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction,CoreGraphics.CGPoint)
M:UIKit.UILargeContentViewerInteractionDelegate_Extensions.GetViewController(UIKit.IUILargeContentViewerInteractionDelegate,UIKit.UILargeContentViewerInteraction)
-M:UIKit.UILayoutGuide_UIConstraintBasedLayoutDebugging.GetConstraintsAffectingLayout(UIKit.UILayoutGuide,UIKit.UILayoutConstraintAxis)
-M:UIKit.UILayoutGuide_UIConstraintBasedLayoutDebugging.GetHasAmbiguousLayout(UIKit.UILayoutGuide)
M:UIKit.UILayoutGuide.Dispose(System.Boolean)
-M:UIKit.UILexicon.Copy(Foundation.NSZone)
-M:UIKit.UILexiconEntry.Copy(Foundation.NSZone)
-M:UIKit.UIListContentConfiguration.Copy(Foundation.NSZone)
-M:UIKit.UIListContentImageProperties.Copy(Foundation.NSZone)
-M:UIKit.UIListContentTextProperties.Copy(Foundation.NSZone)
M:UIKit.UIListContentView.UIListContentViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIListSeparatorConfiguration.Copy(Foundation.NSZone)
-M:UIKit.UILocalNotification.Copy(Foundation.NSZone)
-M:UIKit.UIMenuDisplayPreferences.Copy(Foundation.NSZone)
-M:UIKit.UIMenuElement.Copy(Foundation.NSZone)
M:UIKit.UIMenuLeaf_Extensions.GetSelectedImage(UIKit.IUIMenuLeaf)
M:UIKit.UIMenuLeaf_Extensions.SetSelectedImage(UIKit.IUIMenuLeaf,UIKit.UIImage)
-M:UIKit.UIMotionEffect.Copy(Foundation.NSZone)
M:UIKit.UINavigationBar.Dispose(System.Boolean)
M:UIKit.UINavigationBar.UINavigationBarAppearance.#ctor(System.IntPtr)
M:UIKit.UINavigationBar.UINavigationBarAppearance.GetBackgroundImage(UIKit.UIBarMetrics)
@@ -21113,7 +18306,6 @@ M:UIKit.UIPasteboard.DetectPatternsAsync(Foundation.NSSet{Foundation.NSString},F
M:UIKit.UIPasteboard.DetectPatternsAsync(Foundation.NSSet{Foundation.NSString})
M:UIKit.UIPasteboard.DetectValuesAsync(Foundation.NSSet{Foundation.NSString},Foundation.NSIndexSet)
M:UIKit.UIPasteboard.DetectValuesAsync(Foundation.NSSet{Foundation.NSString})
-M:UIKit.UIPasteConfiguration.Copy(Foundation.NSZone)
M:UIKit.UIPasteControl.Dispose(System.Boolean)
M:UIKit.UIPasteControl.UIPasteControlAppearance.#ctor(System.IntPtr)
M:UIKit.UIPencilInteraction.Dispose(System.Boolean)
@@ -21133,17 +18325,12 @@ M:UIKit.UIPickerViewDelegate_Extensions.GetRowHeight(UIKit.IUIPickerViewDelegate
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.UIPointerAccessory.Copy(Foundation.NSZone)
M:UIKit.UIPointerAccessoryPosition.#ctor(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIPointerEffect.Copy(Foundation.NSZone)
M:UIKit.UIPointerInteraction.Dispose(System.Boolean)
M:UIKit.UIPointerInteractionDelegate_Extensions.GetRegionForRequest(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegionRequest,UIKit.UIPointerRegion)
M:UIKit.UIPointerInteractionDelegate_Extensions.GetStyleForRegion(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegion)
M:UIKit.UIPointerInteractionDelegate_Extensions.WillEnterRegion(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegion,UIKit.IUIPointerInteractionAnimating)
M:UIKit.UIPointerInteractionDelegate_Extensions.WillExitRegion(UIKit.IUIPointerInteractionDelegate,UIKit.UIPointerInteraction,UIKit.UIPointerRegion,UIKit.IUIPointerInteractionAnimating)
-M:UIKit.UIPointerRegion.Copy(Foundation.NSZone)
-M:UIKit.UIPointerShape.Copy(Foundation.NSZone)
-M:UIKit.UIPointerStyle.Copy(Foundation.NSZone)
M:UIKit.UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIPopoverController.add_DidDismiss(System.EventHandler)
M:UIKit.UIPopoverController.add_WillReposition(System.EventHandler{UIKit.UIPopoverControllerRepositionEventArgs})
@@ -21159,8 +18346,6 @@ M:UIKit.UIPopoverPresentationController.remove_PrepareForPresentation(System.Eve
M:UIKit.UIPopoverPresentationController.remove_WillReposition(System.EventHandler{UIKit.UIPopoverPresentationControllerRepositionEventArgs})
M:UIKit.UIPopoverPresentationControllerSourceItem_Extensions.GetFrame(UIKit.IUIPopoverPresentationControllerSourceItem,UIKit.UIView)
M:UIKit.UIPresentationController.Dispose(System.Boolean)
-M:UIKit.UIPreviewAction.Copy(Foundation.NSZone)
-M:UIKit.UIPreviewActionGroup.Copy(Foundation.NSZone)
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})
@@ -21169,14 +18354,10 @@ 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.UIPreviewParameters.Copy(Foundation.NSZone)
-M:UIKit.UIPreviewTarget.Copy(Foundation.NSZone)
M:UIKit.UIPrinter.ContactPrinterAsync
M:UIKit.UIPrinterPickerCompletionResult.#ctor(UIKit.UIPrinterPickerController,System.Boolean)
M:UIKit.UIPrinterPickerController.Dispose(System.Boolean)
-M:UIKit.UIPrintFormatter.Copy(Foundation.NSZone)
M:UIKit.UIPrintFormatter.Dispose(System.Boolean)
-M:UIKit.UIPrintInfo.Copy(Foundation.NSZone)
M:UIKit.UIPrintInteractionCompletionResult.#ctor(UIKit.UIPrintInteractionController,System.Boolean)
M:UIKit.UIPrintInteractionController.add_DidDismissPrinterOptions(System.EventHandler)
M:UIKit.UIPrintInteractionController.add_DidFinishJob(System.EventHandler)
@@ -21194,8 +18375,6 @@ M:UIKit.UIPrintInteractionController.remove_WillStartJob(System.EventHandler)
M:UIKit.UIPrintInteractionResult.#ctor(UIKit.UIPrintInteractionController,System.Boolean)
M:UIKit.UIProgressView.UIProgressViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIRefreshControl.UIRefreshControlAppearance.#ctor(System.IntPtr)
-M:UIKit.UIRegion.Copy(Foundation.NSZone)
-M:UIKit.UIResolvedShape.Copy(Foundation.NSZone)
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)
@@ -21225,8 +18404,6 @@ M:UIKit.UIResponderStandardEditActions_Extensions.ToggleUnderline(UIKit.IUIRespo
M:UIKit.UIResponderStandardEditActions_Extensions.UpdateTextAttributes(UIKit.IUIResponderStandardEditActions,UIKit.UITextAttributesConversionHandler)
M:UIKit.UIResponderStandardEditActions_Extensions.UseSelectionForFind(UIKit.IUIResponderStandardEditActions,Foundation.NSObject)
M:UIKit.UIScene.OpenUrlAsync(Foundation.NSUrl,UIKit.UISceneOpenExternalUrlOptions)
-M:UIKit.UISceneActivationRequestOptions.Copy(Foundation.NSZone)
-M:UIKit.UISceneConfiguration.Copy(Foundation.NSZone)
M:UIKit.UISceneDelegate_Extensions.ContinueUserActivity(UIKit.IUISceneDelegate,UIKit.UIScene,Foundation.NSUserActivity)
M:UIKit.UISceneDelegate_Extensions.DidBecomeActive(UIKit.IUISceneDelegate,UIKit.UIScene)
M:UIKit.UISceneDelegate_Extensions.DidDisconnect(UIKit.IUISceneDelegate,UIKit.UIScene)
@@ -21240,7 +18417,6 @@ 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.UISceneSessionActivationRequest.Copy(Foundation.NSZone)
M:UIKit.UIScreen.Dispose(System.Boolean)
M:UIKit.UIScreenshotService.Dispose(System.Boolean)
M:UIKit.UIScreenshotServiceDelegate_Extensions.GeneratePdfRepresentation(UIKit.IUIScreenshotServiceDelegate,UIKit.UIScreenshotService,UIKit.UIScreenshotServiceDelegatePdfHandler)
@@ -21334,8 +18510,6 @@ 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.UIShadowProperties.Copy(Foundation.NSZone)
-M:UIKit.UIShape.Copy(Foundation.NSZone)
M:UIKit.UISheetPresentationController.Dispose(System.Boolean)
M:UIKit.UISheetPresentationControllerDelegate_Extensions.DidChangeSelectedDetentIdentifier(UIKit.IUISheetPresentationControllerDelegate,UIKit.UISheetPresentationController)
M:UIKit.UISlider.UISliderAppearance.#ctor(System.IntPtr)
@@ -21345,9 +18519,6 @@ 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.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.add_DidCollapse(System.EventHandler)
M:UIKit.UISplitViewController.add_DidExpand(System.EventHandler)
M:UIKit.UISplitViewController.add_InteractivePresentationGestureDidEnd(System.EventHandler)
@@ -21378,7 +18549,6 @@ M:UIKit.UISplitViewControllerDelegate_Extensions.InteractivePresentationGestureW
M:UIKit.UISplitViewControllerDelegate_Extensions.WillHideColumn(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn)
M:UIKit.UISplitViewControllerDelegate_Extensions.WillShowColumn(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn)
M:UIKit.UISpringLoadedInteraction.Dispose(System.Boolean)
-M:UIKit.UISpringTimingParameters.Copy(Foundation.NSZone)
M:UIKit.UIStackView.UIStackViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIStandardTextCursorView.UIStandardTextCursorViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIStateRestoring_Extensions.GetObjectRestorationClass(UIKit.IUIStateRestoring)
@@ -21395,18 +18565,11 @@ M:UIKit.UIStepper.UIStepperAppearance.SetIncrementImage(UIKit.UIImage,UIKit.UICo
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)
M:UIKit.UIStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,UIKit.UIFont,System.Runtime.InteropServices.NFloat,UIKit.UILineBreakMode,UIKit.UIBaselineAdjustment)
M:UIKit.UIStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,UIKit.UIFont,UIKit.UILineBreakMode)
-M:UIKit.UIStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGPoint,UIKit.UIFont)
-M:UIKit.UIStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGRect,UIKit.UIFont,UIKit.UILineBreakMode,UIKit.UITextAlignment)
-M:UIKit.UIStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGRect,UIKit.UIFont,UIKit.UILineBreakMode)
-M:UIKit.UIStringDrawing.DrawString(Foundation.NSString,CoreGraphics.CGRect,UIKit.UIFont)
M:UIKit.UIStringDrawing.DrawString(System.String,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,UIKit.UIFont,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat@,UIKit.UILineBreakMode,UIKit.UIBaselineAdjustment)
M:UIKit.UIStringDrawing.DrawString(System.String,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,UIKit.UIFont,System.Runtime.InteropServices.NFloat,UIKit.UILineBreakMode,UIKit.UIBaselineAdjustment)
M:UIKit.UIStringDrawing.DrawString(System.String,CoreGraphics.CGPoint,System.Runtime.InteropServices.NFloat,UIKit.UIFont,UIKit.UILineBreakMode)
-M:UIKit.UIStringDrawing.StringSize(Foundation.NSString,UIKit.UIFont,CoreGraphics.CGSize,UIKit.UILineBreakMode)
-M:UIKit.UIStringDrawing.StringSize(Foundation.NSString,UIKit.UIFont,CoreGraphics.CGSize)
M:UIKit.UIStringDrawing.StringSize(Foundation.NSString,UIKit.UIFont,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat@,System.Runtime.InteropServices.NFloat,UIKit.UILineBreakMode)
M:UIKit.UIStringDrawing.StringSize(Foundation.NSString,UIKit.UIFont,System.Runtime.InteropServices.NFloat,UIKit.UILineBreakMode)
-M:UIKit.UIStringDrawing.StringSize(Foundation.NSString,UIKit.UIFont)
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.UISwitch.UISwitchAppearance.#ctor(System.IntPtr)
@@ -21455,7 +18618,6 @@ M:UIKit.UITabBarControllerDelegate_Extensions.VisibilityDidChangeForTabs(UIKit.I
M:UIKit.UITabBarControllerDelegate_Extensions.WillBeginEditing(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController)
M:UIKit.UITabBarControllerSidebar.Dispose(System.Boolean)
M:UIKit.UITabBarItem.UITabBarItemAppearance.#ctor(System.IntPtr)
-M:UIKit.UITabBarItemAppearance.Copy(Foundation.NSZone)
M:UIKit.UITableView.Dispose(System.Boolean)
M:UIKit.UITableView.UITableViewAppearance.#ctor(System.IntPtr)
M:UIKit.UITableViewCell.UITableViewCellAppearance.#ctor(System.IntPtr)
@@ -21487,14 +18649,9 @@ M:UIKit.UITableViewDelegate_Extensions.WillPerformPreviewAction(UIKit.IUITableVi
M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean)
M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotUsingReloadDataAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1})
M:UIKit.UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UITableViewRowAction.Copy(Foundation.NSZone)
-M:UIKit.UITabSidebarItem.Copy(Foundation.NSZone)
-M:UIKit.UITargetedDragPreview.Copy(Foundation.NSZone)
-M:UIKit.UITargetedPreview.Copy(Foundation.NSZone)
M:UIKit.UITextAlignmentExtensions.ToManaged(System.IntPtr)
M:UIKit.UITextAlignmentExtensions.ToNative(UIKit.UITextAlignment)
M:UIKit.UITextCursorDropPositionAnimator.AnimateAlongsideChangesAsync(System.Action)
-M:UIKit.UITextDropProposal.Copy(Foundation.NSZone)
M:UIKit.UITextField.add_Ended(System.EventHandler)
M:UIKit.UITextField.add_EndedWithReason(System.EventHandler{UIKit.UITextFieldEditingEndedEventArgs})
M:UIKit.UITextField.add_Started(System.EventHandler)
@@ -21510,14 +18667,8 @@ M:UIKit.UITextFieldDelegate_Extensions.WillDismissEditMenu(UIKit.IUITextFieldDel
M:UIKit.UITextFieldDelegate_Extensions.WillPresentEditMenu(UIKit.IUITextFieldDelegate,UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating)
M:UIKit.UITextFormattingCoordinator.Dispose(System.Boolean)
M:UIKit.UITextFormattingViewController.Dispose(System.Boolean)
-M:UIKit.UITextFormattingViewControllerChangeValue.Copy(Foundation.NSZone)
-M:UIKit.UITextFormattingViewControllerComponent.Copy(Foundation.NSZone)
-M:UIKit.UITextFormattingViewControllerComponentGroup.Copy(Foundation.NSZone)
-M:UIKit.UITextFormattingViewControllerConfiguration.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerFormattingDescriptor.#ctor(UIKit.UIStringAttributes)
-M:UIKit.UITextFormattingViewControllerFormattingDescriptor.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerFormattingStyle.#ctor(System.String,System.String,UIKit.UIStringAttributes)
-M:UIKit.UITextFormattingViewControllerFormattingStyle.Copy(Foundation.NSZone)
M:UIKit.UITextFormattingViewControllerHighlightExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
M:UIKit.UITextFormattingViewControllerTextAlignmentExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
M:UIKit.UITextFormattingViewControllerTextListExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
@@ -21543,41 +18694,24 @@ M:UIKit.UITextInput_Extensions.SetSupportsAdaptiveImageGlyph(UIKit.IUITextInput,
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.UITextInputPasswordRules.Copy(Foundation.NSZone)
M:UIKit.UITextInputTraits_Extensions.GetAllowedWritingToolsResultOptions(UIKit.IUITextInputTraits)
-M:UIKit.UITextInputTraits_Extensions.GetAutocapitalizationType(UIKit.IUITextInputTraits)
-M:UIKit.UITextInputTraits_Extensions.GetAutocorrectionType(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetConversationContext(UIKit.IUITextInputTraits)
-M:UIKit.UITextInputTraits_Extensions.GetEnablesReturnKeyAutomatically(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetInlinePredictionType(UIKit.IUITextInputTraits)
-M:UIKit.UITextInputTraits_Extensions.GetKeyboardAppearance(UIKit.IUITextInputTraits)
-M:UIKit.UITextInputTraits_Extensions.GetKeyboardType(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetMathExpressionCompletionType(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetPasswordRules(UIKit.IUITextInputTraits)
-M:UIKit.UITextInputTraits_Extensions.GetReturnKeyType(UIKit.IUITextInputTraits)
-M:UIKit.UITextInputTraits_Extensions.GetSecureTextEntry(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetSmartDashesType(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetSmartInsertDeleteType(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetSmartQuotesType(UIKit.IUITextInputTraits)
-M:UIKit.UITextInputTraits_Extensions.GetSpellCheckingType(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetTextContentType(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.GetWritingToolsBehavior(UIKit.IUITextInputTraits)
M:UIKit.UITextInputTraits_Extensions.SetAllowedWritingToolsResultOptions(UIKit.IUITextInputTraits,UIKit.UIWritingToolsResultOptions)
-M:UIKit.UITextInputTraits_Extensions.SetAutocapitalizationType(UIKit.IUITextInputTraits,UIKit.UITextAutocapitalizationType)
-M:UIKit.UITextInputTraits_Extensions.SetAutocorrectionType(UIKit.IUITextInputTraits,UIKit.UITextAutocorrectionType)
M:UIKit.UITextInputTraits_Extensions.SetConversationContext(UIKit.IUITextInputTraits,UIKit.UIConversationContext)
-M:UIKit.UITextInputTraits_Extensions.SetEnablesReturnKeyAutomatically(UIKit.IUITextInputTraits,System.Boolean)
M:UIKit.UITextInputTraits_Extensions.SetInlinePredictionType(UIKit.IUITextInputTraits,UIKit.UITextInlinePredictionType)
-M:UIKit.UITextInputTraits_Extensions.SetKeyboardAppearance(UIKit.IUITextInputTraits,UIKit.UIKeyboardAppearance)
-M:UIKit.UITextInputTraits_Extensions.SetKeyboardType(UIKit.IUITextInputTraits,UIKit.UIKeyboardType)
M:UIKit.UITextInputTraits_Extensions.SetMathExpressionCompletionType(UIKit.IUITextInputTraits,UIKit.UITextMathExpressionCompletionType)
M:UIKit.UITextInputTraits_Extensions.SetPasswordRules(UIKit.IUITextInputTraits,UIKit.UITextInputPasswordRules)
-M:UIKit.UITextInputTraits_Extensions.SetReturnKeyType(UIKit.IUITextInputTraits,UIKit.UIReturnKeyType)
-M:UIKit.UITextInputTraits_Extensions.SetSecureTextEntry(UIKit.IUITextInputTraits,System.Boolean)
M:UIKit.UITextInputTraits_Extensions.SetSmartDashesType(UIKit.IUITextInputTraits,UIKit.UITextSmartDashesType)
M:UIKit.UITextInputTraits_Extensions.SetSmartInsertDeleteType(UIKit.IUITextInputTraits,UIKit.UITextSmartInsertDeleteType)
M:UIKit.UITextInputTraits_Extensions.SetSmartQuotesType(UIKit.IUITextInputTraits,UIKit.UITextSmartQuotesType)
-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.Dispose(System.Boolean)
@@ -21643,14 +18777,8 @@ M:UIKit.UIToolTipInteractionDelegate_Extensions.GetConfiguration(UIKit.IUIToolTi
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.Copy(Foundation.NSZone)
M:UIKit.UITraitCollection.Create(UIKit.UIContentSizeCategory)
M:UIKit.UITraitCollection.GetChangedTraits2(UIKit.UITraitCollection)
-M:UIKit.UIUserNotificationAction.Copy(Foundation.NSZone)
-M:UIKit.UIUserNotificationAction.MutableCopy(Foundation.NSZone)
-M:UIKit.UIUserNotificationCategory.Copy(Foundation.NSZone)
-M:UIKit.UIUserNotificationCategory.MutableCopy(Foundation.NSZone)
-M:UIKit.UIUserNotificationSettings.Copy(Foundation.NSZone)
M:UIKit.UIVibrancyEffect.CreateWidgetEffectForNotificationCenter(UIKit.UIVibrancyEffectStyle)
M:UIKit.UIVideoEditorController.add_Failed(System.EventHandler{Foundation.NSErrorEventArgs})
M:UIKit.UIVideoEditorController.add_Saved(System.EventHandler{UIKit.UIPathEventArgs})
@@ -21659,7 +18787,6 @@ M:UIKit.UIVideoEditorController.Dispose(System.Boolean)
M:UIKit.UIVideoEditorController.remove_Failed(System.EventHandler{Foundation.NSErrorEventArgs})
M:UIKit.UIVideoEditorController.remove_Saved(System.EventHandler{UIKit.UIPathEventArgs})
M:UIKit.UIVideoEditorController.remove_UserCancelled(System.EventHandler)
-M:UIKit.UIView_UITextField.EndEditing(UIKit.UIView,System.Boolean)
M:UIKit.UIView.add_AnimationWillEnd(System.Action)
M:UIKit.UIView.add_AnimationWillStart(System.Action)
M:UIKit.UIView.AnimateAsync(System.Double,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Double,UIKit.UIViewAnimationOptions,System.Action)
@@ -21668,16 +18795,12 @@ M:UIKit.UIView.Dispose(System.Boolean)
M:UIKit.UIView.remove_AnimationWillEnd(System.Action)
M:UIKit.UIView.remove_AnimationWillStart(System.Action)
M:UIKit.UIView.UIViewAppearance.#ctor(System.IntPtr)
-M:UIKit.UIViewConfigurationState.Copy(Foundation.NSZone)
-M:UIKit.UIViewController.BeginRequestWithExtensionContext(Foundation.NSExtensionContext)
M:UIKit.UIViewController.Dispose(System.Boolean)
M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetCompletionCurve(UIKit.IUIViewControllerInteractiveTransitioning)
M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetCompletionSpeed(UIKit.IUIViewControllerInteractiveTransitioning)
M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetWantsInteractiveStart(UIKit.IUIViewControllerInteractiveTransitioning)
M:UIKit.UIViewImplicitlyAnimating_Extensions.AddAnimations(UIKit.IUIViewImplicitlyAnimating,System.Action,System.Runtime.InteropServices.NFloat)
M:UIKit.UIViewImplicitlyAnimating_Extensions.ContinueAnimation(UIKit.IUIViewImplicitlyAnimating,UIKit.IUITimingCurveProvider,System.Runtime.InteropServices.NFloat)
-M:UIKit.UIViewPropertyAnimator.Copy(Foundation.NSZone)
-M:UIKit.UIVisualEffect.Copy(Foundation.NSZone)
M:UIKit.UIVisualEffectView.UIVisualEffectViewAppearance.#ctor(System.IntPtr)
M:UIKit.UIWebView.add_LoadError(System.EventHandler{UIKit.UIWebErrorArgs})
M:UIKit.UIWebView.add_LoadFinished(System.EventHandler)
@@ -21687,10 +18810,6 @@ M:UIKit.UIWebView.remove_LoadError(System.EventHandler{UIKit.UIWebErrorArgs})
M:UIKit.UIWebView.remove_LoadFinished(System.EventHandler)
M:UIKit.UIWebView.remove_LoadStarted(System.EventHandler)
M:UIKit.UIWebView.UIWebViewAppearance.#ctor(System.IntPtr)
-M:UIKit.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.UIWindow.Dispose(System.Boolean)
M:UIKit.UIWindow.UIWindowAppearance.#ctor(System.IntPtr)
M:UIKit.UIWindowScene.Dispose(System.Boolean)
@@ -21701,16 +18820,12 @@ M:UIKit.UIWindowSceneDelegate_Extensions.PerformAction(UIKit.IUIWindowSceneDeleg
M:UIKit.UIWindowSceneDelegate_Extensions.SetWindow(UIKit.IUIWindowSceneDelegate,UIKit.UIWindow)
M:UIKit.UIWindowSceneDelegate_Extensions.UserDidAcceptCloudKitShare(UIKit.IUIWindowSceneDelegate,UIKit.UIWindowScene,CloudKit.CKShareMetadata)
M:UIKit.UIWindowSceneDragInteraction.Dispose(System.Boolean)
-M:UIKit.UIWindowSceneGeometry.Copy(Foundation.NSZone)
-M:UIKit.UIWindowScenePlacement.Copy(Foundation.NSZone)
M:UIKit.UIWritingToolsCoordinator.Dispose(System.Boolean)
-M:UIKit.UIZoomTransitionOptions.Copy(Foundation.NSZone)
M:UniformTypeIdentifiers.NSString_UTAdditions.AppendPathComponent(Foundation.NSString,System.String,UniformTypeIdentifiers.UTType)
M:UniformTypeIdentifiers.NSString_UTAdditions.AppendPathExtension(Foundation.NSString,UniformTypeIdentifiers.UTType)
M:UniformTypeIdentifiers.NSUrl_UTAdditions.AppendPathComponent(Foundation.NSUrl,System.String,UniformTypeIdentifiers.UTType)
M:UniformTypeIdentifiers.NSUrl_UTAdditions.AppendPathExtension(Foundation.NSUrl,UniformTypeIdentifiers.UTType)
M:UniformTypeIdentifiers.UTType.ConformsTo(UniformTypeIdentifiers.UTType)
-M:UniformTypeIdentifiers.UTType.Copy(Foundation.NSZone)
M:UniformTypeIdentifiers.UTType.CreateExportedType(System.String,UniformTypeIdentifiers.UTType)
M:UniformTypeIdentifiers.UTType.CreateExportedType(System.String)
M:UniformTypeIdentifiers.UTType.CreateFromExtension(System.String,UniformTypeIdentifiers.UTType)
@@ -21724,24 +18839,12 @@ M:UniformTypeIdentifiers.UTType.GetType(System.String,UniformTypeIdentifiers.UTT
M:UniformTypeIdentifiers.UTType.GetTypes(System.String,UniformTypeIdentifiers.UTTagClass,UniformTypeIdentifiers.UTType)
M:UniformTypeIdentifiers.UTType.IsSubtypeOf(UniformTypeIdentifiers.UTType)
M:UniformTypeIdentifiers.UTType.IsSupertypeOf(UniformTypeIdentifiers.UTType)
-M:UserNotifications.UNNotification.Copy(Foundation.NSZone)
-M:UserNotifications.UNNotificationAction.Copy(Foundation.NSZone)
M:UserNotifications.UNNotificationAction.FromIdentifier(System.String,System.String,UserNotifications.UNNotificationActionOptions,UserNotifications.UNNotificationActionIcon)
-M:UserNotifications.UNNotificationActionIcon.Copy(Foundation.NSZone)
M:UserNotifications.UNNotificationActionIcon.CreateFromSystem(System.String)
M:UserNotifications.UNNotificationActionIcon.CreateFromTemplate(System.String)
-M:UserNotifications.UNNotificationAttachment.Copy(Foundation.NSZone)
M:UserNotifications.UNNotificationAttributedMessageContext.Create(Intents.INSendMessageIntent,Foundation.NSAttributedString)
-M:UserNotifications.UNNotificationCategory.Copy(Foundation.NSZone)
-M:UserNotifications.UNNotificationContent.Copy(Foundation.NSZone)
-M:UserNotifications.UNNotificationContent.MutableCopy(Foundation.NSZone)
M:UserNotifications.UNNotificationContent.Update(UserNotifications.IUNNotificationContentProviding,Foundation.NSError@)
-M:UserNotifications.UNNotificationRequest.Copy(Foundation.NSZone)
-M:UserNotifications.UNNotificationResponse.Copy(Foundation.NSZone)
-M:UserNotifications.UNNotificationSettings.Copy(Foundation.NSZone)
-M:UserNotifications.UNNotificationSound.Copy(Foundation.NSZone)
M:UserNotifications.UNNotificationSound.GetRingtoneSound(System.String)
-M:UserNotifications.UNNotificationTrigger.Copy(Foundation.NSZone)
M:UserNotifications.UNTextInputNotificationAction.FromIdentifier(System.String,System.String,UserNotifications.UNNotificationActionOptions,UserNotifications.UNNotificationActionIcon,System.String,System.String)
M:UserNotifications.UNUserNotificationCenter.Dispose(System.Boolean)
M:UserNotifications.UNUserNotificationCenter.GetDeliveredNotificationsAsync
@@ -21750,13 +18853,6 @@ M:UserNotifications.UNUserNotificationCenter.GetNotificationSettingsAsync
M:UserNotifications.UNUserNotificationCenter.GetPendingNotificationRequestsAsync
M:UserNotifications.UNUserNotificationCenter.SetBadgeCount(System.IntPtr,System.Action{Foundation.NSError})
M:UserNotifications.UNUserNotificationCenter.SetBadgeCountAsync(System.IntPtr)
-M:UserNotificationsUI.IUNNotificationContentExtension.DidReceiveNotification(UserNotifications.UNNotification)
-M:UserNotificationsUI.NSExtensionContext_UNNotificationContentExtension.DismissNotificationContentExtension(Foundation.NSExtensionContext)
-M:UserNotificationsUI.NSExtensionContext_UNNotificationContentExtension.GetNotificationActions(Foundation.NSExtensionContext)
-M:UserNotificationsUI.NSExtensionContext_UNNotificationContentExtension.MediaPlayingPaused(Foundation.NSExtensionContext)
-M:UserNotificationsUI.NSExtensionContext_UNNotificationContentExtension.MediaPlayingStarted(Foundation.NSExtensionContext)
-M:UserNotificationsUI.NSExtensionContext_UNNotificationContentExtension.PerformNotificationDefaultAction(Foundation.NSExtensionContext)
-M:UserNotificationsUI.NSExtensionContext_UNNotificationContentExtension.SetNotificationActions(Foundation.NSExtensionContext,UserNotifications.UNNotificationAction[])
M:UserNotificationsUI.UNNotificationContentExtension_Extensions.GetMediaPlayPauseButtonFrame(UserNotificationsUI.IUNNotificationContentExtension)
M:UserNotificationsUI.UNNotificationContentExtension_Extensions.GetMediaPlayPauseButtonTintColor(UserNotificationsUI.IUNNotificationContentExtension)
M:UserNotificationsUI.UNNotificationContentExtension_Extensions.GetMediaPlayPauseButtonType(UserNotificationsUI.IUNNotificationContentExtension)
@@ -21803,12 +18899,8 @@ M:VideoToolbox.VTProfessionalVideoWorkflow.RegisterVideoEncoders
M:VideoToolbox.VTRawProcessingSession.#ctor(ObjCRuntime.NativeHandle,System.Boolean)
M:VideoToolbox.VTSupportedEncoderProperties.#ctor
M:VideoToolbox.VTUtilities.RegisterSupplementalVideoDecoder(CoreMedia.CMVideoCodecType)
-M:Vision.VNCircle.Copy(Foundation.NSZone)
-M:Vision.VNContour.Copy(Foundation.NSZone)
M:Vision.VNDetectBarcodesRequest.GetSupportedSymbologies(Foundation.NSError@)
M:Vision.VNDetectContoursRequest.Dispose(System.Boolean)
-M:Vision.VNFaceLandmarkRegion.Copy(Foundation.NSZone)
-M:Vision.VNFaceLandmarks.Copy(Foundation.NSZone)
M:Vision.VNFeaturePrintObservation.ComputeDistance(System.Single[]@,Vision.VNFeaturePrintObservation,Foundation.NSError@)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions,Vision.VNRequestCompletionHandler)
M:Vision.VNGenerateOpticalFlowRequest.#ctor(CoreGraphics.CGImage,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
@@ -21833,17 +18925,12 @@ M:Vision.VNGenerateOpticalFlowRequest.#ctor(Foundation.NSUrl,Vision.VNImageOptio
M:Vision.VNGeometryUtils.CreateBoundingCircle(System.Numerics.Vector2[],Foundation.NSError@)
M:Vision.VNImageRequestHandler.#ctor(CoreMedia.CMSampleBuffer,ImageIO.CGImagePropertyOrientation,Vision.VNImageOptions)
M:Vision.VNImageRequestHandler.#ctor(CoreMedia.CMSampleBuffer,Vision.VNImageOptions)
-M:Vision.VNObservation.Copy(Foundation.NSZone)
-M:Vision.VNPoint.Copy(Foundation.NSZone)
-M:Vision.VNPoint3D.Copy(Foundation.NSZone)
M:Vision.VNRecognizedPointsObservation.GetAvailableGroupKeys``1
M:Vision.VNRecognizedPointsObservation.GetAvailableKeys``1
M:Vision.VNRecognizedPointsObservation.GetRecognizedPoint(Vision.VNHumanBodyPoseObservationJointName,Foundation.NSError@)
M:Vision.VNRecognizedPointsObservation.GetRecognizedPoint(Vision.VNHumanHandPoseObservationJointName,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.VNRequest.Copy(Foundation.NSZone)
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)
@@ -21859,9 +18946,6 @@ M:Vision.VNUtils.GetNormalizedPoint(CoreGraphics.CGPoint,System.UIntPtr,System.U
M:Vision.VNUtils.GetNormalizedPoint(CoreGraphics.CGPoint,System.UIntPtr,System.UIntPtr)
M:Vision.VNUtils.GetNormalizedRect(CoreGraphics.CGRect,System.UIntPtr,System.UIntPtr,CoreGraphics.CGRect)
M:Vision.VNUtils.GetNormalizedRect(CoreGraphics.CGRect,System.UIntPtr,System.UIntPtr)
-M:Vision.VNVector.Copy(Foundation.NSZone)
-M:Vision.VNVideoProcessorCadence.Copy(Foundation.NSZone)
-M:Vision.VNVideoProcessorRequestProcessingOptions.Copy(Foundation.NSZone)
M:VisionKit.IVNDocumentCameraViewControllerDelegate.DidCancel(VisionKit.VNDocumentCameraViewController)
M:VisionKit.IVNDocumentCameraViewControllerDelegate.DidFail(VisionKit.VNDocumentCameraViewController,Foundation.NSError)
M:VisionKit.IVNDocumentCameraViewControllerDelegate.DidFinish(VisionKit.VNDocumentCameraViewController,VisionKit.VNDocumentCameraScan)
@@ -21870,95 +18954,16 @@ M:VisionKit.VNDocumentCameraViewControllerDelegate_Extensions.DidCancel(VisionKi
M:VisionKit.VNDocumentCameraViewControllerDelegate_Extensions.DidFail(VisionKit.IVNDocumentCameraViewControllerDelegate,VisionKit.VNDocumentCameraViewController,Foundation.NSError)
M:VisionKit.VNDocumentCameraViewControllerDelegate_Extensions.DidFinish(VisionKit.IVNDocumentCameraViewControllerDelegate,VisionKit.VNDocumentCameraViewController,VisionKit.VNDocumentCameraScan)
M:WatchConnectivity.WCSession.Dispose(System.Boolean)
-M:WebKit.DomEventTarget.Copy(Foundation.NSZone)
-M:WebKit.DomNode.Copy(Foundation.NSZone)
-M:WebKit.DomObject.Copy(Foundation.NSZone)
-M:WebKit.IDomEventListener.HandleEvent(WebKit.DomEvent)
-M:WebKit.IDomEventTarget.AddEventListener(System.String,WebKit.IDomEventListener,System.Boolean)
-M:WebKit.IDomEventTarget.DispatchEvent(WebKit.DomEvent)
-M:WebKit.IDomEventTarget.RemoveEventListener(System.String,WebKit.IDomEventListener,System.Boolean)
-M:WebKit.IDomNodeFilter.AcceptNode(WebKit.DomNode)
-M:WebKit.IWebDocumentRepresentation.FinishedLoading(WebKit.WebDataSource)
-M:WebKit.IWebDocumentRepresentation.ReceivedData(Foundation.NSData,WebKit.WebDataSource)
-M:WebKit.IWebDocumentRepresentation.ReceivedError(Foundation.NSError,WebKit.WebDataSource)
-M:WebKit.IWebDocumentRepresentation.SetDataSource(WebKit.WebDataSource)
-M:WebKit.IWebDownloadDelegate.OnDownloadWindowForSheet(WebKit.WebDownload)
-M:WebKit.IWebFrameLoadDelegate.CanceledClientRedirect(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.ChangedLocationWithinPage(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.ClearedWindowObject(WebKit.WebView,WebKit.WebScriptObject,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.CommitedLoad(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.DidCreateJavaScriptContext(WebKit.WebView,JavaScriptCore.JSContext,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.FailedLoadWithError(WebKit.WebView,Foundation.NSError,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.FailedProvisionalLoad(WebKit.WebView,Foundation.NSError,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.FinishedLoad(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.ReceivedIcon(WebKit.WebView,AppKit.NSImage,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.ReceivedServerRedirectForProvisionalLoad(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.ReceivedTitle(WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.StartedProvisionalLoad(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.WillCloseFrame(WebKit.WebView,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.WillPerformClientRedirect(WebKit.WebView,Foundation.NSUrl,System.Double,Foundation.NSDate,WebKit.WebFrame)
-M:WebKit.IWebFrameLoadDelegate.WindowScriptObjectAvailable(WebKit.WebView,WebKit.WebScriptObject)
M:WebKit.IWebOpenPanelResultListener.Cancel
M:WebKit.IWebOpenPanelResultListener.ChooseFilename(System.String)
M:WebKit.IWebOpenPanelResultListener.ChooseFilenames(System.String[])
M:WebKit.IWebPolicyDecisionListener.Download
M:WebKit.IWebPolicyDecisionListener.Ignore
M:WebKit.IWebPolicyDecisionListener.Use
-M:WebKit.IWebPolicyDelegate.DecidePolicyForMimeType(WebKit.WebView,System.String,Foundation.NSUrlRequest,WebKit.WebFrame,Foundation.NSObject)
-M:WebKit.IWebPolicyDelegate.DecidePolicyForNavigation(WebKit.WebView,Foundation.NSDictionary,Foundation.NSUrlRequest,WebKit.WebFrame,Foundation.NSObject)
-M:WebKit.IWebPolicyDelegate.DecidePolicyForNewWindow(WebKit.WebView,Foundation.NSDictionary,Foundation.NSUrlRequest,System.String,Foundation.NSObject)
-M:WebKit.IWebPolicyDelegate.UnableToImplementPolicy(WebKit.WebView,Foundation.NSError,WebKit.WebFrame)
-M:WebKit.IWebResourceLoadDelegate.OnCancelledAuthenticationChallenge(WebKit.WebView,Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource)
-M:WebKit.IWebResourceLoadDelegate.OnFailedLoading(WebKit.WebView,Foundation.NSObject,Foundation.NSError,WebKit.WebDataSource)
-M:WebKit.IWebResourceLoadDelegate.OnFinishedLoading(WebKit.WebView,Foundation.NSObject,WebKit.WebDataSource)
-M:WebKit.IWebResourceLoadDelegate.OnIdentifierForInitialRequest(WebKit.WebView,Foundation.NSUrlRequest,WebKit.WebDataSource)
-M:WebKit.IWebResourceLoadDelegate.OnPlugInFailed(WebKit.WebView,Foundation.NSError,WebKit.WebDataSource)
-M:WebKit.IWebResourceLoadDelegate.OnReceivedAuthenticationChallenge(WebKit.WebView,Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource)
M:WebKit.IWebResourceLoadDelegate.OnReceivedContentLength(WebKit.WebView,Foundation.NSObject,System.IntPtr,WebKit.WebDataSource)
-M:WebKit.IWebResourceLoadDelegate.OnReceivedResponse(WebKit.WebView,Foundation.NSObject,Foundation.NSUrlResponse,WebKit.WebDataSource)
-M:WebKit.IWebResourceLoadDelegate.OnSendRequest(WebKit.WebView,Foundation.NSObject,Foundation.NSUrlRequest,Foundation.NSUrlResponse,WebKit.WebDataSource)
-M:WebKit.IWebUIDelegate.UIAreToolbarsVisible(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIClose(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UICreateModalDialog(WebKit.WebView,Foundation.NSUrlRequest)
-M:WebKit.IWebUIDelegate.UICreateWebView(WebKit.WebView,Foundation.NSUrlRequest)
-M:WebKit.IWebUIDelegate.UIDragSourceActionMask(WebKit.WebView,CoreGraphics.CGPoint)
-M:WebKit.IWebUIDelegate.UIDrawFooterInRect(WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.IWebUIDelegate.UIDrawHeaderInRect(WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.IWebUIDelegate.UIFocus(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIGetContentRect(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIGetContextMenuItems(WebKit.WebView,Foundation.NSDictionary,AppKit.NSMenuItem[])
M:WebKit.IWebUIDelegate.UIGetDragDestinationActionMask(WebKit.WebView,AppKit.INSDraggingInfo)
-M:WebKit.IWebUIDelegate.UIGetFirstResponder(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIGetFooterHeight(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIGetFrame(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIGetHeaderHeight(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIGetStatusText(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIIsResizable(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIIsStatusBarVisible(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIMakeFirstResponder(WebKit.WebView,AppKit.NSResponder)
-M:WebKit.IWebUIDelegate.UIMouseDidMoveOverElement(WebKit.WebView,Foundation.NSDictionary,AppKit.NSEventModifierMask)
-M:WebKit.IWebUIDelegate.UIPrintFrameView(WebKit.WebView,WebKit.WebFrameView)
-M:WebKit.IWebUIDelegate.UIRunBeforeUnload(WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.IWebUIDelegate.UIRunJavaScriptAlertPanel(WebKit.WebView,System.String)
-M:WebKit.IWebUIDelegate.UIRunJavaScriptAlertPanelMessage(WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.IWebUIDelegate.UIRunJavaScriptConfirmationPanel(WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.IWebUIDelegate.UIRunJavaScriptConfirmPanel(WebKit.WebView,System.String)
-M:WebKit.IWebUIDelegate.UIRunJavaScriptTextInputPanel(WebKit.WebView,System.String,System.String)
-M:WebKit.IWebUIDelegate.UIRunJavaScriptTextInputPanelWithFrame(WebKit.WebView,System.String,System.String,WebKit.WebFrame)
-M:WebKit.IWebUIDelegate.UIRunModal(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIRunOpenPanelForFileButton(WebKit.WebView,WebKit.IWebOpenPanelResultListener)
-M:WebKit.IWebUIDelegate.UISetContentRect(WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.IWebUIDelegate.UISetFrame(WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.IWebUIDelegate.UISetResizable(WebKit.WebView,System.Boolean)
-M:WebKit.IWebUIDelegate.UISetStatusBarVisible(WebKit.WebView,System.Boolean)
-M:WebKit.IWebUIDelegate.UISetStatusText(WebKit.WebView,System.String)
-M:WebKit.IWebUIDelegate.UISetToolbarsVisible(WebKit.WebView,System.Boolean)
M:WebKit.IWebUIDelegate.UIShouldPerformAction(WebKit.WebView,ObjCRuntime.Selector,Foundation.NSObject)
-M:WebKit.IWebUIDelegate.UIShow(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIUnfocus(WebKit.WebView)
-M:WebKit.IWebUIDelegate.UIValidateUserInterfaceItem(WebKit.WebView,Foundation.NSObject,System.Boolean)
M:WebKit.IWebUIDelegate.UIWillPerformDragDestination(WebKit.WebView,WebKit.WebDragDestinationAction,AppKit.INSDraggingInfo)
-M:WebKit.IWebUIDelegate.UIWillPerformDragSource(WebKit.WebView,WebKit.WebDragSourceAction,CoreGraphics.CGPoint,AppKit.NSPasteboard)
M:WebKit.IWKDownloadDelegate.DecideDestination(WebKit.WKDownload,Foundation.NSUrlResponse,System.String,System.Action{Foundation.NSUrl})
M:WebKit.IWKDownloadDelegate.DecidePlaceholderPolicy(WebKit.WKDownload,WebKit.WKDownloadDelegateDecidePlaceholderPolicyCallback)
M:WebKit.IWKDownloadDelegate.DidFail(WebKit.WKDownload,Foundation.NSError,Foundation.NSData)
@@ -21972,7 +18977,6 @@ M:WebKit.IWKNavigationDelegate.NavigationActionDidBecomeDownload(WebKit.WKWebVie
M:WebKit.IWKNavigationDelegate.NavigationResponseDidBecomeDownload(WebKit.WKWebView,WebKit.WKNavigationResponse,WebKit.WKDownload)
M:WebKit.IWKNavigationDelegate.ShouldAllowDeprecatedTls(WebKit.WKWebView,Foundation.NSUrlAuthenticationChallenge,System.Action{System.Boolean})
M:WebKit.IWKNavigationDelegate.ShouldGoToBackForwardListItem(WebKit.WKWebView,WebKit.WKBackForwardListItem,System.Boolean,WebKit.WKNavigationDelegateShouldGoToBackForwardListItemCallback)
-M:WebKit.IWKScriptMessageHandler.DidReceiveScriptMessage(WebKit.WKUserContentController,WebKit.WKScriptMessage)
M:WebKit.IWKScriptMessageHandlerWithReply.DidReceiveScriptMessage(WebKit.WKUserContentController,WebKit.WKScriptMessage,System.Action{Foundation.NSObject,Foundation.NSString})
M:WebKit.IWKUIDelegate.ContextMenuDidEnd(WebKit.WKWebView,WebKit.WKContextMenuElementInfo)
M:WebKit.IWKUIDelegate.ContextMenuWillPresent(WebKit.WKWebView,WebKit.WKContextMenuElementInfo)
@@ -21980,19 +18984,12 @@ M:WebKit.IWKUIDelegate.RequestDeviceOrientationAndMotionPermission(WebKit.WKWebV
M:WebKit.IWKUIDelegate.RequestDeviceOrientationAndMotionPermissionAsync(WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo)
M:WebKit.IWKUIDelegate.RequestMediaCapturePermission(WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,WebKit.WKMediaCaptureType,System.Action{WebKit.WKPermissionDecision})
M:WebKit.IWKUIDelegate.RequestMediaCapturePermissionAsync(WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,WebKit.WKMediaCaptureType)
-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.ShowLockDownMode(WebKit.WKWebView,System.String,System.Action{WebKit.WKDialogResult})
M:WebKit.IWKUIDelegate.ShowLockDownModeAsync(WebKit.WKWebView,System.String)
M:WebKit.IWKUIDelegate.WillCommitContextMenu(WebKit.WKWebView,WebKit.WKContextMenuElementInfo,UIKit.IUIContextMenuInteractionCommitAnimating)
M:WebKit.IWKUIDelegate.WillDismissEditMenu(WebKit.WKWebView,UIKit.IUIEditMenuInteractionAnimating)
M:WebKit.IWKUIDelegate.WillPresentEditMenu(WebKit.WKWebView,UIKit.IUIEditMenuInteractionAnimating)
-M:WebKit.IWKUrlSchemeHandler.StartUrlSchemeTask(WebKit.WKWebView,WebKit.IWKUrlSchemeTask)
-M:WebKit.IWKUrlSchemeHandler.StopUrlSchemeTask(WebKit.WKWebView,WebKit.IWKUrlSchemeTask)
-M:WebKit.IWKUrlSchemeTask.DidFailWithError(Foundation.NSError)
-M:WebKit.IWKUrlSchemeTask.DidFinish
-M:WebKit.IWKUrlSchemeTask.DidReceiveData(Foundation.NSData)
-M:WebKit.IWKUrlSchemeTask.DidReceiveResponse(Foundation.NSUrlResponse)
M:WebKit.IWKWebExtensionControllerDelegate.Connect(WebKit.WKWebExtensionController,WebKit.WKWebExtensionMessagePort,WebKit.WKWebExtensionContext,WebKit.WKWebExtensionControllerDelegateConnectCallback)
M:WebKit.IWKWebExtensionControllerDelegate.ConnectAsync(WebKit.WKWebExtensionController,WebKit.WKWebExtensionMessagePort,WebKit.WKWebExtensionContext)
M:WebKit.IWKWebExtensionControllerDelegate.DidUpdateAction(WebKit.WKWebExtensionController,WebKit.WKWebExtensionAction,WebKit.WKWebExtensionContext)
@@ -22073,80 +19070,10 @@ M:WebKit.IWKWebExtensionWindow.SetFrame(CoreGraphics.CGRect,WebKit.WKWebExtensio
M:WebKit.IWKWebExtensionWindow.SetFrameAsync(CoreGraphics.CGRect,WebKit.WKWebExtensionContext)
M:WebKit.IWKWebExtensionWindow.SetWindowState(WebKit.WKWebExtensionWindowState,WebKit.WKWebExtensionContext,WebKit.WKWebExtensionWindowCallback)
M:WebKit.IWKWebExtensionWindow.SetWindowStateAsync(WebKit.WKWebExtensionWindowState,WebKit.WKWebExtensionContext)
-M:WebKit.WebArchive.Copy(Foundation.NSZone)
-M:WebKit.WebDownloadDelegate_Extensions.OnDownloadWindowForSheet(WebKit.IWebDownloadDelegate,WebKit.WebDownload)
-M:WebKit.WebFrameLoadDelegate_Extensions.CanceledClientRedirect(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.ChangedLocationWithinPage(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.ClearedWindowObject(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebScriptObject,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.CommitedLoad(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.DidCreateJavaScriptContext(WebKit.IWebFrameLoadDelegate,WebKit.WebView,JavaScriptCore.JSContext,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.FailedLoadWithError(WebKit.IWebFrameLoadDelegate,WebKit.WebView,Foundation.NSError,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.FailedProvisionalLoad(WebKit.IWebFrameLoadDelegate,WebKit.WebView,Foundation.NSError,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.FinishedLoad(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.ReceivedIcon(WebKit.IWebFrameLoadDelegate,WebKit.WebView,AppKit.NSImage,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.ReceivedServerRedirectForProvisionalLoad(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.ReceivedTitle(WebKit.IWebFrameLoadDelegate,WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.WebFrameLoadDelegate_Extensions.StartedProvisionalLoad(WebKit.IWebFrameLoadDelegate,WebKit.WebView,WebKit.WebFrame)
-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.WebHistoryItem.Copy(Foundation.NSZone)
-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.WebResource.Copy(Foundation.NSZone)
-M:WebKit.WebResourceLoadDelegate_Extensions.OnCancelledAuthenticationChallenge(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate_Extensions.OnFailedLoading(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSObject,Foundation.NSError,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate_Extensions.OnFinishedLoading(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSObject,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate_Extensions.OnIdentifierForInitialRequest(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSUrlRequest,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate_Extensions.OnPlugInFailed(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSError,WebKit.WebDataSource)
-M:WebKit.WebResourceLoadDelegate_Extensions.OnReceivedAuthenticationChallenge(WebKit.IWebResourceLoadDelegate,WebKit.WebView,Foundation.NSObject,Foundation.NSUrlAuthenticationChallenge,WebKit.WebDataSource)
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.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)
-M:WebKit.WebUIDelegate_Extensions.UICreateWebView(WebKit.IWebUIDelegate,WebKit.WebView,Foundation.NSUrlRequest)
-M:WebKit.WebUIDelegate_Extensions.UIDragSourceActionMask(WebKit.IWebUIDelegate,WebKit.WebView,CoreGraphics.CGPoint)
-M:WebKit.WebUIDelegate_Extensions.UIDrawFooterInRect(WebKit.IWebUIDelegate,WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.WebUIDelegate_Extensions.UIDrawHeaderInRect(WebKit.IWebUIDelegate,WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.WebUIDelegate_Extensions.UIFocus(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIGetContentRect(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIGetContextMenuItems(WebKit.IWebUIDelegate,WebKit.WebView,Foundation.NSDictionary,AppKit.NSMenuItem[])
M:WebKit.WebUIDelegate_Extensions.UIGetDragDestinationActionMask(WebKit.IWebUIDelegate,WebKit.WebView,AppKit.INSDraggingInfo)
-M:WebKit.WebUIDelegate_Extensions.UIGetFirstResponder(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIGetFooterHeight(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIGetFrame(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIGetHeaderHeight(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIGetStatusText(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIIsResizable(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIIsStatusBarVisible(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIMakeFirstResponder(WebKit.IWebUIDelegate,WebKit.WebView,AppKit.NSResponder)
-M:WebKit.WebUIDelegate_Extensions.UIMouseDidMoveOverElement(WebKit.IWebUIDelegate,WebKit.WebView,Foundation.NSDictionary,AppKit.NSEventModifierMask)
-M:WebKit.WebUIDelegate_Extensions.UIPrintFrameView(WebKit.IWebUIDelegate,WebKit.WebView,WebKit.WebFrameView)
-M:WebKit.WebUIDelegate_Extensions.UIRunBeforeUnload(WebKit.IWebUIDelegate,WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.WebUIDelegate_Extensions.UIRunJavaScriptAlertPanel(WebKit.IWebUIDelegate,WebKit.WebView,System.String)
-M:WebKit.WebUIDelegate_Extensions.UIRunJavaScriptAlertPanelMessage(WebKit.IWebUIDelegate,WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.WebUIDelegate_Extensions.UIRunJavaScriptConfirmationPanel(WebKit.IWebUIDelegate,WebKit.WebView,System.String,WebKit.WebFrame)
-M:WebKit.WebUIDelegate_Extensions.UIRunJavaScriptConfirmPanel(WebKit.IWebUIDelegate,WebKit.WebView,System.String)
-M:WebKit.WebUIDelegate_Extensions.UIRunJavaScriptTextInputPanel(WebKit.IWebUIDelegate,WebKit.WebView,System.String,System.String)
-M:WebKit.WebUIDelegate_Extensions.UIRunJavaScriptTextInputPanelWithFrame(WebKit.IWebUIDelegate,WebKit.WebView,System.String,System.String,WebKit.WebFrame)
-M:WebKit.WebUIDelegate_Extensions.UIRunModal(WebKit.IWebUIDelegate,WebKit.WebView)
-M:WebKit.WebUIDelegate_Extensions.UIRunOpenPanelForFileButton(WebKit.IWebUIDelegate,WebKit.WebView,WebKit.IWebOpenPanelResultListener)
-M:WebKit.WebUIDelegate_Extensions.UISetContentRect(WebKit.IWebUIDelegate,WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.WebUIDelegate_Extensions.UISetFrame(WebKit.IWebUIDelegate,WebKit.WebView,CoreGraphics.CGRect)
-M:WebKit.WebUIDelegate_Extensions.UISetResizable(WebKit.IWebUIDelegate,WebKit.WebView,System.Boolean)
-M:WebKit.WebUIDelegate_Extensions.UISetStatusBarVisible(WebKit.IWebUIDelegate,WebKit.WebView,System.Boolean)
-M:WebKit.WebUIDelegate_Extensions.UISetStatusText(WebKit.IWebUIDelegate,WebKit.WebView,System.String)
-M:WebKit.WebUIDelegate_Extensions.UISetToolbarsVisible(WebKit.IWebUIDelegate,WebKit.WebView,System.Boolean)
M:WebKit.WebUIDelegate_Extensions.UIShouldPerformAction(WebKit.IWebUIDelegate,WebKit.WebView,ObjCRuntime.Selector,Foundation.NSObject)
-M:WebKit.WebUIDelegate_Extensions.UIShow(WebKit.IWebUIDelegate,WebKit.WebView)
-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.WebView.add_CanceledClientRedirect(System.EventHandler{WebKit.WebFrameEventArgs})
M:WebKit.WebView.add_ChangedLocationWithinPage(System.EventHandler{WebKit.WebFrameEventArgs})
M:WebKit.WebView.add_ClearedWindowObject(System.EventHandler{WebKit.WebFrameScriptFrameEventArgs})
@@ -22242,7 +19169,6 @@ 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.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
M:WebKit.WKContentRuleListStore.GetAvailableContentRuleListIdentifiersAsync
M:WebKit.WKDownload.CancelAsync
M:WebKit.WKDownload.Dispose(System.Boolean)
@@ -22253,9 +19179,6 @@ 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.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.GetAllCookiesAsync
M:WebKit.WKHttpCookieStore.GetCookiePolicyAsync
@@ -22266,24 +19189,19 @@ M:WebKit.WKNavigationDelegate_Extensions.NavigationResponseDidBecomeDownload(Web
M:WebKit.WKNavigationDelegate_Extensions.ShouldAllowDeprecatedTls(WebKit.IWKNavigationDelegate,WebKit.WKWebView,Foundation.NSUrlAuthenticationChallenge,System.Action{System.Boolean})
M:WebKit.WKNavigationDelegate_Extensions.ShouldGoToBackForwardListItem(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKBackForwardListItem,System.Boolean,WebKit.WKNavigationDelegateShouldGoToBackForwardListItemCallback)
M:WebKit.WKNavigationDelegate.ShouldGoToBackForwardListItem(WebKit.WKWebView,WebKit.WKBackForwardListItem,System.Boolean,WebKit.WKNavigationDelegateShouldGoToBackForwardListItemCallback)
-M:WebKit.WKPdfConfiguration.Copy(Foundation.NSZone)
-M:WebKit.WKPreviewElementInfo.Copy(Foundation.NSZone)
M:WebKit.WKScriptMessage.Dispose(System.Boolean)
-M:WebKit.WKSnapshotConfiguration.Copy(Foundation.NSZone)
M:WebKit.WKUIDelegate_Extensions.ContextMenuDidEnd(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKContextMenuElementInfo)
M:WebKit.WKUIDelegate_Extensions.ContextMenuWillPresent(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKContextMenuElementInfo)
M:WebKit.WKUIDelegate_Extensions.RequestDeviceOrientationAndMotionPermission(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,System.Action{WebKit.WKPermissionDecision})
M:WebKit.WKUIDelegate_Extensions.RequestDeviceOrientationAndMotionPermissionAsync(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo)
M:WebKit.WKUIDelegate_Extensions.RequestMediaCapturePermission(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,WebKit.WKMediaCaptureType,System.Action{WebKit.WKPermissionDecision})
M:WebKit.WKUIDelegate_Extensions.RequestMediaCapturePermissionAsync(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,WebKit.WKMediaCaptureType)
-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.ShowLockDownMode(WebKit.IWKUIDelegate,WebKit.WKWebView,System.String,System.Action{WebKit.WKDialogResult})
M:WebKit.WKUIDelegate_Extensions.ShowLockDownModeAsync(WebKit.IWKUIDelegate,WebKit.WKWebView,System.String)
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.WKUserScript.Copy(Foundation.NSZone)
M:WebKit.WKWebExtension.CreateAsync(Foundation.NSBundle)
M:WebKit.WKWebExtension.CreateAsync(Foundation.NSUrl)
M:WebKit.WKWebExtensionAction.Dispose(System.Boolean)
@@ -22300,10 +19218,8 @@ M:WebKit.WKWebExtensionController.FetchDataRecordsAsync(WebKit.WKWebExtensionDat
M:WebKit.WKWebExtensionController.RemoveData(WebKit.WKWebExtensionDataType,WebKit.WKWebExtensionDataRecord[],System.Action)
M:WebKit.WKWebExtensionController.RemoveDataAsync(Foundation.NSSet{Foundation.NSString},WebKit.WKWebExtensionDataRecord[])
M:WebKit.WKWebExtensionController.RemoveDataAsync(WebKit.WKWebExtensionDataType,WebKit.WKWebExtensionDataRecord[])
-M:WebKit.WKWebExtensionControllerConfiguration.Copy(Foundation.NSZone)
M:WebKit.WKWebExtensionDataRecord.GetSizeInBytes(WebKit.WKWebExtensionDataType)
M:WebKit.WKWebExtensionDataTypeExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
-M:WebKit.WKWebExtensionMatchPattern.Copy(Foundation.NSZone)
M:WebKit.WKWebExtensionMessagePort.SendMessageAsync(Foundation.NSObject)
M:WebKit.WKWebExtensionPermissionExtensions.ToFlags(System.Collections.Generic.IEnumerable{Foundation.NSString})
M:WebKit.WKWebsiteDataStore.FetchAllDataStoreIdentifiersAsync
@@ -22321,9 +19237,7 @@ M:WebKit.WKWebView.SetAllMediaPlaybackSuspendedAsync(System.Boolean)
M:WebKit.WKWebView.SetCameraCaptureStateAsync(WebKit.WKMediaCaptureState)
M:WebKit.WKWebView.SetMicrophoneCaptureStateAsync(WebKit.WKMediaCaptureState)
M:WebKit.WKWebView.StartDownloadAsync(Foundation.NSUrlRequest)
-M:WebKit.WKWebView.ValidateUserInterfaceItem(AppKit.INSValidatedUserInterfaceItem)
M:WebKit.WKWebView.WKWebViewAppearance.#ctor(System.IntPtr)
-M:WebKit.WKWebViewConfiguration.Copy(Foundation.NSZone)
P:Accessibility.AXAnimatedImagesUtilities.AnimatedImagesEnabledDidChangeNotification
P:Accessibility.AXAnimatedImagesUtilities.Enabled
P:Accessibility.AXHearingUtilities.PairedUUIDsDidChangeNotification
@@ -22580,10 +19494,8 @@ P:AppKit.INSTextInputTraits.SpellCheckingType
P:AppKit.INSTextInputTraits.TextCompletionType
P:AppKit.INSTextInputTraits.TextReplacementType
P:AppKit.INSTextInputTraits.WritingToolsBehavior
-P:AppKit.INSTextLayoutOrientationProvider.LayoutOrientation
P:AppKit.INSTextSelectionDataSource.DocumentRange
P:AppKit.INSTextStorageObserving.TextStorage
-P:AppKit.INSTouchBarProvider.TouchBar
P:AppKit.INSUserInterfaceCompression.ActiveCompressionOptions
P:AppKit.INSUserInterfaceItemIdentification.Identifier
P:AppKit.INSValidatedUserInterfaceItem.Action
@@ -23366,7 +20278,6 @@ P:ARKit.ARWorldTrackingConfiguration.CollaborationEnabled
P:ARKit.GeoLocationForPoint.Altitude
P:ARKit.GeoLocationForPoint.Coordinate
P:ARKit.IARSessionProviding.Session
-P:ARKit.IARTrackable.IsTracked
P:AudioToolbox.AudioBuffers.Item(System.Int32)
P:AudioToolbox.AudioFileMarkerList.Item(System.Int32)
P:AudioToolbox.AudioFileRegion.Item(System.Int32)
@@ -24004,14 +20915,12 @@ P:AVFoundation.AVPlayerPlaybackCoordinator.Delegate
P:AVFoundation.AVPlayerRateDidChangeEventArgs.RateDidChangeOriginatingParticipant
P:AVFoundation.AVPlayerRateDidChangeEventArgs.RateDidChangeStringReason
P:AVFoundation.AVSampleBufferAudioRenderer.ConfigurationDidChangeNotification
-P:AVFoundation.AVSampleBufferAudioRenderer.ReadyForMoreMediaData
P:AVFoundation.AVSampleBufferDisplayLayer.DisplayLayerReadyForDisplayDidChangeNotification
P:AVFoundation.AVSampleBufferDisplayLayer.OutputObscuredDueToInsufficientExternalProtectionDidChangeNotification
P:AVFoundation.AVSampleBufferDisplayLayer.ReadyForDisplay
P:AVFoundation.AVSampleBufferDisplayLayer.RequiresFlushToResumeDecodingDidChangeNotification
P:AVFoundation.AVSampleBufferVideoRenderer.AVSampleBufferVideoRendererDidFailToDecodeNotification
P:AVFoundation.AVSampleBufferVideoRenderer.AVSampleBufferVideoRendererDidFailToDecodeNotificationErrorKey
-P:AVFoundation.AVSampleBufferVideoRenderer.ReadyForMoreMediaData
P:AVFoundation.AVSampleBufferVideoRenderer.RequiresFlushToResumeDecodingDidChangeNotification
P:AVFoundation.AVSampleCursor.CurrentSampleDependencyInfo2
P:AVFoundation.AVSampleCursorAudioDependencyInfo.IsIndependentlyDecodable
@@ -24057,14 +20966,8 @@ P:AVFoundation.AVVideoTransferFunction.Linear
P:AVFoundation.AVVideoTransferFunction.Smpte_240M_1995
P:AVFoundation.AVVideoTransferFunction.Smpte_St_2084_Pq
P:AVFoundation.IAVAudio3DMixing.PointSourceInHeadMode
-P:AVFoundation.IAVAudio3DMixing.Position
-P:AVFoundation.IAVAudio3DMixing.Rate
P:AVFoundation.IAVAudio3DMixing.SourceMode
-P:AVFoundation.IAVAudioMixing.Volume
-P:AVFoundation.IAVContentKeyRecipient.MayRequireContentKeysForMediaDataProcessing
P:AVFoundation.IAVQueuedSampleBufferRendering.HasSufficientMediaDataForReliablePlaybackStart
-P:AVFoundation.IAVQueuedSampleBufferRendering.ReadyForMoreMediaData
-P:AVFoundation.IAVQueuedSampleBufferRendering.Timebase
P:AVFoundation.IAVVideoCompositing.CanConformColorOfSourceFrames
P:AVFoundation.IAVVideoCompositing.SupportsHdrSourceFrames
P:AVFoundation.IAVVideoCompositing.SupportsWideColorSourceFrames
@@ -24072,7 +20975,6 @@ P:AVFoundation.MicrophoneInjectionCapabilitiesChangeEventArgs.IsAvailable
P:AVFoundation.RenderingModeChangeNotificationEventArgs.NewRenderingMode
P:AVFoundation.SpatialPlaybackCapabilitiesChangedEventArgs.SpatialAudioEnabledKey
P:AVKit.AVCaptureEventInteraction.Enabled
-P:AVKit.AVCaptureEventInteraction.View
P:AVKit.AVContinuityDevicePickerViewController.Delegate
P:AVKit.AVContinuityDevicePickerViewController.Supported
P:AVKit.AVDisplayManager.DisplayCriteriaMatchingEnabled
@@ -24126,7 +21028,6 @@ P:BrowserEngineKit.BEKeyEntryContext.DocumentEditable
P:BrowserEngineKit.BEScrollView.Delegate
P:BrowserEngineKit.BETextInteraction.ContextMenuInteractionDelegate
P:BrowserEngineKit.BETextInteraction.Delegate
-P:BrowserEngineKit.BETextInteraction.View
P:BrowserEngineKit.IBEExtendedTextInputTraits.InsertionPointColor
P:BrowserEngineKit.IBEExtendedTextInputTraits.SelectionHandleColor
P:BrowserEngineKit.IBEExtendedTextInputTraits.SelectionHighlightColor
@@ -24181,8 +21082,6 @@ P:CarPlay.CPTemplateApplicationInstrumentClusterScene.SessionRoleApplication
P:CarPlay.CPTemplateApplicationScene.Delegate
P:CarPlay.CPTemplateApplicationScene.SessionRoleApplication
P:CarPlay.ICPBarButtonProviding.BackButton
-P:CarPlay.ICPBarButtonProviding.LeadingNavigationBarButtons
-P:CarPlay.ICPBarButtonProviding.TrailingNavigationBarButtons
P:CarPlay.ICPListTemplateItem.Enabled
P:CarPlay.ICPListTemplateItem.Text
P:CarPlay.ICPListTemplateItem.UserInfo
@@ -24428,7 +21327,6 @@ P:Contacts.CNLabelPhoneNumberKey.AppleWatch
P:CoreAnimation.CAAnimation.PreferredFrameRateRange
P:CoreAnimation.CAAnimationStateEventArgs.Finished
P:CoreAnimation.CADisplayLink.PreferredFrameRateRange
-P:CoreAnimation.CAEAGLLayer.DrawableProperties
P:CoreAnimation.CAEdrMetadata.Available
P:CoreAnimation.CAEdrMetadata.HlgMetadata
P:CoreAnimation.CAFrameRateRange.Default
@@ -24453,9 +21351,6 @@ P:CoreAnimation.CAScrollLayer.WeakScrollMode
P:CoreAnimation.CASpringAnimation.AllowsOverdamping
P:CoreAnimation.CASpringAnimation.Bounce
P:CoreAnimation.CASpringAnimation.PerceptualDuration
-P:CoreAnimation.ICAMetalDrawable.Layer
-P:CoreAnimation.ICAMetalDrawable.Texture
-P:CoreAudioKit.IAUCustomViewPersistentData.CustomViewPersistentData
P:CoreBluetooth.CBAncsAuthorizationUpdateEventArgs.Peripheral
P:CoreBluetooth.CBATTRequestEventArgs.Request
P:CoreBluetooth.CBATTRequestsEventArgs.Requests
@@ -26016,24 +22911,11 @@ P:CoreImage.ICIHueSaturationValueGradientProtocol.Dither
P:CoreImage.ICIHueSaturationValueGradientProtocol.Radius
P:CoreImage.ICIHueSaturationValueGradientProtocol.Softness
P:CoreImage.ICIHueSaturationValueGradientProtocol.Value
-P:CoreImage.ICIImageProcessorInput.BaseAddress
-P:CoreImage.ICIImageProcessorInput.BytesPerRow
P:CoreImage.ICIImageProcessorInput.Digest
-P:CoreImage.ICIImageProcessorInput.Format
-P:CoreImage.ICIImageProcessorInput.MetalTexture
-P:CoreImage.ICIImageProcessorInput.PixelBuffer
-P:CoreImage.ICIImageProcessorInput.Region
P:CoreImage.ICIImageProcessorInput.RoiTileCount
P:CoreImage.ICIImageProcessorInput.RoiTileIndex
P:CoreImage.ICIImageProcessorInput.Surface
-P:CoreImage.ICIImageProcessorOutput.BaseAddress
-P:CoreImage.ICIImageProcessorOutput.BytesPerRow
P:CoreImage.ICIImageProcessorOutput.Digest
-P:CoreImage.ICIImageProcessorOutput.Format
-P:CoreImage.ICIImageProcessorOutput.MetalCommandBuffer
-P:CoreImage.ICIImageProcessorOutput.MetalTexture
-P:CoreImage.ICIImageProcessorOutput.PixelBuffer
-P:CoreImage.ICIImageProcessorOutput.Region
P:CoreImage.ICIImageProcessorOutput.Surface
P:CoreImage.ICIKaleidoscopeProtocol.Angle
P:CoreImage.ICIKaleidoscopeProtocol.InputCenter
@@ -26542,14 +23424,10 @@ P:CoreMidi.MidiUmpFunctionBlock.WasUpdatedNotification
P:CoreMidi.MidiUmpMutableEndpoint.IsEnabled
P:CoreMidi.MidiUmpMutableEndpoint.MutableFunctionBlocks
P:CoreMidi.MidiUmpMutableFunctionBlock.UmpEndpoint
-P:CoreML.IMLBatchProvider.Count
-P:CoreML.IMLFeatureProvider.FeatureNames
-P:CoreML.MLArrayBatchProvider.Count
P:CoreML.MLComputePlan.ModelStructure
P:CoreML.MLComputePlanCost.Weight
P:CoreML.MLComputePlanDeviceUsage.PreferredComputeDevice
P:CoreML.MLComputePlanDeviceUsage.SupportedComputeDevices
-P:CoreML.MLDictionaryFeatureProvider.FeatureNames
P:CoreML.MLDictionaryFeatureProvider.Item(System.String)
P:CoreML.MLFeatureDescription.StateConstraint
P:CoreML.MLFeatureValueImageOption.CropAndScale
@@ -26713,9 +23591,6 @@ P:CoreMotion.CMWaterTemperature.Temperature
P:CoreMotion.CMWaterTemperature.TemperatureUncertainty
P:CoreNFC.INFCFeliCaTag.CurrentIdm
P:CoreNFC.INFCFeliCaTag.CurrentSystemCode
-P:CoreNFC.INFCIso15693Tag.IcManufacturerCode
-P:CoreNFC.INFCIso15693Tag.IcSerialNumber
-P:CoreNFC.INFCIso15693Tag.Identifier
P:CoreNFC.INFCIso7816Tag.ApplicationData
P:CoreNFC.INFCIso7816Tag.HistoricalBytes
P:CoreNFC.INFCIso7816Tag.Identifier
@@ -26725,15 +23600,10 @@ P:CoreNFC.INFCMiFareTag.HistoricalBytes
P:CoreNFC.INFCMiFareTag.Identifier
P:CoreNFC.INFCMiFareTag.MifareFamily
P:CoreNFC.INFCNdefTag.Available
-P:CoreNFC.INFCReaderSessionContract.AlertMessage
-P:CoreNFC.INFCReaderSessionContract.Ready
P:CoreNFC.INFCTag.AsNFCFeliCaTag
P:CoreNFC.INFCTag.AsNFCIso15693Tag
P:CoreNFC.INFCTag.AsNFCIso7816Tag
P:CoreNFC.INFCTag.AsNFCMiFareTag
-P:CoreNFC.INFCTag.Available
-P:CoreNFC.INFCTag.Session
-P:CoreNFC.INFCTag.Type
P:CoreNFC.NFCIso7816Apdu.Data
P:CoreNFC.NFCIso7816Apdu.ExpectedResponseLength
P:CoreNFC.NFCIso7816Apdu.InstructionClass
@@ -26742,9 +23612,7 @@ P:CoreNFC.NFCIso7816Apdu.P1Parameter
P:CoreNFC.NFCIso7816Apdu.P2Parameter
P:CoreNFC.NFCNdefMessage.Length
P:CoreNFC.NFCNdefPayload.WellKnownTypeUriPayload
-P:CoreNFC.NFCReaderSession.AlertMessage
P:CoreNFC.NFCReaderSession.ReadingAvailable
-P:CoreNFC.NFCReaderSession.Ready
P:CoreNFC.NFCTagReaderSession.ConnectedTag
P:CoreNFC.NFCTagReaderSession.UnexpectedLengthErrorKey
P:CoreNFC.NFCVasCommandConfiguration.Mode
@@ -26938,19 +23806,14 @@ P:FileProvider.INSFileProviderDomainState.DomainVersion
P:FileProvider.INSFileProviderDomainState.UserInfo
P:FileProvider.INSFileProviderItem.ContentPolicy
P:FileProvider.INSFileProviderItem.ExtendedAttributes
-P:FileProvider.INSFileProviderItem.Filename
P:FileProvider.INSFileProviderItem.FileSystemFlags
-P:FileProvider.INSFileProviderItem.Identifier
P:FileProvider.INSFileProviderItem.ItemVersion
-P:FileProvider.INSFileProviderItem.ParentIdentifier
P:FileProvider.INSFileProviderItem.SymlinkTargetPath
P:FileProvider.INSFileProviderItem.TypeAndCreator
-P:FileProvider.INSFileProviderItem.TypeIdentifier
P:FileProvider.INSFileProviderPendingSetEnumerator.DomainVersion
P:FileProvider.INSFileProviderPendingSetEnumerator.MaximumSizeReached
P:FileProvider.INSFileProviderPendingSetEnumerator.RefreshInterval
P:FileProvider.INSFileProviderServiceSource.Restricted
-P:FileProvider.INSFileProviderServiceSource.ServiceName
P:FileProvider.INSFileProviderTestingChildrenEnumeration.ItemIdentifier
P:FileProvider.INSFileProviderTestingChildrenEnumeration.Side
P:FileProvider.INSFileProviderTestingCollisionResolution.RenamedItem
@@ -27016,15 +23879,12 @@ P:FinderSync.FIFinderSync.ToolbarItemToolTip
P:FinderSync.IFIFinderSyncProtocol.ToolbarItemImage
P:FinderSync.IFIFinderSyncProtocol.ToolbarItemName
P:FinderSync.IFIFinderSyncProtocol.ToolbarItemToolTip
-P:Foundation.INSDiscardableContent.IsContentDiscarded
P:Foundation.INSFilePresenter.PresentedItemObservedUbiquityAttributes
P:Foundation.INSFilePresenter.PresentedItemOperationQueue
P:Foundation.INSFilePresenter.PresentedItemUrl
P:Foundation.INSFilePresenter.PrimaryPresentedItemUrl
P:Foundation.INSItemProviderWriting.WritableTypeIdentifiersForItemProvider
P:Foundation.INSObjectProtocol.DebugDescription
-P:Foundation.INSObjectProtocol.Description
-P:Foundation.INSObjectProtocol.RetainCount
P:Foundation.INSProgressReporting.Progress
P:Foundation.LoadInPlaceResult.FileUrl
P:Foundation.LoadInPlaceResult.IsInPlace
@@ -27127,7 +23987,6 @@ P:Foundation.NSObject.ChangeNewKey
P:Foundation.NSObject.ChangeNotificationIsPriorKey
P:Foundation.NSObject.ChangeOldKey
P:Foundation.NSObject.ExposedBindings
-P:Foundation.NSObject.RetainCount
P:Foundation.NSObjectEventArgs.Obj
P:Foundation.NSOrderedSet.Item(System.IntPtr)
P:Foundation.NSOrderedSet`1.Item(System.IntPtr)
@@ -27265,7 +24124,6 @@ P:GameController.GCDualShockGamepad.TouchpadButton
P:GameController.GCDualShockGamepad.TouchpadPrimary
P:GameController.GCDualShockGamepad.TouchpadSecondary
P:GameController.GCEventInteraction.HandledEventTypes
-P:GameController.GCEventInteraction.View
P:GameController.GCExtendedGamepad.ButtonHome
P:GameController.GCExtendedGamepad.ButtonMenu
P:GameController.GCExtendedGamepad.ButtonOptions
@@ -27803,10 +24661,6 @@ P:GameplayKit.GKComponentSystem`1.Item(System.UIntPtr)
P:GameplayKit.GKCompositeBehavior.Item(GameplayKit.GKBehavior)
P:GameplayKit.GKCompositeBehavior.Item(System.UIntPtr)
P:GameplayKit.IGKGameModelPlayer.PlayerId
-P:GameplayKit.IGKGameModelUpdate.Value
-P:GameplayKit.IGKStrategist.GameModel
-P:GameplayKit.IGKStrategist.RandomSource
-P:GLKit.GLKMeshBuffer.Map
P:GLKit.GLKViewDrawEventArgs.Rect
P:HealthKit.HKActivitySummary.Paused
P:HealthKit.HKLiveWorkoutBuilder.Delegate
@@ -28084,9 +24938,6 @@ P:ImageKit.IKScannerDeviceViewScanUrlEventArgs.Error
P:ImageKit.IKScannerDeviceViewScanUrlEventArgs.Url
P:ImageKit.IKSlideshow.AutoPlayDelay
P:Intents.IINSpeakable.AlternativeSpeakableMatches
-P:Intents.IINSpeakable.Identifier
-P:Intents.IINSpeakable.PronunciationHint
-P:Intents.IINSpeakable.SpokenPhrase
P:Intents.IINSpeakable.VocabularyIdentifier
P:Intents.INAccountTypeResolutionResult.NeedsValue
P:Intents.INAccountTypeResolutionResult.NotRequired
@@ -28504,9 +25355,6 @@ P:Intents.INNoteResolutionResult.Unsupported
P:Intents.INObject.AlternativeSpeakableMatches
P:Intents.INObject.DisplayImage
P:Intents.INObject.DisplayString
-P:Intents.INObject.Identifier
-P:Intents.INObject.PronunciationHint
-P:Intents.INObject.SpokenPhrase
P:Intents.INObject.SubtitleString
P:Intents.INObject.VocabularyIdentifier
P:Intents.INObjectCollection`1.AllItems
@@ -28575,14 +25423,11 @@ P:Intents.INPerson.ContactIdentifier
P:Intents.INPerson.ContactSuggestion
P:Intents.INPerson.CustomIdentifier
P:Intents.INPerson.DisplayName
-P:Intents.INPerson.Identifier
P:Intents.INPerson.Image
P:Intents.INPerson.IsMe
P:Intents.INPerson.NameComponents
P:Intents.INPerson.PersonHandle
-P:Intents.INPerson.PronunciationHint
P:Intents.INPerson.SiriMatches
-P:Intents.INPerson.SpokenPhrase
P:Intents.INPerson.SuggestionType
P:Intents.INPerson.VocabularyIdentifier
P:Intents.INPerson.WeakRelationship
@@ -28956,9 +25801,6 @@ P:Intents.INSpatialEventTriggerResolutionResult.NeedsValue
P:Intents.INSpatialEventTriggerResolutionResult.NotRequired
P:Intents.INSpatialEventTriggerResolutionResult.Unsupported
P:Intents.INSpeakableString.AlternativeSpeakableMatches
-P:Intents.INSpeakableString.Identifier
-P:Intents.INSpeakableString.PronunciationHint
-P:Intents.INSpeakableString.SpokenPhrase
P:Intents.INSpeakableString.VocabularyIdentifier
P:Intents.INSpeakableStringResolutionResult.NeedsValue
P:Intents.INSpeakableStringResolutionResult.NotRequired
@@ -29182,10 +26024,8 @@ P:MailKit.IMEExtension.HandlerForMessageActions
P:MailKit.IMEExtension.HandlerForMessageSecurity
P:MailKit.IMEMessageActionHandler.RequiredHeaders
P:MailKit.MEDecodedMessageBanner.Dismissable
-P:MapKit.IMKAnnotation.Coordinate
P:MapKit.IMKAnnotation.Subtitle
P:MapKit.IMKAnnotation.Title
-P:MapKit.IMKOverlay.BoundingMapRect
P:MapKit.IMKOverlay.CanReplaceMapContent
P:MapKit.MKAnnotation.CalloutInfoDidChangeNotification
P:MapKit.MKAnnotationEventArgs.Annotation
@@ -29265,18 +26105,12 @@ P:MediaExtension.MERawProcessorFields.ValuesDidChangeNotification
P:MediaExtension.MESampleCursorChunk.ChunkInfo
P:MediaExtension.METrackInfo.Enabled
P:MediaExtension.MEVideoDecoderFields.ReadyForMoreMediaDataDidChangeNotification
-P:MediaPlayer.IMPMediaPlayback.CurrentPlaybackRate
-P:MediaPlayer.IMPMediaPlayback.CurrentPlaybackTime
-P:MediaPlayer.IMPMediaPlayback.IsPreparedToPlay
P:MediaPlayer.ItemsPickedEventArgs.MediaItemCollection
P:MediaPlayer.MPAdTimeRange.TimeRange
P:MediaPlayer.MPMediaEntity.PersistentID
P:MediaPlayer.MPMediaItem.IsPreorder
P:MediaPlayer.MPMediaPlaylist.CloudGlobalId
P:MediaPlayer.MPMediaPlaylistProperty.CloudGlobalId
-P:MediaPlayer.MPMoviePlayerController.CurrentPlaybackRate
-P:MediaPlayer.MPMoviePlayerController.CurrentPlaybackTime
-P:MediaPlayer.MPMoviePlayerController.IsPreparedToPlay
P:MediaPlayer.MPMoviePlayerFinishedEventArgs.FinishReason
P:MediaPlayer.MPMoviePlayerFullScreenEventArgs.AnimationCurve
P:MediaPlayer.MPMoviePlayerFullScreenEventArgs.AnimationDuration
@@ -29284,9 +26118,6 @@ P:MediaPlayer.MPMoviePlayerThumbnailEventArgs.Error
P:MediaPlayer.MPMoviePlayerThumbnailEventArgs.Image
P:MediaPlayer.MPMoviePlayerThumbnailEventArgs.Time
P:MediaPlayer.MPMoviePlayerTimedMetadataEventArgs.TimedMetadata
-P:MediaPlayer.MPMusicPlayerController.CurrentPlaybackRate
-P:MediaPlayer.MPMusicPlayerController.CurrentPlaybackTime
-P:MediaPlayer.MPMusicPlayerController.IsPreparedToPlay
P:MediaPlayer.MPNowPlayingInfoCenter.PropertyAdTimeRanges
P:MediaPlayer.MPNowPlayingInfoCenter.PropertyCreditsStartTime
P:MediaPlayer.MPNowPlayingInfoCenter.PropertyExcludeFromSuggestions
@@ -29314,10 +26145,6 @@ P:MessageUI.MFMessageAvailabilityChangedEventArgs.TextMessageAvailability
P:Metal.IMTLAccelerationStructure.GpuResourceId
P:Metal.IMTLAccelerationStructure.Size
P:Metal.IMTLAllocation.AllocatedSize
-P:Metal.IMTLArgumentEncoder.Alignment
-P:Metal.IMTLArgumentEncoder.Device
-P:Metal.IMTLArgumentEncoder.EncodedLength
-P:Metal.IMTLArgumentEncoder.Label
P:Metal.IMTLBinaryArchive.Device
P:Metal.IMTLBinaryArchive.Label
P:Metal.IMTLBinding.Access
@@ -29326,57 +26153,35 @@ P:Metal.IMTLBinding.Index
P:Metal.IMTLBinding.Name
P:Metal.IMTLBinding.Type
P:Metal.IMTLBinding.Used
-P:Metal.IMTLBuffer.Contents
P:Metal.IMTLBuffer.GpuAddress
-P:Metal.IMTLBuffer.Length
P:Metal.IMTLBuffer.RemoteStorageBuffer
P:Metal.IMTLBufferBinding.BufferAlignment
P:Metal.IMTLBufferBinding.BufferDataSize
P:Metal.IMTLBufferBinding.BufferDataType
P:Metal.IMTLBufferBinding.BufferPointerType
P:Metal.IMTLBufferBinding.BufferStructType
-P:Metal.IMTLCaptureScope.CommandQueue
-P:Metal.IMTLCaptureScope.Device
-P:Metal.IMTLCaptureScope.Label
-P:Metal.IMTLCommandBuffer.BlitCommandEncoder
-P:Metal.IMTLCommandBuffer.CommandQueue
-P:Metal.IMTLCommandBuffer.ComputeCommandEncoder
-P:Metal.IMTLCommandBuffer.Device
-P:Metal.IMTLCommandBuffer.Error
P:Metal.IMTLCommandBuffer.ErrorOptions
P:Metal.IMTLCommandBuffer.GpuEndTime
P:Metal.IMTLCommandBuffer.GpuStartTime
P:Metal.IMTLCommandBuffer.KernelEndTime
P:Metal.IMTLCommandBuffer.KernelStartTime
-P:Metal.IMTLCommandBuffer.Label
P:Metal.IMTLCommandBuffer.Logs
P:Metal.IMTLCommandBuffer.ResourceStateCommandEncoder
-P:Metal.IMTLCommandBuffer.RetainedReferences
-P:Metal.IMTLCommandBuffer.Status
P:Metal.IMTLCommandBufferEncoderInfo.DebugSignposts
P:Metal.IMTLCommandBufferEncoderInfo.ErrorState
P:Metal.IMTLCommandBufferEncoderInfo.Label
-P:Metal.IMTLCommandEncoder.Device
-P:Metal.IMTLCommandEncoder.Label
-P:Metal.IMTLCommandQueue.Device
-P:Metal.IMTLCommandQueue.Label
P:Metal.IMTLComputeCommandEncoder.DispatchType
-P:Metal.IMTLComputePipelineState.Device
P:Metal.IMTLComputePipelineState.GpuResourceId
P:Metal.IMTLComputePipelineState.Label
-P:Metal.IMTLComputePipelineState.MaxTotalThreadsPerThreadgroup
P:Metal.IMTLComputePipelineState.ShaderValidation
P:Metal.IMTLComputePipelineState.StaticThreadgroupMemoryLength
P:Metal.IMTLComputePipelineState.SupportIndirectCommandBuffers
-P:Metal.IMTLComputePipelineState.ThreadExecutionWidth
P:Metal.IMTLCounter.Name
P:Metal.IMTLCounterSampleBuffer.Device
P:Metal.IMTLCounterSampleBuffer.Label
P:Metal.IMTLCounterSampleBuffer.SampleCount
P:Metal.IMTLCounterSet.Counters
P:Metal.IMTLCounterSet.Name
-P:Metal.IMTLDepthStencilState.Device
-P:Metal.IMTLDepthStencilState.Label
P:Metal.IMTLDevice.Architecture
P:Metal.IMTLDevice.ArgumentBuffersSupport
P:Metal.IMTLDevice.BarycentricCoordsSupported
@@ -29394,7 +26199,6 @@ P:Metal.IMTLDevice.MaximumConcurrentCompilationTaskCount
P:Metal.IMTLDevice.MaxThreadgroupMemoryLength
P:Metal.IMTLDevice.MaxThreadsPerThreadgroup
P:Metal.IMTLDevice.MaxTransferRate
-P:Metal.IMTLDevice.Name
P:Metal.IMTLDevice.PeerCount
P:Metal.IMTLDevice.PeerGroupId
P:Metal.IMTLDevice.PeerIndex
@@ -29424,20 +26228,12 @@ P:Metal.IMTLDrawable.PresentedTime
P:Metal.IMTLDynamicLibrary.Device
P:Metal.IMTLDynamicLibrary.InstallName
P:Metal.IMTLDynamicLibrary.Label
-P:Metal.IMTLEvent.Device
-P:Metal.IMTLEvent.Label
-P:Metal.IMTLFence.Device
-P:Metal.IMTLFence.Label
-P:Metal.IMTLFunction.Device
P:Metal.IMTLFunction.FunctionConstants
-P:Metal.IMTLFunction.FunctionType
P:Metal.IMTLFunction.Label
-P:Metal.IMTLFunction.Name
P:Metal.IMTLFunction.Options
P:Metal.IMTLFunction.PatchControlPointCount
P:Metal.IMTLFunction.PatchType
P:Metal.IMTLFunction.StageInputAttributes
-P:Metal.IMTLFunction.VertexAttributes
P:Metal.IMTLFunctionHandle.Device
P:Metal.IMTLFunctionHandle.FunctionType
P:Metal.IMTLFunctionHandle.Name
@@ -29449,23 +26245,13 @@ P:Metal.IMTLFunctionLogDebugLocation.Column
P:Metal.IMTLFunctionLogDebugLocation.FunctionName
P:Metal.IMTLFunctionLogDebugLocation.Line
P:Metal.IMTLFunctionLogDebugLocation.Url
-P:Metal.IMTLHeap.CpuCacheMode
P:Metal.IMTLHeap.CurrentAllocatedSize
-P:Metal.IMTLHeap.Device
P:Metal.IMTLHeap.HazardTrackingMode
-P:Metal.IMTLHeap.Label
P:Metal.IMTLHeap.ResourceOptions
-P:Metal.IMTLHeap.Size
-P:Metal.IMTLHeap.StorageMode
P:Metal.IMTLHeap.Type
-P:Metal.IMTLHeap.UsedSize
P:Metal.IMTLIndirectCommandBuffer.GpuResourceID
-P:Metal.IMTLIndirectCommandBuffer.Size
P:Metal.IMTLIntersectionFunctionTable.GpuResourceId
-P:Metal.IMTLLibrary.Device
-P:Metal.IMTLLibrary.FunctionNames
P:Metal.IMTLLibrary.InstallName
-P:Metal.IMTLLibrary.Label
P:Metal.IMTLLibrary.Type
P:Metal.IMTLObjectPayloadBinding.ObjectPayloadAlignment
P:Metal.IMTLObjectPayloadBinding.ObjectPayloadDataSize
@@ -29477,10 +26263,8 @@ P:Metal.IMTLRasterizationRateMap.PhysicalGranularity
P:Metal.IMTLRasterizationRateMap.ScreenSize
P:Metal.IMTLRenderCommandEncoder.TileHeight
P:Metal.IMTLRenderCommandEncoder.TileWidth
-P:Metal.IMTLRenderPipelineState.Device
P:Metal.IMTLRenderPipelineState.GpuResourceId
P:Metal.IMTLRenderPipelineState.ImageblockSampleLength
-P:Metal.IMTLRenderPipelineState.Label
P:Metal.IMTLRenderPipelineState.MaxTotalThreadgroupsPerMeshGrid
P:Metal.IMTLRenderPipelineState.MaxTotalThreadsPerMeshThreadgroup
P:Metal.IMTLRenderPipelineState.MaxTotalThreadsPerObjectThreadgroup
@@ -29496,47 +26280,31 @@ P:Metal.IMTLResidencySet.AllocationCount
P:Metal.IMTLResidencySet.Device
P:Metal.IMTLResidencySet.Label
P:Metal.IMTLResource.AllocatedSize
-P:Metal.IMTLResource.CpuCacheMode
-P:Metal.IMTLResource.Device
P:Metal.IMTLResource.HazardTrackingMode
P:Metal.IMTLResource.Heap
P:Metal.IMTLResource.HeapOffset
P:Metal.IMTLResource.IsAliasable
-P:Metal.IMTLResource.Label
P:Metal.IMTLResource.ResourceOptions
P:Metal.IMTLResource.StorageMode
-P:Metal.IMTLSamplerState.Device
P:Metal.IMTLSamplerState.GpuResourceId
-P:Metal.IMTLSamplerState.Label
-P:Metal.IMTLSharedEvent.SignaledValue
P:Metal.IMTLTexture.AllowGpuOptimizedContents
-P:Metal.IMTLTexture.ArrayLength
P:Metal.IMTLTexture.Buffer
P:Metal.IMTLTexture.BufferBytesPerRow
P:Metal.IMTLTexture.BufferOffset
P:Metal.IMTLTexture.CompressionType
-P:Metal.IMTLTexture.Depth
P:Metal.IMTLTexture.FirstMipmapInTail
-P:Metal.IMTLTexture.FramebufferOnly
P:Metal.IMTLTexture.GpuResourceId
-P:Metal.IMTLTexture.Height
P:Metal.IMTLTexture.IOSurface
P:Metal.IMTLTexture.IOSurfacePlane
P:Metal.IMTLTexture.IsSparse
-P:Metal.IMTLTexture.MipmapLevelCount
P:Metal.IMTLTexture.ParentRelativeLevel
P:Metal.IMTLTexture.ParentRelativeSlice
P:Metal.IMTLTexture.ParentTexture
-P:Metal.IMTLTexture.PixelFormat
P:Metal.IMTLTexture.RemoteStorageTexture
-P:Metal.IMTLTexture.RootResource
-P:Metal.IMTLTexture.SampleCount
P:Metal.IMTLTexture.Shareable
P:Metal.IMTLTexture.Swizzle
P:Metal.IMTLTexture.TailSizeInBytes
-P:Metal.IMTLTexture.TextureType
P:Metal.IMTLTexture.Usage
-P:Metal.IMTLTexture.Width
P:Metal.IMTLTextureBinding.ArrayLength
P:Metal.IMTLTextureBinding.DepthTexture
P:Metal.IMTLTextureBinding.TextureDataType
@@ -29611,26 +26379,10 @@ P:MetalFX.IMTLFXTemporalScaler.Reset
P:MetalFX.MTLFXTemporalScalerDescriptor.AutoExposureEnabled
P:MetalFX.MTLFXTemporalScalerDescriptor.InputContentPropertiesEnabled
P:MetalFX.MTLFXTemporalScalerDescriptor.ReactiveMaskTextureEnabled
-P:MetalKit.MTKMeshBuffer.Map
P:MetalKit.MTKTextureLoaderOptions.LoadAsArray
P:MetalPerformanceShaders.IMPSCnnConvolutionDataSource.KernelWeightsDataType
-P:MetalPerformanceShaders.IMPSHandle.Label
-P:MetalPerformanceShaders.IMPSImageSizeEncodingState.SourceHeight
-P:MetalPerformanceShaders.IMPSImageSizeEncodingState.SourceWidth
-P:MetalPerformanceShaders.IMPSNNPadding.PaddingMethod
-P:MetalPerformanceShaders.IMPSNNTrainableNode.TrainingStyle
-P:MetalPerformanceShaders.MPSCnnBatchNormalizationGradientNode.TrainingStyle
P:MetalPerformanceShaders.MPSCnnConvolutionDataSource.KernelWeightsDataType
-P:MetalPerformanceShaders.MPSCnnConvolutionGradientNode.TrainingStyle
-P:MetalPerformanceShaders.MPSCnnConvolutionGradientState.SourceHeight
-P:MetalPerformanceShaders.MPSCnnConvolutionGradientState.SourceWidth
-P:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientNode.TrainingStyle
-P:MetalPerformanceShaders.MPSCommandBuffer.BlitCommandEncoder
P:MetalPerformanceShaders.MPSCommandBuffer.CommandBuffer
-P:MetalPerformanceShaders.MPSCommandBuffer.CommandQueue
-P:MetalPerformanceShaders.MPSCommandBuffer.ComputeCommandEncoder
-P:MetalPerformanceShaders.MPSCommandBuffer.Device
-P:MetalPerformanceShaders.MPSCommandBuffer.Error
P:MetalPerformanceShaders.MPSCommandBuffer.ErrorDomain
P:MetalPerformanceShaders.MPSCommandBuffer.ErrorOptions
P:MetalPerformanceShaders.MPSCommandBuffer.GpuEndTime
@@ -29638,13 +26390,10 @@ P:MetalPerformanceShaders.MPSCommandBuffer.GpuStartTime
P:MetalPerformanceShaders.MPSCommandBuffer.HeapProvider
P:MetalPerformanceShaders.MPSCommandBuffer.KernelEndTime
P:MetalPerformanceShaders.MPSCommandBuffer.KernelStartTime
-P:MetalPerformanceShaders.MPSCommandBuffer.Label
P:MetalPerformanceShaders.MPSCommandBuffer.Logs
P:MetalPerformanceShaders.MPSCommandBuffer.Predicate
P:MetalPerformanceShaders.MPSCommandBuffer.ResourceStateCommandEncoder
-P:MetalPerformanceShaders.MPSCommandBuffer.RetainedReferences
P:MetalPerformanceShaders.MPSCommandBuffer.RootCommandBuffer
-P:MetalPerformanceShaders.MPSCommandBuffer.Status
P:MetalPerformanceShaders.MPSImage.FeatureChannelFormat
P:MetalPerformanceShaders.MPSImage.ImageType
P:MetalPerformanceShaders.MPSMatrix.Offset
@@ -29686,7 +26435,6 @@ P:MetalPerformanceShaders.MPSNDArrayUnaryKernel.KernelSizes
P:MetalPerformanceShaders.MPSNDArrayUnaryKernel.Offsets
P:MetalPerformanceShaders.MPSNDArrayUnaryKernel.Strides
P:MetalPerformanceShaders.MPSNDArrayVectorLutDequantize.VectorAxis
-P:MetalPerformanceShaders.MPSNNDefaultPadding.PaddingMethod
P:MetalPerformanceShaders.MPSNNForwardLossNode.Delta
P:MetalPerformanceShaders.MPSNNForwardLossNode.Epsilon
P:MetalPerformanceShaders.MPSNNForwardLossNode.LabelSmoothing
@@ -30141,69 +26889,29 @@ P:MLCompute.MLCYoloLossLayer.YoloLossDescriptor
P:MobileCoreServices.UTType.UniversalSceneDescriptionMobile
P:ModelIO.IMDLMeshBuffer.Allocator
P:ModelIO.IMDLMeshBuffer.Length
-P:ModelIO.IMDLMeshBuffer.Map
P:ModelIO.IMDLMeshBuffer.Type
P:ModelIO.IMDLMeshBuffer.Zone
P:ModelIO.IMDLMeshBufferZone.Allocator
P:ModelIO.IMDLMeshBufferZone.Capacity
-P:ModelIO.IMDLNamed.Name
P:ModelIO.IMDLObjectContainerComponent.Count
-P:ModelIO.IMDLObjectContainerComponent.Objects
P:ModelIO.IMDLTransformComponent.KeyTimes
-P:ModelIO.IMDLTransformComponent.Matrix
-P:ModelIO.IMDLTransformComponent.MaximumTime
-P:ModelIO.IMDLTransformComponent.MinimumTime
P:ModelIO.IMDLTransformComponent.ResetsTransform
-P:ModelIO.IMDLTransformOp.IsInverseOp
-P:ModelIO.IMDLTransformOp.Name
P:ModelIO.MDLAsset.Item(System.UIntPtr)
P:ModelIO.MDLAsset.Originals
P:ModelIO.MDLMaterial.Item(System.String)
P:ModelIO.MDLMaterial.Item(System.UIntPtr)
-P:ModelIO.MDLMaterial.Name
-P:ModelIO.MDLMaterialProperty.Name
-P:ModelIO.MDLMaterialPropertyConnection.Name
-P:ModelIO.MDLMaterialPropertyNode.Name
P:ModelIO.MDLMeshBufferData.Allocator
P:ModelIO.MDLMeshBufferData.Length
-P:ModelIO.MDLMeshBufferData.Map
P:ModelIO.MDLMeshBufferData.Type
P:ModelIO.MDLMeshBufferData.Zone
P:ModelIO.MDLMeshBufferZoneDefault.Allocator
P:ModelIO.MDLMeshBufferZoneDefault.Capacity
-P:ModelIO.MDLObject.Name
P:ModelIO.MDLObjectContainer.Count
-P:ModelIO.MDLObjectContainer.Objects
-P:ModelIO.MDLScatteringFunction.Name
-P:ModelIO.MDLSubmesh.Name
-P:ModelIO.MDLTexture.Name
P:ModelIO.MDLTransform.KeyTimes
-P:ModelIO.MDLTransform.Matrix
-P:ModelIO.MDLTransform.MaximumTime
-P:ModelIO.MDLTransform.MinimumTime
P:ModelIO.MDLTransform.ResetsTransform
-P:ModelIO.MDLTransformMatrixOp.IsInverseOp
-P:ModelIO.MDLTransformMatrixOp.Name
P:ModelIO.MDLTransformOrientOp.AnimatedValue
-P:ModelIO.MDLTransformOrientOp.IsInverseOp
-P:ModelIO.MDLTransformOrientOp.Name
-P:ModelIO.MDLTransformRotateOp.IsInverseOp
-P:ModelIO.MDLTransformRotateOp.Name
-P:ModelIO.MDLTransformRotateXOp.IsInverseOp
-P:ModelIO.MDLTransformRotateXOp.Name
-P:ModelIO.MDLTransformRotateYOp.IsInverseOp
-P:ModelIO.MDLTransformRotateYOp.Name
-P:ModelIO.MDLTransformRotateZOp.IsInverseOp
-P:ModelIO.MDLTransformRotateZOp.Name
-P:ModelIO.MDLTransformScaleOp.IsInverseOp
-P:ModelIO.MDLTransformScaleOp.Name
P:ModelIO.MDLTransformStack.KeyTimes
-P:ModelIO.MDLTransformStack.Matrix
-P:ModelIO.MDLTransformStack.MaximumTime
-P:ModelIO.MDLTransformStack.MinimumTime
P:ModelIO.MDLTransformStack.ResetsTransform
-P:ModelIO.MDLTransformTranslateOp.IsInverseOp
-P:ModelIO.MDLTransformTranslateOp.Name
P:ModelIO.MDLVoxelIndexExtent.MaximumExtent
P:ModelIO.MDLVoxelIndexExtent.MinimumExtent
P:NaturalLanguage.NLContextualEmbedding.Dimension
@@ -30494,7 +27202,6 @@ P:ObjCRuntime.ObjCException.Name
P:ObjCRuntime.ObjCException.NSException
P:ObjCRuntime.ObjCException.Reason
P:ObjCRuntime.TrampolineBlockBase.BlockPointer
-P:OpenGLES.IEAGLDrawable.DrawableProperties
P:OSLog.IOSLogEntryFromProcess.ActivityIdentifier
P:OSLog.IOSLogEntryFromProcess.Process
P:OSLog.IOSLogEntryFromProcess.ProcessIdentifier
@@ -30910,10 +27617,6 @@ P:Phase.PhaseStreamNode.GainMetaParameter
P:Phase.PhaseStreamNode.Mixer
P:Phase.PhaseStreamNode.RateMetaParameter
P:Phase.PhaseSwitchNodeDefinition.SwitchMetaParameterDefinition
-P:Photos.IPHLivePhotoFrame.Image
-P:Photos.IPHLivePhotoFrame.RenderScale
-P:Photos.IPHLivePhotoFrame.Time
-P:Photos.IPHLivePhotoFrame.Type
P:Photos.PHAdjustmentData.Data
P:Photos.PHAdjustmentData.FormatIdentifier
P:Photos.PHAdjustmentData.FormatVersion
@@ -31054,7 +27757,6 @@ P:Photos.PHProjectChangeRequest.Title
P:Photos.PHVideoRequestOptions.DeliveryMode
P:Photos.PHVideoRequestOptions.ProgressHandler
P:Photos.PHVideoRequestOptions.Version
-P:PhotosUI.IPHContentEditingController.ShouldShowCancelConfirmation
P:PhotosUI.PHLivePhotoView.AudioVolume
P:PhotosUI.PHLivePhotoView.ContentMode
P:PhotosUI.PHLivePhotoView.ContentsRect
@@ -31240,16 +27942,9 @@ P:SafetyKit.SACrashDetectionManager.Available
P:SafetyKit.SACrashDetectionManager.Delegate
P:SafetyKit.SAEmergencyResponseManager.Delegate
P:SceneKit.ISCNActionable.ActionKeys
-P:SceneKit.ISCNCameraControlConfiguration.AllowsTranslation
-P:SceneKit.ISCNCameraControlConfiguration.AutoSwitchToFreeCamera
-P:SceneKit.ISCNCameraControlConfiguration.FlyModeVelocity
-P:SceneKit.ISCNCameraControlConfiguration.PanSensitivity
-P:SceneKit.ISCNCameraControlConfiguration.RotationSensitivity
-P:SceneKit.ISCNCameraControlConfiguration.TruckSensitivity
P:SceneKit.ISCNSceneRenderer.AudioEngine
P:SceneKit.ISCNSceneRenderer.AudioEnvironmentNode
P:SceneKit.ISCNSceneRenderer.AudioListener
-P:SceneKit.ISCNSceneRenderer.AutoenablesDefaultLighting
P:SceneKit.ISCNSceneRenderer.ColorPixelFormat
P:SceneKit.ISCNSceneRenderer.CommandQueue
P:SceneKit.ISCNSceneRenderer.Context
@@ -31260,29 +27955,20 @@ P:SceneKit.ISCNSceneRenderer.CurrentViewport
P:SceneKit.ISCNSceneRenderer.DebugOptions
P:SceneKit.ISCNSceneRenderer.DepthPixelFormat
P:SceneKit.ISCNSceneRenderer.Device
-P:SceneKit.ISCNSceneRenderer.Loops
-P:SceneKit.ISCNSceneRenderer.OverlayScene
-P:SceneKit.ISCNSceneRenderer.PointOfView
P:SceneKit.ISCNSceneRenderer.RenderingApi
-P:SceneKit.ISCNSceneRenderer.Scene
-P:SceneKit.ISCNSceneRenderer.SceneTimeInSeconds
-P:SceneKit.ISCNSceneRenderer.ShowsStatistics
P:SceneKit.ISCNSceneRenderer.StencilPixelFormat
P:SceneKit.ISCNSceneRenderer.TemporalAntialiasingEnabled
P:SceneKit.ISCNSceneRenderer.UsesReverseZ
-P:SceneKit.ISCNSceneRenderer.WeakSceneRendererDelegate
P:SceneKit.ISCNSceneRenderer.WorkingColorSpace
P:SceneKit.ISCNShadable.MinimumLanguageVersion
P:SceneKit.ISCNShadable.Program
P:SceneKit.ISCNShadable.WeakShaderModifiers
-P:SceneKit.ISCNTechniqueSupport.Technique
P:SceneKit.SCNGeometryElement.InterleavedIndicesChannels
P:SceneKit.SCNHitTest.IgnoreLightAreaKey
P:SceneKit.SCNHitTestOptions.IgnoreLightArea
P:SceneKit.SCNLayer.TemporalAntialiasingEnabled
P:SceneKit.SCNLightingModel.ShadowOnly
P:SceneKit.SCNLightType.Area
-P:SceneKit.SCNNode.CanBecomeFocused
P:SceneKit.SCNNode.FocusEffect
P:SceneKit.SCNNode.FocusGroupIdentifier
P:SceneKit.SCNNode.FocusGroupPriority
@@ -31290,7 +27976,6 @@ P:SceneKit.SCNNode.FocusItemContainer
P:SceneKit.SCNNode.FocusItemDeferralMode
P:SceneKit.SCNNode.IsTransparentFocusItem
P:SceneKit.SCNNode.ParentFocusEnvironment
-P:SceneKit.SCNNode.PreferredFocusedView
P:SceneKit.SCNNode.PreferredFocusEnvironments
P:SceneKit.SCNPhysicsContactEventArgs.Contact
P:SceneKit.SCNRenderer.TemporalAntialiasingEnabled
@@ -31441,11 +28126,6 @@ P:SoundAnalysis.SNClassifySoundRequest.WindowDurationConstraint
P:SoundAnalysis.SNTimeDurationConstraint.DurationRange
P:SoundAnalysis.SNTimeDurationConstraint.EnumeratedDurations
P:SoundAnalysis.SNTimeDurationConstraint.Type
-P:SpriteKit.ISKWarpable.SubdivisionLevels
-P:SpriteKit.ISKWarpable.WarpGeometry
-P:SpriteKit.SKNode.Bounds
-P:SpriteKit.SKNode.CanBecomeFocused
-P:SpriteKit.SKNode.CoordinateSpace
P:SpriteKit.SKNode.FocusEffect
P:SpriteKit.SKNode.FocusGroupIdentifier
P:SpriteKit.SKNode.FocusGroupPriority
@@ -31453,7 +28133,6 @@ P:SpriteKit.SKNode.FocusItemContainer
P:SpriteKit.SKNode.FocusItemDeferralMode
P:SpriteKit.SKNode.IsTransparentFocusItem
P:SpriteKit.SKNode.ParentFocusEnvironment
-P:SpriteKit.SKNode.PreferredFocusedView
P:SpriteKit.SKNode.PreferredFocusEnvironments
P:SpriteKit.SKTextureAtlasLoadResult.Error
P:SpriteKit.SKTextureAtlasLoadResult.FoundAtlases
@@ -31564,65 +28243,27 @@ P:UIKit.INSCollectionLayoutVisibleItem.RepresentedElementKind
P:UIKit.INSCollectionLayoutVisibleItem.Transform3D
P:UIKit.INSCollectionLayoutVisibleItem.ZIndex
P:UIKit.INSTextElementProvider.DocumentRange
-P:UIKit.INSTextLayoutOrientationProvider.LayoutOrientation
P:UIKit.INSTextSelectionDataSource.DocumentRange
P:UIKit.INSTextStorageObserving.TextStorage
P:UIKit.IUIAccessibilityContainer.AccessibilityContainerType
-P:UIKit.IUIAccessibilityContainerDataTable.AccessibilityColumnCount
-P:UIKit.IUIAccessibilityContainerDataTable.AccessibilityRowCount
-P:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting.AdjustsImageSizeForAccessibilityContentSizeCategory
-P:UIKit.IUIAccessibilityIdentification.AccessibilityIdentifier
P:UIKit.IUIActivityItemsConfigurationProviding.ActivityItemsConfiguration
P:UIKit.IUIActivityItemsConfigurationReading.ItemProvidersForActivityItemsConfiguration
P:UIKit.IUIApplicationDelegate.Window
-P:UIKit.IUIBarPositioning.BarPosition
-P:UIKit.IUICollectionViewDropCoordinator.DestinationIndexPath
-P:UIKit.IUICollectionViewDropCoordinator.Items
-P:UIKit.IUICollectionViewDropCoordinator.Proposal
-P:UIKit.IUICollectionViewDropCoordinator.Session
-P:UIKit.IUICollectionViewDropItem.DragItem
-P:UIKit.IUICollectionViewDropItem.PreviewSize
-P:UIKit.IUICollectionViewDropItem.SourceIndexPath
-P:UIKit.IUICollectionViewDropPlaceholderContext.DragItem
P:UIKit.IUIConfigurationState.TraitCollection
-P:UIKit.IUIContentContainer.PreferredContentSize
-P:UIKit.IUIContentSizeCategoryAdjusting.AdjustsFontForContentSizeCategory
P:UIKit.IUIContentView.Configuration
P:UIKit.IUIContextMenuInteractionAnimating.PreviewViewController
P:UIKit.IUIContextMenuInteractionCommitAnimating.PreferredCommitStyle
-P:UIKit.IUICoordinateSpace.Bounds
-P:UIKit.IUIDragDropSession.AllowsMoveOperation
-P:UIKit.IUIDragDropSession.Items
-P:UIKit.IUIDragDropSession.RestrictedToDraggingApplication
-P:UIKit.IUIDragSession.LocalContext
-P:UIKit.IUIDropSession.LocalDragSession
-P:UIKit.IUIDropSession.ProgressIndicatorStyle
-P:UIKit.IUIDynamicItem.Bounds
-P:UIKit.IUIDynamicItem.Center
P:UIKit.IUIDynamicItem.CollisionBoundingPath
P:UIKit.IUIDynamicItem.CollisionBoundsType
-P:UIKit.IUIDynamicItem.Transform
-P:UIKit.IUIFocusAnimationContext.Duration
P:UIKit.IUIFocusEnvironment.FocusGroupIdentifier
P:UIKit.IUIFocusEnvironment.FocusItemContainer
P:UIKit.IUIFocusEnvironment.ParentFocusEnvironment
-P:UIKit.IUIFocusEnvironment.PreferredFocusedView
P:UIKit.IUIFocusEnvironment.PreferredFocusEnvironments
-P:UIKit.IUIFocusItem.CanBecomeFocused
P:UIKit.IUIFocusItem.FocusEffect
P:UIKit.IUIFocusItem.FocusGroupPriority
P:UIKit.IUIFocusItem.FocusItemDeferralMode
P:UIKit.IUIFocusItem.Frame
P:UIKit.IUIFocusItem.IsTransparentFocusItem
-P:UIKit.IUIFocusItemContainer.CoordinateSpace
-P:UIKit.IUIFocusItemScrollableContainer.ContentOffset
-P:UIKit.IUIFocusItemScrollableContainer.ContentSize
-P:UIKit.IUIFocusItemScrollableContainer.VisibleSize
-P:UIKit.IUIGuidedAccessRestrictionDelegate.GetGuidedAccessRestrictionIdentifiers
-P:UIKit.IUIInputViewAudioFeedback.EnableInputClicksWhenVisible
-P:UIKit.IUIInteraction.View
-P:UIKit.IUIItemProviderPresentationSizeProviding.PreferredPresentationSizeForItemProvider
-P:UIKit.IUIKeyInput.HasText
P:UIKit.IUILargeContentViewerItem.LargeContentImage
P:UIKit.IUILargeContentViewerItem.LargeContentImageInsets
P:UIKit.IUILargeContentViewerItem.LargeContentTitle
@@ -31631,7 +28272,6 @@ P:UIKit.IUILargeContentViewerItem.ShowsLargeContentViewer
P:UIKit.IUILayoutGuideAspectFitting.AspectRatio
P:UIKit.IUILayoutSupport.BottomAnchor
P:UIKit.IUILayoutSupport.HeightAnchor
-P:UIKit.IUILayoutSupport.Length
P:UIKit.IUILayoutSupport.TopAnchor
P:UIKit.IUILetterformAwareAdjusting.SizingRule
P:UIKit.IUILookToDictateCapable.LookToDictateEnabled
@@ -31662,82 +28302,31 @@ P:UIKit.IUIMutableTraits.UserInterfaceIdiom
P:UIKit.IUIMutableTraits.UserInterfaceLevel
P:UIKit.IUIMutableTraits.UserInterfaceStyle
P:UIKit.IUIMutableTraits.VerticalSizeClass
-P:UIKit.IUIPasteConfigurationSupporting.PasteConfiguration
-P:UIKit.IUIPreviewActionItem.Title
P:UIKit.IUISearchSuggestion.LocalizedAttributedSuggestion
P:UIKit.IUISearchSuggestion.LocalizedSuggestion
P:UIKit.IUISearchSuggestion.RepresentedObject
P:UIKit.IUISheetPresentationControllerDetentResolutionContext.ContainerTraitCollection
P:UIKit.IUISheetPresentationControllerDetentResolutionContext.MaximumDetentValue
-P:UIKit.IUISpringLoadedInteractionContext.State
-P:UIKit.IUISpringLoadedInteractionContext.TargetItem
-P:UIKit.IUISpringLoadedInteractionContext.TargetView
-P:UIKit.IUISpringLoadedInteractionSupporting.SpringLoaded
P:UIKit.IUIStateRestoring.ObjectRestorationClass
P:UIKit.IUIStateRestoring.RestorationParent
-P:UIKit.IUITableViewDropCoordinator.DestinationIndexPath
-P:UIKit.IUITableViewDropCoordinator.Items
-P:UIKit.IUITableViewDropCoordinator.Proposal
-P:UIKit.IUITableViewDropCoordinator.Session
-P:UIKit.IUITableViewDropItem.DragItem
-P:UIKit.IUITableViewDropItem.PreviewSize
-P:UIKit.IUITableViewDropItem.SourceIndexPath
-P:UIKit.IUITableViewDropPlaceholderContext.DragItem
P:UIKit.IUITextCursorView.Blinking
-P:UIKit.IUITextDocumentProxy.DocumentContextAfterInput
-P:UIKit.IUITextDocumentProxy.DocumentContextBeforeInput
P:UIKit.IUITextDocumentProxy.DocumentIdentifier
P:UIKit.IUITextDocumentProxy.DocumentInputMode
P:UIKit.IUITextDocumentProxy.SelectedText
-P:UIKit.IUITextDraggable.TextDragActive
-P:UIKit.IUITextDraggable.TextDragDelegate
-P:UIKit.IUITextDraggable.TextDragInteraction
-P:UIKit.IUITextDraggable.TextDragOptions
-P:UIKit.IUITextDragRequest.DragRange
-P:UIKit.IUITextDragRequest.DragSession
-P:UIKit.IUITextDragRequest.ExistingItems
-P:UIKit.IUITextDragRequest.Selected
-P:UIKit.IUITextDragRequest.SuggestedItems
-P:UIKit.IUITextDroppable.TextDropActive
-P:UIKit.IUITextDroppable.TextDropDelegate
-P:UIKit.IUITextDroppable.TextDropInteraction
-P:UIKit.IUITextDropRequest.DropPosition
-P:UIKit.IUITextDropRequest.DropSession
-P:UIKit.IUITextDropRequest.SameView
-P:UIKit.IUITextDropRequest.SuggestedProposal
-P:UIKit.IUITextInput.BeginningOfDocument
P:UIKit.IUITextInput.Editable
-P:UIKit.IUITextInput.EndOfDocument
-P:UIKit.IUITextInput.MarkedTextRange
-P:UIKit.IUITextInput.MarkedTextStyle
-P:UIKit.IUITextInput.SelectedTextRange
P:UIKit.IUITextInput.SelectionAffinity
P:UIKit.IUITextInput.SupportsAdaptiveImageGlyph
P:UIKit.IUITextInput.TextInputView
-P:UIKit.IUITextInput.WeakInputDelegate
-P:UIKit.IUITextInput.WeakTokenizer
P:UIKit.IUITextInputTraits.AllowedWritingToolsResultOptions
-P:UIKit.IUITextInputTraits.AutocapitalizationType
-P:UIKit.IUITextInputTraits.AutocorrectionType
P:UIKit.IUITextInputTraits.ConversationContext
-P:UIKit.IUITextInputTraits.EnablesReturnKeyAutomatically
P:UIKit.IUITextInputTraits.InlinePredictionType
-P:UIKit.IUITextInputTraits.KeyboardAppearance
-P:UIKit.IUITextInputTraits.KeyboardType
P:UIKit.IUITextInputTraits.MathExpressionCompletionType
P:UIKit.IUITextInputTraits.PasswordRules
-P:UIKit.IUITextInputTraits.ReturnKeyType
-P:UIKit.IUITextInputTraits.SecureTextEntry
P:UIKit.IUITextInputTraits.SmartDashesType
P:UIKit.IUITextInputTraits.SmartInsertDeleteType
P:UIKit.IUITextInputTraits.SmartQuotesType
-P:UIKit.IUITextInputTraits.SpellCheckingType
P:UIKit.IUITextInputTraits.TextContentType
P:UIKit.IUITextInputTraits.WritingToolsBehavior
-P:UIKit.IUITextPasteConfigurationSupporting.PasteDelegate
-P:UIKit.IUITextPasteItem.DefaultAttributes
-P:UIKit.IUITextPasteItem.ItemProvider
-P:UIKit.IUITextPasteItem.LocalObject
P:UIKit.IUITextSearchAggregator.AllFoundRanges
P:UIKit.IUITextSearching.SelectedTextRange
P:UIKit.IUITextSearching.SelectedTextSearchDocument
@@ -31746,36 +28335,10 @@ P:UIKit.IUITextSelectionHandleView.CustomShape
P:UIKit.IUITextSelectionHandleView.Direction
P:UIKit.IUITextSelectionHandleView.Vertical
P:UIKit.IUITextSelectionHighlightView.SelectionRects
-P:UIKit.IUITimingCurveProvider.CubicTimingParameters
-P:UIKit.IUITimingCurveProvider.SpringTimingParameters
-P:UIKit.IUITimingCurveProvider.TimingCurveType
-P:UIKit.IUITraitEnvironment.TraitCollection
-P:UIKit.IUIViewAnimating.FractionComplete
-P:UIKit.IUIViewAnimating.Reversed
-P:UIKit.IUIViewAnimating.Running
-P:UIKit.IUIViewAnimating.State
-P:UIKit.IUIViewControllerContextTransitioning.ContainerView
-P:UIKit.IUIViewControllerContextTransitioning.PresentationStyle
-P:UIKit.IUIViewControllerContextTransitioning.TargetTransform
-P:UIKit.IUIViewControllerContextTransitioning.TransitionWasCancelled
P:UIKit.IUIViewControllerInteractiveTransitioning.CompletionCurve
P:UIKit.IUIViewControllerInteractiveTransitioning.CompletionSpeed
P:UIKit.IUIViewControllerInteractiveTransitioning.WantsInteractiveStart
-P:UIKit.IUIViewControllerPreviewing.PreviewingGestureRecognizerForFailureRelationship
-P:UIKit.IUIViewControllerPreviewing.SourceRect
-P:UIKit.IUIViewControllerPreviewing.SourceView
-P:UIKit.IUIViewControllerPreviewing.WeakDelegate
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.CompletionCurve
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.CompletionVelocity
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.ContainerView
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.InitiallyInteractive
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.IsAnimated
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.IsCancelled
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.IsInteractive
P:UIKit.IUIViewControllerTransitionCoordinatorContext.IsInterruptible
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.PercentComplete
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.PresentationStyle
-P:UIKit.IUIViewControllerTransitionCoordinatorContext.TransitionDuration
P:UIKit.IUIWindowSceneDelegate.Window
P:UIKit.NSAttributedStringDocumentReadingOptions.CharacterEncoding
P:UIKit.NSAttributedStringDocumentReadingOptions.DefaultAttributes
@@ -31818,7 +28381,6 @@ P:UIKit.UIActivityType.AddToHomeScreen
P:UIKit.UIActivityType.CollaborationCopyLink
P:UIKit.UIActivityType.CollaborationInviteWithLink
P:UIKit.UIActivityType.UIActivityTypeSharePlay
-P:UIKit.UIAlertController.SpringLoaded
P:UIKit.UIAlertView.ShouldEnableFirstOtherButton
P:UIKit.UIApplication.AnnouncementDidFinishNotification
P:UIKit.UIApplication.AnnouncementNotification
@@ -31875,7 +28437,6 @@ P:UIKit.UIApplicationLaunchEventArgs.Url
P:UIKit.UIBandSelectionInteraction.Enabled
P:UIKit.UIBarButtonItem.Hidden
P:UIKit.UIBarButtonItem.Selected
-P:UIKit.UIBarButtonItem.SpringLoaded
P:UIKit.UIBarButtonItem.SymbolAnimationEnabled
P:UIKit.UIBarButtonItem.UIBarButtonItemAppearance.TintColor
P:UIKit.UIBarButtonItemGroup.Hidden
@@ -31927,7 +28488,6 @@ P:UIKit.UIBarItem.VoiceOverStatusDidChangeNotification
P:UIKit.UIButton.Held
P:UIKit.UIButton.Hovered
P:UIKit.UIButton.PointerInteractionEnabled
-P:UIKit.UIButton.SpringLoaded
P:UIKit.UIButton.UIButtonAppearance.ContentEdgeInsets
P:UIKit.UIButton.UIButtonAppearance.CurrentBackgroundImage
P:UIKit.UIButton.UIButtonAppearance.CurrentImage
@@ -31948,7 +28508,6 @@ P:UIKit.UICollectionLayoutSectionOrthogonalScrollingDecelerationRate.Automatic
P:UIKit.UICollectionLayoutSectionOrthogonalScrollingDecelerationRate.Fast
P:UIKit.UICollectionLayoutSectionOrthogonalScrollingDecelerationRate.Normal
P:UIKit.UICollectionView.Editing
-P:UIKit.UICollectionView.SpringLoaded
P:UIKit.UICollectionViewCellRegistration.CellType
P:UIKit.UICollectionViewLayout.AutomaticDimension
P:UIKit.UICollectionViewSupplementaryRegistration.SupplementaryType
@@ -32187,7 +28746,6 @@ P:UIKit.UIScrollView.ZoomAnimating
P:UIKit.UIScrollViewZoomingEventArgs.View
P:UIKit.UISearchBar.Enabled
P:UIKit.UISearchBar.LookToDictateEnabled
-P:UIKit.UISearchBar.SecureTextEntry
P:UIKit.UISearchBar.ShouldBeginEditing
P:UIKit.UISearchBar.ShouldChangeTextInRange
P:UIKit.UISearchBar.ShouldEndEditing
@@ -32198,7 +28756,6 @@ P:UIKit.UISearchBar.UISearchBarAppearance.SearchFieldBackgroundPositionAdjustmen
P:UIKit.UISearchBar.UISearchBarAppearance.SearchTextPositionAdjustment
P:UIKit.UISearchBarButtonIndexEventArgs.SelectedScope
P:UIKit.UISearchBarTextChangedEventArgs.SearchText
-P:UIKit.UISegmentedControl.SpringLoaded
P:UIKit.UISegmentedControl.UISegmentedControlAppearance.SelectedSegmentTintColor
P:UIKit.UISheetPresentationController.Delegate
P:UIKit.UISheetPresentationControllerDetent.AutomaticDimension
@@ -32247,8 +28804,6 @@ P:UIKit.UISymbolEffectCompletionContext.Finished
P:UIKit.UITab.Enabled
P:UIKit.UITab.Hidden
P:UIKit.UITab.HiddenByDefault
-P:UIKit.UITab.SpringLoaded
-P:UIKit.UITabBar.SpringLoaded
P:UIKit.UITabBar.UITabBarAppearance.BackgroundImage
P:UIKit.UITabBar.UITabBarAppearance.BarStyle
P:UIKit.UITabBar.UITabBarAppearance.BarTintColor
@@ -32280,7 +28835,6 @@ P:UIKit.UITabBarCustomizeEventArgs.ViewControllers
P:UIKit.UITabBarDisplayOrderChangeEventArgs.Group
P:UIKit.UITabBarFinalItemsEventArgs.Changed
P:UIKit.UITabBarFinalItemsEventArgs.Items
-P:UIKit.UITabBarItem.SpringLoaded
P:UIKit.UITabBarItem.UITabBarItemAppearance.BadgeColor
P:UIKit.UITabBarItem.UITabBarItemAppearance.ScrollEdgeAppearance
P:UIKit.UITabBarItem.UITabBarItemAppearance.StandardAppearance
@@ -32294,7 +28848,6 @@ P:UIKit.UITabBarTabSelectionEventArgs.PreviousTab
P:UIKit.UITabBarTabSelectionEventArgs.Tab
P:UIKit.UITabBarTabVisibilityChangeEventArgs.Tabs
P:UIKit.UITableView.PrefetchingEnabled
-P:UIKit.UITableView.SpringLoaded
P:UIKit.UITableView.UITableViewAppearance.SectionIndexBackgroundColor
P:UIKit.UITableView.UITableViewAppearance.SectionIndexColor
P:UIKit.UITableView.UITableViewAppearance.SectionIndexTrackingBackgroundColor
@@ -32321,15 +28874,11 @@ P:UIKit.UITextContentType.CreditCardType
P:UIKit.UITextContentType.DateTime
P:UIKit.UITextContentType.FlightNumber
P:UIKit.UITextContentType.ShipmentTrackingNumber
-P:UIKit.UITextDocumentProxy.SecureTextEntry
P:UIKit.UITextField.CurrentInputModeDidChangeNotification
P:UIKit.UITextField.Editable
P:UIKit.UITextField.InputDelegate
-P:UIKit.UITextField.SecureTextEntry
P:UIKit.UITextField.TextBackgroundColorKey
P:UIKit.UITextField.TextColorKey
-P:UIKit.UITextField.TextDragActive
-P:UIKit.UITextField.TextDropActive
P:UIKit.UITextField.TextFontKey
P:UIKit.UITextField.Tokenizer
P:UIKit.UITextFormattingCoordinator.Delegate
@@ -32351,7 +28900,6 @@ P:UIKit.UITextView.CurrentInputModeDidChangeNotification
P:UIKit.UITextView.FindInteractionEnabled
P:UIKit.UITextView.GetWritingToolsIgnoredRangesInEnclosingRange
P:UIKit.UITextView.InputDelegate
-P:UIKit.UITextView.SecureTextEntry
P:UIKit.UITextView.ShouldBeginEditing
P:UIKit.UITextView.ShouldChangeText
P:UIKit.UITextView.ShouldEndEditing
@@ -32359,8 +28907,6 @@ P:UIKit.UITextView.ShouldInteractWithTextAttachment
P:UIKit.UITextView.ShouldInteractWithUrl
P:UIKit.UITextView.TextBackgroundColorKey
P:UIKit.UITextView.TextColorKey
-P:UIKit.UITextView.TextDragActive
-P:UIKit.UITextView.TextDropActive
P:UIKit.UITextView.TextFontKey
P:UIKit.UITextView.Tokenizer
P:UIKit.UITextView.TypingAttributes2
@@ -32433,8 +28979,6 @@ P:UIKit.UIViewConfigurationState.Highlighted
P:UIKit.UIViewConfigurationState.Pinned
P:UIKit.UIViewConfigurationState.Selected
P:UIKit.UIViewController.ModalInPresentation
-P:UIKit.UIViewPropertyAnimator.Reversed
-P:UIKit.UIViewPropertyAnimator.Running
P:UIKit.UIWebErrorArgs.Error
P:UIKit.UIWebView.ShouldStartLoad
P:UIKit.UIWindowScene.FullScreen
@@ -32902,10 +29446,8 @@ P:VideoToolbox.VTVideoEncoderSpecification.PreferredEncoderGpuRegistryId
P:VideoToolbox.VTVideoEncoderSpecification.RequiredEncoderGpuRegistryId
P:VideoToolbox.VTVideoEncoderSpecificationKeys.PreferredEncoderGpuRegistryId
P:VideoToolbox.VTVideoEncoderSpecificationKeys.RequiredEncoderGpuRegistryId
-P:Vision.IVNFaceObservationAccepting.InputFaceObservations
P:Vision.IVNRequestProgressProviding.Indeterminate
P:Vision.IVNRequestProgressProviding.ProgressHandler
-P:Vision.IVNRequestRevisionProviding.RequestRevision
P:Vision.VNClassifyImageRequest.SupportedRevisions
P:Vision.VNContoursObservation.RecognizedPointGroupKeyAll
P:Vision.VNDetectContoursRequest.SupportedRevisions
@@ -32944,8 +29486,6 @@ P:WebKit.IIndexedContainer`1.Item(System.Int32)
P:WebKit.IWebDocumentRepresentation.CanProvideDocumentSource
P:WebKit.IWebDocumentRepresentation.DocumentSource
P:WebKit.IWebDocumentRepresentation.Title
-P:WebKit.IWKPreviewActionItem.Identifier
-P:WebKit.IWKUrlSchemeTask.Request
P:WebKit.WebFailureToImplementPolicyEventArgs.Error
P:WebKit.WebFailureToImplementPolicyEventArgs.Frame
P:WebKit.WebFrameClientRedirectEventArgs.FireDate