diff --git a/docs/api/ARKit/ARSessionDelegate_Extensions.xml b/docs/api/ARKit/ARSessionDelegate_Extensions.xml new file mode 100644 index 000000000000..9545d0ce0fcf --- /dev/null +++ b/docs/api/ARKit/ARSessionDelegate_Extensions.xml @@ -0,0 +1,12 @@ + + + + The session that is supplying the information for the event. + The frame that was updated. + Indicates that has been updated due to tracking. + + Developers who override this method must be sure to call M:System.IDisposable.Dispose* on the when they have finished processing. Internally, ARKit only generates a new object when there are no more references to an existing frame. + If M:System.IDisposable.Dispose* is not called, ARKit will not produce until the GC collects the . This typically appears as a frozen, non-responsive, or "severely stuttering" video feed. + + + \ No newline at end of file diff --git a/docs/api/AVFoundation/AVCapturePhotoCaptureDelegate_Extensions.xml b/docs/api/AVFoundation/AVCapturePhotoCaptureDelegate_Extensions.xml new file mode 100644 index 000000000000..e7db02c08947 --- /dev/null +++ b/docs/api/AVFoundation/AVCapturePhotoCaptureDelegate_Extensions.xml @@ -0,0 +1,25 @@ + + + + To be added. + + To be added. + This parameter can be . + + + To be added. + This parameter can be . + + To be added. + + To be added. + This parameter can be . + + + To be added. + This parameter can be . + + Developers should not use this deprecated method. Developers should use the 'DidFinishProcessingPhoto' overload accepting a 'AVCapturePhoto' instead. + To be added. + + \ No newline at end of file diff --git a/docs/api/UIKit/UICollectionViewDelegate_Extensions.xml b/docs/api/UIKit/UICollectionViewDelegate_Extensions.xml new file mode 100644 index 000000000000..3308ce8cca7d --- /dev/null +++ b/docs/api/UIKit/UICollectionViewDelegate_Extensions.xml @@ -0,0 +1,12 @@ + + + + The collection view that originated the request. + Metadata for the focus change. + The T:UIKit.UIFocusAnimationController coordinating the focus-change animations. + Indicates that the focus changed as detailed in the . + + The values of and may be if focus was previously not within, or just departed, the . + + + \ No newline at end of file diff --git a/src/appkit.cs b/src/appkit.cs index 65dfe936580c..7bac7b67e0a6 100644 --- a/src/appkit.cs +++ b/src/appkit.cs @@ -18750,6 +18750,9 @@ interface NSPdfImageRep { [NoMacCatalyst] [BaseType (typeof (NSObject))] partial interface NSTableColumn : NSUserInterfaceItemIdentification, NSCoding { + /// To be added. + /// To be added. + /// To be added. [Export ("initWithIdentifier:")] [Sealed] NativeHandle Constructor (string identifier); @@ -21950,22 +21953,46 @@ interface INSToolbarDelegate { } [BaseType (typeof (NSObject))] [Model, Protocol] interface NSToolbarDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:"), DelegateName ("NSToolbarWillInsert"), DefaultValue (null)] NSToolbarItem WillInsertItem (NSToolbar toolbar, string itemIdentifier, bool willBeInserted); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("toolbarDefaultItemIdentifiers:"), DelegateName ("NSToolbarIdentifiers"), DefaultValue (null)] string [] DefaultItemIdentifiers (NSToolbar toolbar); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("toolbarAllowedItemIdentifiers:"), DelegateName ("NSToolbarIdentifiers"), DefaultValue (null)] string [] AllowedItemIdentifiers (NSToolbar toolbar); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("toolbarSelectableItemIdentifiers:"), DelegateName ("NSToolbarIdentifiers"), DefaultValue (null)] string [] SelectableItemIdentifiers (NSToolbar toolbar); + /// To be added. + /// To be added. + /// To be added. [Export ("toolbarWillAddItem:"), EventArgs ("NSNotification")] void WillAddItem (NSNotification notification); + /// To be added. + /// To be added. + /// To be added. [Export ("toolbarDidRemoveItem:"), EventArgs ("NSNotification")] void DidRemoveItem (NSNotification notification); @@ -22287,6 +22314,11 @@ interface INSTouchBarDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface NSTouchBarDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("touchBar:makeItemForIdentifier:"), DelegateName ("NSTouchBarMakeItem"), DefaultValue (null)] [return: NullAllowed] NSTouchBarItem MakeItem (NSTouchBar touchBar, string identifier); diff --git a/src/arkit.cs b/src/arkit.cs index 49c8a9e924c0..68db9a51ab07 100644 --- a/src/arkit.cs +++ b/src/arkit.cs @@ -844,19 +844,44 @@ interface IARSCNViewDelegate { } [BaseType (typeof (NSObject))] interface ARSCNViewDelegate : SCNSceneRendererDelegate, ARSessionObserver { + /// The renderer for the scene. + /// The anchor for the node to get. + /// Retrieves the corresponding to the specified . + /// To be added. + /// To be added. [Export ("renderer:nodeForAnchor:")] [return: NullAllowed] SCNNode GetNode (ISCNSceneRenderer renderer, ARAnchor anchor); + /// The renderer for the event. + /// The node that was added. + /// The anchor for the node that was added. + /// Developers may override this method to react to the adding of a that corresponds to a new . + /// To be added. [Export ("renderer:didAddNode:forAnchor:")] void DidAddNode (ISCNSceneRenderer renderer, SCNNode node, ARAnchor anchor); + /// The renderer for the scene. + /// The node that will be updated. + /// The anchor for the node that will be updated. + /// This method is called shortly before the properties of are updated to reflect the state of . + /// To be added. [Export ("renderer:willUpdateNode:forAnchor:")] void WillUpdateNode (ISCNSceneRenderer renderer, SCNNode node, ARAnchor anchor); + /// The renderer for the scene. + /// The node that was updated. + /// The anchor for the node that was updated. + /// This method is called shortly after has been updated to reflect the current state of . + /// To be added. [Export ("renderer:didUpdateNode:forAnchor:")] void DidUpdateNode (ISCNSceneRenderer renderer, SCNNode node, ARAnchor anchor); + /// The renderer for the scene. + /// The node that was removed. + /// The anchor for the node that was removed. + /// Developers may override this method to react to the removal of , which was removed after was removed. + /// To be added. [Export ("renderer:didRemoveNode:forAnchor:")] void DidRemoveNode (ISCNSceneRenderer renderer, SCNNode node, ARAnchor anchor); } @@ -900,19 +925,44 @@ interface IARSKViewDelegate { } [BaseType (typeof (NSObject))] interface ARSKViewDelegate : SKViewDelegate, ARSessionObserver { + /// The view that is rendering the scene. + /// The anchor for the node to get. + /// Retrieves the corresponding to the specified . If no corresponding node exists, returns . + /// To be added. + /// To be added. [Export ("view:nodeForAnchor:")] [return: NullAllowed] SKNode GetNode (ARSKView view, ARAnchor anchor); + /// The view that is rendering the scene. + /// The node that was added. + /// The anchor for the node that was added. + /// Developers may override this method to react to the adding of a that corresponds to a new . + /// To be added. [Export ("view:didAddNode:forAnchor:")] void DidAddNode (ARSKView view, SKNode node, ARAnchor anchor); + /// The view that is rendering the scene. + /// The node that will be updated. + /// The anchor for the node that will be updated. + /// This method is called shortly before the properties of are updated to reflect the state of . + /// To be added. [Export ("view:willUpdateNode:forAnchor:")] void WillUpdateNode (ARSKView view, SKNode node, ARAnchor anchor); + /// The view that is rendering the scene. + /// The node that was updated. + /// The anchor for the node that was updated. + /// This method is called shortly after has been updated to reflect the current state of . + /// To be added. [Export ("view:didUpdateNode:forAnchor:")] void DidUpdateNode (ARSKView view, SKNode node, ARAnchor anchor); + /// The view that is rendering the scene. + /// The node that was removed. + /// The anchor for the node that was removed. + /// Developers may override this method to react to the removal of , which was removed after was removed. + /// To be added. [Export ("view:didRemoveNode:forAnchor:")] void DidRemoveNode (ARSKView view, SKNode node, ARAnchor anchor); } @@ -998,21 +1048,43 @@ interface ARSession { [Protocol] interface ARSessionObserver { + /// The session that is supplying the information for the event. + /// The error that occurred. + /// Called when the stops running due to an error. + /// To be added. [Export ("session:didFailWithError:")] void DidFail (ARSession session, NSError error); + /// The session that is supplying the information for the event. + /// The camera whose tracking state changed. + /// Called when the changes, indicating a change in tracking quality. + /// To be added. [Export ("session:cameraDidChangeTrackingState:")] void CameraDidChangeTrackingState (ARSession session, ARCamera camera); + /// The session that is supplying the information for the event. + /// Developers may override this method to stop frame processing and device tracking when an interruption occurs. + /// To be added. [Export ("sessionWasInterrupted:")] void WasInterrupted (ARSession session); + /// The session that is supplying the information for the event. + /// Developers may override this method to begin frame processing and device tracking after an interruption. + /// To be added. [Export ("sessionInterruptionEnded:")] void InterruptionEnded (ARSession session); + /// The session in question. + /// Returns a Boolean value that tells whether the session should attempt to reorient after an interruption. + /// A Boolean value that tells whether the session should attempt to reorient after an interruption. + /// To be added. [Export ("sessionShouldAttemptRelocalization:")] bool ShouldAttemptRelocalization (ARSession session); + /// The session that is supplying the information for the event. + /// The audio buffer that was played. + /// Developers may implement this method that is called shortly after an audio buffer has been played. + /// To be added. [Export ("session:didOutputAudioSampleBuffer:")] void DidOutputAudioSampleBuffer (ARSession session, CMSampleBuffer audioSampleBuffer); @@ -1039,15 +1111,28 @@ interface IARSessionDelegate { } [BaseType (typeof (NSObject))] interface ARSessionDelegate : ARSessionObserver { + /// [Export ("session:didUpdateFrame:")] void DidUpdateFrame (ARSession session, ARFrame frame); + /// The session that is supplying the information for the event. + /// The anchors that were added. + /// Called when are added to the . + /// To be added. [Export ("session:didAddAnchors:")] void DidAddAnchors (ARSession session, ARAnchor [] anchors); + /// The session that is supplying the information for the event. + /// The anchors that were updated. + /// Indicates that have been updated due to tracking. + /// To be added. [Export ("session:didUpdateAnchors:")] void DidUpdateAnchors (ARSession session, ARAnchor [] anchors); + /// The session that is supplying the information for the event. + /// The anchors that were removed. + /// Called when have been removed from the . + /// To be added. [Export ("session:didRemoveAnchors:")] void DidRemoveAnchors (ARSession session, ARAnchor [] anchors); } diff --git a/src/avfoundation.cs b/src/avfoundation.cs index d82695e7017b..7f33b076ba6d 100644 --- a/src/avfoundation.cs +++ b/src/avfoundation.cs @@ -6274,18 +6274,36 @@ interface AVAssetResourceLoaderDelegate { [Export ("resourceLoader:shouldWaitForLoadingOfRequestedResource:")] bool ShouldWaitForLoadingOfRequestedResource (AVAssetResourceLoader resourceLoader, AVAssetResourceLoadingRequest loadingRequest); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("resourceLoader:didCancelLoadingRequest:")] void DidCancelLoadingRequest (AVAssetResourceLoader resourceLoader, AVAssetResourceLoadingRequest loadingRequest); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("resourceLoader:shouldWaitForResponseToAuthenticationChallenge:")] bool ShouldWaitForResponseToAuthenticationChallenge (AVAssetResourceLoader resourceLoader, NSUrlAuthenticationChallenge authenticationChallenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("resourceLoader:didCancelAuthenticationChallenge:")] void DidCancelAuthenticationChallenge (AVAssetResourceLoader resourceLoader, NSUrlAuthenticationChallenge authenticationChallenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("resourceLoader:shouldWaitForRenewalOfRequestedResource:")] bool ShouldWaitForRenewalOfRequestedResource (AVAssetResourceLoader resourceLoader, AVAssetResourceRenewalRequest renewalRequest); @@ -13341,6 +13359,8 @@ interface AVVideoCompositing { [Export ("startVideoCompositionRequest:")] void StartVideoCompositionRequest (AVAsynchronousVideoCompositionRequest asyncVideoCompositionRequest); + /// To be added. + /// To be added. [Export ("cancelAllPendingVideoCompositionRequests")] void CancelAllPendingVideoCompositionRequests (); @@ -13504,18 +13524,40 @@ interface IAVVideoCompositionValidationHandling { } [Protocol] [DisableDefaultCtor] interface AVVideoCompositionValidationHandling { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("videoComposition:shouldContinueValidatingAfterFindingInvalidValueForKey:")] bool ShouldContinueValidatingAfterFindingInvalidValueForKey (AVVideoComposition videoComposition, string key); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("videoComposition:shouldContinueValidatingAfterFindingEmptyTimeRange:")] bool ShouldContinueValidatingAfterFindingEmptyTimeRange (AVVideoComposition videoComposition, CMTimeRange timeRange); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("videoComposition:shouldContinueValidatingAfterFindingInvalidTimeRangeInInstruction:")] bool ShouldContinueValidatingAfterFindingInvalidTimeRangeInInstruction (AVVideoComposition videoComposition, AVVideoCompositionInstruction videoCompositionInstruction); + /// 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 ("videoComposition:shouldContinueValidatingAfterFindingInvalidTrackIDInInstruction:layerInstruction:asset:")] bool ShouldContinueValidatingAfterFindingInvalidTrackIDInInstruction (AVVideoComposition videoComposition, AVVideoCompositionInstruction videoCompositionInstruction, AVVideoCompositionLayerInstruction layerInstruction, AVAsset asset); @@ -14432,9 +14474,22 @@ interface IAVCaptureDepthDataOutputDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface AVCaptureDepthDataOutputDelegate { + /// The output that provided the data. + /// The captured data. + /// The time the data was captured. + /// The capture connection. + /// Method that is called when depth data is output. + /// To be added. [Export ("depthDataOutput:didOutputDepthData:timestamp:connection:")] void DidOutputDepthData (AVCaptureDepthDataOutput output, AVDepthData depthData, CMTime timestamp, AVCaptureConnection connection); + /// The output that dropped the data. + /// The dropped data. + /// The time the data was captured. + /// The capture connection. + /// The reason the depth data was dropped. + /// Method that is called when depth data is dropped. + /// To be added. [Export ("depthDataOutput:didDropDepthData:timestamp:connection:reason:")] void DidDropDepthData (AVCaptureDepthDataOutput output, AVDepthData depthData, CMTime timestamp, AVCaptureConnection connection, AVCaptureOutputDataDroppedReason reason); } @@ -14925,10 +14980,20 @@ interface AVCaptureVideoDataOutput { [Model] [Protocol] interface AVCaptureVideoDataOutputSampleBufferDelegate { + /// The capture output on which the frame was captured. + /// The video frame data, part of a small finite pool of buffers. + /// The connection on which the video frame was received. + /// To be added. + /// To be added. [Export ("captureOutput:didOutputSampleBuffer:fromConnection:")] // CMSampleBufferRef void DidOutputSampleBuffer (AVCaptureOutput captureOutput, CMSampleBuffer sampleBuffer, AVCaptureConnection connection); + /// The capture output on which the frame was captured. + /// Buffer containing information about the dropped frame; No video data is actually included. + /// The connection on which the video frame was received. + /// To be added. + /// To be added. [Export ("captureOutput:didDropSampleBuffer:fromConnection:")] void DidDropSampleBuffer (AVCaptureOutput captureOutput, CMSampleBuffer sampleBuffer, AVCaptureConnection connection); } @@ -14986,6 +15051,11 @@ interface AVCaptureAudioDataOutput { [Model] [Protocol] interface AVCaptureAudioDataOutputSampleBufferDelegate { + /// 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); } @@ -15126,6 +15196,11 @@ interface AVCaptureFileOutput { [TV (17, 0)] [MacCatalyst (13, 1)] interface AVCaptureFileOutputRecordingDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("captureOutput:didStartRecordingToOutputFileAtURL:fromConnections:")] void DidStartRecording (AVCaptureFileOutput captureOutput, NSUrl outputFileUrl, NSObject [] connections); @@ -15137,10 +15212,20 @@ interface AVCaptureFileOutputRecordingDelegate { [Export ("captureOutput:didFinishRecordingToOutputFileAtURL:fromConnections:error:"), CheckDisposed] void FinishedRecording (AVCaptureFileOutput captureOutput, NSUrl outputFileUrl, NSObject [] connections, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (18, 0), iOS (18, 0), TV (18, 0)] [Export ("captureOutput:didPauseRecordingToOutputFileAtURL:fromConnections:")] void DidPauseRecording (AVCaptureFileOutput captureOutput, NSUrl outputFileUrl, AVCaptureConnection [] connections); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (18, 0), iOS (18, 0), TV (18, 0)] [Export ("captureOutput:didResumeRecordingToOutputFileAtURL:fromConnections:")] void DidResumeRecording (AVCaptureFileOutput captureOutput, NSUrl outputFileUrl, AVCaptureConnection [] connections); @@ -15197,6 +15282,11 @@ interface IAVCaptureMetadataOutputObjectsDelegate { } [Model] [Protocol] interface AVCaptureMetadataOutputObjectsDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("captureOutput:didOutputMetadataObjects:fromConnection:")] void DidOutputMetadataObjects (AVCaptureMetadataOutput captureOutput, AVMetadataObject [] metadataObjects, AVCaptureConnection connection); } @@ -15645,15 +15735,28 @@ interface IAVCapturePhotoCaptureDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface AVCapturePhotoCaptureDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("captureOutput:willBeginCaptureForResolvedSettings:")] void WillBeginCapture (AVCapturePhotoOutput captureOutput, AVCaptureResolvedPhotoSettings resolvedSettings); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("captureOutput:willCapturePhotoForResolvedSettings:")] void WillCapturePhoto (AVCapturePhotoOutput captureOutput, AVCaptureResolvedPhotoSettings resolvedSettings); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("captureOutput:didCapturePhotoForResolvedSettings:")] void DidCapturePhoto (AVCapturePhotoOutput captureOutput, AVCaptureResolvedPhotoSettings resolvedSettings); + /// [NoMac, NoTV] [Deprecated (PlatformName.iOS, 11, 0, message: "Use the 'DidFinishProcessingPhoto' overload accepting a 'AVCapturePhoto' instead.")] [MacCatalyst (13, 1)] @@ -15661,6 +15764,26 @@ interface AVCapturePhotoCaptureDelegate { [Export ("captureOutput:didFinishProcessingPhotoSampleBuffer:previewPhotoSampleBuffer:resolvedSettings:bracketSettings:error:")] void DidFinishProcessingPhoto (AVCapturePhotoOutput captureOutput, [NullAllowed] CMSampleBuffer photoSampleBuffer, [NullAllowed] CMSampleBuffer previewPhotoSampleBuffer, AVCaptureResolvedPhotoSettings resolvedSettings, [NullAllowed] AVCaptureBracketedStillImageSettings bracketSettings, [NullAllowed] NSError error); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. [NoMac, NoTV] [Deprecated (PlatformName.iOS, 11, 0, message: "Use the 'DidFinishProcessingPhoto' overload accepting a 'AVCapturePhoto' instead.")] [MacCatalyst (13, 1)] @@ -15668,20 +15791,49 @@ interface AVCapturePhotoCaptureDelegate { [Export ("captureOutput:didFinishProcessingRawPhotoSampleBuffer:previewPhotoSampleBuffer:resolvedSettings:bracketSettings:error:")] void DidFinishProcessingRawPhoto (AVCapturePhotoOutput captureOutput, [NullAllowed] CMSampleBuffer rawSampleBuffer, [NullAllowed] CMSampleBuffer previewPhotoSampleBuffer, AVCaptureResolvedPhotoSettings resolvedSettings, [NullAllowed] AVCaptureBracketedStillImageSettings bracketSettings, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (14, 0)] [Export ("captureOutput:didFinishProcessingPhoto:error:")] void DidFinishProcessingPhoto (AVCapturePhotoOutput output, AVCapturePhoto photo, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("captureOutput:didFinishRecordingLivePhotoMovieForEventualFileAtURL:resolvedSettings:")] void DidFinishRecordingLivePhotoMovie (AVCapturePhotoOutput captureOutput, NSUrl outputFileUrl, AVCaptureResolvedPhotoSettings resolvedSettings); + /// 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. [NoMac] [MacCatalyst (13, 1)] [Export ("captureOutput:didFinishProcessingLivePhotoToMovieFileAtURL:duration:photoDisplayTime:resolvedSettings:error:")] void DidFinishProcessingLivePhotoMovie (AVCapturePhotoOutput captureOutput, NSUrl outputFileUrl, CMTime duration, CMTime photoDisplayTime, AVCaptureResolvedPhotoSettings resolvedSettings, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. [Export ("captureOutput:didFinishCaptureForResolvedSettings:error:")] void DidFinishCapture (AVCapturePhotoOutput captureOutput, AVCaptureResolvedPhotoSettings resolvedSettings, [NullAllowed] NSError error); @@ -18872,6 +19024,11 @@ interface IAVPlayerItemMetadataOutputPushDelegate { } [Protocol, Model] interface AVPlayerItemMetadataOutputPushDelegate : AVPlayerItemOutputPushDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("metadataOutput:didOutputTimedMetadataGroups:fromPlayerItemTrack:")] void DidOutputTimedMetadataGroups (AVPlayerItemMetadataOutput output, AVTimedMetadataGroup [] groups, [NullAllowed] AVPlayerItemTrack track); @@ -19258,9 +19415,15 @@ interface IAVPlayerItemOutputPullDelegate { } [Model] [Protocol] interface AVPlayerItemOutputPullDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("outputMediaDataWillChange:")] void OutputMediaDataWillChange (AVPlayerItemOutput sender); + /// To be added. + /// To be added. + /// To be added. [Export ("outputSequenceWasFlushed:")] void OutputSequenceWasFlushed (AVPlayerItemOutput output); } @@ -19270,6 +19433,9 @@ interface AVPlayerItemOutputPullDelegate { [Model] [Protocol] interface AVPlayerItemOutputPushDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("outputSequenceWasFlushed:")] void OutputSequenceWasFlushed (AVPlayerItemOutput output); } @@ -19281,6 +19447,12 @@ interface IAVPlayerItemLegibleOutputPushDelegate { } [Model] [Protocol] interface AVPlayerItemLegibleOutputPushDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("legibleOutput:didOutputAttributedStrings:nativeSampleBuffers:forItemTime:")] void DidOutputAttributedStrings (AVPlayerItemLegibleOutput output, NSAttributedString [] strings, CMSampleBuffer [] nativeSamples, CMTime itemTime); @@ -20861,24 +21033,59 @@ interface IAVAssetDownloadDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface AVAssetDownloadDelegate : NSUrlSessionTaskDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:assetDownloadTask:didLoadTimeRange:totalTimeRangesLoaded:timeRangeExpectedToLoad:")] void DidLoadTimeRange (NSUrlSession session, AVAssetDownloadTask assetDownloadTask, CMTimeRange timeRange, NSValue [] loadedTimeRanges, CMTimeRange timeRangeExpectedToLoad); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:assetDownloadTask:didResolveMediaSelection:")] void DidResolveMediaSelection (NSUrlSession session, AVAssetDownloadTask assetDownloadTask, AVMediaSelection resolvedMediaSelection); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (15, 0)] [Export ("URLSession:assetDownloadTask:didFinishDownloadingToURL:")] void DidFinishDownloadingToUrl (NSUrlSession session, AVAssetDownloadTask assetDownloadTask, NSUrl location); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (15, 0)] [Export ("URLSession:aggregateAssetDownloadTask:willDownloadToURL:")] void WillDownloadToUrl (NSUrlSession session, AVAggregateAssetDownloadTask aggregateAssetDownloadTask, NSUrl location); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (15, 0)] [Export ("URLSession:aggregateAssetDownloadTask:didCompleteForMediaSelection:")] void DidCompleteForMediaSelection (NSUrlSession session, AVAggregateAssetDownloadTask aggregateAssetDownloadTask, AVMediaSelection mediaSelection); + /// 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 (15, 0)] [Export ("URLSession:aggregateAssetDownloadTask:didLoadTimeRange:totalTimeRangesLoaded:timeRangeExpectedToLoad:forMediaSelection:")] void DidLoadTimeRange (NSUrlSession session, AVAggregateAssetDownloadTask aggregateAssetDownloadTask, CMTimeRange timeRange, NSValue [] loadedTimeRanges, CMTimeRange timeRangeExpectedToLoad, AVMediaSelection mediaSelection); @@ -21602,30 +21809,64 @@ interface AVContentKeySessionDelegate { [Export ("contentKeySession:didProvideContentKeyRequest:")] void DidProvideContentKeyRequest (AVContentKeySession session, AVContentKeyRequest keyRequest); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("contentKeySession:didProvideRenewingContentKeyRequest:")] void DidProvideRenewingContentKeyRequest (AVContentKeySession session, AVContentKeyRequest keyRequest); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("contentKeySession:didProvidePersistableContentKeyRequest:")] void DidProvidePersistableContentKeyRequest (AVContentKeySession session, AVPersistableContentKeyRequest keyRequest); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("contentKeySession:contentKeyRequest:didFailWithError:")] void DidFail (AVContentKeySession session, AVContentKeyRequest keyRequest, NSError err); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("contentKeySession:shouldRetryContentKeyRequest:reason:")] bool ShouldRetryContentKeyRequest (AVContentKeySession session, AVContentKeyRequest keyRequest, string retryReason); + /// To be added. + /// To be added. + /// To be added. [Export ("contentKeySessionContentProtectionSessionIdentifierDidChange:")] void DidChange (AVContentKeySession session); + /// The session that is supplying the information for the event. + /// The updated key. + /// The identifier for the updated key. + /// Developers may override this method to handle a request for a an updated that was made with the specified . + /// To be added. [TV (17, 0)] [MacCatalyst (13, 1)] [Export ("contentKeySession:didUpdatePersistableContentKey:forContentKeyIdentifier:")] void DidUpdate (AVContentKeySession session, NSData persistableContentKey, NSObject keyIdentifier); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("contentKeySession:contentKeyRequestDidSucceed:")] void DidSucceed (AVContentKeySession session, AVContentKeyRequest keyRequest); + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("contentKeySessionDidGenerateExpiredSessionReport:")] void DidGenerateExpiredSessionReport (AVContentKeySession session); @@ -22037,18 +22278,35 @@ interface IAVCapturePhotoFileDataRepresentationCustomizer { } [TV (17, 0), NoMac] [Protocol] interface AVCapturePhotoFileDataRepresentationCustomizer { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("replacementMetadataForPhoto:")] [return: NullAllowed] NSDictionary GetReplacementMetadata (AVCapturePhoto photo); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("replacementEmbeddedThumbnailPixelBufferWithPhotoFormat:forPhoto:")] [return: NullAllowed] CVPixelBuffer GetReplacementEmbeddedThumbnail ([NullAllowed] out NSDictionary replacementEmbeddedThumbnailPhotoFormatOut, AVCapturePhoto photo); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("replacementDepthDataForPhoto:")] [return: NullAllowed] AVDepthData GetReplacementDepthData (AVCapturePhoto photo); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("replacementPortraitEffectsMatteForPhoto:")] [return: NullAllowed] AVPortraitEffectsMatte GetReplacementPortraitEffectsMatte (AVCapturePhoto photo); diff --git a/src/avkit.cs b/src/avkit.cs index 27fba885c58c..11008d3c009f 100644 --- a/src/avkit.cs +++ b/src/avkit.cs @@ -191,21 +191,41 @@ interface IAVPictureInPictureControllerDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface AVPictureInPictureControllerDelegate { + /// To be added. + /// Picture In Picture playback is about to start. + /// To be added. [Export ("pictureInPictureControllerWillStartPictureInPicture:")] void WillStartPictureInPicture (AVPictureInPictureController pictureInPictureController); + /// To be added. + /// Picture In Picture playback has started. + /// To be added. [Export ("pictureInPictureControllerDidStartPictureInPicture:")] void DidStartPictureInPicture (AVPictureInPictureController pictureInPictureController); + /// To be added. + /// To be added. + /// Picture In Picture playback failed to start. + /// To be added. [Export ("pictureInPictureController:failedToStartPictureInPictureWithError:")] void FailedToStartPictureInPicture (AVPictureInPictureController pictureInPictureController, NSError error); + /// To be added. + /// Picture In Picture playback is about to stop. + /// To be added. [Export ("pictureInPictureControllerWillStopPictureInPicture:")] void WillStopPictureInPicture (AVPictureInPictureController pictureInPictureController); + /// To be added. + /// Picture In Picture playback has stopped. + /// To be added. [Export ("pictureInPictureControllerDidStopPictureInPicture:")] void DidStopPictureInPicture (AVPictureInPictureController pictureInPictureController); + /// To be added. + /// To be added. + /// Picture In Picture playback is about to stop. Called to give the app the opportunity to provide a playback user interface by passing to . + /// To be added. [Export ("pictureInPictureController:restoreUserInterfaceForPictureInPictureStopWithCompletionHandler:")] void RestoreUserInterfaceForPictureInPicture (AVPictureInPictureController pictureInPictureController, Action completionHandler); } @@ -441,36 +461,60 @@ interface IAVPlayerViewControllerDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface AVPlayerViewControllerDelegate { + /// To be added. + /// Picture In Picture playback is about to start. + /// To be added. [TV (14, 0)] [MacCatalyst (13, 1)] [Export ("playerViewControllerWillStartPictureInPicture:")] void WillStartPictureInPicture (AVPlayerViewController playerViewController); + /// To be added. + /// Picture In Picture playback has started. + /// To be added. [TV (14, 0)] [MacCatalyst (13, 1)] [Export ("playerViewControllerDidStartPictureInPicture:")] void DidStartPictureInPicture (AVPlayerViewController playerViewController); + /// To be added. + /// To be added. + /// Picture In Picture playback failed to start. + /// To be added. [TV (14, 0)] [MacCatalyst (13, 1)] [Export ("playerViewController:failedToStartPictureInPictureWithError:")] void FailedToStartPictureInPicture (AVPlayerViewController playerViewController, NSError error); + /// To be added. + /// Picture In Picture playback is about to stop. + /// To be added. [TV (14, 0)] [MacCatalyst (13, 1)] [Export ("playerViewControllerWillStopPictureInPicture:")] void WillStopPictureInPicture (AVPlayerViewController playerViewController); + /// To be added. + /// Picture In Picture playback has stopped. + /// To be added. [TV (14, 0)] [MacCatalyst (13, 1)] [Export ("playerViewControllerDidStopPictureInPicture:")] void DidStopPictureInPicture (AVPlayerViewController playerViewController); + /// To be added. + /// App developers should return to indicate that the player viewer should dismiss when Picture In Picture playback starts, or to prevent this. + /// To be added. + /// To be added. [TV (14, 0)] [MacCatalyst (13, 1)] [Export ("playerViewControllerShouldAutomaticallyDismissAtPictureInPictureStart:")] bool ShouldAutomaticallyDismissAtPictureInPictureStart (AVPlayerViewController playerViewController); + /// To be added. + /// To be added. + /// Picture In Picture playback is about to stop. Called to give the app the opportunity to provide a playback user interface by passing to . + /// To be added. [TV (14, 0)] [MacCatalyst (13, 1)] [Export ("playerViewController:restoreUserInterfaceForPictureInPictureStopWithCompletionHandler:")] @@ -621,6 +665,9 @@ interface AVPlayerViewControllerAnimationCoordinator { [NoMacCatalyst] [BaseType (typeof (NSView))] interface AVPlayerView { + /// To be added. + /// To be added. + /// To be added. [Export ("initWithFrame:")] NativeHandle Constructor (CGRect frameRect); @@ -774,6 +821,9 @@ interface AVPlayerViewPictureInPictureDelegate { [NoMacCatalyst] [BaseType (typeof (NSView))] interface AVCaptureView { + /// To be added. + /// To be added. + /// To be added. [Export ("initWithFrame:")] NativeHandle Constructor (CGRect frameRect); @@ -996,9 +1046,15 @@ interface IAVRoutePickerViewDelegate { } [BaseType (typeof (NSObject))] interface AVRoutePickerViewDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("routePickerViewWillBeginPresentingRoutes:")] void WillBeginPresentingRoutes (AVRoutePickerView routePickerView); + /// To be added. + /// To be added. + /// To be added. [Export ("routePickerViewDidEndPresentingRoutes:")] void DidEndPresentingRoutes (AVRoutePickerView routePickerView); } diff --git a/src/callkit.cs b/src/callkit.cs index b64309466cb5..1cea8cdb8708 100644 --- a/src/callkit.cs +++ b/src/callkit.cs @@ -582,42 +582,91 @@ interface CXProviderDelegate { [Export ("providerDidReset:")] void DidReset (CXProvider provider); + /// The provider to which the provider delegate belongs. + /// The system began a call for the app. + /// To be added. [Export ("providerDidBegin:")] void DidBegin (CXProvider provider); + /// The provider to which the provider delegate belongs. + /// The transaction to run. + /// Atomically runs the actions that are contained in the . + /// + /// if the transaction succeeded. Otherwise, . + /// To be added. [Export ("provider:executeTransaction:")] bool ExecuteTransaction (CXProvider provider, CXTransaction transaction); + /// The provider to which the provider delegate belongs. + /// The start call action to perform. + /// Performs a start call action. + /// To be added. [Export ("provider:performStartCallAction:")] void PerformStartCallAction (CXProvider provider, CXStartCallAction action); + /// The provider to which the provider delegate belongs. + /// The answer call action to perform. + /// Performs an answer call action. + /// To be added. [Export ("provider:performAnswerCallAction:")] void PerformAnswerCallAction (CXProvider provider, CXAnswerCallAction action); + /// The provider to which the provider delegate belongs. + /// The end call action to perform. + /// Performs an end call action. + /// To be added. [Export ("provider:performEndCallAction:")] void PerformEndCallAction (CXProvider provider, CXEndCallAction action); + /// The provider to which the provider delegate belongs. + /// The hold call action to perform. + /// Performs a hold call action. + /// This method can also be used to resume, or unhold, a call. [Export ("provider:performSetHeldCallAction:")] void PerformSetHeldCallAction (CXProvider provider, CXSetHeldCallAction action); + /// The provider to which the provider delegate belongs. + /// The set muted call action to perform. + /// Performs a set muted call action. + /// This method can also be used to unmute a call. [Export ("provider:performSetMutedCallAction:")] void PerformSetMutedCallAction (CXProvider provider, CXSetMutedCallAction action); + /// The provider to which the provider delegate belongs. + /// The set group call action to perform. + /// Performs a set group call action. + /// This method can also be used to unset a group call. [Export ("provider:performSetGroupCallAction:")] void PerformSetGroupCallAction (CXProvider provider, CXSetGroupCallAction action); + /// The provider to which the provider delegate belongs. + /// The DTMF play call action to perform. + /// Performs a DTMF play call action. + /// To be added. [Export ("provider:performPlayDTMFCallAction:")] void PerformPlayDtmfCallAction (CXProvider provider, CXPlayDtmfCallAction action); + /// The provider to which the provider delegate belongs. + /// The action that timed out. + /// Method that is called when a timeout is hit before an action is finished performing. + /// To be added. [Export ("provider:timedOutPerformingAction:")] void TimedOutPerformingAction (CXProvider provider, CXAction action); // Xcode 12 beta 1 issue, AVAudioSession does not appear on Mac OS X but this methods do: https://github.com/xamarin/maccore/issues/2257 + /// The provider to which the provider delegate belongs. + /// To be added. + /// The system activated a telephony-priority audio session for the call. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("provider:didActivateAudioSession:")] void DidActivateAudioSession (CXProvider provider, AVAudioSession audioSession); + /// The provider to which the provider delegate belongs. + /// The audio session that was deactivated. + /// The system deactivated an audio session that the app had been using for a call. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("provider:didDeactivateAudioSession:")] diff --git a/src/carplay.cs b/src/carplay.cs index 7ee1c671a9c3..5a562fb5d6eb 100644 --- a/src/carplay.cs +++ b/src/carplay.cs @@ -590,15 +590,35 @@ interface ICPInterfaceControllerDelegate { } [BaseType (typeof (NSObject))] interface CPInterfaceControllerDelegate { + /// The template that will appear. + /// + /// if the transition is automated. Otherwise, . + /// Method that is called when a template is about to appear. + /// To be added. [Export ("templateWillAppear:animated:")] void TemplateWillAppear (CPTemplate aTemplate, bool animated); + /// The template that appeared. + /// + /// if the transition is automated. Otherwise, . + /// Method that is called when a template appears. + /// To be added. [Export ("templateDidAppear:animated:")] void TemplateDidAppear (CPTemplate aTemplate, bool animated); + /// The template that will disappear. + /// + /// if the transition is automated. Otherwise, . + /// Method that is called when a template is about to disappear. + /// To be added. [Export ("templateWillDisappear:animated:")] void TemplateWillDisappear (CPTemplate aTemplate, bool animated); + /// The template that disappeared. + /// + /// if the transition is automated. Otherwise, . + /// Method that is called when a template disappears. + /// To be added. [Export ("templateDidDisappear:animated:")] void TemplateDidDisappear (CPTemplate aTemplate, bool animated); } @@ -627,9 +647,17 @@ interface CPApplicationDelegate : UIApplicationDelegate { [Export ("application:didDisconnectCarInterfaceController:fromWindow:")] void DidDisconnectCarInterfaceController (UIApplication application, CPInterfaceController interfaceController, CPWindow window); + /// The application in which a navigation alert was selected. + /// The selected navigation alert. + /// Method that is called when the user selects a navigation alert. + /// To be added. [Export ("application:didSelectNavigationAlert:")] void DidSelectNavigationAlert (UIApplication application, CPNavigationAlert navigationAlert); + /// The application in which a maneuver was selected. + /// The selected maneuver. + /// Method that is called when the user selects a maneuver. + /// To be added. [Export ("application:didSelectManeuver:")] void DidSelectManeuver (UIApplication application, CPManeuver maneuver); } @@ -1129,63 +1157,151 @@ interface CPMapTemplateDelegate { [Export ("mapTemplateShouldProvideNavigationMetadata:")] bool ShouldProvideNavigationMetadata (CPMapTemplate mapTemplate); + /// The template for the map to query. + /// The maneuver about which to query. + /// Method that is called to determine whether a navigation maneuver notification should be shown when the app is running in the background. + /// + /// if the notification should be shown. Otherwise, . + /// To be added. [Export ("mapTemplate:shouldShowNotificationForManeuver:")] bool ShouldShowNotificationForManeuver (CPMapTemplate mapTemplate, CPManeuver maneuver); + /// The template for the map to query. + /// To be added. + /// The travel estimates about which to query. + /// Method that is called to determine whether the specified travel estimate updates should be shown when the app is running in the background. + /// + /// if the specified travel estimate updates should be shown. Otherwise, . + /// To be added. [Export ("mapTemplate:shouldUpdateNotificationForManeuver:withTravelEstimates:")] bool ShouldUpdateNotificationForManeuver (CPMapTemplate mapTemplate, CPManeuver maneuver, CPTravelEstimates travelEstimates); + /// The template for the map to query. + /// The navigation alert about which to query. + /// Method that is called to determine whether a navigation alert should be shown when the app is running in the background. + /// + /// if the navigation alert should be shown. Otherwise, . + /// To be added. [Export ("mapTemplate:shouldShowNotificationForNavigationAlert:")] bool ShouldShowNotificationForNavigationAlert (CPMapTemplate mapTemplate, CPNavigationAlert navigationAlert); + /// The template for the map for which a panning interface was shown. + /// Method that is called when a panning interface is shown. + /// To be added. [Export ("mapTemplateDidShowPanningInterface:")] void DidShowPanningInterface (CPMapTemplate mapTemplate); + /// The template for the map on which a panning interface will be dismissed. + /// Method that is called just before a panning interface is dismissed. + /// To be added. [Export ("mapTemplateWillDismissPanningInterface:")] void WillDismissPanningInterface (CPMapTemplate mapTemplate); + /// The template for the map whose panning interface was dismissed. + /// Method that is called when a panning interface is dismissed. + /// To be added. [Export ("mapTemplateDidDismissPanningInterface:")] void DidDismissPanningInterface (CPMapTemplate mapTemplate); + /// The template for the map for which a pan was started. + /// The direction of the pan. + /// Method that is called when a pan begins. + /// To be added. [Export ("mapTemplate:panBeganWithDirection:")] void PanBegan (CPMapTemplate mapTemplate, CPPanDirection direction); + /// The template for the map for which a pan was ended. + /// The direction of the pan. + /// Method that is called when a pan ends. + /// To be added. [Export ("mapTemplate:panEndedWithDirection:")] void PanEnded (CPMapTemplate mapTemplate, CPPanDirection direction); + /// The template for the map to pan. + /// The direction to pan. + /// Pans the map. + /// To be added. [Export ("mapTemplate:panWithDirection:")] void Pan (CPMapTemplate mapTemplate, CPPanDirection direction); + /// The template for the map that is panning. + /// Method that is called when a pan gesture starts. + /// To be added. [Export ("mapTemplateDidBeginPanGesture:")] void DidBeginPanGesture (CPMapTemplate mapTemplate); + /// The template for the map whose pan gesture was updated. + /// To be added. + /// The pan velocity. + /// Method that is called when a pan gesture is updated. + /// To be added. [Export ("mapTemplate:didUpdatePanGestureWithTranslation:velocity:")] void DidUpdatePanGesture (CPMapTemplate mapTemplate, CGPoint translation, CGPoint velocity); + /// The template for the map whose pan gesture ended. + /// To be added. + /// Method that is called when a panning interface ends. + /// To be added. [Export ("mapTemplate:didEndPanGestureWithVelocity:")] void DidEndPanGesture (CPMapTemplate mapTemplate, CGPoint velocity); + /// The template for the map for which a navigation alert will be shown. + /// The navigation alert that will be shown. + /// Method that is called just before a navigation alert is shown. + /// To be added. [Export ("mapTemplate:willShowNavigationAlert:")] void WillShowNavigationAlert (CPMapTemplate mapTemplate, CPNavigationAlert navigationAlert); + /// The template for the map for which a navigation alert was shown. + /// The alert that was shown. + /// Method that is called when a navigation alert is shown. + /// To be added. [Export ("mapTemplate:didShowNavigationAlert:")] void DidShowNavigationAlert (CPMapTemplate mapTemplate, CPNavigationAlert navigationAlert); + /// The template for the map for which a navigation alert will be dismissed. + /// The alert that will be dismissed. + /// The reason the alert will be dismissed. + /// Method that is called just before a navigation alert is dismissed. + /// To be added. [Export ("mapTemplate:willDismissNavigationAlert:dismissalContext:")] void WillDismissNavigationAlert (CPMapTemplate mapTemplate, CPNavigationAlert navigationAlert, CPNavigationAlertDismissalContext dismissalContext); + /// The template for the map whose navigation alert was canceled. + /// The alert that was canceled. + /// The reason the alert was dismissed. + /// Method that is called when a navigation alert is canceled. + /// To be added. [Export ("mapTemplate:didDismissNavigationAlert:dismissalContext:")] void DidDismissNavigationAlert (CPMapTemplate mapTemplate, CPNavigationAlert navigationAlert, CPNavigationAlertDismissalContext dismissalContext); + /// To be added + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("mapTemplate:selectedPreviewForTrip:usingRouteChoice:")] void SelectedPreview (CPMapTemplate mapTemplate, CPTrip trip, CPRouteChoice routeChoice); + /// The template for the map on which a trip was started. + /// The trip that started. + /// The route choice for the trip that started. + /// Method that is called when a trip starts. + /// To be added. [Export ("mapTemplate:startedTrip:usingRouteChoice:")] void StartedTrip (CPMapTemplate mapTemplate, CPTrip trip, CPRouteChoice routeChoice); + /// The template for the map whose navigation was canceled. + /// Method that is called when navigation is canceled. + /// To be added. [Export ("mapTemplateDidCancelNavigation:")] void DidCancelNavigation (CPMapTemplate mapTemplate); + /// The template for the map that . + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("mapTemplate:displayStyleForManeuver:")] CPManeuverDisplayStyle GetDisplayStyle (CPMapTemplate mapTemplate, CPManeuver maneuver); } @@ -1328,6 +1444,9 @@ interface CPSearchTemplateDelegate { [Export ("searchTemplate:selectedResult:completionHandler:")] void SelectedResult (CPSearchTemplate searchTemplate, CPListItem item, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. [Export ("searchTemplateSearchButtonPressed:")] void SearchButtonPressed (CPSearchTemplate searchTemplate); } diff --git a/src/coreanimation.cs b/src/coreanimation.cs index a5f91b272fee..6ae9d20aa8f9 100644 --- a/src/coreanimation.cs +++ b/src/coreanimation.cs @@ -2113,6 +2113,9 @@ interface CALayerDelegate { [Deprecated (PlatformName.iOS, 12, 0, message: "Use 'CAMetalLayer' instead.")] [BaseType (typeof (CALayer))] interface CAEAGLLayer : EAGLDrawable { + /// Creates and returns a new . + /// To be added. + /// To be added. [Export ("layer"), New, Static] CALayer Create (); diff --git a/src/coreaudiokit.cs b/src/coreaudiokit.cs index a724560cae50..4c5e0db29c3b 100644 --- a/src/coreaudiokit.cs +++ b/src/coreaudiokit.cs @@ -143,6 +143,9 @@ interface AUPannerView { [BaseType (typeof (NSWindowController), Name = "CABTLEMIDIWindowController")] interface CABtleMidiWindowController { + /// To be added. + /// To be added. + /// To be added. [Export ("initWithWindow:")] NativeHandle Constructor ([NullAllowed] NSWindow window); } @@ -152,6 +155,10 @@ interface CABtleMidiWindowController { [BaseType (typeof (NSViewController))] interface CAInterDeviceAudioViewController { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("initWithNibName:bundle:")] NativeHandle Constructor ([NullAllowed] string nibNameOrNull, [NullAllowed] NSBundle nibBundleOrNull); } @@ -162,6 +169,9 @@ interface CAInterDeviceAudioViewController { [BaseType (typeof (NSWindowController))] interface CANetworkBrowserWindowController { + /// To be added. + /// To be added. + /// To be added. [Export ("initWithWindow:")] NativeHandle Constructor ([NullAllowed] NSWindow window); @@ -232,6 +242,12 @@ interface CABTMidiLocalPeripheralViewController { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'AudioUnit' instead.")] [BaseType (typeof (UIView))] interface CAInterAppAudioSwitcherView { + /// Frame used by the view, expressed in iOS points. + /// Initializes the CAInterAppAudioSwitcherView with the specified frame. + /// + /// This constructor is used to programmatically create a new instance of CAInterAppAudioSwitcherView with the specified dimension in the frame. The object will only be displayed once it has been added to a view hierarchy by calling AddSubview in a containing view. + /// This constructor is not invoked when deserializing objects from storyboards or XIB filesinstead the constructor that takes an NSCoder parameter is invoked. + /// [Export ("initWithFrame:")] NativeHandle Constructor (CGRect bounds); @@ -257,6 +273,12 @@ interface CAInterAppAudioSwitcherView { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'AudioUnit' instead.")] [BaseType (typeof (UIView))] interface CAInterAppAudioTransportView { + /// Frame used by the view, expressed in iOS points. + /// Initializes the CAInterAppAudioTransportView with the specified frame. + /// + /// This constructor is used to programmatically create a new instance of CAInterAppAudioTransportView with the specified dimension in the frame. The object will only be displayed once it has been added to a view hierarchy by calling AddSubview in a containing view. + /// This constructor is not invoked when deserializing objects from storyboards or XIB filesinstead the constructor that takes an NSCoder parameter is invoked. + /// [Export ("initWithFrame:")] NativeHandle Constructor (CGRect bounds); diff --git a/src/coreimage.cs b/src/coreimage.cs index cc6640bae6e8..7ee5fb5bae4e 100644 --- a/src/coreimage.cs +++ b/src/coreimage.cs @@ -331,6 +331,10 @@ interface CIContext { CIContext Create (); #if HAS_OPENGLES + /// To be added. + /// Creates a new from the provided . + /// To be added. + /// To be added. [NoMac] [NoMacCatalyst] [Deprecated (PlatformName.iOS, 12, 0)] @@ -339,6 +343,14 @@ interface CIContext { [Export ("contextWithEAGLContext:")] CIContext FromContext (EAGLContext eaglContext); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Creates a new from the provided and by using the options that are named in . + /// To be added. + /// To be added. [NoMac] [NoMacCatalyst] [Deprecated (PlatformName.iOS, 12, 0)] @@ -2891,6 +2903,9 @@ interface CIImage : NSSecureCoding, NSCopying { [Wrap ("this (source, index, options.GetDictionary ())")] NativeHandle Constructor (CGImageSource source, nuint index, CIImageInitializationOptionsWithMetadata options); + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] @@ -2898,6 +2913,10 @@ interface CIImage : NSSecureCoding, NSCopying { [Export ("initWithCGLayer:")] NativeHandle Constructor (CGLayer layer); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] @@ -2906,6 +2925,10 @@ interface CIImage : NSSecureCoding, NSCopying { [Export ("initWithCGLayer:options:")] NativeHandle Constructor (CGLayer layer, [NullAllowed] NSDictionary d); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] @@ -3088,6 +3111,9 @@ interface CIImage : NSSecureCoding, NSCopying { [Export ("initWithMTLTexture:options:")] NativeHandle Constructor (IMTLTexture texture, [NullAllowed] NSDictionary options); + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] diff --git a/src/coreml.cs b/src/coreml.cs index efa1c3cecde3..1c6ef25c2009 100644 --- a/src/coreml.cs +++ b/src/coreml.cs @@ -1033,6 +1033,13 @@ interface MLCustomLayer { [Export ("evaluateOnCPUWithInputs:outputs:error:")] bool EvaluateOnCpu (MLMultiArray [] inputs, MLMultiArray [] outputs, [NullAllowed] out NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Sets by applying to the function described by . + /// To be added. + /// To be added. [Export ("encodeToCommandBuffer:inputs:outputs:error:")] bool Encode (IMTLCommandBuffer commandBuffer, IMTLTexture [] inputs, IMTLTexture [] outputs, [NullAllowed] out NSError error); } diff --git a/src/fileprovider.cs b/src/fileprovider.cs index 4932c25094f6..5bd313c5feb1 100644 --- a/src/fileprovider.cs +++ b/src/fileprovider.cs @@ -519,9 +519,16 @@ interface NSFileProviderEnumerator { [Export ("enumerateItemsForObserver:startingAtPage:")] void EnumerateItems (INSFileProviderEnumerationObserver observer, NSData startPage); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("enumerateChangesForObserver:fromSyncAnchor:")] void EnumerateChanges (INSFileProviderChangeObserver observer, NSData syncAnchor); + /// To be added. + /// To be added. + /// To be added. [Export ("currentSyncAnchorWithCompletionHandler:")] void CurrentSyncAnchor (Action completionHandler); } @@ -559,29 +566,50 @@ interface NSFileProviderItem { [Export ("contentType", ArgumentSemantic.Copy)] UTType GetContentType (); + /// To be added. + /// To be added. + /// To be added. [Export ("capabilities")] NSFileProviderItemCapabilities GetCapabilities (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("documentSize", ArgumentSemantic.Copy)] NSNumber GetDocumentSize (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("childItemCount", ArgumentSemantic.Copy)] NSNumber GetChildItemCount (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("creationDate", ArgumentSemantic.Copy)] NSDate GetCreationDate (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("contentModificationDate", ArgumentSemantic.Copy)] NSDate GetContentModificationDate (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("lastUsedDate", ArgumentSemantic.Copy)] NSDate GetLastUsedDate (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("tagData", ArgumentSemantic.Copy)] NSData GetTagData (); @@ -599,39 +627,72 @@ interface NSFileProviderItem { [Export ("isTrashed")] bool IsTrashed (); + /// To be added. + /// To be added. + /// To be added. [Export ("isUploaded")] bool IsUploaded (); + /// To be added. + /// To be added. + /// To be added. [Export ("isUploading")] bool IsUploading (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("uploadingError", ArgumentSemantic.Copy)] NSError GetUploadingError (); + /// To be added. + /// To be added. + /// To be added. [Export ("isDownloaded")] bool IsDownloaded (); + /// To be added. + /// To be added. + /// To be added. [Export ("isDownloading")] bool IsDownloading (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("downloadingError", ArgumentSemantic.Copy)] NSError GetDownloadingError (); + /// To be added. + /// To be added. + /// To be added. [Export ("isMostRecentVersionDownloaded")] bool IsMostRecentVersionDownloaded (); + /// To be added. + /// To be added. + /// To be added. [Export ("isShared")] bool IsShared (); + /// To be added. + /// To be added. + /// To be added. [Export ("isSharedByCurrentUser")] bool IsSharedByCurrentUser (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("ownerNameComponents")] NSPersonNameComponents GetOwnerNameComponents (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("mostRecentEditorNameComponents")] NSPersonNameComponents GetMostRecentEditorNameComponents (); @@ -641,6 +702,9 @@ interface NSFileProviderItem { [Export ("versionIdentifier")] NSData GetVersionIdentifier (); + /// To be added. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("userInfo")] NSDictionary GetUserInfo (); diff --git a/src/findersync.cs b/src/findersync.cs index 2a71e185eea5..8765ed4371f2 100644 --- a/src/findersync.cs +++ b/src/findersync.cs @@ -110,16 +110,29 @@ interface FIFinderSyncController : NSSecureCoding, NSCopying { [Protocol (Name = "FIFinderSync")] interface FIFinderSyncProtocol { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("menuForMenuKind:")] [return: NullAllowed] NSMenu GetMenu (FIMenuKind menuKind); + /// To be added. + /// To be added. + /// To be added. [Export ("beginObservingDirectoryAtURL:")] void BeginObservingDirectory (NSUrl url); + /// To be added. + /// To be added. + /// To be added. [Export ("endObservingDirectoryAtURL:")] void EndObservingDirectory (NSUrl url); + /// To be added. + /// To be added. + /// To be added. [Export ("requestBadgeIdentifierForURL:")] void RequestBadgeIdentifier (NSUrl url); @@ -132,6 +145,10 @@ interface FIFinderSyncProtocol { [Export ("toolbarItemToolTip")] string ToolbarItemToolTip { get; } + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("supportedServiceNamesForItemWithURL:")] string [] SupportedServiceNames (NSUrl itemUrl); @@ -140,6 +157,11 @@ interface FIFinderSyncProtocol { [return: NullAllowed] NSXpcListenerEndpoint MakeListenerEndpoint (string serviceName, [NullAllowed] out NSError error); #endif + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Async, Export ("valuesForAttributes:forItemWithURL:completion:")] void GetValues (string [] attributes, NSUrl itemUrl, GetValuesCompletionHandler completion); } diff --git a/src/foundation.cs b/src/foundation.cs index c8e6f9230125..f8d724c10075 100644 --- a/src/foundation.cs +++ b/src/foundation.cs @@ -438,12 +438,21 @@ partial interface NSAttributedString : NSCoding, NSMutableCopying, NSSecureCodin #endif #endif // !XAMCORE_5_0 + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] [Export ("initWithDocFormat:documentAttributes:")] NativeHandle Constructor (NSData wordDocFormat, out NSDictionary docAttributes); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] @@ -460,6 +469,10 @@ partial interface NSAttributedString : NSCoding, NSMutableCopying, NSSecureCodin [Export ("drawWithRect:options:")] void DrawString (CGRect rect, NSStringDrawingOptions options); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] @@ -467,6 +480,10 @@ partial interface NSAttributedString : NSCoding, NSMutableCopying, NSSecureCodin [Export ("initWithPath:documentAttributes:")] NativeHandle Constructor (string path, out NSDictionary resultDocumentAttributes); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] @@ -492,18 +509,32 @@ partial interface NSAttributedString : NSCoding, NSMutableCopying, NSSecureCodin [Internal, Export ("initWithHTML:documentAttributes:")] IntPtr _InitWithHTML (NSData data, out NSDictionary resultDocumentAttributes); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] [Export ("initWithHTML:options:documentAttributes:")] NativeHandle Constructor (NSData data, [NullAllowed] NSDictionary options, out NSDictionary resultDocumentAttributes); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] [Wrap ("this (data, options.GetDictionary (), out resultDocumentAttributes)")] NativeHandle Constructor (NSData data, NSAttributedStringDocumentAttributes options, out NSDictionary resultDocumentAttributes); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [NoTV] @@ -1223,6 +1254,10 @@ interface INSCacheDelegate { } [Model] [Protocol] interface NSCacheDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("cache:willEvictObject:"), EventArgs ("NSObject")] void WillEvictObject (NSCache cache, NSObject obj); } @@ -3138,18 +3173,38 @@ interface INSKeyedArchiverDelegate { } [Model] [Protocol] interface NSKeyedArchiverDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("archiver:didEncodeObject:"), EventArgs ("NSObject")] void EncodedObject (NSKeyedArchiver archiver, NSObject obj); + /// To be added. + /// To be added. + /// To be added. [Export ("archiverDidFinish:")] void Finished (NSKeyedArchiver archiver); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("archiver:willEncodeObject:"), DelegateName ("NSEncodeHook"), DefaultValue (null)] NSObject WillEncode (NSKeyedArchiver archiver, NSObject obj); + /// To be added. + /// To be added. + /// To be added. [Export ("archiverWillFinish:")] void Finishing (NSKeyedArchiver archiver); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("archiver:willReplaceObject:withObject:"), EventArgs ("NSArchiveReplace")] void ReplacingObject (NSKeyedArchiver archiver, NSObject oldObject, NSObject newObject); } @@ -3160,18 +3215,40 @@ interface INSKeyedUnarchiverDelegate { } [Model] [Protocol] interface NSKeyedUnarchiverDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("unarchiver:didDecodeObject:"), DelegateName ("NSDecoderCallback"), DefaultValue (null)] NSObject DecodedObject (NSKeyedUnarchiver unarchiver, NSObject obj); + /// To be added. + /// To be added. + /// To be added. [Export ("unarchiverDidFinish:")] void Finished (NSKeyedUnarchiver unarchiver); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("unarchiver:cannotDecodeObjectOfClassName:originalClasses:"), DelegateName ("NSDecoderHandler"), DefaultValue (null)] Class CannotDecodeClass (NSKeyedUnarchiver unarchiver, string klass, string [] classes); + /// To be added. + /// To be added. + /// To be added. [Export ("unarchiverWillFinish:")] void Finishing (NSKeyedUnarchiver unarchiver); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("unarchiver:willReplaceObject:withObject:"), EventArgs ("NSArchiveReplace")] void ReplacingObject (NSKeyedUnarchiver unarchiver, NSObject oldObject, NSObject newObject); } @@ -4911,9 +4988,20 @@ interface INSMetadataQueryDelegate { } [Model] [Protocol] interface NSMetadataQueryDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("metadataQuery:replacementObjectForResultObject:"), DelegateName ("NSMetadataQueryObject"), DefaultValue (null)] NSObject ReplacementObjectForResultObject (NSMetadataQuery query, NSMetadataItem result); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("metadataQuery:replacementValueForAttribute:value:"), DelegateName ("NSMetadataQueryValue"), DefaultValue (null)] NSObject ReplacementValueForAttributevalue (NSMetadataQuery query, string attributeName, NSObject value); } @@ -7280,12 +7368,23 @@ interface INSUserActivityDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] partial interface NSUserActivityDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("userActivityWillSave:")] void UserActivityWillSave (NSUserActivity userActivity); + /// To be added. + /// To be added. + /// To be added. [Export ("userActivityWasContinued:")] void UserActivityWasContinued (NSUserActivity userActivity); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("userActivity:didReceiveInputStream:outputStream:")] void UserActivityReceivedData (NSUserActivity userActivity, NSInputStream inputStream, NSOutputStream outputStream); } @@ -9258,6 +9357,11 @@ interface INSUrlConnectionDelegate { } [Model] [Protocol] interface NSUrlConnectionDelegate { + /// To be added. + /// To be added. + /// Developers should not use this deprecated method. Developers should use 'WillSendRequestForAuthenticationChallenge' instead. + /// To be added. + /// To be added. [Export ("connection:canAuthenticateAgainstProtectionSpace:")] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] [Deprecated (PlatformName.TvOS, 9, 0, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] @@ -9265,6 +9369,10 @@ interface NSUrlConnectionDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] bool CanAuthenticateAgainstProtectionSpace (NSUrlConnection connection, NSUrlProtectionSpace protectionSpace); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:didReceiveAuthenticationChallenge:")] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] [Deprecated (PlatformName.TvOS, 9, 0, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] @@ -9272,6 +9380,10 @@ interface NSUrlConnectionDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] void ReceivedAuthenticationChallenge (NSUrlConnection connection, NSUrlAuthenticationChallenge challenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:didCancelAuthenticationChallenge:")] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] [Deprecated (PlatformName.TvOS, 9, 0, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] @@ -9279,12 +9391,24 @@ interface NSUrlConnectionDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'WillSendRequestForAuthenticationChallenge' instead.")] void CanceledAuthenticationChallenge (NSUrlConnection connection, NSUrlAuthenticationChallenge challenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connectionShouldUseCredentialStorage:")] bool ConnectionShouldUseCredentialStorage (NSUrlConnection connection); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:didFailWithError:")] void FailedWithError (NSUrlConnection connection, NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:willSendRequestForAuthenticationChallenge:")] void WillSendRequestForAuthenticationChallenge (NSUrlConnection connection, NSUrlAuthenticationChallenge challenge); } @@ -9293,24 +9417,51 @@ interface NSUrlConnectionDelegate { [Protocol, Model] interface NSUrlConnectionDataDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:willSendRequest:redirectResponse:")] NSUrlRequest WillSendRequest (NSUrlConnection connection, NSUrlRequest request, NSUrlResponse response); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:didReceiveResponse:")] void ReceivedResponse (NSUrlConnection connection, NSUrlResponse response); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:didReceiveData:")] void ReceivedData (NSUrlConnection connection, NSData data); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:needNewBodyStream:")] NSInputStream NeedNewBodyStream (NSUrlConnection connection, NSUrlRequest request); [Export ("connection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:")] void SentBodyData (NSUrlConnection connection, nint bytesWritten, nint totalBytesWritten, nint totalBytesExpectedToWrite); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:willCacheResponse:")] NSCachedUrlResponse WillCacheResponse (NSUrlConnection connection, NSCachedUrlResponse cachedResponse); + /// To be added. + /// To be added. + /// To be added. [Export ("connectionDidFinishLoading:")] void FinishedLoading (NSUrlConnection connection); } @@ -9319,9 +9470,20 @@ interface NSUrlConnectionDataDelegate { [Model] [Protocol] interface NSUrlConnectionDownloadDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connection:didWriteData:totalBytesWritten:expectedTotalBytes:")] void WroteData (NSUrlConnection connection, long bytesWritten, long totalBytesWritten, long expectedTotalBytes); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("connectionDidResumeDownloading:totalBytesWritten:expectedTotalBytes:")] void ResumedDownloading (NSUrlConnection connection, long totalBytesWritten, long expectedTotalBytes); @@ -9804,12 +9966,24 @@ partial interface NSUrlSession { [Protocol, Model] [BaseType (typeof (NSUrlSessionTaskDelegate), Name = "NSURLSessionStreamDelegate")] interface NSUrlSessionStreamDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:readClosedForStreamTask:")] void ReadClosed (NSUrlSession session, NSUrlSessionStreamTask streamTask); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:writeClosedForStreamTask:")] void WriteClosed (NSUrlSession session, NSUrlSessionStreamTask streamTask); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:betterRouteDiscoveredForStreamTask:")] void BetterRouteDiscovered (NSUrlSession session, NSUrlSessionStreamTask streamTask); @@ -9818,6 +9992,12 @@ interface NSUrlSessionStreamDelegate { // because it was a bad name, and does not describe what this does, so the name // was picked from the documentation and what it does. // + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:streamTask:didBecomeInputStream:outputStream:")] void CompletedTaskCaptureStreams (NSUrlSession session, NSUrlSessionStreamTask streamTask, NSInputStream inputStream, NSOutputStream outputStream); } @@ -10242,12 +10422,24 @@ ProxyConfigurationDictionary StrongConnectionProxyDictionary { [Model, BaseType (typeof (NSObject), Name = "NSURLSessionDelegate")] [Protocol] partial interface NSUrlSessionDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:didBecomeInvalidWithError:")] void DidBecomeInvalid (NSUrlSession session, NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:didReceiveChallenge:completionHandler:")] void DidReceiveChallenge (NSUrlSession session, NSUrlAuthenticationChallenge challenge, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("URLSessionDidFinishEventsForBackgroundURLSession:")] void DidFinishEventsForBackgroundSession (NSUrlSession session); @@ -10261,29 +10453,74 @@ public interface INSUrlSessionTaskDelegate { } [Protocol] partial interface NSUrlSessionTaskDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:")] void WillPerformHttpRedirection (NSUrlSession session, NSUrlSessionTask task, NSHttpUrlResponse response, NSUrlRequest newRequest, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:task:didReceiveChallenge:completionHandler:")] void DidReceiveChallenge (NSUrlSession session, NSUrlSessionTask task, NSUrlAuthenticationChallenge challenge, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:task:needNewBodyStream:")] void NeedNewBodyStream (NSUrlSession session, NSUrlSessionTask task, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:")] void DidSendBodyData (NSUrlSession session, NSUrlSessionTask task, long bytesSent, long totalBytesSent, long totalBytesExpectedToSend); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:task:didCompleteWithError:")] void DidCompleteWithError (NSUrlSession session, NSUrlSessionTask task, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("URLSession:task:didFinishCollectingMetrics:")] void DidFinishCollectingMetrics (NSUrlSession session, NSUrlSessionTask task, NSUrlSessionTaskMetrics metrics); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("URLSession:task:willBeginDelayedRequest:completionHandler:")] void WillBeginDelayedRequest (NSUrlSession session, NSUrlSessionTask task, NSUrlRequest request, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("URLSession:taskIsWaitingForConnectivity:")] void TaskIsWaitingForConnectivity (NSUrlSession session, NSUrlSessionTask task); @@ -10307,18 +10544,45 @@ partial interface NSUrlSessionTaskDelegate { [BaseType (typeof (NSUrlSessionTaskDelegate), Name = "NSURLSessionDataDelegate")] [Protocol] partial interface NSUrlSessionDataDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:dataTask:didReceiveResponse:completionHandler:")] void DidReceiveResponse (NSUrlSession session, NSUrlSessionDataTask dataTask, NSUrlResponse response, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:dataTask:didBecomeDownloadTask:")] void DidBecomeDownloadTask (NSUrlSession session, NSUrlSessionDataTask dataTask, NSUrlSessionDownloadTask downloadTask); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:dataTask:didReceiveData:")] void DidReceiveData (NSUrlSession session, NSUrlSessionDataTask dataTask, NSData data); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:dataTask:willCacheResponse:completionHandler:")] void WillCacheResponse (NSUrlSession session, NSUrlSessionDataTask dataTask, NSCachedUrlResponse proposedResponse, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("URLSession:dataTask:didBecomeStreamTask:")] void DidBecomeStreamTask (NSUrlSession session, NSUrlSessionDataTask dataTask, NSUrlSessionStreamTask streamTask); @@ -10334,9 +10598,22 @@ partial interface NSUrlSessionDownloadDelegate { [Export ("URLSession:downloadTask:didFinishDownloadingToURL:")] void DidFinishDownloading (NSUrlSession session, NSUrlSessionDownloadTask downloadTask, NSUrl location); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:")] void DidWriteData (NSUrlSession session, NSUrlSessionDownloadTask downloadTask, long bytesWritten, long totalBytesWritten, long totalBytesExpectedToWrite); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:")] void DidResume (NSUrlSession session, NSUrlSessionDownloadTask downloadTask, long resumeFileOffset, long expectedTotalBytes); @@ -11284,6 +11561,10 @@ interface INSStreamDelegate { } [Model] [Protocol] interface NSStreamDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("stream:handleEvent:"), EventArgs ("NSStream"), EventName ("OnEvent")] void HandleEvent (NSStream theStream, NSStreamEvent streamEvent); } @@ -11640,6 +11921,9 @@ interface NSStringDrawingContext { [Export ("minimumScaleFactor")] nfloat MinimumScaleFactor { get; set; } + /// Desired tracking adjustement (minimum space to maintain between characteres) desired to be used during the drawing operation. + /// The value is specified in points, typically a value between -0.5f and 0. + /// Zero means that standard spacing should be used. Use negative values to adjust the tracking, for example -0.5f allows characters to be closer together by half a point. [NoTV] [Deprecated (PlatformName.iOS, 7, 0)] [NoMacCatalyst] @@ -13899,6 +14183,10 @@ interface NSItemProviderWriting { // 'WritableTypeIdentifiers' is a nicer name, but there's a static property with that name. string [] WritableTypeIdentifiersForItemProvider { get; } + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("itemProviderVisibilityForRepresentationWithTypeIdentifier:")] // 'GetItemProviderVisibility' is a nicer name, but there's a static method with that name. NSItemProviderRepresentationVisibility GetItemProviderVisibilityForTypeIdentifier (string typeIdentifier); @@ -14156,30 +14444,62 @@ interface INSNetServiceDelegate { } [Model, BaseType (typeof (NSObject))] [Protocol] interface NSNetServiceDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceWillPublish:")] void WillPublish (NSNetService sender); + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceDidPublish:")] void Published (NSNetService sender); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netService:didNotPublish:"), EventArgs ("NSNetServiceError")] void PublishFailure (NSNetService sender, NSDictionary errors); + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceWillResolve:")] void WillResolve (NSNetService sender); + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceDidResolveAddress:")] void AddressResolved (NSNetService sender); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netService:didNotResolve:"), EventArgs ("NSNetServiceError")] void ResolveFailure (NSNetService sender, NSDictionary errors); + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceDidStop:")] void Stopped (NSNetService sender); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netService:didUpdateTXTRecordData:"), EventArgs ("NSNetServiceData")] void UpdatedTxtRecordData (NSNetService sender, NSData data); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netService:didAcceptConnectionWithInputStream:outputStream:"), EventArgs ("NSNetServiceConnection")] void DidAcceptConnection (NSNetService sender, NSInputStream inputStream, NSOutputStream outputStream); } @@ -14259,24 +14579,54 @@ interface INSNetServiceBrowserDelegate { } [Model, BaseType (typeof (NSObject))] [Protocol] interface NSNetServiceBrowserDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceBrowserWillSearch:")] void SearchStarted (NSNetServiceBrowser sender); + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceBrowserDidStopSearch:")] void SearchStopped (NSNetServiceBrowser sender); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceBrowser:didNotSearch:"), EventArgs ("NSNetServiceError")] void NotSearched (NSNetServiceBrowser sender, NSDictionary errors); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceBrowser:didFindDomain:moreComing:"), EventArgs ("NSNetDomain")] void FoundDomain (NSNetServiceBrowser sender, string domain, bool moreComing); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceBrowser:didFindService:moreComing:"), EventArgs ("NSNetService")] void FoundService (NSNetServiceBrowser sender, NSNetService service, bool moreComing); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceBrowser:didRemoveDomain:moreComing:"), EventArgs ("NSNetDomain")] void DomainRemoved (NSNetServiceBrowser sender, string domain, bool moreComing); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("netServiceBrowser:didRemoveService:moreComing:"), EventArgs ("NSNetService")] void ServiceRemoved (NSNetServiceBrowser sender, NSNetService service, bool moreComing); } @@ -15665,6 +16015,9 @@ interface INSMachPortDelegate { } [Model, BaseType (typeof (NSPortDelegate))] [Protocol] interface NSMachPortDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("handleMachMessage:")] void MachMessageReceived (IntPtr msgHeader); } @@ -16773,67 +17126,167 @@ interface INSFileManagerDelegate { } [Model] [Protocol] interface NSFileManagerDelegate { + /// To be added. + /// To be added. + /// To be added. + /// Creates a copy of this object, allocating memory from the specified zone or from the default zone if the argument is null. + /// To be added. + /// To be added. [Export ("fileManager:shouldCopyItemAtPath:toPath:")] bool ShouldCopyItemAtPath (NSFileManager fm, NSString srcPath, NSString dstPath); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("fileManager:shouldCopyItemAtURL:toURL:")] bool ShouldCopyItemAtUrl (NSFileManager fm, NSUrl srcUrl, NSUrl dstUrl); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("fileManager:shouldLinkItemAtURL:toURL:")] bool ShouldLinkItemAtUrl (NSFileManager fileManager, NSUrl srcUrl, NSUrl dstUrl); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("fileManager:shouldMoveItemAtURL:toURL:")] bool ShouldMoveItemAtUrl (NSFileManager fileManager, NSUrl srcUrl, NSUrl dstUrl); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("fileManager:shouldProceedAfterError:copyingItemAtURL:toURL:")] bool ShouldProceedAfterErrorCopyingItem (NSFileManager fileManager, NSError error, NSUrl srcUrl, NSUrl dstUrl); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("fileManager:shouldProceedAfterError:linkingItemAtURL:toURL:")] bool ShouldProceedAfterErrorLinkingItem (NSFileManager fileManager, NSError error, NSUrl srcUrl, NSUrl dstUrl); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("fileManager:shouldProceedAfterError:movingItemAtURL:toURL:")] bool ShouldProceedAfterErrorMovingItem (NSFileManager fileManager, NSError error, NSUrl srcUrl, NSUrl dstUrl); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("fileManager:shouldRemoveItemAtURL:")] bool ShouldRemoveItemAtUrl (NSFileManager fileManager, NSUrl url); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("fileManager:shouldProceedAfterError:removingItemAtURL:")] bool ShouldProceedAfterErrorRemovingItem (NSFileManager fileManager, NSError error, NSUrl url); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("fileManager:shouldProceedAfterError:copyingItemAtPath:toPath:")] bool ShouldProceedAfterErrorCopyingItem (NSFileManager fileManager, NSError error, string srcPath, string dstPath); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("fileManager:shouldMoveItemAtPath:toPath:")] bool ShouldMoveItemAtPath (NSFileManager fileManager, string srcPath, string dstPath); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("fileManager:shouldProceedAfterError:movingItemAtPath:toPath:")] bool ShouldProceedAfterErrorMovingItem (NSFileManager fileManager, NSError error, string srcPath, string dstPath); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("fileManager:shouldLinkItemAtPath:toPath:")] bool ShouldLinkItemAtPath (NSFileManager fileManager, string srcPath, string dstPath); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("fileManager:shouldProceedAfterError:linkingItemAtPath:toPath:")] bool ShouldProceedAfterErrorLinkingItem (NSFileManager fileManager, NSError error, string srcPath, string dstPath); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("fileManager:shouldRemoveItemAtPath:")] bool ShouldRemoveItemAtPath (NSFileManager fileManager, string path); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("fileManager:shouldProceedAfterError:removingItemAtPath:")] bool ShouldProceedAfterErrorRemovingItem (NSFileManager fileManager, NSError error, string path); } @@ -16882,16 +17335,28 @@ partial interface NSFilePresenter { #endif #if DOUBLE_BLOCKS + /// To be added. + /// To be added. + /// To be added. [Export ("relinquishPresentedItemToReader:")] void RelinquishPresentedItemToReader (NSFilePresenterReacquirer readerAction); + /// To be added. + /// To be added. + /// To be added. [Export ("relinquishPresentedItemToWriter:")] void RelinquishPresentedItemToWriter (NSFilePresenterReacquirer writerAction); #endif + /// To be added. + /// To be added. + /// To be added. [Export ("savePresentedItemChangesWithCompletionHandler:")] void SavePresentedItemChanges (Action completionHandler); + /// To be added. + /// To be added. + /// To be added. [Export ("accommodatePresentedItemDeletionWithCompletionHandler:")] void AccommodatePresentedItemDeletion (Action completionHandler); @@ -16899,42 +17364,85 @@ partial interface NSFilePresenter { [Export ("accommodatePresentedItemEvictionWithCompletionHandler:")] void AccommodatePresentedItemEviction (Action completionHandler); + /// To be added. + /// To be added. + /// To be added. [Export ("presentedItemDidMoveToURL:")] void PresentedItemMoved (NSUrl newURL); + /// To be added. + /// To be added. [Export ("presentedItemDidChange")] void PresentedItemChanged (); + /// To be added. + /// To be added. + /// To be added. [Export ("presentedItemDidGainVersion:")] void PresentedItemGainedVersion (NSFileVersion version); + /// To be added. + /// To be added. + /// To be added. [Export ("presentedItemDidLoseVersion:")] void PresentedItemLostVersion (NSFileVersion version); + /// To be added. + /// To be added. + /// To be added. [Export ("presentedItemDidResolveConflictVersion:")] void PresentedItemResolveConflictVersion (NSFileVersion version); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("accommodatePresentedSubitemDeletionAtURL:completionHandler:")] void AccommodatePresentedSubitemDeletion (NSUrl url, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. [Export ("presentedSubitemDidAppearAtURL:")] void PresentedSubitemAppeared (NSUrl atUrl); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("presentedSubitemAtURL:didMoveToURL:")] void PresentedSubitemMoved (NSUrl oldURL, NSUrl newURL); + /// To be added. + /// To be added. + /// To be added. [Export ("presentedSubitemDidChangeAtURL:")] void PresentedSubitemChanged (NSUrl url); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("presentedSubitemAtURL:didGainVersion:")] void PresentedSubitemGainedVersion (NSUrl url, NSFileVersion version); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("presentedSubitemAtURL:didLoseVersion:")] void PresentedSubitemLostVersion (NSUrl url, NSFileVersion version); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("presentedSubitemAtURL:didResolveConflictVersion:")] void PresentedSubitemResolvedConflictVersion (NSUrl url, NSFileVersion version); + /// To be added. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("presentedItemDidChangeUbiquityAttributes:")] diff --git a/src/gamekit.cs b/src/gamekit.cs index 134e63c31a78..044d92d2d45a 100644 --- a/src/gamekit.cs +++ b/src/gamekit.cs @@ -93,15 +93,40 @@ interface GKVoiceChatClient { [Abstract] string ParticipantID (); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("voiceChatService:sendRealTimeData:toParticipantID:")] void SendRealTimeData (GKVoiceChatService voiceChatService, NSData data, string participantID); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("voiceChatService:didStartWithParticipantID:")] void Started (GKVoiceChatService voiceChatService, string participantID); + /// To be added. + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. [Export ("voiceChatService:didNotStartWithParticipantID:error:")] void FailedToConnect (GKVoiceChatService voiceChatService, string participantID, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. [Export ("voiceChatService:didStopWithParticipantID:error:")] void Stopped (GKVoiceChatService voiceChatService, string participantID, [NullAllowed] NSError error); @@ -1130,9 +1155,17 @@ interface GKSavedGame : NSCopying { [Protocol, Model] [BaseType (typeof (NSObject))] interface GKSavedGameListener { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("player:didModifySavedGame:")] void DidModifySavedGame (GKPlayer player, GKSavedGame savedGame); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("player:hasConflictingSavedGames:")] void HasConflictingSavedGames (GKPlayer player, GKSavedGame [] savedGames); } @@ -1234,6 +1267,11 @@ interface IGKMatchDelegate { } [Protocol] interface GKMatchDelegate { + /// To be added. + /// To be added. + /// To be added. + /// Developers should not use this deprecated method. Developers should use 'DataReceivedFromPlayer (GKMatch,NSData,GKPlayer)' instead. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'DataReceivedFromPlayer (GKMatch,NSData,GKPlayer)' instead.")] [Deprecated (PlatformName.MacOSX, 10, 10, message: "Use 'DataReceivedFromPlayer (GKMatch,NSData,GKPlayer)' instead.")] @@ -1242,6 +1280,11 @@ interface GKMatchDelegate { [Export ("match:didReceiveData:fromPlayer:"), EventArgs ("GKData")] void DataReceived (GKMatch match, NSData data, string playerId); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'StateChangedForPlayer (GKMatch,GKPlayer,GKPlayerConnectionState)' instead.")] [Deprecated (PlatformName.MacOSX, 10, 8, message: "Use 'StateChangedForPlayer (GKMatch,GKPlayer,GKPlayerConnectionState)' instead.")] @@ -1250,9 +1293,21 @@ interface GKMatchDelegate { [Export ("match:player:didChangeState:"), EventArgs ("GKState")] void StateChanged (GKMatch match, string playerId, GKPlayerConnectionState state); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Method that is called when a match cannot connect to any of the players. + /// To be added. [Export ("match:didFailWithError:"), EventArgs ("GKError")] void Failed (GKMatch match, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'ShouldReinviteDisconnectedPlayer' instead.")] [Deprecated (PlatformName.MacOSX, 10, 10, message: "Use 'ShouldReinviteDisconnectedPlayer' instead.")] @@ -1261,18 +1316,39 @@ interface GKMatchDelegate { [Export ("match:shouldReinvitePlayer:"), DelegateName ("GKMatchReinvitation"), DefaultValue (true)] bool ShouldReinvitePlayer (GKMatch match, string playerId); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called when data is received from a player. + /// To be added. [MacCatalyst (13, 1)] [Export ("match:didReceiveData:fromRemotePlayer:"), EventArgs ("GKMatchReceivedDataFromRemotePlayer")] void DataReceivedFromPlayer (GKMatch match, NSData data, GKPlayer player); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called when a player's connection state changes. + /// To be added. [Export ("match:player:didChangeConnectionState:"), EventArgs ("GKMatchConnectionChanged")] void StateChangedForPlayer (GKMatch match, GKPlayer player, GKPlayerConnectionState state); + /// To be added. + /// To be added. + /// Method that is called when a player is disconnected from a two-player match. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("match:shouldReinviteDisconnectedPlayer:")] [DelegateName ("GKMatchReinvitationForDisconnectedPlayer"), DefaultValue (true)] bool ShouldReinviteDisconnectedPlayer (GKMatch match, GKPlayer player); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Method that is called when the recieves data from another . + /// To be added. [MacCatalyst (13, 1)] [Export ("match:didReceiveData:forRecipient:fromRemotePlayer:"), EventArgs ("GKDataReceivedForRecipient")] void DataReceivedForRecipient (GKMatch match, NSData data, GKPlayer recipient, GKPlayer player); @@ -1618,6 +1694,10 @@ interface GKMatchmakerViewController : GKViewController #endif { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [Export ("initWithNibName:bundle:")] @@ -1721,6 +1801,10 @@ interface GKMatchmakerViewControllerDelegate { [Export ("matchmakerViewController:didFindHostedPlayers:"), EventArgs ("GKMatchmakingPlayers")] void DidFindHostedPlayers (GKMatchmakerViewController viewController, GKPlayer [] playerIDs); + /// To be added. + /// To be added. + /// Developers should not use this deprecated method. Developers should use 'HostedPlayerDidAccept' instead. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'HostedPlayerDidAccept' instead.")] [Deprecated (PlatformName.MacOSX, 10, 10, message: "Use 'HostedPlayerDidAccept' instead.")] @@ -1729,6 +1813,10 @@ interface GKMatchmakerViewControllerDelegate { [Export ("matchmakerViewController:didReceiveAcceptFromHostedPlayer:"), EventArgs ("GKPlayer")] void ReceivedAcceptFromHostedPlayer (GKMatchmakerViewController viewController, string playerID); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("matchmakerViewController:hostedPlayerDidAccept:"), EventArgs ("GKMatchmakingPlayer")] void HostedPlayerDidAccept (GKMatchmakerViewController viewController, GKPlayer playerID); @@ -2097,6 +2185,10 @@ interface GKDialogController { #if MONOMAC [BaseType (typeof (NSViewController), Events = new Type [] { typeof (GKFriendRequestComposeViewControllerDelegate) }, Delegates = new string [] { "WeakComposeViewDelegate" })] interface GKFriendRequestComposeViewController : GKViewController { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("initWithNibName:bundle:")] [NoiOS] NativeHandle Constructor ([NullAllowed] string nibNameOrNull, [NullAllowed] NSBundle nibBundleOrNull); @@ -2252,12 +2344,18 @@ interface GKTurnBasedEventHandlerDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1)] void HandleInviteFromGameCenter (NSString [] playersToInvite); + /// To be added. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 7, 0, message: "Use 'HandleTurnEvent' instead.")] [Deprecated (PlatformName.MacOSX, 10, 9, message: "Use 'HandleTurnEvent' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'HandleTurnEvent' instead.")] [Export ("handleTurnEventForMatch:")] void HandleTurnEventForMatch (GKTurnBasedMatch match); + /// To be added. + /// Developers should not use this deprecated method. + /// To be added. [Deprecated (PlatformName.iOS, 7, 0)] [Deprecated (PlatformName.MacOSX, 10, 10)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] @@ -2594,6 +2692,10 @@ interface GKTurnBasedMatchmakerViewController : GKViewController interface GKTurnBasedMatchmakerViewController : UIAppearance #endif { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [Export ("initWithNibName:bundle:")] @@ -2754,6 +2856,10 @@ interface GKGameCenterViewController : GKViewController #endif { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoMacCatalyst] [Export ("initWithNibName:bundle:")] @@ -2898,27 +3004,51 @@ interface IGKChallengeEventHandlerDelegate { } [BaseType (typeof (NSObject))] [Protocol] interface GKChallengeEventHandlerDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("localPlayerDidSelectChallenge:")] void LocalPlayerSelectedChallenge (GKChallenge challenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("shouldShowBannerForLocallyReceivedChallenge:")] [DelegateName ("GKChallengePredicate"), DefaultValue (true)] bool ShouldShowBannerForLocallyReceivedChallenge (GKChallenge challenge); + /// To be added. + /// To be added. + /// To be added. [Export ("localPlayerDidReceiveChallenge:")] void LocalPlayerReceivedChallenge (GKChallenge challenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("shouldShowBannerForLocallyCompletedChallenge:")] [DelegateName ("GKChallengePredicate"), DefaultValue (true)] bool ShouldShowBannerForLocallyCompletedChallenge (GKChallenge challenge); + /// To be added. + /// To be added. + /// To be added. [Export ("localPlayerDidCompleteChallenge:")] void LocalPlayerCompletedChallenge (GKChallenge challenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("shouldShowBannerForRemotelyCompletedChallenge:")] [DelegateName ("GKChallengePredicate"), DefaultValue (true)] bool ShouldShowBannerForRemotelyCompletedChallenge (GKChallenge challenge); + /// To be added. + /// To be added. + /// To be added. [Export ("remotePlayerDidCompleteChallenge:")] void RemotePlayerCompletedChallenge (GKChallenge challenge); } @@ -3039,15 +3169,33 @@ interface GKLocalPlayerListener : GKTurnBasedEventListener [MacCatalyst (13, 1)] [Model, Protocol, BaseType (typeof (NSObject))] interface GKChallengeListener { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("player:wantsToPlayChallenge:")] void WantsToPlayChallenge (GKPlayer player, GKChallenge challenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("player:didReceiveChallenge:")] void DidReceiveChallenge (GKPlayer player, GKChallenge challenge); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("player:didCompleteChallenge:issuedByFriend:")] void DidCompleteChallenge (GKPlayer player, GKChallenge challenge, GKPlayer friendPlayer); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("player:issuedChallengeWasCompleted:byFriend:")] void IssuedChallengeWasCompleted (GKPlayer player, GKChallenge challenge, GKPlayer friendPlayer); } @@ -3055,10 +3203,18 @@ interface GKChallengeListener { [MacCatalyst (13, 1)] [Protocol, Model, BaseType (typeof (NSObject))] interface GKInviteEventListener { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("player:didAcceptInvite:")] void DidAcceptInvite (GKPlayer player, GKInvite invite); + /// To be added. + /// To be added. + /// Developers should not use this deprecated method. Developers should use 'DidRequestMatch (GKPlayer player, GKPlayer[] recipientPlayers)' instead. + /// To be added. [NoMac] [NoTV] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'DidRequestMatch (GKPlayer player, GKPlayer[] recipientPlayers)' instead.")] @@ -3067,6 +3223,10 @@ interface GKInviteEventListener { [Export ("player:didRequestMatchWithPlayers:")] void DidRequestMatch (GKPlayer player, string [] playerIDs); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("player:didRequestMatchWithRecipients:")] void DidRequestMatch (GKPlayer player, GKPlayer [] recipientPlayers); @@ -3075,6 +3235,10 @@ interface GKInviteEventListener { [MacCatalyst (13, 1)] [Model, Protocol, BaseType (typeof (NSObject))] interface GKTurnBasedEventListener { + /// To be added. + /// To be added. + /// Developers should not use this deprecated method. Developers should use 'DidRequestMatchWithOtherPlayers' instead. + /// To be added. [NoMac] [NoTV] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'DidRequestMatchWithOtherPlayers' instead.")] @@ -3083,25 +3247,58 @@ interface GKTurnBasedEventListener { [Export ("player:didRequestMatchWithPlayers:")] void DidRequestMatchWithPlayers (GKPlayer player, string [] playerIDsToInvite); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called to activate a turn for . + /// To be added. [Export ("player:receivedTurnEventForMatch:didBecomeActive:")] void ReceivedTurnEvent (GKPlayer player, GKTurnBasedMatch match, bool becameActive); + /// To be added. + /// To be added. + /// Method that is called after the is ended. + /// To be added. [Export ("player:matchEnded:")] void MatchEnded (GKPlayer player, GKTurnBasedMatch match); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called when receives a request for an . + /// To be added. [Export ("player:receivedExchangeRequest:forMatch:")] void ReceivedExchangeRequest (GKPlayer player, GKTurnBasedExchange exchange, GKTurnBasedMatch match); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called after cancels the . + /// To be added. [Export ("player:receivedExchangeCancellation:forMatch:")] void ReceivedExchangeCancellation (GKPlayer player, GKTurnBasedExchange exchange, GKTurnBasedMatch match); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Method that is called after the with completes. + /// To be added. [Export ("player:receivedExchangeReplies:forCompletedExchange:forMatch:")] void ReceivedExchangeReplies (GKPlayer player, GKTurnBasedExchangeReply [] replies, GKTurnBasedExchange exchange, GKTurnBasedMatch match); + /// To be added. + /// To be added. + /// Method that is called when requests a match with . + /// To be added. [MacCatalyst (13, 1)] [Export ("player:didRequestMatchWithOtherPlayers:")] void DidRequestMatchWithOtherPlayers (GKPlayer player, GKPlayer [] playersToInvite); + /// To be added. + /// To be added. + /// Method that is called after indicates that they desire to quit the match. + /// To be added. [MacCatalyst (13, 1)] [Export ("player:wantsToQuitMatch:")] void WantsToQuitMatch (GKPlayer player, GKTurnBasedMatch match); @@ -3269,21 +3466,50 @@ interface IGKGameSessionEventListener { } [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GKLocalPlayerListener' instead.")] [Protocol] interface GKGameSessionEventListener { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:didAddPlayer:")] void DidAddPlayer (GKGameSession session, GKCloudPlayer player); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:didRemovePlayer:")] void DidRemovePlayer (GKGameSession session, GKCloudPlayer player); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:player:didChangeConnectionState:")] void DidChangeConnectionState (GKGameSession session, GKCloudPlayer player, GKConnectionState newState); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:player:didSaveData:")] void DidSaveData (GKGameSession session, GKCloudPlayer player, NSData data); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:didReceiveData:fromPlayer:")] void DidReceiveData (GKGameSession session, NSData data, GKCloudPlayer player); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:didReceiveMessage:withData:fromPlayer:")] void DidReceiveMessage (GKGameSession session, string message, NSData data, GKCloudPlayer player); } @@ -3341,6 +3567,10 @@ interface GKChallengesViewControllerDelegate { [BaseType (typeof (NSViewController))] interface GKChallengesViewController : GKViewController { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("initWithNibName:bundle:")] NativeHandle Constructor ([NullAllowed] string nibName, [NullAllowed] NSBundle bundle); @@ -3374,15 +3604,33 @@ interface IGKSessionDelegate { } [Model] [Protocol] interface GKSessionDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:peer:didChangeState:")] void PeerChangedState (GKSession session, string peerID, GKPeerConnectionState state); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:didReceiveConnectionRequestFromPeer:")] void PeerConnectionRequest (GKSession session, string peerID); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:connectionWithPeerFailed:withError:")] void PeerConnectionFailed (GKSession session, string peerID, NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("session:didFailWithError:")] void FailedWithError (GKSession session, NSError error); } diff --git a/src/gameplaykit.cs b/src/gameplaykit.cs index 5966c0c261ec..3fd7a4a3a9ca 100644 --- a/src/gameplaykit.cs +++ b/src/gameplaykit.cs @@ -85,9 +85,15 @@ interface IGKAgentDelegate { } [BaseType (typeof (NSObject))] interface GKAgentDelegate { + /// To be added. + /// Method that is called before performs a simulation step. + /// To be added. [Export ("agentWillUpdate:")] void AgentWillUpdate (GKAgent agent); + /// To be added. + /// Method that is called after has performed a simulation step. + /// To be added. [Export ("agentDidUpdate:")] void AgentDidUpdate (GKAgent agent); } @@ -537,15 +543,30 @@ interface GKGameModel : NSCopying { [Export ("applyGameModelUpdate:")] void ApplyGameModelUpdate (IGKGameModelUpdate gameModelUpdate); + /// To be added. + /// Gets the score for the specified . + /// To be added. + /// To be added. [Export ("scoreForPlayer:")] nint GetScore (IGKGameModelPlayer player); + /// To be added. + /// Returns a Boolean value that tells whether the won. + /// To be added. + /// To be added. [Export ("isWinForPlayer:")] bool IsWin (IGKGameModelPlayer player); + /// To be added. + /// Returns a Boolean value that tells whether the lost. + /// To be added. + /// To be added. [Export ("isLossForPlayer:")] bool IsLoss (IGKGameModelPlayer player); + /// To be added. + /// Removes the specified changes from the game's state. + /// To be added. [MacCatalyst (13, 1)] [Export ("unapplyGameModelUpdate:")] void UnapplyGameModelUpdate (IGKGameModelUpdate gameModelUpdate); diff --git a/src/glkit.cs b/src/glkit.cs index e2ef02e6be62..0bf81d2a7932 100644 --- a/src/glkit.cs +++ b/src/glkit.cs @@ -816,6 +816,10 @@ interface GLKTextureLoader { [Export ("initWithShareContext:")] NativeHandle Constructor (NSOpenGLContext context); + /// Share context where the textures will be loaded. + /// Creates a GLKTextureLoader for an EAGLSharegroup, used for asynchronous texture loading. + /// + /// [NoMac] [Export ("initWithSharegroup:")] NativeHandle Constructor (EAGLSharegroup sharegroup); @@ -1053,6 +1057,12 @@ interface GLKTextureLoader { [Deprecated (PlatformName.TvOS, 12, 0, message: "Use 'Metal' instead.")] [BaseType (typeof (UIView), Delegates = new string [] { "WeakDelegate" }, Events = new Type [] { typeof (GLKViewDelegate) })] interface GLKView { + /// Frame used by the view, expressed in iOS points. + /// Initializes the GLKView with the specified frame. + /// + /// This constructor is used to programmatically create a new instance of GLKView with the specified dimension in the frame. The object will only be displayed once it has been added to a view hierarchy by calling AddSubview in a containing view. + /// This constructor is not invoked when deserializing objects from storyboards or XIB filesinstead the constructor that takes an NSCoder parameter is invoked. + /// [Export ("initWithFrame:")] NativeHandle Constructor (CGRect frame); @@ -1128,6 +1138,10 @@ interface GLKView { [Export ("enableSetNeedsDisplay")] bool EnableSetNeedsDisplay { get; set; } + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("initWithFrame:context:")] NativeHandle Constructor (CGRect frame, EAGLContext context); @@ -1184,6 +1198,16 @@ interface GLKViewDelegate { [Deprecated (PlatformName.TvOS, 12, 0, message: "Use 'Metal' instead.")] [BaseType (typeof (UIViewController))] interface GLKViewController : GLKViewDelegate { + /// + /// To be added. + /// This parameter can be . + /// + /// + /// To be added. + /// This parameter can be . + /// + /// Creates a new from the specified Nib name in the specified . + /// To be added. [Export ("initWithNibName:bundle:")] [PostGet ("NibBundle")] NativeHandle Constructor ([NullAllowed] string nibName, [NullAllowed] NSBundle bundle); @@ -1290,6 +1314,10 @@ interface GLKViewControllerDelegate { [Export ("glkViewControllerUpdate:")] void Update (GLKViewController controller); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("glkViewController:willPause:")] void WillPause (GLKViewController controller, bool pause); } diff --git a/src/homekit.cs b/src/homekit.cs index 2d4c9f9b3287..7ea4e0097ff1 100644 --- a/src/homekit.cs +++ b/src/homekit.cs @@ -105,15 +105,29 @@ interface IHMHomeManagerDelegate { } [BaseType (typeof (NSObject))] partial interface HMHomeManagerDelegate { + /// To be added. + /// A home in was updated. + /// To be added. [Export ("homeManagerDidUpdateHomes:")] void DidUpdateHomes (HMHomeManager manager); + /// To be added. + /// The primary home in was updated. + /// To be added. [Export ("homeManagerDidUpdatePrimaryHome:")] void DidUpdatePrimaryHome (HMHomeManager manager); + /// To be added. + /// To be added. + /// The was added to . + /// To be added. [Export ("homeManager:didAddHome:"), EventArgs ("HMHomeManager")] void DidAddHome (HMHomeManager manager, HMHome home); + /// To be added. + /// To be added. + /// The was removed from . + /// To be added. [Export ("homeManager:didRemoveHome:"), EventArgs ("HMHomeManager")] void DidRemoveHome (HMHomeManager manager, HMHome home); @@ -263,32 +277,66 @@ interface IHMAccessoryDelegate { } [BaseType (typeof (NSObject))] partial interface HMAccessoryDelegate { + /// To be added. + /// The updated its name. + /// To be added. [Export ("accessoryDidUpdateName:")] void DidUpdateName (HMAccessory accessory); + /// To be added. + /// To be added. + /// The updated the name of . + /// To be added. [Export ("accessory:didUpdateNameForService:"), EventArgs ("HMAccessoryUpdate")] void DidUpdateNameForService (HMAccessory accessory, HMService service); + /// To be added. + /// To be added. + /// The updated the service type for . + /// To be added. [Export ("accessory:didUpdateAssociatedServiceTypeForService:"), EventArgs ("HMAccessoryUpdate")] void DidUpdateAssociatedServiceType (HMAccessory accessory, HMService service); + /// To be added. + /// The updated its services. + /// To be added. [Export ("accessoryDidUpdateServices:")] void DidUpdateServices (HMAccessory accessory); + /// The accessory to which the profile was added. + /// The profile that was added. + /// Method that is called when was added to . + /// To be added. [MacCatalyst (14, 0)] [Export ("accessory:didAddProfile:"), EventArgs ("HMAccessoryProfile")] void DidAddProfile (HMAccessory accessory, HMAccessoryProfile profile); + /// The accessory from which the profile was removed. + /// The profile that was removed. + /// Method that is called when was removed from . + /// To be added. [MacCatalyst (14, 0)] [Export ("accessory:didRemoveProfile:"), EventArgs ("HMAccessoryProfile")] void DidRemoveProfile (HMAccessory accessory, HMAccessoryProfile profile); + /// To be added. + /// Delegate method called by the system when the accessory's network visibility has changed. + /// To be added. [Export ("accessoryDidUpdateReachability:")] void DidUpdateReachability (HMAccessory accessory); + /// To be added. + /// To be added. + /// To be added. + /// The updated the value of on . + /// To be added. [Export ("accessory:service:didUpdateValueForCharacteristic:"), EventArgs ("HMAccessoryServiceUpdateCharacteristic")] void DidUpdateValueForCharacteristic (HMAccessory accessory, HMService service, HMCharacteristic characteristic); + /// The accessory whose firmware version was updated. + /// The new firmware version. + /// Method that is called when the firmware version of is updated to . + /// To be added. [MacCatalyst (14, 0)] [Export ("accessory:didUpdateFirmwareVersion:"), EventArgs ("HMAccessoryFirmwareVersion")] void DidUpdateFirmwareVersion (HMAccessory accessory, string firmwareVersion); @@ -1032,97 +1080,225 @@ interface IHMHomeDelegate { } [BaseType (typeof (NSObject))] partial interface HMHomeDelegate { + /// To be added. + /// The name of the was updated. + /// To be added. [Export ("homeDidUpdateName:")] void DidUpdateNameForHome (HMHome home); + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (14, 0)] [Export ("homeDidUpdateAccessControlForCurrentUser:")] void DidUpdateAccessControlForCurrentUser (HMHome home); + /// To be added. + /// To be added. + /// The was added to . + /// To be added. [Export ("home:didAddAccessory:"), EventArgs ("HMHomeAccessory")] void DidAddAccessory (HMHome home, HMAccessory accessory); + /// To be added. + /// To be added. + /// The was removed from . + /// To be added. [Export ("home:didRemoveAccessory:"), EventArgs ("HMHomeAccessory")] void DidRemoveAccessory (HMHome home, HMAccessory accessory); + /// To be added. + /// To be added. + /// The was added to . + /// To be added. [Export ("home:didAddUser:"), EventArgs ("HMHomeUser")] void DidAddUser (HMHome home, HMUser user); + /// To be added. + /// To be added. + /// The was removed from . + /// To be added. [Export ("home:didRemoveUser:"), EventArgs ("HMHomeUser")] void DidRemoveUser (HMHome home, HMUser user); + /// To be added. + /// To be added. + /// To be added. + /// The was assigned to , which belongs to . + /// To be added. [Export ("home:didUpdateRoom:forAccessory:"), EventArgs ("HMHomeRoomAccessory")] void DidUpdateRoom (HMHome home, HMRoom room, HMAccessory accessory); + /// To be added. + /// To be added. + /// The was added to . + /// To be added. [Export ("home:didAddRoom:"), EventArgs ("HMHomeRoom")] void DidAddRoom (HMHome home, HMRoom room); + /// To be added. + /// To be added. + /// The was removed from . + /// To be added. [Export ("home:didRemoveRoom:"), EventArgs ("HMHomeRoom")] void DidRemoveRoom (HMHome home, HMRoom room); + /// To be added. + /// To be added. + /// The name of the , which belongs to , was updated. + /// To be added. [Export ("home:didUpdateNameForRoom:"), EventArgs ("HMHomeRoom")] void DidUpdateNameForRoom (HMHome home, HMRoom room); + /// To be added. + /// To be added. + /// The was added to . + /// To be added. [Export ("home:didAddZone:"), EventArgs ("HMHomeZone")] void DidAddZone (HMHome home, HMZone zone); + /// To be added. + /// To be added. + /// The was removed from . + /// To be added. [Export ("home:didRemoveZone:"), EventArgs ("HMHomeZone")] void DidRemoveZone (HMHome home, HMZone zone); + /// To be added. + /// To be added. + /// The name of the , which belongs to , was updated. + /// To be added. [Export ("home:didUpdateNameForZone:"), EventArgs ("HMHomeZone")] void DidUpdateNameForZone (HMHome home, HMZone zone); + /// To be added. + /// To be added. + /// To be added. + /// The was added to , which belongs to . + /// To be added. [Export ("home:didAddRoom:toZone:"), EventArgs ("HMHomeRoomZone")] void DidAddRoomToZone (HMHome home, HMRoom room, HMZone zone); + /// To be added. + /// To be added. + /// To be added. + /// The was removed from , which belongs to . + /// To be added. [Export ("home:didRemoveRoom:fromZone:"), EventArgs ("HMHomeRoomZone")] void DidRemoveRoomFromZone (HMHome home, HMRoom room, HMZone zone); + /// To be added. + /// To be added. + /// The was added to . + /// To be added. [Export ("home:didAddServiceGroup:"), EventArgs ("HMHomeServiceGroup")] void DidAddServiceGroup (HMHome home, HMServiceGroup group); + /// To be added. + /// To be added. + /// The was removed from . + /// To be added. [Export ("home:didRemoveServiceGroup:"), EventArgs ("HMHomeServiceGroup")] void DidRemoveServiceGroup (HMHome home, HMServiceGroup group); + /// To be added. + /// To be added. + /// The name of the , which belongs to , was updated. + /// To be added. [Export ("home:didUpdateNameForServiceGroup:"), EventArgs ("HMHomeServiceGroup")] void DidUpdateNameForServiceGroup (HMHome home, HMServiceGroup group); + /// To be added. + /// To be added. + /// To be added. + /// The was added to , which belongs to . + /// To be added. [Export ("home:didAddService:toServiceGroup:"), EventArgs ("HMHomeServiceServiceGroup")] void DidAddService (HMHome home, HMService service, HMServiceGroup group); + /// To be added. + /// To be added. + /// To be added. + /// The was removed from , which belongs to . + /// To be added. [Export ("home:didRemoveService:fromServiceGroup:"), EventArgs ("HMHomeServiceServiceGroup")] void DidRemoveService (HMHome home, HMService service, HMServiceGroup group); + /// To be added. + /// To be added. + /// The was added to . + /// To be added. [Export ("home:didAddActionSet:"), EventArgs ("HMHomeActionSet")] void DidAddActionSet (HMHome home, HMActionSet actionSet); + /// To be added. + /// To be added. + /// The was removed from . + /// To be added. [Export ("home:didRemoveActionSet:"), EventArgs ("HMHomeActionSet")] void DidRemoveActionSet (HMHome home, HMActionSet actionSet); + /// To be added. + /// To be added. + /// The name of the , which belongs to , was updated. + /// To be added. [Export ("home:didUpdateNameForActionSet:"), EventArgs ("HMHomeActionSet")] void DidUpdateNameForActionSet (HMHome home, HMActionSet actionSet); + /// To be added. + /// To be added. + /// The an action in , which belongs to , was updated. + /// To be added. [Export ("home:didUpdateActionsForActionSet:"), EventArgs ("HMHomeActionSet")] void DidUpdateActionsForActionSet (HMHome home, HMActionSet actionSet); + /// To be added. + /// To be added. + /// The was added to . + /// To be added. [Export ("home:didAddTrigger:"), EventArgs ("HMHomeTrigger")] void DidAddTrigger (HMHome home, HMTrigger trigger); + /// To be added. + /// To be added. + /// The was removed from . + /// To be added. [Export ("home:didRemoveTrigger:"), EventArgs ("HMHomeTrigger")] void DidRemoveTrigger (HMHome home, HMTrigger trigger); + /// To be added. + /// To be added. + /// The name of the , which belongs to , was updated. + /// To be added. [Export ("home:didUpdateNameForTrigger:"), EventArgs ("HMHomeTrigger")] void DidUpdateNameForTrigger (HMHome home, HMTrigger trigger); + /// To be added. + /// To be added. + /// The , which belongs to , was updated. + /// To be added. [Export ("home:didUpdateTrigger:"), EventArgs ("HMHomeTrigger")] void DidUpdateTrigger (HMHome home, HMTrigger trigger); + /// To be added. + /// To be added. + /// The , which belongs to , was unblocked. + /// To be added. [Export ("home:didUnblockAccessory:"), EventArgs ("HMHomeAccessory")] void DidUnblockAccessory (HMHome home, HMAccessory accessory); + /// To be added. + /// To be added. + /// To be added. + /// The occurred in , which belongs to . + /// To be added. [Export ("home:didEncounterError:forAccessory:"), EventArgs ("HMHomeErrorAccessory")] void DidEncounterError (HMHome home, NSError error, HMAccessory accessory); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (14, 0)] [Export ("home:didUpdateHomeHubState:"), EventArgs ("HMHomeHubState")] void DidUpdateHomeHubState (HMHome home, HMHomeHubState homeHubState); @@ -1964,9 +2140,19 @@ interface IHMCameraStreamControlDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface HMCameraStreamControlDelegate { + /// To be added. + /// Called by the system when the successfully starts the video stream. + /// To be added. [Export ("cameraStreamControlDidStartStream:")] void DidStartStream (HMCameraStreamControl cameraStreamControl); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Called by the system when the video stream stops. + /// To be added. [Export ("cameraStreamControl:didStopStreamWithError:")] void DidStopStream (HMCameraStreamControl cameraStreamControl, [NullAllowed] NSError error); } @@ -2032,9 +2218,23 @@ interface IHMCameraSnapshotControlDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface HMCameraSnapshotControlDelegate { + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. [Export ("cameraSnapshotControl:didTakeSnapshot:error:")] void DidTakeSnapshot (HMCameraSnapshotControl cameraSnapshotControl, [NullAllowed] HMCameraSnapshot snapshot, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (14, 0)] [Export ("cameraSnapshotControlDidUpdateMostRecentSnapshot:")] void DidUpdateMostRecentSnapshot (HMCameraSnapshotControl cameraSnapshotControl); diff --git a/src/intents.cs b/src/intents.cs index c4b2e65c518f..6c3d8103dcdb 100644 --- a/src/intents.cs +++ b/src/intents.cs @@ -3422,18 +3422,38 @@ interface INBookRestaurantReservationIntentHandling { [Export ("confirmBookRestaurantReservation:completion:")] void Confirm (INBookRestaurantReservationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the restaurant at which the booking will be made. + /// To be added. [Export ("resolveRestaurantForBookRestaurantReservation:withCompletion:")] void ResolveRestaurant (INBookRestaurantReservationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the reservation date. + /// To be added. [Export ("resolveBookingDateComponentsForBookRestaurantReservation:withCompletion:")] void ResolveBookingDate (INBookRestaurantReservationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the number of guests in the booking. + /// To be added. [Export ("resolvePartySizeForBookRestaurantReservation:withCompletion:")] void ResolvePartySize (INBookRestaurantReservationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a guest in the reservation. + /// To be added. [Export ("resolveGuestForBookRestaurantReservation:withCompletion:")] void ResolveGuest (INBookRestaurantReservationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of whether a guest has made a special request as part of the reservation. + /// To be added. [Export ("resolveGuestProvidedSpecialRequestTextForBookRestaurantReservation:withCompletion:")] void ResolveGuestProvidedSpecialRequest (INBookRestaurantReservationIntent intent, Action completion); } @@ -3588,6 +3608,10 @@ interface INCancelWorkoutIntentHandling { [Export ("confirmCancelWorkout:completion:")] void Confirm (INCancelWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can call this method to customize the resolution of the workout name. + /// To be added. [Export ("resolveWorkoutNameForCancelWorkout:withCompletion:")] void ResolveWorkoutName (INCancelWorkoutIntent intent, Action completion); } @@ -4262,6 +4286,10 @@ interface INEndWorkoutIntentHandling { [Export ("confirmEndWorkout:completion:")] void Confirm (INEndWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize validation of the workout name. + /// To be added. [Export ("resolveWorkoutNameForEndWorkout:withCompletion:")] void ResolveWorkoutName (INEndWorkoutIntent intent, Action completion); } @@ -4332,6 +4360,10 @@ interface INGetAvailableRestaurantReservationBookingDefaultsIntentHandling { [Export ("confirmGetAvailableRestaurantReservationBookingDefaults:completion:")] void Confirm (INGetAvailableRestaurantReservationBookingDefaultsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a booking default. + /// To be added. [Export ("resolveRestaurantForGetAvailableRestaurantReservationBookingDefaults:withCompletion:")] void ResolveAvailableRestaurantReservationBookingDefaults (INGetAvailableRestaurantReservationBookingDefaultsIntent intent, Action completion); } @@ -4414,12 +4446,24 @@ interface INGetAvailableRestaurantReservationBookingsIntentHandling { [Export ("confirmGetAvailableRestaurantReservationBookings:completion:")] void Confirm (INGetAvailableRestaurantReservationBookingsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the restaurant for gathering available reservations. + /// To be added. [Export ("resolveRestaurantForGetAvailableRestaurantReservationBookings:withCompletion:")] void ResolveAvailableRestaurantReservationBookings (INGetAvailableRestaurantReservationBookingsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the number of guests in the reservation. + /// To be added. [Export ("resolvePartySizeForGetAvailableRestaurantReservationBookings:withCompletion:")] void ResolvePartySizeAvailableRestaurantReservationBookings (INGetAvailableRestaurantReservationBookingsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the preferred dates for the reservation. + /// To be added. [Export ("resolvePreferredBookingDateComponentsForGetAvailableRestaurantReservationBookings:withCompletion:")] void ResolvePreferredBookingDateAvailableRestaurantReservationBookings (INGetAvailableRestaurantReservationBookingsIntent intent, Action completion); } @@ -4618,6 +4662,10 @@ interface INGetUserCurrentRestaurantReservationBookingsIntentHandling { [Export ("confirmGetUserCurrentRestaurantReservationBookings:completion:")] void Confirm (INGetUserCurrentRestaurantReservationBookingsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the user for the current reservation. + /// To be added. [Export ("resolveRestaurantForGetUserCurrentRestaurantReservationBookings:withCompletion:")] void ResolveUserCurrentRestaurantReservationBookings (INGetUserCurrentRestaurantReservationBookingsIntent intent, Action completion); } @@ -4982,9 +5030,17 @@ interface INListRideOptionsIntentHandling { [Export ("confirmListRideOptions:completion:")] void Confirm (INListRideOptionsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the pickup location. + /// To be added. [Export ("resolvePickupLocationForListRideOptions:withCompletion:")] void ResolvePickupLocation (INListRideOptionsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the dropoff location. + /// To be added. [Export ("resolveDropOffLocationForListRideOptions:withCompletion:")] void ResolveDropOffLocation (INListRideOptionsIntent intent, Action completion); } @@ -5301,6 +5357,10 @@ interface INPauseWorkoutIntentHandling { [Export ("confirmPauseWorkout:completion:")] void Confirm (INPauseWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can call this method to trigger validation of the workout name. + /// To be added. [Export ("resolveWorkoutNameForPauseWorkout:withCompletion:")] void ResolveWorkoutName (INPauseWorkoutIntent intent, Action completion); } @@ -5901,24 +5961,44 @@ interface INRequestPaymentIntentHandling { [Export ("confirmRequestPayment:completion:")] void Confirm (INRequestPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the payer. + /// To be added. [Deprecated (PlatformName.iOS, 11, 0, message: "Use 'ResolvePayer (INRequestPaymentIntent, Action)' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolvePayer (INRequestPaymentIntent, Action)' instead.")] [Export ("resolvePayerForRequestPayment:withCompletion:")] void ResolvePayer (INRequestPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of a payer. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolvePayerForRequestPayment:completion:")] void ResolvePayer (INRequestPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers should not use this deprecated method. Developers should use 'ResolveCurrencyAmount (INRequestPaymentIntent, Action<INRequestPaymentCurrencyAmountResolutionResult>)' instead. + /// To be added. [Deprecated (PlatformName.iOS, 11, 0, message: "Use 'ResolveCurrencyAmount (INRequestPaymentIntent, Action)' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveCurrencyAmount (INRequestPaymentIntent, Action)' instead.")] [Export ("resolveCurrencyAmountForRequestPayment:withCompletion:")] void ResolveCurrencyAmount (INRequestPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a currency and amount. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveCurrencyAmountForRequestPayment:completion:")] void ResolveCurrencyAmount (INRequestPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a note to accompany the request. + /// To be added. [Export ("resolveNoteForRequestPayment:withCompletion:")] void ResolveNote (INRequestPaymentIntent intent, Action completion); } @@ -5997,18 +6077,38 @@ interface INRequestRideIntentHandling { [Export ("confirmRequestRide:completion:")] void Confirm (INRequestRideIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the pickup location. + /// To be added. [Export ("resolvePickupLocationForRequestRide:withCompletion:")] void ResolvePickupLocation (INRequestRideIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the dropoff location. + /// To be added. [Export ("resolveDropOffLocationForRequestRide:withCompletion:")] void ResolveDropOffLocation (INRequestRideIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of options related to the ride. + /// To be added. [Export ("resolveRideOptionNameForRequestRide:withCompletion:")] void ResolveRideOptionName (INRequestRideIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the number of passengers in the party. + /// To be added. [Export ("resolvePartySizeForRequestRide:withCompletion:")] void ResolvePartySize (INRequestRideIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this to customize resolution of scheduled pickup times. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveScheduledPickupTimeForRequestRide:withCompletion:")] void ResolveScheduledPickupTime (INRequestRideIntent intent, Action completion); @@ -6363,6 +6463,10 @@ interface INResumeWorkoutIntentHandling { [Export ("confirmResumeWorkout:completion:")] void Confirm (INResumeWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can call this method to trigger validation of the workout name. + /// To be added. [Export ("resolveWorkoutNameForResumeWorkout:withCompletion:")] void ResolveWorkoutName (INResumeWorkoutIntent intent, Action completion); } @@ -6717,9 +6821,17 @@ interface INSaveProfileInCarIntentHandling { [Export ("confirmSaveProfileInCar:completion:")] void Confirm (INSaveProfileInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the profile number. + /// To be added. [Export ("resolveProfileNumberForSaveProfileInCar:withCompletion:")] void ResolveProfileNumber (INSaveProfileInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the profile name. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveProfileNameForSaveProfileInCar:withCompletion:")] void ResolveProfileName (INSaveProfileInCarIntent intent, Action completion); @@ -6817,22 +6929,42 @@ interface INSearchCallHistoryIntentHandling { [Export ("confirmSearchCallHistory:completion:")] void Confirm (INSearchCallHistoryIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers should not use this deprecated method. Developers should use 'ResolveCallTypes' instead. + /// To be added. [Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'ResolveCallTypes' instead.")] [Deprecated (PlatformName.iOS, 11, 0, message: "Use 'ResolveCallTypes' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveCallTypes' instead.")] [Export ("resolveCallTypeForSearchCallHistory:withCompletion:")] void ResolveCallType (INSearchCallHistoryIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the "date created" parameter of the search. + /// To be added. [Export ("resolveDateCreatedForSearchCallHistory:withCompletion:")] void ResolveDateCreated (INSearchCallHistoryIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the recipient parameter of the search. + /// To be added. [Export ("resolveRecipientForSearchCallHistory:withCompletion:")] void ResolveRecipient (INSearchCallHistoryIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve call types for a history search. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveCallTypesForSearchCallHistory:withCompletion:")] void ResolveCallTypes (INSearchCallHistoryIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of whether the user or app may search for unseen calls. + /// To be added. [NoMac] [MacCatalyst (13, 1)] [Export ("resolveUnseenForSearchCallHistory:withCompletion:")] @@ -6969,24 +7101,48 @@ interface INSearchForMessagesIntentHandling { [Export ("confirmSearchForMessages:completion:")] void Confirm (INSearchForMessagesIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of recipients in the message search. + /// To be added. [Export ("resolveRecipientsForSearchForMessages:withCompletion:")] void ResolveRecipients (INSearchForMessagesIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of senders in the message search. + /// To be added. [Export ("resolveSendersForSearchForMessages:withCompletion:")] void ResolveSenders (INSearchForMessagesIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of attributes in the search. + /// To be added. [Export ("resolveAttributesForSearchForMessages:withCompletion:")] void ResolveAttributes (INSearchForMessagesIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the date range used in the search. + /// To be added. [Export ("resolveDateTimeRangeForSearchForMessages:withCompletion:")] void ResolveDateTimeRange (INSearchForMessagesIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers should not use this deprecated method. Developers should use 'ResolveSpeakableGroupNames' instead. + /// To be added. [Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'ResolveSpeakableGroupNames' instead.")] [Deprecated (PlatformName.iOS, 11, 0, message: "Use 'ResolveSpeakableGroupNames' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveSpeakableGroupNames' instead.")] [Export ("resolveGroupNamesForSearchForMessages:withCompletion:")] void ResolveGroupNames (INSearchForMessagesIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of speakable names for the groups that were named as recipients. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveSpeakableGroupNamesForSearchForMessages:withCompletion:")] void ResolveSpeakableGroupNames (INSearchForMessagesIntent intent, Action completion); @@ -7072,19 +7228,39 @@ interface INSearchForPhotosIntentHandling { [Export ("confirmSearchForPhotos:completion:")] void Confirm (INSearchForPhotosIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a date-created variable. + /// To be added. [Export ("resolveDateCreatedForSearchForPhotos:withCompletion:")] void ResolveDateCreated (INSearchForPhotosIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the location-created variable. + /// To be added. [Export ("resolveLocationCreatedForSearchForPhotos:withCompletion:")] void ResolveLocationCreated (INSearchForPhotosIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resoluition of a photo album name. + /// To be added. [Export ("resolveAlbumNameForSearchForPhotos:withCompletion:")] void ResolveAlbumName (INSearchForPhotosIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the search terms. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveSearchTermsForSearchForPhotos:withCompletion:")] void ResolveSearchTerms (INSearchForPhotosIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of people in the photo. + /// To be added. [Export ("resolvePeopleInPhotoForSearchForPhotos:withCompletion:")] void ResolvePeopleInPhoto (INSearchForPhotosIntent intent, Action completion); } @@ -7211,19 +7387,35 @@ interface INSendMessageIntentHandling { [Export ("confirmSendMessage:completion:")] void Confirm (INSendMessageIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of message recipients. + /// To be added. [Deprecated (PlatformName.iOS, 11, 0, message: "Use 'ResolveRecipients (INSendMessageIntent, Action)' instead.")] [Deprecated (PlatformName.MacOSX, 10, 13, message: "Use 'ResolveRecipients (INSendMessageIntent, Action)' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveRecipients (INSendMessageIntent, Action)' instead.")] [Export ("resolveRecipientsForSendMessage:withCompletion:")] void ResolveRecipients (INSendMessageIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of message recipients. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveRecipientsForSendMessage:completion:")] void ResolveRecipients (INSendMessageIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the content of a message. + /// To be added. [Export ("resolveContentForSendMessage:withCompletion:")] void ResolveContent (INSendMessageIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers should not use this deprecated method. Developers should use 'ResolveSpeakableGroupName' instead. + /// To be added. [Deprecated (PlatformName.MacOSX, 12, 0, message: "Use 'ResolveSpeakableGroupName' instead.")] [Deprecated (PlatformName.iOS, 11, 0, message: "Use 'ResolveSpeakableGroupName' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveSpeakableGroupName' instead.")] @@ -7235,6 +7427,10 @@ interface INSendMessageIntentHandling { [Export ("resolveOutgoingMessageTypeForSendMessage:withCompletion:")] void ResolveOutgoingMessageType (INSendMessageIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the speakable group name. + /// To be added. [NoMac] // The INSpeakableStringResolutionResult used as a parameter type is not available in macOS [MacCatalyst (13, 1)] [Export ("resolveSpeakableGroupNameForSendMessage:withCompletion:")] @@ -7308,24 +7504,44 @@ interface INSendPaymentIntentHandling { [Export ("confirmSendPayment:completion:")] void Confirm (INSendPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the payee. + /// To be added. [Deprecated (PlatformName.iOS, 11, 0, message: "Use 'ResolvePayee (INSendPaymentIntent, Action)' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolvePayee (INSendPaymentIntent, Action)' instead.")] [Export ("resolvePayeeForSendPayment:withCompletion:")] void ResolvePayee (INSendPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the payee. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolvePayeeForSendPayment:completion:")] void ResolvePayee (INSendPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers should not use this deprecated method. Developers should use 'ResolveCurrencyAmount (INSendPaymentIntent, Action<INSendPaymentCurrencyAmountResolutionResult>)' instead. + /// To be added. [Deprecated (PlatformName.iOS, 11, 0, message: "Use 'ResolveCurrencyAmount (INSendPaymentIntent, Action)' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveCurrencyAmount (INSendPaymentIntent, Action)' instead.")] [Export ("resolveCurrencyAmountForSendPayment:withCompletion:")] void ResolveCurrencyAmount (INSendPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a currency and amount. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveCurrencyAmountForSendPayment:completion:")] void ResolveCurrencyAmount (INSendPaymentIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a note associated with the payment. + /// To be added. [Export ("resolveNoteForSendPayment:withCompletion:")] void ResolveNote (INSendPaymentIntent intent, Action completion); } @@ -7389,9 +7605,17 @@ interface INSetAudioSourceInCarIntentHandling { [Export ("confirmSetAudioSourceInCar:completion:")] void Confirm (INSetAudioSourceInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the requested audio source. + /// To be added. [Export ("resolveAudioSourceForSetAudioSourceInCar:withCompletion:")] void ResolveAudioSource (INSetAudioSourceInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a relative audio source (e.g, "next," "previous," etc.). + /// To be added. [Export ("resolveRelativeAudioSourceReferenceForSetAudioSourceInCar:withCompletion:")] void ResolveRelativeAudioSourceReference (INSetAudioSourceInCarIntent intent, Action completion); } @@ -7498,39 +7722,87 @@ interface INSetClimateSettingsInCarIntentHandling { [Export ("confirmSetClimateSettingsInCar:completion:")] void Confirm (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of whether the requested fan can be enabled. + /// To be added. [Export ("resolveEnableFanForSetClimateSettingsInCar:withCompletion:")] void ResolveEnableFan (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of whether the air conditioner can be enabled. + /// To be added. [Export ("resolveEnableAirConditionerForSetClimateSettingsInCar:withCompletion:")] void ResolveEnableAirConditioner (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of whether climate control can be enabled. + /// To be added. [Export ("resolveEnableClimateControlForSetClimateSettingsInCar:withCompletion:")] void ResolveEnableClimateControl (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of whether automatic mode can be enabled. + /// To be added. [Export ("resolveEnableAutoModeForSetClimateSettingsInCar:withCompletion:")] void ResolveEnableAutoMode (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the air circulation mode. + /// To be added. [Export ("resolveAirCirculationModeForSetClimateSettingsInCar:withCompletion:")] void ResolveAirCirculationMode (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a fan speed index. + /// To be added. [Export ("resolveFanSpeedIndexForSetClimateSettingsInCar:withCompletion:")] void ResolveFanSpeedIndex (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a fan speed, as a percentage. + /// To be added. [Export ("resolveFanSpeedPercentageForSetClimateSettingsInCar:withCompletion:")] void ResolveFanSpeedPercentage (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a relative increase or decrease in the fan speed. + /// To be added. [Export ("resolveRelativeFanSpeedSettingForSetClimateSettingsInCar:withCompletion:")] void ResolveRelativeFanSpeedSetting (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of the specified temperature value. + /// To be added. [Export ("resolveTemperatureForSetClimateSettingsInCar:withCompletion:")] void ResolveTemperature (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a relative increase or decrease in temperature settings. + /// To be added. [Export ("resolveRelativeTemperatureSettingForSetClimateSettingsInCar:withCompletion:")] void ResolveRelativeTemperatureSetting (INSetClimateSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a requested climate zone. + /// To be added. [Export ("resolveClimateZoneForSetClimateSettingsInCar:withCompletion:")] void ResolveClimateZone (INSetClimateSettingsInCarIntent intent, Action completion); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveCarNameForSetClimateSettingsInCar:withCompletion:")] void ResolveCarName (INSetClimateSettingsInCarIntent intent, Action completion); @@ -7606,12 +7878,24 @@ interface INSetDefrosterSettingsInCarIntentHandling { [Export ("confirmSetDefrosterSettingsInCar:completion:")] void Confirm (INSetDefrosterSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of whether the defroster can be enabled. + /// To be added. [Export ("resolveEnableForSetDefrosterSettingsInCar:withCompletion:")] void ResolveEnable (INSetDefrosterSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of the requested defroster. + /// To be added. [Export ("resolveDefrosterForSetDefrosterSettingsInCar:withCompletion:")] void ResolveDefroster (INSetDefrosterSettingsInCarIntent intent, Action completion); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveCarNameForSetDefrosterSettingsInCar:withCompletion:")] void ResolveCarName (INSetDefrosterSettingsInCarIntent intent, Action completion); @@ -7671,6 +7955,10 @@ interface INSetMessageAttributeIntentHandling { [Export ("confirmSetMessageAttribute:completion:")] void Confirm (INSetMessageAttributeIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a message attribute. + /// To be added. [Export ("resolveAttributeForSetMessageAttribute:withCompletion:")] void ResolveAttribute (INSetMessageAttributeIntent intent, Action completion); } @@ -7757,18 +8045,34 @@ interface INSetProfileInCarIntentHandling { [Export ("confirmSetProfileInCar:completion:")] void Confirm (INSetProfileInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a profile number. + /// To be added. [Export ("resolveProfileNumberForSetProfileInCar:withCompletion:")] void ResolveProfileNumber (INSetProfileInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers should not use this deprecated method. The property doesn't need to be resolved. + /// To be added. [Deprecated (PlatformName.iOS, 11, 0, message: "The property doesn't need to be resolved.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "The property doesn't need to be resolved.")] [Export ("resolveDefaultProfileForSetProfileInCar:withCompletion:")] void ResolveDefaultProfile (INSetProfileInCarIntent intent, Action completion); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveCarNameForSetProfileInCar:withCompletion:")] void ResolveCarName (INSetProfileInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to customize the resolution of a profile name. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveProfileNameForSetProfileInCar:withCompletion:")] void ResolveProfileName (INSetProfileInCarIntent intent, Action completion); @@ -7841,18 +8145,38 @@ interface INSetRadioStationIntentHandling { [Export ("confirmSetRadioStation:completion:")] void Confirm (INSetRadioStationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of what kind of radio is available. + /// To be added. [Export ("resolveRadioTypeForSetRadioStation:withCompletion:")] void ResolveRadioType (INSetRadioStationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of a radio frequency. + /// To be added. [Export ("resolveFrequencyForSetRadioStation:withCompletion:")] void ResolveFrequency (INSetRadioStationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of a radio station name. + /// To be added. [Export ("resolveStationNameForSetRadioStation:withCompletion:")] void ResolveStationName (INSetRadioStationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of a radio channel. + /// To be added. [Export ("resolveChannelForSetRadioStation:withCompletion:")] void ResolveChannel (INSetRadioStationIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of a radio preset. + /// To be added. [Export ("resolvePresetNumberForSetRadioStation:withCompletion:")] void ResolvePresetNumber (INSetRadioStationIntent intent, Action completion); } @@ -7942,24 +8266,52 @@ interface INSetSeatSettingsInCarIntentHandling { [Export ("confirmSetSeatSettingsInCar:completion:")] void Confirm (INSetSeatSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of whether seat heating can be enabled. + /// To be added. [Export ("resolveEnableHeatingForSetSeatSettingsInCar:withCompletion:")] void ResolveEnableHeating (INSetSeatSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of whether seat cooling can be enabled. + /// To be added. [Export ("resolveEnableCoolingForSetSeatSettingsInCar:withCompletion:")] void ResolveEnableCooling (INSetSeatSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of whether seat massage can be enabled. + /// To be added. [Export ("resolveEnableMassageForSetSeatSettingsInCar:withCompletion:")] void ResolveEnableMassage (INSetSeatSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of choosing a particular seat. + /// To be added. [Export ("resolveSeatForSetSeatSettingsInCar:withCompletion:")] void ResolveSeat (INSetSeatSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of setting the absolute level of the requested service. + /// To be added. [Export ("resolveLevelForSetSeatSettingsInCar:withCompletion:")] void ResolveLevel (INSetSeatSettingsInCarIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can override this method to customize the resolution of setting a relative level of the requested service. + /// To be added. [Export ("resolveRelativeLevelSettingForSetSeatSettingsInCar:withCompletion:")] void ResolveRelativeLevelSetting (INSetSeatSettingsInCarIntent intent, Action completion); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveCarNameForSetSeatSettingsInCar:withCompletion:")] void ResolveCarName (INSetSeatSettingsInCarIntent intent, Action completion); @@ -8182,10 +8534,18 @@ interface INStartAudioCallIntentHandling { [Export ("confirmStartAudioCall:completion:")] void Confirm (INStartAudioCallIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the destination type. + /// To be added. [MacCatalyst (13, 1)] [Export ("resolveDestinationTypeForStartAudioCall:withCompletion:")] void ResolveDestinationType (INStartAudioCallIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may override this method to resolve a specific contact based on the . + /// To be added. [Export ("resolveContactsForStartAudioCall:withCompletion:")] void ResolveContacts (INStartAudioCallIntent intent, Action completion); } @@ -8269,15 +8629,31 @@ interface INStartPhotoPlaybackIntentHandling { [Export ("confirmStartPhotoPlayback:completion:")] void Confirm (INStartPhotoPlaybackIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this in order to customize the behavior of resolving the dates when the photos were taken. + /// To be added. [Export ("resolveDateCreatedForStartPhotoPlayback:withCompletion:")] void ResolveDateCreated (INStartPhotoPlaybackIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this in order to customize the behavior of resolving the location where the photos were taken. + /// To be added. [Export ("resolveLocationCreatedForStartPhotoPlayback:withCompletion:")] void ResolveLocationCreated (INStartPhotoPlaybackIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm that they can resolve the photo album name. + /// To be added. [Export ("resolveAlbumNameForStartPhotoPlayback:withCompletion:")] void ResolveAlbumName (INStartPhotoPlaybackIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this in order to customize the behavior of resolving the people in the photo. + /// To be added. [Export ("resolvePeopleInPhotoForStartPhotoPlayback:withCompletion:")] void ResolvePeopleInPhoto (INStartPhotoPlaybackIntent intent, Action completion); } @@ -8340,6 +8716,10 @@ interface INStartVideoCallIntentHandling { [Export ("confirmStartVideoCall:completion:")] void Confirm (INStartVideoCallIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of a contact. + /// To be added. [Export ("resolveContactsForStartVideoCall:withCompletion:")] void ResolveContacts (INStartVideoCallIntent intent, Action completion); } @@ -8409,18 +8789,38 @@ interface INStartWorkoutIntentHandling { [Export ("confirmStartWorkout:completion:")] void Confirm (INStartWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers can call this method to trigger validation of the workout name. + /// To be added. [Export ("resolveWorkoutNameForStartWorkout:withCompletion:")] void ResolveWorkoutName (INStartWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of a workout goal. + /// To be added. [Export ("resolveGoalValueForStartWorkout:withCompletion:")] void ResolveGoalValue (INStartWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the type of the workout goal. + /// To be added. [Export ("resolveWorkoutGoalUnitTypeForStartWorkout:withCompletion:")] void ResolveWorkoutGoalUnitType (INStartWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the workout location. + /// To be added. [Export ("resolveWorkoutLocationTypeForStartWorkout:withCompletion:")] void ResolveWorkoutLocationType (INStartWorkoutIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the determination of whether a workout is open-ended. + /// To be added. [Export ("resolveIsOpenEndedForStartWorkout:withCompletion:")] void ResolveIsOpenEnded (INStartWorkoutIntent intent, Action completion); } @@ -8775,9 +9175,17 @@ interface INActivateCarSignalIntentHandling { [Export ("confirmActivateCarSignal:completion:")] void Confirm (INActivateCarSignalIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the car's name. + /// To be added. [Export ("resolveCarNameForActivateCarSignal:withCompletion:")] void ResolveCarName (INActivateCarSignalIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the requested signals by type. + /// To be added. [Export ("resolveSignalsForActivateCarSignal:withCompletion:")] void ResolveSignals (INActivateCarSignalIntent intent, Action completion); } @@ -9035,6 +9443,10 @@ interface INGetCarLockStatusIntentHandling { [Export ("confirmGetCarLockStatus:completion:")] void Confirm (INGetCarLockStatusIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the car's name. + /// To be added. [Export ("resolveCarNameForGetCarLockStatus:withCompletion:")] void ResolveCarName (INGetCarLockStatusIntent intent, Action completion); } @@ -9099,6 +9511,10 @@ interface INGetCarPowerLevelStatusIntentHandling { [Export ("confirmGetCarPowerLevelStatus:completion:")] void Confirm (INGetCarPowerLevelStatusIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the car's name. + /// To be added. [Export ("resolveCarNameForGetCarPowerLevelStatus:withCompletion:")] void ResolveCarName (INGetCarPowerLevelStatusIntent intent, Action completion); } @@ -9272,24 +9688,52 @@ interface INPayBillIntentHandling { [Export ("confirmPayBill:completion:")] void Confirm (INPayBillIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the payee. + /// To be added. [Export ("resolveBillPayeeForPayBill:withCompletion:")] void ResolveBillPayee (INPayBillIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the account that will be debited to pay the bill. + /// To be added. [Export ("resolveFromAccountForPayBill:withCompletion:")] void ResolveFromAccount (INPayBillIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the transaction amount. + /// To be added. [Export ("resolveTransactionAmountForPayBill:withCompletion:")] void ResolveTransactionAmount (INPayBillIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the scheduled date for the transaction. + /// To be added. [Export ("resolveTransactionScheduledDateForPayBill:withCompletion:")] void ResolveTransactionScheduledDate (INPayBillIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the custom transaction notes. + /// To be added. [Export ("resolveTransactionNoteForPayBill:withCompletion:")] void ResolveTransactionNote (INPayBillIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the bill type. + /// To be added. [Export ("resolveBillTypeForPayBill:withCompletion:")] void ResolveBillType (INPayBillIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the bill due date. + /// To be added. [Export ("resolveDueDateForPayBill:withCompletion:")] void ResolveDueDate (INPayBillIntent intent, Action completion); } @@ -9590,18 +10034,38 @@ interface INSearchForBillsIntentHandling { [Export ("confirmSearchForBills:completion:")] void Confirm (INSearchForBillsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the payee. + /// To be added. [Export ("resolveBillPayeeForSearchForBills:withCompletion:")] void ResolveBillPayee (INSearchForBillsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the date range of payments. + /// To be added. [Export ("resolvePaymentDateRangeForSearchForBills:withCompletion:")] void ResolvePaymentDateRange (INSearchForBillsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the bill type. + /// To be added. [Export ("resolveBillTypeForSearchForBills:withCompletion:")] void ResolveBillType (INSearchForBillsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the bill status. + /// To be added. [Export ("resolveStatusForSearchForBills:withCompletion:")] void ResolveStatus (INSearchForBillsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the range of due dates. + /// To be added. [Export ("resolveDueDateRangeForSearchForBills:withCompletion:")] void ResolveDueDateRange (INSearchForBillsIntent intent, Action completion); } @@ -9662,9 +10126,17 @@ interface INSetCarLockStatusIntentHandling { [Export ("confirmSetCarLockStatus:completion:")] void Confirm (INSetCarLockStatusIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the lock status. + /// To be added. [Export ("resolveLockedForSetCarLockStatus:withCompletion:")] void ResolveLocked (INSetCarLockStatusIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the car name. + /// To be added. [Export ("resolveCarNameForSetCarLockStatus:withCompletion:")] void ResolveCarName (INSetCarLockStatusIntent intent, Action completion); } @@ -9799,9 +10271,17 @@ interface INAddTasksIntentHandling { [Export ("handleAddTasks:completion:")] void HandleAddTasks (INAddTasksIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready to add the task. + /// To be added. [Export ("confirmAddTasks:completion:")] void Confirm (INAddTasksIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the list that will receive added tasks. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'ResolveTargetTaskList (Action)' overload instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveTargetTaskList (Action)' overload instead.")] [Export ("resolveTargetTaskListForAddTasks:withCompletion:")] @@ -9812,12 +10292,24 @@ interface INAddTasksIntentHandling { [Export ("resolveTargetTaskListForAddTasks:completion:")] void ResolveTargetTaskList (INAddTasksIntent intent, Action completionHandler); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a task title. + /// To be added. [Export ("resolveTaskTitlesForAddTasks:withCompletion:")] void ResolveTaskTitles (INAddTasksIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a spatial trigger for a task. + /// To be added. [Export ("resolveSpatialEventTriggerForAddTasks:withCompletion:")] void ResolveSpatialEventTrigger (INAddTasksIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a temporal trigger for a task. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'ResolveTemporalEventTrigger (Action)' overload instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveTemporalEventTrigger (Action)' overload instead.")] [Export ("resolveTemporalEventTriggerForAddTasks:withCompletion:")] @@ -9886,12 +10378,24 @@ interface INAppendToNoteIntentHandling { [Export ("handleAppendToNote:completion:")] void HandleAppendToNote (INAppendToNoteIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready to append to the note. + /// To be added. [Export ("confirmAppendToNote:completion:")] void Confirm (INAppendToNoteIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the target note. + /// To be added. [Export ("resolveTargetNoteForAppendToNote:withCompletion:")] void ResolveTargetNoteForAppend (INAppendToNoteIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the content to append. + /// To be added. [Export ("resolveContentForAppendToNote:withCompletion:")] void ResolveContentForAppend (INAppendToNoteIntent intent, Action completion); } @@ -10195,6 +10699,10 @@ interface INCancelRideIntentHandling { [Export ("handleCancelRide:completion:")] void HandleCancelRide (INCancelRideIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// To be added. + /// To be added. [Export ("confirmCancelRide:completion:")] void Confirm (INCancelRideIntent intent, Action completion); } @@ -10251,15 +10759,31 @@ interface INCreateNoteIntentHandling { [Export ("handleCreateNote:completion:")] void HandleCreateNote (INCreateNoteIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready to create the note. + /// To be added. [Export ("confirmCreateNote:completion:")] void Confirm (INCreateNoteIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of a note's title. + /// To be added. [Export ("resolveTitleForCreateNote:withCompletion:")] void ResolveTitle (INCreateNoteIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to resolve the content of a note. + /// To be added. [Export ("resolveContentForCreateNote:withCompletion:")] void ResolveContent (INCreateNoteIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of a note's group name. + /// To be added. [Export ("resolveGroupNameForCreateNote:withCompletion:")] void ResolveGroupName (INCreateNoteIntent intent, Action completion); } @@ -10317,15 +10841,31 @@ interface INCreateTaskListIntentHandling { [Export ("handleCreateTaskList:completion:")] void HandleCreateTaskList (INCreateTaskListIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready to create the task. + /// To be added. [Export ("confirmCreateTaskList:completion:")] void Confirm (INCreateTaskListIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a task list's title. + /// To be added. [Export ("resolveTitleForCreateTaskList:withCompletion:")] void ResolveTitle (INCreateTaskListIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a task list's task titles. + /// To be added. [Export ("resolveTaskTitlesForCreateTaskList:withCompletion:")] void ResolveTaskTitles (INCreateTaskListIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a task list's group name. + /// To be added. [Export ("resolveGroupNameForCreateTaskList:withCompletion:")] void ResolveGroupName (INCreateTaskListIntent intent, Action completion); } @@ -10426,9 +10966,17 @@ interface INGetVisualCodeIntentHandling { [Export ("handleGetVisualCode:completion:")] void HandleGetVisualCode (INGetVisualCodeIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready and allowed to provide the code. + /// To be added. [Export ("confirmGetVisualCode:completion:")] void Confirm (INGetVisualCodeIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of a visual code type. + /// To be added. [Export ("resolveVisualCodeTypeForGetVisualCode:withCompletion:")] void ResolveVisualCodeType (INGetVisualCodeIntent intent, Action completion); } @@ -10975,18 +11523,38 @@ interface INSearchForAccountsIntentHandling { [Export ("handleSearchForAccounts:completion:")] void HandleSearchForAccounts (INSearchForAccountsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready to perform the search. + /// To be added. [Export ("confirmSearchForAccounts:completion:")] void Confirm (INSearchForAccountsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of account nicknames. + /// To be added. [Export ("resolveAccountNicknameForSearchForAccounts:withCompletion:")] void ResolveAccountNickname (INSearchForAccountsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of account types. + /// To be added. [Export ("resolveAccountTypeForSearchForAccounts:withCompletion:")] void ResolveAccountType (INSearchForAccountsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of organization names. + /// To be added. [Export ("resolveOrganizationNameForSearchForAccounts:withCompletion:")] void ResolveOrganizationName (INSearchForAccountsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of requested balance types. + /// To be added. [Export ("resolveRequestedBalanceTypeForSearchForAccounts:withCompletion:")] void ResolveRequestedBalanceType (INSearchForAccountsIntent intent, Action completion); } @@ -11081,30 +11649,66 @@ interface INSearchForNotebookItemsIntentHandling { [Export ("handleSearchForNotebookItems:completion:")] void HandleSearchForNotebookItems (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready to perform the search. + /// To be added. [Export ("confirmSearchForNotebookItems:completion:")] void Confirm (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the title to search for. + /// To be added. [Export ("resolveTitleForSearchForNotebookItems:withCompletion:")] void ResolveTitle (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the search string. + /// To be added. [Export ("resolveContentForSearchForNotebookItems:withCompletion:")] void ResolveContent (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the type of items to search for. + /// To be added. [Export ("resolveItemTypeForSearchForNotebookItems:withCompletion:")] void ResolveItemType (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the search status. + /// To be added. [Export ("resolveStatusForSearchForNotebookItems:withCompletion:")] void ResolveStatus (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the location of a location-based search. + /// To be added. [Export ("resolveLocationForSearchForNotebookItems:withCompletion:")] void ResolveLocation (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the location search type. + /// To be added. [Export ("resolveLocationSearchTypeForSearchForNotebookItems:withCompletion:")] void ResolveLocationSearchType (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the search time and date. + /// To be added. [Export ("resolveDateTimeForSearchForNotebookItems:withCompletion:")] void ResolveDateTime (INSearchForNotebookItemsIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the date type. + /// To be added. [Export ("resolveDateSearchTypeForSearchForNotebookItems:withCompletion:")] void ResolveDateSearchType (INSearchForNotebookItemsIntent intent, Action completion); @@ -11353,6 +11957,10 @@ interface INSendRideFeedbackIntentHandling { [Export ("handleSendRideFeedback:completion:")] void HandleSendRideFeedback (INSendRideFeedbackIntent sendRideFeedbackintent, Action completion); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("confirmSendRideFeedback:completion:")] void Confirm (INSendRideFeedbackIntent sendRideFeedbackIntent, Action completion); } @@ -11422,9 +12030,17 @@ interface INSetTaskAttributeIntentHandling { [Export ("handleSetTaskAttribute:completion:")] void HandleSetTaskAttribute (INSetTaskAttributeIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready to update the attributes. + /// To be added. [Export ("confirmSetTaskAttribute:completion:")] void Confirm (INSetTaskAttributeIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the task to update. + /// To be added. [Export ("resolveTargetTaskForSetTaskAttribute:withCompletion:")] void ResolveTargetTask (INSetTaskAttributeIntent intent, Action completion); @@ -11433,6 +12049,10 @@ interface INSetTaskAttributeIntentHandling { [Export ("resolveTaskTitleForSetTaskAttribute:withCompletion:")] void ResolveTaskTitle (INSetTaskAttributeIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the task status. + /// To be added. [Export ("resolveStatusForSetTaskAttribute:withCompletion:")] void ResolveStatus (INSetTaskAttributeIntent intent, Action completion); @@ -11441,9 +12061,17 @@ interface INSetTaskAttributeIntentHandling { [Export ("resolvePriorityForSetTaskAttribute:withCompletion:")] void ResolvePriority (INSetTaskAttributeIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of a spatial event trigger. + /// To be added. [Export ("resolveSpatialEventTriggerForSetTaskAttribute:withCompletion:")] void ResolveSpatialEventTrigger (INSetTaskAttributeIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customise resolution of the temporal trigger. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'ResolveTemporalEventTrigger (INSetTaskAttributeIntent Action)' overload instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ResolveTemporalEventTrigger (INSetTaskAttributeIntent Action)' overload instead.")] [Export ("resolveTemporalEventTriggerForSetTaskAttribute:withCompletion:")] @@ -11897,21 +12525,45 @@ interface INTransferMoneyIntentHandling { [Export ("handleTransferMoney:completion:")] void HandleTransferMoney (INTransferMoneyIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to confirm whether local and remote resources are ready to perform the transfer. + /// To be added. [Export ("confirmTransferMoney:completion:")] void Confirm (INTransferMoneyIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the transfer amount. + /// To be added. [Export ("resolveFromAccountForTransferMoney:withCompletion:")] void ResolveFromAccount (INTransferMoneyIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of the account that will receive the transfer. + /// To be added. [Export ("resolveToAccountForTransferMoney:withCompletion:")] void ResolveToAccount (INTransferMoneyIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize the resolution of the amount of the transaction. + /// To be added. [Export ("resolveTransactionAmountForTransferMoney:withCompletion:")] void ResolveTransactionAmount (INTransferMoneyIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a scheduled transfer date. + /// To be added. [Export ("resolveTransactionScheduledDateForTransferMoney:withCompletion:")] void ResolveTransactionScheduledDate (INTransferMoneyIntent intent, Action completion); + /// Specifies the user's intention. + /// Completion method that must be called by the override. + /// Developers may implement this method to customize resolution of a note for a transfer. + /// To be added. [Export ("resolveTransactionNoteForTransferMoney:withCompletion:")] void ResolveTransactionNote (INTransferMoneyIntent intent, Action completion); } @@ -12175,6 +12827,10 @@ interface INPlayMediaIntentHandling { [Export ("handlePlayMedia:completion:")] void HandlePlayMedia (INPlayMediaIntent intent, Action completion); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("confirmPlayMedia:completion:")] void Confirm (INPlayMediaIntent intent, Action completion); diff --git a/src/intentsui.cs b/src/intentsui.cs index cc1c947978b5..568519a7c1bd 100644 --- a/src/intentsui.cs +++ b/src/intentsui.cs @@ -82,6 +82,13 @@ interface INUIHostedViewControlling { [Export ("configureWithInteraction:context:completion:")] void Configure (INInteraction interaction, INUIHostedViewContext context, Action completion); + /// 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 ("configureViewForParameters:ofInteraction:interactiveBehavior:context:completion:")] void ConfigureView (NSSet parameters, INInteraction interaction, INUIInteractiveBehavior interactiveBehavior, INUIHostedViewContext context, INUIHostedViewControllingConfigureViewHandler completionHandler); diff --git a/src/mapkit.cs b/src/mapkit.cs index d00d648ebdf9..875984de15b1 100644 --- a/src/mapkit.cs +++ b/src/mapkit.cs @@ -66,6 +66,9 @@ interface MKAnnotation { [NullAllowed] string Subtitle { get; } + /// To be added. + /// To be added. + /// To be added. [Export ("setCoordinate:")] [MacCatalyst (13, 1)] void SetCoordinate (CLLocationCoordinate2D value); @@ -90,6 +93,10 @@ interface MKOverlay { [Export ("boundingMapRect")] MKMapRect BoundingMapRect { get; } + /// The area being checked for intersection with this . + /// To be added. + /// To be added. + /// To be added. [Export ("intersectsMapRect:")] bool Intersects (MKMapRect rect); @@ -838,39 +845,82 @@ interface IMKMapViewDelegate { } [Protocol] [MacCatalyst (13, 1)] interface MKMapViewDelegate { + /// To be added. + /// To be added. + /// Indicates the region displayed by is about to change. + /// To be added. [Export ("mapView:regionWillChangeAnimated:"), EventArgs ("MKMapViewChange")] void RegionWillChange (MKMapView mapView, bool animated); + /// To be added. + /// To be added. + /// Indicates the region displayed by has changed. + /// To be added. [Export ("mapView:regionDidChangeAnimated:"), EventArgs ("MKMapViewChange")] void RegionChanged (MKMapView mapView, bool animated); + /// To be added. + /// Indicates that loading of map data is about to begin. + /// To be added. [Export ("mapViewWillStartLoadingMap:")] void WillStartLoadingMap (MKMapView mapView); + /// To be added. + /// Indicates that loading of map data has completed. + /// To be added. [Export ("mapViewDidFinishLoadingMap:")] void MapLoaded (MKMapView mapView); + /// To be added. + /// To be added. + /// Indicates an caused loading to fail. + /// To be added. [Export ("mapViewDidFailLoadingMap:withError:"), EventArgs ("NSError", true)] void LoadingMapFailed (MKMapView mapView, NSError error); + /// To be added. + /// To be added. + /// Returns the associated with the . + /// To be added. + /// To be added. [Export ("mapView:viewForAnnotation:"), DelegateName ("MKMapViewAnnotation"), DefaultValue (null)] [return: NullAllowed] MKAnnotationView GetViewForAnnotation (MKMapView mapView, IMKAnnotation annotation); + /// To be added. + /// To be added. + /// Called when an annotation view (or views) have been added to . + /// To be added. [Export ("mapView:didAddAnnotationViews:"), EventArgs ("MKMapViewAnnotation")] void DidAddAnnotationViews (MKMapView mapView, MKAnnotationView [] views); + /// To be added. + /// To be added. + /// To be added. + /// Called when the callout accessory has been tapped. + /// To be added. [NoMac] [NoTV] [MacCatalyst (13, 1)] [Export ("mapView:annotationView:calloutAccessoryControlTapped:"), EventArgs ("MKMapViewAccessoryTapped")] void CalloutAccessoryControlTapped (MKMapView mapView, MKAnnotationView view, UIControl control); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Called when the drag state has changed from to . + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("mapView:annotationView:didChangeDragState:fromOldState:"), EventArgs ("MKMapViewDragState")] void ChangedDragState (MKMapView mapView, MKAnnotationView annotationView, MKAnnotationViewDragState newState, MKAnnotationViewDragState oldState); + /// To be added. + /// To be added. + /// Use MKOverlayRenderer.RendererForOverlay instead + /// To be added. + /// To be added. [NoMac] [NoTV] [Export ("mapView:viewForOverlay:"), DelegateName ("MKMapViewOverlay"), DefaultValue (null)] @@ -879,6 +929,10 @@ interface MKMapViewDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'MKOverlayRenderer.RendererForOverlay' instead.")] MKOverlayView GetViewForOverlay (MKMapView mapView, IMKOverlay overlay); + /// To be added. + /// To be added. + /// Developers should not use this deprecated method. Developers should use 'DidAddOverlayRenderers' instead. + /// To be added. [NoMac] [NoTV] [Export ("mapView:didAddOverlayViews:"), EventArgs ("MKOverlayViews")] @@ -887,12 +941,24 @@ interface MKMapViewDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'DidAddOverlayRenderers' instead.")] void DidAddOverlayViews (MKMapView mapView, MKOverlayView overlayViews); + /// To be added. + /// To be added. + /// Indicates that the specified has been selected. + /// To be added. [Export ("mapView:didSelectAnnotationView:"), EventArgs ("MKAnnotationView")] void DidSelectAnnotationView (MKMapView mapView, MKAnnotationView view); + /// To be added. + /// To be added. + /// Indicates that the attempt to locate the current user has failed due to . + /// To be added. [Export ("mapView:didFailToLocateUserWithError:"), EventArgs ("NSError", true)] void DidFailToLocateUser (MKMapView mapView, NSError error); + /// To be added. + /// To be added. + /// Indicates that has been deselected. + /// To be added. [Export ("mapView:didDeselectAnnotationView:"), EventArgs ("MKAnnotationView")] void DidDeselectAnnotationView (MKMapView mapView, MKAnnotationView view); @@ -904,35 +970,74 @@ interface MKMapViewDelegate { [Export ("mapView:didDeselectAnnotation:"), EventArgs ("MKAnnotation")] void DidDeselectAnnotation (MKMapView mapView, IMKAnnotation annotation); + /// To be added. + /// Indicates that the system will start attempting to locate the user. + /// To be added. [Export ("mapViewWillStartLocatingUser:")] void WillStartLocatingUser (MKMapView mapView); + /// To be added. + /// Indicates the system has stopped attemptig to locate the user. + /// To be added. [Export ("mapViewDidStopLocatingUser:")] void DidStopLocatingUser (MKMapView mapView); + /// To be added. + /// To be added. + /// Indicates the system has provided an update to the user's location. + /// To be added. [Export ("mapView:didUpdateUserLocation:"), EventArgs ("MKUserLocation")] void DidUpdateUserLocation (MKMapView mapView, MKUserLocation userLocation); + /// To be added. + /// To be added. + /// To be added. + /// Indicates a change in the active . + /// To be added. [MacCatalyst (13, 1)] [Export ("mapView:didChangeUserTrackingMode:animated:"), EventArgs ("MMapViewUserTracking")] void DidChangeUserTrackingMode (MKMapView mapView, MKUserTrackingMode mode, bool animated); + /// The being rendered. + /// The overlay requiring a renderer. + /// Calculates he appropriate to the . + /// To be added. + /// To be added. [Export ("mapView:rendererForOverlay:"), DelegateName ("MKRendererForOverlayDelegate"), DefaultValue (null)] MKOverlayRenderer OverlayRenderer (MKMapView mapView, IMKOverlay overlay); + /// To be added. + /// To be added. + /// Called when an overlay renderer (or renderers) have been added to . + /// To be added. [Export ("mapView:didAddOverlayRenderers:"), EventArgs ("MKDidAddOverlayRenderers")] void DidAddOverlayRenderers (MKMapView mapView, MKOverlayRenderer [] renderers); + /// To be added. + /// Indicates that rendering of is about to begin. + /// To be added. [Export ("mapViewWillStartRenderingMap:")] void WillStartRenderingMap (MKMapView mapView); + /// To be added. + /// To be added. + /// Indicates that rendering of has completed. + /// To be added. [Export ("mapViewDidFinishRenderingMap:fullyRendered:"), EventArgs ("MKDidFinishRenderingMap")] void DidFinishRenderingMap (MKMapView mapView, bool fullyRendered); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("mapView:clusterAnnotationForMemberAnnotations:"), DelegateName ("MKCreateClusterAnnotation"), DefaultValue (null)] MKClusterAnnotation CreateClusterAnnotation (MKMapView mapView, IMKAnnotation [] memberAnnotations); + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("mapViewDidChangeVisibleRegion:")] void DidChangeVisibleRegion (MKMapView mapView); @@ -2252,9 +2357,18 @@ interface IMKLocalSearchCompleterDelegate { } [Model] [BaseType (typeof (NSObject))] interface MKLocalSearchCompleterDelegate { + /// The search completer to which this delegate belongs. + /// The search completer updated the results with new search completions. + /// + /// After this method is called, developers can check the property for the newest results. + /// [Export ("completerDidUpdateResults:")] void DidUpdateResults (MKLocalSearchCompleter completer); + /// The search completer to which this delegate belongs. + /// The error that occured. + /// The search completer encountered an error while searching for completions. + /// To be added. [Export ("completer:didFailWithError:")] void DidFail (MKLocalSearchCompleter completer, NSError error); } diff --git a/src/metal.cs b/src/metal.cs index b6a366946a22..9472c0e12875 100644 --- a/src/metal.cs +++ b/src/metal.cs @@ -3088,6 +3088,11 @@ partial interface MTLRenderCommandEncoder : MTLCommandEncoder { [Export ("executeCommandsInBuffer:indirectBuffer:indirectBufferOffset:")] void ExecuteCommands (IMTLIndirectCommandBuffer indirectCommandbuffer, IMTLBuffer indirectRangeBuffer, nuint indirectBufferOffset); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Abstract (GenerateExtensionMethod = true)] [iOS (16, 0), TV (16, 0), MacCatalyst (15, 0)] [Export ("memoryBarrierWithScope:afterStages:beforeStages:")] diff --git a/src/metalperformanceshaders.cs b/src/metalperformanceshaders.cs index 6805999be6c7..039d3d9666d5 100644 --- a/src/metalperformanceshaders.cs +++ b/src/metalperformanceshaders.cs @@ -9708,12 +9708,25 @@ interface MPSNNPadding : NSSecureCoding { [Export ("paddingMethod")] MPSNNPaddingMethod PaddingMethod { get; } + /// To be added. + /// To be added. + /// To be added. [Export ("label")] string GetLabel (); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("destinationImageDescriptorForSourceImages:sourceStates:forKernel:suggestedDescriptor:")] MPSImageDescriptor GetDestinationImageDescriptor (MPSImage [] sourceImages, [NullAllowed] MPSState [] sourceStates, MPSKernel kernel, MPSImageDescriptor inDescriptor); + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("inverse")] [return: NullAllowed] diff --git a/src/modelio.cs b/src/modelio.cs index 5a13c00c1156..4a48a6024edc 100644 --- a/src/modelio.cs +++ b/src/modelio.cs @@ -3207,6 +3207,10 @@ Matrix4 Matrix { [MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")] void SetLocalTransform (Matrix4 transform); + /// The time for which to retrieve the local transform. + /// Gets the local transform at the specified time. + /// To be added. + /// To be added. [Export ("localTransformAtTime:")] [MarshalDirective (NativePrefix = "xamarin_simd__", Library = "__Internal")] Matrix4 GetLocalTransform (double atTime); @@ -3435,6 +3439,13 @@ interface MDLVertexDescriptor : NSCopying { [DisableDefaultCtor] interface MDLVoxelArray { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Developers should not use this deprecated constructor. Developers should use 'new MDLVoxelArray (MDLAsset, int, float)'. + /// To be added. [Deprecated (PlatformName.MacOSX, 10, 12, message: "Use 'new MDLVoxelArray (MDLAsset, int, float)'.")] #if NET [NoiOS] @@ -3450,6 +3461,13 @@ interface MDLVoxelArray { [Export ("initWithAsset:divisions:interiorShells:exteriorShells:patchRadius:")] NativeHandle Constructor (MDLAsset asset, int divisions, int interiorShells, int exteriorShells, float patchRadius); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Creates a new MDLVoxelArray from the provided asset, with the specified number of divisions and the specified numbers of concentric interior and exterior shells of voxels. + /// To be added. [Deprecated (PlatformName.MacOSX, 10, 12, message: "Use 'new MDLVoxelArray (MDLAsset, int, float)'.")] #if NET [NoiOS] diff --git a/src/networkextension.cs b/src/networkextension.cs index b9811490babc..73ecfb0d0c6e 100644 --- a/src/networkextension.cs +++ b/src/networkextension.cs @@ -587,6 +587,10 @@ interface NEAppRule : NSSecureCoding, NSCopying { [Export ("initWithSigningIdentifier:")] NativeHandle Constructor (string signingIdentifier); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [NoiOS, NoMacCatalyst] [Export ("initWithSigningIdentifier:designatedRequirement:")] NativeHandle Constructor (string signingIdentifier, string designatedRequirement); diff --git a/src/pdfkit.cs b/src/pdfkit.cs index de41945282d0..49028c080176 100644 --- a/src/pdfkit.cs +++ b/src/pdfkit.cs @@ -882,6 +882,9 @@ interface PdfAnnotation : NSCoding, NSCopying { [Wrap ("this (bounds, annotationType.GetConstant ()!, properties)")] NativeHandle Constructor (CGRect bounds, PdfAnnotationKey annotationType, [NullAllowed] NSDictionary properties); + /// To be added. + /// Developers should not use this deprecated constructor. Developers should use '.ctor (CGRect, PDFAnnotationKey, NSDictionary)' instead. + /// To be added. [Deprecated (PlatformName.iOS, 11, 0, message: "Use '.ctor (CGRect, PDFAnnotationKey, NSDictionary)' instead.")] [Deprecated (PlatformName.MacOSX, 10, 12, message: "Use '.ctor (CGRect, PDFAnnotationKey, NSDictionary)' instead.")] [NoMacCatalyst] diff --git a/src/photosui.cs b/src/photosui.cs index 28100a59e244..ce1243291786 100644 --- a/src/photosui.cs +++ b/src/photosui.cs @@ -165,9 +165,17 @@ interface PHLivePhotoViewDelegate { [Export ("livePhotoView:canBeginPlaybackWithStyle:")] bool CanBeginPlayback (PHLivePhotoView livePhotoView, PHLivePhotoViewPlaybackStyle playbackStyle); + /// To be added. + /// To be added. + /// Method that is called just before playback begins. + /// To be added. [Export ("livePhotoView:willBeginPlaybackWithStyle:")] void WillBeginPlayback (PHLivePhotoView livePhotoView, PHLivePhotoViewPlaybackStyle playbackStyle); + /// To be added. + /// To be added. + /// Method that is called aftr playback ends. + /// To be added. [Export ("livePhotoView:didEndPlaybackWithStyle:")] void DidEndPlayback (PHLivePhotoView livePhotoView, PHLivePhotoViewPlaybackStyle playbackStyle); diff --git a/src/pushkit.cs b/src/pushkit.cs index 79ec2c35d18a..9e57ca90d3dc 100644 --- a/src/pushkit.cs +++ b/src/pushkit.cs @@ -132,10 +132,20 @@ interface PKPushRegistryDelegate { [Export ("pushRegistry:didReceiveIncomingPushWithPayload:forType:"), EventArgs ("PKPushRegistryRecieved"), EventName ("IncomingPushReceived")] void DidReceiveIncomingPush (PKPushRegistry registry, PKPushPayload payload, string type); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("pushRegistry:didReceiveIncomingPushWithPayload:forType:withCompletionHandler:")] void DidReceiveIncomingPush (PKPushRegistry registry, PKPushPayload payload, string type, Action completion); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("pushRegistry:didInvalidatePushTokenForType:"), EventArgs ("PKPushRegistryRecieved"), EventName ("PushTokenInvalidated")] void DidInvalidatePushToken (PKPushRegistry registry, string type); } diff --git a/src/quicklook.cs b/src/quicklook.cs index e4ed8cdcdd52..d627a0bf2832 100644 --- a/src/quicklook.cs +++ b/src/quicklook.cs @@ -159,25 +159,54 @@ interface IQLPreviewControllerDelegate { } [Model] [Protocol] interface QLPreviewControllerDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("previewControllerWillDismiss:")] void WillDismiss (QLPreviewController controller); + /// To be added. + /// To be added. + /// To be added. [Export ("previewControllerDidDismiss:")] void DidDismiss (QLPreviewController controller); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("previewController:shouldOpenURL:forPreviewItem:"), DelegateName ("QLOpenUrl"), DefaultValue (false)] bool ShouldOpenUrl (QLPreviewController controller, NSUrl url, IQLPreviewItem item); #if !MONOMAC // UIView and UIImage do not exists in MonoMac + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("previewController:frameForPreviewItem:inSourceView:"), DelegateName ("QLFrame"), DefaultValue (typeof (CGRect))] CGRect FrameForPreviewItem (QLPreviewController controller, IQLPreviewItem item, ref UIView view); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("previewController:transitionImageForPreviewItem:contentRect:"), DelegateName ("QLTransition"), DefaultValue (null)] [return: NullAllowed] UIImage TransitionImageForPreviewItem (QLPreviewController controller, IQLPreviewItem item, CGRect contentRect); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("previewController:transitionViewForPreviewItem:"), DelegateName ("QLTransitionView"), DefaultValue (null)] [return: NullAllowed] @@ -326,9 +355,18 @@ interface QLPreviewSceneActivationConfiguration { [MacCatalyst (13, 1)] [Protocol] interface QLPreviewingController { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("preparePreviewOfSearchableItemWithIdentifier:queryString:completionHandler:")] void PreparePreviewOfSearchableItem (string identifier, [NullAllowed] string queryString, Action handler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("preparePreviewOfFileAtURL:completionHandler:")] void PreparePreviewOfFile (NSUrl url, Action handler); diff --git a/src/replaykit.cs b/src/replaykit.cs index 66bb59e34d83..1ee725fdd564 100644 --- a/src/replaykit.cs +++ b/src/replaykit.cs @@ -76,9 +76,16 @@ interface IRPPreviewViewControllerDelegate { } [BaseType (typeof (NSObject))] interface RPPreviewViewControllerDelegate { + /// To be added. + /// Method that is called when the previewer is ready to be dismissed. + /// To be added. [Export ("previewControllerDidFinish:")] void DidFinish (RPPreviewViewController previewController); + /// To be added. + /// To be added. + /// Method that is called when the previewer is ready to be dismissed. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("previewController:didFinishWithActivityTypes:")] @@ -227,6 +234,14 @@ interface IRPScreenRecorderDelegate { } [BaseType (typeof (NSObject))] interface RPScreenRecorderDelegate { + /// To be added. + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Developers should not use this deprecated method. Developers should use 'DidStopRecording(RPScreenRecorder,RPPreviewViewController,NSError)' instead. + /// To be added. [Deprecated (PlatformName.TvOS, 10, 0, message: "Use 'DidStopRecording(RPScreenRecorder,RPPreviewViewController,NSError)' instead.")] [Deprecated (PlatformName.iOS, 10, 0, message: "Use 'DidStopRecording(RPScreenRecorder,RPPreviewViewController,NSError)' instead.")] [NoMac] @@ -235,10 +250,24 @@ interface RPScreenRecorderDelegate { [Export ("screenRecorder:didStopRecordingWithError:previewViewController:")] void DidStopRecording (RPScreenRecorder screenRecorder, NSError error, [NullAllowed] RPPreviewViewController previewViewController); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("screenRecorder:didStopRecordingWithPreviewViewController:error:")] void DidStopRecording (RPScreenRecorder screenRecorder, [NullAllowed] RPPreviewViewController previewViewController, [NullAllowed] NSError error); + /// To be added. + /// Method that is called when the availability status changes. + /// To be added. [Export ("screenRecorderDidChangeAvailability:")] void DidChangeAvailability (RPScreenRecorder screenRecorder); } @@ -368,12 +397,27 @@ interface IRPBroadcastControllerDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface RPBroadcastControllerDelegate { + /// The controller for the broadcast that finsihed. + /// + /// The error, if any, that ended the broadcast. + /// This parameter can be . + /// + /// To be added. + /// To be added. [Export ("broadcastController:didFinishWithError:")] void DidFinish (RPBroadcastController broadcastController, [NullAllowed] NSError error); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("broadcastController:didUpdateServiceInfo:")] void DidUpdateServiceInfo (RPBroadcastController broadcastController, NSDictionary serviceInfo); + /// To be added. + /// To be added. + /// Method that is called when the broadcast URL is updated. + /// To be added. [MacCatalyst (13, 1)] [Export ("broadcastController:didUpdateBroadcastURL:")] void DidUpdateBroadcastUrl (RPBroadcastController broadcastController, NSUrl broadcastUrl); diff --git a/src/safariservices.cs b/src/safariservices.cs index bfef5ea6d3e6..87c79238c9dd 100644 --- a/src/safariservices.cs +++ b/src/safariservices.cs @@ -521,35 +521,72 @@ interface SFSafariPage : NSSecureCoding, NSCopying { [NoMacCatalyst] [Protocol] interface SFSafariExtensionHandling { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("messageReceivedWithName:fromPage:userInfo:")] void MessageReceived (string messageName, SFSafariPage page, [NullAllowed] NSDictionary userInfo); + /// To be added. + /// To be added. + /// To be added. [Export ("toolbarItemClickedInWindow:")] void ToolbarItemClicked (SFSafariWindow window); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Async (ResultTypeName = "SFValidationResult")] [Export ("validateToolbarItemInWindow:validationHandler:")] void ValidateToolbarItem (SFSafariWindow window, Action validationHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("contextMenuItemSelectedWithCommand:inPage:userInfo:")] void ContextMenuItemSelected (string command, SFSafariPage page, [NullAllowed] NSDictionary userInfo); + /// To be added. + /// To be added. + /// To be added. [Export ("popoverWillShowInWindow:")] void PopoverWillShow (SFSafariWindow window); + /// To be added. + /// To be added. + /// To be added. [Export ("popoverDidCloseInWindow:")] void PopoverDidClose (SFSafariWindow window); [Export ("popoverViewController")] SFSafariExtensionViewController PopoverViewController { get; } + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Async (ResultTypeName = "SFExtensionValidationResult")] [Export ("validateContextMenuItemWithCommand:inPage:userInfo:validationHandler:")] void ValidateContextMenuItem (string command, SFSafariPage page, [NullAllowed] NSDictionary userInfo, SFExtensionValidationHandler validationHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("messageReceivedFromContainingAppWithName:userInfo:")] void MessageReceivedFromContainingApp (string messageName, [NullAllowed] NSDictionary userInfo); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("additionalRequestHeadersForURL:completionHandler:")] void AdditionalRequestHeaders (NSUrl url, Action> completionHandler); @@ -733,6 +770,10 @@ interface SFSafariWindow : NSSecureCoding, NSCopying { [NoMacCatalyst] [BaseType (typeof (NSViewController))] interface SFSafariExtensionViewController { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("initWithNibName:bundle:")] NativeHandle Constructor ([NullAllowed] string nibNameOrNull, [NullAllowed] NSBundle nibBundleOrNull); diff --git a/src/scenekit.cs b/src/scenekit.cs index 4c6cefec1946..f93fb8bc2529 100644 --- a/src/scenekit.cs +++ b/src/scenekit.cs @@ -649,9 +649,15 @@ interface ISCNCameraControllerDelegate { } [Model] // Figured I would keep the model for convenience, as all the methods here are optional [BaseType (typeof (NSObject))] interface SCNCameraControllerDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("cameraInertiaWillStartForController:")] void CameraInertiaWillStart (SCNCameraController cameraController); + /// To be added. + /// To be added. + /// To be added. [Export ("cameraInertiaDidEndForController:")] void CameraInertiaDidEnd (SCNCameraController cameraController); } @@ -2709,6 +2715,14 @@ interface ISCNNodeRendererDelegate { } [BaseType (typeof (NSObject))] [Model, Protocol] interface SCNNodeRendererDelegate { + /// To be added. + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. [Export ("renderNode:renderer:arguments:")] void Render (SCNNode node, SCNRenderer renderer, NSDictionary arguments); } @@ -2858,6 +2872,10 @@ interface SCNProgramDelegate { [Export ("program:unbindValueForSymbol:atLocation:programID:renderer:")] void UnbindValue (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. [Export ("program:handleError:")] void HandleError (SCNProgram program, NSError error); @@ -3228,6 +3246,15 @@ interface ISCNSceneExportDelegate { } [BaseType (typeof (NSObject))] interface SCNSceneExportDelegate { + /// To be added. + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. + /// To be added. [Export ("writeImage:withSceneDocumentURL:originalImageURL:")] [return: NullAllowed] NSUrl WriteImage (NSImage image, NSUrl documentUrl, [NullAllowed] NSUrl originalImageUrl); @@ -3832,24 +3859,50 @@ interface ISCNSceneRendererDelegate { } [BaseType (typeof (NSObject))] interface SCNSceneRendererDelegate { + /// To be added. + /// To be added. + /// To be added. + /// Developers may override this method to do processing immediately prior to the rendering of the scene. + /// To be added. [Export ("renderer:willRenderScene:atTime:")] void WillRenderScene (ISCNSceneRenderer renderer, SCNScene scene, double timeInSeconds); + /// To be added. + /// To be added. + /// To be added. + /// This method is called shortly after the scene has been rendered. + /// To be added. [Export ("renderer:didRenderScene:atTime:")] void DidRenderScene (ISCNSceneRenderer renderer, SCNScene scene, double timeInSeconds); + /// To be added. + /// To be added. + /// Developers may override this method to perform processing prior to any actions, animations, or physics simulations. + /// To be added. [MacCatalyst (13, 1)] [Export ("renderer:updateAtTime:")] void Update (ISCNSceneRenderer renderer, double timeInSeconds); + /// To be added. + /// To be added. + /// Developers may override this method to react to the completion of animations. + /// To be added. [MacCatalyst (13, 1)] [Export ("renderer:didApplyAnimationsAtTime:")] void DidApplyAnimations (ISCNSceneRenderer renderer, double timeInSeconds); + /// To be added. + /// To be added. + /// This method is called shortly after physics have been simulated. + /// To be added. [MacCatalyst (13, 1)] [Export ("renderer:didSimulatePhysicsAtTime:")] void DidSimulatePhysics (ISCNSceneRenderer renderer, double timeInSeconds); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("renderer:didApplyConstraintsAtTime:")] void DidApplyConstraints (ISCNSceneRenderer renderer, double atTime); @@ -4687,10 +4740,18 @@ interface SCNShadable { [Export ("program", ArgumentSemantic.Retain)] SCNProgram Program { get; set; } + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("handleBindingOfSymbol:usingBlock:")] void HandleBinding (string symbol, [NullAllowed] SCNBindingHandler handler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("handleUnbindingOfSymbol:usingBlock:")] void HandleUnbinding (string symbol, [NullAllowed] SCNBindingHandler handler); @@ -5272,12 +5333,24 @@ interface ISCNPhysicsContactDelegate { } [BaseType (typeof (NSObject))] interface SCNPhysicsContactDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("physicsWorld:didBeginContact:"), EventArgs ("SCNPhysicsContact")] void DidBeginContact (SCNPhysicsWorld world, SCNPhysicsContact contact); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("physicsWorld:didUpdateContact:"), EventArgs ("SCNPhysicsContact")] void DidUpdateContact (SCNPhysicsWorld world, SCNPhysicsContact contact); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("physicsWorld:didEndContact:"), EventArgs ("SCNPhysicsContact")] void DidEndContact (SCNPhysicsWorld world, SCNPhysicsContact contact); } @@ -6189,9 +6262,20 @@ interface ISCNAvoidOccluderConstraintDelegate { } [BaseType (typeof (NSObject))] interface SCNAvoidOccluderConstraintDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("avoidOccluderConstraint:shouldAvoidOccluder:forNode:")] bool ShouldAvoidOccluder (SCNAvoidOccluderConstraint constraint, SCNNode occluder, SCNNode node); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("avoidOccluderConstraint:didAvoidOccluder:forNode:")] void DidAvoidOccluder (SCNAvoidOccluderConstraint constraint, SCNNode occluder, SCNNode node); } diff --git a/src/speech.cs b/src/speech.cs index 6742979203a7..17f1cabbfcbd 100644 --- a/src/speech.cs +++ b/src/speech.cs @@ -227,21 +227,43 @@ interface ISFSpeechRecognitionTaskDelegate { } [BaseType (typeof (NSObject))] interface SFSpeechRecognitionTaskDelegate { + /// The for which this is the delegate object. + /// The system calls this method periodically as speech is detected. + /// To be added. [Export ("speechRecognitionDidDetectSpeech:")] void DidDetectSpeech (SFSpeechRecognitionTask task); + /// The for which this is the delegate object. + /// To be added. + /// The system calls this method periodically, as the speech recognition attempts to refine the results. + /// To be added. [Export ("speechRecognitionTask:didHypothesizeTranscription:")] void DidHypothesizeTranscription (SFSpeechRecognitionTask task, SFTranscription transcription); + /// The for which this is the delegate object. + /// To be added. + /// The system calls this method after it has completed recognition. + /// To be added. [Export ("speechRecognitionTask:didFinishRecognition:")] void DidFinishRecognition (SFSpeechRecognitionTask task, SFSpeechRecognitionResult recognitionResult); + /// The for which this is the delegate object. + /// Called by the system after the audio input has finished. + /// To be added. [Export ("speechRecognitionTaskFinishedReadingAudio:")] void FinishedReadingAudio (SFSpeechRecognitionTask task); + /// To be added. + /// To be added. + /// To be added. [Export ("speechRecognitionTaskWasCancelled:")] void WasCancelled (SFSpeechRecognitionTask task); + /// The for which this is the delegate object. + /// + /// if the speech recognition ended without error or cancellation. + /// The system calls this method after the has finished. + /// To be added. [Export ("speechRecognitionTask:didFinishSuccessfully:")] void DidFinishSuccessfully (SFSpeechRecognitionTask task, bool successfully); @@ -266,6 +288,11 @@ interface ISFSpeechRecognizerDelegate { } [BaseType (typeof (NSObject))] interface SFSpeechRecognizerDelegate { + /// To be added. + /// + /// if speech recognition is permitted. + /// The system calls this when the availability of speech recognition has been changed. + /// To be added. [Export ("speechRecognizer:availabilityDidChange:")] void AvailabilityDidChange (SFSpeechRecognizer speechRecognizer, bool available); } diff --git a/src/spritekit.cs b/src/spritekit.cs index d1c5f52938c5..8f262175ce12 100644 --- a/src/spritekit.cs +++ b/src/spritekit.cs @@ -665,18 +665,34 @@ interface ISKSceneDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface SKSceneDelegate { + /// To be added. + /// To be added. + /// Method that is called once per frame, if is presented and not paused, before any animation takes place. + /// To be added. [Export ("update:forScene:")] void Update (double currentTime, SKScene scene); + /// To be added. + /// Method that is called after all scene actions are evaluated for . + /// To be added. [Export ("didEvaluateActionsForScene:")] void DidEvaluateActions (SKScene scene); + /// To be added. + /// Method that is called after physics simulation for is complete. + /// To be added. [Export ("didSimulatePhysicsForScene:")] void DidSimulatePhysics (SKScene scene); + /// To be added. + /// Method that is called after constraints are applied to . + /// To be added. [Export ("didApplyConstraintsForScene:")] void DidApplyConstraints (SKScene scene); + /// To be added. + /// Method that is called after the is updated. + /// To be added. [Export ("didFinishUpdateForScene:")] void DidFinishUpdate (SKScene scene); } @@ -1617,6 +1633,11 @@ interface ISKViewDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface SKViewDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("view:shouldRenderAtTime:")] bool ShouldRender (SKView view, double time); } @@ -2682,9 +2703,15 @@ interface ISKPhysicsContactDelegate { } [Protocol] partial interface SKPhysicsContactDelegate { + /// To be added. + /// Method that is called when contact is started. + /// To be added. [Export ("didBeginContact:")] void DidBeginContact (SKPhysicsContact contact); + /// To be added. + /// Method that is called after contact ends. + /// To be added. [Export ("didEndContact:")] void DidEndContact (SKPhysicsContact contact); } diff --git a/src/storekit.cs b/src/storekit.cs index 01de236035f5..0027ccd06fef 100644 --- a/src/storekit.cs +++ b/src/storekit.cs @@ -465,15 +465,30 @@ interface SKPaymentTransactionObserver { [Abstract] void UpdatedTransactions (SKPaymentQueue queue, SKPaymentTransaction [] transactions); + /// To be added. + /// To be added. + /// Method that is called after transactions have been removed from the queue. + /// To be added. [Export ("paymentQueue:removedTransactions:")] void RemovedTransactions (SKPaymentQueue queue, SKPaymentTransaction [] transactions); + /// To be added. + /// To be added. + /// Method that is called when an error occurs while restoring transactions. + /// To be added. [Export ("paymentQueue:restoreCompletedTransactionsFailedWithError:")] void RestoreCompletedTransactionsFailedWithError (SKPaymentQueue queue, NSError error); + /// To be added. + /// Method that is called after transactions have been restored. + /// To be added. [Export ("paymentQueueRestoreCompletedTransactionsFinished:")] void RestoreCompletedTransactionsFinished (SKPaymentQueue queue); + /// To be added. + /// To be added. + /// Method that is called when one or more downloads has been updated by the queue. + /// To be added. [Deprecated (PlatformName.iOS, 16, 0)] [Deprecated (PlatformName.MacOSX, 13, 0)] [Deprecated (PlatformName.TvOS, 16, 0)] @@ -481,6 +496,12 @@ interface SKPaymentTransactionObserver { [Export ("paymentQueue:updatedDownloads:")] void UpdatedDownloads (SKPaymentQueue queue, SKDownload [] downloads); + /// The payment queue on which the payment was made. + /// The payment. + /// The product that was paid for. + /// Called to indicate that the user has started an in-app App Store purchase. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("paymentQueue:shouldAddStorePayment:forProduct:")] bool ShouldAddStorePayment (SKPaymentQueue queue, SKPayment payment, SKProduct product); @@ -582,9 +603,16 @@ interface ISKRequestDelegate { } [Model] [Protocol] interface SKRequestDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("requestDidFinish:")] void RequestFinished (SKRequest request); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("request:didFailWithError:"), EventArgs ("SKRequestError")] void RequestFailed (SKRequest request, NSError error); } @@ -769,6 +797,9 @@ interface ISKStoreProductViewControllerDelegate { } [Model] [Protocol] interface SKStoreProductViewControllerDelegate { + /// To be added. + /// To be added. + /// To be added. [Export ("productViewControllerDidFinish:"), EventArgs ("SKStoreProductViewController")] void Finished (SKStoreProductViewController controller); } @@ -1007,6 +1038,9 @@ interface ISKCloudServiceSetupViewControllerDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface SKCloudServiceSetupViewControllerDelegate { + /// The view controller that was dismissed. + /// Method that is called after the setup view has been dismissed. + /// To be added. [Export ("cloudServiceSetupViewControllerDidDismiss:")] void DidDismiss (SKCloudServiceSetupViewController cloudServiceSetupViewController); } diff --git a/src/uikit.cs b/src/uikit.cs index d88db1b5f67e..e65524cccf31 100644 --- a/src/uikit.cs +++ b/src/uikit.cs @@ -637,17 +637,31 @@ interface UICloudSharingControllerDelegate { [return: NullAllowed] string GetItemTitle (UICloudSharingController csc); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("itemThumbnailDataForCloudSharingController:")] [return: NullAllowed] NSData GetItemThumbnailData (UICloudSharingController csc); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("itemTypeForCloudSharingController:")] [return: NullAllowed] string GetItemType (UICloudSharingController csc); + /// To be added. + /// To be added. + /// To be added. [Export ("cloudSharingControllerDidSaveShare:")] void DidSaveShare (UICloudSharingController csc); + /// To be added. + /// To be added. + /// To be added. [Export ("cloudSharingControllerDidStopSharing:")] void DidStopSharing (UICloudSharingController csc); } @@ -846,6 +860,10 @@ interface IUIAccelerometerDelegate { } [Protocol] interface UIAccelerometerDelegate { #pragma warning disable 618 + /// To be added. + /// To be added. + /// Indicates that an acceleration measurement has occurred. + /// To be added. [Export ("accelerometer:didAccelerate:"), EventArgs ("UIAccelerometer"), EventName ("Acceleration")] void DidAccelerate (UIAccelerometer accelerometer, UIAcceleration acceleration); #pragma warning restore 618 @@ -1249,19 +1267,32 @@ interface UIAccessibilityAnnouncementFinishedEventArgs { [MacCatalyst (13, 1)] [Protocol (IsInformal = true)] interface UIAccessibilityContainer { + /// Returns the number of elements in the accessibility container. + /// To be added. + /// To be added. [Export ("accessibilityElementCount")] nint AccessibilityElementCount (); [Export ("accessibilityElementAtIndex:")] NSObject GetAccessibilityElementAt (nint index); + /// The element whose index to get. + /// Returns the index of . + /// To be added. + /// To be added. [Export ("indexOfAccessibilityElement:")] nint GetIndexOfAccessibilityElement (NSObject element); + /// Returns the elements in the accessibility container. + /// To be added. + /// To be added. [Export ("accessibilityElements")] [MacCatalyst (13, 1)] NSObject GetAccessibilityElements (); + /// To be added. + /// Assigns to the contents of the accessibilty container. + /// To be added. [MacCatalyst (13, 1)] [Export ("setAccessibilityElements:")] void SetAccessibilityElements ([NullAllowed] NSObject elements); @@ -1742,12 +1773,21 @@ interface UIActionSheetDelegate { [Export ("actionSheet:clickedButtonAtIndex:"), EventArgs ("UIButton")] void Clicked (UIActionSheet actionSheet, nint buttonIndex); + /// To be added. + /// Indicates that the UIActionSheet was canceled. + /// To be added. [Export ("actionSheetCancel:"), EventArgs ("UIActionSheet")] void Canceled (UIActionSheet actionSheet); + /// To be added. + /// Indicates that the action sheet is about to be presented. + /// To be added. [Export ("willPresentActionSheet:"), EventArgs ("UIActionSheet")] void WillPresent (UIActionSheet actionSheet); + /// To be added. + /// Indicates that the action sheet was presented to the user. + /// To be added. [Export ("didPresentActionSheet:"), EventArgs ("UIActionSheet")] void Presented (UIActionSheet actionSheet); @@ -2005,12 +2045,37 @@ interface UIActivityItemSource { [return: NullAllowed] NSObject GetItemForActivity (UIActivityViewController activityViewController, [NullAllowed] NSString activityType); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// If the specified provides NSData, this method returns the Uniform Type Identifier (UTI) of the item. + /// To be added. + /// To be added. [Export ("activityViewController:dataTypeIdentifierForActivityType:")] string GetDataTypeIdentifierForActivity (UIActivityViewController activityViewController, [NullAllowed] NSString activityType); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Returns the subject for the specified . + /// To be added. + /// To be added. [Export ("activityViewController:subjectForActivityType:")] string GetSubjectForActivity (UIActivityViewController activityViewController, [NullAllowed] NSString activityType); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// Returns the preview image for the specified . + /// To be added. + /// To be added. [Export ("activityViewController:thumbnailImageForActivityType:suggestedSize:")] UIImage GetThumbnailImageForActivity (UIActivityViewController activityViewController, [NullAllowed] NSString activityType, CGSize suggestedSize); @@ -2237,12 +2302,21 @@ interface UIAlertViewDelegate { [Export ("alertView:clickedButtonAtIndex:"), EventArgs ("UIButton")] void Clicked (UIAlertView alertview, nint buttonIndex); + /// To be added. + /// Indicates that this UIAlertView is about to be canceled. + /// To be added. [Export ("alertViewCancel:"), EventArgs ("UIAlertView")] void Canceled (UIAlertView alertView); + /// To be added. + /// Indicates that this UIAlertView will shortly be presented to the application user. + /// To be added. [Export ("willPresentAlertView:"), EventArgs ("UIAlertView")] void WillPresent (UIAlertView alertView); + /// To be added. + /// Indicates that this UIAlertView has been presented to the application user. + /// To be added. [Export ("didPresentAlertView:"), EventArgs ("UIAlertView")] void Presented (UIAlertView alertView); @@ -2252,6 +2326,10 @@ interface UIAlertViewDelegate { [Export ("alertView:didDismissWithButtonIndex:"), EventArgs ("UIButton")] void Dismissed (UIAlertView alertView, nint buttonIndex); + /// To be added. + /// Whether the first non-cancel button in this UIAlertView should be enabled. + /// To be added. + /// To be added. [Export ("alertViewShouldEnableFirstOtherButton:"), DelegateName ("UIAlertViewPredicate"), DefaultValue (true)] bool ShouldEnableFirstOtherButton (UIAlertView alertView); } @@ -2348,12 +2426,20 @@ interface UIStateRestoring { [NullAllowed] Class ObjectRestorationClass { get; } + /// To be added. + /// Encodes state-related information. + /// To be added. [Export ("encodeRestorableStateWithCoder:")] void EncodeRestorableState (NSCoder coder); + /// To be added. + /// Decodes and restores state. + /// To be added. [Export ("decodeRestorableStateWithCoder:")] void DecodeRestorableState (NSCoder coder); + /// Indicates that the application has finished restoring state. + /// To be added. [Export ("applicationFinishedRestoringState")] void ApplicationFinishedRestoringState (); } @@ -2421,9 +2507,15 @@ interface UIViewImplicitlyAnimating : UIViewAnimating { [Export ("addAnimations:delayFactor:")] void AddAnimations (Action animation, nfloat delayFactor); + /// To be added. + /// Appends the specified T:System.Action to the callback list. + /// To be added. [Export ("addAnimations:")] void AddAnimations (Action animation); + /// To be added. + /// Adds the to run when the animation(s) end. + /// To be added. [Export ("addCompletion:")] void AddCompletion (Action completion); @@ -4057,18 +4149,37 @@ interface IUIApplicationDelegate { } [Protocol] interface UIApplicationDelegate { + /// Reference to the UIApplication that invoked this delegate method. + /// The application has finished launching. + /// To be added. [Export ("applicationDidFinishLaunching:")] void FinishedLaunching (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// An NSDictionary with the launch options, can be null. Possible key values are UIApplication's LaunchOption static properties. + /// Indicates that launching has finished and the app will shortly begin running. + /// To be added. + /// To be added. [Export ("application:didFinishLaunchingWithOptions:")] bool FinishedLaunching (UIApplication application, [NullAllowed] NSDictionary launchOptions); + /// Reference to the UIApplication that invoked this delegate method. + /// The app has moved from the inactive to actie state. + /// To be added. [Export ("applicationDidBecomeActive:")] void OnActivated (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// The app is about to move from the active state to the inactive state. + /// To be added. [Export ("applicationWillResignActive:")] void OnResignActivation (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Developers should use M:UIKit.UIApplicationDelegate.OpenUrl* rather than this deprecated method. + /// To be added. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 9, 0, message: "Override 'OpenUrl (UIApplication, NSUrl, NSDictionary)'. The later will be called if both are implemented.")] [MacCatalyst (13, 1)] @@ -4080,15 +4191,29 @@ interface UIApplicationDelegate { bool HandleOpenURL (UIApplication application, NSUrl url); #endif + /// Reference to the UIApplication that invoked this delegate method. + /// The app has received a low-memory warning from the system. + /// To be added. [Export ("applicationDidReceiveMemoryWarning:")] void ReceiveMemoryWarning (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// Indicates that the app is about to terminate. + /// To be added. [Export ("applicationWillTerminate:")] void WillTerminate (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// Indicates a significant change in time, such as midnight, change to Daylight Savings, or a shift in timezone. + /// To be added. [Export ("applicationSignificantTimeChange:")] void ApplicationSignificantTimeChange (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// To be added. + /// Indicates that the orientation of the status bar is about to change. + /// To be added. [NoTV] [Export ("application:willChangeStatusBarOrientation:duration:")] [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'ViewWillTransitionToSize' instead.")] @@ -4096,6 +4221,10 @@ interface UIApplicationDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ViewWillTransitionToSize' instead.")] void WillChangeStatusBarOrientation (UIApplication application, UIInterfaceOrientation newStatusBarOrientation, double duration); + /// Reference to the UIApplication that invoked this delegate method. + /// The status bar's previous orientation. + /// Indicates that the orientation of the status bar has changed. + /// To be added. [NoTV] [Export ("application:didChangeStatusBarOrientation:")] [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'ViewWillTransitionToSize' instead.")] @@ -4103,6 +4232,10 @@ interface UIApplicationDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ViewWillTransitionToSize' instead.")] void DidChangeStatusBarOrientation (UIApplication application, UIInterfaceOrientation oldStatusBarOrientation); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Indicates that the frame of the status bar is about to change. + /// To be added. [NoTV] [Export ("application:willChangeStatusBarFrame:")] [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'ViewWillTransitionToSize' instead.")] @@ -4110,6 +4243,10 @@ interface UIApplicationDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ViewWillTransitionToSize' instead.")] void WillChangeStatusBarFrame (UIApplication application, CGRect newStatusBarFrame); + /// Reference to the UIApplication that invoked this delegate method. + /// The status bar's previous Frame. + /// Indicates that the frame of the status bar has changed. + /// To be added. [NoTV] [Export ("application:didChangeStatusBarFrame:")] [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'ViewWillTransitionToSize' instead.")] @@ -4117,18 +4254,34 @@ interface UIApplicationDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ViewWillTransitionToSize' instead.")] void ChangedStatusBarFrame (UIApplication application, CGRect oldStatusBarFrame); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Indicates that the device successfully registered with Apple Push Service. + /// To be added. [Export ("application:didRegisterForRemoteNotificationsWithDeviceToken:")] void RegisteredForRemoteNotifications (UIApplication application, NSData deviceToken); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Indicates that Apple Push Service did not successfully compete the registration process. + /// To be added. [Export ("application:didFailToRegisterForRemoteNotificationsWithError:")] void FailedToRegisterForRemoteNotifications (UIApplication application, NSError error); + /// Reference to the UIApplication that invoked this delegate method. + /// A dictionary whose "aps" key contains information related to the notification + /// Indicates that the app received a remote notification. + /// To be added. [Deprecated (PlatformName.iOS, 10, 0, message: "Use 'UNUserNotificationCenterDelegate.WillPresentNotification/DidReceiveNotificationResponse' for user visible notifications and 'ReceivedRemoteNotification' for silent remote notifications.")] [Deprecated (PlatformName.TvOS, 10, 0, message: "Use 'UNUserNotificationCenterDelegate.WillPresentNotification/DidReceiveNotificationResponse' for user visible notifications and 'ReceivedRemoteNotification' for silent remote notifications.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'UNUserNotificationCenterDelegate.WillPresentNotification/DidReceiveNotificationResponse' for user visible notifications and 'ReceivedRemoteNotification' for silent remote notifications.")] [Export ("application:didReceiveRemoteNotification:")] void ReceivedRemoteNotification (UIApplication application, NSDictionary userInfo); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Indicates that the app received a local notification. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 10, 0, message: "Use 'UNUserNotificationCenterDelegate.WillPresentNotification/DidReceiveNotificationResponse' instead.")] [MacCatalyst (13, 1)] @@ -4136,18 +4289,41 @@ interface UIApplicationDelegate { [Export ("application:didReceiveLocalNotification:")] void ReceivedLocalNotification (UIApplication application, UILocalNotification notification); + /// Reference to the UIApplication that invoked this delegate method. + /// Indicates that the application has entered the background. + /// + /// Apps should complete processing this method in approximately 5 seconds. If more time is necessary, applications can call . + /// [Export ("applicationDidEnterBackground:")] void DidEnterBackground (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// Indicates that the application is about to enter the foreground. + /// To be added. [Export ("applicationWillEnterForeground:")] void WillEnterForeground (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// Indicates that protected files are about to be encrypted and unavailable for reading. + /// To be added. [Export ("applicationProtectedDataWillBecomeUnavailable:")] void ProtectedDataWillBecomeUnavailable (UIApplication application); + /// Reference to the UIApplication that invoked this delegate method. + /// Protected files are now available. + /// + /// Content protection encrypts and restricts access to protected files in certain situations, such as when the device is locked. This method will be called when the device is unlocked and the files are available for reading. + /// [Export ("applicationProtectedDataDidBecomeAvailable:")] void ProtectedDataDidBecomeAvailable (UIApplication application); + /// Reference to this application (). + /// The specified by the calling application. + /// The bundle ID of the calling application. + /// Optional property-list data passed by the calling application. + /// Loads a resource from the specified URL. + /// To be added. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 9, 0, message: "Override 'OpenUrl (UIApplication, NSUrl, NSDictionary)'. The later will be called if both are implemented.")] [MacCatalyst (13, 1)] @@ -4155,6 +4331,12 @@ interface UIApplicationDelegate { [Export ("application:openURL:sourceApplication:annotation:")] bool OpenUrl (UIApplication application, NSUrl url, string sourceApplication, NSObject annotation); + /// To be added. + /// To be added. + /// To be added. + /// Indicates that the application should open the specified with context from . + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("application:openURL:options:")] bool OpenUrl (UIApplication app, NSUrl url, NSDictionary options); @@ -4175,18 +4357,39 @@ interface UIApplicationDelegate { // // 6.0 // + /// Reference to the UIApplication that invoked this delegate method. + /// An NSDictionary with the launch options, can be null. Possible key values are UIApplication's LaunchOption static properties. + /// Indicates that the app is about to finish its launching procedures. + /// To be added. + /// To be added. [Export ("application:willFinishLaunchingWithOptions:")] bool WillFinishLaunching (UIApplication application, [NullAllowed] NSDictionary launchOptions); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// The interface orientations supported by the app. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("application:supportedInterfaceOrientationsForWindow:")] UIInterfaceOrientationMask GetSupportedInterfaceOrientations (UIApplication application, [NullAllowed][Transient] UIWindow forWindow); + /// Reference to the UIApplication that invoked this delegate method. + /// An array of identifiers that identify the path to the desired view controller, which should be last. + /// To be added. + /// Retrieves the UIViewController identified by the last value in the restorationIdentifierComponents parameter. + /// To be added. + /// To be added. [return: NullAllowed] [Export ("application:viewControllerWithRestorationIdentifierPath:coder:")] UIViewController GetViewController (UIApplication application, string [] restorationIdentifierComponents, NSCoder coder); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Whether the application should save application state information. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 13, 2, message: "Use 'ShouldSaveSecureApplicationState' instead.")] [Deprecated (PlatformName.TvOS, 13, 2, message: "Use 'ShouldSaveSecureApplicationState' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ShouldSaveSecureApplicationState' instead.")] @@ -4199,6 +4402,11 @@ interface UIApplicationDelegate { [Export ("application:shouldSaveSecureApplicationState:")] bool ShouldSaveSecureApplicationState (UIApplication application, NSCoder coder); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Whether the application should restore saved state information. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 13, 2, message: "Use 'ShouldRestoreSecureApplicationState' instead.")] [Deprecated (PlatformName.TvOS, 13, 2, message: "Use 'ShouldRestoreSecureApplicationState' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'ShouldRestoreSecureApplicationState' instead.")] @@ -4211,9 +4419,17 @@ interface UIApplicationDelegate { [Export ("application:shouldRestoreSecureApplicationState:")] bool ShouldRestoreSecureApplicationState (UIApplication application, NSCoder coder); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Indicates that the app is about to store application state data. + /// To be added. [Export ("application:willEncodeRestorableStateWithCoder:")] void WillEncodeRestorableState (UIApplication application, NSCoder coder); + /// Reference to the UIApplication that invoked this delegate method. + /// To be added. + /// Indicates that the app should restore highest-level state. + /// To be added. [Export ("application:didDecodeRestorableStateWithCoder:")] void DidDecodeRestorableState (UIApplication application, NSCoder coder); @@ -4226,13 +4442,27 @@ interface UIApplicationDelegate { [Export ("accessibilityPerformMagicTap")] bool AccessibilityPerformMagicTap (); + /// Handle to the UIApplication. + /// To be added. + /// Callback to invoke to notify the operating system of the result of the background fetch operation. + /// Indicates that the app received a remote notification. + /// To be added. [MacCatalyst (13, 1)] [Export ("application:didReceiveRemoteNotification:fetchCompletionHandler:")] void DidReceiveRemoteNotification (UIApplication application, NSDictionary userInfo, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// Raised when events relating to a background T:UIKit.NSUrlSession are waiting to be processed. + /// To be added. [Export ("application:handleEventsForBackgroundURLSession:completionHandler:")] void HandleEventsForBackgroundUrl (UIApplication application, string sessionIdentifier, Action completionHandler); + /// Handle to the UIApplication. + /// Callback to invoke to notify the operating system of the result of the background fetch operation. + /// Indicates that the application can begin a fetch operation if it has data to download. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use a 'BGAppRefreshTask' from 'BackgroundTasks' framework.")] [Deprecated (PlatformName.TvOS, 13, 0, message: "Use a 'BGAppRefreshTask' from 'BackgroundTasks' framework.")] [MacCatalyst (13, 1)] @@ -4243,6 +4473,12 @@ interface UIApplicationDelegate { // // 8.0 // + /// The singleton. + /// The user activity identifier. + /// System-provided callback that can be called with appropriate or objects. + /// Informs the app that there is data associated with continuing a task specified as a object, and then returns whether the app continued the activity. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("application:continueUserActivity:restorationHandler:")] bool ContinueUserActivity (UIApplication application, NSUserActivity userActivity, UIApplicationRestorationHandler completionHandler); @@ -4255,6 +4491,10 @@ interface UIApplicationDelegate { void DidFailToContinueUserActivitiy (UIApplication application, string userActivityType, NSError error); #endif + /// To be added. + /// To be added. + /// Developers should not use this deprecated method. Developers should use 'UNUserNotificationCenter.RequestAuthorization' instead. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 10, 0, message: "Use 'UNUserNotificationCenter.RequestAuthorization' instead.")] [MacCatalyst (13, 1)] @@ -4262,6 +4502,12 @@ interface UIApplicationDelegate { [Export ("application:didRegisterUserNotificationSettings:")] void DidRegisterUserNotificationSettings (UIApplication application, UIUserNotificationSettings notificationSettings); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Informs the app that the user selected an action identified by the value from an alert of a object, and executes the block after it completes the action. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 10, 0, message: "Use 'UNUserNotificationCenterDelegate.DidReceiveNotificationResponse' instead.")] [MacCatalyst (13, 1)] @@ -4269,6 +4515,13 @@ interface UIApplicationDelegate { [Export ("application:handleActionWithIdentifier:forLocalNotification:completionHandler:")] void HandleAction (UIApplication application, string actionIdentifier, UILocalNotification localNotification, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Informs the app of a custom action to perform based on a local notification, and includes the value, data from the notification, and for the app developer to run after performing the action. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 10, 0, message: "Use 'UNUserNotificationCenterDelegate.DidReceiveNotificationResponse' instead.")] [MacCatalyst (13, 1)] @@ -4276,6 +4529,12 @@ interface UIApplicationDelegate { [Export ("application:handleActionWithIdentifier:forLocalNotification:withResponseInfo:completionHandler:")] void HandleAction (UIApplication application, string actionIdentifier, UILocalNotification localNotification, NSDictionary responseInfo, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Informs the app of a custom action to perform based on a push notification, and includes the value, data from the notification, and for the app developer to run after performing the action. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 10, 0, message: "Use 'UNUserNotificationCenterDelegate.DidReceiveNotificationResponse' instead.")] [MacCatalyst (13, 1)] @@ -4283,6 +4542,13 @@ interface UIApplicationDelegate { [Export ("application:handleActionWithIdentifier:forRemoteNotification:completionHandler:")] void HandleAction (UIApplication application, string actionIdentifier, NSDictionary remoteNotificationInfo, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Informs the app of a custom action to perform based on a remote notification, and includes the value, data from the notification, and for the app developer to run after performing the action. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 10, 0, message: "Use 'UNUserNotificationCenterDelegate.DidReceiveNotificationResponse' instead.")] [MacCatalyst (13, 1)] @@ -4290,35 +4556,71 @@ interface UIApplicationDelegate { [Export ("application:handleActionWithIdentifier:forRemoteNotification:withResponseInfo:completionHandler:")] void HandleAction (UIApplication application, string actionIdentifier, NSDictionary remoteNotificationInfo, NSDictionary responseInfo, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// Called by the system when the user initiates a Home screen quick action, unless the interaction was handled in or M:UIKit.UIApplicationDelegate.DidFinishLaunching*. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("application:performActionForShortcutItem:completionHandler:")] void PerformActionForShortcutItem (UIApplication application, UIApplicationShortcutItem shortcutItem, UIOperationHandler completionHandler); + /// The singleton for the app. + /// The user activity identifier. + /// Informs the app that the user is attempting to continue a action for which data might not be available, and returns to notify the user that the app will continue the activity. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("application:willContinueUserActivityWithType:")] bool WillContinueUserActivity (UIApplication application, string userActivityType); + /// To be added. + /// To be added. + /// Informs the app that the object in has been updated. + /// To be added. [MacCatalyst (13, 1)] [Export ("application:didUpdateUserActivity:")] void UserActivityUpdated (UIApplication application, NSUserActivity userActivity); + /// To be added. + /// To be added. + /// Requests permission from the app to run app extensions based on the extension point identified by . + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("application:shouldAllowExtensionPointIdentifier:")] bool ShouldAllowExtensionPointIdentifier (UIApplication application, NSString extensionPointIdentifier); + /// To be added. + /// To be added. + /// To be added. + /// A watchkit extension has made a request. + /// To be added. [MacCatalyst (13, 1)] [Export ("application:handleWatchKitExtensionRequest:reply:")] void HandleWatchKitExtensionRequest (UIApplication application, [NullAllowed] NSDictionary userInfo, Action reply); + /// To be added. + /// The system calls this method when the developer's app should ask the user for access to HealthKit data. + /// To be added. [MacCatalyst (13, 1)] [Export ("applicationShouldRequestHealthAuthorization:")] void ShouldRequestHealthAuthorization (UIApplication application); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("application:userDidAcceptCloudKitShareWithMetadata:")] void UserDidAcceptCloudKitShare (UIApplication application, CKShareMetadata cloudKitShareMetadata); + /// The application that created the intent. + /// The intent. + /// A handler to run after the operation completes. + /// The system is requesting that the application handle the specified . + /// To be added. [Deprecated (PlatformName.iOS, 14, 0, message: "Use 'GetHandlerForIntent' instead.")] [NoTV] [MacCatalyst (13, 1)] @@ -5135,6 +5437,10 @@ interface UICollectionViewDataSourcePrefetching { [Export ("collectionView:prefetchItemsAtIndexPaths:")] void PrefetchItems (UICollectionView collectionView, NSIndexPath [] indexPaths); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("collectionView:cancelPrefetchingForItemsAtIndexPaths:")] void CancelPrefetching (UICollectionView collectionView, NSIndexPath [] indexPaths); } @@ -5165,20 +5471,44 @@ interface UICollectionViewDataSource { [Export ("collectionView:cellForItemAtIndexPath:")] UICollectionViewCell GetCell (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// The number of sections in this UICollectionViewDataSource. + /// To be added. + /// To be added. [Export ("numberOfSectionsInCollectionView:")] nint NumberOfSections (UICollectionView collectionView); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// The reusable view used for the supplementary element at the specified indexPath. + /// To be added. + /// To be added. [Export ("collectionView:viewForSupplementaryElementOfKind:atIndexPath:")] UICollectionReusableView GetViewForSupplementaryElement (UICollectionView collectionView, NSString elementKind, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("collectionView:canMoveItemAtIndexPath:")] bool CanMoveItem (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("collectionView:moveItemAtIndexPath:toIndexPath:")] void MoveItem (UICollectionView collectionView, NSIndexPath sourceIndexPath, NSIndexPath destinationIndexPath); + /// The collection view that originated the request. + /// Requests the index titles for the items in the specified collection view. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [return: NullAllowed] [Export ("indexTitlesForCollectionView:")] @@ -5197,62 +5527,147 @@ interface IUICollectionViewDelegate { } [Protocol] [BaseType (typeof (NSObject))] interface UICollectionViewDelegate : UIScrollViewDelegate { + /// The collection view that originated the request. + /// To be added. + /// Whether the cell at the specified indexPath should allow itself to be highlighted. + /// To be added. + /// To be added. [Export ("collectionView:shouldHighlightItemAtIndexPath:")] bool ShouldHighlightItem (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// Indicates that the cell at the specified indexPath has been highlighted. + /// To be added. [Export ("collectionView:didHighlightItemAtIndexPath:")] void ItemHighlighted (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// Indicates that the cell at the specified indexPath has been unhighlighted. + /// To be added. [Export ("collectionView:didUnhighlightItemAtIndexPath:")] void ItemUnhighlighted (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// Whether the cell at the specified indexPath allows itself to be selected. + /// To be added. + /// To be added. [Export ("collectionView:shouldSelectItemAtIndexPath:")] bool ShouldSelectItem (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// Whether the cell at the specified indexPath should allow itself to be deselected. + /// To be added. + /// To be added. [Export ("collectionView:shouldDeselectItemAtIndexPath:")] bool ShouldDeselectItem (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// Indicates that the cell at the specified indexPath has been selected. + /// To be added. [Export ("collectionView:didSelectItemAtIndexPath:")] void ItemSelected (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// Indicates that the cell at the specified indexPath has been deselected. + /// To be added. [Export ("collectionView:didDeselectItemAtIndexPath:")] void ItemDeselected (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// The is about to be displayed. + /// To be added. [MacCatalyst (13, 1)] [Export ("collectionView:willDisplayCell:forItemAtIndexPath:")] void WillDisplayCell (UICollectionView collectionView, UICollectionViewCell cell, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// To be added. + /// The supplementary is about to be displayed. + /// To be added. [MacCatalyst (13, 1)] [Export ("collectionView:willDisplaySupplementaryView:forElementKind:atIndexPath:")] void WillDisplaySupplementaryView (UICollectionView collectionView, UICollectionReusableView view, string elementKind, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// Indicates that the cell at the specified indexPath has been removed. + /// To be added. [Export ("collectionView:didEndDisplayingCell:forItemAtIndexPath:")] void CellDisplayingEnded (UICollectionView collectionView, UICollectionViewCell cell, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// To be added. + /// Indicates that the supplementary view at the specified indexPath has been removed. + /// To be added. [Export ("collectionView:didEndDisplayingSupplementaryView:forElementOfKind:atIndexPath:")] void SupplementaryViewDisplayingEnded (UICollectionView collectionView, UICollectionReusableView view, NSString elementKind, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// Whether the cell at the specified indexPath should show an Action menu. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GetContextMenuConfiguration' instead.")] [Export ("collectionView:shouldShowMenuForItemAtIndexPath:")] bool ShouldShowMenu (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// To be added. + /// Whether the cell at the specified supports the specified action. + /// The default value is . + /// + /// This method is called after and allows the developer to remove particular menu items from the displayed editing menu. + /// [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GetContextMenuConfiguration' instead.")] [Export ("collectionView:canPerformAction:forItemAtIndexPath:withSender:")] bool CanPerformAction (UICollectionView collectionView, Selector action, NSIndexPath indexPath, NSObject sender); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// To be added. + /// Whether the cell at the specified indexPath supports the specified Copy or Paste action. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GetContextMenuConfiguration' instead.")] [Export ("collectionView:performAction:forItemAtIndexPath:withSender:")] void PerformAction (UICollectionView collectionView, Selector action, NSIndexPath indexPath, NSObject sender); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// The UICollectionViewTransitionLayout to be used when moving from the specified fromLayout to the toLayout. + /// To be added. + /// To be added. [Export ("collectionView:transitionLayoutForOldLayout:newLayout:")] UICollectionViewTransitionLayout TransitionLayout (UICollectionView collectionView, UICollectionViewLayout fromLayout, UICollectionViewLayout toLayout); + /// The collection view that originated the request. + /// To be added. + /// To be added. + /// When overridden, allows the developer to modify the final location of a moved item. (For instance, to disallow a move to a particular .) + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 15, 0, message: "Use 'GetTargetIndexPathForMoveOfItemFromOriginalIndexPath' instead.")] [Deprecated (PlatformName.TvOS, 15, 0, message: "Use 'GetTargetIndexPathForMoveOfItemFromOriginalIndexPath' instead.")] [MacCatalyst (13, 1)] @@ -5260,6 +5675,11 @@ interface UICollectionViewDelegate : UIScrollViewDelegate { [Export ("collectionView:targetIndexPathForMoveFromItemAtIndexPath:toProposedIndexPath:")] NSIndexPath GetTargetIndexPathForMove (UICollectionView collectionView, NSIndexPath originalIndexPath, NSIndexPath proposedIndexPath); + /// The collection view that originated the request. + /// To be added. + /// When overridden, allows the developer to modify the content offset for layout and animation changes. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("collectionView:targetContentOffsetForProposedContentOffset:")] CGPoint GetTargetContentOffset (UICollectionView collectionView, CGPoint proposedContentOffset); @@ -5269,18 +5689,44 @@ interface UICollectionViewDelegate : UIScrollViewDelegate { [Export ("collectionView:canEditItemAtIndexPath:")] bool CanEditItem (UICollectionView collectionView, NSIndexPath indexPath); + /// The is associated with this. + /// The of the item being checked. + /// Whether the item at can be focused. + /// Returns if the item can be focused. + /// + /// If this method is not implemented, the item's property will be checked. + /// [MacCatalyst (13, 1)] [Export ("collectionView:canFocusItemAtIndexPath:")] bool CanFocusItem (UICollectionView collectionView, NSIndexPath indexPath); + /// The collection view that originated the request. + /// To be added. + /// When overridden, allows the developer to prevent the focus change specified in . + /// + /// if the focus specified in is allowed. + /// To be added. [MacCatalyst (13, 1)] [Export ("collectionView:shouldUpdateFocusInContext:")] bool ShouldUpdateFocus (UICollectionView collectionView, UICollectionViewFocusUpdateContext context); + /// The collection view that originated the request. + /// Metadata for the focus change. + /// The T:UIKit.UIFocusAnimationController coordinating the focus-change animations. + /// Indicates that the focus changed as detailed in the . + /// + /// The values of and may be if focus was previously not within, or just departed, the . + /// [MacCatalyst (13, 1)] [Export ("collectionView:didUpdateFocusInContext:withAnimationCoordinator:")] void DidUpdateFocus (UICollectionView collectionView, UICollectionViewFocusUpdateContext context, UIFocusAnimationCoordinator coordinator); + /// The collection view that originated the request. + /// When overridden, allows the developer to specify the item that should initially receive focus. + /// To be added. + /// + /// The value returned by this method will be ignored on re-entry if the object's is . + /// [MacCatalyst (13, 1)] [Export ("indexPathForPreferredFocusedViewInCollectionView:")] [return: NullAllowed] @@ -5294,6 +5740,12 @@ interface UICollectionViewDelegate : UIScrollViewDelegate { [Export ("collectionView:targetIndexPathForMoveOfItemFromOriginalIndexPath:atCurrentIndexPath:toProposedIndexPath:")] NSIndexPath GetTargetIndexPathForMoveOfItemFromOriginalIndexPath (UICollectionView collectionView, NSIndexPath originalIndexPath, NSIndexPath currentIndexPath, NSIndexPath proposedIndexPath); + /// The collection view that originated the request. + /// The index path to the item. + /// The spring-loaded interaction context. + /// Method that is called to indicate whether the identified item should springload in the specified context. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("collectionView:shouldSpringLoadItemAtIndexPath:withContext:")] @@ -5500,6 +5952,12 @@ interface UICollectionViewController : UICollectionViewSource, NSCoding { [Model] [Protocol] interface UICollectionViewDelegateFlowLayout { + /// To be added. + /// To be added. + /// To be added. + /// The size of the specified item's cell. + /// To be added. + /// To be added. [Export ("collectionView:layout:sizeForItemAtIndexPath:")] CGSize GetSizeForItem (UICollectionView collectionView, UICollectionViewLayout layout, NSIndexPath indexPath); @@ -6823,18 +7281,40 @@ interface IUICollisionBehaviorDelegate { } [Protocol] [Model] interface UICollisionBehaviorDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Indicates that contact between dynamic items has begun. + /// To be added. [Export ("collisionBehavior:beganContactForItem:withItem:atPoint:")] [EventArgs ("UICollisionBeganContact")] void BeganContact (UICollisionBehavior behavior, IUIDynamicItem firstItem, IUIDynamicItem secondItem, CGPoint atPoint); + /// To be added. + /// To be added. + /// To be added. + /// Indicates that the two dynamic items have stopped contacting each other. + /// To be added. [Export ("collisionBehavior:endedContactForItem:withItem:")] [EventArgs ("UICollisionEndedContact")] void EndedContact (UICollisionBehavior behavior, IUIDynamicItem firstItem, IUIDynamicItem secondItem); + /// To be added. + /// To be added. + /// The identifier of the boundary collided with. If , the collision was with the reference boundary.This parameter can be . + /// To be added. + /// Indicates that boundary contact has begun between the dynamicItem and the boundaryIdentifier. + /// To be added. [Export ("collisionBehavior:beganContactForItem:withBoundaryIdentifier:atPoint:")] [EventArgs ("UICollisionBeganBoundaryContact")] void BeganBoundaryContact (UICollisionBehavior behavior, IUIDynamicItem dynamicItem, [NullAllowed] NSObject boundaryIdentifier, CGPoint atPoint); + /// To be added. + /// To be added. + /// The identifier of the boundary collided with. If , the collision was with the reference boundary.This parameter can be . + /// Indicates that the dynamicItem has stopped contacting the boundary. + /// To be added. [Export ("collisionBehavior:endedContactForItem:withBoundaryIdentifier:")] [EventArgs ("UICollisionEndedBoundaryContact")] void EndedBoundaryContact (UICollisionBehavior behavior, IUIDynamicItem dynamicItem, [NullAllowed] NSObject boundaryIdentifier); @@ -7922,21 +8402,50 @@ interface IUIGestureRecognizerDelegate { } [Model] [Protocol] interface UIGestureRecognizerDelegate { + /// To be added. + /// To be added. + /// Whether the recognizer should receive the specified touch. + /// To be added. + /// To be added. [Export ("gestureRecognizer:shouldReceiveTouch:"), DefaultValue (true), DelegateName ("UITouchEventArgs")] bool ShouldReceiveTouch (UIGestureRecognizer recognizer, UITouch touch); + /// To be added. + /// To be added. + /// Whether the two gesture recognizers should be allowed to recognize gestures simultaneously. + /// To be added. + /// To be added. [Export ("gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:"), DelegateName ("UIGesturesProbe"), DefaultValue (false)] bool ShouldRecognizeSimultaneously (UIGestureRecognizer gestureRecognizer, UIGestureRecognizer otherGestureRecognizer); + /// To be added. + /// Whether the gesture recognition should begin. + /// To be added. + /// To be added. [Export ("gestureRecognizerShouldBegin:"), DelegateName ("UIGestureProbe"), DefaultValue (true)] bool ShouldBegin (UIGestureRecognizer recognizer); + /// To be added. + /// To be added. + /// Whether there is a dynamic failure requirement between the specified gesture recognizers. + /// To be added. + /// To be added. [Export ("gestureRecognizer:shouldBeRequiredToFailByGestureRecognizer:"), DelegateName ("UIGesturesProbe"), DefaultValue (false)] bool ShouldBeRequiredToFailBy (UIGestureRecognizer gestureRecognizer, UIGestureRecognizer otherGestureRecognizer); + /// To be added. + /// To be added. + /// Whether the specified gestureRecognizer should be required to fail by the otherGestureRecognizer. + /// To be added. + /// To be added. [Export ("gestureRecognizer:shouldRequireFailureOfGestureRecognizer:"), DelegateName ("UIGesturesProbe"), DefaultValue (false)] bool ShouldRequireFailureOf (UIGestureRecognizer gestureRecognizer, UIGestureRecognizer otherGestureRecognizer); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("gestureRecognizer:shouldReceivePress:"), DelegateName ("UIGesturesPress"), DefaultValue (false)] bool ShouldReceivePress (UIGestureRecognizer gestureRecognizer, UIPress press); @@ -8778,12 +9287,22 @@ interface UITextInput : UIKeyInput { [Export ("characterRangeAtPoint:")] UITextRange GetCharacterRangeAtPoint (CGPoint point); + /// To be added. + /// To be added. + /// Returns a dictionary of style properties for text at the position. + /// To be added. + /// To be added. [Export ("textStylingAtPosition:inDirection:")] NSDictionary GetTextStyling (UITextPosition atPosition, UITextStorageDirection inDirection); [Export ("positionWithinRange:atCharacterOffset:")] UITextPosition GetPosition (UITextRange withinRange, nint atCharacterOffset); + /// To be added. + /// To be added. + /// Calculates and returns the offset into of the character that is in in the document. + /// To be added. + /// To be added. [Export ("characterOffsetOfPosition:withinRange:")] nint GetCharacterOffsetOfPosition (UITextPosition position, UITextRange range); @@ -8812,12 +9331,19 @@ interface UITextInput : UIKeyInput { [Notification] NSString CurrentInputModeDidChangeNotification { get; } + /// The recognition of dictation failed. + /// To be added. [Export ("dictationRecognitionFailed")] void DictationRecognitionFailed (); + /// The recording of dictation ended. + /// To be added. [Export ("dictationRecordingDidEnd")] void DictationRecordingDidEnd (); + /// To be added. + /// Inserts a dictation result at the current position. + /// To be added. [Export ("insertDictationResult:")] void InsertDictationResult (NSArray dictationResult); @@ -8825,26 +9351,50 @@ interface UITextInput : UIKeyInput { [Export ("selectionRectsForRange:")] UITextSelectionRect [] GetSelectionRects (UITextRange range); + /// To be added. + /// To be added. + /// Asks whether the text in should be replaced with . + /// To be added. + /// To be added. [Export ("shouldChangeTextInRange:replacementText:")] bool ShouldChangeTextInRange (UITextRange inRange, string replacementText); + /// To be added. + /// Returns the rectangle in which to display the animated dictation result placeholder. + /// To be added. + /// To be added. [Export ("frameForDictationResultPlaceholder:")] CGRect GetFrameForDictationResultPlaceholder (NSObject placeholder); + /// Returns the placeholder object to use before dictation results are finished being generated. + /// To be added. + /// To be added. [Export ("insertDictationResultPlaceholder")] NSObject InsertDictationResultPlaceholder (); + /// To be added. + /// To be added. + /// The is no longer needed. + /// To be added. [Export ("removeDictationResultPlaceholder:willInsertResult:")] void RemoveDictationResultPlaceholder (NSObject placeholder, bool willInsertResult); + /// To be added. + /// Begins displaying the floating cursor at the specified . + /// To be added. [MacCatalyst (13, 1)] [Export ("beginFloatingCursorAtPoint:")] void BeginFloatingCursor (CGPoint point); + /// To be added. + /// Moves the floating curor to the specified . + /// To be added. [MacCatalyst (13, 1)] [Export ("updateFloatingCursorAtPoint:")] void UpdateFloatingCursor (CGPoint point); + /// Ends display of the floating cursor. + /// To be added. [MacCatalyst (13, 1)] [Export ("endFloatingCursor")] void EndFloatingCursor (); @@ -10522,6 +11072,10 @@ interface IUIBarPositioning { } [Model] [Protocol] interface UIBarPositioningDelegate { + /// To be added. + /// Returns the position for after it has been added to the user interface. + /// To be added. + /// To be added. [Export ("positionForBar:")] [DelegateName ("Func"), NoDefaultValue] UIBarPosition GetPositionForBar (IUIBarPositioning barPositioning); @@ -11509,33 +12063,76 @@ interface IUIDocumentInteractionControllerDelegate { } [Model] [Protocol] interface UIDocumentInteractionControllerDelegate { + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Developers should not use this deprecated method, which determines whether the specified controller should support the specified action. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 6, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] [Export ("documentInteractionController:canPerformAction:"), DelegateName ("UIDocumentInteractionProbe"), DefaultValue (false)] bool CanPerformAction (UIDocumentInteractionController controller, [NullAllowed] Selector action); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Developers should not use this deprecated method. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 6, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] [Export ("documentInteractionController:performAction:"), DelegateName ("UIDocumentInteractionProbe"), DefaultValue (false)] bool PerformAction (UIDocumentInteractionController controller, [NullAllowed] Selector action); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Indicates that the controller's document has been handed off to the specified application. + /// To be added. [Export ("documentInteractionController:didEndSendingToApplication:")] [EventArgs ("UIDocumentSendingToApplication")] void DidEndSendingToApplication (UIDocumentInteractionController controller, [NullAllowed] string application); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// Indicates that the controller's document is about to be handed off to the specified application. + /// To be added. [Export ("documentInteractionController:willBeginSendingToApplication:")] [EventArgs ("UIDocumentSendingToApplication")] void WillBeginSendingToApplication (UIDocumentInteractionController controller, [NullAllowed] string application); + /// To be added. + /// Indicates that the controller has dismissed its "Open In..." menu. + /// To be added. [Export ("documentInteractionControllerDidDismissOpenInMenu:")] void DidDismissOpenInMenu (UIDocumentInteractionController controller); + /// To be added. + /// Indicates that the controller has dismissed its "Options" menu. + /// To be added. [Export ("documentInteractionControllerDidDismissOptionsMenu:")] void DidDismissOptionsMenu (UIDocumentInteractionController controller); + /// To be added. + /// Indicates that the controller has ended its document preview. + /// To be added. [Export ("documentInteractionControllerDidEndPreview:")] void DidEndPreview (UIDocumentInteractionController controller); + /// To be added. + /// The RectangleF used as the starting point for animating the display of a document preview. + /// To be added. + /// To be added. [Export ("documentInteractionControllerRectForPreview:"), DelegateName ("UIDocumentInteractionRectangle"), DefaultValue (null)] CGRect RectangleForPreview (UIDocumentInteractionController controller); @@ -11544,19 +12141,36 @@ interface UIDocumentInteractionControllerDelegate { #if XAMCORE_5_0 [Export ("documentInteractionControllerViewControllerForPreview:"), DelegateName ("UIDocumentPreviewController"), DefaultValue (null)] #else + /// To be added. + /// The UIViewController that provides the document preview. + /// To be added. + /// To be added. [Export ("documentInteractionControllerViewControllerForPreview:"), DelegateName ("UIDocumentViewController"), DefaultValue (null)] #endif UIViewController ViewControllerForPreview (UIDocumentInteractionController controller); + /// To be added. + /// The UIView to use as the starting point for the animation preview. If null, the preview fades into place. + /// To be added. + /// To be added. [Export ("documentInteractionControllerViewForPreview:"), DelegateName ("UIDocumentViewForPreview"), DefaultValue (null)] UIView ViewForPreview (UIDocumentInteractionController controller); + /// To be added. + /// Indicates that document preview is about to start. + /// To be added. [Export ("documentInteractionControllerWillBeginPreview:")] void WillBeginPreview (UIDocumentInteractionController controller); + /// To be added. + /// Indicates that the "Open In..." menu is about to be presented to the app user. + /// To be added. [Export ("documentInteractionControllerWillPresentOpenInMenu:")] void WillPresentOpenInMenu (UIDocumentInteractionController controller); + /// To be added. + /// Indicates that the "Options" menu is about to be presented to the app user. + /// To be added. [Export ("documentInteractionControllerWillPresentOptionsMenu:")] void WillPresentOptionsMenu (UIDocumentInteractionController controller); } @@ -11729,9 +12343,16 @@ interface UIImagePickerController { [Model] [Protocol] interface UIImagePickerControllerDelegate { + /// To be added. + /// To be added. + /// Indicates that the user has picked a picture or movie. + /// To be added. [Export ("imagePickerController:didFinishPickingMediaWithInfo:"), EventArgs ("UIImagePickerMediaPicked")] void FinishedPickingMedia (UIImagePickerController picker, NSDictionary info); + /// To be added. + /// Indicates that the user cancelled the media-picking operation. + /// To be added. [Export ("imagePickerControllerDidCancel:"), EventArgs ("UIImagePickerController")] void Canceled (UIImagePickerController picker); } @@ -12081,15 +12702,33 @@ interface IUINavigationBarDelegate { } [Model] [Protocol] interface UINavigationBarDelegate { + /// To be added. + /// To be added. + /// Called by the system shortly after the has been popped from the navigation stack. + /// To be added. [Export ("navigationBar:didPopItem:")] void DidPopItem (UINavigationBar navigationBar, UINavigationItem item); + /// To be added. + /// To be added. + /// Called by the system prior to popping the . + /// To be added. + /// To be added. [Export ("navigationBar:shouldPopItem:")] bool ShouldPopItem (UINavigationBar navigationBar, UINavigationItem item); + /// To be added. + /// To be added. + /// Called by the system shortly after the has been pushed onto the navigation stack. + /// To be added. [Export ("navigationBar:didPushItem:")] void DidPushItem (UINavigationBar navigationBar, UINavigationItem item); + /// To be added. + /// To be added. + /// Called by the system prior to pushing the onto the navigation stack. + /// To be added. + /// To be added. [Export ("navigationBar:shouldPushItem:")] bool ShouldPushItem (UINavigationBar navigationBar, UINavigationItem item); @@ -12446,12 +13085,26 @@ interface IUINavigationControllerDelegate { } [Protocol] interface UINavigationControllerDelegate { + /// To be added. + /// To be added. + /// To be added. + /// Called by the system shortly before the is displayed. + /// To be added. [Export ("navigationController:willShowViewController:animated:"), EventArgs ("UINavigationController")] void WillShowViewController (UINavigationController navigationController, [Transient] UIViewController viewController, bool animated); + /// To be added. + /// To be added. + /// To be added. + /// Extension method called shortly after the has been made visible. + /// To be added. [Export ("navigationController:didShowViewController:animated:"), EventArgs ("UINavigationController")] void DidShowViewController (UINavigationController navigationController, [Transient] UIViewController viewController, bool animated); + /// To be added. + /// Can be overridden to dynamically specify the supported orientations of the . + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("navigationControllerSupportedInterfaceOrientations:")] @@ -12459,6 +13112,10 @@ interface UINavigationControllerDelegate { [DelegateName ("Func")] UIInterfaceOrientationMask SupportedInterfaceOrientations (UINavigationController navigationController); + /// To be added. + /// Can be overridden to set the preferred interface orientation of the . + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("navigationControllerPreferredInterfaceOrientationForPresentation:")] @@ -12466,11 +13123,23 @@ interface UINavigationControllerDelegate { [NoDefaultValue] UIInterfaceOrientation GetPreferredInterfaceOrientation (UINavigationController navigationController); + /// To be added. + /// To be added. + /// Called by the system to retrieve an interactive transition animation. + /// To be added. + /// To be added. [Export ("navigationController:interactionControllerForAnimationController:")] [DelegateName ("Func")] [NoDefaultValue] IUIViewControllerInteractiveTransitioning GetInteractionControllerForAnimationController (UINavigationController navigationController, IUIViewControllerAnimatedTransitioning animationController); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Called by the system to retrieve the transition animation for the . + /// To be added. + /// To be added. [Export ("navigationController:animationControllerForOperation:fromViewController:toViewController:")] [DelegateName ("Func")] [NoDefaultValue] @@ -12690,18 +13359,37 @@ interface IUIPageViewControllerDelegate { } [Model] [Protocol] interface UIPageViewControllerDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Indicates that animation has completed. + /// To be added. [Export ("pageViewController:didFinishAnimating:previousViewControllers:transitionCompleted:"), EventArgs ("UIPageViewFinishedAnimation")] void DidFinishAnimating (UIPageViewController pageViewController, bool finished, UIViewController [] previousViewControllers, bool completed); + /// To be added. + /// To be added. + /// The location of the spine of the UIPageViewController. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("pageViewController:spineLocationForInterfaceOrientation:"), DelegateName ("UIPageViewSpineLocationCallback")] [DefaultValue (UIPageViewControllerSpineLocation.Mid)] UIPageViewControllerSpineLocation GetSpineLocation (UIPageViewController pageViewController, UIInterfaceOrientation orientation); + /// To be added. + /// To be added. + /// Indicates that a transition is about to begin. + /// To be added. [Export ("pageViewController:willTransitionToViewControllers:"), EventArgs ("UIPageViewControllerTransition")] void WillTransition (UIPageViewController pageViewController, UIViewController [] pendingViewControllers); + /// To be added. + /// The supported interface orientations. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("pageViewControllerSupportedInterfaceOrientations:")] @@ -12709,6 +13397,10 @@ interface UIPageViewControllerDelegate { [DefaultValue (UIInterfaceOrientationMask.All)] UIInterfaceOrientationMask SupportedInterfaceOrientations (UIPageViewController pageViewController); + /// To be added. + /// The preferred orientation of the UIPageViewController. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("pageViewControllerPreferredInterfaceOrientationForPresentation:")] @@ -12732,9 +13424,17 @@ interface UIPageViewControllerDataSource { [Export ("pageViewController:viewControllerAfterViewController:"), DelegateName ("UIPageViewGetViewController"), DefaultValue (null)] UIViewController GetNextViewController (UIPageViewController pageViewController, UIViewController referenceViewController); + /// To be added. + /// The number of pages to be shown in the page indicator. + /// To be added. + /// To be added. [Export ("presentationCountForPageViewController:"), DelegateName ("UIPageViewGetNumber"), DefaultValue (1)] nint GetPresentationCount (UIPageViewController pageViewController); + /// To be added. + /// The index of the page to be highlighted in the page indicator. + /// To be added. + /// To be added. [Export ("presentationIndexForPageViewController:"), DelegateName ("UIPageViewGetNumber"), DefaultValue (1)] nint GetPresentationIndex (UIPageViewController pageViewController); } @@ -14305,45 +15005,91 @@ interface IUIScrollViewDelegate { } [Protocol] interface UIScrollViewDelegate { + /// Scroll view where the scrolling occurred. + /// Indicates that the specified scrollView has scrolled. + /// To be added. [Export ("scrollViewDidScroll:"), EventArgs ("UIScrollView")] void Scrolled (UIScrollView scrollView); + /// Scroll view whose content is about to be scrolled. + /// Indicates that dragging has begun. + /// To be added. [Export ("scrollViewWillBeginDragging:"), EventArgs ("UIScrollView")] void DraggingStarted (UIScrollView scrollView); + /// Scroll view where the content finished scrolling. + /// + /// if the scrolling movement will continue (but decelerate) after the user lifts their finger. If then the scrolling stops immediately upon touch-up. + /// Indicates that dragging has completed. + /// To be added. [Export ("scrollViewDidEndDragging:willDecelerate:"), EventArgs ("Dragging")] void DraggingEnded (UIScrollView scrollView, [EventName ("decelerate")] bool willDecelerate); + /// Scroll view object that is decelerating the scrolling content. + /// Indicates that deceleration of a scrolling event has begun. + /// To be added. [Export ("scrollViewWillBeginDecelerating:"), EventArgs ("UIScrollView")] void DecelerationStarted (UIScrollView scrollView); + /// Scroll view object that is decelerating the scrolling content. + /// Indicates that deceleration relating to a scroll event has ended. + /// To be added. [Export ("scrollViewDidEndDecelerating:"), EventArgs ("UIScrollView")] void DecelerationEnded (UIScrollView scrollView); + /// Scroll view that is performing a scrolling animation. + /// Indicates that all animations relating to scrolling have completed. + /// To be added. [Export ("scrollViewDidEndScrollingAnimation:"), EventArgs ("UIScrollView")] void ScrollAnimationEnded (UIScrollView scrollView); + /// Scroll view displaying the content. + /// The UIView to scale when zooming is requested. + /// To be added. + /// To be added. [Export ("viewForZoomingInScrollView:"), DelegateName ("UIScrollViewGetZoomView"), DefaultValue ("null")] UIView ViewForZoomingInScrollView (UIScrollView scrollView); + /// Scroll view requesting whether scroll is allowed. + /// Whether a scroll to the beginning of the scrollView should be permitted. + /// To be added. + /// To be added. [Export ("scrollViewShouldScrollToTop:"), DelegateName ("UIScrollViewCondition"), DefaultValue ("true")] bool ShouldScrollToTop (UIScrollView scrollView); + /// Scroll view that was scrolled. + /// Indicates that the specified scrollView's scrolling has ended at the top. + /// To be added. [Export ("scrollViewDidScrollToTop:"), EventArgs ("UIScrollView")] void ScrolledToTop (UIScrollView scrollView); [Export ("scrollViewDidEndZooming:withView:atScale:"), EventArgs ("ZoomingEnded")] void ZoomingEnded (UIScrollView scrollView, UIView withView, nfloat atScale); + /// Scroll view being zoomed. + /// Indicates that the specified scrollView has zoomed. + /// To be added. [Export ("scrollViewDidZoom:"), EventArgs ("UIScrollView")] void DidZoom (UIScrollView scrollView); + /// Scroll view containing the content. + /// The content view about to be zoomed. + /// Indicates that zooming has begun. + /// To be added. [Export ("scrollViewWillBeginZooming:withView:"), EventArgs ("UIScrollViewZooming")] void ZoomingStarted (UIScrollView scrollView, UIView view); + /// Scroll view where user touch ended. + /// The velocity of the scroll view (in points) when the touch ended. + /// The expected offset when the scrolling action decelerates to a stop. + /// Indicates that dragging is about to end. + /// To be added. [Export ("scrollViewWillEndDragging:withVelocity:targetContentOffset:"), EventArgs ("WillEndDragging")] void WillEndDragging (UIScrollView scrollView, CGPoint velocity, ref CGPoint targetContentOffset); + /// The scroll view whose insets changed. + /// Method that is called when the inset values change. + /// To be added. [MacCatalyst (13, 1)] [Export ("scrollViewDidChangeAdjustedContentInset:")] void DidChangeAdjustedContentInset (UIScrollView scrollView); @@ -14353,10 +15099,18 @@ interface UIScrollViewDelegate { [Protocol, Model] [BaseType (typeof (UIScrollViewDelegate))] interface UIScrollViewAccessibilityDelegate { + /// To be added. + /// Gets a string that represents the current relative progress through a document or collection of documents. (For example, "Volume 34 of 51.") + /// To be added. + /// To be added. [Export ("accessibilityScrollStatusForScrollView:")] [return: NullAllowed] string GetAccessibilityScrollStatus (UIScrollView scrollView); + /// The scrollview for which to get the attributed status. + /// Gets an attributed string that represents the current relative progress through a document or collection of documents. (For example, "Volume 34 of 51.") + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("accessibilityAttributedScrollStatusForScrollView:")] [return: NullAllowed] @@ -14577,32 +15331,65 @@ interface IUISearchBarDelegate { } [Model] [Protocol] interface UISearchBarDelegate { + /// To be added. + /// Whether editing of the search text should be allowed. + /// To be added. + /// To be added. [Export ("searchBarShouldBeginEditing:"), DefaultValue (true), DelegateName ("UISearchBarPredicate")] bool ShouldBeginEditing (UISearchBar searchBar); + /// To be added. + /// Indicates that the user has begun editing the search text. + /// To be added. [Export ("searchBarTextDidBeginEditing:"), EventArgs ("UISearchBar")] void OnEditingStarted (UISearchBar searchBar); + /// To be added. + /// Whether the editing of the search text should end. + /// To be added. + /// To be added. [Export ("searchBarShouldEndEditing:"), DelegateName ("UISearchBarPredicate"), DefaultValue (true)] bool ShouldEndEditing (UISearchBar searchBar); + /// To be added. + /// Indicates that the user has stopped editing the text field. + /// To be added. [Export ("searchBarTextDidEndEditing:"), EventArgs ("UISearchBar")] void OnEditingStopped (UISearchBar searchBar); + /// To be added. + /// To be added. + /// Indicates that the search text has changed. + /// To be added. [Export ("searchBar:textDidChange:"), EventArgs ("UISearchBarTextChanged")] void TextChanged (UISearchBar searchBar, string searchText); + /// To be added. + /// To be added. + /// To be added. + /// Whether the text in the specified range should be replaced with the specified text. + /// To be added. + /// To be added. [Export ("searchBar:shouldChangeTextInRange:replacementText:"), DefaultValue (true), DelegateName ("UISearchBarRangeEventArgs")] bool ShouldChangeTextInRange (UISearchBar searchBar, NSRange range, string text); + /// To be added. + /// Indicates that the search button was tapped. + /// To be added. [Export ("searchBarSearchButtonClicked:"), EventArgs ("UISearchBar")] void SearchButtonClicked (UISearchBar searchBar); + /// To be added. + /// Indicates that the bookmark button was tapped. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("searchBarBookmarkButtonClicked:"), EventArgs ("UISearchBar")] void BookmarkButtonClicked (UISearchBar searchBar); + /// To be added. + /// Indicates that the cancel button was tapped. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("searchBarCancelButtonClicked:"), EventArgs ("UISearchBar")] @@ -14611,6 +15398,9 @@ interface UISearchBarDelegate { [Export ("searchBar:selectedScopeButtonIndexDidChange:"), EventArgs ("UISearchBarButtonIndex")] void SelectedScopeButtonIndexChanged (UISearchBar searchBar, nint selectedScope); + /// To be added. + /// Indicates that the list button was tapped. + /// To be added. [NoTV] [MacCatalyst (13, 1)] @@ -14757,18 +15547,33 @@ interface IUISearchControllerDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] partial interface UISearchControllerDelegate { + /// To be added. + /// The is about to be presented. + /// To be added. [Export ("willPresentSearchController:")] void WillPresentSearchController (UISearchController searchController); + /// To be added. + /// The was presented. + /// To be added. [Export ("didPresentSearchController:")] void DidPresentSearchController (UISearchController searchController); + /// To be added. + /// The is about to be dismissed. + /// To be added. [Export ("willDismissSearchController:")] void WillDismissSearchController (UISearchController searchController); + /// To be added. + /// The was dismissed. + /// To be added. [Export ("didDismissSearchController:")] void DidDismissSearchController (UISearchController searchController); + /// To be added. + /// Presents the to the user. + /// To be added. [Export ("presentSearchController:")] void PresentSearchController (UISearchController searchController); @@ -14876,56 +15681,97 @@ interface IUISearchDisplayDelegate { } [MacCatalyst (13, 1)] interface UISearchDisplayDelegate { + /// To be added. + /// Indicates that searching is about to start. + /// To be added. [Export ("searchDisplayControllerWillBeginSearch:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void WillBeginSearch (UISearchDisplayController controller); + /// To be added. + /// Developers should not use this deprecated method. + /// To be added. [Export ("searchDisplayControllerDidBeginSearch:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void DidBeginSearch (UISearchDisplayController controller); + /// To be added. + /// Indicates that search is about to finish. + /// To be added. [Export ("searchDisplayControllerWillEndSearch:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void WillEndSearch (UISearchDisplayController controller); + /// To be added. + /// Indicates that searching has ended. + /// To be added. [Export ("searchDisplayControllerDidEndSearch:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void DidEndSearch (UISearchDisplayController controller); + /// To be added. + /// To be added. + /// Indicates that the controller has loaded its UITableView of results. + /// To be added. [Export ("searchDisplayController:didLoadSearchResultsTableView:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void DidLoadSearchResults (UISearchDisplayController controller, UITableView tableView); + /// To be added. + /// To be added. + /// Indicates that the controller is about to unload its UITableView of results. + /// To be added. [Export ("searchDisplayController:willUnloadSearchResultsTableView:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void WillUnloadSearchResults (UISearchDisplayController controller, UITableView tableView); + /// To be added. + /// To be added. + /// Indicates that the controller is about to show its UITableView of results. + /// To be added. [Export ("searchDisplayController:willShowSearchResultsTableView:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void WillShowSearchResults (UISearchDisplayController controller, UITableView tableView); + /// To be added. + /// To be added. + /// Indicates that the controller has begun displayed its UITableView of results. + /// To be added. [Export ("searchDisplayController:didShowSearchResultsTableView:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void DidShowSearchResults (UISearchDisplayController controller, UITableView tableView); + /// To be added. + /// To be added. + /// Indicates that the controller is about to hide its UITableView of results. + /// To be added. [Export ("searchDisplayController:willHideSearchResultsTableView:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void WillHideSearchResults (UISearchDisplayController controller, UITableView tableView); + /// To be added. + /// To be added. + /// Indicates that the controller hid its table view of results. + /// To be added. [Export ("searchDisplayController:didHideSearchResultsTableView:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] void DidHideSearchResults (UISearchDisplayController controller, UITableView tableView); + /// To be added. + /// To be added. + /// Whether data should be reloaded, given the change in search string. + /// To be added. + /// To be added. [Export ("searchDisplayController:shouldReloadTableForSearchString:")] [Deprecated (PlatformName.iOS, 8, 0)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] @@ -15731,24 +16577,46 @@ interface IUITabBarDelegate { } [Model] [Protocol] interface UITabBarDelegate { + /// To be added. + /// To be added. + /// Indicates that the specified UITabBarItem was selected. + /// To be added. [Export ("tabBar:didSelectItem:"), EventArgs ("UITabBarItem")] void ItemSelected (UITabBar tabbar, UITabBarItem item); + /// To be added. + /// To be added. + /// Indicates that customization is about to begin on the specified UITabBarItems. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBar:willBeginCustomizingItems:"), EventArgs ("UITabBarItems")] void WillBeginCustomizingItems (UITabBar tabbar, UITabBarItem [] items); + /// To be added. + /// To be added. + /// Indicates that customizing the specified UITabBarItems has begun. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBar:didBeginCustomizingItems:"), EventArgs ("UITabBarItems")] void DidBeginCustomizingItems (UITabBar tabbar, UITabBarItem [] items); + /// To be added. + /// To be added. + /// To be added. + /// Indicates that customization is about to end on the specified UITabBarItems. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBar:willEndCustomizingItems:changed:"), EventArgs ("UITabBarFinalItems")] void WillEndCustomizingItems (UITabBar tabbar, UITabBarItem [] items, bool changed); + /// To be added. + /// To be added. + /// To be added. + /// Indicates that customization of the specified items has ended. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBar:didEndCustomizingItems:changed:"), EventArgs ("UITabBarFinalItems")] @@ -15763,27 +16631,54 @@ interface IUITabBarControllerDelegate { } [Protocol] interface UITabBarControllerDelegate { + /// To be added. + /// To be added. + /// Whether the specified UIViewController should be made active. + /// To be added. + /// To be added. [Export ("tabBarController:shouldSelectViewController:"), DefaultValue (true), DelegateName ("UITabBarSelection")] bool ShouldSelectViewController (UITabBarController tabBarController, UIViewController viewController); + /// To be added. + /// To be added. + /// Indicates that the app user selected an item from the tab bar. + /// To be added. [Export ("tabBarController:didSelectViewController:"), EventArgs ("UITabBarSelection")] void ViewControllerSelected (UITabBarController tabBarController, UIViewController viewController); + /// To be added. + /// To be added. + /// Indicates that the tab bar customization sheet is about to be displayed. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBarController:willBeginCustomizingViewControllers:"), EventArgs ("UITabBarCustomize")] void OnCustomizingViewControllers (UITabBarController tabBarController, UIViewController [] viewControllers); + /// To be added. + /// To be added. + /// To be added. + /// Indicates that the tab bar customization sheet is about to be dismissed. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBarController:willEndCustomizingViewControllers:changed:"), EventArgs ("UITabBarCustomizeChange")] void OnEndCustomizingViewControllers (UITabBarController tabBarController, UIViewController [] viewControllers, bool changed); + /// To be added. + /// To be added. + /// To be added. + /// Indicates that the customization sheet was dismissed. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBarController:didEndCustomizingViewControllers:changed:"), EventArgs ("UITabBarCustomizeChange")] void FinishedCustomizingViewControllers (UITabBarController tabBarController, UIViewController [] viewControllers, bool changed); + /// To be added. + /// The supported orientations for presentation of the tab bar controller. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBarControllerSupportedInterfaceOrientations:")] @@ -15791,6 +16686,10 @@ interface UITabBarControllerDelegate { [DelegateName ("Func")] UIInterfaceOrientationMask SupportedInterfaceOrientations (UITabBarController tabBarController); + /// To be added. + /// The preferred orientation for presentation of the tab bar controller. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tabBarControllerPreferredInterfaceOrientationForPresentation:")] @@ -15798,12 +16697,23 @@ interface UITabBarControllerDelegate { [DelegateName ("Func")] UIInterfaceOrientation GetPreferredInterfaceOrientation (UITabBarController tabBarController); + /// To be added. + /// To be added. + /// Retrieves the UIViewControllerInteractiveTransitioning used during an interactive transition. + /// To be added. + /// To be added. [Export ("tabBarController:interactionControllerForAnimationController:")] [NoDefaultValue] [DelegateName ("Func")] IUIViewControllerInteractiveTransitioning GetInteractionControllerForAnimationController (UITabBarController tabBarController, IUIViewControllerAnimatedTransitioning animationController); + /// To be added. + /// To be added. + /// To be added. + /// Retrieves the UIViewControllerAnimatedTransitioning used during a non-interactive transition. + /// To be added. + /// To be added. [Export ("tabBarController:animationControllerForTransitionFromViewController:toViewController:")] [NoDefaultValue] [DelegateName ("Func")] @@ -16391,6 +17301,10 @@ interface UITableViewDataSourcePrefetching { [Export ("tableView:prefetchRowsAtIndexPaths:")] void PrefetchRows (UITableView tableView, NSIndexPath [] indexPaths); + /// To be added. + /// To be added. + /// Cancels the prefetching of table data. + /// To be added. [Export ("tableView:cancelPrefetchingForRowsAtIndexPaths:")] void CancelPrefetching (UITableView tableView, NSIndexPath [] indexPaths); } @@ -16904,6 +17818,10 @@ interface UITableViewDataSource { [Abstract] UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath); + /// Table view displaying the sections. + /// Returns the number of sections that are required to display the data. + /// To be added. + /// To be added. [Export ("numberOfSectionsInTableView:")] nint NumberOfSections (UITableView tableView); @@ -16915,12 +17833,26 @@ interface UITableViewDataSource { [return: NullAllowed] string TitleForFooter (UITableView tableView, nint section); + /// Table view containing the row. + /// Location of the row. + /// Whether the row located at should be editable. + /// To be added. + /// To be added. [Export ("tableView:canEditRowAtIndexPath:")] bool CanEditRow (UITableView tableView, NSIndexPath indexPath); + /// Table view containing the row. + /// Location of the row. + /// Whether the row located at can be moved to another location in the table view. + /// To be added. + /// To be added. [Export ("tableView:canMoveRowAtIndexPath:")] bool CanMoveRow (UITableView tableView, NSIndexPath indexPath); + /// Table view that is displaying the index. + /// Returns an array of titles to be displayed as an index on the table view. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("sectionIndexTitlesForTableView:")] [return: NullAllowed] @@ -16930,9 +17862,19 @@ interface UITableViewDataSource { [Export ("tableView:sectionForSectionIndexTitle:atIndex:")] nint SectionFor (UITableView tableView, string title, nint atIndex); + /// Table view requesting insertion or deletion. + /// Cell editing style requested for the row at , such as or . + /// Location of the row. + /// Commits the insertion or deletion of the specified row. + /// To be added. [Export ("tableView:commitEditingStyle:forRowAtIndexPath:")] void CommitEditingStyle (UITableView tableView, UITableViewCellEditingStyle editingStyle, NSIndexPath indexPath); + /// Table view containing the row being moved. + /// Location of the row to be moved. + /// New location of the row. + /// Called when a row has been moved so that the data source can 'implement' the changed row position that has been performed in the user interface. This ensures the data is kept in-sync with what is being displayed. + /// To be added. [Export ("tableView:moveRowAtIndexPath:toIndexPath:")] void MoveRow (UITableView tableView, NSIndexPath sourceIndexPath, NSIndexPath destinationIndexPath); } @@ -16945,9 +17887,19 @@ interface IUITableViewDelegate { } [Protocol] interface UITableViewDelegate { + /// Table view containing the row. + /// Cell view that is going to be used to draw the row. + /// Location of the row. + /// Indicates that the cell at the specified indexPath is about to be shown. + /// To be added. [Export ("tableView:willDisplayCell:forRowAtIndexPath:")] void WillDisplay (UITableView tableView, UITableViewCell cell, NSIndexPath indexPath); + /// Table view. + /// Location of the row. + /// The height of the cell at the specified indexPath. + /// To be added. + /// To be added. [Export ("tableView:heightForRowAtIndexPath:")] nfloat GetHeightForRow (UITableView tableView, NSIndexPath indexPath); @@ -16963,64 +17915,141 @@ interface UITableViewDelegate { [Export ("tableView:viewForFooterInSection:")] UIView GetViewForFooter (UITableView tableView, nint section); + /// The table view containing the row/cell accessory that has been tapped. + /// The location of the row in the table view. + /// Indictes that the user has tapped the accessory / disclosure buttom at the specified indexPath. + /// To be added. [Export ("tableView:accessoryButtonTappedForRowWithIndexPath:")] void AccessoryButtonTapped (UITableView tableView, NSIndexPath indexPath); + /// Table view containing the row. + /// Location of the row about to be selected. + /// Indicates the the cell at the specified indexPath is about to be selected. + /// To be added. + /// To be added. [Export ("tableView:willSelectRowAtIndexPath:")] [return: NullAllowed] NSIndexPath WillSelectRow (UITableView tableView, NSIndexPath indexPath); + /// The table involved. + /// The index path of the row about to be de-selected. + /// Indicates that the cell at the specified indexPath is about to be deselected. + /// To be added. + /// To be added. [Export ("tableView:willDeselectRowAtIndexPath:")] [return: NullAllowed] NSIndexPath WillDeselectRow (UITableView tableView, NSIndexPath indexPath); + /// Table view containing the row. + /// Location of the row that has become selected. + /// Indicates that the call at the specified indexPath has been selected. + /// To be added. [Export ("tableView:didSelectRowAtIndexPath:")] void RowSelected (UITableView tableView, NSIndexPath indexPath); + /// Table view containing the row. + /// Location of the row that has become de-selected. + /// Indicates that the cell at the specified indexPath has been deselected. + /// To be added. [Export ("tableView:didDeselectRowAtIndexPath:")] void RowDeselected (UITableView tableView, NSIndexPath indexPath); + /// Table view that is going to be editable. + /// Location of the row. + /// The UITableViewCellEditingStyle for the specified indexPath. + /// To be added. + /// To be added. [Export ("tableView:editingStyleForRowAtIndexPath:")] UITableViewCellEditingStyle EditingStyleForRow (UITableView tableView, NSIndexPath indexPath); + /// Table view being edited. + /// Location of the row that may be deleted. + /// When overridden, changes the default title of the delete confirmation button. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:")] [return: NullAllowed] string TitleForDeleteConfirmation (UITableView tableView, NSIndexPath indexPath); + /// Table view that contains the row. + /// Location of the row. + /// Whether the cell at the specified indexPath should be indented while it is being edited. + /// To be added. + /// To be added. [Export ("tableView:shouldIndentWhileEditingRowAtIndexPath:")] bool ShouldIndentWhileEditing (UITableView tableView, NSIndexPath indexPath); + /// Table view about to be edited. + /// Location of the row that has been swiped. + /// Indicates that the cell at the specified indexPath is about to be edited. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tableView:willBeginEditingRowAtIndexPath:")] void WillBeginEditing (UITableView tableView, NSIndexPath indexPath); + /// Table view being edited. + /// Location of the row. + /// Indicates that editing of the cell at the specified indexPath has finished. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tableView:didEndEditingRowAtIndexPath:")] void DidEndEditing (UITableView tableView, NSIndexPath indexPath); + /// Table view containing the row to be moved. + /// The original location of the row being moved. + /// The location in the table view where the row has been dropped. The location can be altered by this method. + /// Used to change a cell move destination, for example, to prevent dropping a cell in a certain position. + /// To be added. + /// To be added. [Export ("tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:")] NSIndexPath CustomizeMoveTarget (UITableView tableView, NSIndexPath sourceIndexPath, NSIndexPath proposedIndexPath); + /// Table view containing the row. + /// Location of the row. + /// The indentation level for the cell at the specified indexPath. + /// + /// + /// + /// Note that custom UITableViewCell's do not respect IndentationLevel automatically. Application developers must override M:UIKit.UITableViewController.LayoutSubviews*. + /// [Export ("tableView:indentationLevelForRowAtIndexPath:")] nint IndentationLevel (UITableView tableView, NSIndexPath indexPath); // Copy Paste support + /// Table view containing the row. + /// Location of the row that the user is selecting. + /// Whether the cell at the specified rowAtIndexPath should show an action menu. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GetContextMenuConfiguration' instead.")] [Export ("tableView:shouldShowMenuForRowAtIndexPath:")] bool ShouldShowMenu (UITableView tableView, NSIndexPath rowAtindexPath); + /// Table view containing the row. + /// A selector identifying the Copy or Paste method (ie. or ). + /// Location of the row. + /// Object that initially triggere the Copy or Paste. + /// Whether the cell at the specified indexPath can perform the specified Copy or Paste operation. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GetContextMenuConfiguration' instead.")] [Export ("tableView:canPerformAction:forRowAtIndexPath:withSender:")] bool CanPerformAction (UITableView tableView, Selector action, NSIndexPath indexPath, NSObject sender); + /// Table view containing the row. + /// A selector identifying the Copy or Paste method (ie. or ). + /// Location of the row where the copy or paste operation was selected. + /// Object that triggered the copy or paste operation. + /// Performs the specified Copy or Paste action. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.TvOS, 13, 0, message: "Use 'GetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'GetContextMenuConfiguration' instead.")] @@ -17035,6 +18064,11 @@ interface UITableViewDelegate { [Export ("tableView:willDisplayFooterView:forSection:")] void WillDisplayFooterView (UITableView tableView, [NullAllowed] UIView footerView, nint section); + /// The being displayed. + /// The that has just been removed. + /// The specifying the . + /// Indicates that the cell has just been removed. + /// To be added. [Export ("tableView:didEndDisplayingCell:forRowAtIndexPath:")] void CellDisplayingEnded (UITableView tableView, UITableViewCell cell, NSIndexPath indexPath); @@ -17044,15 +18078,33 @@ interface UITableViewDelegate { [Export ("tableView:didEndDisplayingFooterView:forSection:")] void FooterViewDisplayingEnded (UITableView tableView, UIView footerView, nint section); + /// The in which the row is located. + /// The location of the row being highlighted. + /// Whether the cell at the specified indexPath should be highlighted. + /// To be added. + /// To be added. [Export ("tableView:shouldHighlightRowAtIndexPath:")] bool ShouldHighlightRow (UITableView tableView, NSIndexPath rowIndexPath); + /// The containing the row. + /// Location of the row being highlighted. + /// Indicates that the cell at the specified indexPath has been highlighted. + /// To be added. [Export ("tableView:didHighlightRowAtIndexPath:")] void RowHighlighted (UITableView tableView, NSIndexPath rowIndexPath); + /// The containing the row. + /// The row being unhighlighted. + /// Indicates that the cell at the specified indexPath has been unhighlighted. + /// To be added. [Export ("tableView:didUnhighlightRowAtIndexPath:")] void RowUnhighlighted (UITableView tableView, NSIndexPath rowIndexPath); + /// To be added. + /// To be added. + /// An estimate of the height for the specified indexPath. Implementations should perform minimal calculation, as it is called repeatedly. + /// To be added. + /// To be added. [Export ("tableView:estimatedHeightForRowAtIndexPath:")] nfloat EstimatedHeight (UITableView tableView, NSIndexPath indexPath); @@ -17062,6 +18114,11 @@ interface UITableViewDelegate { [Export ("tableView:estimatedHeightForFooterInSection:")] nfloat EstimatedHeightForFooter (UITableView tableView, nint section); + /// To be added. + /// To be added. + /// Returns an array of row actions to display after the user swipes the row in the table view that is identified by . + /// To be added. + /// To be added. [NoTV] [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'GetTrailingSwipeActionsConfiguration' instead.")] [MacCatalyst (13, 1)] @@ -17069,18 +18126,39 @@ interface UITableViewDelegate { [Export ("tableView:editActionsForRowAtIndexPath:")] UITableViewRowAction [] EditActionsForRow (UITableView tableView, NSIndexPath indexPath); + /// To be added. + /// To be added. + /// Whether the row at the specified may receive focus. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("tableView:canFocusRowAtIndexPath:")] bool CanFocusRow (UITableView tableView, NSIndexPath indexPath); + /// To be added. + /// To be added. + /// TCalled prior to the either losing or receiving focus. If either focus environment returns , the focus update is canceled. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("tableView:shouldUpdateFocusInContext:")] bool ShouldUpdateFocus (UITableView tableView, UITableViewFocusUpdateContext context); + /// To be added. + /// A object containing metadata. + /// A object containing metadata. + /// Indicates that the focus changed as detailed in the . + /// + /// The values of and may be if focus was previously not within, or just departed, the . + /// [MacCatalyst (13, 1)] [Export ("tableView:didUpdateFocusInContext:withAnimationCoordinator:")] void DidUpdateFocus (UITableView tableView, UITableViewFocusUpdateContext context, UIFocusAnimationCoordinator coordinator); + /// To be added. + /// The index path of the table's preferred focus view. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("indexPathForPreferredFocusedViewInTableView:")] [return: NullAllowed] @@ -17090,18 +18168,34 @@ interface UITableViewDelegate { [Export ("tableView:selectionFollowsFocusForRowAtIndexPath:")] bool GetSelectionFollowsFocusForRow (UITableView tableView, NSIndexPath indexPath); + /// The table view for which to get the configuration. + /// The index path to the row for which to get the configuration. + /// Returns the swipe action configuration for swipes that begin from the leading edge. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tableView:leadingSwipeActionsConfigurationForRowAtIndexPath:")] [return: NullAllowed] UISwipeActionsConfiguration GetLeadingSwipeActionsConfiguration (UITableView tableView, NSIndexPath indexPath); + /// The table view for which to get the configuration. + /// The index path to the row for which to get the configuration. + /// Returns the swipe action configuration for swipes that begin from the trailing edge. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tableView:trailingSwipeActionsConfigurationForRowAtIndexPath:")] [return: NullAllowed] UISwipeActionsConfiguration GetTrailingSwipeActionsConfiguration (UITableView tableView, NSIndexPath indexPath); + /// The table view to query. + /// The index path to the row to query. + /// The spring loading context to query. + /// Method that is called to indicate whether the identified row should springload in the specified context. + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("tableView:shouldSpringLoadRowAtIndexPath:withContext:")] @@ -17473,28 +18567,60 @@ interface IUITextFieldDelegate { } [Protocol] interface UITextFieldDelegate { + /// To be added. + /// Whether editing should begin in the specified text field. + /// To be added. + /// To be added. [Export ("textFieldShouldBeginEditing:"), DelegateName ("UITextFieldCondition"), DefaultValue (true)] bool ShouldBeginEditing (UITextField textField); + /// To be added. + /// Indicates that editing has begun on the specified text field. + /// To be added. [Export ("textFieldDidBeginEditing:"), EventArgs ("UITextField"), EventName ("Started")] void EditingStarted (UITextField textField); + /// To be added. + /// Whether editing should stop in the specified text field. + /// To be added. + /// To be added. [Export ("textFieldShouldEndEditing:"), DelegateName ("UITextFieldCondition"), DefaultValue (true)] bool ShouldEndEditing (UITextField textField); + /// The text field for which editing ended. + /// Indicates that editing has ended in the specified text field. + /// To be added. [Export ("textFieldDidEndEditing:"), EventArgs ("UITextField"), EventName ("Ended")] void EditingEnded (UITextField textField); + /// The text field for which editing ended. + /// The reason that editing ended. + /// Indicates that editing has ended in the specified text field for the specified reason. + /// To be added. [MacCatalyst (13, 1)] [Export ("textFieldDidEndEditing:reason:"), EventArgs ("UITextFieldEditingEnded"), EventName ("EndedWithReason")] void EditingEnded (UITextField textField, UITextFieldDidEndEditingReason reason); + /// To be added. + /// Whether the specified text field's current contents should be removed. + /// To be added. + /// To be added. [Export ("textFieldShouldClear:"), DelegateName ("UITextFieldCondition"), DefaultValue ("true")] bool ShouldClear (UITextField textField); + /// To be added. + /// Whether the text field should process the pressing of the return button. + /// To be added. + /// To be added. [Export ("textFieldShouldReturn:"), DelegateName ("UITextFieldCondition"), DefaultValue ("true")] bool ShouldReturn (UITextField textField); + /// To be added. + /// To be added. + /// To be added. + /// Whether the specified text should be changed. + /// To be added. + /// To be added. [Export ("textField:shouldChangeCharactersInRange:replacementString:"), DelegateName ("UITextFieldChange"), DefaultValue ("true")] bool ShouldChangeCharacters (UITextField textField, NSRange range, string replacementString); @@ -17766,27 +18892,59 @@ interface IUITextViewDelegate { } [Protocol] interface UITextViewDelegate { + /// To be added. + /// Whether editing should begin in the specified UITextView. + /// To be added. + /// To be added. [Export ("textViewShouldBeginEditing:"), DelegateName ("UITextViewCondition"), DefaultValue ("true")] bool ShouldBeginEditing (UITextView textView); + /// To be added. + /// Whether editing should end in the specified UITextView. + /// To be added. + /// To be added. [Export ("textViewShouldEndEditing:"), DelegateName ("UITextViewCondition"), DefaultValue ("true")] bool ShouldEndEditing (UITextView textView); + /// To be added. + /// Indicates editing has begun in the specified UITextView. + /// To be added. [Export ("textViewDidBeginEditing:"), EventArgs ("UITextView"), EventName ("Started")] void EditingStarted (UITextView textView); + /// To be added. + /// Indicates that editing has ended in the specified UITextView. + /// To be added. [Export ("textViewDidEndEditing:"), EventArgs ("UITextView"), EventName ("Ended")] void EditingEnded (UITextView textView); + /// To be added. + /// To be added. + /// To be added. + /// Whether the specified text should be replaced in the UITextView. + /// To be added. + /// To be added. [Export ("textView:shouldChangeTextInRange:replacementText:"), DelegateName ("UITextViewChange"), DefaultValue ("true")] bool ShouldChangeText (UITextView textView, NSRange range, string text); + /// To be added. + /// Indicates the text or text attributes in the specified UITextView were changed by the app user. + /// To be added. [Export ("textViewDidChange:"), EventArgs ("UITextView")] void Changed (UITextView textView); + /// To be added. + /// Indicates the text selection has changed in the specified UITextView. + /// To be added. [Export ("textViewDidChangeSelection:"), EventArgs ("UITextView")] void SelectionChanged (UITextView textView); + /// To be added. + /// To be added. + /// To be added. + /// Whether the specified UITextView should allow user interaction with the specified URL in the given range of text. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 10, 0, message: "Use the 'ShouldInteractWithUrl' overload that takes 'UITextItemInteraction' instead.")] [Deprecated (PlatformName.TvOS, 10, 0, message: "Use the 'ShouldInteractWithUrl' overload that takes 'UITextItemInteraction' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'ShouldInteractWithUrl' overload that takes 'UITextItemInteraction' instead.")] @@ -17797,12 +18955,25 @@ interface UITextViewDelegate { bool ShouldInteractWithUrl (UITextView textView, NSUrl URL, NSRange characterRange); #endif + /// To be added. + /// To be added. + /// To be added. + /// Developers should not use this deprecated method. Developers should use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 10, 0, message: "Use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead.")] [Deprecated (PlatformName.TvOS, 10, 0, message: "Use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead.")] [Export ("textView:shouldInteractWithTextAttachment:inRange:"), DelegateName ("Func"), DefaultValue ("true")] bool ShouldInteractWithTextAttachment (UITextView textView, NSTextAttachment textAttachment, NSRange characterRange); + /// The text view that has the attachment. + /// To be added. + /// The character range of the URL in the text view. + /// The interaction type to check. + /// Whether the specified UITextView should allow user interaction with the specified URL in the given range of text. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 10, 0, message: "Use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead.")] [Deprecated (PlatformName.TvOS, 10, 0, message: "Use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use the 'ShouldInteractWithTextAttachment' overload that takes 'UITextItemInteraction' instead.")] @@ -17810,6 +18981,13 @@ interface UITextViewDelegate { [Export ("textView:shouldInteractWithURL:inRange:interaction:"), DelegateApiName ("AllowUrlInteraction"), DelegateName ("UITextViewDelegateShouldInteractUrlDelegate"), DefaultValue ("true")] bool ShouldInteractWithUrl (UITextView textView, NSUrl url, NSRange characterRange, UITextItemInteraction interaction); + /// The text view that has the attachment. + /// The attachment. + /// The character range where the attachment is attached. + /// The interaction type to check. + /// Whether the specified UITextView should allow user interaction with the specified URL in the given range of text. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 17, 0, message: "Replaced by 'GetPrimaryAction' and 'GetMenuConfiguration'.")] [Deprecated (PlatformName.TvOS, 17, 0, message: "Replaced by 'GetPrimaryAction' and 'GetMenuConfiguration'.")] [Deprecated (PlatformName.MacCatalyst, 17, 0, message: "Replaced by 'GetPrimaryAction' and 'GetMenuConfiguration'.")] @@ -18164,12 +19342,23 @@ interface IUIVideoEditorControllerDelegate { } [Model] [Protocol] interface UIVideoEditorControllerDelegate { + /// To be added. + /// To be added. + /// Called after the movie was successfully saved. + /// To be added. [Export ("videoEditorController:didSaveEditedVideoToPath:"), EventArgs ("UIPath"), EventName ("Saved")] void VideoSaved (UIVideoEditorController editor, [EventName ("path")] string editedVideoPath); + /// To be added. + /// To be added. + /// Called when the UIVideoEditorController failed to load or save a movie. + /// To be added. [Export ("videoEditorController:didFailWithError:"), EventArgs ("NSError", true)] void Failed (UIVideoEditorController editor, NSError error); + /// To be added. + /// Indicates that the app user cancelled the movie editing. + /// To be added. [Export ("videoEditorControllerDidCancel:")] void UserCancelled (UIVideoEditorController editor); } @@ -20472,10 +21661,17 @@ partial interface UIViewControllerAnimatedTransitioning { [Export ("animateTransition:")] void AnimateTransition (IUIViewControllerContextTransitioning transitionContext); + /// To be added. + /// Gets the used for the transition. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("interruptibleAnimatorForTransition:")] IUIViewImplicitlyAnimating GetInterruptibleAnimator (IUIViewControllerContextTransitioning transitionContext); + /// To be added. + /// Indicates that the animation has ended. + /// To be added. [Export ("animationEnded:")] void AnimationEnded (bool transitionCompleted); } @@ -20507,18 +21703,45 @@ interface IUIViewControllerTransitioningDelegate { } [Model, BaseType (typeof (NSObject))] [Protocol] partial interface UIViewControllerTransitioningDelegate { + /// To be added. + /// To be added. + /// To be added. + /// Returns the animation controller that is used when presents . + /// To be added. + /// To be added. [Export ("animationControllerForPresentedController:presentingController:sourceController:")] IUIViewControllerAnimatedTransitioning GetAnimationControllerForPresentedController (UIViewController presented, UIViewController presenting, UIViewController source); + /// To be added. + /// When a dismissal animation is called, this method can be overridden to provide a custom UIViewControllerAnimatedTransitioning. + /// To be added. + /// To be added. [Export ("animationControllerForDismissedController:")] IUIViewControllerAnimatedTransitioning GetAnimationControllerForDismissedController (UIViewController dismissed); + /// To be added. + /// When a controller is presented and an interaction desired, this method can be overridden to provide a custom UIViewControllerInteractiveTransitioning. + /// To be added. + /// To be added. [Export ("interactionControllerForPresentation:")] IUIViewControllerInteractiveTransitioning GetInteractionControllerForPresentation (IUIViewControllerAnimatedTransitioning animator); + /// To be added. + /// When a controller is dismissed and an interaction is desired, this method can be overridden to provide a custom UIViewControllerInteractiveTransitioning.|When a dismissal interaction is called and an interaction animation is desired, t + /// To be added. + /// To be added. [Export ("interactionControllerForDismissal:")] IUIViewControllerInteractiveTransitioning GetInteractionControllerForDismissal (IUIViewControllerAnimatedTransitioning animator); + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// Returns the presentation controller that is used when presents . + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("presentationControllerForPresentedViewController:presentingViewController:sourceViewController:")] UIPresentationController GetPresentationControllerForPresentedViewController (UIViewController presentedViewController, [NullAllowed] UIViewController presentingViewController, UIViewController sourceViewController); @@ -21279,16 +22502,29 @@ interface IUISplitViewControllerDelegate { } [Model] [Protocol] interface UISplitViewControllerDelegate { + /// The split view controller. + /// Returns the supported interface orientations for . + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("splitViewControllerSupportedInterfaceOrientations:"), DelegateName ("Func"), DefaultValue (UIInterfaceOrientationMask.All)] UIInterfaceOrientationMask SupportedInterfaceOrientations (UISplitViewController splitViewController); + /// Designates the split view controller that will be presented onscreen. + /// Returns the preferred user interface orientation to use when presenting . + /// To be added. + /// To be added. [NoTV] [MacCatalyst (13, 1)] [Export ("splitViewControllerPreferredInterfaceOrientationForPresentation:"), DelegateName ("Func"), DefaultValue (UIInterfaceOrientation.Unknown)] UIInterfaceOrientation GetPreferredInterfaceOrientationForPresentation (UISplitViewController splitViewController); + /// The split view controller whose display mode is changing. + /// Specified popover controller. + /// Specified view controller. + /// Indicates that the UISplitViewController is about to be presented. + /// To be added. [NoTV] [Export ("splitViewController:popoverController:willPresentViewController:"), EventArgs ("UISplitViewPresent")] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'UISearchController' instead.")] @@ -21296,6 +22532,12 @@ interface UISplitViewControllerDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'UISearchController' instead.")] void WillPresentViewController (UISplitViewController svc, UIPopoverController pc, UIViewController aViewController); + /// The split view controller whose display mode is changing. + /// Specified view controller. + /// An enumeration of the predefined s. + /// Specified popover controller. + /// Indicates that the UISplitViewController is about to be hidden. + /// To be added. [NoTV] [Export ("splitViewController:willHideViewController:withBarButtonItem:forPopoverController:"), EventArgs ("UISplitViewHide")] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'UISearchController' instead.")] @@ -21303,6 +22545,11 @@ interface UISplitViewControllerDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'UISearchController' instead.")] void WillHideViewController (UISplitViewController svc, UIViewController aViewController, UIBarButtonItem barButtonItem, UIPopoverController pc); + /// The split view controller whose display mode is changing. + /// Specified view controller. + /// An enumeration of the predefined s. + /// Indicates that the UISplitViewController is about to be shown. + /// To be added. [NoTV] [Export ("splitViewController:willShowViewController:invalidatingBarButtonItem:"), EventArgs ("UISplitViewShow")] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'UISearchController' instead.")] @@ -21310,6 +22557,12 @@ interface UISplitViewControllerDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'UISearchController' instead.")] void WillShowViewController (UISplitViewController svc, UIViewController aViewController, UIBarButtonItem button); + /// The designated split view controller whose action might be triggered. + /// The specified view controller. + /// The specified orientation. + /// Developers should not use this deprecated method. Developers should use 'UISearchController' instead. + /// To be added. + /// To be added. [NoTV] [Export ("splitViewController:shouldHideViewController:inOrientation:"), DelegateName ("UISplitViewControllerHidePredicate"), DefaultValue (true)] [Deprecated (PlatformName.iOS, 8, 0, message: "Use 'UISearchController' instead.")] @@ -21317,34 +22570,73 @@ interface UISplitViewControllerDelegate { [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'UISearchController' instead.")] bool ShouldHideViewController (UISplitViewController svc, UIViewController viewController, UIInterfaceOrientation inOrientation); + /// The split view controller whose display mode is changing. + /// TThe new display mode that will be applied. + /// The split view controller will change its display mode to . + /// To be added. [MacCatalyst (13, 1)] [Export ("splitViewController:willChangeToDisplayMode:"), EventArgs ("UISplitViewControllerDisplayMode")] void WillChangeDisplayMode (UISplitViewController svc, UISplitViewControllerDisplayMode displayMode); + /// Split view controller whose action might be triggered. + /// Returns the display mode for the action. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("targetDisplayModeForActionInSplitViewController:"), DelegateName ("UISplitViewControllerFetchTargetForActionHandler"), DefaultValue (UISplitViewControllerDisplayMode.Automatic)] UISplitViewControllerDisplayMode GetTargetDisplayModeForAction (UISplitViewController svc); + /// Designates the split view controller that has its primary view being updated. + /// The view controller that is being displayed in the primary position. + /// The action making the request. + /// Shows in the primary position. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("splitViewController:showViewController:sender:"), DelegateName ("UISplitViewControllerDisplayEvent"), DefaultValue (false)] bool EventShowViewController (UISplitViewController splitViewController, UIViewController vc, NSObject sender); + /// Designates the split view controller that has its secondary view being updated. + /// The view controller that is being displayed in the secondary position. + /// The action making the request. + /// Returns true if the delegate will display the detail view itself, rather than relying on . + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("splitViewController:showDetailViewController:sender:"), DelegateName ("UISplitViewControllerDisplayEvent"), DefaultValue (false)] bool EventShowDetailViewController (UISplitViewController splitViewController, UIViewController vc, NSObject sender); + /// Designates the split view controller whose interface is collapsing. + /// Returns the primary view controller for the collapsing view controller . + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("primaryViewControllerForCollapsingSplitViewController:"), DelegateName ("UISplitViewControllerGetViewController"), DefaultValue (null)] UIViewController GetPrimaryViewControllerForCollapsingSplitViewController (UISplitViewController splitViewController); + /// To be added. + /// Returns the primary view controller for the expanding view controller . + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("primaryViewControllerForExpandingSplitViewController:"), DelegateName ("UISplitViewControllerGetViewController"), DefaultValue (null)] UIViewController GetPrimaryViewControllerForExpandingSplitViewController (UISplitViewController splitViewController); + /// Designates the split view controller with the collapsing interface. + /// Designates the secondary view controller for the split view interface. + /// Designates the primary view controller for the split view interface. + /// Collapses the secondary view controller on . + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("splitViewController:collapseSecondaryViewController:ontoPrimaryViewController:"), DelegateName ("UISplitViewControllerCanCollapsePredicate"), DefaultValue (true)] bool CollapseSecondViewController (UISplitViewController splitViewController, UIViewController secondaryViewController, UIViewController primaryViewController); + /// The split view controller with the expanding interface. + /// Primary view controller specified for the expanded split view interface. + /// Returns a new secondary view controller to use in split-view mode, or nil to use the default. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("splitViewController:separateSecondaryViewControllerFromPrimaryViewController:"), DelegateName ("UISplitViewControllerGetSecondaryViewController"), DefaultValue (null)] UIViewController SeparateSecondaryViewController (UISplitViewController splitViewController, UIViewController primaryViewController); @@ -21688,12 +22980,24 @@ interface IUIPopoverControllerDelegate { } [MacCatalyst (13, 1)] [Deprecated (PlatformName.MacCatalyst, 13, 1)] interface UIPopoverControllerDelegate { + /// To be added. + /// Indicates that the UIPopover was dismissed. + /// To be added. [Export ("popoverControllerDidDismissPopover:"), EventArgs ("UIPopoverController")] void DidDismiss (UIPopoverController popoverController); + /// To be added. + /// Whether the popover should be dismissed. + /// To be added. + /// To be added. [Export ("popoverControllerShouldDismissPopover:"), DelegateName ("UIPopoverControllerCondition"), DefaultValue ("true")] bool ShouldDismiss (UIPopoverController popoverController); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("popoverController:willRepositionPopoverToRect:inView:"), EventArgs ("UIPopoverControllerReposition")] void WillReposition (UIPopoverController popoverController, ref CGRect rect, ref UIView view); } @@ -21777,14 +23081,28 @@ interface IUIAdaptivePresentationControllerDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] partial interface UIAdaptivePresentationControllerDelegate { + /// To be added. + /// Returns the new presentation style to use after a change to the . + /// To be added. + /// To be added. [IgnoredInDelegate] [Export ("adaptivePresentationStyleForPresentationController:")] UIModalPresentationStyle GetAdaptivePresentationStyle (UIPresentationController forPresentationController); + /// To be added. + /// To be added. + /// The view controller to use for the specified . + /// To be added. + /// To be added. [Export ("presentationController:viewControllerForAdaptivePresentationStyle:"), DelegateName ("UIAdaptivePresentationWithStyleRequested"), DefaultValue (null)] UIViewController GetViewControllerForAdaptivePresentation (UIPresentationController controller, UIModalPresentationStyle style); + /// To be added. + /// To be added. + /// The presentation style to use for the specified and . + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("adaptivePresentationStyleForPresentationController:traitCollection:"), DelegateName ("UIAdaptivePresentationStyleWithTraitsRequested"), DefaultValue (UIModalPresentationStyle.None)] @@ -21795,6 +23113,11 @@ partial interface UIAdaptivePresentationControllerDelegate { EventName ("PrepareAdaptive"), EventArgs ("UIPrepareAdaptivePresentationArgs")] void PrepareAdaptivePresentationController (UIPresentationController presentationController, UIPresentationController adaptivePresentationController); + /// To be added. + /// To be added. + /// To be added. + /// Called prior to presentation. + /// To be added. [MacCatalyst (13, 1)] [Export ("presentationController:willPresentWithAdaptiveStyle:transitionCoordinator:"), EventName ("WillPresentController"), EventArgs ("UIWillPresentAdaptiveStyle")] @@ -21841,19 +23164,34 @@ interface IUIPopoverPresentationControllerDelegate { } [Protocol, Model] [BaseType (typeof (UIAdaptivePresentationControllerDelegate))] partial interface UIPopoverPresentationControllerDelegate { + /// To be added. + /// The popover that is controlled by will be presented soon. + /// To be added. [Export ("prepareForPopoverPresentation:"), EventName ("PrepareForPresentation")] void PrepareForPopoverPresentation (UIPopoverPresentationController popoverPresentationController); + /// To be added. + /// Asks if the popover that is controlled by should be dismissed. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Replaced by 'ShouldDismiss'.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Replaced by 'ShouldDismiss'.")] [Export ("popoverPresentationControllerShouldDismissPopover:"), DelegateName ("ShouldDismiss"), DefaultValue (true)] bool ShouldDismissPopover (UIPopoverPresentationController popoverPresentationController); + /// To be added. + /// The popover that is controlled by was dismissed. + /// To be added. [Deprecated (PlatformName.iOS, 13, 0, message: "Replaced by 'DidDismiss'.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Replaced by 'DidDismiss'.")] [Export ("popoverPresentationControllerDidDismissPopover:"), EventName ("DidDismiss")] void DidDismissPopover (UIPopoverPresentationController popoverPresentationController); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("popoverPresentationController:willRepositionPopoverToRect:inView:"), EventName ("WillReposition"), EventArgs ("UIPopoverPresentationControllerReposition")] void WillRepositionPopover (UIPopoverPresentationController popoverPresentationController, ref CGRect targetRect, ref UIView inView); @@ -22044,24 +23382,48 @@ interface IUIPrinterPickerControllerDelegate { } [BaseType (typeof (NSObject))] partial interface UIPrinterPickerControllerDelegate { + /// The printer picker controller that is being displayed. + /// Gets the parent view controller of the . + /// To be added. + /// To be added. [Export ("printerPickerControllerParentViewController:")] UIViewController GetParentViewController (UIPrinterPickerController printerPickerController); + /// The printer picker controller that is being displayed. + /// Designated printer for consideration by the delegate. + /// The should show to the user. + /// To be added. + /// To be added. [Export ("printerPickerController:shouldShowPrinter:")] bool ShouldShowPrinter (UIPrinterPickerController printerPickerController, UIPrinter printer); + /// The printer picker controller that is being displayed. + /// The is about to be presented. + /// To be added. [Export ("printerPickerControllerWillPresent:")] void WillPresent (UIPrinterPickerController printerPickerController); + /// The printer picker controller that is being displayed. + /// TThe was presented. + /// To be added. [Export ("printerPickerControllerDidPresent:")] void DidPresent (UIPrinterPickerController printerPickerController); + /// The printer picker controller that is being displayed. + /// The is about to be dismissed. + /// To be added. [Export ("printerPickerControllerWillDismiss:")] void WillDismiss (UIPrinterPickerController printerPickerController); + /// The printer picker controller that is being displayed. + /// The was dismissed. + /// To be added. [Export ("printerPickerControllerDidDismiss:")] void DidDismiss (UIPrinterPickerController printerPickerController); + /// The printer picker controller that is being displayed. + /// The selected a printer. + /// To be added. [Export ("printerPickerControllerDidSelectPrinter:")] void DidSelectPrinter (UIPrinterPickerController printerPickerController); } @@ -22157,35 +23519,72 @@ interface IUIPrintInteractionControllerDelegate { } [Model] [Protocol] interface UIPrintInteractionControllerDelegate { + /// To be added. + /// Returns the parent UIViewController for managing the printing-options view. + /// To be added. + /// To be added. [Export ("printInteractionControllerParentViewController:"), DefaultValue (null), DelegateName ("UIPrintInteraction")] UIViewController GetViewController (UIPrintInteractionController printInteractionController); + /// To be added. + /// To be added. + /// Retrieves an object holding the paper size and printing area to use for a printing job. + /// To be added. + /// To be added. [Export ("printInteractionController:choosePaper:"), DefaultValue (null), DelegateName ("UIPrintInteractionPaperList")] UIPrintPaper ChoosePaper (UIPrintInteractionController printInteractionController, UIPrintPaper [] paperList); + /// To be added. + /// Indicates that the printing-options interface is about to be displayed. + /// To be added. [Export ("printInteractionControllerWillPresentPrinterOptions:"), EventArgs ("UIPrintInteraction")] void WillPresentPrinterOptions (UIPrintInteractionController printInteractionController); + /// To be added. + /// Indicates that the printing-options user interface has been presented. + /// To be added. [Export ("printInteractionControllerDidPresentPrinterOptions:"), EventArgs ("UIPrintInteraction")] void DidPresentPrinterOptions (UIPrintInteractionController printInteractionController); + /// To be added. + /// Indicates that the printing-options user interface will be dismissed. + /// To be added. [Export ("printInteractionControllerWillDismissPrinterOptions:"), EventArgs ("UIPrintInteraction")] void WillDismissPrinterOptions (UIPrintInteractionController printInteractionController); + /// To be added. + /// Indicates that the printer user interface has been dismissed. + /// To be added. [Export ("printInteractionControllerDidDismissPrinterOptions:"), EventArgs ("UIPrintInteraction")] void DidDismissPrinterOptions (UIPrintInteractionController printInteractionController); + /// To be added. + /// Indicates that the print job is about to begin. + /// To be added. [Export ("printInteractionControllerWillStartJob:"), EventArgs ("UIPrintInteraction")] void WillStartJob (UIPrintInteractionController printInteractionController); + /// To be added. + /// Indicates that the print job has ended. + /// To be added. [Export ("printInteractionControllerDidFinishJob:"), EventArgs ("UIPrintInteraction")] void DidFinishJob (UIPrintInteractionController printInteractionController); + /// To be added. + /// To be added. + /// The length to use when cutting the page. + /// To be added. + /// To be added. [Export ("printInteractionController:cutLengthForPaper:")] [NoDefaultValue] [DelegateName ("Func")] nfloat CutLengthForPaper (UIPrintInteractionController printInteractionController, UIPrintPaper paper); + /// To be added. + /// To be added. + /// Gets the for the print job. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("printInteractionController:chooseCutterBehavior:"), DefaultValue ("UIPrinterCutterBehavior.NoCut"), DelegateName ("UIPrintInteractionCutterBehavior")] UIPrinterCutterBehavior ChooseCutterBehavior (UIPrintInteractionController printInteractionController, NSNumber [] availableBehaviors); @@ -23338,10 +24737,17 @@ partial interface UIDocumentPickerDelegate { [Export ("documentPicker:didPickDocumentAtURL:"), EventArgs ("UIDocumentPicked")] void DidPickDocument (UIDocumentPickerViewController controller, NSUrl url); + /// The controller that made the request. + /// The URLS that were picked. + /// Developers may implement this method to respond after the user selects documents. + /// To be added. [MacCatalyst (13, 1)] [Export ("documentPicker:didPickDocumentsAtURLs:"), EventArgs ("UIDocumentPickedAtUrls"), EventName ("DidPickDocumentAtUrls")] void DidPickDocument (UIDocumentPickerViewController controller, NSUrl [] urls); + /// To be added. + /// The user dismissed the picker. + /// To be added. [Export ("documentPickerWasCancelled:")] void WasCancelled (UIDocumentPickerViewController controller); } @@ -23421,6 +24827,9 @@ interface UIAccessibilityReadingContent { [return: NullAllowed] NSAttributedString GetAccessibilityAttributedContent (nint lineNumber); + /// Gets an attributes string that represents the text for the current page. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("accessibilityAttributedPageContent")] [return: NullAllowed] @@ -23444,6 +24853,10 @@ interface UIGuidedAccessRestrictionDelegate { string GetTextForGuidedAccessRestriction (string restrictionIdentifier); // Optional + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("detailTextForGuidedAccessRestrictionWithIdentifier:")] string GetDetailTextForGuidedAccessRestriction (string restrictionIdentifier); } @@ -23602,6 +25015,9 @@ interface UIFocusItem : UIFocusEnvironment { [Export ("isTransparentFocusItem")] bool IsTransparentFocusItem { get; } + /// The focus movement hint. + /// Called when a focus change may soon happen. + /// To be added. [MacCatalyst (13, 1)] [Export ("didHintFocusMovement:")] void DidHintFocusMovement (UIFocusMovementHint hint); @@ -23831,6 +25247,10 @@ interface UIPreviewInteractionDelegate { [Export ("previewInteractionDidCancel:")] void DidCancel (UIPreviewInteraction previewInteraction); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("previewInteractionShouldBegin:")] [DelegateName ("Func"), DefaultValue (true)] bool ShouldBegin (UIPreviewInteraction previewInteraction); @@ -24224,51 +25644,128 @@ interface UIDragInteractionDelegate { [Export ("dragInteraction:itemsForBeginningSession:")] UIDragItem [] GetItemsForBeginningSession (UIDragInteraction interaction, IUIDragSession session); + /// The interaction that is making the request. + /// The item for which to get a preview. + /// The drag session. + /// Method that is called to get a targeted drag preview for animating the lift. + /// To be added. + /// To be added. [Export ("dragInteraction:previewForLiftingItem:session:")] [return: NullAllowed] UITargetedDragPreview GetPreviewForLiftingItem (UIDragInteraction interaction, UIDragItem item, IUIDragSession session); + /// The interaction that is making the request. + /// An animator to run custom parallel animations and in which the developer may optionally add a completion handler. + /// The session. + /// Method that is called before each item with a lift preview is about to lift. + /// To be added. [Export ("dragInteraction:willAnimateLiftWithAnimator:session:")] void WillAnimateLift (UIDragInteraction interaction, IUIDragAnimating animator, IUIDragSession session); + /// The interaction that is making the request. + /// The session that will begin. + /// Method that is called when a session is about to begin. + /// To be added. [Export ("dragInteraction:sessionWillBegin:")] void SessionWillBegin (UIDragInteraction interaction, IUIDragSession session); + /// The interaction that is making the request. + /// The session to query. + /// Method that is called to find out if the session allows items to be moved, instead of copied. + /// To be added. + /// To be added. [Export ("dragInteraction:sessionAllowsMoveOperation:")] bool SessionAllowsMoveOperation (UIDragInteraction interaction, IUIDragSession session); + /// The interaction that is making the request. + /// The session to query. + /// Method that is called to find out if the application only supports drag and drop operations to and from itself. + /// To be added. + /// To be added. [Export ("dragInteraction:sessionIsRestrictedToDraggingApplication:")] bool SessionIsRestrictedToDraggingApplication (UIDragInteraction interaction, IUIDragSession session); + /// The interaction that is making the request. + /// The session to query. + /// Method that is called to find out whether the application prefers full size previews in the source view. + /// To be added. + /// To be added. [Export ("dragInteraction:prefersFullSizePreviewsForSession:")] bool PrefersFullSizePreviews (UIDragInteraction interaction, IUIDragSession session); + /// The interaction that is making the request. + /// The drag session. + /// Method that is called when the drag point moves. + /// To be added. [Export ("dragInteraction:sessionDidMove:")] void SessionDidMove (UIDragInteraction interaction, IUIDragSession session); + /// The interaction that is making the request. + /// The session that will end. + /// The operation that will end the session. + /// Method that is called when a session is about to end. + /// To be added. [Export ("dragInteraction:session:willEndWithOperation:")] void SessionWillEnd (UIDragInteraction interaction, IUIDragSession session, UIDropOperation operation); + /// The interaction that is making the request. + /// The session that ended. + /// The resulting drag and drop operation. + /// Method that is called when the drag session ends. + /// To be added. [Export ("dragInteraction:session:didEndWithOperation:")] void SessionDidEnd (UIDragInteraction interaction, IUIDragSession session, UIDropOperation operation); + /// The interaction that is making the request. + /// The session that ended and transferred the items. + /// Method that is called after the dropped items have been received. + /// To be added. [Export ("dragInteraction:sessionDidTransferItems:")] void SessionDidTransferItems (UIDragInteraction interaction, IUIDragSession session); + /// The interaction that is making the request. + /// The session to which to add items. + /// The touch location in the view's coordinate system. + /// Method that is called to add drag items to a drag session in response to a gesture by the user. + /// To be added. + /// To be added. [Export ("dragInteraction:itemsForAddingToSession:withTouchAtPoint:")] UIDragItem [] GetItemsForAddingToSession (UIDragInteraction interaction, IUIDragSession session, CGPoint point); + /// The interaction that is making the request. + /// The sessions from which to choose. + /// The touch point in the view's coordinate system. + /// Method that is called to disambiguate to which session to add items when multiple sessions are active. + /// To be added. + /// To be added. [Export ("dragInteraction:sessionForAddingItems:withTouchAtPoint:")] [return: NullAllowed] IUIDragSession GetSessionForAddingItems (UIDragInteraction interaction, IUIDragSession [] sessions, CGPoint point); + /// The interaction that is making the request. + /// The session to which items will be added. + /// The items to add. + /// The interaction that will add the items. + /// Method that is called when items are about to be added to the session. + /// To be added. [Export ("dragInteraction:session:willAddItems:forInteraction:")] void WillAddItems (UIDragInteraction interaction, IUIDragSession session, UIDragItem [] items, UIDragInteraction addingInteraction); + /// The interaction that is making the request. + /// The item for which to get a preview. + /// The default drag preview for the item. + /// Method that is called for each visible item in a drag session when the user cancels the drag session. + /// To be added. + /// To be added. [Export ("dragInteraction:previewForCancellingItem:withDefault:")] [return: NullAllowed] UITargetedDragPreview GetPreviewForCancellingItem (UIDragInteraction interaction, UIDragItem item, UITargetedDragPreview defaultPreview); + /// The interaction that is making the request. + /// The item whose cancellation will be animated. + /// An animator to run custom parallel animations and in which the developer may optionally add a completion handler. + /// Method that is called before the animation of each item in a cancellation begins. + /// To be added. [Export ("dragInteraction:item:willAnimateCancelWithAnimator:")] void WillAnimateCancel (UIDragInteraction interaction, UIDragItem item, IUIDragAnimating animator); } @@ -24297,32 +25794,73 @@ interface UIDropInteraction : UIInteraction { [Protocol, Model] [BaseType (typeof (NSObject))] interface UIDropInteractionDelegate { + /// The interaction to check. + /// The session to query. + /// Returns if the specified can handle the specified . + /// To be added. + /// To be added. [Export ("dropInteraction:canHandleSession:"), DelegateName ("Func"), NoDefaultValue] bool CanHandleSession (UIDropInteraction interaction, IUIDropSession session); + /// The interaction that is making the request. + /// The session that entered the view for the interaction. + /// Method that is called when the user drags the drop session into the view for the drop interaction. + /// To be added. [Export ("dropInteraction:sessionDidEnter:"), EventArgs ("UIDropInteraction")] void SessionDidEnter (UIDropInteraction interaction, IUIDropSession session); + /// The interaction that is making the request. + /// The session that was changed. + /// Method that is called when the touch point moves into or within the view, or when drag items are added while the touch point is within the view. + /// To be added. + /// To be added. [Export ("dropInteraction:sessionDidUpdate:"), DelegateName ("Func"), NoDefaultValue] UIDropProposal SessionDidUpdate (UIDropInteraction interaction, IUIDropSession session); + /// The interaction that is making the request. + /// The session that left the view for the interaction. + /// Method that is called when the user drags the drop session out of the view for the drop interaction. + /// To be added. [Export ("dropInteraction:sessionDidExit:"), EventArgs ("UIDropInteraction")] void SessionDidExit (UIDropInteraction interaction, IUIDropSession session); + /// The interaction that is making the request. + /// The session that contains the items to drop. + /// Method that is called to consume data from the item providers in the drop session. + /// To be added. [Export ("dropInteraction:performDrop:"), EventArgs ("UIDropInteraction")] void PerformDrop (UIDropInteraction interaction, IUIDropSession session); + /// The interaction that is making the request. + /// The session that has concluded. + /// Method that is called after the drop is performed and all animations have completed. + /// To be added. [Export ("dropInteraction:concludeDrop:"), EventArgs ("UIDropInteraction")] void ConcludeDrop (UIDropInteraction interaction, IUIDropSession session); + /// The interaction that is making the request. + /// The session that ended. + /// Method that is called to allow the developer to release all resources for the completed drop session. + /// To be added. [Export ("dropInteraction:sessionDidEnd:"), EventArgs ("UIDropInteraction")] void SessionDidEnd (UIDropInteraction interaction, IUIDropSession session); + /// The interaction that is making the request. + /// The item for which to get a preview. + /// The default preview for the item. + /// Method that is called for each drag item to allow the developer to provide a custom preview. + /// To be added. + /// To be added. [Export ("dropInteraction:previewForDroppingItem:withDefault:")] [return: NullAllowed] [DelegateName ("UIDropInteractionPreviewForItem"), NoDefaultValue] UITargetedDragPreview GetPreviewForDroppingItem (UIDropInteraction interaction, UIDragItem item, UITargetedDragPreview defaultPreview); + /// The interaction that is making the request. + /// The item whose drop to animate. + /// An animator to run custom parallel animations and in which the developer may optionally add a completion handler. + /// Method that is called for each visible drag item just before the drop is animated. + /// To be added. [Export ("dropInteraction:item:willAnimateDropWithAnimator:"), EventArgs ("UIDropInteractionAnimation")] void WillAnimateDrop (UIDropInteraction interaction, UIDragItem item, IUIDragAnimating animator); } @@ -24420,22 +25958,52 @@ interface UICollectionViewDragDelegate { [Export ("collectionView:itemsForBeginningDragSession:atIndexPath:")] UIDragItem [] GetItemsForBeginningDragSession (UICollectionView collectionView, IUIDragSession session, NSIndexPath indexPath); + /// The originating collection view. + /// The drag session to which to add items. + /// The index path to the item to add. + /// The point that the user touched, in the collection view coordinate space. + /// Adds the items at the index path to the drag session. + /// To be added. + /// To be added. [Export ("collectionView:itemsForAddingToDragSession:atIndexPath:point:")] UIDragItem [] GetItemsForAddingToDragSession (UICollectionView collectionView, IUIDragSession session, NSIndexPath indexPath, CGPoint point); + /// To be added. + /// To be added. + /// Gets the preview parameters for the item at the specified index path. + /// To be added. + /// To be added. [Export ("collectionView:dragPreviewParametersForItemAtIndexPath:")] [return: NullAllowed] UIDragPreviewParameters GetDragPreviewParameters (UICollectionView collectionView, NSIndexPath indexPath); + /// The originating collection view. + /// The session that is about to begin. + /// Method that is called just before a drag session begins. + /// To be added. [Export ("collectionView:dragSessionWillBegin:")] void DragSessionWillBegin (UICollectionView collectionView, IUIDragSession session); + /// The originating collection view. + /// The session that is ending. + /// Method that is called when the user cancels or completes the drag session. + /// To be added. [Export ("collectionView:dragSessionDidEnd:")] void DragSessionDidEnd (UICollectionView collectionView, IUIDragSession session); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("collectionView:dragSessionAllowsMoveOperation:")] bool DragSessionAllowsMoveOperation (UICollectionView collectionView, IUIDragSession session); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("collectionView:dragSessionIsRestrictedToDraggingApplication:")] bool DragSessionIsRestrictedToDraggingApplication (UICollectionView collectionView, IUIDragSession session); } @@ -24450,21 +26018,52 @@ interface UICollectionViewDropDelegate { [Export ("collectionView:performDropWithCoordinator:")] void PerformDrop (UICollectionView collectionView, IUICollectionViewDropCoordinator coordinator); + /// The collection view to query. + /// The drop session with the drag type data. + /// Returns a Boolean value that tells whether the collection view can handle drops from the data in the session. + /// To be added. + /// To be added. [Export ("collectionView:canHandleDropSession:")] bool CanHandleDropSession (UICollectionView collectionView, IUIDropSession session); + /// The originating collection view. + /// The drop session. + /// Method that is called when the drop point enters the collection view. + /// To be added. [Export ("collectionView:dropSessionDidEnter:")] void DropSessionDidEnter (UICollectionView collectionView, IUIDropSession session); + /// The originating collection view. + /// The drop session. + /// + /// The index path where the content would be dropped if it were dropped at the time of the method call. + /// This parameter can be . + /// + /// Method that is called when the drop point over the collection view changes. + /// To be added. + /// To be added. [Export ("collectionView:dropSessionDidUpdate:withDestinationIndexPath:")] UICollectionViewDropProposal DropSessionDidUpdate (UICollectionView collectionView, IUIDropSession session, [NullAllowed] NSIndexPath destinationIndexPath); + /// The originating collection view. + /// The drop session. + /// Method that is called when the drop point leaves the collection view. + /// To be added. [Export ("collectionView:dropSessionDidExit:")] void DropSessionDidExit (UICollectionView collectionView, IUIDropSession session); + /// The originating collection view. + /// The drop session. + /// Method that is called when the drop session ends. + /// To be added. [Export ("collectionView:dropSessionDidEnd:")] void DropSessionDidEnd (UICollectionView collectionView, IUIDropSession session); + /// The originating collection view. + /// To be added. + /// Returns the drag preview parameters for the item at the specified index path. + /// To be added. + /// To be added. [Export ("collectionView:dropPreviewParametersForItemAtIndexPath:")] [return: NullAllowed] UIDragPreviewParameters GetDropPreviewParameters (UICollectionView collectionView, NSIndexPath indexPath); @@ -24603,22 +26202,52 @@ interface UITableViewDragDelegate { [Export ("tableView:itemsForBeginningDragSession:atIndexPath:")] UIDragItem [] GetItemsForBeginningDragSession (UITableView tableView, IUIDragSession session, NSIndexPath indexPath); + /// The originating table view. + /// The session to which to add the items. + /// The index path to the added row. + /// The point, in the table view's coordinate system, of the user's touch. + /// Adds the items at the index path to the drag session. + /// To be added. + /// To be added. [Export ("tableView:itemsForAddingToDragSession:atIndexPath:point:")] UIDragItem [] GetItemsForAddingToDragSession (UITableView tableView, IUIDragSession session, NSIndexPath indexPath, CGPoint point); + /// The table view for which to get drag preview parameters. + /// The index path to the row for which to get drag preview parameters. + /// Gets the preview parameters for the item at the specified index path. + /// To be added. + /// To be added. [Export ("tableView:dragPreviewParametersForRowAtIndexPath:")] [return: NullAllowed] UIDragPreviewParameters GetDragPreviewParameters (UITableView tableView, NSIndexPath indexPath); + /// The originating table view. + /// The session that will begin. + /// Method that is called just before a drag session begins. + /// To be added. [Export ("tableView:dragSessionWillBegin:")] void DragSessionWillBegin (UITableView tableView, IUIDragSession session); + /// The originating table view. + /// The session that ended. + /// Method that is called when the user cancels or completes the drag session. + /// To be added. [Export ("tableView:dragSessionDidEnd:")] void DragSessionDidEnd (UITableView tableView, IUIDragSession session); + /// To be added. + /// To be added. + /// Whether the drag session can move items within the developer's app. + /// To be added. + /// To be added. [Export ("tableView:dragSessionAllowsMoveOperation:")] bool DragSessionAllowsMoveOperation (UITableView tableView, IUIDragSession session); + /// To be added. + /// To be added. + /// Gets whether the drag session may only act within the developer's app. + /// To be added. + /// To be added. [Export ("tableView:dragSessionIsRestrictedToDraggingApplication:")] bool DragSessionIsRestrictedToDraggingApplication (UITableView tableView, IUIDragSession session); } @@ -24633,21 +26262,49 @@ interface UITableViewDropDelegate { [Export ("tableView:performDropWithCoordinator:")] void PerformDrop (UITableView tableView, IUITableViewDropCoordinator coordinator); + /// The target table view. + /// The drop session. + /// Returns a Boolean value that tells whether the table view can handle drops from the data in the session. + /// To be added. + /// To be added. [Export ("tableView:canHandleDropSession:")] bool CanHandleDropSession (UITableView tableView, IUIDropSession session); + /// The current target of the drop. + /// The drop session that entered. + /// Method that is called when the drop point enters the table view. + /// To be added. [Export ("tableView:dropSessionDidEnter:")] void DropSessionDidEnter (UITableView tableView, IUIDropSession session); + /// The current drop target. + /// The drop session. + /// The index path to the currently targeted row. This parameter can be . + /// Method that is called when the drop point over the table view changes. + /// To be added. + /// To be added. [Export ("tableView:dropSessionDidUpdate:withDestinationIndexPath:")] UITableViewDropProposal DropSessionDidUpdate (UITableView tableView, IUIDropSession session, [NullAllowed] NSIndexPath destinationIndexPath); + /// The view that was tracking the operation. + /// The drop session that exited. + /// Method that is called when the drop point leaves the table view. + /// To be added. [Export ("tableView:dropSessionDidExit:")] void DropSessionDidExit (UITableView tableView, IUIDropSession session); + /// The original intended target table view. + /// The session that ended. + /// Method that is called when the drop session ends. + /// To be added. [Export ("tableView:dropSessionDidEnd:")] void DropSessionDidEnd (UITableView tableView, IUIDropSession session); + /// The table view for which to get the preview parameters. + /// The index path to the row for which to get the preview parameters. + /// Returns the drag preview parameters for the item at the specified index path. + /// To be added. + /// To be added. [Export ("tableView:dropPreviewParametersForRowAtIndexPath:")] [return: NullAllowed] UIDragPreviewParameters GetDropPreviewParameters (UITableView tableView, NSIndexPath indexPath); @@ -24831,19 +26488,44 @@ interface UITextDraggable : UITextInput { [Protocol, Model] [BaseType (typeof (NSObject))] interface UITextDragDelegate { + /// The originating view. + /// The drag request. + /// Method that is called to get custom drag items. + /// To be added. + /// To be added. [Export ("textDraggableView:itemsForDrag:")] UIDragItem [] GetItemsForDrag (IUITextDraggable textDraggableView, IUITextDragRequest dragRequest); + /// The originating view. + /// The item for which to get a lift preview. + /// The drag session. + /// Method that is called to get a preview for the item that is lifting. + /// To be added. + /// To be added. [Export ("textDraggableView:dragPreviewForLiftingItem:session:")] [return: NullAllowed] UITargetedDragPreview GetPreviewForLiftingItem (IUITextDraggable textDraggableView, UIDragItem item, IUIDragSession session); + /// The originating view. + /// The animator to use for adding animations. + /// The drag session. + /// Method that is called just before an item lift is animated. + /// To be added. [Export ("textDraggableView:willAnimateLiftWithAnimator:session:")] void WillAnimateLift (IUITextDraggable textDraggableView, IUIDragAnimating animator, IUIDragSession session); + /// The orginating view. + /// The drag session that will begin. + /// Method that is called just before a drag session begins. + /// To be added. [Export ("textDraggableView:dragSessionWillBegin:")] void DragSessionWillBegin (IUITextDraggable textDraggableView, IUIDragSession session); + /// The orginating view. + /// The drag session that ended. + /// The operation that ended the session. + /// Method that is called when the user cancels or completes the drag session. + /// To be added. [Export ("textDraggableView:dragSessionDidEnd:withOperation:")] void DragSessionDidEnd (IUITextDraggable textDraggableView, IUIDragSession session, UIDropOperation operation); } @@ -24921,28 +26603,65 @@ interface UITextDroppable : UITextInput, UITextPasteConfigurationSupporting { [Protocol, Model] [BaseType (typeof (NSObject))] interface UITextDropDelegate { + /// The currently non-editable receiving view. + /// The drop request. + /// Method that is called to determine whether a non-editable text view can accept drops. + /// To be added. + /// To be added. [Export ("textDroppableView:willBecomeEditableForDrop:")] UITextDropEditability WillBecomeEditable (IUITextDroppable textDroppableView, IUITextDropRequest drop); + /// The receiving view. + /// The drop request for which to get a proposal. + /// Method that is called to get the drop proposal. + /// To be added. + /// To be added. [Export ("textDroppableView:proposalForDrop:")] UITextDropProposal GetProposalForDrop (IUITextDroppable textDroppableView, IUITextDropRequest drop); + /// The receiving view. + /// The drop request. + /// Method that is called just before the drop is performed. + /// To be added. [Export ("textDroppableView:willPerformDrop:")] void WillPerformDrop (IUITextDroppable textDroppableView, IUITextDropRequest drop); + /// The receiving view. + /// The system-provided default preview. + /// Method that is called once to get the drag preview to use for dropping all the items. + /// + /// Developers can return to cause the default preview to be used. + /// + /// To be added. [Export ("textDroppableView:previewForDroppingAllItemsWithDefault:")] [return: NullAllowed] UITargetedDragPreview GetPreviewForDroppingAllItems (IUITextDroppable textDroppableView, UITargetedDragPreview defaultPreview); + /// The receiving view. + /// The session that entered. + /// Method that is called when the drop point enters the text view. + /// To be added. [Export ("textDroppableView:dropSessionDidEnter:")] void DropSessionDidEnter (IUITextDroppable textDroppableView, IUIDropSession session); + /// The receiving view. + /// The session that was updated. + /// Method that is called when the drop point over the text view changes. + /// To be added. [Export ("textDroppableView:dropSessionDidUpdate:")] void DropSessionDidUpdate (IUITextDroppable textDroppableView, IUIDropSession session); + /// The previously receiving view. + /// The session that exited. + /// Method that is called when the drop point leaves the text view. + /// To be added. [Export ("textDroppableView:dropSessionDidExit:")] void DropSessionDidExit (IUITextDroppable textDroppableView, IUIDropSession session); + /// The destination view. + /// The drop session that ended. + /// Method that is called when the drop session ends. + /// To be added. [Export ("textDroppableView:dropSessionDidEnd:")] void DropSessionDidEnd (IUITextDroppable textDroppableView, IUIDropSession session); } @@ -25026,6 +26745,9 @@ interface UISpringLoadedInteractionBehavior { [Export ("shouldAllowInteraction:withContext:")] bool ShouldAllowInteraction (UISpringLoadedInteraction interaction, IUISpringLoadedInteractionContext context); + /// The interaction that finished. + /// Method that is called when the user cancels or carries out the spring-loaded interaction. + /// To be added. [Export ("interactionDidFinish:")] void InteractionDidFinish (UISpringLoadedInteraction interaction); } @@ -25157,15 +26879,37 @@ interface IUITextPasteDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface UITextPasteDelegate { + /// The receiving object. + /// The paste item. + /// Method that is called to transform the paste item as it is pasted. + /// To be added. [Export ("textPasteConfigurationSupporting:transformPasteItem:")] void TransformPasteItem (IUITextPasteConfigurationSupporting textPasteConfigurationSupporting, IUITextPasteItem item); + /// The receiving object. + /// The strings to combine. + /// The range in which to paste or drop the combined strings. + /// Method that is called to combine multiple attributed strings. + /// To be added. + /// To be added. [Export ("textPasteConfigurationSupporting:combineItemAttributedStrings:forRange:")] NSAttributedString CombineItemAttributedStrings (IUITextPasteConfigurationSupporting textPasteConfigurationSupporting, NSAttributedString [] itemStrings, UITextRange textRange); + /// The receiving object. + /// To be added. + /// The range in which to paste or drop the string. + /// Method that is called to incorporate the pasted data into the application content. + /// To be added. + /// To be added. [Export ("textPasteConfigurationSupporting:performPasteOfAttributedString:toRange:")] UITextRange PerformPaste (IUITextPasteConfigurationSupporting textPasteConfigurationSupporting, NSAttributedString attributedString, UITextRange textRange); + /// The receiving object. + /// The string to paste. + /// The range in which to paste or drop the string. + /// Returns a Boolean value that tells the system whether to animate the paste operation. + /// To be added. + /// To be added. [Export ("textPasteConfigurationSupporting:shouldAnimatePasteOfAttributedString:toRange:")] bool ShouldAnimatePaste (IUITextPasteConfigurationSupporting textPasteConfigurationSupporting, NSAttributedString attributedString, UITextRange textRange); } @@ -25255,9 +26999,16 @@ interface UIPasteConfigurationSupporting { [NullAllowed, Export ("pasteConfiguration", ArgumentSemantic.Copy)] UIPasteConfiguration PasteConfiguration { get; set; } + /// The item providers for the items to paste. + /// Performs the paste. + /// To be added. [Export ("pasteItemProviders:")] void Paste (NSItemProvider [] itemProviders); + /// The ittem providers to check. + /// Returns if the responder can paste from the specified item providers. + /// To be added. + /// To be added. [Export ("canPasteItemProviders:")] bool CanPaste (NSItemProvider [] itemProviders); } @@ -25394,26 +27145,60 @@ interface IUIDocumentBrowserViewControllerDelegate { } [Protocol, Model] [BaseType (typeof (NSObject))] interface UIDocumentBrowserViewControllerDelegate { + /// The controller in which the URLs were picked . + /// The chosen URLs. + /// Developers may implement this method to respond after the user selects document URLs. + /// To be added. [Deprecated (PlatformName.iOS, 12, 0, message: "Use 'DidPickDocumentsAtUrls (UIDocumentBrowserViewController, NSUrl[])' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'DidPickDocumentsAtUrls (UIDocumentBrowserViewController, NSUrl[])' instead.")] [Export ("documentBrowser:didPickDocumentURLs:")] void DidPickDocumentUrls (UIDocumentBrowserViewController controller, NSUrl [] documentUrls); + /// The controller that made the request. + /// The handler to run after the document is created. + /// Developers may implement this method to respond to a request to create a new document. + /// To be added. [Export ("documentBrowser:didRequestDocumentCreationWithHandler:")] void DidRequestDocumentCreation (UIDocumentBrowserViewController controller, Action importHandler); + /// The controller that imported the document. + /// The original document URL. + /// The imported document's URL. + /// Developers may implement this method to respond after a document is imported. + /// To be added. [Export ("documentBrowser:didImportDocumentAtURL:toDestinationURL:")] void DidImportDocument (UIDocumentBrowserViewController controller, NSUrl sourceUrl, NSUrl destinationUrl); + /// The controller that failed to import the document. + /// The document's original URL. + /// + /// The error that occurred. + /// This parameter can be . + /// + /// Developers may implement this method to respond when the application fails to import a document. + /// To be added. [Export ("documentBrowser:failedToImportDocumentAtURL:error:")] void FailedToImportDocument (UIDocumentBrowserViewController controller, NSUrl documentUrl, [NullAllowed] NSError error); + /// The controller that is making the request. + /// URLs to the documents to share. + /// Returns an array of custom application activities for an activity view. + /// To be added. + /// To be added. [Export ("documentBrowser:applicationActivitiesForDocumentURLs:")] UIActivity [] GetApplicationActivities (UIDocumentBrowserViewController controller, NSUrl [] documentUrls); + /// The controller that is about to present the activity. + /// The activity that will be presented. + /// Developers may implement this method to prepare for the display of an activity view. + /// To be added. [Export ("documentBrowser:willPresentActivityViewController:")] void WillPresent (UIDocumentBrowserViewController controller, UIActivityViewController activityViewController); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [MacCatalyst (13, 1)] [Export ("documentBrowser:didPickDocumentsAtURLs:")] void DidPickDocumentsAtUrls (UIDocumentBrowserViewController controller, NSUrl [] documentUrls); @@ -25671,6 +27456,9 @@ interface IUIPencilInteractionDelegate { } [BaseType (typeof (NSObject))] interface UIPencilInteractionDelegate { + /// To be added. + /// To be added. + /// To be added. [Deprecated (PlatformName.iOS, 17, 5, message: "Use 'DidReceiveTap' instead.")] [Deprecated (PlatformName.MacCatalyst, 17, 5, message: "Use 'DidReceiveTap' instead.")] [Export ("pencilInteractionDidTap:")] diff --git a/src/usernotificationsui.cs b/src/usernotificationsui.cs index d8aa851cc9ca..efa6d949bd12 100644 --- a/src/usernotificationsui.cs +++ b/src/usernotificationsui.cs @@ -59,6 +59,10 @@ interface UNNotificationContentExtension { [Export ("didReceiveNotification:")] void DidReceiveNotification (UNNotification notification); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Export ("didReceiveNotificationResponse:completionHandler:")] void DidReceiveNotificationResponse (UNNotificationResponse response, Action completion); @@ -71,9 +75,13 @@ interface UNNotificationContentExtension { [Export ("mediaPlayPauseButtonTintColor", ArgumentSemantic.Copy)] UIColor MediaPlayPauseButtonTintColor { get; } + /// Method that is called when the user presses the play button. + /// To be added. [Export ("mediaPlay")] void PlayMedia (); + /// Method that is called when the user presses the pause button. + /// To be added. [Export ("mediaPause")] void PauseMedia (); } diff --git a/src/webkit.cs b/src/webkit.cs index eca99caaf8bb..57595de1fbe9 100644 --- a/src/webkit.cs +++ b/src/webkit.cs @@ -4592,6 +4592,9 @@ interface IWKHttpCookieStoreObserver { } [MacCatalyst (13, 1)] [Protocol (Name = "WKHTTPCookieStoreObserver")] interface WKHttpCookieStoreObserver { + /// The store that changed. + /// Method that is called when a cookie changes in the cookie store. + /// To be added. [Export ("cookiesDidChangeInCookieStore:")] void CookiesDidChangeInCookieStore (WKHttpCookieStore cookieStore); } @@ -4684,9 +4687,19 @@ interface WKNavigationAction { [BaseType (typeof (NSObject))] interface WKNavigationDelegate { + /// To be added. + /// To be added. + /// To be added. + /// Assigns an action to be taken after the specified has been either canceled or allowed. + /// To be added. [Export ("webView:decidePolicyForNavigationAction:decisionHandler:")] void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, Action decisionHandler); + /// To be added. + /// To be added. + /// To be added. + /// Assigns an action to be taken after the specified has been either canceled or allowed. + /// To be added. [Export ("webView:decidePolicyForNavigationResponse:decisionHandler:")] void DecidePolicy (WKWebView webView, WKNavigationResponse navigationResponse, Action decisionHandler); @@ -4695,27 +4708,61 @@ interface WKNavigationDelegate { [Export ("webView:decidePolicyForNavigationAction:preferences:decisionHandler:")] void DecidePolicy (WKWebView webView, WKNavigationAction navigationAction, WKWebpagePreferences preferences, Action decisionHandler); + /// To be added. + /// To be added. + /// Method that is called when data begins to load. + /// To be added. [Export ("webView:didStartProvisionalNavigation:")] void DidStartProvisionalNavigation (WKWebView webView, WKNavigation navigation); + /// To be added. + /// To be added. + /// Method that is called when a server redirect is received. + /// To be added. [Export ("webView:didReceiveServerRedirectForProvisionalNavigation:")] void DidReceiveServerRedirectForProvisionalNavigation (WKWebView webView, WKNavigation navigation); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called when a committed navigation fails after data has begun to load. + /// To be added. [Export ("webView:didFailProvisionalNavigation:withError:")] void DidFailProvisionalNavigation (WKWebView webView, WKNavigation navigation, NSError error); + /// To be added. + /// To be added. + /// Method that is called when content begins to load. + /// To be added. [Export ("webView:didCommitNavigation:")] void DidCommitNavigation (WKWebView webView, WKNavigation navigation); + /// To be added. + /// To be added. + /// Method that is called when all the data is loaded. + /// To be added. [Export ("webView:didFinishNavigation:")] void DidFinishNavigation (WKWebView webView, WKNavigation navigation); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called when a committed navigation fails. + /// To be added. [Export ("webView:didFailNavigation:withError:")] void DidFailNavigation (WKWebView webView, WKNavigation navigation, NSError error); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called when an authentication challenge is issued. + /// To be added. [Export ("webView:didReceiveAuthenticationChallenge:completionHandler:")] void DidReceiveAuthenticationChallenge (WKWebView webView, NSUrlAuthenticationChallenge challenge, Action completionHandler); + /// To be added. + /// Method that is called when a web view's content is terminated. + /// To be added. [MacCatalyst (13, 1)] [Export ("webViewWebContentProcessDidTerminate:")] void ContentProcessDidTerminate (WKWebView webView); @@ -5193,18 +5240,47 @@ interface WKOpenPanelParameters { [BaseType (typeof (NSObject))] interface WKUIDelegate { + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Creates and configures a new . + /// To be added. + /// To be added. [Export ("webView:createWebViewWithConfiguration:forNavigationAction:windowFeatures:")] [return: NullAllowed] WKWebView CreateWebView (WKWebView webView, WKWebViewConfiguration configuration, WKNavigationAction navigationAction, WKWindowFeatures windowFeatures); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Shows a JavaScript alert to the user. + /// To be added. [Export ("webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:")] void RunJavaScriptAlertPanel (WKWebView webView, string message, WKFrameInfo frame, Action completionHandler); + /// To be added. + /// To be added. + /// To be added. + /// To be added. + /// Shows a JavaScript confirmation dialog to the user. + /// To be added. [Export ("webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:completionHandler:")] void RunJavaScriptConfirmPanel (WKWebView webView, string message, WKFrameInfo frame, Action completionHandler); #if !XAMCORE_5_0 + /// To be added. + /// To be added. + /// + /// To be added. + /// This parameter can be . + /// + /// To be added. + /// To be added. + /// Shows a JavaScript text input box to the user. + /// To be added. [Obsolete ("It's not possible to call the completion handler with a null value using this method. Please see https://github.com/xamarin/xamarin-macios/issues/15728 for a workaround.")] [Export ("webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:completionHandler:")] void RunJavaScriptTextInputPanel (WKWebView webView, string prompt, [NullAllowed] string defaultText, @@ -5221,10 +5297,18 @@ void RunJavaScriptTextInputPanel (WKWebView webView, string prompt, [NullAllowed [Export ("webView:runOpenPanelWithParameters:initiatedByFrame:completionHandler:")] void RunOpenPanel (WKWebView webView, WKOpenPanelParameters parameters, WKFrameInfo frame, Action completionHandler); + /// To be added. + /// Method that is called when closes. + /// To be added. [MacCatalyst (13, 1)] [Export ("webViewDidClose:")] void DidClose (WKWebView webView); + /// To be added. + /// To be added. + /// Method that is called to find out if the element should provide a preview. + /// To be added. + /// To be added. [NoMac] [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'SetContextMenuConfiguration' instead.")] [MacCatalyst (13, 1)] @@ -5232,6 +5316,12 @@ void RunJavaScriptTextInputPanel (WKWebView webView, string prompt, [NullAllowed [Export ("webView:shouldPreviewElement:")] bool ShouldPreviewElement (WKWebView webView, WKPreviewElementInfo elementInfo); + /// To be added. + /// To be added. + /// To be added. + /// Method that is called when the user peeks at content. + /// To be added. + /// To be added. [NoMac] [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'SetContextMenuConfiguration' instead.")] [Deprecated (PlatformName.MacCatalyst, 13, 1, message: "Use 'SetContextMenuConfiguration' instead.")] @@ -5240,6 +5330,10 @@ void RunJavaScriptTextInputPanel (WKWebView webView, string prompt, [NullAllowed [return: NullAllowed] UIViewController GetPreviewingViewController (WKWebView webView, WKPreviewElementInfo elementInfo, IWKPreviewActionItem [] previewActions); + /// To be added. + /// To be added. + /// Method that is called to respond when the user pops a preview action. + /// To be added. [NoMac] [Deprecated (PlatformName.iOS, 13, 0, message: "Use 'WillCommitContextMenu' instead.")] [MacCatalyst (13, 1)] diff --git a/src/xkit.cs b/src/xkit.cs index 95dc60c01fab..c823fe570ba5 100644 --- a/src/xkit.cs +++ b/src/xkit.cs @@ -3368,6 +3368,9 @@ interface INSTextStorageDelegate { } [BaseType (typeof (NSObject))] [Protocol] partial interface NSTextStorageDelegate { + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoTV] [NoMacCatalyst] @@ -3375,6 +3378,9 @@ partial interface NSTextStorageDelegate { [Export ("textStorageWillProcessEditing:")] void TextStorageWillProcessEditing (NSNotification notification); + /// To be added. + /// To be added. + /// To be added. [NoiOS] [NoTV] [NoMacCatalyst] @@ -4891,6 +4897,10 @@ interface NSTextList : NSCoding, NSCopying, NSSecureCoding { [Wrap ("this (format, NSTextListOptions.None)")] NativeHandle Constructor (string format); + /// To be added. + /// To be added. + /// To be added. + /// To be added. [Wrap ("this (format.GetConstant(), mask)")] NativeHandle Constructor (NSTextListMarkerFormats format, NSTextListOptions mask); diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt index ca7348e7eb02..7502cb4af97b 100644 --- a/tests/cecil-tests/Documentation.KnownFailures.txt +++ b/tests/cecil-tests/Documentation.KnownFailures.txt @@ -8337,8 +8337,6 @@ M:AppKit.INSTextSelectionDataSource.GetOffsetFromLocation(AppKit.INSTextLocation M:AppKit.INSTextSelectionDataSource.GetTextLayoutOrientation(AppKit.INSTextLocation) M:AppKit.INSTextSelectionDataSource.GetTextRange(AppKit.NSTextSelectionGranularity,AppKit.INSTextLocation) M:AppKit.INSTextStorageDelegate.DidProcessEditing(AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr) -M:AppKit.INSTextStorageDelegate.TextStorageDidProcessEditing(Foundation.NSNotification) -M:AppKit.INSTextStorageDelegate.TextStorageWillProcessEditing(Foundation.NSNotification) M:AppKit.INSTextStorageDelegate.WillProcessEditing(AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr) M:AppKit.INSTextStorageObserving.PerformEditingTransaction(AppKit.NSTextStorage,System.Action) M:AppKit.INSTextStorageObserving.ProcessEditing(AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr,Foundation.NSRange) @@ -8394,17 +8392,10 @@ 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.AllowedItemIdentifiers(AppKit.NSToolbar) -M:AppKit.INSToolbarDelegate.DefaultItemIdentifiers(AppKit.NSToolbar) -M:AppKit.INSToolbarDelegate.DidRemoveItem(Foundation.NSNotification) M:AppKit.INSToolbarDelegate.GetItemCanBeInsertedAt(AppKit.NSToolbar,System.String,System.IntPtr) M:AppKit.INSToolbarDelegate.GetToolbarImmovableItemIdentifiers(AppKit.NSToolbar) -M:AppKit.INSToolbarDelegate.SelectableItemIdentifiers(AppKit.NSToolbar) -M:AppKit.INSToolbarDelegate.WillAddItem(Foundation.NSNotification) -M:AppKit.INSToolbarDelegate.WillInsertItem(AppKit.NSToolbar,System.String,System.Boolean) M:AppKit.INSToolbarItemValidation.ValidateToolbarItem(AppKit.NSToolbarItem) M:AppKit.INSToolTipOwner.GetStringForToolTip(AppKit.NSView,System.IntPtr,CoreGraphics.CGPoint,System.IntPtr) -M:AppKit.INSTouchBarDelegate.MakeItem(AppKit.NSTouchBar,System.String) M:AppKit.INSUserActivityRestoring.RestoreUserActivityState(Foundation.NSUserActivity) M:AppKit.INSUserInterfaceCompression.Compress(AppKit.NSUserInterfaceCompressionOptions[]) M:AppKit.INSUserInterfaceCompression.GetMinimumSize(AppKit.NSUserInterfaceCompressionOptions[]) @@ -8823,13 +8814,6 @@ M:AppKit.NSDirectionalEdgeInsets.op_Equality(AppKit.NSDirectionalEdgeInsets,AppK 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.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) -M:AppKit.NSDocument.PresentedSubitemAppeared(Foundation.NSUrl) -M:AppKit.NSDocument.PresentedSubitemChanged(Foundation.NSUrl) -M:AppKit.NSDocument.PresentedSubitemGainedVersion(Foundation.NSUrl,Foundation.NSFileVersion) -M:AppKit.NSDocument.PresentedSubitemLostVersion(Foundation.NSUrl,Foundation.NSFileVersion) -M:AppKit.NSDocument.PresentedSubitemMoved(Foundation.NSUrl,Foundation.NSUrl) -M:AppKit.NSDocument.PresentedSubitemResolvedConflictVersion(Foundation.NSUrl,Foundation.NSFileVersion) M:AppKit.NSDocument.StopBrowsingVersionsAsync M:AppKit.NSDraggingDestination_Extensions.ConcludeDragOperation(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo) M:AppKit.NSDraggingDestination_Extensions.DraggingEnded(AppKit.INSDraggingDestination,AppKit.INSDraggingInfo) @@ -9405,7 +9389,6 @@ M:AppKit.NSStringDrawing_NSString.DrawInRect(Foundation.NSString,CoreGraphics.CG 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.NSTableColumn.#ctor(System.String) M:AppKit.NSTableView.add_ColumnDidMove(System.EventHandler) M:AppKit.NSTableView.add_ColumnDidResize(System.EventHandler) M:AppKit.NSTableView.add_DidAddRowView(System.EventHandler{AppKit.NSTableViewRowEventArgs}) @@ -9608,7 +9591,6 @@ M:AppKit.NSTextLayoutManager.Dispose(System.Boolean) M:AppKit.NSTextLayoutManagerDelegate_Extensions.GetRenderingAttributes(AppKit.INSTextLayoutManagerDelegate,AppKit.NSTextLayoutManager,Foundation.NSObject,AppKit.INSTextLocation,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:AppKit.NSTextLayoutManagerDelegate_Extensions.GetTextLayoutFragment(AppKit.INSTextLayoutManagerDelegate,AppKit.NSTextLayoutManager,AppKit.INSTextLocation,AppKit.NSTextElement) M:AppKit.NSTextLayoutManagerDelegate_Extensions.ShouldBreakLineBeforeLocation(AppKit.INSTextLayoutManagerDelegate,AppKit.NSTextLayoutManager,AppKit.INSTextLocation,System.Boolean) -M:AppKit.NSTextList.#ctor(AppKit.NSTextListMarkerFormats,AppKit.NSTextListOptions) M:AppKit.NSTextList.#ctor(AppKit.NSTextListMarkerFormats) M:AppKit.NSTextList.#ctor(System.String) M:AppKit.NSTextList.Copy(Foundation.NSZone) @@ -9626,8 +9608,6 @@ M:AppKit.NSTextStorage.remove_TextStorageDidProcessEditing(System.EventHandler) M:AppKit.NSTextStorage.remove_TextStorageWillProcessEditing(System.EventHandler) M:AppKit.NSTextStorage.remove_WillProcessEditing(System.EventHandler{AppKit.NSTextStorageEventArgs}) M:AppKit.NSTextStorageDelegate_Extensions.DidProcessEditing(AppKit.INSTextStorageDelegate,AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr) -M:AppKit.NSTextStorageDelegate_Extensions.TextStorageDidProcessEditing(AppKit.INSTextStorageDelegate,Foundation.NSNotification) -M:AppKit.NSTextStorageDelegate_Extensions.TextStorageWillProcessEditing(AppKit.INSTextStorageDelegate,Foundation.NSNotification) M:AppKit.NSTextStorageDelegate_Extensions.WillProcessEditing(AppKit.INSTextStorageDelegate,AppKit.NSTextStorage,AppKit.NSTextStorageEditActions,Foundation.NSRange,System.IntPtr) M:AppKit.NSTextTab.Copy(Foundation.NSZone) M:AppKit.NSTextView_SharingService.OrderFrontSharingServicePicker(AppKit.NSTextView,Foundation.NSObject) @@ -9706,14 +9686,8 @@ M:AppKit.NSToolbar.add_WillAddItem(System.EventHandler) M:AppKit.NSToolbar.Dispose(System.Boolean) M:AppKit.NSToolbar.remove_DidRemoveItem(System.EventHandler) M:AppKit.NSToolbar.remove_WillAddItem(System.EventHandler) -M:AppKit.NSToolbarDelegate_Extensions.AllowedItemIdentifiers(AppKit.INSToolbarDelegate,AppKit.NSToolbar) -M:AppKit.NSToolbarDelegate_Extensions.DefaultItemIdentifiers(AppKit.INSToolbarDelegate,AppKit.NSToolbar) -M:AppKit.NSToolbarDelegate_Extensions.DidRemoveItem(AppKit.INSToolbarDelegate,Foundation.NSNotification) M:AppKit.NSToolbarDelegate_Extensions.GetItemCanBeInsertedAt(AppKit.INSToolbarDelegate,AppKit.NSToolbar,System.String,System.IntPtr) M:AppKit.NSToolbarDelegate_Extensions.GetToolbarImmovableItemIdentifiers(AppKit.INSToolbarDelegate,AppKit.NSToolbar) -M:AppKit.NSToolbarDelegate_Extensions.SelectableItemIdentifiers(AppKit.INSToolbarDelegate,AppKit.NSToolbar) -M:AppKit.NSToolbarDelegate_Extensions.WillAddItem(AppKit.INSToolbarDelegate,Foundation.NSNotification) -M:AppKit.NSToolbarDelegate_Extensions.WillInsertItem(AppKit.INSToolbarDelegate,AppKit.NSToolbar,System.String,System.Boolean) M:AppKit.NSToolbarItem.add_Activated(System.EventHandler) M:AppKit.NSToolbarItem.Copy(Foundation.NSZone) M:AppKit.NSToolbarItem.Dispose(System.Boolean) @@ -9725,7 +9699,6 @@ 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.NSTouchBarDelegate_Extensions.MakeItem(AppKit.INSTouchBarDelegate,AppKit.NSTouchBar,System.String) M:AppKit.NSTrackingArea.Copy(Foundation.NSZone) M:AppKit.NSUserInterfaceCompressionOptions.Copy(Foundation.NSZone) M:AppKit.NSUserInterfaceItemSearching_Extensions.PerformAction(AppKit.INSUserInterfaceItemSearching,Foundation.NSObject) @@ -9897,17 +9870,6 @@ M:ARKit.ARReferenceImage.Copy(Foundation.NSZone) M:ARKit.ARReferenceImage.ValidateAsync M:ARKit.ARSCNView.ARSCNViewAppearance.#ctor(System.IntPtr) M:ARKit.ARSCNView.Dispose(System.Boolean) -M:ARKit.ARSCNViewDelegate_Extensions.DidAddNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor) -M:ARKit.ARSCNViewDelegate_Extensions.DidRemoveNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor) -M:ARKit.ARSCNViewDelegate_Extensions.DidUpdateNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor) -M:ARKit.ARSCNViewDelegate_Extensions.GetNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,ARKit.ARAnchor) -M:ARKit.ARSCNViewDelegate_Extensions.WillUpdateNode(ARKit.IARSCNViewDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor) -M:ARKit.ARSCNViewDelegate.DidApplyAnimations(SceneKit.ISCNSceneRenderer,System.Double) -M:ARKit.ARSCNViewDelegate.DidApplyConstraints(SceneKit.ISCNSceneRenderer,System.Double) -M:ARKit.ARSCNViewDelegate.DidRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double) -M:ARKit.ARSCNViewDelegate.DidSimulatePhysics(SceneKit.ISCNSceneRenderer,System.Double) -M:ARKit.ARSCNViewDelegate.Update(SceneKit.ISCNSceneRenderer,System.Double) -M:ARKit.ARSCNViewDelegate.WillRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double) M:ARKit.ARSession.CaptureHighResolutionFrameAsync M:ARKit.ARSession.CreateReferenceObjectAsync(CoreGraphics.NMatrix4,CoreGraphics.NVector3,CoreGraphics.NVector3) M:ARKit.ARSession.Dispose(System.Boolean) @@ -9915,18 +9877,8 @@ M:ARKit.ARSession.GetCurrentWorldMapAsync M:ARKit.ARSession.GetGeoLocationAsync(CoreGraphics.NVector3) M:ARKit.ARSession.TrackedRaycastAsync(ARKit.ARRaycastQuery,ARKit.ARTrackedRaycast@) M:ARKit.ARSession.TrackedRaycastAsync(ARKit.ARRaycastQuery) -M:ARKit.ARSessionDelegate_Extensions.DidAddAnchors(ARKit.IARSessionDelegate,ARKit.ARSession,ARKit.ARAnchor[]) -M:ARKit.ARSessionDelegate_Extensions.DidRemoveAnchors(ARKit.IARSessionDelegate,ARKit.ARSession,ARKit.ARAnchor[]) -M:ARKit.ARSessionDelegate_Extensions.DidUpdateAnchors(ARKit.IARSessionDelegate,ARKit.ARSession,ARKit.ARAnchor[]) -M:ARKit.ARSessionDelegate_Extensions.DidUpdateFrame(ARKit.IARSessionDelegate,ARKit.ARSession,ARKit.ARFrame) -M:ARKit.ARSessionObserver_Extensions.CameraDidChangeTrackingState(ARKit.IARSessionObserver,ARKit.ARSession,ARKit.ARCamera) M:ARKit.ARSessionObserver_Extensions.DidChangeGeoTrackingStatus(ARKit.IARSessionObserver,ARKit.ARSession,ARKit.ARGeoTrackingStatus) -M:ARKit.ARSessionObserver_Extensions.DidFail(ARKit.IARSessionObserver,ARKit.ARSession,Foundation.NSError) -M:ARKit.ARSessionObserver_Extensions.DidOutputAudioSampleBuffer(ARKit.IARSessionObserver,ARKit.ARSession,CoreMedia.CMSampleBuffer) M:ARKit.ARSessionObserver_Extensions.DidOutputCollaborationData(ARKit.IARSessionObserver,ARKit.ARSession,ARKit.ARCollaborationData) -M:ARKit.ARSessionObserver_Extensions.InterruptionEnded(ARKit.IARSessionObserver,ARKit.ARSession) -M:ARKit.ARSessionObserver_Extensions.ShouldAttemptRelocalization(ARKit.IARSessionObserver,ARKit.ARSession) -M:ARKit.ARSessionObserver_Extensions.WasInterrupted(ARKit.IARSessionObserver,ARKit.ARSession) M:ARKit.ARSkeleton.CreateJointName(Foundation.NSString) M:ARKit.ARSkeleton2D.GetLandmarkPoint(ARKit.ARSkeletonJointName) M:ARKit.ARSkeleton3D.GetLocalTransform(ARKit.ARSkeletonJointName) @@ -9934,40 +9886,14 @@ 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.ARSKViewDelegate_Extensions.DidAddNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor) -M:ARKit.ARSKViewDelegate_Extensions.DidRemoveNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor) -M:ARKit.ARSKViewDelegate_Extensions.DidUpdateNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor) -M:ARKit.ARSKViewDelegate_Extensions.GetNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,ARKit.ARAnchor) -M:ARKit.ARSKViewDelegate_Extensions.WillUpdateNode(ARKit.IARSKViewDelegate,ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor) -M:ARKit.ARSKViewDelegate.ShouldRender(SpriteKit.SKView,System.Double) 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) M:ARKit.IARCoachingOverlayViewDelegate.WillActivate(ARKit.ARCoachingOverlayView) -M:ARKit.IARSCNViewDelegate.DidAddNode(SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor) -M:ARKit.IARSCNViewDelegate.DidRemoveNode(SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor) -M:ARKit.IARSCNViewDelegate.DidUpdateNode(SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor) -M:ARKit.IARSCNViewDelegate.GetNode(SceneKit.ISCNSceneRenderer,ARKit.ARAnchor) -M:ARKit.IARSCNViewDelegate.WillUpdateNode(SceneKit.ISCNSceneRenderer,SceneKit.SCNNode,ARKit.ARAnchor) -M:ARKit.IARSessionDelegate.DidAddAnchors(ARKit.ARSession,ARKit.ARAnchor[]) -M:ARKit.IARSessionDelegate.DidRemoveAnchors(ARKit.ARSession,ARKit.ARAnchor[]) -M:ARKit.IARSessionDelegate.DidUpdateAnchors(ARKit.ARSession,ARKit.ARAnchor[]) -M:ARKit.IARSessionDelegate.DidUpdateFrame(ARKit.ARSession,ARKit.ARFrame) -M:ARKit.IARSessionObserver.CameraDidChangeTrackingState(ARKit.ARSession,ARKit.ARCamera) M:ARKit.IARSessionObserver.DidChangeGeoTrackingStatus(ARKit.ARSession,ARKit.ARGeoTrackingStatus) -M:ARKit.IARSessionObserver.DidFail(ARKit.ARSession,Foundation.NSError) -M:ARKit.IARSessionObserver.DidOutputAudioSampleBuffer(ARKit.ARSession,CoreMedia.CMSampleBuffer) M:ARKit.IARSessionObserver.DidOutputCollaborationData(ARKit.ARSession,ARKit.ARCollaborationData) -M:ARKit.IARSessionObserver.InterruptionEnded(ARKit.ARSession) -M:ARKit.IARSessionObserver.ShouldAttemptRelocalization(ARKit.ARSession) -M:ARKit.IARSessionObserver.WasInterrupted(ARKit.ARSession) -M:ARKit.IARSKViewDelegate.DidAddNode(ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor) -M:ARKit.IARSKViewDelegate.DidRemoveNode(ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor) -M:ARKit.IARSKViewDelegate.DidUpdateNode(ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor) -M:ARKit.IARSKViewDelegate.GetNode(ARKit.ARSKView,ARKit.ARAnchor) -M:ARKit.IARSKViewDelegate.WillUpdateNode(ARKit.ARSKView,SpriteKit.SKNode,ARKit.ARAnchor) M:AssetsLibrary.ALAsset.#ctor(ObjCRuntime.NativeHandle) M:AssetsLibrary.ALAssetRepresentation.#ctor(ObjCRuntime.NativeHandle) M:AssetsLibrary.ALAssetRepresentation.GetBytes(System.IntPtr,System.Int64,System.UIntPtr,Foundation.NSError@) @@ -10345,25 +10271,11 @@ M:AVFoundation.AVAsset.LoadTrackAsync(System.Int32) M:AVFoundation.AVAsset.LoadTracksWithMediaTypeAsync(System.String) M:AVFoundation.AVAsset.LoadTrackWithMediaCharacteristicsAsync(System.String) M:AVFoundation.AVAsset.LoadValuesTaskAsync(System.String[]) -M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidCompleteForMediaSelection(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,AVFoundation.AVMediaSelection) -M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidFinishDownloadingToUrl(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl) -M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidLoadTimeRange(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,CoreMedia.CMTimeRange,Foundation.NSValue[],CoreMedia.CMTimeRange,AVFoundation.AVMediaSelection) -M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidLoadTimeRange(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,CoreMedia.CMTimeRange,Foundation.NSValue[],CoreMedia.CMTimeRange) -M:AVFoundation.AVAssetDownloadDelegate_Extensions.DidResolveMediaSelection(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,AVFoundation.AVMediaSelection) -M:AVFoundation.AVAssetDownloadDelegate_Extensions.WillDownloadToUrl(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,Foundation.NSUrl) M:AVFoundation.AVAssetDownloadDelegate_Extensions.WillDownloadVariants(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,AVFoundation.AVAssetVariant[]) M:AVFoundation.AVAssetDownloadDelegate_Extensions.WilllDownloadToUrl(AVFoundation.IAVAssetDownloadDelegate,Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl) -M:AVFoundation.AVAssetDownloadDelegate.DidCompleteWithError(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSError) M:AVFoundation.AVAssetDownloadDelegate.DidCreateTask(Foundation.NSUrlSession,Foundation.NSUrlSessionTask) -M:AVFoundation.AVAssetDownloadDelegate.DidFinishCollectingMetrics(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlSessionTaskMetrics) -M:AVFoundation.AVAssetDownloadDelegate.DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential}) M:AVFoundation.AVAssetDownloadDelegate.DidReceiveInformationalResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse) -M:AVFoundation.AVAssetDownloadDelegate.DidSendBodyData(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Int64,System.Int64) -M:AVFoundation.AVAssetDownloadDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action{Foundation.NSInputStream}) M:AVFoundation.AVAssetDownloadDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action{Foundation.NSInputStream}) -M:AVFoundation.AVAssetDownloadDelegate.TaskIsWaitingForConnectivity(Foundation.NSUrlSession,Foundation.NSUrlSessionTask) -M:AVFoundation.AVAssetDownloadDelegate.WillBeginDelayedRequest(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlSessionDelayedRequestDisposition,Foundation.NSUrlRequest}) -M:AVFoundation.AVAssetDownloadDelegate.WillPerformHttpRedirection(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlRequest}) M:AVFoundation.AVAssetExportSession.DetermineCompatibleFileTypesAsync M:AVFoundation.AVAssetExportSession.EstimateMaximumDurationAsync M:AVFoundation.AVAssetExportSession.EstimateOutputFileLengthAsync @@ -10373,11 +10285,7 @@ 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.DidCancelAuthenticationChallenge(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,Foundation.NSUrlAuthenticationChallenge) -M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.DidCancelLoadingRequest(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest) M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.ShouldWaitForLoadingOfRequestedResource(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest) -M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.ShouldWaitForRenewalOfRequestedResource(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceRenewalRequest) -M:AVFoundation.AVAssetResourceLoaderDelegate_Extensions.ShouldWaitForResponseToAuthenticationChallenge(AVFoundation.IAVAssetResourceLoaderDelegate,AVFoundation.AVAssetResourceLoader,Foundation.NSUrlAuthenticationChallenge) M:AVFoundation.AVAssetTrack.Dispose(System.Boolean) M:AVFoundation.AVAssetTrack.LoadAssociatedTracksAsync(System.String) M:AVFoundation.AVAssetTrack.LoadMetadataAsync(System.String) @@ -10522,44 +10430,22 @@ M:AVFoundation.AVCaptionFormatConformer.#ctor(AVFoundation.AVCaptionSettings) M:AVFoundation.AVCaptionFormatConformer.CreateFromSettings(AVFoundation.AVCaptionSettings) M:AVFoundation.AVCaptionPoint.Create(AVFoundation.AVCaptionDimension,AVFoundation.AVCaptionDimension) M:AVFoundation.AVCaptionSize.Create(AVFoundation.AVCaptionDimension,AVFoundation.AVCaptionDimension) -M:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegate_Extensions.DidOutputSampleBuffer(AVFoundation.IAVCaptureAudioDataOutputSampleBufferDelegate,AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection) -M:AVFoundation.AVCaptureDepthDataOutputDelegate_Extensions.DidDropDepthData(AVFoundation.IAVCaptureDepthDataOutputDelegate,AVFoundation.AVCaptureDepthDataOutput,AVFoundation.AVDepthData,CoreMedia.CMTime,AVFoundation.AVCaptureConnection,AVFoundation.AVCaptureOutputDataDroppedReason) -M:AVFoundation.AVCaptureDepthDataOutputDelegate_Extensions.DidOutputDepthData(AVFoundation.IAVCaptureDepthDataOutputDelegate,AVFoundation.AVCaptureDepthDataOutput,AVFoundation.AVDepthData,CoreMedia.CMTime,AVFoundation.AVCaptureConnection) M:AVFoundation.AVCaptureDeskViewApplication.PresentAsync M:AVFoundation.AVCaptureDeskViewApplication.PresentAsync(AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration) 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.DidPauseRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[]) -M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.DidResumeRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[]) M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.DidStartRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,CoreMedia.CMTime,Foundation.NSObject[]) -M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.DidStartRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,Foundation.NSObject[]) M:AVFoundation.AVCaptureFileOutputRecordingDelegate_Extensions.WillFinishRecording(AVFoundation.IAVCaptureFileOutputRecordingDelegate,AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[],Foundation.NSError) -M:AVFoundation.AVCaptureMetadataOutputObjectsDelegate_Extensions.DidOutputMetadataObjects(AVFoundation.IAVCaptureMetadataOutputObjectsDelegate,AVFoundation.AVCaptureMetadataOutput,AVFoundation.AVMetadataObject[],AVFoundation.AVCaptureConnection) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidCapturePhoto(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishCapture(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings,Foundation.NSError) M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishCapturingDeferredPhotoProxy(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureDeferredPhotoProxy,Foundation.NSError) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishProcessingLivePhotoMovie(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,Foundation.NSUrl,CoreMedia.CMTime,CoreMedia.CMTime,AVFoundation.AVCaptureResolvedPhotoSettings,Foundation.NSError) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishProcessingPhoto(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCapturePhoto,Foundation.NSError) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishProcessingPhoto(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,CoreMedia.CMSampleBuffer,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureResolvedPhotoSettings,AVFoundation.AVCaptureBracketedStillImageSettings,Foundation.NSError) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishProcessingRawPhoto(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,CoreMedia.CMSampleBuffer,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureResolvedPhotoSettings,AVFoundation.AVCaptureBracketedStillImageSettings,Foundation.NSError) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.DidFinishRecordingLivePhotoMovie(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,Foundation.NSUrl,AVFoundation.AVCaptureResolvedPhotoSettings) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.WillBeginCapture(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings) -M:AVFoundation.AVCapturePhotoCaptureDelegate_Extensions.WillCapturePhoto(AVFoundation.IAVCapturePhotoCaptureDelegate,AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings) M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementAppleProRawCompressionSettings(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr) -M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementDepthData(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto) -M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementEmbeddedThumbnail(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}@,AVFoundation.AVCapturePhoto) -M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementMetadata(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto) -M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementPortraitEffectsMatte(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,AVFoundation.AVCapturePhoto) M:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizer_Extensions.GetReplacementSemanticSegmentationMatte(AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer,Foundation.NSString,AVFoundation.AVCapturePhoto) M:AVFoundation.AVCapturePhotoOutput.Dispose(System.Boolean) M:AVFoundation.AVCapturePhotoOutputReadinessCoordinator.Dispose(System.Boolean) M:AVFoundation.AVCapturePhotoSettings.Dispose(System.Boolean) M:AVFoundation.AVCaptureStillImageOutput.CaptureStillImageTaskAsync(AVFoundation.AVCaptureConnection) M:AVFoundation.AVCaptureVideoDataOutput.GetRecommendedVideoSettings(AVFoundation.AVVideoCodecType,AVFoundation.AVFileTypes,Foundation.NSUrl) -M:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Extensions.DidDropSampleBuffer(AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate,AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection) -M:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Extensions.DidOutputSampleBuffer(AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate,AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection) M:AVFoundation.AVCaptureWhiteBalanceChromaticityValues.op_Equality(AVFoundation.AVCaptureWhiteBalanceChromaticityValues,AVFoundation.AVCaptureWhiteBalanceChromaticityValues) M:AVFoundation.AVCaptureWhiteBalanceChromaticityValues.op_Inequality(AVFoundation.AVCaptureWhiteBalanceChromaticityValues,AVFoundation.AVCaptureWhiteBalanceChromaticityValues) M:AVFoundation.AVCaptureWhiteBalanceGains.op_Equality(AVFoundation.AVCaptureWhiteBalanceGains,AVFoundation.AVCaptureWhiteBalanceGains) @@ -10584,16 +10470,8 @@ M:AVFoundation.AVContentKeySession_AVContentKeyRecipients.Add(AVFoundation.AVCon 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.DidChange(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession) -M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidFail(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest,Foundation.NSError) -M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidGenerateExpiredSessionReport(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession) M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidProvideContentKeyRequests(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest[],Foundation.NSData) -M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidProvidePersistableContentKeyRequest(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVPersistableContentKeyRequest) -M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidProvideRenewingContentKeyRequest(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest) -M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidSucceed(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest) -M:AVFoundation.AVContentKeySessionDelegate_Extensions.DidUpdate(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,Foundation.NSData,Foundation.NSObject) M:AVFoundation.AVContentKeySessionDelegate_Extensions.ExternalProtectionStatusDidChange(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKey) -M:AVFoundation.AVContentKeySessionDelegate_Extensions.ShouldRetryContentKeyRequest(AVFoundation.IAVContentKeySessionDelegate,AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest,System.String) M:AVFoundation.AVContentProposal.#ctor(CoreMedia.CMTime,System.String,UIKit.UIImage) M:AVFoundation.AVContentProposal.Dispose(System.Boolean) M:AVFoundation.AVDelegatingPlaybackCoordinator.Dispose(System.Boolean) @@ -10724,13 +10602,8 @@ M:AVFoundation.AVPlayerItem_AVPlayerItemProtectedContent.RequestContentAuthoriza M:AVFoundation.AVPlayerItem.Dispose(System.Boolean) M:AVFoundation.AVPlayerItemIntegratedTimeline.SeekToDateAsync(Foundation.NSDate) M:AVFoundation.AVPlayerItemIntegratedTimeline.SeekToTimeAsync(CoreMedia.CMTime,CoreMedia.CMTime,CoreMedia.CMTime) -M:AVFoundation.AVPlayerItemLegibleOutputPushDelegate_Extensions.DidOutputAttributedStrings(AVFoundation.IAVPlayerItemLegibleOutputPushDelegate,AVFoundation.AVPlayerItemLegibleOutput,Foundation.NSAttributedString[],CoreMedia.CMSampleBuffer[],CoreMedia.CMTime) M:AVFoundation.AVPlayerItemMetadataCollector.Dispose(System.Boolean) M:AVFoundation.AVPlayerItemMetadataOutput.Dispose(System.Boolean) -M:AVFoundation.AVPlayerItemMetadataOutputPushDelegate_Extensions.DidOutputTimedMetadataGroups(AVFoundation.IAVPlayerItemMetadataOutputPushDelegate,AVFoundation.AVPlayerItemMetadataOutput,AVFoundation.AVTimedMetadataGroup[],AVFoundation.AVPlayerItemTrack) -M:AVFoundation.AVPlayerItemOutputPullDelegate_Extensions.OutputMediaDataWillChange(AVFoundation.IAVPlayerItemOutputPullDelegate,AVFoundation.AVPlayerItemOutput) -M:AVFoundation.AVPlayerItemOutputPullDelegate_Extensions.OutputSequenceWasFlushed(AVFoundation.IAVPlayerItemOutputPullDelegate,AVFoundation.AVPlayerItemOutput) -M:AVFoundation.AVPlayerItemOutputPushDelegate_Extensions.OutputSequenceWasFlushed(AVFoundation.IAVPlayerItemOutputPushDelegate,AVFoundation.AVPlayerItemOutput) M:AVFoundation.AVPlayerItemRenderedLegibleOutput.Dispose(System.Boolean) M:AVFoundation.AVPlayerItemVideoOutput.Dispose(System.Boolean) M:AVFoundation.AVPlayerPlaybackCoordinator.Dispose(System.Boolean) @@ -10771,7 +10644,6 @@ M:AVFoundation.AVSpeechUtterance.#ctor(Foundation.NSAttributedString) M:AVFoundation.AVSpeechUtterance.FromSsmlRepresentation(System.String) M:AVFoundation.AVUrlAsset.FindCompatibleTrackAsync(AVFoundation.AVCompositionTrack) M:AVFoundation.AVVideoCompositing_Extensions.AnticipateRendering(AVFoundation.IAVVideoCompositing,AVFoundation.AVVideoCompositionRenderHint) -M:AVFoundation.AVVideoCompositing_Extensions.CancelAllPendingVideoCompositionRequests(AVFoundation.IAVVideoCompositing) M:AVFoundation.AVVideoCompositing_Extensions.GetCanConformColorOfSourceFrames(AVFoundation.IAVVideoCompositing) M:AVFoundation.AVVideoCompositing_Extensions.GetSupportsHdrSourceFrames(AVFoundation.IAVVideoCompositing) M:AVFoundation.AVVideoCompositing_Extensions.GetSupportsWideColorSourceFrames(AVFoundation.IAVVideoCompositing) @@ -10779,24 +10651,10 @@ M:AVFoundation.AVVideoCompositing_Extensions.PrerollForRendering(AVFoundation.IA M:AVFoundation.AVVideoComposition.CreateAsync(AVFoundation.AVAsset,AVFoundation.AVVideoCompositionCreateApplier) M:AVFoundation.AVVideoComposition.CreateAsync(AVFoundation.AVAsset) M:AVFoundation.AVVideoComposition.DetermineValidityAsync(AVFoundation.AVAsset,CoreMedia.CMTimeRange,AVFoundation.IAVVideoCompositionValidationHandling) -M:AVFoundation.AVVideoCompositionValidationHandling_Extensions.ShouldContinueValidatingAfterFindingEmptyTimeRange(AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoComposition,CoreMedia.CMTimeRange) -M:AVFoundation.AVVideoCompositionValidationHandling_Extensions.ShouldContinueValidatingAfterFindingInvalidTimeRangeInInstruction(AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoComposition,AVFoundation.AVVideoCompositionInstruction) -M:AVFoundation.AVVideoCompositionValidationHandling_Extensions.ShouldContinueValidatingAfterFindingInvalidTrackIDInInstruction(AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoComposition,AVFoundation.AVVideoCompositionInstruction,AVFoundation.AVVideoCompositionLayerInstruction,AVFoundation.AVAsset) -M:AVFoundation.AVVideoCompositionValidationHandling_Extensions.ShouldContinueValidatingAfterFindingInvalidValueForKey(AVFoundation.IAVVideoCompositionValidationHandling,AVFoundation.AVVideoComposition,System.String) -M:AVFoundation.IAVAssetDownloadDelegate.DidCompleteForMediaSelection(Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,AVFoundation.AVMediaSelection) -M:AVFoundation.IAVAssetDownloadDelegate.DidFinishDownloadingToUrl(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,Foundation.NSUrl) -M:AVFoundation.IAVAssetDownloadDelegate.DidLoadTimeRange(Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,CoreMedia.CMTimeRange,Foundation.NSValue[],CoreMedia.CMTimeRange,AVFoundation.AVMediaSelection) -M:AVFoundation.IAVAssetDownloadDelegate.DidLoadTimeRange(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,CoreMedia.CMTimeRange,Foundation.NSValue[],CoreMedia.CMTimeRange) -M:AVFoundation.IAVAssetDownloadDelegate.DidResolveMediaSelection(Foundation.NSUrlSession,AVFoundation.AVAssetDownloadTask,AVFoundation.AVMediaSelection) -M:AVFoundation.IAVAssetDownloadDelegate.WillDownloadToUrl(Foundation.NSUrlSession,AVFoundation.AVAggregateAssetDownloadTask,Foundation.NSUrl) 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.DidCancelAuthenticationChallenge(AVFoundation.AVAssetResourceLoader,Foundation.NSUrlAuthenticationChallenge) -M:AVFoundation.IAVAssetResourceLoaderDelegate.DidCancelLoadingRequest(AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest) M:AVFoundation.IAVAssetResourceLoaderDelegate.ShouldWaitForLoadingOfRequestedResource(AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceLoadingRequest) -M:AVFoundation.IAVAssetResourceLoaderDelegate.ShouldWaitForRenewalOfRequestedResource(AVFoundation.AVAssetResourceLoader,AVFoundation.AVAssetResourceRenewalRequest) -M:AVFoundation.IAVAssetResourceLoaderDelegate.ShouldWaitForResponseToAuthenticationChallenge(AVFoundation.AVAssetResourceLoader,Foundation.NSUrlAuthenticationChallenge) 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@) @@ -10805,66 +10663,31 @@ M:AVFoundation.IAVAudioMixing.DestinationForMixer(AVFoundation.AVAudioNode,Syste M:AVFoundation.IAVAudioPlayerDelegate.EndInterruption(AVFoundation.AVAudioPlayer,AVFoundation.AVAudioSessionInterruptionOptions) M:AVFoundation.IAVAudioRecorderDelegate.EndInterruption(AVFoundation.AVAudioRecorder,AVFoundation.AVAudioSessionInterruptionOptions) M:AVFoundation.IAVAudioSessionDelegate.EndInterruption(AVFoundation.AVAudioSessionInterruptionOptions) -M:AVFoundation.IAVCaptureAudioDataOutputSampleBufferDelegate.DidOutputSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection) M:AVFoundation.IAVCaptureDataOutputSynchronizerDelegate.DidOutputSynchronizedDataCollection(AVFoundation.AVCaptureDataOutputSynchronizer,AVFoundation.AVCaptureSynchronizedDataCollection) -M:AVFoundation.IAVCaptureDepthDataOutputDelegate.DidDropDepthData(AVFoundation.AVCaptureDepthDataOutput,AVFoundation.AVDepthData,CoreMedia.CMTime,AVFoundation.AVCaptureConnection,AVFoundation.AVCaptureOutputDataDroppedReason) -M:AVFoundation.IAVCaptureDepthDataOutputDelegate.DidOutputDepthData(AVFoundation.AVCaptureDepthDataOutput,AVFoundation.AVDepthData,CoreMedia.CMTime,AVFoundation.AVCaptureConnection) M:AVFoundation.IAVCaptureFileOutputDelegate.DidOutputSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection) M:AVFoundation.IAVCaptureFileOutputDelegate.ShouldProvideSampleAccurateRecordingStart(AVFoundation.AVCaptureOutput) -M:AVFoundation.IAVCaptureFileOutputRecordingDelegate.DidPauseRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[]) -M:AVFoundation.IAVCaptureFileOutputRecordingDelegate.DidResumeRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,AVFoundation.AVCaptureConnection[]) M:AVFoundation.IAVCaptureFileOutputRecordingDelegate.DidStartRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,CoreMedia.CMTime,Foundation.NSObject[]) -M:AVFoundation.IAVCaptureFileOutputRecordingDelegate.DidStartRecording(AVFoundation.AVCaptureFileOutput,Foundation.NSUrl,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.IAVCaptureMetadataOutputObjectsDelegate.DidOutputMetadataObjects(AVFoundation.AVCaptureMetadataOutput,AVFoundation.AVMetadataObject[],AVFoundation.AVCaptureConnection) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidCapturePhoto(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidFinishCapture(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings,Foundation.NSError) M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidFinishCapturingDeferredPhotoProxy(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureDeferredPhotoProxy,Foundation.NSError) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidFinishProcessingLivePhotoMovie(AVFoundation.AVCapturePhotoOutput,Foundation.NSUrl,CoreMedia.CMTime,CoreMedia.CMTime,AVFoundation.AVCaptureResolvedPhotoSettings,Foundation.NSError) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidFinishProcessingPhoto(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCapturePhoto,Foundation.NSError) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidFinishProcessingPhoto(AVFoundation.AVCapturePhotoOutput,CoreMedia.CMSampleBuffer,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureResolvedPhotoSettings,AVFoundation.AVCaptureBracketedStillImageSettings,Foundation.NSError) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidFinishProcessingRawPhoto(AVFoundation.AVCapturePhotoOutput,CoreMedia.CMSampleBuffer,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureResolvedPhotoSettings,AVFoundation.AVCaptureBracketedStillImageSettings,Foundation.NSError) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.DidFinishRecordingLivePhotoMovie(AVFoundation.AVCapturePhotoOutput,Foundation.NSUrl,AVFoundation.AVCaptureResolvedPhotoSettings) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.WillBeginCapture(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings) -M:AVFoundation.IAVCapturePhotoCaptureDelegate.WillCapturePhoto(AVFoundation.AVCapturePhotoOutput,AVFoundation.AVCaptureResolvedPhotoSettings) M:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer.GetReplacementAppleProRawCompressionSettings(AVFoundation.AVCapturePhoto,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},System.IntPtr) -M:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer.GetReplacementDepthData(AVFoundation.AVCapturePhoto) -M:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer.GetReplacementEmbeddedThumbnail(Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}@,AVFoundation.AVCapturePhoto) -M:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer.GetReplacementMetadata(AVFoundation.AVCapturePhoto) -M:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer.GetReplacementPortraitEffectsMatte(AVFoundation.AVCapturePhoto) M:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer.GetReplacementSemanticSegmentationMatte(Foundation.NSString,AVFoundation.AVCapturePhoto) M:AVFoundation.IAVCapturePhotoOutputReadinessCoordinatorDelegate.CaptureReadinessDidChange(AVFoundation.AVCapturePhotoOutputReadinessCoordinator,AVFoundation.AVCapturePhotoOutputCaptureReadiness) M:AVFoundation.IAVCaptureSessionControlsDelegate.DidBecomeActive(AVFoundation.AVCaptureSession) M:AVFoundation.IAVCaptureSessionControlsDelegate.DidBecomeInactive(AVFoundation.AVCaptureSession) M:AVFoundation.IAVCaptureSessionControlsDelegate.WillEnterFullscreenAppearance(AVFoundation.AVCaptureSession) M:AVFoundation.IAVCaptureSessionControlsDelegate.WillExitFullscreenAppearance(AVFoundation.AVCaptureSession) -M:AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate.DidDropSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection) -M:AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate.DidOutputSampleBuffer(AVFoundation.AVCaptureOutput,CoreMedia.CMSampleBuffer,AVFoundation.AVCaptureConnection) M:AVFoundation.IAVContentKeyRecipient.DidProvideContentKey(AVFoundation.AVContentKeySession,AVFoundation.AVContentKey) -M:AVFoundation.IAVContentKeySessionDelegate.DidChange(AVFoundation.AVContentKeySession) -M:AVFoundation.IAVContentKeySessionDelegate.DidFail(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest,Foundation.NSError) -M:AVFoundation.IAVContentKeySessionDelegate.DidGenerateExpiredSessionReport(AVFoundation.AVContentKeySession) M:AVFoundation.IAVContentKeySessionDelegate.DidProvideContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest) M:AVFoundation.IAVContentKeySessionDelegate.DidProvideContentKeyRequests(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest[],Foundation.NSData) -M:AVFoundation.IAVContentKeySessionDelegate.DidProvidePersistableContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVPersistableContentKeyRequest) -M:AVFoundation.IAVContentKeySessionDelegate.DidProvideRenewingContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest) -M:AVFoundation.IAVContentKeySessionDelegate.DidSucceed(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest) -M:AVFoundation.IAVContentKeySessionDelegate.DidUpdate(AVFoundation.AVContentKeySession,Foundation.NSData,Foundation.NSObject) M:AVFoundation.IAVContentKeySessionDelegate.ExternalProtectionStatusDidChange(AVFoundation.AVContentKeySession,AVFoundation.AVContentKey) -M:AVFoundation.IAVContentKeySessionDelegate.ShouldRetryContentKeyRequest(AVFoundation.AVContentKeySession,AVFoundation.AVContentKeyRequest,System.String) 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.IAVPlayerItemLegibleOutputPushDelegate.DidOutputAttributedStrings(AVFoundation.AVPlayerItemLegibleOutput,Foundation.NSAttributedString[],CoreMedia.CMSampleBuffer[],CoreMedia.CMTime) M:AVFoundation.IAVPlayerItemMetadataCollectorPushDelegate.DidCollectDateRange(AVFoundation.AVPlayerItemMetadataCollector,AVFoundation.AVDateRangeMetadataGroup[],Foundation.NSIndexSet,Foundation.NSIndexSet) -M:AVFoundation.IAVPlayerItemMetadataOutputPushDelegate.DidOutputTimedMetadataGroups(AVFoundation.AVPlayerItemMetadataOutput,AVFoundation.AVTimedMetadataGroup[],AVFoundation.AVPlayerItemTrack) -M:AVFoundation.IAVPlayerItemOutputPullDelegate.OutputMediaDataWillChange(AVFoundation.AVPlayerItemOutput) -M:AVFoundation.IAVPlayerItemOutputPullDelegate.OutputSequenceWasFlushed(AVFoundation.AVPlayerItemOutput) -M:AVFoundation.IAVPlayerItemOutputPushDelegate.OutputSequenceWasFlushed(AVFoundation.AVPlayerItemOutput) 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) @@ -10874,22 +10697,16 @@ M:AVFoundation.IAVQueuedSampleBufferRendering.RequestMediaData(CoreFoundation.Di M:AVFoundation.IAVQueuedSampleBufferRendering.StopRequestingMediaData M:AVFoundation.IAVSpeechSynthesizerDelegate.WillSpeakMarker(AVFoundation.AVSpeechSynthesizer,AVFoundation.AVSpeechSynthesisMarker,AVFoundation.AVSpeechUtterance) M:AVFoundation.IAVVideoCompositing.AnticipateRendering(AVFoundation.AVVideoCompositionRenderHint) -M:AVFoundation.IAVVideoCompositing.CancelAllPendingVideoCompositionRequests 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:AVFoundation.IAVVideoCompositionValidationHandling.ShouldContinueValidatingAfterFindingEmptyTimeRange(AVFoundation.AVVideoComposition,CoreMedia.CMTimeRange) -M:AVFoundation.IAVVideoCompositionValidationHandling.ShouldContinueValidatingAfterFindingInvalidTimeRangeInInstruction(AVFoundation.AVVideoComposition,AVFoundation.AVVideoCompositionInstruction) -M:AVFoundation.IAVVideoCompositionValidationHandling.ShouldContinueValidatingAfterFindingInvalidTrackIDInInstruction(AVFoundation.AVVideoComposition,AVFoundation.AVVideoCompositionInstruction,AVFoundation.AVVideoCompositionLayerInstruction,AVFoundation.AVAsset) -M:AVFoundation.IAVVideoCompositionValidationHandling.ShouldContinueValidatingAfterFindingInvalidValueForKey(AVFoundation.AVVideoComposition,System.String) 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.#ctor(CoreGraphics.CGRect) M:AVKit.AVCaptureView.Dispose(System.Boolean) M:AVKit.AVContentProposalViewController.#ctor(System.String,Foundation.NSBundle) M:AVKit.AVContentProposalViewController.Dispose(System.Boolean) @@ -10902,15 +10719,8 @@ M:AVKit.AVCustomRoutingControllerDelegate.HandleEvent(AVRouting.AVCustomRoutingC M:AVKit.AVInterstitialTimeRange.Copy(Foundation.NSZone) M:AVKit.AVPictureInPictureController.Dispose(System.Boolean) M:AVKit.AVPictureInPictureControllerContentSource.Dispose(System.Boolean) -M:AVKit.AVPictureInPictureControllerDelegate_Extensions.DidStartPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController) -M:AVKit.AVPictureInPictureControllerDelegate_Extensions.DidStopPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController) -M:AVKit.AVPictureInPictureControllerDelegate_Extensions.FailedToStartPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController,Foundation.NSError) -M:AVKit.AVPictureInPictureControllerDelegate_Extensions.RestoreUserInterfaceForPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController,System.Action{System.Boolean}) -M:AVKit.AVPictureInPictureControllerDelegate_Extensions.WillStartPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController) -M:AVKit.AVPictureInPictureControllerDelegate_Extensions.WillStopPictureInPicture(AVKit.IAVPictureInPictureControllerDelegate,AVKit.AVPictureInPictureController) M:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate_Extensions.ShouldProhibitBackgroundAudioPlayback(AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate,AVKit.AVPictureInPictureController) M:AVKit.AVPictureInPictureVideoCallViewController.#ctor(System.String,Foundation.NSBundle) -M:AVKit.AVPlayerView.#ctor(CoreGraphics.CGRect) M:AVKit.AVPlayerView.Dispose(System.Boolean) M:AVKit.AVPlayerViewController.Dispose(System.Boolean) M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidAcceptContentProposal(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,AVFoundation.AVContentProposal) @@ -10919,15 +10729,10 @@ M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidPresentInterstitialTimeRang M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidRejectContentProposal(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,AVFoundation.AVContentProposal) M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidSelectExternalSubtitleOptionLanguage(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,System.String) M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidSelectMediaSelectionOption(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,AVFoundation.AVMediaSelectionOption,AVFoundation.AVMediaSelectionGroup) -M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidStartPictureInPicture(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController) -M:AVKit.AVPlayerViewControllerDelegate_Extensions.DidStopPictureInPicture(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController) -M:AVKit.AVPlayerViewControllerDelegate_Extensions.FailedToStartPictureInPicture(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,Foundation.NSError) M:AVKit.AVPlayerViewControllerDelegate_Extensions.GetNextChannelInterstitialViewController(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController) M:AVKit.AVPlayerViewControllerDelegate_Extensions.GetPreviousChannelInterstitialViewController(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController) M:AVKit.AVPlayerViewControllerDelegate_Extensions.GetTimeToSeekAfterUserNavigated(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,CoreMedia.CMTime,CoreMedia.CMTime) M:AVKit.AVPlayerViewControllerDelegate_Extensions.RestoreUserInterfaceForFullScreenExit(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,System.Action{System.Boolean}) -M:AVKit.AVPlayerViewControllerDelegate_Extensions.RestoreUserInterfaceForPictureInPicture(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,System.Action{System.Boolean}) -M:AVKit.AVPlayerViewControllerDelegate_Extensions.ShouldAutomaticallyDismissAtPictureInPictureStart(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController) M:AVKit.AVPlayerViewControllerDelegate_Extensions.ShouldDismiss(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController) M:AVKit.AVPlayerViewControllerDelegate_Extensions.ShouldPresentContentProposal(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,AVFoundation.AVContentProposal) M:AVKit.AVPlayerViewControllerDelegate_Extensions.SkipToNextChannel(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,System.Action{System.Boolean}) @@ -10939,8 +10744,6 @@ M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillBeginFullScreenPresentatio M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillEndFullScreenPresentation(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,UIKit.IUIViewControllerTransitionCoordinator) M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillPresentInterstitialTimeRange(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,AVKit.AVInterstitialTimeRange) M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillResumePlaybackAfterUserNavigatedFromTime(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,CoreMedia.CMTime,CoreMedia.CMTime) -M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillStartPictureInPicture(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController) -M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillStopPictureInPicture(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController) M:AVKit.AVPlayerViewControllerDelegate_Extensions.WillTransitionToVisibilityOfTransportBar(AVKit.IAVPlayerViewControllerDelegate,AVKit.AVPlayerViewController,System.Boolean,AVKit.IAVPlayerViewControllerAnimationCoordinator) M:AVKit.AVPlayerViewDelegate_Extensions.DidEnterFullScreen(AVKit.IAVPlayerViewDelegate,AVKit.AVPlayerView) M:AVKit.AVPlayerViewDelegate_Extensions.DidExitFullScreen(AVKit.IAVPlayerViewDelegate,AVKit.AVPlayerView) @@ -10956,8 +10759,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.AVRoutePickerViewDelegate_Extensions.DidEndPresentingRoutes(AVKit.IAVRoutePickerViewDelegate,AVKit.AVRoutePickerView) -M:AVKit.AVRoutePickerViewDelegate_Extensions.WillBeginPresentingRoutes(AVKit.IAVRoutePickerViewDelegate,AVKit.AVRoutePickerView) M:AVKit.IAVCaptureViewDelegate.StartRecording(AVKit.AVCaptureView,AVFoundation.AVCaptureFileOutput) M:AVKit.IAVContinuityDevicePickerViewControllerDelegate.DidCancel(AVKit.AVContinuityDevicePickerViewController) M:AVKit.IAVContinuityDevicePickerViewControllerDelegate.DidConnectDevice(AVKit.AVContinuityDevicePickerViewController,AVFoundation.AVContinuityDevice) @@ -10966,12 +10767,6 @@ M:AVKit.IAVContinuityDevicePickerViewControllerDelegate.WillBeginPresenting(AVKi M:AVKit.IAVCustomRoutingControllerDelegate.DidSelectItem(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingActionItem) M:AVKit.IAVCustomRoutingControllerDelegate.EventDidTimeOut(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingEvent) M:AVKit.IAVCustomRoutingControllerDelegate.HandleEvent(AVRouting.AVCustomRoutingController,AVRouting.AVCustomRoutingEvent,AVKit.AVCustomRoutingControllerDelegateCompletionHandler) -M:AVKit.IAVPictureInPictureControllerDelegate.DidStartPictureInPicture(AVKit.AVPictureInPictureController) -M:AVKit.IAVPictureInPictureControllerDelegate.DidStopPictureInPicture(AVKit.AVPictureInPictureController) -M:AVKit.IAVPictureInPictureControllerDelegate.FailedToStartPictureInPicture(AVKit.AVPictureInPictureController,Foundation.NSError) -M:AVKit.IAVPictureInPictureControllerDelegate.RestoreUserInterfaceForPictureInPicture(AVKit.AVPictureInPictureController,System.Action{System.Boolean}) -M:AVKit.IAVPictureInPictureControllerDelegate.WillStartPictureInPicture(AVKit.AVPictureInPictureController) -M:AVKit.IAVPictureInPictureControllerDelegate.WillStopPictureInPicture(AVKit.AVPictureInPictureController) M:AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate.DidTransitionToRenderSize(AVKit.AVPictureInPictureController,CoreMedia.CMVideoDimensions) M:AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate.GetTimeRange(AVKit.AVPictureInPictureController) M:AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate.IsPlaybackPaused(AVKit.AVPictureInPictureController) @@ -10985,15 +10780,10 @@ M:AVKit.IAVPlayerViewControllerDelegate.DidPresentInterstitialTimeRange(AVKit.AV M:AVKit.IAVPlayerViewControllerDelegate.DidRejectContentProposal(AVKit.AVPlayerViewController,AVFoundation.AVContentProposal) M:AVKit.IAVPlayerViewControllerDelegate.DidSelectExternalSubtitleOptionLanguage(AVKit.AVPlayerViewController,System.String) M:AVKit.IAVPlayerViewControllerDelegate.DidSelectMediaSelectionOption(AVKit.AVPlayerViewController,AVFoundation.AVMediaSelectionOption,AVFoundation.AVMediaSelectionGroup) -M:AVKit.IAVPlayerViewControllerDelegate.DidStartPictureInPicture(AVKit.AVPlayerViewController) -M:AVKit.IAVPlayerViewControllerDelegate.DidStopPictureInPicture(AVKit.AVPlayerViewController) -M:AVKit.IAVPlayerViewControllerDelegate.FailedToStartPictureInPicture(AVKit.AVPlayerViewController,Foundation.NSError) M:AVKit.IAVPlayerViewControllerDelegate.GetNextChannelInterstitialViewController(AVKit.AVPlayerViewController) M:AVKit.IAVPlayerViewControllerDelegate.GetPreviousChannelInterstitialViewController(AVKit.AVPlayerViewController) M:AVKit.IAVPlayerViewControllerDelegate.GetTimeToSeekAfterUserNavigated(AVKit.AVPlayerViewController,CoreMedia.CMTime,CoreMedia.CMTime) M:AVKit.IAVPlayerViewControllerDelegate.RestoreUserInterfaceForFullScreenExit(AVKit.AVPlayerViewController,System.Action{System.Boolean}) -M:AVKit.IAVPlayerViewControllerDelegate.RestoreUserInterfaceForPictureInPicture(AVKit.AVPlayerViewController,System.Action{System.Boolean}) -M:AVKit.IAVPlayerViewControllerDelegate.ShouldAutomaticallyDismissAtPictureInPictureStart(AVKit.AVPlayerViewController) M:AVKit.IAVPlayerViewControllerDelegate.ShouldDismiss(AVKit.AVPlayerViewController) M:AVKit.IAVPlayerViewControllerDelegate.ShouldPresentContentProposal(AVKit.AVPlayerViewController,AVFoundation.AVContentProposal) M:AVKit.IAVPlayerViewControllerDelegate.SkipToNextChannel(AVKit.AVPlayerViewController,System.Action{System.Boolean}) @@ -11005,8 +10795,6 @@ M:AVKit.IAVPlayerViewControllerDelegate.WillBeginFullScreenPresentation(AVKit.AV M:AVKit.IAVPlayerViewControllerDelegate.WillEndFullScreenPresentation(AVKit.AVPlayerViewController,UIKit.IUIViewControllerTransitionCoordinator) M:AVKit.IAVPlayerViewControllerDelegate.WillPresentInterstitialTimeRange(AVKit.AVPlayerViewController,AVKit.AVInterstitialTimeRange) M:AVKit.IAVPlayerViewControllerDelegate.WillResumePlaybackAfterUserNavigatedFromTime(AVKit.AVPlayerViewController,CoreMedia.CMTime,CoreMedia.CMTime) -M:AVKit.IAVPlayerViewControllerDelegate.WillStartPictureInPicture(AVKit.AVPlayerViewController) -M:AVKit.IAVPlayerViewControllerDelegate.WillStopPictureInPicture(AVKit.AVPlayerViewController) M:AVKit.IAVPlayerViewControllerDelegate.WillTransitionToVisibilityOfTransportBar(AVKit.AVPlayerViewController,System.Boolean,AVKit.IAVPlayerViewControllerAnimationCoordinator) M:AVKit.IAVPlayerViewDelegate.DidEnterFullScreen(AVKit.AVPlayerView) M:AVKit.IAVPlayerViewDelegate.DidExitFullScreen(AVKit.AVPlayerView) @@ -11020,8 +10808,6 @@ M:AVKit.IAVPlayerViewPictureInPictureDelegate.RestoreUserInterface(AVKit.AVPlaye M:AVKit.IAVPlayerViewPictureInPictureDelegate.ShouldAutomaticallyDismiss(AVKit.AVPlayerView) M:AVKit.IAVPlayerViewPictureInPictureDelegate.WillStart(AVKit.AVPlayerView) M:AVKit.IAVPlayerViewPictureInPictureDelegate.WillStop(AVKit.AVPlayerView) -M:AVKit.IAVRoutePickerViewDelegate.DidEndPresentingRoutes(AVKit.AVRoutePickerView) -M:AVKit.IAVRoutePickerViewDelegate.WillBeginPresentingRoutes(AVKit.AVRoutePickerView) M:AVKit.PreparingRouteSelectionForPlayback.#ctor(System.Boolean,AVKit.AVAudioSessionRouteSelection) M:AVKit.UIWindow_AVAdditions.GetAVDisplayManager(UIKit.UIWindow) M:AVRouting.AVCustomRoutingController.Dispose(System.Boolean) @@ -11212,90 +10998,18 @@ 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.CXProviderDelegate_Extensions.DidActivateAudioSession(CallKit.ICXProviderDelegate,CallKit.CXProvider,AVFoundation.AVAudioSession) -M:CallKit.CXProviderDelegate_Extensions.DidBegin(CallKit.ICXProviderDelegate,CallKit.CXProvider) -M:CallKit.CXProviderDelegate_Extensions.DidDeactivateAudioSession(CallKit.ICXProviderDelegate,CallKit.CXProvider,AVFoundation.AVAudioSession) -M:CallKit.CXProviderDelegate_Extensions.ExecuteTransaction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXTransaction) -M:CallKit.CXProviderDelegate_Extensions.PerformAnswerCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXAnswerCallAction) -M:CallKit.CXProviderDelegate_Extensions.PerformEndCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXEndCallAction) -M:CallKit.CXProviderDelegate_Extensions.PerformPlayDtmfCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXPlayDtmfCallAction) -M:CallKit.CXProviderDelegate_Extensions.PerformSetGroupCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXSetGroupCallAction) -M:CallKit.CXProviderDelegate_Extensions.PerformSetHeldCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXSetHeldCallAction) -M:CallKit.CXProviderDelegate_Extensions.PerformSetMutedCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXSetMutedCallAction) -M:CallKit.CXProviderDelegate_Extensions.PerformStartCallAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXStartCallAction) -M:CallKit.CXProviderDelegate_Extensions.TimedOutPerformingAction(CallKit.ICXProviderDelegate,CallKit.CXProvider,CallKit.CXAction) M:CallKit.CXTransaction.Copy(Foundation.NSZone) M:CallKit.ICXCallDirectoryExtensionContextDelegate.RequestFailed(CallKit.CXCallDirectoryExtensionContext,Foundation.NSError) M:CallKit.ICXCallObserverDelegate.CallChanged(CallKit.CXCallObserver,CallKit.CXCall) -M:CallKit.ICXProviderDelegate.DidActivateAudioSession(CallKit.CXProvider,AVFoundation.AVAudioSession) -M:CallKit.ICXProviderDelegate.DidBegin(CallKit.CXProvider) -M:CallKit.ICXProviderDelegate.DidDeactivateAudioSession(CallKit.CXProvider,AVFoundation.AVAudioSession) M:CallKit.ICXProviderDelegate.DidReset(CallKit.CXProvider) -M:CallKit.ICXProviderDelegate.ExecuteTransaction(CallKit.CXProvider,CallKit.CXTransaction) -M:CallKit.ICXProviderDelegate.PerformAnswerCallAction(CallKit.CXProvider,CallKit.CXAnswerCallAction) -M:CallKit.ICXProviderDelegate.PerformEndCallAction(CallKit.CXProvider,CallKit.CXEndCallAction) -M:CallKit.ICXProviderDelegate.PerformPlayDtmfCallAction(CallKit.CXProvider,CallKit.CXPlayDtmfCallAction) -M:CallKit.ICXProviderDelegate.PerformSetGroupCallAction(CallKit.CXProvider,CallKit.CXSetGroupCallAction) -M:CallKit.ICXProviderDelegate.PerformSetHeldCallAction(CallKit.CXProvider,CallKit.CXSetHeldCallAction) -M:CallKit.ICXProviderDelegate.PerformSetMutedCallAction(CallKit.CXProvider,CallKit.CXSetMutedCallAction) -M:CallKit.ICXProviderDelegate.PerformStartCallAction(CallKit.CXProvider,CallKit.CXStartCallAction) -M:CallKit.ICXProviderDelegate.TimedOutPerformingAction(CallKit.CXProvider,CallKit.CXAction) -M:CarPlay.CPApplicationDelegate_Extensions.DidSelectManeuver(CarPlay.ICPApplicationDelegate,UIKit.UIApplication,CarPlay.CPManeuver) -M:CarPlay.CPApplicationDelegate_Extensions.DidSelectNavigationAlert(CarPlay.ICPApplicationDelegate,UIKit.UIApplication,CarPlay.CPNavigationAlert) M:CarPlay.CPApplicationDelegate.AccessibilityPerformMagicTap -M:CarPlay.CPApplicationDelegate.ApplicationSignificantTimeChange(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.ChangedStatusBarFrame(UIKit.UIApplication,CoreGraphics.CGRect) -M:CarPlay.CPApplicationDelegate.ContinueUserActivity(UIKit.UIApplication,Foundation.NSUserActivity,UIKit.UIApplicationRestorationHandler) -M:CarPlay.CPApplicationDelegate.DidChangeStatusBarOrientation(UIKit.UIApplication,UIKit.UIInterfaceOrientation) -M:CarPlay.CPApplicationDelegate.DidDecodeRestorableState(UIKit.UIApplication,Foundation.NSCoder) M:CarPlay.CPApplicationDelegate.DidDiscardSceneSessions(UIKit.UIApplication,Foundation.NSSet{UIKit.UISceneSession}) -M:CarPlay.CPApplicationDelegate.DidEnterBackground(UIKit.UIApplication) M:CarPlay.CPApplicationDelegate.DidFailToContinueUserActivity(UIKit.UIApplication,System.String,Foundation.NSError) -M:CarPlay.CPApplicationDelegate.DidReceiveRemoteNotification(UIKit.UIApplication,Foundation.NSDictionary,System.Action{UIKit.UIBackgroundFetchResult}) -M:CarPlay.CPApplicationDelegate.DidRegisterUserNotificationSettings(UIKit.UIApplication,UIKit.UIUserNotificationSettings) -M:CarPlay.CPApplicationDelegate.FailedToRegisterForRemoteNotifications(UIKit.UIApplication,Foundation.NSError) -M:CarPlay.CPApplicationDelegate.FinishedLaunching(UIKit.UIApplication,Foundation.NSDictionary) -M:CarPlay.CPApplicationDelegate.FinishedLaunching(UIKit.UIApplication) M:CarPlay.CPApplicationDelegate.GetConfiguration(UIKit.UIApplication,UIKit.UISceneSession,UIKit.UISceneConnectionOptions) M:CarPlay.CPApplicationDelegate.GetHandlerForIntent(UIKit.UIApplication,Intents.INIntent) -M:CarPlay.CPApplicationDelegate.GetSupportedInterfaceOrientations(UIKit.UIApplication,UIKit.UIWindow) -M:CarPlay.CPApplicationDelegate.GetViewController(UIKit.UIApplication,System.String[],Foundation.NSCoder) -M:CarPlay.CPApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,Foundation.NSDictionary,Foundation.NSDictionary,System.Action) -M:CarPlay.CPApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,Foundation.NSDictionary,System.Action) -M:CarPlay.CPApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,UIKit.UILocalNotification,Foundation.NSDictionary,System.Action) -M:CarPlay.CPApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,UIKit.UILocalNotification,System.Action) -M:CarPlay.CPApplicationDelegate.HandleEventsForBackgroundUrl(UIKit.UIApplication,System.String,System.Action) -M:CarPlay.CPApplicationDelegate.HandleIntent(UIKit.UIApplication,Intents.INIntent,System.Action{Intents.INIntentResponse}) -M:CarPlay.CPApplicationDelegate.HandleOpenURL(UIKit.UIApplication,Foundation.NSUrl) -M:CarPlay.CPApplicationDelegate.HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action{Foundation.NSDictionary}) -M:CarPlay.CPApplicationDelegate.OnActivated(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.OnResignActivation(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.OpenUrl(UIKit.UIApplication,Foundation.NSUrl,Foundation.NSDictionary) -M:CarPlay.CPApplicationDelegate.OpenUrl(UIKit.UIApplication,Foundation.NSUrl,System.String,Foundation.NSObject) -M:CarPlay.CPApplicationDelegate.PerformActionForShortcutItem(UIKit.UIApplication,UIKit.UIApplicationShortcutItem,UIKit.UIOperationHandler) -M:CarPlay.CPApplicationDelegate.PerformFetch(UIKit.UIApplication,System.Action{UIKit.UIBackgroundFetchResult}) -M:CarPlay.CPApplicationDelegate.ProtectedDataDidBecomeAvailable(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.ProtectedDataWillBecomeUnavailable(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.ReceivedLocalNotification(UIKit.UIApplication,UIKit.UILocalNotification) -M:CarPlay.CPApplicationDelegate.ReceivedRemoteNotification(UIKit.UIApplication,Foundation.NSDictionary) -M:CarPlay.CPApplicationDelegate.ReceiveMemoryWarning(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.RegisteredForRemoteNotifications(UIKit.UIApplication,Foundation.NSData) -M:CarPlay.CPApplicationDelegate.ShouldAllowExtensionPointIdentifier(UIKit.UIApplication,Foundation.NSString) M:CarPlay.CPApplicationDelegate.ShouldAutomaticallyLocalizeKeyCommands(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.ShouldRequestHealthAuthorization(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.ShouldRestoreApplicationState(UIKit.UIApplication,Foundation.NSCoder) M:CarPlay.CPApplicationDelegate.ShouldRestoreSecureApplicationState(UIKit.UIApplication,Foundation.NSCoder) -M:CarPlay.CPApplicationDelegate.ShouldSaveApplicationState(UIKit.UIApplication,Foundation.NSCoder) M:CarPlay.CPApplicationDelegate.ShouldSaveSecureApplicationState(UIKit.UIApplication,Foundation.NSCoder) -M:CarPlay.CPApplicationDelegate.UserActivityUpdated(UIKit.UIApplication,Foundation.NSUserActivity) -M:CarPlay.CPApplicationDelegate.UserDidAcceptCloudKitShare(UIKit.UIApplication,CloudKit.CKShareMetadata) -M:CarPlay.CPApplicationDelegate.WillChangeStatusBarFrame(UIKit.UIApplication,CoreGraphics.CGRect) -M:CarPlay.CPApplicationDelegate.WillChangeStatusBarOrientation(UIKit.UIApplication,UIKit.UIInterfaceOrientation,System.Double) -M:CarPlay.CPApplicationDelegate.WillContinueUserActivity(UIKit.UIApplication,System.String) -M:CarPlay.CPApplicationDelegate.WillEncodeRestorableState(UIKit.UIApplication,Foundation.NSCoder) -M:CarPlay.CPApplicationDelegate.WillEnterForeground(UIKit.UIApplication) -M:CarPlay.CPApplicationDelegate.WillFinishLaunching(UIKit.UIApplication,Foundation.NSDictionary) -M:CarPlay.CPApplicationDelegate.WillTerminate(UIKit.UIApplication) M:CarPlay.CPInstrumentClusterController.Dispose(System.Boolean) M:CarPlay.CPInstrumentClusterControllerDelegate_Extensions.DidChangeCompassSetting(CarPlay.ICPInstrumentClusterControllerDelegate,CarPlay.CPInstrumentClusterController,CarPlay.CPInstrumentClusterSetting) M:CarPlay.CPInstrumentClusterControllerDelegate_Extensions.DidChangeSpeedLimitSetting(CarPlay.ICPInstrumentClusterControllerDelegate,CarPlay.CPInstrumentClusterController,CarPlay.CPInstrumentClusterSetting) @@ -11309,37 +11023,13 @@ 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.CPInterfaceControllerDelegate_Extensions.TemplateDidAppear(CarPlay.ICPInterfaceControllerDelegate,CarPlay.CPTemplate,System.Boolean) -M:CarPlay.CPInterfaceControllerDelegate_Extensions.TemplateDidDisappear(CarPlay.ICPInterfaceControllerDelegate,CarPlay.CPTemplate,System.Boolean) -M:CarPlay.CPInterfaceControllerDelegate_Extensions.TemplateWillAppear(CarPlay.ICPInterfaceControllerDelegate,CarPlay.CPTemplate,System.Boolean) -M:CarPlay.CPInterfaceControllerDelegate_Extensions.TemplateWillDisappear(CarPlay.ICPInterfaceControllerDelegate,CarPlay.CPTemplate,System.Boolean) M:CarPlay.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.DidBeginPanGesture(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) -M:CarPlay.CPMapTemplateDelegate_Extensions.DidCancelNavigation(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) -M:CarPlay.CPMapTemplateDelegate_Extensions.DidDismissNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext) -M:CarPlay.CPMapTemplateDelegate_Extensions.DidDismissPanningInterface(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) -M:CarPlay.CPMapTemplateDelegate_Extensions.DidEndPanGesture(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CoreGraphics.CGPoint) -M:CarPlay.CPMapTemplateDelegate_Extensions.DidShowNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) -M:CarPlay.CPMapTemplateDelegate_Extensions.DidShowPanningInterface(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) -M:CarPlay.CPMapTemplateDelegate_Extensions.DidUpdatePanGesture(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CoreGraphics.CGPoint,CoreGraphics.CGPoint) -M:CarPlay.CPMapTemplateDelegate_Extensions.GetDisplayStyle(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPManeuver) -M:CarPlay.CPMapTemplateDelegate_Extensions.Pan(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPPanDirection) -M:CarPlay.CPMapTemplateDelegate_Extensions.PanBegan(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPPanDirection) -M:CarPlay.CPMapTemplateDelegate_Extensions.PanEnded(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPPanDirection) -M:CarPlay.CPMapTemplateDelegate_Extensions.SelectedPreview(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPTrip,CarPlay.CPRouteChoice) M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldProvideNavigationMetadata(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) -M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldShowNotificationForManeuver(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPManeuver) -M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldShowNotificationForNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) -M:CarPlay.CPMapTemplateDelegate_Extensions.ShouldUpdateNotificationForManeuver(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPManeuver,CarPlay.CPTravelEstimates) -M:CarPlay.CPMapTemplateDelegate_Extensions.StartedTrip(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPTrip,CarPlay.CPRouteChoice) -M:CarPlay.CPMapTemplateDelegate_Extensions.WillDismissNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext) -M:CarPlay.CPMapTemplateDelegate_Extensions.WillDismissPanningInterface(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate) -M:CarPlay.CPMapTemplateDelegate_Extensions.WillShowNavigationAlert(CarPlay.ICPMapTemplateDelegate,CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) M:CarPlay.CPMessageListItem.#ctor(System.String,System.String,CarPlay.CPMessageListItemLeadingConfiguration,CarPlay.CPMessageListItemTrailingConfiguration,System.String,System.String,CarPlay.CPMessageListItemType) M:CarPlay.CPMessageListItem.#ctor(System.String,System.String,CarPlay.CPMessageListItemLeadingConfiguration,CarPlay.CPMessageListItemTrailingConfiguration,System.String,System.String) M:CarPlay.CPNowPlayingTemplateObserver_Extensions.AlbumArtistButtonTapped(CarPlay.ICPNowPlayingTemplateObserver,CarPlay.CPNowPlayingTemplate) @@ -11348,7 +11038,6 @@ 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.CPSearchTemplateDelegate_Extensions.SearchButtonPressed(CarPlay.ICPSearchTemplateDelegate,CarPlay.CPSearchTemplate) 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) @@ -11411,45 +11100,18 @@ 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.ICPApplicationDelegate.DidSelectManeuver(UIKit.UIApplication,CarPlay.CPManeuver) -M:CarPlay.ICPApplicationDelegate.DidSelectNavigationAlert(UIKit.UIApplication,CarPlay.CPNavigationAlert) 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.ICPInterfaceControllerDelegate.TemplateDidAppear(CarPlay.CPTemplate,System.Boolean) -M:CarPlay.ICPInterfaceControllerDelegate.TemplateDidDisappear(CarPlay.CPTemplate,System.Boolean) -M:CarPlay.ICPInterfaceControllerDelegate.TemplateWillAppear(CarPlay.CPTemplate,System.Boolean) -M:CarPlay.ICPInterfaceControllerDelegate.TemplateWillDisappear(CarPlay.CPTemplate,System.Boolean) M:CarPlay.ICPListTemplateDelegate.DidSelectListItem(CarPlay.CPListTemplate,CarPlay.CPListItem,System.Action) -M:CarPlay.ICPMapTemplateDelegate.DidBeginPanGesture(CarPlay.CPMapTemplate) -M:CarPlay.ICPMapTemplateDelegate.DidCancelNavigation(CarPlay.CPMapTemplate) -M:CarPlay.ICPMapTemplateDelegate.DidDismissNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext) -M:CarPlay.ICPMapTemplateDelegate.DidDismissPanningInterface(CarPlay.CPMapTemplate) -M:CarPlay.ICPMapTemplateDelegate.DidEndPanGesture(CarPlay.CPMapTemplate,CoreGraphics.CGPoint) -M:CarPlay.ICPMapTemplateDelegate.DidShowNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) -M:CarPlay.ICPMapTemplateDelegate.DidShowPanningInterface(CarPlay.CPMapTemplate) -M:CarPlay.ICPMapTemplateDelegate.DidUpdatePanGesture(CarPlay.CPMapTemplate,CoreGraphics.CGPoint,CoreGraphics.CGPoint) -M:CarPlay.ICPMapTemplateDelegate.GetDisplayStyle(CarPlay.CPMapTemplate,CarPlay.CPManeuver) -M:CarPlay.ICPMapTemplateDelegate.Pan(CarPlay.CPMapTemplate,CarPlay.CPPanDirection) -M:CarPlay.ICPMapTemplateDelegate.PanBegan(CarPlay.CPMapTemplate,CarPlay.CPPanDirection) -M:CarPlay.ICPMapTemplateDelegate.PanEnded(CarPlay.CPMapTemplate,CarPlay.CPPanDirection) -M:CarPlay.ICPMapTemplateDelegate.SelectedPreview(CarPlay.CPMapTemplate,CarPlay.CPTrip,CarPlay.CPRouteChoice) M:CarPlay.ICPMapTemplateDelegate.ShouldProvideNavigationMetadata(CarPlay.CPMapTemplate) -M:CarPlay.ICPMapTemplateDelegate.ShouldShowNotificationForManeuver(CarPlay.CPMapTemplate,CarPlay.CPManeuver) -M:CarPlay.ICPMapTemplateDelegate.ShouldShowNotificationForNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) -M:CarPlay.ICPMapTemplateDelegate.ShouldUpdateNotificationForManeuver(CarPlay.CPMapTemplate,CarPlay.CPManeuver,CarPlay.CPTravelEstimates) -M:CarPlay.ICPMapTemplateDelegate.StartedTrip(CarPlay.CPMapTemplate,CarPlay.CPTrip,CarPlay.CPRouteChoice) -M:CarPlay.ICPMapTemplateDelegate.WillDismissNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert,CarPlay.CPNavigationAlertDismissalContext) -M:CarPlay.ICPMapTemplateDelegate.WillDismissPanningInterface(CarPlay.CPMapTemplate) -M:CarPlay.ICPMapTemplateDelegate.WillShowNavigationAlert(CarPlay.CPMapTemplate,CarPlay.CPNavigationAlert) 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.SearchButtonPressed(CarPlay.CPSearchTemplate) 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) @@ -11562,7 +11224,6 @@ M:Contacts.CNChangeHistoryEventVisitor_Extensions.RemoveMemberFromGroup(Contacts M:Contacts.CNChangeHistoryEventVisitor_Extensions.RemoveSubgroupFromGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent) M:Contacts.CNChangeHistoryEventVisitor_Extensions.UpdateGroup(Contacts.ICNChangeHistoryEventVisitor,Contacts.CNChangeHistoryUpdateGroupEvent) M:Contacts.CNContact.Copy(Foundation.NSZone) -M:Contacts.CNContact.GetItemProviderVisibilityForTypeIdentifier(System.String) 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@) @@ -11602,7 +11263,6 @@ M:CoreAnimation.CAAnimation.remove_AnimationStopped(System.EventHandler{CoreAnim 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.CAEAGLLayer.Create 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) @@ -11631,13 +11291,8 @@ M:CoreAudioKit.AUAudioUnitViewControllerExtensions.GetSupportedViewConfiguration M:CoreAudioKit.AUAudioUnitViewControllerExtensions.SelectViewConfiguration(AudioUnit.AUAudioUnit,CoreAudioKit.AUAudioUnitViewConfiguration) M:CoreAudioKit.AUGenericView.Dispose(System.Boolean) M:CoreAudioKit.AUGenericViewController.#ctor(System.String,Foundation.NSBundle) -M:CoreAudioKit.CABtleMidiWindowController.#ctor(AppKit.NSWindow) -M:CoreAudioKit.CAInterAppAudioSwitcherView.#ctor(CoreGraphics.CGRect) M:CoreAudioKit.CAInterAppAudioSwitcherView.CAInterAppAudioSwitcherViewAppearance.#ctor(System.IntPtr) -M:CoreAudioKit.CAInterAppAudioTransportView.#ctor(CoreGraphics.CGRect) M:CoreAudioKit.CAInterAppAudioTransportView.CAInterAppAudioTransportViewAppearance.#ctor(System.IntPtr) -M:CoreAudioKit.CAInterDeviceAudioViewController.#ctor(System.String,Foundation.NSBundle) -M:CoreAudioKit.CANetworkBrowserWindowController.#ctor(AppKit.NSWindow) M:CoreBluetooth.CBCentral.Copy(Foundation.NSZone) M:CoreBluetooth.CBCentralManager.add_ConnectedPeripheral(System.EventHandler{CoreBluetooth.CBPeripheralEventArgs}) M:CoreBluetooth.CBCentralManager.add_ConnectionEventDidOccur(System.EventHandler{CoreBluetooth.CBPeripheralConnectionEventEventArgs}) @@ -12416,8 +12071,6 @@ M:CoreImage.CIContext_ImageRepresentation.WriteTiffRepresentation(CoreImage.CICo 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.FromContext(OpenGLES.EAGLContext,Foundation.NSDictionary) -M:CoreImage.CIContext.FromContext(OpenGLES.EAGLContext) M:CoreImage.CIContext.GetOpenEXRRepresentation(CoreImage.CIImage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@) M:CoreImage.CIContext.RenderToBitmap(CoreImage.CIImage,System.IntPtr,System.IntPtr,CoreGraphics.CGRect,System.Int32,CoreGraphics.CGColorSpace) M:CoreImage.CIContext.WriteOpenExrRepresentation(CoreImage.CIImage,Foundation.NSUrl,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},Foundation.NSError@) @@ -12429,11 +12082,8 @@ M:CoreImage.CIFilter.RegisterFilterName(System.String,CoreImage.ICIFilterConstru M:CoreImage.CIFilterGenerator.Copy(Foundation.NSZone) M:CoreImage.CIFilterGenerator.FilterWithName(System.String) M:CoreImage.CIFilterShape.Copy(Foundation.NSZone) -M:CoreImage.CIImage.#ctor(AppKit.NSImageRep) M:CoreImage.CIImage.#ctor(AVFoundation.AVSemanticSegmentationMatte,Foundation.NSDictionary) M:CoreImage.CIImage.#ctor(AVFoundation.AVSemanticSegmentationMatte) -M:CoreImage.CIImage.#ctor(CoreGraphics.CGLayer,CoreImage.CIImageInitializationOptions) -M:CoreImage.CIImage.#ctor(CoreGraphics.CGLayer) M:CoreImage.CIImage.#ctor(CoreImage.ICIImageProvider,System.UIntPtr,System.UIntPtr,CoreImage.CIFormat,CoreGraphics.CGColorSpace,CoreImage.CIImageProviderOptions) M:CoreImage.CIImage.#ctor(Foundation.NSData,System.IntPtr,CoreGraphics.CGSize,System.Int32,CoreGraphics.CGColorSpace) M:CoreImage.CIImage.#ctor(ImageIO.CGImageSource,System.UIntPtr,CoreImage.CIImageInitializationOptionsWithMetadata) @@ -12706,7 +12356,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.Encode(Metal.IMTLCommandBuffer,Metal.IMTLTexture[],Metal.IMTLTexture[],Foundation.NSError@) 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@) @@ -12718,7 +12367,6 @@ 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.MLCustomLayer_Extensions.Encode(CoreML.IMLCustomLayer,Metal.IMTLCommandBuffer,Metal.IMTLTexture[],Metal.IMTLTexture[],Foundation.NSError@) M:CoreML.MLDictionaryFeatureProvider.GetFeatureValue(System.String) M:CoreML.MLFeatureDescription.Copy(Foundation.NSZone) M:CoreML.MLFeatureDescription.Dispose(System.Boolean) @@ -13255,35 +12903,14 @@ M:FileProvider.INSFileProviderEnumerationObserver.DidEnumerateItems(FileProvider M:FileProvider.INSFileProviderEnumerationObserver.FinishEnumerating(Foundation.NSData) M:FileProvider.INSFileProviderEnumerationObserver.FinishEnumerating(Foundation.NSError) M:FileProvider.INSFileProviderEnumerationObserver.GetSuggestedPageSize -M:FileProvider.INSFileProviderEnumerator.CurrentSyncAnchor(System.Action{Foundation.NSData}) -M:FileProvider.INSFileProviderEnumerator.EnumerateChanges(FileProvider.INSFileProviderChangeObserver,Foundation.NSData) 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.GetCapabilities -M:FileProvider.INSFileProviderItem.GetChildItemCount -M:FileProvider.INSFileProviderItem.GetContentModificationDate M:FileProvider.INSFileProviderItem.GetContentType -M:FileProvider.INSFileProviderItem.GetCreationDate -M:FileProvider.INSFileProviderItem.GetDocumentSize -M:FileProvider.INSFileProviderItem.GetDownloadingError M:FileProvider.INSFileProviderItem.GetFavoriteRank -M:FileProvider.INSFileProviderItem.GetLastUsedDate -M:FileProvider.INSFileProviderItem.GetMostRecentEditorNameComponents -M:FileProvider.INSFileProviderItem.GetOwnerNameComponents -M:FileProvider.INSFileProviderItem.GetTagData -M:FileProvider.INSFileProviderItem.GetUploadingError -M:FileProvider.INSFileProviderItem.GetUserInfo M:FileProvider.INSFileProviderItem.GetVersionIdentifier -M:FileProvider.INSFileProviderItem.IsDownloaded -M:FileProvider.INSFileProviderItem.IsDownloading -M:FileProvider.INSFileProviderItem.IsMostRecentVersionDownloaded -M:FileProvider.INSFileProviderItem.IsShared -M:FileProvider.INSFileProviderItem.IsSharedByCurrentUser M:FileProvider.INSFileProviderItem.IsTrashed -M:FileProvider.INSFileProviderItem.IsUploaded -M:FileProvider.INSFileProviderItem.IsUploading 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) @@ -13313,8 +12940,6 @@ M:FileProvider.NSFileProviderDomain.#ctor(System.String,Foundation.NSDictionary, M:FileProvider.NSFileProviderDomain.#ctor(System.String,System.String) M:FileProvider.NSFileProviderDomainVersion.Compare(FileProvider.NSFileProviderDomainVersion) M:FileProvider.NSFileProviderEnumerationObserver_Extensions.GetSuggestedPageSize(FileProvider.INSFileProviderEnumerationObserver) -M:FileProvider.NSFileProviderEnumerator_Extensions.CurrentSyncAnchor(FileProvider.INSFileProviderEnumerator,System.Action{Foundation.NSData}) -M:FileProvider.NSFileProviderEnumerator_Extensions.EnumerateChanges(FileProvider.INSFileProviderEnumerator,FileProvider.INSFileProviderChangeObserver,Foundation.NSData) M:FileProvider.NSFileProviderExtension.CreateDirectory(System.String,System.String,System.Action{FileProvider.INSFileProviderItem,Foundation.NSError}) M:FileProvider.NSFileProviderExtension.CreateDirectoryAsync(System.String,System.String) M:FileProvider.NSFileProviderExtension.DeleteItem(System.String,System.Action{Foundation.NSError}) @@ -13352,36 +12977,17 @@ M:FileProvider.NSFileProviderExtension.UntrashItem(System.String,System.String,S M:FileProvider.NSFileProviderExtension.UntrashItemAsync(System.String,System.String) M:FileProvider.NSFileProviderExtension.WritePlaceholder(Foundation.NSUrl,Foundation.NSDictionary,Foundation.NSError@) M:FileProvider.NSFileProviderGetIdentifierResult.#ctor(Foundation.NSString,Foundation.NSString) -M:FileProvider.NSFileProviderItem_Extensions.GetCapabilities(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetChildItemCount(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetContentModificationDate(FileProvider.INSFileProviderItem) M:FileProvider.NSFileProviderItem_Extensions.GetContentPolicy(FileProvider.INSFileProviderItem) M:FileProvider.NSFileProviderItem_Extensions.GetContentType(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetCreationDate(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetDocumentSize(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetDownloadingError(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.GetLastUsedDate(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetMostRecentEditorNameComponents(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetOwnerNameComponents(FileProvider.INSFileProviderItem) M:FileProvider.NSFileProviderItem_Extensions.GetSymlinkTargetPath(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetTagData(FileProvider.INSFileProviderItem) M:FileProvider.NSFileProviderItem_Extensions.GetTypeAndCreator(FileProvider.INSFileProviderItem) M:FileProvider.NSFileProviderItem_Extensions.GetTypeIdentifier(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetUploadingError(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.GetUserInfo(FileProvider.INSFileProviderItem) M:FileProvider.NSFileProviderItem_Extensions.GetVersionIdentifier(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.IsDownloaded(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.IsDownloading(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.IsMostRecentVersionDownloaded(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.IsShared(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.IsSharedByCurrentUser(FileProvider.INSFileProviderItem) M:FileProvider.NSFileProviderItem_Extensions.IsTrashed(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.IsUploaded(FileProvider.INSFileProviderItem) -M:FileProvider.NSFileProviderItem_Extensions.IsUploading(FileProvider.INSFileProviderItem) M:FileProvider.NSFileProviderItemVersion.#ctor(Foundation.NSData,Foundation.NSData) M:FileProvider.NSFileProviderKnownFolderLocation.#ctor(System.String,System.String) M:FileProvider.NSFileProviderKnownFolderLocation.#ctor(System.String) @@ -13434,32 +13040,14 @@ M:FileProvider.NSFileProviderReplicatedExtension_Extensions.PendingItemsDidChang M:FileProvider.NSFileProviderServiceSource_Extensions.GetRestricted(FileProvider.INSFileProviderServiceSource) M:FileProvider.NSFileProviderTypeAndCreator.GetCreatorAsFourCC M:FileProvider.NSFileProviderTypeAndCreator.GetTypeAsFourCC -M:FinderSync.FIFinderSync.BeginObservingDirectory(Foundation.NSUrl) M:FinderSync.FIFinderSync.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) -M:FinderSync.FIFinderSync.EndObservingDirectory(Foundation.NSUrl) -M:FinderSync.FIFinderSync.GetMenu(FinderSync.FIMenuKind) -M:FinderSync.FIFinderSync.GetValues(System.String[],Foundation.NSUrl,FinderSync.GetValuesCompletionHandler) M:FinderSync.FIFinderSync.GetValuesAsync(System.String[],Foundation.NSUrl) -M:FinderSync.FIFinderSync.RequestBadgeIdentifier(Foundation.NSUrl) -M:FinderSync.FIFinderSync.SupportedServiceNames(Foundation.NSUrl) M:FinderSync.FIFinderSyncController.Copy(Foundation.NSZone) -M:FinderSync.FIFinderSyncProtocol_Extensions.BeginObservingDirectory(FinderSync.IFIFinderSyncProtocol,Foundation.NSUrl) -M:FinderSync.FIFinderSyncProtocol_Extensions.EndObservingDirectory(FinderSync.IFIFinderSyncProtocol,Foundation.NSUrl) -M:FinderSync.FIFinderSyncProtocol_Extensions.GetMenu(FinderSync.IFIFinderSyncProtocol,FinderSync.FIMenuKind) M:FinderSync.FIFinderSyncProtocol_Extensions.GetToolbarItemImage(FinderSync.IFIFinderSyncProtocol) M:FinderSync.FIFinderSyncProtocol_Extensions.GetToolbarItemName(FinderSync.IFIFinderSyncProtocol) M:FinderSync.FIFinderSyncProtocol_Extensions.GetToolbarItemToolTip(FinderSync.IFIFinderSyncProtocol) -M:FinderSync.FIFinderSyncProtocol_Extensions.GetValues(FinderSync.IFIFinderSyncProtocol,System.String[],Foundation.NSUrl,FinderSync.GetValuesCompletionHandler) M:FinderSync.FIFinderSyncProtocol_Extensions.GetValuesAsync(FinderSync.IFIFinderSyncProtocol,System.String[],Foundation.NSUrl) -M:FinderSync.FIFinderSyncProtocol_Extensions.RequestBadgeIdentifier(FinderSync.IFIFinderSyncProtocol,Foundation.NSUrl) -M:FinderSync.FIFinderSyncProtocol_Extensions.SupportedServiceNames(FinderSync.IFIFinderSyncProtocol,Foundation.NSUrl) -M:FinderSync.IFIFinderSyncProtocol.BeginObservingDirectory(Foundation.NSUrl) -M:FinderSync.IFIFinderSyncProtocol.EndObservingDirectory(Foundation.NSUrl) -M:FinderSync.IFIFinderSyncProtocol.GetMenu(FinderSync.FIMenuKind) -M:FinderSync.IFIFinderSyncProtocol.GetValues(System.String[],Foundation.NSUrl,FinderSync.GetValuesCompletionHandler) M:FinderSync.IFIFinderSyncProtocol.GetValuesAsync(System.String[],Foundation.NSUrl) -M:FinderSync.IFIFinderSyncProtocol.RequestBadgeIdentifier(Foundation.NSUrl) -M:FinderSync.IFIFinderSyncProtocol.SupportedServiceNames(Foundation.NSUrl) M:Foundation.DictionaryContainer.GetArray``1(Foundation.NSString,System.Func{ObjCRuntime.NativeHandle,``0}) M:Foundation.DictionaryContainer.GetStringArrayValue(Foundation.NSString) M:Foundation.DictionaryContainer.GetStrongDictionary``1(Foundation.NSString,System.Func{Foundation.NSDictionary,``0}) @@ -13468,7 +13056,6 @@ M:Foundation.DictionaryContainer.GetULongValue(Foundation.NSString) M:Foundation.DictionaryContainer.SetNumberValue(Foundation.NSString,System.Nullable{System.IntPtr}) M:Foundation.DictionaryContainer.SetNumberValue(Foundation.NSString,System.Nullable{System.UIntPtr}) M:Foundation.DictionaryContainer.SetUIEdgeInsets(Foundation.NSString,System.Nullable{UIKit.UIEdgeInsets}) -M:Foundation.INSCacheDelegate.WillEvictObject(Foundation.NSCache,Foundation.NSObject) M:Foundation.INSCoding.CreateInstance``1(Foundation.NSCoder) M:Foundation.INSConnectionDelegate.AllowNewConnection(Foundation.NSConnection,Foundation.NSConnection) M:Foundation.INSConnectionDelegate.AuthenticateComponents(Foundation.NSArray,Foundation.NSData) @@ -13481,105 +13068,27 @@ M:Foundation.INSDiscardableContent.BeginContentAccess M:Foundation.INSDiscardableContent.DiscardContentIfPossible M:Foundation.INSDiscardableContent.EndContentAccess M:Foundation.INSExtensionRequestHandling.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) -M:Foundation.INSFileManagerDelegate.ShouldCopyItemAtPath(Foundation.NSFileManager,Foundation.NSString,Foundation.NSString) -M:Foundation.INSFileManagerDelegate.ShouldCopyItemAtUrl(Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.INSFileManagerDelegate.ShouldLinkItemAtPath(Foundation.NSFileManager,System.String,System.String) -M:Foundation.INSFileManagerDelegate.ShouldLinkItemAtUrl(Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.INSFileManagerDelegate.ShouldMoveItemAtPath(Foundation.NSFileManager,System.String,System.String) -M:Foundation.INSFileManagerDelegate.ShouldMoveItemAtUrl(Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.INSFileManagerDelegate.ShouldProceedAfterErrorCopyingItem(Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.INSFileManagerDelegate.ShouldProceedAfterErrorCopyingItem(Foundation.NSFileManager,Foundation.NSError,System.String,System.String) -M:Foundation.INSFileManagerDelegate.ShouldProceedAfterErrorLinkingItem(Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.INSFileManagerDelegate.ShouldProceedAfterErrorLinkingItem(Foundation.NSFileManager,Foundation.NSError,System.String,System.String) -M:Foundation.INSFileManagerDelegate.ShouldProceedAfterErrorMovingItem(Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.INSFileManagerDelegate.ShouldProceedAfterErrorMovingItem(Foundation.NSFileManager,Foundation.NSError,System.String,System.String) -M:Foundation.INSFileManagerDelegate.ShouldProceedAfterErrorRemovingItem(Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl) -M:Foundation.INSFileManagerDelegate.ShouldProceedAfterErrorRemovingItem(Foundation.NSFileManager,Foundation.NSError,System.String) -M:Foundation.INSFileManagerDelegate.ShouldRemoveItemAtPath(Foundation.NSFileManager,System.String) -M:Foundation.INSFileManagerDelegate.ShouldRemoveItemAtUrl(Foundation.NSFileManager,Foundation.NSUrl) -M:Foundation.INSFilePresenter.AccommodatePresentedItemDeletion(System.Action{Foundation.NSError}) M:Foundation.INSFilePresenter.AccommodatePresentedItemEviction(System.Action{Foundation.NSError}) -M:Foundation.INSFilePresenter.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) -M:Foundation.INSFilePresenter.PresentedItemChanged -M:Foundation.INSFilePresenter.PresentedItemChangedUbiquityAttributes(Foundation.NSSet{Foundation.NSString}) -M:Foundation.INSFilePresenter.PresentedItemGainedVersion(Foundation.NSFileVersion) -M:Foundation.INSFilePresenter.PresentedItemLostVersion(Foundation.NSFileVersion) -M:Foundation.INSFilePresenter.PresentedItemMoved(Foundation.NSUrl) -M:Foundation.INSFilePresenter.PresentedItemResolveConflictVersion(Foundation.NSFileVersion) -M:Foundation.INSFilePresenter.PresentedSubitemAppeared(Foundation.NSUrl) -M:Foundation.INSFilePresenter.PresentedSubitemChanged(Foundation.NSUrl) -M:Foundation.INSFilePresenter.PresentedSubitemGainedVersion(Foundation.NSUrl,Foundation.NSFileVersion) -M:Foundation.INSFilePresenter.PresentedSubitemLostVersion(Foundation.NSUrl,Foundation.NSFileVersion) -M:Foundation.INSFilePresenter.PresentedSubitemMoved(Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.INSFilePresenter.PresentedSubitemResolvedConflictVersion(Foundation.NSUrl,Foundation.NSFileVersion) -M:Foundation.INSFilePresenter.RelinquishPresentedItemToReader(Foundation.NSFilePresenterReacquirer) -M:Foundation.INSFilePresenter.RelinquishPresentedItemToWriter(Foundation.NSFilePresenterReacquirer) -M:Foundation.INSFilePresenter.SavePresentedItemChanges(System.Action{Foundation.NSError}) M:Foundation.INSItemProviderReading.GetObject``1(Foundation.NSData,System.String,Foundation.NSError@) M:Foundation.INSItemProviderReading.GetReadableTypeIdentifiers``1 -M:Foundation.INSItemProviderWriting.GetItemProviderVisibilityForTypeIdentifier(System.String) 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.INSKeyedArchiverDelegate.EncodedObject(Foundation.NSKeyedArchiver,Foundation.NSObject) -M:Foundation.INSKeyedArchiverDelegate.Finished(Foundation.NSKeyedArchiver) -M:Foundation.INSKeyedArchiverDelegate.Finishing(Foundation.NSKeyedArchiver) -M:Foundation.INSKeyedArchiverDelegate.ReplacingObject(Foundation.NSKeyedArchiver,Foundation.NSObject,Foundation.NSObject) -M:Foundation.INSKeyedArchiverDelegate.WillEncode(Foundation.NSKeyedArchiver,Foundation.NSObject) -M:Foundation.INSKeyedUnarchiverDelegate.CannotDecodeClass(Foundation.NSKeyedUnarchiver,System.String,System.String[]) -M:Foundation.INSKeyedUnarchiverDelegate.DecodedObject(Foundation.NSKeyedUnarchiver,Foundation.NSObject) -M:Foundation.INSKeyedUnarchiverDelegate.Finished(Foundation.NSKeyedUnarchiver) -M:Foundation.INSKeyedUnarchiverDelegate.Finishing(Foundation.NSKeyedUnarchiver) -M:Foundation.INSKeyedUnarchiverDelegate.ReplacingObject(Foundation.NSKeyedUnarchiver,Foundation.NSObject,Foundation.NSObject) M:Foundation.INSLocking.Lock M:Foundation.INSLocking.Unlock -M:Foundation.INSMachPortDelegate.MachMessageReceived(System.IntPtr) -M:Foundation.INSMetadataQueryDelegate.ReplacementObjectForResultObject(Foundation.NSMetadataQuery,Foundation.NSMetadataItem) -M:Foundation.INSMetadataQueryDelegate.ReplacementValueForAttributevalue(Foundation.NSMetadataQuery,System.String,Foundation.NSObject) M:Foundation.INSMutableCopying.MutableCopy(Foundation.NSZone) -M:Foundation.INSNetServiceBrowserDelegate.DomainRemoved(Foundation.NSNetServiceBrowser,System.String,System.Boolean) -M:Foundation.INSNetServiceBrowserDelegate.FoundDomain(Foundation.NSNetServiceBrowser,System.String,System.Boolean) -M:Foundation.INSNetServiceBrowserDelegate.FoundService(Foundation.NSNetServiceBrowser,Foundation.NSNetService,System.Boolean) -M:Foundation.INSNetServiceBrowserDelegate.NotSearched(Foundation.NSNetServiceBrowser,Foundation.NSDictionary) -M:Foundation.INSNetServiceBrowserDelegate.SearchStarted(Foundation.NSNetServiceBrowser) -M:Foundation.INSNetServiceBrowserDelegate.SearchStopped(Foundation.NSNetServiceBrowser) -M:Foundation.INSNetServiceBrowserDelegate.ServiceRemoved(Foundation.NSNetServiceBrowser,Foundation.NSNetService,System.Boolean) -M:Foundation.INSNetServiceDelegate.AddressResolved(Foundation.NSNetService) -M:Foundation.INSNetServiceDelegate.DidAcceptConnection(Foundation.NSNetService,Foundation.NSInputStream,Foundation.NSOutputStream) -M:Foundation.INSNetServiceDelegate.Published(Foundation.NSNetService) -M:Foundation.INSNetServiceDelegate.PublishFailure(Foundation.NSNetService,Foundation.NSDictionary) -M:Foundation.INSNetServiceDelegate.ResolveFailure(Foundation.NSNetService,Foundation.NSDictionary) -M:Foundation.INSNetServiceDelegate.Stopped(Foundation.NSNetService) -M:Foundation.INSNetServiceDelegate.UpdatedTxtRecordData(Foundation.NSNetService,Foundation.NSData) -M:Foundation.INSNetServiceDelegate.WillPublish(Foundation.NSNetService) -M:Foundation.INSNetServiceDelegate.WillResolve(Foundation.NSNetService) 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.INSStreamDelegate.HandleEvent(Foundation.NSStream,Foundation.NSStreamEvent) 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.FinishedLoading(Foundation.NSUrlConnection) -M:Foundation.INSUrlConnectionDataDelegate.NeedNewBodyStream(Foundation.NSUrlConnection,Foundation.NSUrlRequest) -M:Foundation.INSUrlConnectionDataDelegate.ReceivedData(Foundation.NSUrlConnection,Foundation.NSData) -M:Foundation.INSUrlConnectionDataDelegate.ReceivedResponse(Foundation.NSUrlConnection,Foundation.NSUrlResponse) M:Foundation.INSUrlConnectionDataDelegate.SentBodyData(Foundation.NSUrlConnection,System.IntPtr,System.IntPtr,System.IntPtr) -M:Foundation.INSUrlConnectionDataDelegate.WillCacheResponse(Foundation.NSUrlConnection,Foundation.NSCachedUrlResponse) -M:Foundation.INSUrlConnectionDataDelegate.WillSendRequest(Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse) -M:Foundation.INSUrlConnectionDelegate.CanAuthenticateAgainstProtectionSpace(Foundation.NSUrlConnection,Foundation.NSUrlProtectionSpace) -M:Foundation.INSUrlConnectionDelegate.CanceledAuthenticationChallenge(Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge) -M:Foundation.INSUrlConnectionDelegate.ConnectionShouldUseCredentialStorage(Foundation.NSUrlConnection) -M:Foundation.INSUrlConnectionDelegate.FailedWithError(Foundation.NSUrlConnection,Foundation.NSError) -M:Foundation.INSUrlConnectionDelegate.ReceivedAuthenticationChallenge(Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge) -M:Foundation.INSUrlConnectionDelegate.WillSendRequestForAuthenticationChallenge(Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge) M:Foundation.INSUrlConnectionDownloadDelegate.FinishedDownloading(Foundation.NSUrlConnection,Foundation.NSUrl) -M:Foundation.INSUrlConnectionDownloadDelegate.ResumedDownloading(Foundation.NSUrlConnection,System.Int64,System.Int64) -M:Foundation.INSUrlConnectionDownloadDelegate.WroteData(Foundation.NSUrlConnection,System.Int64,System.Int64,System.Int64) M:Foundation.INSUrlDownloadDelegate.CanceledAuthenticationChallenge(Foundation.NSUrlDownload,Foundation.NSUrlAuthenticationChallenge) M:Foundation.INSUrlDownloadDelegate.CreatedDestination(Foundation.NSUrlDownload,System.String) M:Foundation.INSUrlDownloadDelegate.DecideDestination(Foundation.NSUrlDownload,System.String) @@ -13600,37 +13109,12 @@ 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.INSUrlSessionDataDelegate.DidBecomeDownloadTask(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlSessionDownloadTask) -M:Foundation.INSUrlSessionDataDelegate.DidBecomeStreamTask(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlSessionStreamTask) -M:Foundation.INSUrlSessionDataDelegate.DidReceiveData(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSData) -M:Foundation.INSUrlSessionDataDelegate.DidReceiveResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlResponse,System.Action{Foundation.NSUrlSessionResponseDisposition}) -M:Foundation.INSUrlSessionDataDelegate.WillCacheResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSCachedUrlResponse,System.Action{Foundation.NSCachedUrlResponse}) -M:Foundation.INSUrlSessionDelegate.DidBecomeInvalid(Foundation.NSUrlSession,Foundation.NSError) -M:Foundation.INSUrlSessionDelegate.DidFinishEventsForBackgroundSession(Foundation.NSUrlSession) -M:Foundation.INSUrlSessionDelegate.DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential}) M:Foundation.INSUrlSessionDownloadDelegate.DidFinishDownloading(Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,Foundation.NSUrl) -M:Foundation.INSUrlSessionDownloadDelegate.DidResume(Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,System.Int64,System.Int64) -M:Foundation.INSUrlSessionDownloadDelegate.DidWriteData(Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,System.Int64,System.Int64,System.Int64) -M:Foundation.INSUrlSessionStreamDelegate.BetterRouteDiscovered(Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask) -M:Foundation.INSUrlSessionStreamDelegate.CompletedTaskCaptureStreams(Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask,Foundation.NSInputStream,Foundation.NSOutputStream) -M:Foundation.INSUrlSessionStreamDelegate.ReadClosed(Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask) -M:Foundation.INSUrlSessionStreamDelegate.WriteClosed(Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask) -M:Foundation.INSUrlSessionTaskDelegate.DidCompleteWithError(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSError) M:Foundation.INSUrlSessionTaskDelegate.DidCreateTask(Foundation.NSUrlSession,Foundation.NSUrlSessionTask) -M:Foundation.INSUrlSessionTaskDelegate.DidFinishCollectingMetrics(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlSessionTaskMetrics) -M:Foundation.INSUrlSessionTaskDelegate.DidReceiveChallenge(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential}) M:Foundation.INSUrlSessionTaskDelegate.DidReceiveInformationalResponse(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse) -M:Foundation.INSUrlSessionTaskDelegate.DidSendBodyData(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Int64,System.Int64) -M:Foundation.INSUrlSessionTaskDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action{Foundation.NSInputStream}) M:Foundation.INSUrlSessionTaskDelegate.NeedNewBodyStream(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action{Foundation.NSInputStream}) -M:Foundation.INSUrlSessionTaskDelegate.TaskIsWaitingForConnectivity(Foundation.NSUrlSession,Foundation.NSUrlSessionTask) -M:Foundation.INSUrlSessionTaskDelegate.WillBeginDelayedRequest(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlSessionDelayedRequestDisposition,Foundation.NSUrlRequest}) -M:Foundation.INSUrlSessionTaskDelegate.WillPerformHttpRedirection(Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlRequest}) M:Foundation.INSUrlSessionWebSocketDelegate.DidClose(Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,Foundation.NSUrlSessionWebSocketCloseCode,Foundation.NSData) M:Foundation.INSUrlSessionWebSocketDelegate.DidOpen(Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,System.String) -M:Foundation.INSUserActivityDelegate.UserActivityReceivedData(Foundation.NSUserActivity,Foundation.NSInputStream,Foundation.NSOutputStream) -M:Foundation.INSUserActivityDelegate.UserActivityWasContinued(Foundation.NSUserActivity) -M:Foundation.INSUserActivityDelegate.UserActivityWillSave(Foundation.NSUserActivity) M:Foundation.INSUserNotificationCenterDelegate.DidActivateNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification) M:Foundation.INSUserNotificationCenterDelegate.DidDeliverNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification) M:Foundation.INSUserNotificationCenterDelegate.ShouldPresentNotification(Foundation.NSUserNotificationCenter,Foundation.NSUserNotification) @@ -13650,14 +13134,7 @@ M:Foundation.NSArray.GetItem``1(System.UIntPtr) M:Foundation.NSArray.ToArray M:Foundation.NSArray.ToArray``1 M:Foundation.NSArray`1.ToArray -M:Foundation.NSAttributedString.#ctor(Foundation.NSData,Foundation.NSAttributedStringDocumentAttributes,Foundation.NSDictionary@) -M:Foundation.NSAttributedString.#ctor(Foundation.NSData,Foundation.NSDictionary,Foundation.NSDictionary@) -M:Foundation.NSAttributedString.#ctor(Foundation.NSData,Foundation.NSDictionary@) -M:Foundation.NSAttributedString.#ctor(Foundation.NSData,Foundation.NSUrl,Foundation.NSDictionary@) -M:Foundation.NSAttributedString.#ctor(Foundation.NSFileWrapper,Foundation.NSDictionary@) -M:Foundation.NSAttributedString.#ctor(Foundation.NSUrl,Foundation.NSDictionary@) M:Foundation.NSAttributedString.#ctor(System.String,AppKit.NSFont,AppKit.NSColor,AppKit.NSColor,AppKit.NSColor,AppKit.NSColor,AppKit.NSColor,Foundation.NSUnderlineStyle,Foundation.NSUnderlineStyle,AppKit.NSParagraphStyle,System.Single,AppKit.NSShadow,Foundation.NSUrl,System.Boolean,AppKit.NSTextAttachment,Foundation.NSLigatureType,System.Single,System.Single,System.Single,System.Single,AppKit.NSCursor,System.String,System.Int32,AppKit.NSGlyphInfo,Foundation.NSArray,System.Boolean,AppKit.NSTextLayoutOrientation,AppKit.NSTextAlternatives,AppKit.NSSpellingState) -M:Foundation.NSAttributedString.#ctor(System.String,Foundation.NSDictionary@) M:Foundation.NSAttributedString.Create(AppKit.NSAdaptiveImageGlyph,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:Foundation.NSAttributedString.Create(UIKit.NSAdaptiveImageGlyph,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) M:Foundation.NSAttributedString.DoubleClick(System.UIntPtr) @@ -13705,7 +13182,6 @@ M:Foundation.NSCache.add_WillEvictObject(System.EventHandler{Foundation.NSObject M:Foundation.NSCache.Dispose(System.Boolean) M:Foundation.NSCache.remove_WillEvictObject(System.EventHandler{Foundation.NSObjectEventArgs}) M:Foundation.NSCache.SetObjectForKey(Foundation.NSObject,Foundation.NSObject) -M:Foundation.NSCacheDelegate_Extensions.WillEvictObject(Foundation.INSCacheDelegate,Foundation.NSCache,Foundation.NSObject) M:Foundation.NSCoder.DecodeBytes(System.String,System.UIntPtr) M:Foundation.NSCoder.DecodeBytes(System.UIntPtr) M:Foundation.NSCoder.TryDecode(System.String,System.IntPtr@) @@ -13756,42 +13232,9 @@ M:Foundation.NSFileManager_NSUserInformation.GetHomeDirectoryForCurrentUser(Foun M:Foundation.NSFileManager_NSUserInformation.GetTemporaryDirectory(Foundation.NSFileManager) M:Foundation.NSFileManager.Dispose(System.Boolean) M:Foundation.NSFileManager.GetHomeDirectory(System.String) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldCopyItemAtPath(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSString,Foundation.NSString) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldCopyItemAtUrl(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldLinkItemAtPath(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,System.String,System.String) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldLinkItemAtUrl(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldMoveItemAtPath(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,System.String,System.String) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldMoveItemAtUrl(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorCopyingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorCopyingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,System.String,System.String) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorLinkingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorLinkingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,System.String,System.String) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorMovingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorMovingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,System.String,System.String) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorRemovingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,Foundation.NSUrl) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldProceedAfterErrorRemovingItem(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSError,System.String) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldRemoveItemAtPath(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,System.String) -M:Foundation.NSFileManagerDelegate_Extensions.ShouldRemoveItemAtUrl(Foundation.INSFileManagerDelegate,Foundation.NSFileManager,Foundation.NSUrl) -M:Foundation.NSFilePresenter_Extensions.AccommodatePresentedItemDeletion(Foundation.INSFilePresenter,System.Action{Foundation.NSError}) M:Foundation.NSFilePresenter_Extensions.AccommodatePresentedItemEviction(Foundation.INSFilePresenter,System.Action{Foundation.NSError}) -M:Foundation.NSFilePresenter_Extensions.AccommodatePresentedSubitemDeletion(Foundation.INSFilePresenter,Foundation.NSUrl,System.Action{Foundation.NSError}) M:Foundation.NSFilePresenter_Extensions.GetPresentedItemObservedUbiquityAttributes(Foundation.INSFilePresenter) M:Foundation.NSFilePresenter_Extensions.GetPrimaryPresentedItemUrl(Foundation.INSFilePresenter) -M:Foundation.NSFilePresenter_Extensions.PresentedItemChanged(Foundation.INSFilePresenter) -M:Foundation.NSFilePresenter_Extensions.PresentedItemChangedUbiquityAttributes(Foundation.INSFilePresenter,Foundation.NSSet{Foundation.NSString}) -M:Foundation.NSFilePresenter_Extensions.PresentedItemGainedVersion(Foundation.INSFilePresenter,Foundation.NSFileVersion) -M:Foundation.NSFilePresenter_Extensions.PresentedItemLostVersion(Foundation.INSFilePresenter,Foundation.NSFileVersion) -M:Foundation.NSFilePresenter_Extensions.PresentedItemMoved(Foundation.INSFilePresenter,Foundation.NSUrl) -M:Foundation.NSFilePresenter_Extensions.PresentedItemResolveConflictVersion(Foundation.INSFilePresenter,Foundation.NSFileVersion) -M:Foundation.NSFilePresenter_Extensions.PresentedSubitemAppeared(Foundation.INSFilePresenter,Foundation.NSUrl) -M:Foundation.NSFilePresenter_Extensions.PresentedSubitemChanged(Foundation.INSFilePresenter,Foundation.NSUrl) -M:Foundation.NSFilePresenter_Extensions.PresentedSubitemGainedVersion(Foundation.INSFilePresenter,Foundation.NSUrl,Foundation.NSFileVersion) -M:Foundation.NSFilePresenter_Extensions.PresentedSubitemLostVersion(Foundation.INSFilePresenter,Foundation.NSUrl,Foundation.NSFileVersion) -M:Foundation.NSFilePresenter_Extensions.PresentedSubitemMoved(Foundation.INSFilePresenter,Foundation.NSUrl,Foundation.NSUrl) -M:Foundation.NSFilePresenter_Extensions.PresentedSubitemResolvedConflictVersion(Foundation.INSFilePresenter,Foundation.NSUrl,Foundation.NSFileVersion) -M:Foundation.NSFilePresenter_Extensions.RelinquishPresentedItemToReader(Foundation.INSFilePresenter,Foundation.NSFilePresenterReacquirer) -M:Foundation.NSFilePresenter_Extensions.RelinquishPresentedItemToWriter(Foundation.INSFilePresenter,Foundation.NSFilePresenterReacquirer) -M:Foundation.NSFilePresenter_Extensions.SavePresentedItemChanges(Foundation.INSFilePresenter,System.Action{Foundation.NSError}) M:Foundation.NSFileProviderService.GetFileProviderConnectionAsync M:Foundation.NSFileSystemAttributes.op_Implicit(Foundation.NSFileSystemAttributes)~Foundation.NSDictionary M:Foundation.NSHost.op_Explicit(Foundation.NSHost)~System.Net.IPAddress @@ -13815,7 +13258,6 @@ M:Foundation.NSItemProvider.RegisterCKShare(CloudKit.CKShare,CloudKit.CKContaine M:Foundation.NSItemProvider.RegisterDataRepresentation(UniformTypeIdentifiers.UTType,Foundation.NSItemProviderRepresentationVisibility,Foundation.NSItemProviderUTTypeLoadDelegate) M:Foundation.NSItemProvider.RegisteredContentTypesConforming(UniformTypeIdentifiers.UTType) M:Foundation.NSItemProvider.RegisterFileRepresentation(UniformTypeIdentifiers.UTType,Foundation.NSItemProviderRepresentationVisibility,System.Boolean,Foundation.NSItemProviderUTTypeLoadDelegate) -M:Foundation.NSItemProviderWriting_Extensions.GetItemProviderVisibilityForTypeIdentifier(Foundation.INSItemProviderWriting,System.String) M:Foundation.NSItemProviderWriting_Extensions.GetWritableTypeIdentifiersForItemProvider(Foundation.INSItemProviderWriting) M:Foundation.NSItemProviderWriting_Extensions.LoadDataAsync(Foundation.INSItemProviderWriting,System.String,Foundation.NSProgress@) M:Foundation.NSItemProviderWriting_Extensions.LoadDataAsync(Foundation.INSItemProviderWriting,System.String) @@ -13828,11 +13270,6 @@ M:Foundation.NSKeyedArchiver.remove_EncodedObject(System.EventHandler{Foundation M:Foundation.NSKeyedArchiver.remove_Finished(System.EventHandler) M:Foundation.NSKeyedArchiver.remove_Finishing(System.EventHandler) M:Foundation.NSKeyedArchiver.remove_ReplacingObject(System.EventHandler{Foundation.NSArchiveReplaceEventArgs}) -M:Foundation.NSKeyedArchiverDelegate_Extensions.EncodedObject(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver,Foundation.NSObject) -M:Foundation.NSKeyedArchiverDelegate_Extensions.Finished(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver) -M:Foundation.NSKeyedArchiverDelegate_Extensions.Finishing(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver) -M:Foundation.NSKeyedArchiverDelegate_Extensions.ReplacingObject(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver,Foundation.NSObject,Foundation.NSObject) -M:Foundation.NSKeyedArchiverDelegate_Extensions.WillEncode(Foundation.INSKeyedArchiverDelegate,Foundation.NSKeyedArchiver,Foundation.NSObject) M:Foundation.NSKeyedUnarchiver.add_Finished(System.EventHandler) M:Foundation.NSKeyedUnarchiver.add_Finishing(System.EventHandler) M:Foundation.NSKeyedUnarchiver.add_ReplacingObject(System.EventHandler{Foundation.NSArchiveReplaceEventArgs}) @@ -13840,11 +13277,6 @@ M:Foundation.NSKeyedUnarchiver.Dispose(System.Boolean) M:Foundation.NSKeyedUnarchiver.remove_Finished(System.EventHandler) M:Foundation.NSKeyedUnarchiver.remove_Finishing(System.EventHandler) M:Foundation.NSKeyedUnarchiver.remove_ReplacingObject(System.EventHandler{Foundation.NSArchiveReplaceEventArgs}) -M:Foundation.NSKeyedUnarchiverDelegate_Extensions.CannotDecodeClass(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver,System.String,System.String[]) -M:Foundation.NSKeyedUnarchiverDelegate_Extensions.DecodedObject(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver,Foundation.NSObject) -M:Foundation.NSKeyedUnarchiverDelegate_Extensions.Finished(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver) -M:Foundation.NSKeyedUnarchiverDelegate_Extensions.Finishing(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver) -M:Foundation.NSKeyedUnarchiverDelegate_Extensions.ReplacingObject(Foundation.INSKeyedUnarchiverDelegate,Foundation.NSKeyedUnarchiver,Foundation.NSObject,Foundation.NSObject) M:Foundation.NSKeyValueSharedObserverRegistration_NSObject.SetSharedObservers(Foundation.NSObject,Foundation.NSKeyValueSharedObserversSnapshot) M:Foundation.NSKeyValueSharedObservers.#ctor(System.Type) M:Foundation.NSKeyValueSorting_NSMutableOrderedSet.SortUsingDescriptors(Foundation.NSMutableOrderedSet,Foundation.NSSortDescriptor[]) @@ -13853,10 +13285,7 @@ M:Foundation.NSLinguisticAnalysis.EnumerateLinguisticTags(Foundation.NSString,Fo 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.NSMachPortDelegate_Extensions.MachMessageReceived(Foundation.INSMachPortDelegate,System.IntPtr) M:Foundation.NSMetadataQuery.Dispose(System.Boolean) -M:Foundation.NSMetadataQueryDelegate_Extensions.ReplacementObjectForResultObject(Foundation.INSMetadataQueryDelegate,Foundation.NSMetadataQuery,Foundation.NSMetadataItem) -M:Foundation.NSMetadataQueryDelegate_Extensions.ReplacementValueForAttributevalue(Foundation.INSMetadataQueryDelegate,Foundation.NSMetadataQuery,System.String,Foundation.NSObject) M:Foundation.NSMutableArray`1.#ctor(System.UIntPtr) M:Foundation.NSMutableArray`1.Insert(`0,System.IntPtr) M:Foundation.NSMutableArray`1.ReplaceObject(System.IntPtr,`0) @@ -13916,22 +13345,6 @@ M:Foundation.NSNetServiceBrowser.remove_NotSearched(System.EventHandler{Foundati M:Foundation.NSNetServiceBrowser.remove_SearchStarted(System.EventHandler) M:Foundation.NSNetServiceBrowser.remove_SearchStopped(System.EventHandler) M:Foundation.NSNetServiceBrowser.remove_ServiceRemoved(System.EventHandler{Foundation.NSNetServiceEventArgs}) -M:Foundation.NSNetServiceBrowserDelegate_Extensions.DomainRemoved(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,System.String,System.Boolean) -M:Foundation.NSNetServiceBrowserDelegate_Extensions.FoundDomain(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,System.String,System.Boolean) -M:Foundation.NSNetServiceBrowserDelegate_Extensions.FoundService(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,Foundation.NSNetService,System.Boolean) -M:Foundation.NSNetServiceBrowserDelegate_Extensions.NotSearched(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,Foundation.NSDictionary) -M:Foundation.NSNetServiceBrowserDelegate_Extensions.SearchStarted(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser) -M:Foundation.NSNetServiceBrowserDelegate_Extensions.SearchStopped(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser) -M:Foundation.NSNetServiceBrowserDelegate_Extensions.ServiceRemoved(Foundation.INSNetServiceBrowserDelegate,Foundation.NSNetServiceBrowser,Foundation.NSNetService,System.Boolean) -M:Foundation.NSNetServiceDelegate_Extensions.AddressResolved(Foundation.INSNetServiceDelegate,Foundation.NSNetService) -M:Foundation.NSNetServiceDelegate_Extensions.DidAcceptConnection(Foundation.INSNetServiceDelegate,Foundation.NSNetService,Foundation.NSInputStream,Foundation.NSOutputStream) -M:Foundation.NSNetServiceDelegate_Extensions.Published(Foundation.INSNetServiceDelegate,Foundation.NSNetService) -M:Foundation.NSNetServiceDelegate_Extensions.PublishFailure(Foundation.INSNetServiceDelegate,Foundation.NSNetService,Foundation.NSDictionary) -M:Foundation.NSNetServiceDelegate_Extensions.ResolveFailure(Foundation.INSNetServiceDelegate,Foundation.NSNetService,Foundation.NSDictionary) -M:Foundation.NSNetServiceDelegate_Extensions.Stopped(Foundation.INSNetServiceDelegate,Foundation.NSNetService) -M:Foundation.NSNetServiceDelegate_Extensions.UpdatedTxtRecordData(Foundation.INSNetServiceDelegate,Foundation.NSNetService,Foundation.NSData) -M:Foundation.NSNetServiceDelegate_Extensions.WillPublish(Foundation.INSNetServiceDelegate,Foundation.NSNetService) -M:Foundation.NSNetServiceDelegate_Extensions.WillResolve(Foundation.INSNetServiceDelegate,Foundation.NSNetService) M:Foundation.NSNotificationQueue.EnqueueNotification(Foundation.NSNotification,Foundation.NSPostingStyle,Foundation.NSNotificationCoalescing,Foundation.NSRunLoopMode[]) M:Foundation.NSNumber.#ctor(System.Runtime.InteropServices.NFloat) M:Foundation.NSNumber.FromNFloat(System.Runtime.InteropServices.NFloat) @@ -14032,7 +13445,6 @@ M:Foundation.NSStream.add_OnEvent(System.EventHandler{Foundation.NSStreamEventAr M:Foundation.NSStream.CreateBoundPair(Foundation.NSInputStream@,Foundation.NSOutputStream@,System.IntPtr) M:Foundation.NSStream.Dispose(System.Boolean) M:Foundation.NSStream.remove_OnEvent(System.EventHandler{Foundation.NSStreamEventArgs}) -M:Foundation.NSStreamDelegate_Extensions.HandleEvent(Foundation.INSStreamDelegate,Foundation.NSStream,Foundation.NSStreamEvent) M:Foundation.NSStreamSocksOptions.#ctor M:Foundation.NSString.BoundingRectWithSize(CoreGraphics.CGSize,Foundation.NSStringDrawingOptions,Foundation.NSDictionary) M:Foundation.NSString.CompareTo(Foundation.NSString) @@ -14074,21 +13486,7 @@ M:Foundation.NSUrlAsyncResult.#ctor(Foundation.NSUrlResponse,Foundation.NSData) M:Foundation.NSUrlAuthenticationChallengeSender_Extensions.PerformDefaultHandling(Foundation.INSUrlAuthenticationChallengeSender,Foundation.NSUrlAuthenticationChallenge) M:Foundation.NSUrlAuthenticationChallengeSender_Extensions.RejectProtectionSpaceAndContinue(Foundation.INSUrlAuthenticationChallengeSender,Foundation.NSUrlAuthenticationChallenge) M:Foundation.NSUrlConnection.SendRequestAsync(Foundation.NSUrlRequest,Foundation.NSOperationQueue) -M:Foundation.NSUrlConnectionDataDelegate_Extensions.FinishedLoading(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection) -M:Foundation.NSUrlConnectionDataDelegate_Extensions.NeedNewBodyStream(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSUrlRequest) -M:Foundation.NSUrlConnectionDataDelegate_Extensions.ReceivedData(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSData) -M:Foundation.NSUrlConnectionDataDelegate_Extensions.ReceivedResponse(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSUrlResponse) M:Foundation.NSUrlConnectionDataDelegate_Extensions.SentBodyData(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,System.IntPtr,System.IntPtr,System.IntPtr) -M:Foundation.NSUrlConnectionDataDelegate_Extensions.WillCacheResponse(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSCachedUrlResponse) -M:Foundation.NSUrlConnectionDataDelegate_Extensions.WillSendRequest(Foundation.INSUrlConnectionDataDelegate,Foundation.NSUrlConnection,Foundation.NSUrlRequest,Foundation.NSUrlResponse) -M:Foundation.NSUrlConnectionDelegate_Extensions.CanAuthenticateAgainstProtectionSpace(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSUrlProtectionSpace) -M:Foundation.NSUrlConnectionDelegate_Extensions.CanceledAuthenticationChallenge(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge) -M:Foundation.NSUrlConnectionDelegate_Extensions.ConnectionShouldUseCredentialStorage(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection) -M:Foundation.NSUrlConnectionDelegate_Extensions.FailedWithError(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSError) -M:Foundation.NSUrlConnectionDelegate_Extensions.ReceivedAuthenticationChallenge(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge) -M:Foundation.NSUrlConnectionDelegate_Extensions.WillSendRequestForAuthenticationChallenge(Foundation.INSUrlConnectionDelegate,Foundation.NSUrlConnection,Foundation.NSUrlAuthenticationChallenge) -M:Foundation.NSUrlConnectionDownloadDelegate_Extensions.ResumedDownloading(Foundation.INSUrlConnectionDownloadDelegate,Foundation.NSUrlConnection,System.Int64,System.Int64) -M:Foundation.NSUrlConnectionDownloadDelegate_Extensions.WroteData(Foundation.INSUrlConnectionDownloadDelegate,Foundation.NSUrlConnection,System.Int64,System.Int64,System.Int64) M:Foundation.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) @@ -14110,36 +13508,14 @@ M:Foundation.NSUrlSession.ResetAsync M:Foundation.NSUrlSessionActiveTasks.#ctor(Foundation.NSUrlSessionTask[],Foundation.NSUrlSessionTask[],Foundation.NSUrlSessionTask[]) M:Foundation.NSUrlSessionCombinedTasks.#ctor(Foundation.NSUrlSessionTask[]) M:Foundation.NSUrlSessionConfiguration.Dispose(System.Boolean) -M:Foundation.NSUrlSessionDataDelegate_Extensions.DidBecomeDownloadTask(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlSessionDownloadTask) -M:Foundation.NSUrlSessionDataDelegate_Extensions.DidBecomeStreamTask(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlSessionStreamTask) -M:Foundation.NSUrlSessionDataDelegate_Extensions.DidReceiveData(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSData) -M:Foundation.NSUrlSessionDataDelegate_Extensions.DidReceiveResponse(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSUrlResponse,System.Action{Foundation.NSUrlSessionResponseDisposition}) -M:Foundation.NSUrlSessionDataDelegate_Extensions.WillCacheResponse(Foundation.INSUrlSessionDataDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDataTask,Foundation.NSCachedUrlResponse,System.Action{Foundation.NSCachedUrlResponse}) M:Foundation.NSUrlSessionDataTaskRequest.#ctor(Foundation.NSData,Foundation.NSUrlResponse) -M:Foundation.NSUrlSessionDelegate_Extensions.DidBecomeInvalid(Foundation.INSUrlSessionDelegate,Foundation.NSUrlSession,Foundation.NSError) -M:Foundation.NSUrlSessionDelegate_Extensions.DidFinishEventsForBackgroundSession(Foundation.INSUrlSessionDelegate,Foundation.NSUrlSession) -M:Foundation.NSUrlSessionDelegate_Extensions.DidReceiveChallenge(Foundation.INSUrlSessionDelegate,Foundation.NSUrlSession,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential}) -M:Foundation.NSUrlSessionDownloadDelegate_Extensions.DidResume(Foundation.INSUrlSessionDownloadDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,System.Int64,System.Int64) -M:Foundation.NSUrlSessionDownloadDelegate_Extensions.DidWriteData(Foundation.INSUrlSessionDownloadDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionDownloadTask,System.Int64,System.Int64,System.Int64) M:Foundation.NSUrlSessionDownloadTaskRequest.#ctor(Foundation.NSUrl,Foundation.NSUrlResponse) M:Foundation.NSUrlSessionDownloadTaskRequest.Finalize M:Foundation.NSUrlSessionStreamDataRead.#ctor(Foundation.NSData,System.Boolean) -M:Foundation.NSUrlSessionStreamDelegate_Extensions.BetterRouteDiscovered(Foundation.INSUrlSessionStreamDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask) -M:Foundation.NSUrlSessionStreamDelegate_Extensions.CompletedTaskCaptureStreams(Foundation.INSUrlSessionStreamDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask,Foundation.NSInputStream,Foundation.NSOutputStream) -M:Foundation.NSUrlSessionStreamDelegate_Extensions.ReadClosed(Foundation.INSUrlSessionStreamDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask) -M:Foundation.NSUrlSessionStreamDelegate_Extensions.WriteClosed(Foundation.INSUrlSessionStreamDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionStreamTask) M:Foundation.NSUrlSessionStreamTask.ReadDataAsync(System.UIntPtr,System.UIntPtr,System.Double) -M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidCompleteWithError(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSError) M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidCreateTask(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask) -M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidFinishCollectingMetrics(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlSessionTaskMetrics) -M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidReceiveChallenge(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential}) M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidReceiveInformationalResponse(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse) -M:Foundation.NSUrlSessionTaskDelegate_Extensions.DidSendBodyData(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Int64,System.Int64) -M:Foundation.NSUrlSessionTaskDelegate_Extensions.NeedNewBodyStream(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Action{Foundation.NSInputStream}) M:Foundation.NSUrlSessionTaskDelegate_Extensions.NeedNewBodyStream(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,System.Int64,System.Action{Foundation.NSInputStream}) -M:Foundation.NSUrlSessionTaskDelegate_Extensions.TaskIsWaitingForConnectivity(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask) -M:Foundation.NSUrlSessionTaskDelegate_Extensions.WillBeginDelayedRequest(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlSessionDelayedRequestDisposition,Foundation.NSUrlRequest}) -M:Foundation.NSUrlSessionTaskDelegate_Extensions.WillPerformHttpRedirection(Foundation.INSUrlSessionTaskDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionTask,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{Foundation.NSUrlRequest}) M:Foundation.NSUrlSessionUploadTask.CancelByProducingResumeDataAsync M:Foundation.NSUrlSessionUploadTaskResumeRequest.#ctor(Foundation.NSData,Foundation.NSUrlResponse) M:Foundation.NSUrlSessionWebSocketDelegate_Extensions.DidClose(Foundation.INSUrlSessionWebSocketDelegate,Foundation.NSUrlSession,Foundation.NSUrlSessionWebSocketTask,Foundation.NSUrlSessionWebSocketCloseCode,Foundation.NSData) @@ -14157,9 +13533,6 @@ M:Foundation.NSUserActivity.GetContinuationStreamsAsync M:Foundation.NSUserActivity.LoadDataAsync(System.String,Foundation.NSProgress@) M:Foundation.NSUserActivity.LoadDataAsync(System.String) M:Foundation.NSUserActivityContinuation.#ctor(Foundation.NSInputStream,Foundation.NSOutputStream) -M:Foundation.NSUserActivityDelegate_Extensions.UserActivityReceivedData(Foundation.INSUserActivityDelegate,Foundation.NSUserActivity,Foundation.NSInputStream,Foundation.NSOutputStream) -M:Foundation.NSUserActivityDelegate_Extensions.UserActivityWasContinued(Foundation.INSUserActivityDelegate,Foundation.NSUserActivity) -M:Foundation.NSUserActivityDelegate_Extensions.UserActivityWillSave(Foundation.INSUserActivityDelegate,Foundation.NSUserActivity) M:Foundation.NSUserNotificationCenter.add_DidActivateNotification(System.EventHandler{Foundation.UNCDidActivateNotificationEventArgs}) M:Foundation.NSUserNotificationCenter.add_DidDeliverNotification(System.EventHandler{Foundation.UNCDidDeliverNotificationEventArgs}) M:Foundation.NSUserNotificationCenter.Dispose(System.Boolean) @@ -14267,47 +13640,24 @@ M:GameKit.GKChallengeEventHandler.remove_LocalPlayerCompletedChallenge(System.Ev M:GameKit.GKChallengeEventHandler.remove_LocalPlayerReceivedChallenge(System.EventHandler) M:GameKit.GKChallengeEventHandler.remove_LocalPlayerSelectedChallenge(System.EventHandler) M:GameKit.GKChallengeEventHandler.remove_RemotePlayerCompletedChallenge(System.EventHandler) -M:GameKit.GKChallengeEventHandlerDelegate_Extensions.LocalPlayerCompletedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge) -M:GameKit.GKChallengeEventHandlerDelegate_Extensions.LocalPlayerReceivedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge) -M:GameKit.GKChallengeEventHandlerDelegate_Extensions.LocalPlayerSelectedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge) -M:GameKit.GKChallengeEventHandlerDelegate_Extensions.RemotePlayerCompletedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge) -M:GameKit.GKChallengeEventHandlerDelegate_Extensions.ShouldShowBannerForLocallyCompletedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge) -M:GameKit.GKChallengeEventHandlerDelegate_Extensions.ShouldShowBannerForLocallyReceivedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge) -M:GameKit.GKChallengeEventHandlerDelegate_Extensions.ShouldShowBannerForRemotelyCompletedChallenge(GameKit.IGKChallengeEventHandlerDelegate,GameKit.GKChallenge) -M:GameKit.GKChallengeListener_Extensions.DidCompleteChallenge(GameKit.IGKChallengeListener,GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer) -M:GameKit.GKChallengeListener_Extensions.DidReceiveChallenge(GameKit.IGKChallengeListener,GameKit.GKPlayer,GameKit.GKChallenge) -M:GameKit.GKChallengeListener_Extensions.IssuedChallengeWasCompleted(GameKit.IGKChallengeListener,GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer) -M:GameKit.GKChallengeListener_Extensions.WantsToPlayChallenge(GameKit.IGKChallengeListener,GameKit.GKPlayer,GameKit.GKChallenge) -M:GameKit.GKChallengesViewController.#ctor(System.String,Foundation.NSBundle) M:GameKit.GKChallengesViewController.Dispose(System.Boolean) M:GameKit.GKDialogController.Dispose(System.Boolean) M:GameKit.GKEntriesForPlayerScopeResult.#ctor(GameKit.GKLeaderboardEntry,GameKit.GKLeaderboardEntry[],System.IntPtr) M:GameKit.GKEntriesForPlayersResult.#ctor(GameKit.GKLeaderboardEntry,GameKit.GKLeaderboardEntry[]) M:GameKit.GKFetchItemsForIdentityVerificationSignature.#ctor(Foundation.NSUrl,Foundation.NSData,Foundation.NSData,System.UInt64) -M:GameKit.GKFriendRequestComposeViewController.#ctor(System.String,Foundation.NSBundle) M:GameKit.GKFriendRequestComposeViewController.add_DidFinish(System.EventHandler) M:GameKit.GKFriendRequestComposeViewController.Dispose(System.Boolean) M:GameKit.GKFriendRequestComposeViewController.GKFriendRequestComposeViewControllerAppearance.#ctor(System.IntPtr) M:GameKit.GKFriendRequestComposeViewController.remove_DidFinish(System.EventHandler) -M:GameKit.GKGameCenterViewController.#ctor(System.String,Foundation.NSBundle) M:GameKit.GKGameCenterViewController.add_Finished(System.EventHandler) M:GameKit.GKGameCenterViewController.Dispose(System.Boolean) M:GameKit.GKGameCenterViewController.remove_Finished(System.EventHandler) M:GameKit.GKGameSession.CreateSessionAsync(System.String,System.String,System.IntPtr) M:GameKit.GKGameSession.GetShareUrlAsync M:GameKit.GKGameSession.LoadDataAsync -M:GameKit.GKGameSessionEventListener_Extensions.DidAddPlayer(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,GameKit.GKCloudPlayer) -M:GameKit.GKGameSessionEventListener_Extensions.DidChangeConnectionState(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,GameKit.GKCloudPlayer,GameKit.GKConnectionState) -M:GameKit.GKGameSessionEventListener_Extensions.DidReceiveData(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,Foundation.NSData,GameKit.GKCloudPlayer) -M:GameKit.GKGameSessionEventListener_Extensions.DidReceiveMessage(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,System.String,Foundation.NSData,GameKit.GKCloudPlayer) -M:GameKit.GKGameSessionEventListener_Extensions.DidRemovePlayer(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,GameKit.GKCloudPlayer) -M:GameKit.GKGameSessionEventListener_Extensions.DidSaveData(GameKit.IGKGameSessionEventListener,GameKit.GKGameSession,GameKit.GKCloudPlayer,Foundation.NSData) M:GameKit.GKGameSessionSharingViewController.#ctor(System.String,Foundation.NSBundle) M:GameKit.GKGameSessionSharingViewController.Dispose(System.Boolean) M:GameKit.GKIdentityVerificationSignatureResult.#ctor(Foundation.NSUrl,Foundation.NSData,Foundation.NSData,System.UInt64) -M:GameKit.GKInviteEventListener_Extensions.DidAcceptInvite(GameKit.IGKInviteEventListener,GameKit.GKPlayer,GameKit.GKInvite) -M:GameKit.GKInviteEventListener_Extensions.DidRequestMatch(GameKit.IGKInviteEventListener,GameKit.GKPlayer,GameKit.GKPlayer[]) -M:GameKit.GKInviteEventListener_Extensions.DidRequestMatch(GameKit.IGKInviteEventListener,GameKit.GKPlayer,System.String[]) M:GameKit.GKLeaderboard.LoadCategoriesAsync M:GameKit.GKLeaderboard.LoadEntriesAsync(GameKit.GKLeaderboardPlayerScope,GameKit.GKLeaderboardTimeScope,Foundation.NSRange) M:GameKit.GKLeaderboard.LoadEntriesAsync(GameKit.GKPlayer[],GameKit.GKLeaderboardTimeScope) @@ -14360,19 +13710,10 @@ M:GameKit.GKMatch.remove_DataReceivedFromPlayer(System.EventHandler{GameKit.GKMa M:GameKit.GKMatch.remove_Failed(System.EventHandler{GameKit.GKErrorEventArgs}) M:GameKit.GKMatch.remove_StateChanged(System.EventHandler{GameKit.GKStateEventArgs}) M:GameKit.GKMatch.remove_StateChangedForPlayer(System.EventHandler{GameKit.GKMatchConnectionChangedEventArgs}) -M:GameKit.GKMatchDelegate_Extensions.DataReceived(GameKit.IGKMatchDelegate,GameKit.GKMatch,Foundation.NSData,System.String) -M:GameKit.GKMatchDelegate_Extensions.DataReceivedForRecipient(GameKit.IGKMatchDelegate,GameKit.GKMatch,Foundation.NSData,GameKit.GKPlayer,GameKit.GKPlayer) -M:GameKit.GKMatchDelegate_Extensions.DataReceivedFromPlayer(GameKit.IGKMatchDelegate,GameKit.GKMatch,Foundation.NSData,GameKit.GKPlayer) -M:GameKit.GKMatchDelegate_Extensions.Failed(GameKit.IGKMatchDelegate,GameKit.GKMatch,Foundation.NSError) -M:GameKit.GKMatchDelegate_Extensions.ShouldReinviteDisconnectedPlayer(GameKit.IGKMatchDelegate,GameKit.GKMatch,GameKit.GKPlayer) -M:GameKit.GKMatchDelegate_Extensions.ShouldReinvitePlayer(GameKit.IGKMatchDelegate,GameKit.GKMatch,System.String) -M:GameKit.GKMatchDelegate_Extensions.StateChanged(GameKit.IGKMatchDelegate,GameKit.GKMatch,System.String,GameKit.GKPlayerConnectionState) -M:GameKit.GKMatchDelegate_Extensions.StateChangedForPlayer(GameKit.IGKMatchDelegate,GameKit.GKMatch,GameKit.GKPlayer,GameKit.GKPlayerConnectionState) M:GameKit.GKMatchmaker.FindMatchedPlayersAsync(GameKit.GKMatchRequest) M:GameKit.GKMatchmaker.QueryActivityAsync M:GameKit.GKMatchmaker.QueryPlayerGroupActivityAsync(System.IntPtr) M:GameKit.GKMatchmaker.QueryQueueActivityAsync(System.String) -M:GameKit.GKMatchmakerViewController.#ctor(System.String,Foundation.NSBundle) M:GameKit.GKMatchmakerViewController.add_DidFailWithError(System.EventHandler{GameKit.GKErrorEventArgs}) M:GameKit.GKMatchmakerViewController.add_DidFindHostedPlayers(System.EventHandler{GameKit.GKMatchmakingPlayersEventArgs}) M:GameKit.GKMatchmakerViewController.add_DidFindMatch(System.EventHandler{GameKit.GKMatchEventArgs}) @@ -14392,14 +13733,10 @@ M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.DidFindHostedPlayers(Gam M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.DidFindMatch(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,GameKit.GKMatch) M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.DidFindPlayers(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,System.String[]) M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.GetMatchProperties(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,GameKit.GKPlayer,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}}) -M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.HostedPlayerDidAccept(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,GameKit.GKPlayer) -M:GameKit.GKMatchmakerViewControllerDelegate_Extensions.ReceivedAcceptFromHostedPlayer(GameKit.IGKMatchmakerViewControllerDelegate,GameKit.GKMatchmakerViewController,System.String) M:GameKit.GKPeerPickerController.#ctor(ObjCRuntime.NativeHandle) M:GameKit.GKPeerPickerControllerDelegate.#ctor(ObjCRuntime.NativeHandle) M:GameKit.GKSavedGame.Copy(Foundation.NSZone) M:GameKit.GKSavedGame.LoadDataAsync -M:GameKit.GKSavedGameListener_Extensions.DidModifySavedGame(GameKit.IGKSavedGameListener,GameKit.GKPlayer,GameKit.GKSavedGame) -M:GameKit.GKSavedGameListener_Extensions.HasConflictingSavedGames(GameKit.IGKSavedGameListener,GameKit.GKPlayer,GameKit.GKSavedGame[]) M:GameKit.GKScore.ReportLeaderboardScoresAsync(GameKit.GKLeaderboardScore[],GameKit.GKChallenge[]) M:GameKit.GKScore.ReportScoreAsync M:GameKit.GKSession.add_ConnectionFailed(System.EventHandler{GameKit.GKPeerConnectionEventArgs}) @@ -14413,21 +13750,7 @@ M:GameKit.GKSession.remove_ConnectionRequest(System.EventHandler{GameKit.GKPeerC M:GameKit.GKSession.remove_Failed(System.EventHandler{GameKit.GKPeerConnectionEventArgs}) M:GameKit.GKSession.remove_PeerChanged(System.EventHandler{GameKit.GKPeerChangedStateEventArgs}) M:GameKit.GKSession.remove_ReceiveData(System.EventHandler{GameKit.GKDataReceivedEventArgs}) -M:GameKit.GKSessionDelegate_Extensions.FailedWithError(GameKit.IGKSessionDelegate,GameKit.GKSession,Foundation.NSError) -M:GameKit.GKSessionDelegate_Extensions.PeerChangedState(GameKit.IGKSessionDelegate,GameKit.GKSession,System.String,GameKit.GKPeerConnectionState) -M:GameKit.GKSessionDelegate_Extensions.PeerConnectionFailed(GameKit.IGKSessionDelegate,GameKit.GKSession,System.String,Foundation.NSError) -M:GameKit.GKSessionDelegate_Extensions.PeerConnectionRequest(GameKit.IGKSessionDelegate,GameKit.GKSession,System.String) M:GameKit.GKTurnBasedEventHandler.Dispose(System.Boolean) -M:GameKit.GKTurnBasedEventHandlerDelegate_Extensions.HandleMatchEnded(GameKit.IGKTurnBasedEventHandlerDelegate,GameKit.GKTurnBasedMatch) -M:GameKit.GKTurnBasedEventHandlerDelegate_Extensions.HandleTurnEventForMatch(GameKit.IGKTurnBasedEventHandlerDelegate,GameKit.GKTurnBasedMatch) -M:GameKit.GKTurnBasedEventListener_Extensions.DidRequestMatchWithOtherPlayers(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKPlayer[]) -M:GameKit.GKTurnBasedEventListener_Extensions.DidRequestMatchWithPlayers(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,System.String[]) -M:GameKit.GKTurnBasedEventListener_Extensions.MatchEnded(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedMatch) -M:GameKit.GKTurnBasedEventListener_Extensions.ReceivedExchangeCancellation(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch) -M:GameKit.GKTurnBasedEventListener_Extensions.ReceivedExchangeReplies(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedExchangeReply[],GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch) -M:GameKit.GKTurnBasedEventListener_Extensions.ReceivedExchangeRequest(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch) -M:GameKit.GKTurnBasedEventListener_Extensions.ReceivedTurnEvent(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedMatch,System.Boolean) -M:GameKit.GKTurnBasedEventListener_Extensions.WantsToQuitMatch(GameKit.IGKTurnBasedEventListener,GameKit.GKPlayer,GameKit.GKTurnBasedMatch) M:GameKit.GKTurnBasedMatch.AcceptInviteAsync M:GameKit.GKTurnBasedMatch.DeclineInviteAsync M:GameKit.GKTurnBasedMatch.EndMatchInTurnAsync(Foundation.NSData,GameKit.GKLeaderboardScore[],Foundation.NSObject[]) @@ -14435,100 +13758,39 @@ M:GameKit.GKTurnBasedMatch.LoadMatchDataAsync M:GameKit.GKTurnBasedMatch.LoadMatchesAsync M:GameKit.GKTurnBasedMatch.RematchAsync M:GameKit.GKTurnBasedMatch.RemoveAsync -M:GameKit.GKTurnBasedMatchmakerViewController.#ctor(System.String,Foundation.NSBundle) M:GameKit.GKTurnBasedMatchmakerViewController.Dispose(System.Boolean) M:GameKit.GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance.#ctor(System.IntPtr) M:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Extensions.FoundMatch(GameKit.IGKTurnBasedMatchmakerViewControllerDelegate,GameKit.GKTurnBasedMatchmakerViewController,GameKit.GKTurnBasedMatch) M:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Extensions.PlayerQuitForMatch(GameKit.IGKTurnBasedMatchmakerViewControllerDelegate,GameKit.GKTurnBasedMatchmakerViewController,GameKit.GKTurnBasedMatch) -M:GameKit.GKVoiceChatClient_Extensions.FailedToConnect(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String,Foundation.NSError) M:GameKit.GKVoiceChatClient_Extensions.ReceivedInvitation(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String,System.IntPtr) -M:GameKit.GKVoiceChatClient_Extensions.SendRealTimeData(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,Foundation.NSData,System.String) -M:GameKit.GKVoiceChatClient_Extensions.Started(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String) -M:GameKit.GKVoiceChatClient_Extensions.Stopped(GameKit.IGKVoiceChatClient,GameKit.GKVoiceChatService,System.String,Foundation.NSError) M:GameKit.GKVoiceChatService.Dispose(System.Boolean) M:GameKit.IGKAchievementViewControllerDelegate.DidFinish(GameKit.GKAchievementViewController) -M:GameKit.IGKChallengeEventHandlerDelegate.LocalPlayerCompletedChallenge(GameKit.GKChallenge) -M:GameKit.IGKChallengeEventHandlerDelegate.LocalPlayerReceivedChallenge(GameKit.GKChallenge) -M:GameKit.IGKChallengeEventHandlerDelegate.LocalPlayerSelectedChallenge(GameKit.GKChallenge) -M:GameKit.IGKChallengeEventHandlerDelegate.RemotePlayerCompletedChallenge(GameKit.GKChallenge) -M:GameKit.IGKChallengeEventHandlerDelegate.ShouldShowBannerForLocallyCompletedChallenge(GameKit.GKChallenge) -M:GameKit.IGKChallengeEventHandlerDelegate.ShouldShowBannerForLocallyReceivedChallenge(GameKit.GKChallenge) -M:GameKit.IGKChallengeEventHandlerDelegate.ShouldShowBannerForRemotelyCompletedChallenge(GameKit.GKChallenge) -M:GameKit.IGKChallengeListener.DidCompleteChallenge(GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer) -M:GameKit.IGKChallengeListener.DidReceiveChallenge(GameKit.GKPlayer,GameKit.GKChallenge) -M:GameKit.IGKChallengeListener.IssuedChallengeWasCompleted(GameKit.GKPlayer,GameKit.GKChallenge,GameKit.GKPlayer) -M:GameKit.IGKChallengeListener.WantsToPlayChallenge(GameKit.GKPlayer,GameKit.GKChallenge) M:GameKit.IGKChallengesViewControllerDelegate.DidFinish(GameKit.GKChallengesViewController) M:GameKit.IGKFriendRequestComposeViewControllerDelegate.DidFinish(GameKit.GKFriendRequestComposeViewController) M:GameKit.IGKGameCenterControllerDelegate.Finished(GameKit.GKGameCenterViewController) -M:GameKit.IGKGameSessionEventListener.DidAddPlayer(GameKit.GKGameSession,GameKit.GKCloudPlayer) -M:GameKit.IGKGameSessionEventListener.DidChangeConnectionState(GameKit.GKGameSession,GameKit.GKCloudPlayer,GameKit.GKConnectionState) -M:GameKit.IGKGameSessionEventListener.DidReceiveData(GameKit.GKGameSession,Foundation.NSData,GameKit.GKCloudPlayer) -M:GameKit.IGKGameSessionEventListener.DidReceiveMessage(GameKit.GKGameSession,System.String,Foundation.NSData,GameKit.GKCloudPlayer) -M:GameKit.IGKGameSessionEventListener.DidRemovePlayer(GameKit.GKGameSession,GameKit.GKCloudPlayer) -M:GameKit.IGKGameSessionEventListener.DidSaveData(GameKit.GKGameSession,GameKit.GKCloudPlayer,Foundation.NSData) M:GameKit.IGKGameSessionSharingViewControllerDelegate.DidFinish(GameKit.GKGameSessionSharingViewController,Foundation.NSError) -M:GameKit.IGKInviteEventListener.DidAcceptInvite(GameKit.GKPlayer,GameKit.GKInvite) -M:GameKit.IGKInviteEventListener.DidRequestMatch(GameKit.GKPlayer,GameKit.GKPlayer[]) -M:GameKit.IGKInviteEventListener.DidRequestMatch(GameKit.GKPlayer,System.String[]) M:GameKit.IGKLeaderboardViewControllerDelegate.DidFinish(GameKit.GKLeaderboardViewController) -M:GameKit.IGKMatchDelegate.DataReceived(GameKit.GKMatch,Foundation.NSData,System.String) -M:GameKit.IGKMatchDelegate.DataReceivedForRecipient(GameKit.GKMatch,Foundation.NSData,GameKit.GKPlayer,GameKit.GKPlayer) -M:GameKit.IGKMatchDelegate.DataReceivedFromPlayer(GameKit.GKMatch,Foundation.NSData,GameKit.GKPlayer) -M:GameKit.IGKMatchDelegate.Failed(GameKit.GKMatch,Foundation.NSError) -M:GameKit.IGKMatchDelegate.ShouldReinviteDisconnectedPlayer(GameKit.GKMatch,GameKit.GKPlayer) -M:GameKit.IGKMatchDelegate.ShouldReinvitePlayer(GameKit.GKMatch,System.String) -M:GameKit.IGKMatchDelegate.StateChanged(GameKit.GKMatch,System.String,GameKit.GKPlayerConnectionState) -M:GameKit.IGKMatchDelegate.StateChangedForPlayer(GameKit.GKMatch,GameKit.GKPlayer,GameKit.GKPlayerConnectionState) 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.HostedPlayerDidAccept(GameKit.GKMatchmakerViewController,GameKit.GKPlayer) -M:GameKit.IGKMatchmakerViewControllerDelegate.ReceivedAcceptFromHostedPlayer(GameKit.GKMatchmakerViewController,System.String) M:GameKit.IGKMatchmakerViewControllerDelegate.WasCancelled(GameKit.GKMatchmakerViewController) -M:GameKit.IGKSavedGameListener.DidModifySavedGame(GameKit.GKPlayer,GameKit.GKSavedGame) -M:GameKit.IGKSavedGameListener.HasConflictingSavedGames(GameKit.GKPlayer,GameKit.GKSavedGame[]) -M:GameKit.IGKSessionDelegate.FailedWithError(GameKit.GKSession,Foundation.NSError) -M:GameKit.IGKSessionDelegate.PeerChangedState(GameKit.GKSession,System.String,GameKit.GKPeerConnectionState) -M:GameKit.IGKSessionDelegate.PeerConnectionFailed(GameKit.GKSession,System.String,Foundation.NSError) -M:GameKit.IGKSessionDelegate.PeerConnectionRequest(GameKit.GKSession,System.String) M:GameKit.IGKTurnBasedEventHandlerDelegate.HandleInviteFromGameCenter(Foundation.NSString[]) -M:GameKit.IGKTurnBasedEventHandlerDelegate.HandleMatchEnded(GameKit.GKTurnBasedMatch) M:GameKit.IGKTurnBasedEventHandlerDelegate.HandleTurnEvent(GameKit.GKTurnBasedMatch,System.Boolean) -M:GameKit.IGKTurnBasedEventHandlerDelegate.HandleTurnEventForMatch(GameKit.GKTurnBasedMatch) -M:GameKit.IGKTurnBasedEventListener.DidRequestMatchWithOtherPlayers(GameKit.GKPlayer,GameKit.GKPlayer[]) -M:GameKit.IGKTurnBasedEventListener.DidRequestMatchWithPlayers(GameKit.GKPlayer,System.String[]) -M:GameKit.IGKTurnBasedEventListener.MatchEnded(GameKit.GKPlayer,GameKit.GKTurnBasedMatch) -M:GameKit.IGKTurnBasedEventListener.ReceivedExchangeCancellation(GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch) -M:GameKit.IGKTurnBasedEventListener.ReceivedExchangeReplies(GameKit.GKPlayer,GameKit.GKTurnBasedExchangeReply[],GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch) -M:GameKit.IGKTurnBasedEventListener.ReceivedExchangeRequest(GameKit.GKPlayer,GameKit.GKTurnBasedExchange,GameKit.GKTurnBasedMatch) -M:GameKit.IGKTurnBasedEventListener.ReceivedTurnEvent(GameKit.GKPlayer,GameKit.GKTurnBasedMatch,System.Boolean) -M:GameKit.IGKTurnBasedEventListener.WantsToQuitMatch(GameKit.GKPlayer,GameKit.GKTurnBasedMatch) 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.FailedToConnect(GameKit.GKVoiceChatService,System.String,Foundation.NSError) 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:GameKit.IGKVoiceChatClient.SendRealTimeData(GameKit.GKVoiceChatService,Foundation.NSData,System.String) -M:GameKit.IGKVoiceChatClient.Started(GameKit.GKVoiceChatService,System.String) -M:GameKit.IGKVoiceChatClient.Stopped(GameKit.GKVoiceChatService,System.String,Foundation.NSError) M:GameplayKit.GKAgent.Dispose(System.Boolean) -M:GameplayKit.GKAgentDelegate_Extensions.AgentDidUpdate(GameplayKit.IGKAgentDelegate,GameplayKit.GKAgent) -M:GameplayKit.GKAgentDelegate_Extensions.AgentWillUpdate(GameplayKit.IGKAgentDelegate,GameplayKit.GKAgent) 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_Extensions.GetScore(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelPlayer) -M:GameplayKit.GKGameModel_Extensions.IsLoss(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelPlayer) -M:GameplayKit.GKGameModel_Extensions.IsWin(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelPlayer) -M:GameplayKit.GKGameModel_Extensions.UnapplyGameModelUpdate(GameplayKit.IGKGameModel,GameplayKit.IGKGameModelUpdate) M:GameplayKit.GKGameModel.#ctor M:GameplayKit.GKGoal.Copy(Foundation.NSZone) M:GameplayKit.GKGraph.Copy(Foundation.NSZone) @@ -14550,17 +13812,11 @@ 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.IGKAgentDelegate.AgentDidUpdate(GameplayKit.GKAgent) -M:GameplayKit.IGKAgentDelegate.AgentWillUpdate(GameplayKit.GKAgent) M:GameplayKit.IGKGameModel.ApplyGameModelUpdate(GameplayKit.IGKGameModelUpdate) M:GameplayKit.IGKGameModel.GetActivePlayer M:GameplayKit.IGKGameModel.GetGameModelUpdates(GameplayKit.IGKGameModelPlayer) M:GameplayKit.IGKGameModel.GetPlayers -M:GameplayKit.IGKGameModel.GetScore(GameplayKit.IGKGameModelPlayer) -M:GameplayKit.IGKGameModel.IsLoss(GameplayKit.IGKGameModelPlayer) -M:GameplayKit.IGKGameModel.IsWin(GameplayKit.IGKGameModelPlayer) M:GameplayKit.IGKGameModel.SetGameModel(GameplayKit.IGKGameModel) -M:GameplayKit.IGKGameModel.UnapplyGameModelUpdate(GameplayKit.IGKGameModelUpdate) M:GameplayKit.IGKRandom.GetNextBool M:GameplayKit.IGKRandom.GetNextInt M:GameplayKit.IGKRandom.GetNextInt(System.UIntPtr) @@ -14581,16 +13837,12 @@ 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.#ctor(CoreGraphics.CGRect) 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.#ctor(System.String,Foundation.NSBundle) M:GLKit.GLKViewController.Dispose(System.Boolean) -M:GLKit.GLKViewControllerDelegate_Extensions.WillPause(GLKit.IGLKViewControllerDelegate,GLKit.GLKViewController,System.Boolean) M:GLKit.IGLKViewControllerDelegate.Update(GLKit.GLKViewController) -M:GLKit.IGLKViewControllerDelegate.WillPause(GLKit.GLKViewController,System.Boolean) M:GLKit.IGLKViewDelegate.DrawInRect(GLKit.GLKView,CoreGraphics.CGRect) M:HealthKit.HKActivityMoveModeObject.Copy(Foundation.NSZone) M:HealthKit.HKActivitySummary.Copy(Foundation.NSZone) @@ -14707,15 +13959,6 @@ M:HomeKit.HMAccessoryBrowser.remove_DidFindNewAccessory(System.EventHandler{Home 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.HMAccessoryDelegate_Extensions.DidAddProfile(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,HomeKit.HMAccessoryProfile) -M:HomeKit.HMAccessoryDelegate_Extensions.DidRemoveProfile(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,HomeKit.HMAccessoryProfile) -M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateAssociatedServiceType(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,HomeKit.HMService) -M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateFirmwareVersion(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,System.String) -M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateName(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory) -M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateNameForService(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,HomeKit.HMService) -M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateReachability(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory) -M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateServices(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory) -M:HomeKit.HMAccessoryDelegate_Extensions.DidUpdateValueForCharacteristic(HomeKit.IHMAccessoryDelegate,HomeKit.HMAccessory,HomeKit.HMService,HomeKit.HMCharacteristic) M:HomeKit.HMAccessoryProfile.Dispose(System.Boolean) M:HomeKit.HMAccessorySetupManager.PerformAccessorySetupAsync(HomeKit.HMAccessorySetupRequest) M:HomeKit.HMAccessorySetupRequest.Copy(Foundation.NSZone) @@ -14723,11 +13966,7 @@ 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.HMCameraSnapshotControlDelegate_Extensions.DidTakeSnapshot(HomeKit.IHMCameraSnapshotControlDelegate,HomeKit.HMCameraSnapshotControl,HomeKit.HMCameraSnapshot,Foundation.NSError) -M:HomeKit.HMCameraSnapshotControlDelegate_Extensions.DidUpdateMostRecentSnapshot(HomeKit.IHMCameraSnapshotControlDelegate,HomeKit.HMCameraSnapshotControl) M:HomeKit.HMCameraStreamControl.Dispose(System.Boolean) -M:HomeKit.HMCameraStreamControlDelegate_Extensions.DidStartStream(HomeKit.IHMCameraStreamControlDelegate,HomeKit.HMCameraStreamControl) -M:HomeKit.HMCameraStreamControlDelegate_Extensions.DidStopStream(HomeKit.IHMCameraStreamControlDelegate,HomeKit.HMCameraStreamControl,Foundation.NSError) M:HomeKit.HMCameraView.HMCameraViewAppearance.#ctor(System.IntPtr) M:HomeKit.HMCharacteristic.Dispose(System.Boolean) M:HomeKit.HMCharacteristic.ReadValueAsync @@ -14807,38 +14046,7 @@ M:HomeKit.HMHome.remove_DidUpdateNameForZone(System.EventHandler{HomeKit.HMHomeZ M:HomeKit.HMHome.remove_DidUpdateRoom(System.EventHandler{HomeKit.HMHomeRoomAccessoryEventArgs}) M:HomeKit.HMHome.remove_DidUpdateSupportedFeatures(System.EventHandler) M:HomeKit.HMHome.remove_DidUpdateTrigger(System.EventHandler{HomeKit.HMHomeTriggerEventArgs}) -M:HomeKit.HMHomeDelegate_Extensions.DidAddAccessory(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMAccessory) -M:HomeKit.HMHomeDelegate_Extensions.DidAddActionSet(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMActionSet) -M:HomeKit.HMHomeDelegate_Extensions.DidAddRoom(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMRoom) -M:HomeKit.HMHomeDelegate_Extensions.DidAddRoomToZone(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMZone) -M:HomeKit.HMHomeDelegate_Extensions.DidAddService(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMService,HomeKit.HMServiceGroup) -M:HomeKit.HMHomeDelegate_Extensions.DidAddServiceGroup(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMServiceGroup) -M:HomeKit.HMHomeDelegate_Extensions.DidAddTrigger(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMTrigger) -M:HomeKit.HMHomeDelegate_Extensions.DidAddUser(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMUser) -M:HomeKit.HMHomeDelegate_Extensions.DidAddZone(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMZone) -M:HomeKit.HMHomeDelegate_Extensions.DidEncounterError(HomeKit.IHMHomeDelegate,HomeKit.HMHome,Foundation.NSError,HomeKit.HMAccessory) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveAccessory(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMAccessory) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveActionSet(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMActionSet) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveRoom(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMRoom) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveRoomFromZone(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMZone) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveService(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMService,HomeKit.HMServiceGroup) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveServiceGroup(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMServiceGroup) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveTrigger(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMTrigger) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveUser(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMUser) -M:HomeKit.HMHomeDelegate_Extensions.DidRemoveZone(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMZone) -M:HomeKit.HMHomeDelegate_Extensions.DidUnblockAccessory(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMAccessory) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateAccessControlForCurrentUser(HomeKit.IHMHomeDelegate,HomeKit.HMHome) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateActionsForActionSet(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMActionSet) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateHomeHubState(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMHomeHubState) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateNameForActionSet(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMActionSet) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateNameForHome(HomeKit.IHMHomeDelegate,HomeKit.HMHome) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateNameForRoom(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMRoom) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateNameForServiceGroup(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMServiceGroup) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateNameForTrigger(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMTrigger) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateNameForZone(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMZone) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateRoom(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMAccessory) M:HomeKit.HMHomeDelegate_Extensions.DidUpdateSupportedFeatures(HomeKit.IHMHomeDelegate,HomeKit.HMHome) -M:HomeKit.HMHomeDelegate_Extensions.DidUpdateTrigger(HomeKit.IHMHomeDelegate,HomeKit.HMHome,HomeKit.HMTrigger) M:HomeKit.HMHomeManager.add_DidAddHome(System.EventHandler{HomeKit.HMHomeManagerEventArgs}) M:HomeKit.HMHomeManager.add_DidReceiveAddAccessoryRequest(System.EventHandler{HomeKit.HMHomeManagerAddAccessoryRequestEventArgs}) M:HomeKit.HMHomeManager.add_DidRemoveHome(System.EventHandler{HomeKit.HMHomeManagerEventArgs}) @@ -14852,12 +14060,8 @@ M:HomeKit.HMHomeManager.remove_DidRemoveHome(System.EventHandler{HomeKit.HMHomeM M:HomeKit.HMHomeManager.remove_DidUpdateAuthorizationStatus(System.EventHandler{HomeKit.HMHomeManagerAuthorizationStatusEventArgs}) M:HomeKit.HMHomeManager.remove_DidUpdateHomes(System.EventHandler) M:HomeKit.HMHomeManager.remove_DidUpdatePrimaryHome(System.EventHandler) -M:HomeKit.HMHomeManagerDelegate_Extensions.DidAddHome(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager,HomeKit.HMHome) M:HomeKit.HMHomeManagerDelegate_Extensions.DidReceiveAddAccessoryRequest(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager,HomeKit.HMAddAccessoryRequest) -M:HomeKit.HMHomeManagerDelegate_Extensions.DidRemoveHome(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager,HomeKit.HMHome) M:HomeKit.HMHomeManagerDelegate_Extensions.DidUpdateAuthorizationStatus(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager,HomeKit.HMHomeManagerAuthorizationStatus) -M:HomeKit.HMHomeManagerDelegate_Extensions.DidUpdateHomes(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager) -M:HomeKit.HMHomeManagerDelegate_Extensions.DidUpdatePrimaryHome(HomeKit.IHMHomeManagerDelegate,HomeKit.HMHomeManager) M:HomeKit.HMLocationEvent.Copy(Foundation.NSZone) M:HomeKit.HMLocationEvent.MutableCopy(Foundation.NSZone) M:HomeKit.HMMatterHome.#ctor(Foundation.NSCoder) @@ -14900,57 +14104,9 @@ 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.IHMAccessoryDelegate.DidAddProfile(HomeKit.HMAccessory,HomeKit.HMAccessoryProfile) -M:HomeKit.IHMAccessoryDelegate.DidRemoveProfile(HomeKit.HMAccessory,HomeKit.HMAccessoryProfile) -M:HomeKit.IHMAccessoryDelegate.DidUpdateAssociatedServiceType(HomeKit.HMAccessory,HomeKit.HMService) -M:HomeKit.IHMAccessoryDelegate.DidUpdateFirmwareVersion(HomeKit.HMAccessory,System.String) -M:HomeKit.IHMAccessoryDelegate.DidUpdateName(HomeKit.HMAccessory) -M:HomeKit.IHMAccessoryDelegate.DidUpdateNameForService(HomeKit.HMAccessory,HomeKit.HMService) -M:HomeKit.IHMAccessoryDelegate.DidUpdateReachability(HomeKit.HMAccessory) -M:HomeKit.IHMAccessoryDelegate.DidUpdateServices(HomeKit.HMAccessory) -M:HomeKit.IHMAccessoryDelegate.DidUpdateValueForCharacteristic(HomeKit.HMAccessory,HomeKit.HMService,HomeKit.HMCharacteristic) -M:HomeKit.IHMCameraSnapshotControlDelegate.DidTakeSnapshot(HomeKit.HMCameraSnapshotControl,HomeKit.HMCameraSnapshot,Foundation.NSError) -M:HomeKit.IHMCameraSnapshotControlDelegate.DidUpdateMostRecentSnapshot(HomeKit.HMCameraSnapshotControl) -M:HomeKit.IHMCameraStreamControlDelegate.DidStartStream(HomeKit.HMCameraStreamControl) -M:HomeKit.IHMCameraStreamControlDelegate.DidStopStream(HomeKit.HMCameraStreamControl,Foundation.NSError) -M:HomeKit.IHMHomeDelegate.DidAddAccessory(HomeKit.HMHome,HomeKit.HMAccessory) -M:HomeKit.IHMHomeDelegate.DidAddActionSet(HomeKit.HMHome,HomeKit.HMActionSet) -M:HomeKit.IHMHomeDelegate.DidAddRoom(HomeKit.HMHome,HomeKit.HMRoom) -M:HomeKit.IHMHomeDelegate.DidAddRoomToZone(HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMZone) -M:HomeKit.IHMHomeDelegate.DidAddService(HomeKit.HMHome,HomeKit.HMService,HomeKit.HMServiceGroup) -M:HomeKit.IHMHomeDelegate.DidAddServiceGroup(HomeKit.HMHome,HomeKit.HMServiceGroup) -M:HomeKit.IHMHomeDelegate.DidAddTrigger(HomeKit.HMHome,HomeKit.HMTrigger) -M:HomeKit.IHMHomeDelegate.DidAddUser(HomeKit.HMHome,HomeKit.HMUser) -M:HomeKit.IHMHomeDelegate.DidAddZone(HomeKit.HMHome,HomeKit.HMZone) -M:HomeKit.IHMHomeDelegate.DidEncounterError(HomeKit.HMHome,Foundation.NSError,HomeKit.HMAccessory) -M:HomeKit.IHMHomeDelegate.DidRemoveAccessory(HomeKit.HMHome,HomeKit.HMAccessory) -M:HomeKit.IHMHomeDelegate.DidRemoveActionSet(HomeKit.HMHome,HomeKit.HMActionSet) -M:HomeKit.IHMHomeDelegate.DidRemoveRoom(HomeKit.HMHome,HomeKit.HMRoom) -M:HomeKit.IHMHomeDelegate.DidRemoveRoomFromZone(HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMZone) -M:HomeKit.IHMHomeDelegate.DidRemoveService(HomeKit.HMHome,HomeKit.HMService,HomeKit.HMServiceGroup) -M:HomeKit.IHMHomeDelegate.DidRemoveServiceGroup(HomeKit.HMHome,HomeKit.HMServiceGroup) -M:HomeKit.IHMHomeDelegate.DidRemoveTrigger(HomeKit.HMHome,HomeKit.HMTrigger) -M:HomeKit.IHMHomeDelegate.DidRemoveUser(HomeKit.HMHome,HomeKit.HMUser) -M:HomeKit.IHMHomeDelegate.DidRemoveZone(HomeKit.HMHome,HomeKit.HMZone) -M:HomeKit.IHMHomeDelegate.DidUnblockAccessory(HomeKit.HMHome,HomeKit.HMAccessory) -M:HomeKit.IHMHomeDelegate.DidUpdateAccessControlForCurrentUser(HomeKit.HMHome) -M:HomeKit.IHMHomeDelegate.DidUpdateActionsForActionSet(HomeKit.HMHome,HomeKit.HMActionSet) -M:HomeKit.IHMHomeDelegate.DidUpdateHomeHubState(HomeKit.HMHome,HomeKit.HMHomeHubState) -M:HomeKit.IHMHomeDelegate.DidUpdateNameForActionSet(HomeKit.HMHome,HomeKit.HMActionSet) -M:HomeKit.IHMHomeDelegate.DidUpdateNameForHome(HomeKit.HMHome) -M:HomeKit.IHMHomeDelegate.DidUpdateNameForRoom(HomeKit.HMHome,HomeKit.HMRoom) -M:HomeKit.IHMHomeDelegate.DidUpdateNameForServiceGroup(HomeKit.HMHome,HomeKit.HMServiceGroup) -M:HomeKit.IHMHomeDelegate.DidUpdateNameForTrigger(HomeKit.HMHome,HomeKit.HMTrigger) -M:HomeKit.IHMHomeDelegate.DidUpdateNameForZone(HomeKit.HMHome,HomeKit.HMZone) -M:HomeKit.IHMHomeDelegate.DidUpdateRoom(HomeKit.HMHome,HomeKit.HMRoom,HomeKit.HMAccessory) M:HomeKit.IHMHomeDelegate.DidUpdateSupportedFeatures(HomeKit.HMHome) -M:HomeKit.IHMHomeDelegate.DidUpdateTrigger(HomeKit.HMHome,HomeKit.HMTrigger) -M:HomeKit.IHMHomeManagerDelegate.DidAddHome(HomeKit.HMHomeManager,HomeKit.HMHome) M:HomeKit.IHMHomeManagerDelegate.DidReceiveAddAccessoryRequest(HomeKit.HMHomeManager,HomeKit.HMAddAccessoryRequest) -M:HomeKit.IHMHomeManagerDelegate.DidRemoveHome(HomeKit.HMHomeManager,HomeKit.HMHome) M:HomeKit.IHMHomeManagerDelegate.DidUpdateAuthorizationStatus(HomeKit.HMHomeManager,HomeKit.HMHomeManagerAuthorizationStatus) -M:HomeKit.IHMHomeManagerDelegate.DidUpdateHomes(HomeKit.HMHomeManager) -M:HomeKit.IHMHomeManagerDelegate.DidUpdatePrimaryHome(HomeKit.HMHomeManager) 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}) @@ -15144,49 +14300,24 @@ 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.IINActivateCarSignalIntentHandling.ResolveCarName(Intents.INActivateCarSignalIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINActivateCarSignalIntentHandling.ResolveSignals(Intents.INActivateCarSignalIntent,System.Action{Intents.INCarSignalOptionsResolutionResult}) 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.Confirm(Intents.INAddTasksIntent,System.Action{Intents.INAddTasksIntentResponse}) M:Intents.IINAddTasksIntentHandling.HandleAddTasks(Intents.INAddTasksIntent,System.Action{Intents.INAddTasksIntentResponse}) M:Intents.IINAddTasksIntentHandling.ResolvePriority(Intents.INAddTasksIntent,System.Action{Intents.INTaskPriorityResolutionResult}) -M:Intents.IINAddTasksIntentHandling.ResolveSpatialEventTrigger(Intents.INAddTasksIntent,System.Action{Intents.INSpatialEventTriggerResolutionResult}) M:Intents.IINAddTasksIntentHandling.ResolveTargetTaskList(Intents.INAddTasksIntent,System.Action{Intents.INAddTasksTargetTaskListResolutionResult}) -M:Intents.IINAddTasksIntentHandling.ResolveTargetTaskList(Intents.INAddTasksIntent,System.Action{Intents.INTaskListResolutionResult}) -M:Intents.IINAddTasksIntentHandling.ResolveTaskTitles(Intents.INAddTasksIntent,System.Action{Intents.INSpeakableStringResolutionResult[]}) M:Intents.IINAddTasksIntentHandling.ResolveTemporalEventTrigger(Intents.INAddTasksIntent,System.Action{Intents.INAddTasksTemporalEventTriggerResolutionResult}) -M:Intents.IINAddTasksIntentHandling.ResolveTemporalEventTrigger(Intents.INAddTasksIntent,System.Action{Intents.INTemporalEventTriggerResolutionResult}) M:Intents.IINAnswerCallIntentHandling.ConfirmAnswerCall(Intents.INAnswerCallIntent,System.Action{Intents.INAnswerCallIntentResponse}) M:Intents.IINAnswerCallIntentHandling.HandleAnswerCall(Intents.INAnswerCallIntent,System.Action{Intents.INAnswerCallIntentResponse}) -M:Intents.IINAppendToNoteIntentHandling.Confirm(Intents.INAppendToNoteIntent,System.Action{Intents.INAppendToNoteIntentResponse}) M:Intents.IINAppendToNoteIntentHandling.HandleAppendToNote(Intents.INAppendToNoteIntent,System.Action{Intents.INAppendToNoteIntentResponse}) -M:Intents.IINAppendToNoteIntentHandling.ResolveContentForAppend(Intents.INAppendToNoteIntent,System.Action{Intents.INNoteContentResolutionResult}) -M:Intents.IINAppendToNoteIntentHandling.ResolveTargetNoteForAppend(Intents.INAppendToNoteIntent,System.Action{Intents.INNoteResolutionResult}) M:Intents.IINBookRestaurantReservationIntentHandling.Confirm(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INBookRestaurantReservationIntentResponse}) M:Intents.IINBookRestaurantReservationIntentHandling.HandleBookRestaurantReservation(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INBookRestaurantReservationIntentResponse}) -M:Intents.IINBookRestaurantReservationIntentHandling.ResolveBookingDate(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INDateComponentsResolutionResult}) -M:Intents.IINBookRestaurantReservationIntentHandling.ResolveGuest(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INRestaurantGuestResolutionResult}) -M:Intents.IINBookRestaurantReservationIntentHandling.ResolveGuestProvidedSpecialRequest(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINBookRestaurantReservationIntentHandling.ResolvePartySize(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.IINBookRestaurantReservationIntentHandling.ResolveRestaurant(Intents.INBookRestaurantReservationIntent,System.Action{Intents.INRestaurantResolutionResult}) -M:Intents.IINCancelRideIntentHandling.Confirm(Intents.INCancelRideIntent,System.Action{Intents.INCancelRideIntentResponse}) 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.IINCancelWorkoutIntentHandling.ResolveWorkoutName(Intents.INCancelWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINCreateNoteIntentHandling.Confirm(Intents.INCreateNoteIntent,System.Action{Intents.INCreateNoteIntentResponse}) M:Intents.IINCreateNoteIntentHandling.HandleCreateNote(Intents.INCreateNoteIntent,System.Action{Intents.INCreateNoteIntentResponse}) -M:Intents.IINCreateNoteIntentHandling.ResolveContent(Intents.INCreateNoteIntent,System.Action{Intents.INNoteContentResolutionResult}) -M:Intents.IINCreateNoteIntentHandling.ResolveGroupName(Intents.INCreateNoteIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINCreateNoteIntentHandling.ResolveTitle(Intents.INCreateNoteIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINCreateTaskListIntentHandling.Confirm(Intents.INCreateTaskListIntent,System.Action{Intents.INCreateTaskListIntentResponse}) M:Intents.IINCreateTaskListIntentHandling.HandleCreateTaskList(Intents.INCreateTaskListIntent,System.Action{Intents.INCreateTaskListIntentResponse}) -M:Intents.IINCreateTaskListIntentHandling.ResolveGroupName(Intents.INCreateTaskListIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINCreateTaskListIntentHandling.ResolveTaskTitles(Intents.INCreateTaskListIntent,System.Action{Intents.INSpeakableStringResolutionResult[]}) -M:Intents.IINCreateTaskListIntentHandling.ResolveTitle(Intents.INCreateTaskListIntent,System.Action{Intents.INSpeakableStringResolutionResult}) 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}) @@ -15196,21 +14327,14 @@ M:Intents.IINEditMessageIntentHandling.HandleEditMessage(Intents.INEditMessageIn 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.IINEndWorkoutIntentHandling.ResolveWorkoutName(Intents.INEndWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling.Confirm(Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse}) M:Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling.HandleAvailableRestaurantReservationBookingDefaults(Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse}) -M:Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling.ResolveAvailableRestaurantReservationBookingDefaults(Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INRestaurantResolutionResult}) M:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling.Confirm(Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingsIntentResponse}) M:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling.HandleAvailableRestaurantReservationBookings(Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INGetAvailableRestaurantReservationBookingsIntentResponse}) -M:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling.ResolveAvailableRestaurantReservationBookings(Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INRestaurantResolutionResult}) -M:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling.ResolvePartySizeAvailableRestaurantReservationBookings(Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling.ResolvePreferredBookingDateAvailableRestaurantReservationBookings(Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INDateComponentsResolutionResult}) M:Intents.IINGetCarLockStatusIntentHandling.Confirm(Intents.INGetCarLockStatusIntent,System.Action{Intents.INGetCarLockStatusIntentResponse}) M:Intents.IINGetCarLockStatusIntentHandling.HandleGetCarLockStatus(Intents.INGetCarLockStatusIntent,System.Action{Intents.INGetCarLockStatusIntentResponse}) -M:Intents.IINGetCarLockStatusIntentHandling.ResolveCarName(Intents.INGetCarLockStatusIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.IINGetCarPowerLevelStatusIntentHandling.Confirm(Intents.INGetCarPowerLevelStatusIntent,System.Action{Intents.INGetCarPowerLevelStatusIntentResponse}) M:Intents.IINGetCarPowerLevelStatusIntentHandling.HandleGetCarPowerLevelStatus(Intents.INGetCarPowerLevelStatusIntent,System.Action{Intents.INGetCarPowerLevelStatusIntentResponse}) -M:Intents.IINGetCarPowerLevelStatusIntentHandling.ResolveCarName(Intents.INGetCarPowerLevelStatusIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.IINGetCarPowerLevelStatusIntentHandling.StartSendingUpdates(Intents.INGetCarPowerLevelStatusIntent,Intents.IINGetCarPowerLevelStatusIntentResponseObserver) M:Intents.IINGetCarPowerLevelStatusIntentHandling.StopSendingUpdates(Intents.INGetCarPowerLevelStatusIntent) M:Intents.IINGetCarPowerLevelStatusIntentResponseObserver.DidUpdate(Intents.INGetCarPowerLevelStatusIntentResponse) @@ -15223,10 +14347,7 @@ M:Intents.IINGetRideStatusIntentHandling.StopSendingUpdates(Intents.INGetRideSta 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.IINGetUserCurrentRestaurantReservationBookingsIntentHandling.ResolveUserCurrentRestaurantReservationBookings(Intents.INGetUserCurrentRestaurantReservationBookingsIntent,System.Action{Intents.INRestaurantResolutionResult}) -M:Intents.IINGetVisualCodeIntentHandling.Confirm(Intents.INGetVisualCodeIntent,System.Action{Intents.INGetVisualCodeIntentResponse}) M:Intents.IINGetVisualCodeIntentHandling.HandleGetVisualCode(Intents.INGetVisualCodeIntent,System.Action{Intents.INGetVisualCodeIntentResponse}) -M:Intents.IINGetVisualCodeIntentHandling.ResolveVisualCodeType(Intents.INGetVisualCodeIntent,System.Action{Intents.INVisualCodeTypeResolutionResult}) 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) @@ -15234,21 +14355,10 @@ M:Intents.IINListCarsIntentHandling.ConfirmListCars(Intents.INListCarsIntent,Sys 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.IINListRideOptionsIntentHandling.ResolveDropOffLocation(Intents.INListRideOptionsIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.IINListRideOptionsIntentHandling.ResolvePickupLocation(Intents.INListRideOptionsIntent,System.Action{Intents.INPlacemarkResolutionResult}) M:Intents.IINPauseWorkoutIntentHandling.Confirm(Intents.INPauseWorkoutIntent,System.Action{Intents.INPauseWorkoutIntentResponse}) M:Intents.IINPauseWorkoutIntentHandling.HandlePauseWorkout(Intents.INPauseWorkoutIntent,System.Action{Intents.INPauseWorkoutIntentResponse}) -M:Intents.IINPauseWorkoutIntentHandling.ResolveWorkoutName(Intents.INPauseWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.IINPayBillIntentHandling.Confirm(Intents.INPayBillIntent,System.Action{Intents.INPayBillIntentResponse}) M:Intents.IINPayBillIntentHandling.HandlePayBill(Intents.INPayBillIntent,System.Action{Intents.INPayBillIntentResponse}) -M:Intents.IINPayBillIntentHandling.ResolveBillPayee(Intents.INPayBillIntent,System.Action{Intents.INBillPayeeResolutionResult}) -M:Intents.IINPayBillIntentHandling.ResolveBillType(Intents.INPayBillIntent,System.Action{Intents.INBillTypeResolutionResult}) -M:Intents.IINPayBillIntentHandling.ResolveDueDate(Intents.INPayBillIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINPayBillIntentHandling.ResolveFromAccount(Intents.INPayBillIntent,System.Action{Intents.INPaymentAccountResolutionResult}) -M:Intents.IINPayBillIntentHandling.ResolveTransactionAmount(Intents.INPayBillIntent,System.Action{Intents.INPaymentAmountResolutionResult}) -M:Intents.IINPayBillIntentHandling.ResolveTransactionNote(Intents.INPayBillIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINPayBillIntentHandling.ResolveTransactionScheduledDate(Intents.INPayBillIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINPlayMediaIntentHandling.Confirm(Intents.INPlayMediaIntent,System.Action{Intents.INPlayMediaIntentResponse}) 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}) @@ -15258,153 +14368,53 @@ M:Intents.IINPlayMediaIntentHandling.ResolvePlayShuffled(Intents.INPlayMediaInte 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.IINRequestPaymentIntentHandling.ResolveCurrencyAmount(Intents.INRequestPaymentIntent,System.Action{Intents.INCurrencyAmountResolutionResult}) -M:Intents.IINRequestPaymentIntentHandling.ResolveCurrencyAmount(Intents.INRequestPaymentIntent,System.Action{Intents.INRequestPaymentCurrencyAmountResolutionResult}) -M:Intents.IINRequestPaymentIntentHandling.ResolveNote(Intents.INRequestPaymentIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINRequestPaymentIntentHandling.ResolvePayer(Intents.INRequestPaymentIntent,System.Action{Intents.INPersonResolutionResult}) -M:Intents.IINRequestPaymentIntentHandling.ResolvePayer(Intents.INRequestPaymentIntent,System.Action{Intents.INRequestPaymentPayerResolutionResult}) M:Intents.IINRequestRideIntentHandling.Confirm(Intents.INRequestRideIntent,System.Action{Intents.INRequestRideIntentResponse}) M:Intents.IINRequestRideIntentHandling.HandleRequestRide(Intents.INRequestRideIntent,System.Action{Intents.INRequestRideIntentResponse}) -M:Intents.IINRequestRideIntentHandling.ResolveDropOffLocation(Intents.INRequestRideIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.IINRequestRideIntentHandling.ResolvePartySize(Intents.INRequestRideIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.IINRequestRideIntentHandling.ResolvePickupLocation(Intents.INRequestRideIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.IINRequestRideIntentHandling.ResolveRideOptionName(Intents.INRequestRideIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINRequestRideIntentHandling.ResolveScheduledPickupTime(Intents.INRequestRideIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) M:Intents.IINResumeWorkoutIntentHandling.Confirm(Intents.INResumeWorkoutIntent,System.Action{Intents.INResumeWorkoutIntentResponse}) M:Intents.IINResumeWorkoutIntentHandling.HandleResumeWorkout(Intents.INResumeWorkoutIntent,System.Action{Intents.INResumeWorkoutIntentResponse}) -M:Intents.IINResumeWorkoutIntentHandling.ResolveWorkoutName(Intents.INResumeWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.IINSaveProfileInCarIntentHandling.Confirm(Intents.INSaveProfileInCarIntent,System.Action{Intents.INSaveProfileInCarIntentResponse}) M:Intents.IINSaveProfileInCarIntentHandling.HandleSaveProfileInCar(Intents.INSaveProfileInCarIntent,System.Action{Intents.INSaveProfileInCarIntentResponse}) -M:Intents.IINSaveProfileInCarIntentHandling.ResolveProfileName(Intents.INSaveProfileInCarIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINSaveProfileInCarIntentHandling.ResolveProfileNumber(Intents.INSaveProfileInCarIntent,System.Action{Intents.INIntegerResolutionResult}) M:Intents.IINSearchCallHistoryIntentHandling.Confirm(Intents.INSearchCallHistoryIntent,System.Action{Intents.INSearchCallHistoryIntentResponse}) M:Intents.IINSearchCallHistoryIntentHandling.HandleSearchCallHistory(Intents.INSearchCallHistoryIntent,System.Action{Intents.INSearchCallHistoryIntentResponse}) -M:Intents.IINSearchCallHistoryIntentHandling.ResolveCallType(Intents.INSearchCallHistoryIntent,System.Action{Intents.INCallRecordTypeResolutionResult}) -M:Intents.IINSearchCallHistoryIntentHandling.ResolveCallTypes(Intents.INSearchCallHistoryIntent,System.Action{Intents.INCallRecordTypeOptionsResolutionResult}) -M:Intents.IINSearchCallHistoryIntentHandling.ResolveDateCreated(Intents.INSearchCallHistoryIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINSearchCallHistoryIntentHandling.ResolveRecipient(Intents.INSearchCallHistoryIntent,System.Action{Intents.INPersonResolutionResult}) -M:Intents.IINSearchCallHistoryIntentHandling.ResolveUnseen(Intents.INSearchCallHistoryIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSearchForAccountsIntentHandling.Confirm(Intents.INSearchForAccountsIntent,System.Action{Intents.INSearchForAccountsIntentResponse}) M:Intents.IINSearchForAccountsIntentHandling.HandleSearchForAccounts(Intents.INSearchForAccountsIntent,System.Action{Intents.INSearchForAccountsIntentResponse}) -M:Intents.IINSearchForAccountsIntentHandling.ResolveAccountNickname(Intents.INSearchForAccountsIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINSearchForAccountsIntentHandling.ResolveAccountType(Intents.INSearchForAccountsIntent,System.Action{Intents.INAccountTypeResolutionResult}) -M:Intents.IINSearchForAccountsIntentHandling.ResolveOrganizationName(Intents.INSearchForAccountsIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINSearchForAccountsIntentHandling.ResolveRequestedBalanceType(Intents.INSearchForAccountsIntent,System.Action{Intents.INBalanceTypeResolutionResult}) M:Intents.IINSearchForBillsIntentHandling.Confirm(Intents.INSearchForBillsIntent,System.Action{Intents.INSearchForBillsIntentResponse}) M:Intents.IINSearchForBillsIntentHandling.HandleSearch(Intents.INSearchForBillsIntent,System.Action{Intents.INSearchForBillsIntentResponse}) -M:Intents.IINSearchForBillsIntentHandling.ResolveBillPayee(Intents.INSearchForBillsIntent,System.Action{Intents.INBillPayeeResolutionResult}) -M:Intents.IINSearchForBillsIntentHandling.ResolveBillType(Intents.INSearchForBillsIntent,System.Action{Intents.INBillTypeResolutionResult}) -M:Intents.IINSearchForBillsIntentHandling.ResolveDueDateRange(Intents.INSearchForBillsIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINSearchForBillsIntentHandling.ResolvePaymentDateRange(Intents.INSearchForBillsIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINSearchForBillsIntentHandling.ResolveStatus(Intents.INSearchForBillsIntent,System.Action{Intents.INPaymentStatusResolutionResult}) 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.IINSearchForMessagesIntentHandling.ResolveAttributes(Intents.INSearchForMessagesIntent,System.Action{Intents.INMessageAttributeOptionsResolutionResult}) -M:Intents.IINSearchForMessagesIntentHandling.ResolveDateTimeRange(Intents.INSearchForMessagesIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINSearchForMessagesIntentHandling.ResolveGroupNames(Intents.INSearchForMessagesIntent,System.Action{Intents.INStringResolutionResult[]}) -M:Intents.IINSearchForMessagesIntentHandling.ResolveRecipients(Intents.INSearchForMessagesIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.IINSearchForMessagesIntentHandling.ResolveSenders(Intents.INSearchForMessagesIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.IINSearchForMessagesIntentHandling.ResolveSpeakableGroupNames(Intents.INSearchForMessagesIntent,System.Action{Intents.INSpeakableStringResolutionResult[]}) -M:Intents.IINSearchForNotebookItemsIntentHandling.Confirm(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INSearchForNotebookItemsIntentResponse}) M:Intents.IINSearchForNotebookItemsIntentHandling.HandleSearchForNotebookItems(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INSearchForNotebookItemsIntentResponse}) -M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveContent(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveDateSearchType(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INDateSearchTypeResolutionResult}) -M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveDateTime(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveItemType(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INNotebookItemTypeResolutionResult}) -M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveLocation(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveLocationSearchType(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INLocationSearchTypeResolutionResult}) -M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveStatus(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INTaskStatusResolutionResult}) M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveTaskPriority(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INTaskPriorityResolutionResult}) M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveTemporalEventTriggerTypes(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INTemporalEventTriggerTypeOptionsResolutionResult}) -M:Intents.IINSearchForNotebookItemsIntentHandling.ResolveTitle(Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.IINSearchForPhotosIntentHandling.Confirm(Intents.INSearchForPhotosIntent,System.Action{Intents.INSearchForPhotosIntentResponse}) M:Intents.IINSearchForPhotosIntentHandling.HandleSearchForPhotos(Intents.INSearchForPhotosIntent,System.Action{Intents.INSearchForPhotosIntentResponse}) -M:Intents.IINSearchForPhotosIntentHandling.ResolveAlbumName(Intents.INSearchForPhotosIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINSearchForPhotosIntentHandling.ResolveDateCreated(Intents.INSearchForPhotosIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINSearchForPhotosIntentHandling.ResolveLocationCreated(Intents.INSearchForPhotosIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.IINSearchForPhotosIntentHandling.ResolvePeopleInPhoto(Intents.INSearchForPhotosIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.IINSearchForPhotosIntentHandling.ResolveSearchTerms(Intents.INSearchForPhotosIntent,System.Action{Intents.INStringResolutionResult[]}) M:Intents.IINSendMessageIntentHandling.Confirm(Intents.INSendMessageIntent,System.Action{Intents.INSendMessageIntentResponse}) M:Intents.IINSendMessageIntentHandling.HandleSendMessage(Intents.INSendMessageIntent,System.Action{Intents.INSendMessageIntentResponse}) -M:Intents.IINSendMessageIntentHandling.ResolveContent(Intents.INSendMessageIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINSendMessageIntentHandling.ResolveGroupName(Intents.INSendMessageIntent,System.Action{Intents.INStringResolutionResult}) M:Intents.IINSendMessageIntentHandling.ResolveOutgoingMessageType(Intents.INSendMessageIntent,System.Action{Intents.INOutgoingMessageTypeResolutionResult}) -M:Intents.IINSendMessageIntentHandling.ResolveRecipients(Intents.INSendMessageIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.IINSendMessageIntentHandling.ResolveRecipients(Intents.INSendMessageIntent,System.Action{Intents.INSendMessageRecipientResolutionResult[]}) -M:Intents.IINSendMessageIntentHandling.ResolveSpeakableGroupName(Intents.INSendMessageIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.IINSendPaymentIntentHandling.Confirm(Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentIntentResponse}) M:Intents.IINSendPaymentIntentHandling.HandleSendPayment(Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentIntentResponse}) -M:Intents.IINSendPaymentIntentHandling.ResolveCurrencyAmount(Intents.INSendPaymentIntent,System.Action{Intents.INCurrencyAmountResolutionResult}) -M:Intents.IINSendPaymentIntentHandling.ResolveCurrencyAmount(Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentCurrencyAmountResolutionResult}) -M:Intents.IINSendPaymentIntentHandling.ResolveNote(Intents.INSendPaymentIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINSendPaymentIntentHandling.ResolvePayee(Intents.INSendPaymentIntent,System.Action{Intents.INPersonResolutionResult}) -M:Intents.IINSendPaymentIntentHandling.ResolvePayee(Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentPayeeResolutionResult}) -M:Intents.IINSendRideFeedbackIntentHandling.Confirm(Intents.INSendRideFeedbackIntent,System.Action{Intents.INSendRideFeedbackIntentResponse}) 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.IINSetAudioSourceInCarIntentHandling.ResolveAudioSource(Intents.INSetAudioSourceInCarIntent,System.Action{Intents.INCarAudioSourceResolutionResult}) -M:Intents.IINSetAudioSourceInCarIntentHandling.ResolveRelativeAudioSourceReference(Intents.INSetAudioSourceInCarIntent,System.Action{Intents.INRelativeReferenceResolutionResult}) M:Intents.IINSetCarLockStatusIntentHandling.Confirm(Intents.INSetCarLockStatusIntent,System.Action{Intents.INSetCarLockStatusIntentResponse}) M:Intents.IINSetCarLockStatusIntentHandling.HandleSetCarLockStatus(Intents.INSetCarLockStatusIntent,System.Action{Intents.INSetCarLockStatusIntentResponse}) -M:Intents.IINSetCarLockStatusIntentHandling.ResolveCarName(Intents.INSetCarLockStatusIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINSetCarLockStatusIntentHandling.ResolveLocked(Intents.INSetCarLockStatusIntent,System.Action{Intents.INBooleanResolutionResult}) M:Intents.IINSetClimateSettingsInCarIntentHandling.Confirm(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INSetClimateSettingsInCarIntentResponse}) M:Intents.IINSetClimateSettingsInCarIntentHandling.HandleSetClimateSettingsInCar(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INSetClimateSettingsInCarIntentResponse}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveAirCirculationMode(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INCarAirCirculationModeResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveCarName(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveClimateZone(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INCarSeatResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveEnableAirConditioner(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveEnableAutoMode(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveEnableClimateControl(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveEnableFan(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveFanSpeedIndex(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveFanSpeedPercentage(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INDoubleResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveRelativeFanSpeedSetting(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INRelativeSettingResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveRelativeTemperatureSetting(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INRelativeSettingResolutionResult}) -M:Intents.IINSetClimateSettingsInCarIntentHandling.ResolveTemperature(Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INTemperatureResolutionResult}) M:Intents.IINSetDefrosterSettingsInCarIntentHandling.Confirm(Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INSetDefrosterSettingsInCarIntentResponse}) M:Intents.IINSetDefrosterSettingsInCarIntentHandling.HandleSetDefrosterSettingsInCar(Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INSetDefrosterSettingsInCarIntentResponse}) -M:Intents.IINSetDefrosterSettingsInCarIntentHandling.ResolveCarName(Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINSetDefrosterSettingsInCarIntentHandling.ResolveDefroster(Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INCarDefrosterResolutionResult}) -M:Intents.IINSetDefrosterSettingsInCarIntentHandling.ResolveEnable(Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) M:Intents.IINSetMessageAttributeIntentHandling.Confirm(Intents.INSetMessageAttributeIntent,System.Action{Intents.INSetMessageAttributeIntentResponse}) M:Intents.IINSetMessageAttributeIntentHandling.HandleSetMessageAttribute(Intents.INSetMessageAttributeIntent,System.Action{Intents.INSetMessageAttributeIntentResponse}) -M:Intents.IINSetMessageAttributeIntentHandling.ResolveAttribute(Intents.INSetMessageAttributeIntent,System.Action{Intents.INMessageAttributeResolutionResult}) M:Intents.IINSetProfileInCarIntentHandling.Confirm(Intents.INSetProfileInCarIntent,System.Action{Intents.INSetProfileInCarIntentResponse}) M:Intents.IINSetProfileInCarIntentHandling.HandleSetProfileInCar(Intents.INSetProfileInCarIntent,System.Action{Intents.INSetProfileInCarIntentResponse}) -M:Intents.IINSetProfileInCarIntentHandling.ResolveCarName(Intents.INSetProfileInCarIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINSetProfileInCarIntentHandling.ResolveDefaultProfile(Intents.INSetProfileInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSetProfileInCarIntentHandling.ResolveProfileName(Intents.INSetProfileInCarIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINSetProfileInCarIntentHandling.ResolveProfileNumber(Intents.INSetProfileInCarIntent,System.Action{Intents.INIntegerResolutionResult}) M:Intents.IINSetRadioStationIntentHandling.Confirm(Intents.INSetRadioStationIntent,System.Action{Intents.INSetRadioStationIntentResponse}) M:Intents.IINSetRadioStationIntentHandling.HandleSetRadioStation(Intents.INSetRadioStationIntent,System.Action{Intents.INSetRadioStationIntentResponse}) -M:Intents.IINSetRadioStationIntentHandling.ResolveChannel(Intents.INSetRadioStationIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINSetRadioStationIntentHandling.ResolveFrequency(Intents.INSetRadioStationIntent,System.Action{Intents.INDoubleResolutionResult}) -M:Intents.IINSetRadioStationIntentHandling.ResolvePresetNumber(Intents.INSetRadioStationIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.IINSetRadioStationIntentHandling.ResolveRadioType(Intents.INSetRadioStationIntent,System.Action{Intents.INRadioTypeResolutionResult}) -M:Intents.IINSetRadioStationIntentHandling.ResolveStationName(Intents.INSetRadioStationIntent,System.Action{Intents.INStringResolutionResult}) M:Intents.IINSetSeatSettingsInCarIntentHandling.Confirm(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INSetSeatSettingsInCarIntentResponse}) M:Intents.IINSetSeatSettingsInCarIntentHandling.HandleSetSeatSettingsInCar(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INSetSeatSettingsInCarIntentResponse}) -M:Intents.IINSetSeatSettingsInCarIntentHandling.ResolveCarName(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINSetSeatSettingsInCarIntentHandling.ResolveEnableCooling(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSetSeatSettingsInCarIntentHandling.ResolveEnableHeating(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSetSeatSettingsInCarIntentHandling.ResolveEnableMassage(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINSetSeatSettingsInCarIntentHandling.ResolveLevel(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.IINSetSeatSettingsInCarIntentHandling.ResolveRelativeLevelSetting(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INRelativeSettingResolutionResult}) -M:Intents.IINSetSeatSettingsInCarIntentHandling.ResolveSeat(Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INCarSeatResolutionResult}) -M:Intents.IINSetTaskAttributeIntentHandling.Confirm(Intents.INSetTaskAttributeIntent,System.Action{Intents.INSetTaskAttributeIntentResponse}) M:Intents.IINSetTaskAttributeIntentHandling.HandleSetTaskAttribute(Intents.INSetTaskAttributeIntent,System.Action{Intents.INSetTaskAttributeIntentResponse}) M:Intents.IINSetTaskAttributeIntentHandling.ResolvePriority(Intents.INSetTaskAttributeIntent,System.Action{Intents.INTaskPriorityResolutionResult}) -M:Intents.IINSetTaskAttributeIntentHandling.ResolveSpatialEventTrigger(Intents.INSetTaskAttributeIntent,System.Action{Intents.INSpatialEventTriggerResolutionResult}) -M:Intents.IINSetTaskAttributeIntentHandling.ResolveStatus(Intents.INSetTaskAttributeIntent,System.Action{Intents.INTaskStatusResolutionResult}) -M:Intents.IINSetTaskAttributeIntentHandling.ResolveTargetTask(Intents.INSetTaskAttributeIntent,System.Action{Intents.INTaskResolutionResult}) M:Intents.IINSetTaskAttributeIntentHandling.ResolveTaskTitle(Intents.INSetTaskAttributeIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.IINSetTaskAttributeIntentHandling.ResolveTemporalEventTrigger(Intents.INSetTaskAttributeIntent,System.Action{Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult}) -M:Intents.IINSetTaskAttributeIntentHandling.ResolveTemporalEventTrigger(Intents.INSetTaskAttributeIntent,System.Action{Intents.INTemporalEventTriggerResolutionResult}) M:Intents.IINShareFocusStatusIntentHandling.ConfirmShareFocusStatus(Intents.INShareFocusStatusIntent,System.Action{Intents.INShareFocusStatusIntentResponse}) M:Intents.IINShareFocusStatusIntentHandling.HandleShareFocusStatus(Intents.INShareFocusStatusIntent,System.Action{Intents.INShareFocusStatusIntentResponse}) M:Intents.IINSnoozeTasksIntentHandling.Confirm(Intents.INSnoozeTasksIntent,System.Action{Intents.INSnoozeTasksIntentResponse}) @@ -15413,8 +14423,6 @@ M:Intents.IINSnoozeTasksIntentHandling.ResolveNextTriggerTime(Intents.INSnoozeTa 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.IINStartAudioCallIntentHandling.ResolveContacts(Intents.INStartAudioCallIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.IINStartAudioCallIntentHandling.ResolveDestinationType(Intents.INStartAudioCallIntent,System.Action{Intents.INCallDestinationTypeResolutionResult}) 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}) @@ -15423,27 +14431,11 @@ M:Intents.IINStartCallIntentHandling.ResolveContacts(Intents.INStartCallIntent,S 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.IINStartPhotoPlaybackIntentHandling.ResolveAlbumName(Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINStartPhotoPlaybackIntentHandling.ResolveDateCreated(Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.IINStartPhotoPlaybackIntentHandling.ResolveLocationCreated(Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.IINStartPhotoPlaybackIntentHandling.ResolvePeopleInPhoto(Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INPersonResolutionResult[]}) M:Intents.IINStartVideoCallIntentHandling.Confirm(Intents.INStartVideoCallIntent,System.Action{Intents.INStartVideoCallIntentResponse}) M:Intents.IINStartVideoCallIntentHandling.HandleStartVideoCall(Intents.INStartVideoCallIntent,System.Action{Intents.INStartVideoCallIntentResponse}) -M:Intents.IINStartVideoCallIntentHandling.ResolveContacts(Intents.INStartVideoCallIntent,System.Action{Intents.INPersonResolutionResult[]}) M:Intents.IINStartWorkoutIntentHandling.Confirm(Intents.INStartWorkoutIntent,System.Action{Intents.INStartWorkoutIntentResponse}) M:Intents.IINStartWorkoutIntentHandling.HandleStartWorkout(Intents.INStartWorkoutIntent,System.Action{Intents.INStartWorkoutIntentResponse}) -M:Intents.IINStartWorkoutIntentHandling.ResolveGoalValue(Intents.INStartWorkoutIntent,System.Action{Intents.INDoubleResolutionResult}) -M:Intents.IINStartWorkoutIntentHandling.ResolveIsOpenEnded(Intents.INStartWorkoutIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.IINStartWorkoutIntentHandling.ResolveWorkoutGoalUnitType(Intents.INStartWorkoutIntent,System.Action{Intents.INWorkoutGoalUnitTypeResolutionResult}) -M:Intents.IINStartWorkoutIntentHandling.ResolveWorkoutLocationType(Intents.INStartWorkoutIntent,System.Action{Intents.INWorkoutLocationTypeResolutionResult}) -M:Intents.IINStartWorkoutIntentHandling.ResolveWorkoutName(Intents.INStartWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.IINTransferMoneyIntentHandling.Confirm(Intents.INTransferMoneyIntent,System.Action{Intents.INTransferMoneyIntentResponse}) M:Intents.IINTransferMoneyIntentHandling.HandleTransferMoney(Intents.INTransferMoneyIntent,System.Action{Intents.INTransferMoneyIntentResponse}) -M:Intents.IINTransferMoneyIntentHandling.ResolveFromAccount(Intents.INTransferMoneyIntent,System.Action{Intents.INPaymentAccountResolutionResult}) -M:Intents.IINTransferMoneyIntentHandling.ResolveToAccount(Intents.INTransferMoneyIntent,System.Action{Intents.INPaymentAccountResolutionResult}) -M:Intents.IINTransferMoneyIntentHandling.ResolveTransactionAmount(Intents.INTransferMoneyIntent,System.Action{Intents.INPaymentAmountResolutionResult}) -M:Intents.IINTransferMoneyIntentHandling.ResolveTransactionNote(Intents.INTransferMoneyIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.IINTransferMoneyIntentHandling.ResolveTransactionScheduledDate(Intents.INTransferMoneyIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) 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}) @@ -15456,8 +14448,6 @@ M:Intents.INAccountTypeResolutionResult.GetSuccess(Intents.INAccountType) M:Intents.INAccountTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INActivateCarSignalIntent.#ctor(Intents.INSpeakableString,Intents.INCarSignalOptions) M:Intents.INActivateCarSignalIntentHandling_Extensions.Confirm(Intents.IINActivateCarSignalIntentHandling,Intents.INActivateCarSignalIntent,System.Action{Intents.INActivateCarSignalIntentResponse}) -M:Intents.INActivateCarSignalIntentHandling_Extensions.ResolveCarName(Intents.IINActivateCarSignalIntentHandling,Intents.INActivateCarSignalIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INActivateCarSignalIntentHandling_Extensions.ResolveSignals(Intents.IINActivateCarSignalIntentHandling,Intents.INActivateCarSignalIntent,System.Action{Intents.INCarSignalOptionsResolutionResult}) M:Intents.INActivateCarSignalIntentResponse.#ctor(Intents.INActivateCarSignalIntentResponseCode,Foundation.NSUserActivity) M:Intents.INAddMediaIntent.#ctor(Intents.INMediaItem[],Intents.INMediaSearch,Intents.INMediaDestination) M:Intents.INAddMediaIntentHandling_Extensions.Confirm(Intents.IINAddMediaIntentHandling,Intents.INAddMediaIntent,System.Action{Intents.INAddMediaIntentResponse}) @@ -15481,14 +14471,9 @@ M:Intents.INAddMediaMediaItemResolutionResult.GetUnsupported(Intents.INAddMediaM M:Intents.INAddMediaMediaItemResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INAddTasksIntent.#ctor(Intents.INTaskList,Intents.INSpeakableString[],Intents.INSpatialEventTrigger,Intents.INTemporalEventTrigger,Intents.INTaskPriority) M:Intents.INAddTasksIntent.#ctor(Intents.INTaskList,Intents.INSpeakableString[],Intents.INSpatialEventTrigger,Intents.INTemporalEventTrigger) -M:Intents.INAddTasksIntentHandling_Extensions.Confirm(Intents.IINAddTasksIntentHandling,Intents.INAddTasksIntent,System.Action{Intents.INAddTasksIntentResponse}) M:Intents.INAddTasksIntentHandling_Extensions.ResolvePriority(Intents.IINAddTasksIntentHandling,Intents.INAddTasksIntent,System.Action{Intents.INTaskPriorityResolutionResult}) -M:Intents.INAddTasksIntentHandling_Extensions.ResolveSpatialEventTrigger(Intents.IINAddTasksIntentHandling,Intents.INAddTasksIntent,System.Action{Intents.INSpatialEventTriggerResolutionResult}) M:Intents.INAddTasksIntentHandling_Extensions.ResolveTargetTaskList(Intents.IINAddTasksIntentHandling,Intents.INAddTasksIntent,System.Action{Intents.INAddTasksTargetTaskListResolutionResult}) -M:Intents.INAddTasksIntentHandling_Extensions.ResolveTargetTaskList(Intents.IINAddTasksIntentHandling,Intents.INAddTasksIntent,System.Action{Intents.INTaskListResolutionResult}) -M:Intents.INAddTasksIntentHandling_Extensions.ResolveTaskTitles(Intents.IINAddTasksIntentHandling,Intents.INAddTasksIntent,System.Action{Intents.INSpeakableStringResolutionResult[]}) M:Intents.INAddTasksIntentHandling_Extensions.ResolveTemporalEventTrigger(Intents.IINAddTasksIntentHandling,Intents.INAddTasksIntent,System.Action{Intents.INAddTasksTemporalEventTriggerResolutionResult}) -M:Intents.INAddTasksIntentHandling_Extensions.ResolveTemporalEventTrigger(Intents.IINAddTasksIntentHandling,Intents.INAddTasksIntent,System.Action{Intents.INTemporalEventTriggerResolutionResult}) M:Intents.INAddTasksIntentResponse.#ctor(Intents.INAddTasksIntentResponseCode,Foundation.NSUserActivity) M:Intents.INAddTasksTargetTaskListResolutionResult.#ctor(Intents.INTaskListResolutionResult) M:Intents.INAddTasksTargetTaskListResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -15514,9 +14499,6 @@ 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) M:Intents.INAppendToNoteIntent.#ctor(Intents.INNote,Intents.INNoteContent) -M:Intents.INAppendToNoteIntentHandling_Extensions.Confirm(Intents.IINAppendToNoteIntentHandling,Intents.INAppendToNoteIntent,System.Action{Intents.INAppendToNoteIntentResponse}) -M:Intents.INAppendToNoteIntentHandling_Extensions.ResolveContentForAppend(Intents.IINAppendToNoteIntentHandling,Intents.INAppendToNoteIntent,System.Action{Intents.INNoteContentResolutionResult}) -M:Intents.INAppendToNoteIntentHandling_Extensions.ResolveTargetNoteForAppend(Intents.IINAppendToNoteIntentHandling,Intents.INAppendToNoteIntent,System.Action{Intents.INNoteResolutionResult}) M:Intents.INAppendToNoteIntentResponse.#ctor(Intents.INAppendToNoteIntentResponseCode,Foundation.NSUserActivity) M:Intents.INBalanceAmount.#ctor(Foundation.NSDecimalNumber,Intents.INBalanceType) M:Intents.INBalanceAmount.#ctor(Foundation.NSDecimalNumber,System.String) @@ -15545,11 +14527,6 @@ 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.INBookRestaurantReservationIntentHandling_Extensions.ResolveBookingDate(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INDateComponentsResolutionResult}) -M:Intents.INBookRestaurantReservationIntentHandling_Extensions.ResolveGuest(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INRestaurantGuestResolutionResult}) -M:Intents.INBookRestaurantReservationIntentHandling_Extensions.ResolveGuestProvidedSpecialRequest(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INBookRestaurantReservationIntentHandling_Extensions.ResolvePartySize(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.INBookRestaurantReservationIntentHandling_Extensions.ResolveRestaurant(Intents.IINBookRestaurantReservationIntentHandling,Intents.INBookRestaurantReservationIntent,System.Action{Intents.INRestaurantResolutionResult}) M:Intents.INBookRestaurantReservationIntentResponse.#ctor(Intents.INBookRestaurantReservationIntentCode,Foundation.NSUserActivity) M:Intents.INBooleanResolutionResult.GetConfirmationRequired(Foundation.NSNumber) M:Intents.INBooleanResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -15591,11 +14568,9 @@ M:Intents.INCallRecordTypeResolutionResult.GetConfirmationRequired(Intents.INCal M:Intents.INCallRecordTypeResolutionResult.GetSuccess(Intents.INCallRecordType) M:Intents.INCallRecordTypeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INCancelRideIntent.#ctor(System.String) -M:Intents.INCancelRideIntentHandling_Extensions.Confirm(Intents.IINCancelRideIntentHandling,Intents.INCancelRideIntent,System.Action{Intents.INCancelRideIntentResponse}) M:Intents.INCancelRideIntentResponse.#ctor(Intents.INCancelRideIntentResponseCode,Foundation.NSUserActivity) M:Intents.INCancelWorkoutIntent.#ctor(Intents.INSpeakableString) M:Intents.INCancelWorkoutIntentHandling_Extensions.Confirm(Intents.IINCancelWorkoutIntentHandling,Intents.INCancelWorkoutIntent,System.Action{Intents.INCancelWorkoutIntentResponse}) -M:Intents.INCancelWorkoutIntentHandling_Extensions.ResolveWorkoutName(Intents.IINCancelWorkoutIntentHandling,Intents.INCancelWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) 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) @@ -15624,16 +14599,8 @@ M:Intents.INCarSignalOptionsResolutionResult.GetConfirmationRequired(Intents.INC M:Intents.INCarSignalOptionsResolutionResult.GetSuccess(Intents.INCarSignalOptions) M:Intents.INCarSignalOptionsResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INCreateNoteIntent.#ctor(Intents.INSpeakableString,Intents.INNoteContent,Intents.INSpeakableString) -M:Intents.INCreateNoteIntentHandling_Extensions.Confirm(Intents.IINCreateNoteIntentHandling,Intents.INCreateNoteIntent,System.Action{Intents.INCreateNoteIntentResponse}) -M:Intents.INCreateNoteIntentHandling_Extensions.ResolveContent(Intents.IINCreateNoteIntentHandling,Intents.INCreateNoteIntent,System.Action{Intents.INNoteContentResolutionResult}) -M:Intents.INCreateNoteIntentHandling_Extensions.ResolveGroupName(Intents.IINCreateNoteIntentHandling,Intents.INCreateNoteIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INCreateNoteIntentHandling_Extensions.ResolveTitle(Intents.IINCreateNoteIntentHandling,Intents.INCreateNoteIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INCreateNoteIntentResponse.#ctor(Intents.INCreateNoteIntentResponseCode,Foundation.NSUserActivity) M:Intents.INCreateTaskListIntent.#ctor(Intents.INSpeakableString,Intents.INSpeakableString[],Intents.INSpeakableString) -M:Intents.INCreateTaskListIntentHandling_Extensions.Confirm(Intents.IINCreateTaskListIntentHandling,Intents.INCreateTaskListIntent,System.Action{Intents.INCreateTaskListIntentResponse}) -M:Intents.INCreateTaskListIntentHandling_Extensions.ResolveGroupName(Intents.IINCreateTaskListIntentHandling,Intents.INCreateTaskListIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INCreateTaskListIntentHandling_Extensions.ResolveTaskTitles(Intents.IINCreateTaskListIntentHandling,Intents.INCreateTaskListIntent,System.Action{Intents.INSpeakableStringResolutionResult[]}) -M:Intents.INCreateTaskListIntentHandling_Extensions.ResolveTitle(Intents.IINCreateTaskListIntentHandling,Intents.INCreateTaskListIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INCreateTaskListIntentResponse.#ctor(Intents.INCreateTaskListIntentResponseCode,Foundation.NSUserActivity) M:Intents.INCurrencyAmount.#ctor(Foundation.NSDecimalNumber,System.String) M:Intents.INCurrencyAmount.Copy(Foundation.NSZone) @@ -15693,7 +14660,6 @@ M:Intents.INEditMessageIntentHandling_Extensions.ResolveEditedContent(Intents.II M:Intents.INEditMessageIntentResponse.#ctor(Intents.INEditMessageIntentResponseCode,Foundation.NSUserActivity) M:Intents.INEndWorkoutIntent.#ctor(Intents.INSpeakableString) M:Intents.INEndWorkoutIntentHandling_Extensions.Confirm(Intents.IINEndWorkoutIntentHandling,Intents.INEndWorkoutIntent,System.Action{Intents.INEndWorkoutIntentResponse}) -M:Intents.INEndWorkoutIntentHandling_Extensions.ResolveWorkoutName(Intents.IINEndWorkoutIntentHandling,Intents.INEndWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INEndWorkoutIntentResponse.#ctor(Intents.INEndWorkoutIntentResponseCode,Foundation.NSUserActivity) M:Intents.INEnergyResolutionResult.GetConfirmationRequired(Foundation.NSMeasurement{Foundation.NSUnitEnergy}) M:Intents.INEnergyResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -15723,22 +14689,16 @@ M:Intents.INFocusStatusCenter.RequestAuthorization(System.Action{Intents.INFocus 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.INGetAvailableRestaurantReservationBookingDefaultsIntentHandling_Extensions.ResolveAvailableRestaurantReservationBookingDefaults(Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent,System.Action{Intents.INRestaurantResolutionResult}) 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.INGetAvailableRestaurantReservationBookingsIntentHandling_Extensions.ResolveAvailableRestaurantReservationBookings(Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INRestaurantResolutionResult}) -M:Intents.INGetAvailableRestaurantReservationBookingsIntentHandling_Extensions.ResolvePartySizeAvailableRestaurantReservationBookings(Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.INGetAvailableRestaurantReservationBookingsIntentHandling_Extensions.ResolvePreferredBookingDateAvailableRestaurantReservationBookings(Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling,Intents.INGetAvailableRestaurantReservationBookingsIntent,System.Action{Intents.INDateComponentsResolutionResult}) M:Intents.INGetAvailableRestaurantReservationBookingsIntentResponse.#ctor(Intents.INRestaurantReservationBooking[],Intents.INGetAvailableRestaurantReservationBookingsIntentCode,Foundation.NSUserActivity) M:Intents.INGetCarLockStatusIntent.#ctor(Intents.INSpeakableString) M:Intents.INGetCarLockStatusIntentHandling_Extensions.Confirm(Intents.IINGetCarLockStatusIntentHandling,Intents.INGetCarLockStatusIntent,System.Action{Intents.INGetCarLockStatusIntentResponse}) -M:Intents.INGetCarLockStatusIntentHandling_Extensions.ResolveCarName(Intents.IINGetCarLockStatusIntentHandling,Intents.INGetCarLockStatusIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INGetCarLockStatusIntentResponse.#ctor(Intents.INGetCarLockStatusIntentResponseCode,Foundation.NSUserActivity) M:Intents.INGetCarPowerLevelStatusIntent.#ctor(Intents.INSpeakableString) M:Intents.INGetCarPowerLevelStatusIntentHandling_Extensions.Confirm(Intents.IINGetCarPowerLevelStatusIntentHandling,Intents.INGetCarPowerLevelStatusIntent,System.Action{Intents.INGetCarPowerLevelStatusIntentResponse}) -M:Intents.INGetCarPowerLevelStatusIntentHandling_Extensions.ResolveCarName(Intents.IINGetCarPowerLevelStatusIntentHandling,Intents.INGetCarPowerLevelStatusIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INGetCarPowerLevelStatusIntentHandling_Extensions.StartSendingUpdates(Intents.IINGetCarPowerLevelStatusIntentHandling,Intents.INGetCarPowerLevelStatusIntent,Intents.IINGetCarPowerLevelStatusIntentResponseObserver) M:Intents.INGetCarPowerLevelStatusIntentHandling_Extensions.StopSendingUpdates(Intents.IINGetCarPowerLevelStatusIntentHandling,Intents.INGetCarPowerLevelStatusIntent) M:Intents.INGetCarPowerLevelStatusIntentResponse.#ctor(Intents.INGetCarPowerLevelStatusIntentResponseCode,Foundation.NSUserActivity) @@ -15753,11 +14713,8 @@ M:Intents.INGetUserCurrentRestaurantReservationBookingsIntent.#ctor(Intents.INRe 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.INGetUserCurrentRestaurantReservationBookingsIntentHandling_Extensions.ResolveUserCurrentRestaurantReservationBookings(Intents.IINGetUserCurrentRestaurantReservationBookingsIntentHandling,Intents.INGetUserCurrentRestaurantReservationBookingsIntent,System.Action{Intents.INRestaurantResolutionResult}) M:Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse.#ctor(Intents.INRestaurantReservationUserBooking[],Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponseCode,Foundation.NSUserActivity) M:Intents.INGetVisualCodeIntent.#ctor(Intents.INVisualCodeType) -M:Intents.INGetVisualCodeIntentHandling_Extensions.Confirm(Intents.IINGetVisualCodeIntentHandling,Intents.INGetVisualCodeIntent,System.Action{Intents.INGetVisualCodeIntentResponse}) -M:Intents.INGetVisualCodeIntentHandling_Extensions.ResolveVisualCodeType(Intents.IINGetVisualCodeIntentHandling,Intents.INGetVisualCodeIntent,System.Action{Intents.INVisualCodeTypeResolutionResult}) M:Intents.INGetVisualCodeIntentResponse.#ctor(Intents.INGetVisualCodeIntentResponseCode,Foundation.NSUserActivity) M:Intents.INHangUpCallIntent.#ctor(System.String) M:Intents.INHangUpCallIntentHandling_Extensions.ConfirmHangUpCall(Intents.IINHangUpCallIntentHandling,Intents.INHangUpCallIntent,System.Action{Intents.INHangUpCallIntentResponse}) @@ -15801,8 +14758,6 @@ M:Intents.INListCarsIntentHandling_Extensions.ConfirmListCars(Intents.IINListCar M:Intents.INListCarsIntentResponse.#ctor(Intents.INListCarsIntentResponseCode,Foundation.NSUserActivity) M:Intents.INListRideOptionsIntent.#ctor(CoreLocation.CLPlacemark,CoreLocation.CLPlacemark) M:Intents.INListRideOptionsIntentHandling_Extensions.Confirm(Intents.IINListRideOptionsIntentHandling,Intents.INListRideOptionsIntent,System.Action{Intents.INListRideOptionsIntentResponse}) -M:Intents.INListRideOptionsIntentHandling_Extensions.ResolveDropOffLocation(Intents.IINListRideOptionsIntentHandling,Intents.INListRideOptionsIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.INListRideOptionsIntentHandling_Extensions.ResolvePickupLocation(Intents.IINListRideOptionsIntentHandling,Intents.INListRideOptionsIntent,System.Action{Intents.INPlacemarkResolutionResult}) M:Intents.INListRideOptionsIntentResponse.#ctor(Intents.INListRideOptionsIntentResponseCode,Foundation.NSUserActivity) M:Intents.INLocationRelevanceProvider.#ctor(CoreLocation.CLRegion) M:Intents.INLocationSearchTypeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -15913,17 +14868,9 @@ M:Intents.INParameter.IsEqualTo(Intents.INParameter) M:Intents.INParameter.SetIndex(System.UIntPtr,System.String) M:Intents.INPauseWorkoutIntent.#ctor(Intents.INSpeakableString) M:Intents.INPauseWorkoutIntentHandling_Extensions.Confirm(Intents.IINPauseWorkoutIntentHandling,Intents.INPauseWorkoutIntent,System.Action{Intents.INPauseWorkoutIntentResponse}) -M:Intents.INPauseWorkoutIntentHandling_Extensions.ResolveWorkoutName(Intents.IINPauseWorkoutIntentHandling,Intents.INPauseWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INPauseWorkoutIntentResponse.#ctor(Intents.INPauseWorkoutIntentResponseCode,Foundation.NSUserActivity) M:Intents.INPayBillIntent.#ctor(Intents.INBillPayee,Intents.INPaymentAccount,Intents.INPaymentAmount,Intents.INDateComponentsRange,System.String,Intents.INBillType,Intents.INDateComponentsRange) M:Intents.INPayBillIntentHandling_Extensions.Confirm(Intents.IINPayBillIntentHandling,Intents.INPayBillIntent,System.Action{Intents.INPayBillIntentResponse}) -M:Intents.INPayBillIntentHandling_Extensions.ResolveBillPayee(Intents.IINPayBillIntentHandling,Intents.INPayBillIntent,System.Action{Intents.INBillPayeeResolutionResult}) -M:Intents.INPayBillIntentHandling_Extensions.ResolveBillType(Intents.IINPayBillIntentHandling,Intents.INPayBillIntent,System.Action{Intents.INBillTypeResolutionResult}) -M:Intents.INPayBillIntentHandling_Extensions.ResolveDueDate(Intents.IINPayBillIntentHandling,Intents.INPayBillIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.INPayBillIntentHandling_Extensions.ResolveFromAccount(Intents.IINPayBillIntentHandling,Intents.INPayBillIntent,System.Action{Intents.INPaymentAccountResolutionResult}) -M:Intents.INPayBillIntentHandling_Extensions.ResolveTransactionAmount(Intents.IINPayBillIntentHandling,Intents.INPayBillIntent,System.Action{Intents.INPaymentAmountResolutionResult}) -M:Intents.INPayBillIntentHandling_Extensions.ResolveTransactionNote(Intents.IINPayBillIntentHandling,Intents.INPayBillIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INPayBillIntentHandling_Extensions.ResolveTransactionScheduledDate(Intents.IINPayBillIntentHandling,Intents.INPayBillIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) 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) @@ -15982,7 +14929,6 @@ M:Intents.INPlaybackRepeatModeResolutionResult.GetSuccess(Intents.INPlaybackRepe M:Intents.INPlaybackRepeatModeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INPlayMediaIntent.#ctor(Intents.INMediaItem[],Intents.INMediaItem,System.Nullable{System.Boolean},Intents.INPlaybackRepeatMode,System.Nullable{System.Boolean},Intents.INPlaybackQueueLocation,System.Nullable{System.Double},Intents.INMediaSearch) M:Intents.INPlayMediaIntent.#ctor(Intents.INMediaItem[],Intents.INMediaItem,System.Nullable{System.Boolean},Intents.INPlaybackRepeatMode,System.Nullable{System.Boolean}) -M:Intents.INPlayMediaIntentHandling_Extensions.Confirm(Intents.IINPlayMediaIntentHandling,Intents.INPlayMediaIntent,System.Action{Intents.INPlayMediaIntentResponse}) M:Intents.INPlayMediaIntentHandling_Extensions.ResolveMediaItems(Intents.IINPlayMediaIntentHandling,Intents.INPlayMediaIntent,System.Action{Foundation.NSArray{Intents.INPlayMediaMediaItemResolutionResult}}) M:Intents.INPlayMediaIntentHandling_Extensions.ResolvePlaybackQueueLocation(Intents.IINPlayMediaIntentHandling,Intents.INPlayMediaIntent,System.Action{Intents.INPlaybackQueueLocationResolutionResult}) M:Intents.INPlayMediaIntentHandling_Extensions.ResolvePlaybackRepeatMode(Intents.IINPlayMediaIntentHandling,Intents.INPlayMediaIntent,System.Action{Intents.INPlaybackRepeatModeResolutionResult}) @@ -16039,11 +14985,6 @@ M:Intents.INRequestPaymentCurrencyAmountResolutionResult.GetUnsupported(Intents. M:Intents.INRequestPaymentCurrencyAmountResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INRequestPaymentIntent.#ctor(Intents.INPerson,Intents.INCurrencyAmount,System.String) M:Intents.INRequestPaymentIntentHandling_Extensions.Confirm(Intents.IINRequestPaymentIntentHandling,Intents.INRequestPaymentIntent,System.Action{Intents.INRequestPaymentIntentResponse}) -M:Intents.INRequestPaymentIntentHandling_Extensions.ResolveCurrencyAmount(Intents.IINRequestPaymentIntentHandling,Intents.INRequestPaymentIntent,System.Action{Intents.INCurrencyAmountResolutionResult}) -M:Intents.INRequestPaymentIntentHandling_Extensions.ResolveCurrencyAmount(Intents.IINRequestPaymentIntentHandling,Intents.INRequestPaymentIntent,System.Action{Intents.INRequestPaymentCurrencyAmountResolutionResult}) -M:Intents.INRequestPaymentIntentHandling_Extensions.ResolveNote(Intents.IINRequestPaymentIntentHandling,Intents.INRequestPaymentIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INRequestPaymentIntentHandling_Extensions.ResolvePayer(Intents.IINRequestPaymentIntentHandling,Intents.INRequestPaymentIntent,System.Action{Intents.INPersonResolutionResult}) -M:Intents.INRequestPaymentIntentHandling_Extensions.ResolvePayer(Intents.IINRequestPaymentIntentHandling,Intents.INRequestPaymentIntent,System.Action{Intents.INRequestPaymentPayerResolutionResult}) M:Intents.INRequestPaymentIntentResponse.#ctor(Intents.INRequestPaymentIntentResponseCode,Foundation.NSUserActivity) M:Intents.INRequestPaymentPayerResolutionResult.#ctor(Intents.INPersonResolutionResult) M:Intents.INRequestPaymentPayerResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -16055,11 +14996,6 @@ M:Intents.INRequestPaymentPayerResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INRequestRideIntent.#ctor(CoreLocation.CLPlacemark,CoreLocation.CLPlacemark,Intents.INSpeakableString,Foundation.NSNumber,Intents.INPaymentMethod,Intents.INDateComponentsRange) 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.INRequestRideIntentHandling_Extensions.ResolveDropOffLocation(Intents.IINRequestRideIntentHandling,Intents.INRequestRideIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.INRequestRideIntentHandling_Extensions.ResolvePartySize(Intents.IINRequestRideIntentHandling,Intents.INRequestRideIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.INRequestRideIntentHandling_Extensions.ResolvePickupLocation(Intents.IINRequestRideIntentHandling,Intents.INRequestRideIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.INRequestRideIntentHandling_Extensions.ResolveRideOptionName(Intents.IINRequestRideIntentHandling,Intents.INRequestRideIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INRequestRideIntentHandling_Extensions.ResolveScheduledPickupTime(Intents.IINRequestRideIntentHandling,Intents.INRequestRideIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) M:Intents.INRequestRideIntentResponse.#ctor(Intents.INRequestRideIntentResponseCode,Foundation.NSUserActivity) M:Intents.INReservation.Copy(Foundation.NSZone) M:Intents.INReservationAction.#ctor(Intents.INReservationActionType,Intents.INDateComponentsRange,Foundation.NSUserActivity) @@ -16089,7 +15025,6 @@ M:Intents.INRestaurantResolutionResult.GetSuccess(Intents.INRestaurant) 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.INResumeWorkoutIntentHandling_Extensions.ResolveWorkoutName(Intents.IINResumeWorkoutIntentHandling,Intents.INResumeWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INResumeWorkoutIntentResponse.#ctor(Intents.INResumeWorkoutIntentResponseCode,Foundation.NSUserActivity) M:Intents.INRideCompletionStatus.Copy(Foundation.NSZone) M:Intents.INRideCompletionStatus.GetCanceledByService @@ -16112,32 +15047,15 @@ 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.INSaveProfileInCarIntentHandling_Extensions.ResolveProfileName(Intents.IINSaveProfileInCarIntentHandling,Intents.INSaveProfileInCarIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INSaveProfileInCarIntentHandling_Extensions.ResolveProfileNumber(Intents.IINSaveProfileInCarIntentHandling,Intents.INSaveProfileInCarIntent,System.Action{Intents.INIntegerResolutionResult}) M:Intents.INSaveProfileInCarIntentResponse.#ctor(Intents.INSaveProfileInCarIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSearchCallHistoryIntent.#ctor(Intents.INCallRecordType,Intents.INDateComponentsRange,Intents.INPerson,Intents.INCallCapabilityOptions) M:Intents.INSearchCallHistoryIntent.#ctor(Intents.INDateComponentsRange,Intents.INPerson,Intents.INCallCapabilityOptions,Intents.INCallRecordTypeOptions,Foundation.NSNumber) M:Intents.INSearchCallHistoryIntentHandling_Extensions.Confirm(Intents.IINSearchCallHistoryIntentHandling,Intents.INSearchCallHistoryIntent,System.Action{Intents.INSearchCallHistoryIntentResponse}) -M:Intents.INSearchCallHistoryIntentHandling_Extensions.ResolveCallType(Intents.IINSearchCallHistoryIntentHandling,Intents.INSearchCallHistoryIntent,System.Action{Intents.INCallRecordTypeResolutionResult}) -M:Intents.INSearchCallHistoryIntentHandling_Extensions.ResolveCallTypes(Intents.IINSearchCallHistoryIntentHandling,Intents.INSearchCallHistoryIntent,System.Action{Intents.INCallRecordTypeOptionsResolutionResult}) -M:Intents.INSearchCallHistoryIntentHandling_Extensions.ResolveDateCreated(Intents.IINSearchCallHistoryIntentHandling,Intents.INSearchCallHistoryIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.INSearchCallHistoryIntentHandling_Extensions.ResolveRecipient(Intents.IINSearchCallHistoryIntentHandling,Intents.INSearchCallHistoryIntent,System.Action{Intents.INPersonResolutionResult}) -M:Intents.INSearchCallHistoryIntentHandling_Extensions.ResolveUnseen(Intents.IINSearchCallHistoryIntentHandling,Intents.INSearchCallHistoryIntent,System.Action{Intents.INBooleanResolutionResult}) M:Intents.INSearchCallHistoryIntentResponse.#ctor(Intents.INSearchCallHistoryIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSearchForAccountsIntent.#ctor(Intents.INSpeakableString,Intents.INAccountType,Intents.INSpeakableString,Intents.INBalanceType) -M:Intents.INSearchForAccountsIntentHandling_Extensions.Confirm(Intents.IINSearchForAccountsIntentHandling,Intents.INSearchForAccountsIntent,System.Action{Intents.INSearchForAccountsIntentResponse}) -M:Intents.INSearchForAccountsIntentHandling_Extensions.ResolveAccountNickname(Intents.IINSearchForAccountsIntentHandling,Intents.INSearchForAccountsIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INSearchForAccountsIntentHandling_Extensions.ResolveAccountType(Intents.IINSearchForAccountsIntentHandling,Intents.INSearchForAccountsIntent,System.Action{Intents.INAccountTypeResolutionResult}) -M:Intents.INSearchForAccountsIntentHandling_Extensions.ResolveOrganizationName(Intents.IINSearchForAccountsIntentHandling,Intents.INSearchForAccountsIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INSearchForAccountsIntentHandling_Extensions.ResolveRequestedBalanceType(Intents.IINSearchForAccountsIntentHandling,Intents.INSearchForAccountsIntent,System.Action{Intents.INBalanceTypeResolutionResult}) M:Intents.INSearchForAccountsIntentResponse.#ctor(Intents.INSearchForAccountsIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSearchForBillsIntent.#ctor(Intents.INBillPayee,Intents.INDateComponentsRange,Intents.INBillType,Intents.INPaymentStatus,Intents.INDateComponentsRange) M:Intents.INSearchForBillsIntentHandling_Extensions.Confirm(Intents.IINSearchForBillsIntentHandling,Intents.INSearchForBillsIntent,System.Action{Intents.INSearchForBillsIntentResponse}) -M:Intents.INSearchForBillsIntentHandling_Extensions.ResolveBillPayee(Intents.IINSearchForBillsIntentHandling,Intents.INSearchForBillsIntent,System.Action{Intents.INBillPayeeResolutionResult}) -M:Intents.INSearchForBillsIntentHandling_Extensions.ResolveBillType(Intents.IINSearchForBillsIntentHandling,Intents.INSearchForBillsIntent,System.Action{Intents.INBillTypeResolutionResult}) -M:Intents.INSearchForBillsIntentHandling_Extensions.ResolveDueDateRange(Intents.IINSearchForBillsIntentHandling,Intents.INSearchForBillsIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.INSearchForBillsIntentHandling_Extensions.ResolvePaymentDateRange(Intents.IINSearchForBillsIntentHandling,Intents.INSearchForBillsIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.INSearchForBillsIntentHandling_Extensions.ResolveStatus(Intents.IINSearchForBillsIntentHandling,Intents.INSearchForBillsIntent,System.Action{Intents.INPaymentStatusResolutionResult}) M:Intents.INSearchForBillsIntentResponse.#ctor(Intents.INSearchForBillsIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSearchForMediaIntent.#ctor(Intents.INMediaItem[],Intents.INMediaSearch) M:Intents.INSearchForMediaIntentHandling_Extensions.Confirm(Intents.IINSearchForMediaIntentHandling,Intents.INSearchForMediaIntent,System.Action{Intents.INSearchForMediaIntentResponse}) @@ -16155,35 +15073,15 @@ M:Intents.INSearchForMessagesIntent.#ctor(Intents.INPerson[],Intents.INPerson[], M:Intents.INSearchForMessagesIntent.#ctor(Intents.INPerson[],Intents.INPerson[],System.String[],Intents.INMessageAttributeOptions,Intents.INDateComponentsRange,System.String[],System.String[],Intents.INSpeakableString[]) M:Intents.INSearchForMessagesIntent.#ctor(Intents.INPerson[],Intents.INPerson[],System.String[],Intents.INMessageAttributeOptions,Intents.INDateComponentsRange,System.String[],System.String[],System.String[]) M:Intents.INSearchForMessagesIntentHandling_Extensions.Confirm(Intents.IINSearchForMessagesIntentHandling,Intents.INSearchForMessagesIntent,System.Action{Intents.INSearchForMessagesIntentResponse}) -M:Intents.INSearchForMessagesIntentHandling_Extensions.ResolveAttributes(Intents.IINSearchForMessagesIntentHandling,Intents.INSearchForMessagesIntent,System.Action{Intents.INMessageAttributeOptionsResolutionResult}) -M:Intents.INSearchForMessagesIntentHandling_Extensions.ResolveDateTimeRange(Intents.IINSearchForMessagesIntentHandling,Intents.INSearchForMessagesIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.INSearchForMessagesIntentHandling_Extensions.ResolveGroupNames(Intents.IINSearchForMessagesIntentHandling,Intents.INSearchForMessagesIntent,System.Action{Intents.INStringResolutionResult[]}) -M:Intents.INSearchForMessagesIntentHandling_Extensions.ResolveRecipients(Intents.IINSearchForMessagesIntentHandling,Intents.INSearchForMessagesIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.INSearchForMessagesIntentHandling_Extensions.ResolveSenders(Intents.IINSearchForMessagesIntentHandling,Intents.INSearchForMessagesIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.INSearchForMessagesIntentHandling_Extensions.ResolveSpeakableGroupNames(Intents.IINSearchForMessagesIntentHandling,Intents.INSearchForMessagesIntent,System.Action{Intents.INSpeakableStringResolutionResult[]}) M:Intents.INSearchForMessagesIntentResponse.#ctor(Intents.INSearchForMessagesIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSearchForNotebookItemsIntent.#ctor(Intents.INSpeakableString,System.String,Intents.INNotebookItemType,Intents.INTaskStatus,CoreLocation.CLPlacemark,Intents.INLocationSearchType,Intents.INDateComponentsRange,Intents.INDateSearchType,Intents.INTemporalEventTriggerTypeOptions,Intents.INTaskPriority,System.String) M:Intents.INSearchForNotebookItemsIntent.#ctor(Intents.INSpeakableString,System.String,Intents.INNotebookItemType,Intents.INTaskStatus,CoreLocation.CLPlacemark,Intents.INLocationSearchType,Intents.INDateComponentsRange,Intents.INDateSearchType,System.String) M:Intents.INSearchForNotebookItemsIntent.#ctor(Intents.INSpeakableString,System.String,Intents.INNotebookItemType,Intents.INTaskStatus,CoreLocation.CLPlacemark,Intents.INLocationSearchType,Intents.INDateComponentsRange,Intents.INDateSearchType) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.Confirm(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INSearchForNotebookItemsIntentResponse}) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveContent(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveDateSearchType(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INDateSearchTypeResolutionResult}) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveDateTime(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveItemType(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INNotebookItemTypeResolutionResult}) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveLocation(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveLocationSearchType(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INLocationSearchTypeResolutionResult}) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveStatus(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INTaskStatusResolutionResult}) M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveTaskPriority(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INTaskPriorityResolutionResult}) M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveTemporalEventTriggerTypes(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INTemporalEventTriggerTypeOptionsResolutionResult}) -M:Intents.INSearchForNotebookItemsIntentHandling_Extensions.ResolveTitle(Intents.IINSearchForNotebookItemsIntentHandling,Intents.INSearchForNotebookItemsIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INSearchForNotebookItemsIntentResponse.#ctor(Intents.INSearchForNotebookItemsIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSearchForPhotosIntent.#ctor(Intents.INDateComponentsRange,CoreLocation.CLPlacemark,System.String,System.String[],Intents.INPhotoAttributeOptions,Intents.INPhotoAttributeOptions,Intents.INPerson[]) M:Intents.INSearchForPhotosIntentHandling_Extensions.Confirm(Intents.IINSearchForPhotosIntentHandling,Intents.INSearchForPhotosIntent,System.Action{Intents.INSearchForPhotosIntentResponse}) -M:Intents.INSearchForPhotosIntentHandling_Extensions.ResolveAlbumName(Intents.IINSearchForPhotosIntentHandling,Intents.INSearchForPhotosIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INSearchForPhotosIntentHandling_Extensions.ResolveDateCreated(Intents.IINSearchForPhotosIntentHandling,Intents.INSearchForPhotosIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.INSearchForPhotosIntentHandling_Extensions.ResolveLocationCreated(Intents.IINSearchForPhotosIntentHandling,Intents.INSearchForPhotosIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.INSearchForPhotosIntentHandling_Extensions.ResolvePeopleInPhoto(Intents.IINSearchForPhotosIntentHandling,Intents.INSearchForPhotosIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.INSearchForPhotosIntentHandling_Extensions.ResolveSearchTerms(Intents.IINSearchForPhotosIntentHandling,Intents.INSearchForPhotosIntent,System.Action{Intents.INStringResolutionResult[]}) 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) @@ -16193,12 +15091,7 @@ M:Intents.INSendMessageIntent.#ctor(Intents.INPerson[],System.String,Intents.INS M:Intents.INSendMessageIntent.#ctor(Intents.INPerson[],System.String,System.String,System.String,Intents.INPerson) M:Intents.INSendMessageIntentDonationMetadata.#ctor M:Intents.INSendMessageIntentHandling_Extensions.Confirm(Intents.IINSendMessageIntentHandling,Intents.INSendMessageIntent,System.Action{Intents.INSendMessageIntentResponse}) -M:Intents.INSendMessageIntentHandling_Extensions.ResolveContent(Intents.IINSendMessageIntentHandling,Intents.INSendMessageIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INSendMessageIntentHandling_Extensions.ResolveGroupName(Intents.IINSendMessageIntentHandling,Intents.INSendMessageIntent,System.Action{Intents.INStringResolutionResult}) M:Intents.INSendMessageIntentHandling_Extensions.ResolveOutgoingMessageType(Intents.IINSendMessageIntentHandling,Intents.INSendMessageIntent,System.Action{Intents.INOutgoingMessageTypeResolutionResult}) -M:Intents.INSendMessageIntentHandling_Extensions.ResolveRecipients(Intents.IINSendMessageIntentHandling,Intents.INSendMessageIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.INSendMessageIntentHandling_Extensions.ResolveRecipients(Intents.IINSendMessageIntentHandling,Intents.INSendMessageIntent,System.Action{Intents.INSendMessageRecipientResolutionResult[]}) -M:Intents.INSendMessageIntentHandling_Extensions.ResolveSpeakableGroupName(Intents.IINSendMessageIntentHandling,Intents.INSendMessageIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INSendMessageIntentResponse.#ctor(Intents.INSendMessageIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSendMessageRecipientResolutionResult.#ctor(Intents.INPersonResolutionResult) M:Intents.INSendMessageRecipientResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -16213,11 +15106,6 @@ M:Intents.INSendPaymentCurrencyAmountResolutionResult.GetUnsupported(Intents.INS M:Intents.INSendPaymentCurrencyAmountResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INSendPaymentIntent.#ctor(Intents.INPerson,Intents.INCurrencyAmount,System.String) M:Intents.INSendPaymentIntentHandling_Extensions.Confirm(Intents.IINSendPaymentIntentHandling,Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentIntentResponse}) -M:Intents.INSendPaymentIntentHandling_Extensions.ResolveCurrencyAmount(Intents.IINSendPaymentIntentHandling,Intents.INSendPaymentIntent,System.Action{Intents.INCurrencyAmountResolutionResult}) -M:Intents.INSendPaymentIntentHandling_Extensions.ResolveCurrencyAmount(Intents.IINSendPaymentIntentHandling,Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentCurrencyAmountResolutionResult}) -M:Intents.INSendPaymentIntentHandling_Extensions.ResolveNote(Intents.IINSendPaymentIntentHandling,Intents.INSendPaymentIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INSendPaymentIntentHandling_Extensions.ResolvePayee(Intents.IINSendPaymentIntentHandling,Intents.INSendPaymentIntent,System.Action{Intents.INPersonResolutionResult}) -M:Intents.INSendPaymentIntentHandling_Extensions.ResolvePayee(Intents.IINSendPaymentIntentHandling,Intents.INSendPaymentIntent,System.Action{Intents.INSendPaymentPayeeResolutionResult}) M:Intents.INSendPaymentIntentResponse.#ctor(Intents.INSendPaymentIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSendPaymentPayeeResolutionResult.#ctor(Intents.INPersonResolutionResult) M:Intents.INSendPaymentPayeeResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -16227,82 +15115,40 @@ M:Intents.INSendPaymentPayeeResolutionResult.GetSuccess(Intents.INPerson) M:Intents.INSendPaymentPayeeResolutionResult.GetUnsupported(Intents.INSendPaymentPayeeUnsupportedReason) M:Intents.INSendPaymentPayeeResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INSendRideFeedbackIntent.#ctor(System.String) -M:Intents.INSendRideFeedbackIntentHandling_Extensions.Confirm(Intents.IINSendRideFeedbackIntentHandling,Intents.INSendRideFeedbackIntent,System.Action{Intents.INSendRideFeedbackIntentResponse}) M:Intents.INSendRideFeedbackIntentResponse.#ctor(Intents.INSendRideFeedbackIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetAudioSourceInCarIntent.#ctor(Intents.INCarAudioSource,Intents.INRelativeReference) M:Intents.INSetAudioSourceInCarIntentHandling_Extensions.Confirm(Intents.IINSetAudioSourceInCarIntentHandling,Intents.INSetAudioSourceInCarIntent,System.Action{Intents.INSetAudioSourceInCarIntentResponse}) -M:Intents.INSetAudioSourceInCarIntentHandling_Extensions.ResolveAudioSource(Intents.IINSetAudioSourceInCarIntentHandling,Intents.INSetAudioSourceInCarIntent,System.Action{Intents.INCarAudioSourceResolutionResult}) -M:Intents.INSetAudioSourceInCarIntentHandling_Extensions.ResolveRelativeAudioSourceReference(Intents.IINSetAudioSourceInCarIntentHandling,Intents.INSetAudioSourceInCarIntent,System.Action{Intents.INRelativeReferenceResolutionResult}) M:Intents.INSetAudioSourceInCarIntentResponse.#ctor(Intents.INSetAudioSourceInCarIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetCarLockStatusIntent.#ctor(Foundation.NSNumber,Intents.INSpeakableString) M:Intents.INSetCarLockStatusIntentHandling_Extensions.Confirm(Intents.IINSetCarLockStatusIntentHandling,Intents.INSetCarLockStatusIntent,System.Action{Intents.INSetCarLockStatusIntentResponse}) -M:Intents.INSetCarLockStatusIntentHandling_Extensions.ResolveCarName(Intents.IINSetCarLockStatusIntentHandling,Intents.INSetCarLockStatusIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INSetCarLockStatusIntentHandling_Extensions.ResolveLocked(Intents.IINSetCarLockStatusIntentHandling,Intents.INSetCarLockStatusIntent,System.Action{Intents.INBooleanResolutionResult}) M:Intents.INSetCarLockStatusIntentResponse.#ctor(Intents.INSetCarLockStatusIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetClimateSettingsInCarIntent.#ctor(Foundation.NSNumber,Foundation.NSNumber,Foundation.NSNumber,Foundation.NSNumber,Intents.INCarAirCirculationMode,Foundation.NSNumber,Foundation.NSNumber,Intents.INRelativeSetting,Foundation.NSMeasurement{Foundation.NSUnitTemperature},Intents.INRelativeSetting,Intents.INCarSeat) M:Intents.INSetClimateSettingsInCarIntent.#ctor(System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Intents.INCarAirCirculationMode,System.Nullable{System.Int32},System.Nullable{System.Double},Intents.INRelativeSetting,Foundation.NSMeasurement{Foundation.NSUnitTemperature},Intents.INRelativeSetting,Intents.INCarSeat,Intents.INSpeakableString) M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.Confirm(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INSetClimateSettingsInCarIntentResponse}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveAirCirculationMode(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INCarAirCirculationModeResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveCarName(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveClimateZone(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INCarSeatResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveEnableAirConditioner(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveEnableAutoMode(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveEnableClimateControl(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveEnableFan(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveFanSpeedIndex(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveFanSpeedPercentage(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INDoubleResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveRelativeFanSpeedSetting(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INRelativeSettingResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveRelativeTemperatureSetting(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INRelativeSettingResolutionResult}) -M:Intents.INSetClimateSettingsInCarIntentHandling_Extensions.ResolveTemperature(Intents.IINSetClimateSettingsInCarIntentHandling,Intents.INSetClimateSettingsInCarIntent,System.Action{Intents.INTemperatureResolutionResult}) M:Intents.INSetClimateSettingsInCarIntentResponse.#ctor(Intents.INSetClimateSettingsInCarIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetDefrosterSettingsInCarIntent.#ctor(Foundation.NSNumber,Intents.INCarDefroster) M:Intents.INSetDefrosterSettingsInCarIntent.#ctor(System.Nullable{System.Boolean},Intents.INCarDefroster,Intents.INSpeakableString) M:Intents.INSetDefrosterSettingsInCarIntentHandling_Extensions.Confirm(Intents.IINSetDefrosterSettingsInCarIntentHandling,Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INSetDefrosterSettingsInCarIntentResponse}) -M:Intents.INSetDefrosterSettingsInCarIntentHandling_Extensions.ResolveCarName(Intents.IINSetDefrosterSettingsInCarIntentHandling,Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INSetDefrosterSettingsInCarIntentHandling_Extensions.ResolveDefroster(Intents.IINSetDefrosterSettingsInCarIntentHandling,Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INCarDefrosterResolutionResult}) -M:Intents.INSetDefrosterSettingsInCarIntentHandling_Extensions.ResolveEnable(Intents.IINSetDefrosterSettingsInCarIntentHandling,Intents.INSetDefrosterSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) M:Intents.INSetDefrosterSettingsInCarIntentResponse.#ctor(Intents.INSetDefrosterSettingsInCarIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetMessageAttributeIntent.#ctor(System.String[],Intents.INMessageAttribute) M:Intents.INSetMessageAttributeIntentHandling_Extensions.Confirm(Intents.IINSetMessageAttributeIntentHandling,Intents.INSetMessageAttributeIntent,System.Action{Intents.INSetMessageAttributeIntentResponse}) -M:Intents.INSetMessageAttributeIntentHandling_Extensions.ResolveAttribute(Intents.IINSetMessageAttributeIntentHandling,Intents.INSetMessageAttributeIntent,System.Action{Intents.INMessageAttributeResolutionResult}) M:Intents.INSetMessageAttributeIntentResponse.#ctor(Intents.INSetMessageAttributeIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetProfileInCarIntent.#ctor(Foundation.NSNumber,System.String,Foundation.NSNumber) M:Intents.INSetProfileInCarIntent.#ctor(System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},Intents.INSpeakableString) M:Intents.INSetProfileInCarIntentHandling_Extensions.Confirm(Intents.IINSetProfileInCarIntentHandling,Intents.INSetProfileInCarIntent,System.Action{Intents.INSetProfileInCarIntentResponse}) -M:Intents.INSetProfileInCarIntentHandling_Extensions.ResolveCarName(Intents.IINSetProfileInCarIntentHandling,Intents.INSetProfileInCarIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INSetProfileInCarIntentHandling_Extensions.ResolveDefaultProfile(Intents.IINSetProfileInCarIntentHandling,Intents.INSetProfileInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INSetProfileInCarIntentHandling_Extensions.ResolveProfileName(Intents.IINSetProfileInCarIntentHandling,Intents.INSetProfileInCarIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INSetProfileInCarIntentHandling_Extensions.ResolveProfileNumber(Intents.IINSetProfileInCarIntentHandling,Intents.INSetProfileInCarIntent,System.Action{Intents.INIntegerResolutionResult}) M:Intents.INSetProfileInCarIntentResponse.#ctor(Intents.INSetProfileInCarIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetRadioStationIntent.#ctor(Intents.INRadioType,Foundation.NSNumber,System.String,System.String,Foundation.NSNumber) M:Intents.INSetRadioStationIntentHandling_Extensions.Confirm(Intents.IINSetRadioStationIntentHandling,Intents.INSetRadioStationIntent,System.Action{Intents.INSetRadioStationIntentResponse}) -M:Intents.INSetRadioStationIntentHandling_Extensions.ResolveChannel(Intents.IINSetRadioStationIntentHandling,Intents.INSetRadioStationIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INSetRadioStationIntentHandling_Extensions.ResolveFrequency(Intents.IINSetRadioStationIntentHandling,Intents.INSetRadioStationIntent,System.Action{Intents.INDoubleResolutionResult}) -M:Intents.INSetRadioStationIntentHandling_Extensions.ResolvePresetNumber(Intents.IINSetRadioStationIntentHandling,Intents.INSetRadioStationIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.INSetRadioStationIntentHandling_Extensions.ResolveRadioType(Intents.IINSetRadioStationIntentHandling,Intents.INSetRadioStationIntent,System.Action{Intents.INRadioTypeResolutionResult}) -M:Intents.INSetRadioStationIntentHandling_Extensions.ResolveStationName(Intents.IINSetRadioStationIntentHandling,Intents.INSetRadioStationIntent,System.Action{Intents.INStringResolutionResult}) M:Intents.INSetRadioStationIntentResponse.#ctor(Intents.INSetRadioStationIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetSeatSettingsInCarIntent.#ctor(Foundation.NSNumber,Foundation.NSNumber,Foundation.NSNumber,Intents.INCarSeat,Foundation.NSNumber,Intents.INRelativeSetting) M:Intents.INSetSeatSettingsInCarIntent.#ctor(System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Intents.INCarSeat,System.Nullable{System.Int32},Intents.INRelativeSetting,Intents.INSpeakableString) M:Intents.INSetSeatSettingsInCarIntentHandling_Extensions.Confirm(Intents.IINSetSeatSettingsInCarIntentHandling,Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INSetSeatSettingsInCarIntentResponse}) -M:Intents.INSetSeatSettingsInCarIntentHandling_Extensions.ResolveCarName(Intents.IINSetSeatSettingsInCarIntentHandling,Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INSpeakableStringResolutionResult}) -M:Intents.INSetSeatSettingsInCarIntentHandling_Extensions.ResolveEnableCooling(Intents.IINSetSeatSettingsInCarIntentHandling,Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INSetSeatSettingsInCarIntentHandling_Extensions.ResolveEnableHeating(Intents.IINSetSeatSettingsInCarIntentHandling,Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INSetSeatSettingsInCarIntentHandling_Extensions.ResolveEnableMassage(Intents.IINSetSeatSettingsInCarIntentHandling,Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INSetSeatSettingsInCarIntentHandling_Extensions.ResolveLevel(Intents.IINSetSeatSettingsInCarIntentHandling,Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INIntegerResolutionResult}) -M:Intents.INSetSeatSettingsInCarIntentHandling_Extensions.ResolveRelativeLevelSetting(Intents.IINSetSeatSettingsInCarIntentHandling,Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INRelativeSettingResolutionResult}) -M:Intents.INSetSeatSettingsInCarIntentHandling_Extensions.ResolveSeat(Intents.IINSetSeatSettingsInCarIntentHandling,Intents.INSetSeatSettingsInCarIntent,System.Action{Intents.INCarSeatResolutionResult}) M:Intents.INSetSeatSettingsInCarIntentResponse.#ctor(Intents.INSetSeatSettingsInCarIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetTaskAttributeIntent.#ctor(Intents.INTask,Intents.INSpeakableString,Intents.INTaskStatus,Intents.INTaskPriority,Intents.INSpatialEventTrigger,Intents.INTemporalEventTrigger) M:Intents.INSetTaskAttributeIntent.#ctor(Intents.INTask,Intents.INTaskStatus,Intents.INSpatialEventTrigger,Intents.INTemporalEventTrigger) -M:Intents.INSetTaskAttributeIntentHandling_Extensions.Confirm(Intents.IINSetTaskAttributeIntentHandling,Intents.INSetTaskAttributeIntent,System.Action{Intents.INSetTaskAttributeIntentResponse}) M:Intents.INSetTaskAttributeIntentHandling_Extensions.ResolvePriority(Intents.IINSetTaskAttributeIntentHandling,Intents.INSetTaskAttributeIntent,System.Action{Intents.INTaskPriorityResolutionResult}) -M:Intents.INSetTaskAttributeIntentHandling_Extensions.ResolveSpatialEventTrigger(Intents.IINSetTaskAttributeIntentHandling,Intents.INSetTaskAttributeIntent,System.Action{Intents.INSpatialEventTriggerResolutionResult}) -M:Intents.INSetTaskAttributeIntentHandling_Extensions.ResolveStatus(Intents.IINSetTaskAttributeIntentHandling,Intents.INSetTaskAttributeIntent,System.Action{Intents.INTaskStatusResolutionResult}) -M:Intents.INSetTaskAttributeIntentHandling_Extensions.ResolveTargetTask(Intents.IINSetTaskAttributeIntentHandling,Intents.INSetTaskAttributeIntent,System.Action{Intents.INTaskResolutionResult}) M:Intents.INSetTaskAttributeIntentHandling_Extensions.ResolveTaskTitle(Intents.IINSetTaskAttributeIntentHandling,Intents.INSetTaskAttributeIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INSetTaskAttributeIntentHandling_Extensions.ResolveTemporalEventTrigger(Intents.IINSetTaskAttributeIntentHandling,Intents.INSetTaskAttributeIntent,System.Action{Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult}) -M:Intents.INSetTaskAttributeIntentHandling_Extensions.ResolveTemporalEventTrigger(Intents.IINSetTaskAttributeIntentHandling,Intents.INSetTaskAttributeIntent,System.Action{Intents.INTemporalEventTriggerResolutionResult}) M:Intents.INSetTaskAttributeIntentResponse.#ctor(Intents.INSetTaskAttributeIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult.#ctor(Intents.INTemporalEventTriggerResolutionResult) M:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -16353,8 +15199,6 @@ M:Intents.INSpeedResolutionResult.GetUnsupported(System.IntPtr) M:Intents.INStartAudioCallIntent.#ctor(Intents.INCallDestinationType,Intents.INPerson[]) M:Intents.INStartAudioCallIntent.#ctor(Intents.INPerson[]) M:Intents.INStartAudioCallIntentHandling_Extensions.Confirm(Intents.IINStartAudioCallIntentHandling,Intents.INStartAudioCallIntent,System.Action{Intents.INStartAudioCallIntentResponse}) -M:Intents.INStartAudioCallIntentHandling_Extensions.ResolveContacts(Intents.IINStartAudioCallIntentHandling,Intents.INStartAudioCallIntent,System.Action{Intents.INPersonResolutionResult[]}) -M:Intents.INStartAudioCallIntentHandling_Extensions.ResolveDestinationType(Intents.IINStartAudioCallIntentHandling,Intents.INStartAudioCallIntent,System.Action{Intents.INCallDestinationTypeResolutionResult}) M:Intents.INStartAudioCallIntentResponse.#ctor(Intents.INStartAudioCallIntentResponseCode,Foundation.NSUserActivity) M:Intents.INStartCallCallCapabilityResolutionResult.#ctor(Intents.INCallCapabilityResolutionResult) M:Intents.INStartCallCallCapabilityResolutionResult.GetConfirmationRequired(Foundation.NSObject,System.IntPtr) @@ -16386,22 +15230,12 @@ M:Intents.INStartCallIntentHandling_Extensions.ResolveDestinationType(Intents.II M:Intents.INStartCallIntentResponse.#ctor(Intents.INStartCallIntentResponseCode,Foundation.NSUserActivity) M:Intents.INStartPhotoPlaybackIntent.#ctor(Intents.INDateComponentsRange,CoreLocation.CLPlacemark,System.String,System.String[],Intents.INPhotoAttributeOptions,Intents.INPhotoAttributeOptions,Intents.INPerson[]) M:Intents.INStartPhotoPlaybackIntentHandling_Extensions.Confirm(Intents.IINStartPhotoPlaybackIntentHandling,Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INStartPhotoPlaybackIntentResponse}) -M:Intents.INStartPhotoPlaybackIntentHandling_Extensions.ResolveAlbumName(Intents.IINStartPhotoPlaybackIntentHandling,Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INStartPhotoPlaybackIntentHandling_Extensions.ResolveDateCreated(Intents.IINStartPhotoPlaybackIntentHandling,Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) -M:Intents.INStartPhotoPlaybackIntentHandling_Extensions.ResolveLocationCreated(Intents.IINStartPhotoPlaybackIntentHandling,Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INPlacemarkResolutionResult}) -M:Intents.INStartPhotoPlaybackIntentHandling_Extensions.ResolvePeopleInPhoto(Intents.IINStartPhotoPlaybackIntentHandling,Intents.INStartPhotoPlaybackIntent,System.Action{Intents.INPersonResolutionResult[]}) M:Intents.INStartPhotoPlaybackIntentResponse.#ctor(Intents.INStartPhotoPlaybackIntentResponseCode,Foundation.NSUserActivity) M:Intents.INStartVideoCallIntent.#ctor(Intents.INPerson[]) M:Intents.INStartVideoCallIntentHandling_Extensions.Confirm(Intents.IINStartVideoCallIntentHandling,Intents.INStartVideoCallIntent,System.Action{Intents.INStartVideoCallIntentResponse}) -M:Intents.INStartVideoCallIntentHandling_Extensions.ResolveContacts(Intents.IINStartVideoCallIntentHandling,Intents.INStartVideoCallIntent,System.Action{Intents.INPersonResolutionResult[]}) M:Intents.INStartVideoCallIntentResponse.#ctor(Intents.INStartVideoCallIntentResponseCode,Foundation.NSUserActivity) M:Intents.INStartWorkoutIntent.#ctor(Intents.INSpeakableString,Foundation.NSNumber,Intents.INWorkoutGoalUnitType,Intents.INWorkoutLocationType,Foundation.NSNumber) M:Intents.INStartWorkoutIntentHandling_Extensions.Confirm(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INStartWorkoutIntentResponse}) -M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveGoalValue(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INDoubleResolutionResult}) -M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveIsOpenEnded(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INBooleanResolutionResult}) -M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveWorkoutGoalUnitType(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INWorkoutGoalUnitTypeResolutionResult}) -M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveWorkoutLocationType(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INWorkoutLocationTypeResolutionResult}) -M:Intents.INStartWorkoutIntentHandling_Extensions.ResolveWorkoutName(Intents.IINStartWorkoutIntentHandling,Intents.INStartWorkoutIntent,System.Action{Intents.INSpeakableStringResolutionResult}) M:Intents.INStartWorkoutIntentResponse.#ctor(Intents.INStartWorkoutIntentResponseCode,Foundation.NSUserActivity) M:Intents.INSticker.#ctor(Intents.INStickerType,System.String) M:Intents.INSticker.Copy(Foundation.NSZone) @@ -16468,12 +15302,6 @@ 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.INTransferMoneyIntentHandling_Extensions.Confirm(Intents.IINTransferMoneyIntentHandling,Intents.INTransferMoneyIntent,System.Action{Intents.INTransferMoneyIntentResponse}) -M:Intents.INTransferMoneyIntentHandling_Extensions.ResolveFromAccount(Intents.IINTransferMoneyIntentHandling,Intents.INTransferMoneyIntent,System.Action{Intents.INPaymentAccountResolutionResult}) -M:Intents.INTransferMoneyIntentHandling_Extensions.ResolveToAccount(Intents.IINTransferMoneyIntentHandling,Intents.INTransferMoneyIntent,System.Action{Intents.INPaymentAccountResolutionResult}) -M:Intents.INTransferMoneyIntentHandling_Extensions.ResolveTransactionAmount(Intents.IINTransferMoneyIntentHandling,Intents.INTransferMoneyIntent,System.Action{Intents.INPaymentAmountResolutionResult}) -M:Intents.INTransferMoneyIntentHandling_Extensions.ResolveTransactionNote(Intents.IINTransferMoneyIntentHandling,Intents.INTransferMoneyIntent,System.Action{Intents.INStringResolutionResult}) -M:Intents.INTransferMoneyIntentHandling_Extensions.ResolveTransactionScheduledDate(Intents.IINTransferMoneyIntentHandling,Intents.INTransferMoneyIntent,System.Action{Intents.INDateComponentsRangeResolutionResult}) M:Intents.INTransferMoneyIntentResponse.#ctor(Intents.INTransferMoneyIntentResponseCode,Foundation.NSUserActivity) M:Intents.INUnsendMessagesIntent.#ctor(System.String[]) M:Intents.INUnsendMessagesIntentHandling_Extensions.ConfirmUnsendMessages(Intents.IINUnsendMessagesIntentHandling,Intents.INUnsendMessagesIntent,System.Action{Intents.INUnsendMessagesIntentResponse}) @@ -16538,7 +15366,6 @@ M:IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate.DidCancel(IntentsUI.INU 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.IINUIHostedViewControlling.ConfigureView(Foundation.NSSet{Intents.INParameter},Intents.INInteraction,IntentsUI.INUIInteractiveBehavior,IntentsUI.INUIHostedViewContext,IntentsUI.INUIHostedViewControllingConfigureViewHandler) M:IntentsUI.INUIAddVoiceShortcutButton.#ctor(IntentsUI.INUIAddVoiceShortcutButtonStyle) M:IntentsUI.INUIAddVoiceShortcutButton.Dispose(System.Boolean) M:IntentsUI.INUIAddVoiceShortcutButton.INUIAddVoiceShortcutButtonAppearance.#ctor(System.IntPtr) @@ -16555,7 +15382,6 @@ M:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate.DidCancel(IntentsUI.INUI 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.INUIHostedViewControlling_Extensions.ConfigureView(IntentsUI.IINUIHostedViewControlling,Foundation.NSSet{Intents.INParameter},Intents.INInteraction,IntentsUI.INUIInteractiveBehavior,IntentsUI.INUIHostedViewContext,IntentsUI.INUIHostedViewControllingConfigureViewHandler) M:IntentsUI.INUIHostedViewSiriProviding_Extensions.GetDisplaysMap(IntentsUI.IINUIHostedViewSiriProviding) M:IntentsUI.INUIHostedViewSiriProviding_Extensions.GetDisplaysMessage(IntentsUI.IINUIHostedViewSiriProviding) M:IntentsUI.INUIHostedViewSiriProviding_Extensions.GetDisplaysPaymentTransaction(IntentsUI.IINUIHostedViewSiriProviding) @@ -16645,9 +15471,6 @@ M:MailKit.MEExtension_Extensions.GetHandlerForMessageActions(MailKit.IMEExtensio M:MailKit.MEExtension_Extensions.GetHandlerForMessageSecurity(MailKit.IMEExtension) M:MailKit.MEExtensionViewController.#ctor(System.String,Foundation.NSBundle) M:MailKit.MEMessageActionHandler_Extensions.GetRequiredHeaders(MailKit.IMEMessageActionHandler) -M:MapKit.IMKAnnotation.SetCoordinate(CoreLocation.CLLocationCoordinate2D) -M:MapKit.IMKLocalSearchCompleterDelegate.DidFail(MapKit.MKLocalSearchCompleter,Foundation.NSError) -M:MapKit.IMKLocalSearchCompleterDelegate.DidUpdateResults(MapKit.MKLocalSearchCompleter) M:MapKit.IMKLookAroundViewControllerDelegate.DidDismissFullScreen(MapKit.MKLookAroundViewController) M:MapKit.IMKLookAroundViewControllerDelegate.DidPresentFullScreen(MapKit.MKLookAroundViewController) M:MapKit.IMKLookAroundViewControllerDelegate.DidUpdateScene(MapKit.MKLookAroundViewController) @@ -16655,40 +15478,14 @@ M:MapKit.IMKLookAroundViewControllerDelegate.WillDismissFullScreen(MapKit.MKLook M:MapKit.IMKLookAroundViewControllerDelegate.WillPresentFullScreen(MapKit.MKLookAroundViewController) M:MapKit.IMKLookAroundViewControllerDelegate.WillUpdateScene(MapKit.MKLookAroundViewController) M:MapKit.IMKMapItemDetailViewControllerDelegate.DidFinish(MapKit.MKMapItemDetailViewController) -M:MapKit.IMKMapViewDelegate.CalloutAccessoryControlTapped(MapKit.MKMapView,MapKit.MKAnnotationView,UIKit.UIControl) -M:MapKit.IMKMapViewDelegate.ChangedDragState(MapKit.MKMapView,MapKit.MKAnnotationView,MapKit.MKAnnotationViewDragState,MapKit.MKAnnotationViewDragState) -M:MapKit.IMKMapViewDelegate.CreateClusterAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation[]) -M:MapKit.IMKMapViewDelegate.DidAddAnnotationViews(MapKit.MKMapView,MapKit.MKAnnotationView[]) -M:MapKit.IMKMapViewDelegate.DidAddOverlayRenderers(MapKit.MKMapView,MapKit.MKOverlayRenderer[]) -M:MapKit.IMKMapViewDelegate.DidAddOverlayViews(MapKit.MKMapView,MapKit.MKOverlayView) -M:MapKit.IMKMapViewDelegate.DidChangeUserTrackingMode(MapKit.MKMapView,MapKit.MKUserTrackingMode,System.Boolean) -M:MapKit.IMKMapViewDelegate.DidChangeVisibleRegion(MapKit.MKMapView) M:MapKit.IMKMapViewDelegate.DidDeselectAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation) -M:MapKit.IMKMapViewDelegate.DidDeselectAnnotationView(MapKit.MKMapView,MapKit.MKAnnotationView) -M:MapKit.IMKMapViewDelegate.DidFailToLocateUser(MapKit.MKMapView,Foundation.NSError) -M:MapKit.IMKMapViewDelegate.DidFinishRenderingMap(MapKit.MKMapView,System.Boolean) M:MapKit.IMKMapViewDelegate.DidSelectAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation) -M:MapKit.IMKMapViewDelegate.DidSelectAnnotationView(MapKit.MKMapView,MapKit.MKAnnotationView) -M:MapKit.IMKMapViewDelegate.DidStopLocatingUser(MapKit.MKMapView) -M:MapKit.IMKMapViewDelegate.DidUpdateUserLocation(MapKit.MKMapView,MapKit.MKUserLocation) M:MapKit.IMKMapViewDelegate.GetSelectionAccessory(MapKit.MKMapView,MapKit.IMKAnnotation) -M:MapKit.IMKMapViewDelegate.GetViewForAnnotation(MapKit.MKMapView,MapKit.IMKAnnotation) -M:MapKit.IMKMapViewDelegate.GetViewForOverlay(MapKit.MKMapView,MapKit.IMKOverlay) -M:MapKit.IMKMapViewDelegate.LoadingMapFailed(MapKit.MKMapView,Foundation.NSError) -M:MapKit.IMKMapViewDelegate.MapLoaded(MapKit.MKMapView) -M:MapKit.IMKMapViewDelegate.OverlayRenderer(MapKit.MKMapView,MapKit.IMKOverlay) -M:MapKit.IMKMapViewDelegate.RegionChanged(MapKit.MKMapView,System.Boolean) -M:MapKit.IMKMapViewDelegate.RegionWillChange(MapKit.MKMapView,System.Boolean) -M:MapKit.IMKMapViewDelegate.WillStartLoadingMap(MapKit.MKMapView) -M:MapKit.IMKMapViewDelegate.WillStartLocatingUser(MapKit.MKMapView) -M:MapKit.IMKMapViewDelegate.WillStartRenderingMap(MapKit.MKMapView) -M:MapKit.IMKOverlay.Intersects(MapKit.MKMapRect) 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.MKAnnotation_Extensions.SetCoordinate(MapKit.IMKAnnotation,CoreLocation.CLLocationCoordinate2D) M:MapKit.MKAnnotationView.Dispose(System.Boolean) M:MapKit.MKAnnotationView.MKAnnotationViewAppearance.#ctor(System.IntPtr) M:MapKit.MKCircleView.MKCircleViewAppearance.#ctor(System.IntPtr) @@ -16700,8 +15497,6 @@ M:MapKit.MKLaunchOptions.#ctor M:MapKit.MKLocalPointsOfInterestRequest.Copy(Foundation.NSZone) M:MapKit.MKLocalSearch.StartAsync M:MapKit.MKLocalSearchCompleter.Dispose(System.Boolean) -M:MapKit.MKLocalSearchCompleterDelegate_Extensions.DidFail(MapKit.IMKLocalSearchCompleterDelegate,MapKit.MKLocalSearchCompleter,Foundation.NSError) -M:MapKit.MKLocalSearchCompleterDelegate_Extensions.DidUpdateResults(MapKit.IMKLocalSearchCompleterDelegate,MapKit.MKLocalSearchCompleter) M:MapKit.MKLocalSearchRequest.Copy(Foundation.NSZone) M:MapKit.MKLookAroundScene.Copy(Foundation.NSZone) M:MapKit.MKLookAroundSceneRequest.GetSceneAsync @@ -16717,7 +15512,6 @@ 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.GetItemProviderVisibilityForTypeIdentifier(System.String) M:MapKit.MKMapItem.GetObject(Foundation.NSData,System.String,Foundation.NSError@) M:MapKit.MKMapItem.LoadData(System.String,System.Action{Foundation.NSData,Foundation.NSError}) M:MapKit.MKMapItem.LoadDataAsync(System.String,Foundation.NSProgress@) @@ -16783,36 +15577,11 @@ M:MapKit.MKMapView.remove_RegionWillChange(System.EventHandler{MapKit.MKMapViewC M:MapKit.MKMapView.remove_WillStartLoadingMap(System.EventHandler) M:MapKit.MKMapView.remove_WillStartLocatingUser(System.EventHandler) M:MapKit.MKMapView.remove_WillStartRenderingMap(System.EventHandler) -M:MapKit.MKMapViewDelegate_Extensions.CalloutAccessoryControlTapped(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKAnnotationView,UIKit.UIControl) -M:MapKit.MKMapViewDelegate_Extensions.ChangedDragState(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKAnnotationView,MapKit.MKAnnotationViewDragState,MapKit.MKAnnotationViewDragState) -M:MapKit.MKMapViewDelegate_Extensions.CreateClusterAnnotation(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.IMKAnnotation[]) -M:MapKit.MKMapViewDelegate_Extensions.DidAddAnnotationViews(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKAnnotationView[]) -M:MapKit.MKMapViewDelegate_Extensions.DidAddOverlayRenderers(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKOverlayRenderer[]) -M:MapKit.MKMapViewDelegate_Extensions.DidAddOverlayViews(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKOverlayView) -M:MapKit.MKMapViewDelegate_Extensions.DidChangeUserTrackingMode(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKUserTrackingMode,System.Boolean) -M:MapKit.MKMapViewDelegate_Extensions.DidChangeVisibleRegion(MapKit.IMKMapViewDelegate,MapKit.MKMapView) M:MapKit.MKMapViewDelegate_Extensions.DidDeselectAnnotation(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.IMKAnnotation) -M:MapKit.MKMapViewDelegate_Extensions.DidDeselectAnnotationView(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKAnnotationView) -M:MapKit.MKMapViewDelegate_Extensions.DidFailToLocateUser(MapKit.IMKMapViewDelegate,MapKit.MKMapView,Foundation.NSError) -M:MapKit.MKMapViewDelegate_Extensions.DidFinishRenderingMap(MapKit.IMKMapViewDelegate,MapKit.MKMapView,System.Boolean) M:MapKit.MKMapViewDelegate_Extensions.DidSelectAnnotation(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.IMKAnnotation) -M:MapKit.MKMapViewDelegate_Extensions.DidSelectAnnotationView(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKAnnotationView) -M:MapKit.MKMapViewDelegate_Extensions.DidStopLocatingUser(MapKit.IMKMapViewDelegate,MapKit.MKMapView) -M:MapKit.MKMapViewDelegate_Extensions.DidUpdateUserLocation(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.MKUserLocation) M:MapKit.MKMapViewDelegate_Extensions.GetSelectionAccessory(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.IMKAnnotation) -M:MapKit.MKMapViewDelegate_Extensions.GetViewForAnnotation(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.IMKAnnotation) -M:MapKit.MKMapViewDelegate_Extensions.GetViewForOverlay(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.IMKOverlay) -M:MapKit.MKMapViewDelegate_Extensions.LoadingMapFailed(MapKit.IMKMapViewDelegate,MapKit.MKMapView,Foundation.NSError) -M:MapKit.MKMapViewDelegate_Extensions.MapLoaded(MapKit.IMKMapViewDelegate,MapKit.MKMapView) -M:MapKit.MKMapViewDelegate_Extensions.OverlayRenderer(MapKit.IMKMapViewDelegate,MapKit.MKMapView,MapKit.IMKOverlay) -M:MapKit.MKMapViewDelegate_Extensions.RegionChanged(MapKit.IMKMapViewDelegate,MapKit.MKMapView,System.Boolean) -M:MapKit.MKMapViewDelegate_Extensions.RegionWillChange(MapKit.IMKMapViewDelegate,MapKit.MKMapView,System.Boolean) -M:MapKit.MKMapViewDelegate_Extensions.WillStartLoadingMap(MapKit.IMKMapViewDelegate,MapKit.MKMapView) -M:MapKit.MKMapViewDelegate_Extensions.WillStartLocatingUser(MapKit.IMKMapViewDelegate,MapKit.MKMapView) -M:MapKit.MKMapViewDelegate_Extensions.WillStartRenderingMap(MapKit.IMKMapViewDelegate,MapKit.MKMapView) M:MapKit.MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance.#ctor(System.IntPtr) M:MapKit.MKOverlay_Extensions.GetCanReplaceMapContent(MapKit.IMKOverlay) -M:MapKit.MKOverlay_Extensions.Intersects(MapKit.IMKOverlay,MapKit.MKMapRect) M:MapKit.MKOverlayPathView.MKOverlayPathViewAppearance.#ctor(System.IntPtr) M:MapKit.MKOverlayRenderer.MKRoadWidthAtZoomScale(System.Runtime.InteropServices.NFloat) M:MapKit.MKOverlayView.MKOverlayViewAppearance.#ctor(System.IntPtr) @@ -17307,7 +16076,6 @@ M:Metal.IMTLRenderCommandEncoder.DrawPrimitives(Metal.MTLPrimitiveType,System.UI M:Metal.IMTLRenderCommandEncoder.ExecuteCommands(Metal.IMTLIndirectCommandBuffer,Foundation.NSRange) 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.MemoryBarrier(Metal.MTLBarrierScope,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) @@ -17592,7 +16360,6 @@ M:Metal.MTLRenderCommandEncoder_Extensions.DrawMeshThreadgroups(Metal.IMTLRender M:Metal.MTLRenderCommandEncoder_Extensions.DrawMeshThreadgroups(Metal.IMTLRenderCommandEncoder,Metal.MTLSize,Metal.MTLSize,Metal.MTLSize) M:Metal.MTLRenderCommandEncoder_Extensions.DrawMeshThreads(Metal.IMTLRenderCommandEncoder,Metal.MTLSize,Metal.MTLSize,Metal.MTLSize) M:Metal.MTLRenderCommandEncoder_Extensions.MemoryBarrier(Metal.IMTLRenderCommandEncoder,Metal.IMTLResource[],System.UIntPtr,Metal.MTLRenderStages,Metal.MTLRenderStages) -M:Metal.MTLRenderCommandEncoder_Extensions.MemoryBarrier(Metal.IMTLRenderCommandEncoder,Metal.MTLBarrierScope,Metal.MTLRenderStages,Metal.MTLRenderStages) M:Metal.MTLRenderCommandEncoder_Extensions.SetFragmentAccelerationStructure(Metal.IMTLRenderCommandEncoder,Metal.IMTLAccelerationStructure,System.UIntPtr) M:Metal.MTLRenderCommandEncoder_Extensions.SetFragmentIntersectionFunctionTable(Metal.IMTLRenderCommandEncoder,Metal.IMTLIntersectionFunctionTable,System.UIntPtr) M:Metal.MTLRenderCommandEncoder_Extensions.SetFragmentIntersectionFunctionTables(Metal.IMTLRenderCommandEncoder,Metal.IMTLIntersectionFunctionTable[],Foundation.NSRange) @@ -17719,9 +16486,6 @@ M:MetalPerformanceShaders.IMPSImageAllocator.GetImageBatch(Metal.IMTLCommandBuff 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.IMPSNNPadding.GetDestinationImageDescriptor(MetalPerformanceShaders.MPSImage[],MetalPerformanceShaders.MPSState[],MetalPerformanceShaders.MPSKernel,MetalPerformanceShaders.MPSImageDescriptor) -M:MetalPerformanceShaders.IMPSNNPadding.GetInverse -M:MetalPerformanceShaders.IMPSNNPadding.GetLabel M:MetalPerformanceShaders.MPSAccelerationStructure.Copy(Foundation.NSZone) M:MetalPerformanceShaders.MPSAccelerationStructure.RebuildAsync M:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSource.Copy(Foundation.NSZone) @@ -18003,9 +16767,6 @@ M:MetalPerformanceShaders.MPSNDArrayVectorLutDequantize.#ctor(Metal.IMTLDevice,S M:MetalPerformanceShaders.MPSNNBinaryGradientState.#ctor(Metal.IMTLDevice,System.UIntPtr) M:MetalPerformanceShaders.MPSNNBinaryGradientState.CreateTemporaryState(Metal.IMTLCommandBuffer,System.UIntPtr) M:MetalPerformanceShaders.MPSNNCropAndResizeBilinear.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr,System.UIntPtr,System.IntPtr) -M:MetalPerformanceShaders.MPSNNDefaultPadding.GetDestinationImageDescriptor(MetalPerformanceShaders.MPSImage[],MetalPerformanceShaders.MPSState[],MetalPerformanceShaders.MPSKernel,MetalPerformanceShaders.MPSImageDescriptor) -M:MetalPerformanceShaders.MPSNNDefaultPadding.GetInverse -M:MetalPerformanceShaders.MPSNNDefaultPadding.GetLabel M:MetalPerformanceShaders.MPSNNForwardLossNode.#ctor(MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSCnnLossDescriptor) M:MetalPerformanceShaders.MPSNNForwardLossNode.#ctor(MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSNNImageNode,MetalPerformanceShaders.MPSCnnLossDescriptor) M:MetalPerformanceShaders.MPSNNForwardLossNode.#ctor(MetalPerformanceShaders.MPSNNImageNode[],MetalPerformanceShaders.MPSCnnLossDescriptor) @@ -18033,9 +16794,6 @@ M:MetalPerformanceShaders.MPSNNLossGradientNode.Create(MetalPerformanceShaders.M 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.MPSNNPadding_Extensions.GetDestinationImageDescriptor(MetalPerformanceShaders.IMPSNNPadding,MetalPerformanceShaders.MPSImage[],MetalPerformanceShaders.MPSState[],MetalPerformanceShaders.MPSKernel,MetalPerformanceShaders.MPSImageDescriptor) -M:MetalPerformanceShaders.MPSNNPadding_Extensions.GetInverse(MetalPerformanceShaders.IMPSNNPadding) -M:MetalPerformanceShaders.MPSNNPadding_Extensions.GetLabel(MetalPerformanceShaders.IMPSNNPadding) M:MetalPerformanceShaders.MPSNNReshapeNode.#ctor(MetalPerformanceShaders.MPSNNImageNode,System.UIntPtr,System.UIntPtr,System.UIntPtr) M:MetalPerformanceShaders.MPSNNReshapeNode.Create(MetalPerformanceShaders.MPSNNImageNode,System.UIntPtr,System.UIntPtr,System.UIntPtr) M:MetalPerformanceShaders.MPSNNResizeBilinear.#ctor(Metal.IMTLDevice,System.UIntPtr,System.UIntPtr,System.Boolean) @@ -18838,7 +17596,6 @@ 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.GetLocalTransform(System.Double) M:ModelIO.IMDLTransformComponent.SetLocalTransform(CoreGraphics.NMatrix4,System.Double) M:ModelIO.IMDLTransformComponent.SetLocalTransform(CoreGraphics.NMatrix4) M:ModelIO.IMDLTransformOp.GetNMatrix4(System.Double) @@ -18979,7 +17736,6 @@ 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.GetLocalTransform(System.Double) M:ModelIO.MDLTransform.SetLocalTransform(CoreGraphics.NMatrix4,System.Double) M:ModelIO.MDLTransform.SetLocalTransform(CoreGraphics.NMatrix4) M:ModelIO.MDLTransform.SetMatrix(CoreGraphics.NMatrix4,System.Double) @@ -18987,7 +17743,6 @@ M:ModelIO.MDLTransform.SetRotation(System.Numerics.Vector3,System.Double) M:ModelIO.MDLTransform.SetScale(System.Numerics.Vector3,System.Double) M:ModelIO.MDLTransform.SetShear(System.Numerics.Vector3,System.Double) M:ModelIO.MDLTransform.SetTranslation(System.Numerics.Vector3,System.Double) -M:ModelIO.MDLTransformComponent_Extensions.GetLocalTransform(ModelIO.IMDLTransformComponent,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) @@ -19007,7 +17762,6 @@ 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.GetLocalTransform(System.Double) M:ModelIO.MDLTransformStack.SetLocalTransform(CoreGraphics.NMatrix4,System.Double) M:ModelIO.MDLTransformStack.SetLocalTransform(CoreGraphics.NMatrix4) M:ModelIO.MDLTransformTranslateOp.GetNMatrix4(System.Double) @@ -19019,8 +17773,6 @@ 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.#ctor(ModelIO.MDLAsset,System.Int32,System.Int32,System.Int32,System.Single) -M:ModelIO.MDLVoxelArray.#ctor(ModelIO.MDLAsset,System.Int32,System.Single,System.Single,System.Single) M:ModelIO.MDLVoxelArray.GetIndex(System.Numerics.Vector3) M:ModelIO.MDLVoxelArray.GetSpatialLocation(CoreGraphics.NVector4i) M:ModelIO.MDLVoxelArray.GetVoxelBoundingBox(CoreGraphics.NVector4i) @@ -19345,7 +18097,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.#ctor(System.String,System.String) M:NetworkExtension.NEAppRule.Copy(Foundation.NSZone) M:NetworkExtension.NEDatagramAndFlowEndpointsReadResult.#ctor(Foundation.NSData[],Network.NWEndpoint[]) M:NetworkExtension.NEDatagramReadResult.#ctor(Foundation.NSData[],NetworkExtension.NWEndpoint[]) @@ -19814,7 +18565,6 @@ M:PdfKit.IPdfPageOverlayViewProvider.WillEndDisplayingOverlayView(PdfKit.PdfView 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.#ctor(CoreGraphics.CGRect) M:PdfKit.PdfAnnotation.Copy(Foundation.NSZone) M:PdfKit.PdfAnnotationInk.AddBezierPath(AppKit.NSBezierPath) M:PdfKit.PdfAnnotationInk.RemoveBezierPath(AppKit.NSBezierPath) @@ -19890,13 +18640,7 @@ M:PdfKit.PdfView.remove_PerformFind(System.EventHandler) M:PdfKit.PdfView.remove_PerformGoToPage(System.EventHandler) M:PdfKit.PdfView.remove_PerformPrint(System.EventHandler) M:PdfKit.PdfView.remove_WillClickOnLink(System.EventHandler{PdfKit.PdfViewUrlEventArgs}) -M:PdfKit.PdfView.ShouldBegin(UIKit.UIGestureRecognizer) -M:PdfKit.PdfView.ShouldBeRequiredToFailBy(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) M:PdfKit.PdfView.ShouldReceiveEvent(UIKit.UIGestureRecognizer,UIKit.UIEvent) -M:PdfKit.PdfView.ShouldReceivePress(UIKit.UIGestureRecognizer,UIKit.UIPress) -M:PdfKit.PdfView.ShouldReceiveTouch(UIKit.UIGestureRecognizer,UIKit.UITouch) -M:PdfKit.PdfView.ShouldRecognizeSimultaneously(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) -M:PdfKit.PdfView.ShouldRequireFailureOf(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) M:PdfKit.PdfView.UpdateItem(AppKit.NSMenu,AppKit.NSMenuItem,System.IntPtr,System.Boolean) M:PdfKit.PdfViewDelegate_Extensions.GetParentViewController(PdfKit.IPdfViewDelegate) M:PdfKit.PdfViewDelegate_Extensions.WillChangeScaleFactor(PdfKit.IPdfViewDelegate,PdfKit.PdfView,System.Runtime.InteropServices.NFloat) @@ -19917,21 +18661,8 @@ M:PencilKit.PKCanvasViewDelegate_Extensions.DidFinishRendering(PencilKit.IPKCanv M:PencilKit.PKCanvasViewDelegate_Extensions.DidRefineStrokes(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView,PencilKit.PKStroke[],PencilKit.PKStroke[]) M:PencilKit.PKCanvasViewDelegate_Extensions.DrawingDidChange(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView) M:PencilKit.PKCanvasViewDelegate_Extensions.EndUsingTool(PencilKit.IPKCanvasViewDelegate,PencilKit.PKCanvasView) -M:PencilKit.PKCanvasViewDelegate.DecelerationEnded(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.DecelerationStarted(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.DidChangeAdjustedContentInset(UIKit.UIScrollView) M:PencilKit.PKCanvasViewDelegate.DidRefineStrokes(PencilKit.PKCanvasView,PencilKit.PKStroke[],PencilKit.PKStroke[]) -M:PencilKit.PKCanvasViewDelegate.DidZoom(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.DraggingEnded(UIKit.UIScrollView,System.Boolean) -M:PencilKit.PKCanvasViewDelegate.DraggingStarted(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.ScrollAnimationEnded(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.Scrolled(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.ScrolledToTop(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.ShouldScrollToTop(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.ViewForZoomingInScrollView(UIKit.UIScrollView) -M:PencilKit.PKCanvasViewDelegate.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@) M:PencilKit.PKCanvasViewDelegate.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat) -M:PencilKit.PKCanvasViewDelegate.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView) M:PencilKit.PKDrawing.Copy(Foundation.NSZone) M:PencilKit.PKFloatRange.Copy(Foundation.NSZone) M:PencilKit.PKInk.#ctor(PencilKit.PKInkType,AppKit.NSColor) @@ -20209,9 +18940,7 @@ M:PhotosUI.IPHContentEditingController.FinishContentEditing(System.Action{Photos 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.DidEndPlayback(PhotosUI.PHLivePhotoView,PhotosUI.PHLivePhotoViewPlaybackStyle) M:PhotosUI.IPHLivePhotoViewDelegate.GetExtraMinimumTouchDuration(PhotosUI.PHLivePhotoView,UIKit.UITouch,PhotosUI.PHLivePhotoViewPlaybackStyle) -M:PhotosUI.IPHLivePhotoViewDelegate.WillBeginPlayback(PhotosUI.PHLivePhotoView,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) @@ -20231,13 +18960,9 @@ M:PhotosUI.PHLivePhotoView.StartPlayback(PhotosUI.PHLivePhotoViewPlaybackStyle) M:PhotosUI.PHLivePhotoView.StopPlayback M:PhotosUI.PHLivePhotoView.StopPlayback(System.Boolean) M:PhotosUI.PHLivePhotoViewDelegate_Extensions.CanBeginPlayback(PhotosUI.IPHLivePhotoViewDelegate,PhotosUI.PHLivePhotoView,PhotosUI.PHLivePhotoViewPlaybackStyle) -M:PhotosUI.PHLivePhotoViewDelegate_Extensions.DidEndPlayback(PhotosUI.IPHLivePhotoViewDelegate,PhotosUI.PHLivePhotoView,PhotosUI.PHLivePhotoViewPlaybackStyle) M:PhotosUI.PHLivePhotoViewDelegate_Extensions.GetExtraMinimumTouchDuration(PhotosUI.IPHLivePhotoViewDelegate,PhotosUI.PHLivePhotoView,UIKit.UITouch,PhotosUI.PHLivePhotoViewPlaybackStyle) -M:PhotosUI.PHLivePhotoViewDelegate_Extensions.WillBeginPlayback(PhotosUI.IPHLivePhotoViewDelegate,PhotosUI.PHLivePhotoView,PhotosUI.PHLivePhotoViewPlaybackStyle) M:PhotosUI.PHLivePhotoViewDelegate.CanBeginPlayback(PhotosUI.PHLivePhotoView,PhotosUI.PHLivePhotoViewPlaybackStyle) -M:PhotosUI.PHLivePhotoViewDelegate.DidEndPlayback(PhotosUI.PHLivePhotoView,PhotosUI.PHLivePhotoViewPlaybackStyle) M:PhotosUI.PHLivePhotoViewDelegate.GetExtraMinimumTouchDuration(PhotosUI.PHLivePhotoView,UIKit.UITouch,PhotosUI.PHLivePhotoViewPlaybackStyle) -M:PhotosUI.PHLivePhotoViewDelegate.WillBeginPlayback(PhotosUI.PHLivePhotoView,PhotosUI.PHLivePhotoViewPlaybackStyle) M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPicker(Photos.PHPhotoLibrary,UIKit.UIViewController,System.Action{System.String[]}) M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPicker(Photos.PHPhotoLibrary,UIKit.UIViewController) M:PhotosUI.PHPhotoLibrary_PhotosUISupport.PresentLimitedLibraryPickerAsync(Photos.PHPhotoLibrary,UIKit.UIViewController) @@ -20275,13 +19000,9 @@ M:PhotosUI.PHProjectTypeDescriptionDataSource.GetTypeDescription(Foundation.NSSt M:PhotosUI.PHProjectTypeDescriptionDataSource.WillDiscardDataSource M:PrintCore.PMPrintCoreBase.Release M:PrintCore.PMPrintCoreBase.Retain -M:PushKit.IPKPushRegistryDelegate.DidInvalidatePushToken(PushKit.PKPushRegistry,System.String) -M:PushKit.IPKPushRegistryDelegate.DidReceiveIncomingPush(PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String,System.Action) M:PushKit.IPKPushRegistryDelegate.DidReceiveIncomingPush(PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String) M:PushKit.IPKPushRegistryDelegate.DidUpdatePushCredentials(PushKit.PKPushRegistry,PushKit.PKPushCredentials,System.String) M:PushKit.PKPushRegistry.Dispose(System.Boolean) -M:PushKit.PKPushRegistryDelegate_Extensions.DidInvalidatePushToken(PushKit.IPKPushRegistryDelegate,PushKit.PKPushRegistry,System.String) -M:PushKit.PKPushRegistryDelegate_Extensions.DidReceiveIncomingPush(PushKit.IPKPushRegistryDelegate,PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String,System.Action) M:PushKit.PKPushRegistryDelegate_Extensions.DidReceiveIncomingPush(PushKit.IPKPushRegistryDelegate,PushKit.PKPushRegistry,PushKit.PKPushPayload,System.String) M:PushToTalk.IPTChannelManagerDelegate.DidActivateAudioSession(PushToTalk.PTChannelManager,AVFoundation.AVAudioSession) M:PushToTalk.IPTChannelManagerDelegate.DidBeginTransmitting(PushToTalk.PTChannelManager,Foundation.NSUuid,PushToTalk.PTChannelTransmitRequestSource) @@ -20338,17 +19059,9 @@ 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.DidDismiss(QuickLook.QLPreviewController) M:QuickLook.IQLPreviewControllerDelegate.DidSaveEditedCopy(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,Foundation.NSUrl) M:QuickLook.IQLPreviewControllerDelegate.DidUpdateContents(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem) -M:QuickLook.IQLPreviewControllerDelegate.FrameForPreviewItem(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,UIKit.UIView@) M:QuickLook.IQLPreviewControllerDelegate.GetEditingMode(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem) -M:QuickLook.IQLPreviewControllerDelegate.ShouldOpenUrl(QuickLook.QLPreviewController,Foundation.NSUrl,QuickLook.IQLPreviewItem) -M:QuickLook.IQLPreviewControllerDelegate.TransitionImageForPreviewItem(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,CoreGraphics.CGRect) -M:QuickLook.IQLPreviewControllerDelegate.TransitionViewForPreviewItem(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem) -M:QuickLook.IQLPreviewControllerDelegate.WillDismiss(QuickLook.QLPreviewController) -M:QuickLook.IQLPreviewingController.PreparePreviewOfFile(Foundation.NSUrl,System.Action{Foundation.NSError}) -M:QuickLook.IQLPreviewingController.PreparePreviewOfSearchableItem(System.String,System.String,System.Action{Foundation.NSError}) M:QuickLook.IQLPreviewingController.ProvidePreview(QuickLook.QLFilePreviewRequest,System.Action{QuickLook.QLPreviewReply,Foundation.NSError}) M:QuickLook.QLPreviewController.add_DidDismiss(System.EventHandler) M:QuickLook.QLPreviewController.add_DidSaveEditedCopy(System.EventHandler{QuickLook.QLPreviewControllerDelegateDidSaveEventArgs}) @@ -20364,26 +19077,12 @@ M:QuickLook.QLPreviewController.remove_DidUpdateContents(System.EventHandler{Qui 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.DidDismiss(QuickLook.IQLPreviewControllerDelegate,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.FrameForPreviewItem(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,UIKit.UIView@) M:QuickLook.QLPreviewControllerDelegate_Extensions.GetEditingMode(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController,QuickLook.IQLPreviewItem) -M:QuickLook.QLPreviewControllerDelegate_Extensions.ShouldOpenUrl(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController,Foundation.NSUrl,QuickLook.IQLPreviewItem) -M:QuickLook.QLPreviewControllerDelegate_Extensions.TransitionImageForPreviewItem(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,CoreGraphics.CGRect) -M:QuickLook.QLPreviewControllerDelegate_Extensions.TransitionViewForPreviewItem(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController,QuickLook.IQLPreviewItem) -M:QuickLook.QLPreviewControllerDelegate_Extensions.WillDismiss(QuickLook.IQLPreviewControllerDelegate,QuickLook.QLPreviewController) -M:QuickLook.QLPreviewControllerDelegate.DidDismiss(QuickLook.QLPreviewController) M:QuickLook.QLPreviewControllerDelegate.DidSaveEditedCopy(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,Foundation.NSUrl) M:QuickLook.QLPreviewControllerDelegate.DidUpdateContents(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem) -M:QuickLook.QLPreviewControllerDelegate.FrameForPreviewItem(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,UIKit.UIView@) M:QuickLook.QLPreviewControllerDelegate.GetEditingMode(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem) -M:QuickLook.QLPreviewControllerDelegate.ShouldOpenUrl(QuickLook.QLPreviewController,Foundation.NSUrl,QuickLook.IQLPreviewItem) -M:QuickLook.QLPreviewControllerDelegate.TransitionImageForPreviewItem(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem,CoreGraphics.CGRect) -M:QuickLook.QLPreviewControllerDelegate.TransitionViewForPreviewItem(QuickLook.QLPreviewController,QuickLook.IQLPreviewItem) -M:QuickLook.QLPreviewControllerDelegate.WillDismiss(QuickLook.QLPreviewController) -M:QuickLook.QLPreviewingController_Extensions.PreparePreviewOfFile(QuickLook.IQLPreviewingController,Foundation.NSUrl,System.Action{Foundation.NSError}) -M:QuickLook.QLPreviewingController_Extensions.PreparePreviewOfSearchableItem(QuickLook.IQLPreviewingController,System.String,System.String,System.Action{Foundation.NSError}) M:QuickLook.QLPreviewingController_Extensions.ProvidePreview(QuickLook.IQLPreviewingController,QuickLook.QLFilePreviewRequest,System.Action{QuickLook.QLPreviewReply,Foundation.NSError}) M:QuickLook.QLPreviewItem_Extensions.GetPreviewItemTitle(QuickLook.IQLPreviewItem) M:QuickLook.QLPreviewProvider.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) @@ -20504,14 +19203,6 @@ M:QuickLookUI.QLPreviewView.Close M:QuickLookUI.QLPreviewView.RefreshPreviewItem M:ReplayKit.IRPBroadcastActivityControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityController,ReplayKit.RPBroadcastController,Foundation.NSError) M:ReplayKit.IRPBroadcastActivityViewControllerDelegate.DidFinish(ReplayKit.RPBroadcastActivityViewController,ReplayKit.RPBroadcastController,Foundation.NSError) -M:ReplayKit.IRPBroadcastControllerDelegate.DidFinish(ReplayKit.RPBroadcastController,Foundation.NSError) -M:ReplayKit.IRPBroadcastControllerDelegate.DidUpdateBroadcastUrl(ReplayKit.RPBroadcastController,Foundation.NSUrl) -M:ReplayKit.IRPBroadcastControllerDelegate.DidUpdateServiceInfo(ReplayKit.RPBroadcastController,Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding}) -M:ReplayKit.IRPPreviewViewControllerDelegate.DidFinish(ReplayKit.RPPreviewViewController,Foundation.NSSet{Foundation.NSString}) -M:ReplayKit.IRPPreviewViewControllerDelegate.DidFinish(ReplayKit.RPPreviewViewController) -M:ReplayKit.IRPScreenRecorderDelegate.DidChangeAvailability(ReplayKit.RPScreenRecorder) -M:ReplayKit.IRPScreenRecorderDelegate.DidStopRecording(ReplayKit.RPScreenRecorder,Foundation.NSError,ReplayKit.RPPreviewViewController) -M:ReplayKit.IRPScreenRecorderDelegate.DidStopRecording(ReplayKit.RPScreenRecorder,ReplayKit.RPPreviewViewController,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) @@ -20521,13 +19212,8 @@ M:ReplayKit.RPBroadcastActivityViewController.LoadBroadcastActivityViewControlle M:ReplayKit.RPBroadcastController.Dispose(System.Boolean) M:ReplayKit.RPBroadcastController.FinishBroadcastAsync M:ReplayKit.RPBroadcastController.StartBroadcastAsync -M:ReplayKit.RPBroadcastControllerDelegate_Extensions.DidFinish(ReplayKit.IRPBroadcastControllerDelegate,ReplayKit.RPBroadcastController,Foundation.NSError) -M:ReplayKit.RPBroadcastControllerDelegate_Extensions.DidUpdateBroadcastUrl(ReplayKit.IRPBroadcastControllerDelegate,ReplayKit.RPBroadcastController,Foundation.NSUrl) -M:ReplayKit.RPBroadcastControllerDelegate_Extensions.DidUpdateServiceInfo(ReplayKit.IRPBroadcastControllerDelegate,ReplayKit.RPBroadcastController,Foundation.NSDictionary{Foundation.NSString,Foundation.INSCoding}) M:ReplayKit.RPBroadcastHandler.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) M:ReplayKit.RPPreviewViewController.Dispose(System.Boolean) -M:ReplayKit.RPPreviewViewControllerDelegate_Extensions.DidFinish(ReplayKit.IRPPreviewViewControllerDelegate,ReplayKit.RPPreviewViewController,Foundation.NSSet{Foundation.NSString}) -M:ReplayKit.RPPreviewViewControllerDelegate_Extensions.DidFinish(ReplayKit.IRPPreviewViewControllerDelegate,ReplayKit.RPPreviewViewController) M:ReplayKit.RPScreenRecorder.DiscardRecordingAsync M:ReplayKit.RPScreenRecorder.Dispose(System.Boolean) M:ReplayKit.RPScreenRecorder.ExportClipAsync(Foundation.NSUrl,System.Double) @@ -20537,25 +19223,13 @@ M:ReplayKit.RPScreenRecorder.StopCaptureAsync M:ReplayKit.RPScreenRecorder.StopClipBufferingAsync M:ReplayKit.RPScreenRecorder.StopRecordingAsync M:ReplayKit.RPScreenRecorder.StopRecordingAsync(Foundation.NSUrl) -M:ReplayKit.RPScreenRecorderDelegate_Extensions.DidChangeAvailability(ReplayKit.IRPScreenRecorderDelegate,ReplayKit.RPScreenRecorder) -M:ReplayKit.RPScreenRecorderDelegate_Extensions.DidStopRecording(ReplayKit.IRPScreenRecorderDelegate,ReplayKit.RPScreenRecorder,Foundation.NSError,ReplayKit.RPPreviewViewController) -M:ReplayKit.RPScreenRecorderDelegate_Extensions.DidStopRecording(ReplayKit.IRPScreenRecorderDelegate,ReplayKit.RPScreenRecorder,ReplayKit.RPPreviewViewController,Foundation.NSError) M:ReplayKit.RPSystemBroadcastPickerView.RPSystemBroadcastPickerViewAppearance.#ctor(System.IntPtr) M:SafariServices.ISFAddToHomeScreenActivityItem.GetHomeScreenWebAppInfo(SafariServices.SFAddToHomeScreenActivityItemGetHomeScreenWebAppInfoCallback) M:SafariServices.ISFAddToHomeScreenActivityItem.GetHomeScreenWebAppInfoAsync M:SafariServices.ISFAddToHomeScreenActivityItem.GetWebAppManifest(SafariServices.SFAddToHomeScreenActivityItemGetWebAppManifestCallback) M:SafariServices.ISFAddToHomeScreenActivityItem.GetWebAppManifestAsync -M:SafariServices.ISFSafariExtensionHandling.AdditionalRequestHeaders(Foundation.NSUrl,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSString}}) M:SafariServices.ISFSafariExtensionHandling.ContentBlocker(System.String,Foundation.NSUrl[],SafariServices.SFSafariPage) -M:SafariServices.ISFSafariExtensionHandling.ContextMenuItemSelected(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary) -M:SafariServices.ISFSafariExtensionHandling.MessageReceived(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary) -M:SafariServices.ISFSafariExtensionHandling.MessageReceivedFromContainingApp(System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) -M:SafariServices.ISFSafariExtensionHandling.PopoverDidClose(SafariServices.SFSafariWindow) -M:SafariServices.ISFSafariExtensionHandling.PopoverWillShow(SafariServices.SFSafariWindow) -M:SafariServices.ISFSafariExtensionHandling.ToolbarItemClicked(SafariServices.SFSafariWindow) -M:SafariServices.ISFSafariExtensionHandling.ValidateContextMenuItem(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},SafariServices.SFExtensionValidationHandler) M:SafariServices.ISFSafariExtensionHandling.ValidateContextMenuItemAsync(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) -M:SafariServices.ISFSafariExtensionHandling.ValidateToolbarItem(SafariServices.SFSafariWindow,System.Action{System.Boolean,Foundation.NSString}) M:SafariServices.ISFSafariExtensionHandling.ValidateToolbarItemAsync(SafariServices.SFSafariWindow) M:SafariServices.ISFSafariExtensionHandling.WillNavigate(SafariServices.SFSafariPage,Foundation.NSUrl) M:SafariServices.ISFSafariViewControllerDelegate.WillOpenInBrowser(SafariServices.SFSafariViewController) @@ -20568,35 +19242,16 @@ M:SafariServices.SFSafariApplication.GetAllWindowsAsync M:SafariServices.SFSafariApplication.GetHostApplicationAsync M:SafariServices.SFSafariExtension.GetBaseUri(System.Action{Foundation.NSUrl}) M:SafariServices.SFSafariExtension.GetBaseUriAsync -M:SafariServices.SFSafariExtensionHandler.AdditionalRequestHeaders(Foundation.NSUrl,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSString}}) M:SafariServices.SFSafariExtensionHandler.BeginRequestWithExtensionContext(Foundation.NSExtensionContext) M:SafariServices.SFSafariExtensionHandler.ContentBlocker(System.String,Foundation.NSUrl[],SafariServices.SFSafariPage) -M:SafariServices.SFSafariExtensionHandler.ContextMenuItemSelected(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary) -M:SafariServices.SFSafariExtensionHandler.MessageReceived(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary) -M:SafariServices.SFSafariExtensionHandler.MessageReceivedFromContainingApp(System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) -M:SafariServices.SFSafariExtensionHandler.PopoverDidClose(SafariServices.SFSafariWindow) -M:SafariServices.SFSafariExtensionHandler.PopoverWillShow(SafariServices.SFSafariWindow) -M:SafariServices.SFSafariExtensionHandler.ToolbarItemClicked(SafariServices.SFSafariWindow) -M:SafariServices.SFSafariExtensionHandler.ValidateContextMenuItem(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},SafariServices.SFExtensionValidationHandler) M:SafariServices.SFSafariExtensionHandler.ValidateContextMenuItemAsync(System.String,SafariServices.SFSafariPage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) -M:SafariServices.SFSafariExtensionHandler.ValidateToolbarItem(SafariServices.SFSafariWindow,System.Action{System.Boolean,Foundation.NSString}) M:SafariServices.SFSafariExtensionHandler.ValidateToolbarItemAsync(SafariServices.SFSafariWindow) M:SafariServices.SFSafariExtensionHandler.WillNavigate(SafariServices.SFSafariPage,Foundation.NSUrl) -M:SafariServices.SFSafariExtensionHandling_Extensions.AdditionalRequestHeaders(SafariServices.ISFSafariExtensionHandling,Foundation.NSUrl,System.Action{Foundation.NSDictionary{Foundation.NSString,Foundation.NSString}}) M:SafariServices.SFSafariExtensionHandling_Extensions.ContentBlocker(SafariServices.ISFSafariExtensionHandling,System.String,Foundation.NSUrl[],SafariServices.SFSafariPage) -M:SafariServices.SFSafariExtensionHandling_Extensions.ContextMenuItemSelected(SafariServices.ISFSafariExtensionHandling,System.String,SafariServices.SFSafariPage,Foundation.NSDictionary) M:SafariServices.SFSafariExtensionHandling_Extensions.GetPopoverViewController(SafariServices.ISFSafariExtensionHandling) -M:SafariServices.SFSafariExtensionHandling_Extensions.MessageReceived(SafariServices.ISFSafariExtensionHandling,System.String,SafariServices.SFSafariPage,Foundation.NSDictionary) -M:SafariServices.SFSafariExtensionHandling_Extensions.MessageReceivedFromContainingApp(SafariServices.ISFSafariExtensionHandling,System.String,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) -M:SafariServices.SFSafariExtensionHandling_Extensions.PopoverDidClose(SafariServices.ISFSafariExtensionHandling,SafariServices.SFSafariWindow) -M:SafariServices.SFSafariExtensionHandling_Extensions.PopoverWillShow(SafariServices.ISFSafariExtensionHandling,SafariServices.SFSafariWindow) -M:SafariServices.SFSafariExtensionHandling_Extensions.ToolbarItemClicked(SafariServices.ISFSafariExtensionHandling,SafariServices.SFSafariWindow) -M:SafariServices.SFSafariExtensionHandling_Extensions.ValidateContextMenuItem(SafariServices.ISFSafariExtensionHandling,System.String,SafariServices.SFSafariPage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject},SafariServices.SFExtensionValidationHandler) M:SafariServices.SFSafariExtensionHandling_Extensions.ValidateContextMenuItemAsync(SafariServices.ISFSafariExtensionHandling,System.String,SafariServices.SFSafariPage,Foundation.NSDictionary{Foundation.NSString,Foundation.NSObject}) -M:SafariServices.SFSafariExtensionHandling_Extensions.ValidateToolbarItem(SafariServices.ISFSafariExtensionHandling,SafariServices.SFSafariWindow,System.Action{System.Boolean,Foundation.NSString}) M:SafariServices.SFSafariExtensionHandling_Extensions.ValidateToolbarItemAsync(SafariServices.ISFSafariExtensionHandling,SafariServices.SFSafariWindow) M:SafariServices.SFSafariExtensionHandling_Extensions.WillNavigate(SafariServices.ISFSafariExtensionHandling,SafariServices.SFSafariPage,Foundation.NSUrl) -M:SafariServices.SFSafariExtensionViewController.#ctor(System.String,Foundation.NSBundle) M:SafariServices.SFSafariExtensionViewController.DismissPopover M:SafariServices.SFSafariPage.Copy(Foundation.NSZone) M:SafariServices.SFSafariPage.GetContainingTab(System.Action{SafariServices.SFSafariTab}) @@ -20663,24 +19318,13 @@ 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.ISCNAvoidOccluderConstraintDelegate.DidAvoidOccluder(SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode) -M:SceneKit.ISCNAvoidOccluderConstraintDelegate.ShouldAvoidOccluder(SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode) 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.ISCNCameraControllerDelegate.CameraInertiaDidEnd(SceneKit.SCNCameraController) -M:SceneKit.ISCNCameraControllerDelegate.CameraInertiaWillStart(SceneKit.SCNCameraController) -M:SceneKit.ISCNNodeRendererDelegate.Render(SceneKit.SCNNode,SceneKit.SCNRenderer,Foundation.NSDictionary) -M:SceneKit.ISCNPhysicsContactDelegate.DidBeginContact(SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact) -M:SceneKit.ISCNPhysicsContactDelegate.DidEndContact(SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact) -M:SceneKit.ISCNPhysicsContactDelegate.DidUpdateContact(SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact) M:SceneKit.ISCNProgramDelegate.BindValue(SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer) -M:SceneKit.ISCNProgramDelegate.HandleError(SceneKit.SCNProgram,Foundation.NSError) M:SceneKit.ISCNProgramDelegate.IsProgramOpaque(SceneKit.SCNProgram) M:SceneKit.ISCNProgramDelegate.UnbindValue(SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer) -M:SceneKit.ISCNSceneExportDelegate.WriteImage(AppKit.NSImage,Foundation.NSUrl,Foundation.NSUrl) -M:SceneKit.ISCNSceneExportDelegate.WriteImage(UIKit.UIImage,Foundation.NSUrl,Foundation.NSUrl) M:SceneKit.ISCNSceneRenderer.GetNodesInsideFrustum(SceneKit.SCNNode) M:SceneKit.ISCNSceneRenderer.IsNodeInsideFrustum(SceneKit.SCNNode,SceneKit.SCNNode) M:SceneKit.ISCNSceneRenderer.Prepare(Foundation.NSObject,System.Func{System.Boolean}) @@ -20688,25 +19332,13 @@ M:SceneKit.ISCNSceneRenderer.Prepare(Foundation.NSObject[],System.Action{System. M:SceneKit.ISCNSceneRenderer.PresentScene(SceneKit.SCNScene,SpriteKit.SKTransition,SceneKit.SCNNode,System.Action) M:SceneKit.ISCNSceneRenderer.ProjectPoint(SceneKit.SCNVector3) M:SceneKit.ISCNSceneRenderer.UnprojectPoint(SceneKit.SCNVector3) -M:SceneKit.ISCNSceneRendererDelegate.DidApplyAnimations(SceneKit.ISCNSceneRenderer,System.Double) -M:SceneKit.ISCNSceneRendererDelegate.DidApplyConstraints(SceneKit.ISCNSceneRenderer,System.Double) -M:SceneKit.ISCNSceneRendererDelegate.DidRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double) -M:SceneKit.ISCNSceneRendererDelegate.DidSimulatePhysics(SceneKit.ISCNSceneRenderer,System.Double) -M:SceneKit.ISCNSceneRendererDelegate.Update(SceneKit.ISCNSceneRenderer,System.Double) -M:SceneKit.ISCNSceneRendererDelegate.WillRenderScene(SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double) -M:SceneKit.ISCNShadable.HandleBinding(System.String,SceneKit.SCNBindingHandler) -M:SceneKit.ISCNShadable.HandleUnbinding(System.String,SceneKit.SCNBindingHandler) M:SceneKit.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.SCNAvoidOccluderConstraintDelegate_Extensions.DidAvoidOccluder(SceneKit.ISCNAvoidOccluderConstraintDelegate,SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode) -M:SceneKit.SCNAvoidOccluderConstraintDelegate_Extensions.ShouldAvoidOccluder(SceneKit.ISCNAvoidOccluderConstraintDelegate,SceneKit.SCNAvoidOccluderConstraint,SceneKit.SCNNode,SceneKit.SCNNode) M:SceneKit.SCNCamera.Copy(Foundation.NSZone) M:SceneKit.SCNCameraController.Dispose(System.Boolean) -M:SceneKit.SCNCameraControllerDelegate_Extensions.CameraInertiaDidEnd(SceneKit.ISCNCameraControllerDelegate,SceneKit.SCNCameraController) -M:SceneKit.SCNCameraControllerDelegate_Extensions.CameraInertiaWillStart(SceneKit.ISCNCameraControllerDelegate,SceneKit.SCNCameraController) M:SceneKit.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) @@ -20721,7 +19353,6 @@ M:SceneKit.SCNMatrix4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single, 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.DidHintFocusMovement(UIKit.UIFocusMovementHint) M:SceneKit.SCNNode.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:SceneKit.SCNNode.Dispose(System.Boolean) M:SceneKit.SCNNode.GetSoundIdentifier(UIKit.UIFocusUpdateContext) @@ -20729,14 +19360,10 @@ M:SceneKit.SCNNode.RemoveAnimation(System.String,System.Runtime.InteropServices. M:SceneKit.SCNNode.SetNeedsFocusUpdate M:SceneKit.SCNNode.ShouldUpdateFocus(UIKit.UIFocusUpdateContext) M:SceneKit.SCNNode.UpdateFocusIfNeeded -M:SceneKit.SCNNodeRendererDelegate_Extensions.Render(SceneKit.ISCNNodeRendererDelegate,SceneKit.SCNNode,SceneKit.SCNRenderer,Foundation.NSDictionary) M:SceneKit.SCNParticlePropertyController.Copy(Foundation.NSZone) M:SceneKit.SCNParticlePropertyController.Dispose(System.Boolean) M:SceneKit.SCNParticleSystem.Copy(Foundation.NSZone) M:SceneKit.SCNPhysicsBody.Copy(Foundation.NSZone) -M:SceneKit.SCNPhysicsContactDelegate_Extensions.DidBeginContact(SceneKit.ISCNPhysicsContactDelegate,SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact) -M:SceneKit.SCNPhysicsContactDelegate_Extensions.DidEndContact(SceneKit.ISCNPhysicsContactDelegate,SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact) -M:SceneKit.SCNPhysicsContactDelegate_Extensions.DidUpdateContact(SceneKit.ISCNPhysicsContactDelegate,SceneKit.SCNPhysicsWorld,SceneKit.SCNPhysicsContact) M:SceneKit.SCNPhysicsField.Copy(Foundation.NSZone) M:SceneKit.SCNPhysicsShape.Copy(Foundation.NSZone) M:SceneKit.SCNPhysicsVehicleWheel.Copy(Foundation.NSZone) @@ -20750,26 +19377,15 @@ M:SceneKit.SCNPhysicsWorld.remove_DidUpdateContact(System.EventHandler{SceneKit. 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.HandleError(SceneKit.ISCNProgramDelegate,SceneKit.SCNProgram,Foundation.NSError) M:SceneKit.SCNProgramDelegate_Extensions.IsProgramOpaque(SceneKit.ISCNProgramDelegate,SceneKit.SCNProgram) M:SceneKit.SCNProgramDelegate_Extensions.UnbindValue(SceneKit.ISCNProgramDelegate,SceneKit.SCNProgram,System.String,System.UInt32,System.UInt32,SceneKit.SCNRenderer) M:SceneKit.SCNQuaternion.#ctor(CoreGraphics.RMatrix3@) M:SceneKit.SCNQuaternion.#ctor(System.Numerics.Quaternion) M:SceneKit.SCNRenderer.Dispose(System.Boolean) -M:SceneKit.SCNSceneExportDelegate_Extensions.WriteImage(SceneKit.ISCNSceneExportDelegate,AppKit.NSImage,Foundation.NSUrl,Foundation.NSUrl) -M:SceneKit.SCNSceneExportDelegate_Extensions.WriteImage(SceneKit.ISCNSceneExportDelegate,UIKit.UIImage,Foundation.NSUrl,Foundation.NSUrl) M:SceneKit.SCNSceneRenderer_Extensions.GetWorkingColorSpace(SceneKit.ISCNSceneRenderer) -M:SceneKit.SCNSceneRendererDelegate_Extensions.DidApplyAnimations(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,System.Double) -M:SceneKit.SCNSceneRendererDelegate_Extensions.DidApplyConstraints(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,System.Double) -M:SceneKit.SCNSceneRendererDelegate_Extensions.DidRenderScene(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double) -M:SceneKit.SCNSceneRendererDelegate_Extensions.DidSimulatePhysics(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,System.Double) -M:SceneKit.SCNSceneRendererDelegate_Extensions.Update(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,System.Double) -M:SceneKit.SCNSceneRendererDelegate_Extensions.WillRenderScene(SceneKit.ISCNSceneRendererDelegate,SceneKit.ISCNSceneRenderer,SceneKit.SCNScene,System.Double) M:SceneKit.SCNShadable_Extensions.GetMinimumLanguageVersion(SceneKit.ISCNShadable) M:SceneKit.SCNShadable_Extensions.GetProgram(SceneKit.ISCNShadable) M:SceneKit.SCNShadable_Extensions.GetWeakShaderModifiers(SceneKit.ISCNShadable) -M:SceneKit.SCNShadable_Extensions.HandleBinding(SceneKit.ISCNShadable,System.String,SceneKit.SCNBindingHandler) -M:SceneKit.SCNShadable_Extensions.HandleUnbinding(SceneKit.ISCNShadable,System.String,SceneKit.SCNBindingHandler) 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) @@ -20991,7 +19607,6 @@ 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.GetItemProviderVisibilityForTypeIdentifier(System.String) 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@) @@ -21030,7 +19645,6 @@ 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.Changed(UIKit.UITextView) M:Social.SLComposeServiceViewController.DidBeginFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController) M:Social.SLComposeServiceViewController.DidChangeSelection(Foundation.NSNotification) M:Social.SLComposeServiceViewController.DidChangeTypingAttributes(Foundation.NSNotification) @@ -21038,8 +19652,6 @@ M:Social.SLComposeServiceViewController.DidCheckText(AppKit.NSTextView,Foundatio 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.EditingEnded(UIKit.UITextView) -M:Social.SLComposeServiceViewController.EditingStarted(UIKit.UITextView) M:Social.SLComposeServiceViewController.GetCandidates(AppKit.NSTextView,Foundation.NSRange) M:Social.SLComposeServiceViewController.GetCompletions(AppKit.NSTextView,System.String[],Foundation.NSRange,System.IntPtr@) M:Social.SLComposeServiceViewController.GetEditMenuForText(UIKit.UITextView,Foundation.NSRange,UIKit.UIMenuElement[]) @@ -21053,17 +19665,9 @@ M:Social.SLComposeServiceViewController.GetWritingToolsIgnoredRangesInEnclosingR 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.SelectionChanged(UIKit.UITextView) -M:Social.SLComposeServiceViewController.ShouldBeginEditing(UIKit.UITextView) -M:Social.SLComposeServiceViewController.ShouldChangeText(UIKit.UITextView,Foundation.NSRange,System.String) M:Social.SLComposeServiceViewController.ShouldChangeTextInRange(AppKit.NSTextView,Foundation.NSRange,System.String) M:Social.SLComposeServiceViewController.ShouldChangeTextInRanges(AppKit.NSTextView,Foundation.NSValue[],System.String[]) M:Social.SLComposeServiceViewController.ShouldChangeTypingAttributes(AppKit.NSTextView,Foundation.NSDictionary,Foundation.NSDictionary) -M:Social.SLComposeServiceViewController.ShouldEndEditing(UIKit.UITextView) -M:Social.SLComposeServiceViewController.ShouldInteractWithTextAttachment(UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange,UIKit.UITextItemInteraction) -M:Social.SLComposeServiceViewController.ShouldInteractWithTextAttachment(UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange) -M:Social.SLComposeServiceViewController.ShouldInteractWithUrl(UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange,UIKit.UITextItemInteraction) -M:Social.SLComposeServiceViewController.ShouldInteractWithUrl(UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange) M:Social.SLComposeServiceViewController.ShouldSelectCandidates(AppKit.NSTextView,System.UIntPtr) M:Social.SLComposeServiceViewController.ShouldSetSpellingState(AppKit.NSTextView,System.IntPtr,Foundation.NSRange) M:Social.SLComposeServiceViewController.ShouldUpdateTouchBarItemIdentifiers(AppKit.NSTextView,System.String[]) @@ -21108,14 +19712,7 @@ M:SoundAnalysis.SNResultsObserving_Extensions.DidComplete(SoundAnalysis.ISNResul M:SoundAnalysis.SNResultsObserving_Extensions.DidFail(SoundAnalysis.ISNResultsObserving,SoundAnalysis.ISNRequest,Foundation.NSError) M:SoundAnalysis.SNTimeDurationConstraint.#ctor(CoreMedia.CMTime[]) M:SoundAnalysis.SNTimeDurationConstraint.#ctor(CoreMedia.CMTimeRange) -M:Speech.ISFSpeechRecognitionTaskDelegate.DidDetectSpeech(Speech.SFSpeechRecognitionTask) -M:Speech.ISFSpeechRecognitionTaskDelegate.DidFinishRecognition(Speech.SFSpeechRecognitionTask,Speech.SFSpeechRecognitionResult) -M:Speech.ISFSpeechRecognitionTaskDelegate.DidFinishSuccessfully(Speech.SFSpeechRecognitionTask,System.Boolean) -M:Speech.ISFSpeechRecognitionTaskDelegate.DidHypothesizeTranscription(Speech.SFSpeechRecognitionTask,Speech.SFTranscription) M:Speech.ISFSpeechRecognitionTaskDelegate.DidProcessAudioDuration(Speech.SFSpeechRecognitionTask,System.Double) -M:Speech.ISFSpeechRecognitionTaskDelegate.FinishedReadingAudio(Speech.SFSpeechRecognitionTask) -M:Speech.ISFSpeechRecognitionTaskDelegate.WasCancelled(Speech.SFSpeechRecognitionTask) -M:Speech.ISFSpeechRecognizerDelegate.AvailabilityDidChange(Speech.SFSpeechRecognizer,System.Boolean) M:Speech.SFAcousticFeature.Copy(Foundation.NSZone) M:Speech.SFAnalysisContextTag.#ctor M:Speech.SFSpeechLanguageModel.PrepareCustomModelAsync(Foundation.NSUrl,System.String,Speech.SFSpeechLanguageModelConfiguration,System.Boolean) @@ -21123,26 +19720,11 @@ M:Speech.SFSpeechLanguageModel.PrepareCustomModelAsync(Foundation.NSUrl,System.S M:Speech.SFSpeechLanguageModelConfiguration.Copy(Foundation.NSZone) M:Speech.SFSpeechRecognitionMetadata.Copy(Foundation.NSZone) M:Speech.SFSpeechRecognitionResult.Copy(Foundation.NSZone) -M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidDetectSpeech(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask) -M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidFinishRecognition(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,Speech.SFSpeechRecognitionResult) -M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidFinishSuccessfully(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,System.Boolean) -M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidHypothesizeTranscription(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,Speech.SFTranscription) M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.DidProcessAudioDuration(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask,System.Double) -M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.FinishedReadingAudio(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask) -M:Speech.SFSpeechRecognitionTaskDelegate_Extensions.WasCancelled(Speech.ISFSpeechRecognitionTaskDelegate,Speech.SFSpeechRecognitionTask) M:Speech.SFSpeechRecognizer.Dispose(System.Boolean) -M:Speech.SFSpeechRecognizerDelegate_Extensions.AvailabilityDidChange(Speech.ISFSpeechRecognizerDelegate,Speech.SFSpeechRecognizer,System.Boolean) M:Speech.SFTranscription.Copy(Foundation.NSZone) M:Speech.SFTranscriptionSegment.Copy(Foundation.NSZone) M:Speech.SFVoiceAnalytics.Copy(Foundation.NSZone) -M:SpriteKit.ISKPhysicsContactDelegate.DidBeginContact(SpriteKit.SKPhysicsContact) -M:SpriteKit.ISKPhysicsContactDelegate.DidEndContact(SpriteKit.SKPhysicsContact) -M:SpriteKit.ISKSceneDelegate.DidApplyConstraints(SpriteKit.SKScene) -M:SpriteKit.ISKSceneDelegate.DidEvaluateActions(SpriteKit.SKScene) -M:SpriteKit.ISKSceneDelegate.DidFinishUpdate(SpriteKit.SKScene) -M:SpriteKit.ISKSceneDelegate.DidSimulatePhysics(SpriteKit.SKScene) -M:SpriteKit.ISKSceneDelegate.Update(System.Double,SpriteKit.SKScene) -M:SpriteKit.ISKViewDelegate.ShouldRender(SpriteKit.SKView,System.Double) M:SpriteKit.SKAction.Copy(Foundation.NSZone) M:SpriteKit.SKConstraint.Copy(Foundation.NSZone) M:SpriteKit.SKEffectNode.Dispose(System.Boolean) @@ -21153,7 +19735,6 @@ M:SpriteKit.SKNode.ConvertPointToCoordinateSpace(CoreGraphics.CGPoint,UIKit.IUIC 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.DidHintFocusMovement(UIKit.UIFocusMovementHint) M:SpriteKit.SKNode.DidUpdateFocus(UIKit.UIFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:SpriteKit.SKNode.Dispose(System.Boolean) M:SpriteKit.SKNode.GetFocusItems(CoreGraphics.CGRect) @@ -21166,8 +19747,6 @@ 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.SKPhysicsContactDelegate_Extensions.DidBeginContact(SpriteKit.ISKPhysicsContactDelegate,SpriteKit.SKPhysicsContact) -M:SpriteKit.SKPhysicsContactDelegate_Extensions.DidEndContact(SpriteKit.ISKPhysicsContactDelegate,SpriteKit.SKPhysicsContact) M:SpriteKit.SKPhysicsWorld.add_DidBeginContact(System.EventHandler) M:SpriteKit.SKPhysicsWorld.add_DidEndContact(System.EventHandler) M:SpriteKit.SKPhysicsWorld.Dispose(System.Boolean) @@ -21177,11 +19756,6 @@ 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.SKSceneDelegate_Extensions.DidApplyConstraints(SpriteKit.ISKSceneDelegate,SpriteKit.SKScene) -M:SpriteKit.SKSceneDelegate_Extensions.DidEvaluateActions(SpriteKit.ISKSceneDelegate,SpriteKit.SKScene) -M:SpriteKit.SKSceneDelegate_Extensions.DidFinishUpdate(SpriteKit.ISKSceneDelegate,SpriteKit.SKScene) -M:SpriteKit.SKSceneDelegate_Extensions.DidSimulatePhysics(SpriteKit.ISKSceneDelegate,SpriteKit.SKScene) -M:SpriteKit.SKSceneDelegate_Extensions.Update(SpriteKit.ISKSceneDelegate,System.Double,SpriteKit.SKScene) M:SpriteKit.SKShader.Copy(Foundation.NSZone) M:SpriteKit.SKSpriteNode.Dispose(System.Boolean) M:SpriteKit.SKTexture.Copy(Foundation.NSZone) @@ -21202,13 +19776,11 @@ 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.SKViewDelegate_Extensions.ShouldRender(SpriteKit.ISKViewDelegate,SpriteKit.SKView,System.Double) 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[]) M:SpriteKit.SKWarpGeometryGrid.GetGridByReplacingSourcePositions(System.Numerics.Vector2[]) -M:StoreKit.ISKCloudServiceSetupViewControllerDelegate.DidDismiss(StoreKit.SKCloudServiceSetupViewController) M:StoreKit.ISKOverlayDelegate.DidFailToLoad(StoreKit.SKOverlay,Foundation.NSError) M:StoreKit.ISKOverlayDelegate.DidFinishDismissal(StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext) M:StoreKit.ISKOverlayDelegate.DidFinishPresentation(StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext) @@ -21218,16 +19790,8 @@ 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.RemovedTransactions(StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction[]) -M:StoreKit.ISKPaymentTransactionObserver.RestoreCompletedTransactionsFailedWithError(StoreKit.SKPaymentQueue,Foundation.NSError) -M:StoreKit.ISKPaymentTransactionObserver.RestoreCompletedTransactionsFinished(StoreKit.SKPaymentQueue) -M:StoreKit.ISKPaymentTransactionObserver.ShouldAddStorePayment(StoreKit.SKPaymentQueue,StoreKit.SKPayment,StoreKit.SKProduct) -M:StoreKit.ISKPaymentTransactionObserver.UpdatedDownloads(StoreKit.SKPaymentQueue,StoreKit.SKDownload[]) M:StoreKit.ISKPaymentTransactionObserver.UpdatedTransactions(StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction[]) M:StoreKit.ISKProductsRequestDelegate.ReceivedResponse(StoreKit.SKProductsRequest,StoreKit.SKProductsResponse) -M:StoreKit.ISKRequestDelegate.RequestFailed(StoreKit.SKRequest,Foundation.NSError) -M:StoreKit.ISKRequestDelegate.RequestFinished(StoreKit.SKRequest) -M:StoreKit.ISKStoreProductViewControllerDelegate.Finished(StoreKit.SKStoreProductViewController) M:StoreKit.SKAdNetwork.EndImpressionAsync(StoreKit.SKAdImpression) M:StoreKit.SKAdNetwork.StartImpressionAsync(StoreKit.SKAdImpression) M:StoreKit.SKAdNetwork.UpdatePostbackAsync(System.IntPtr,StoreKit.SKAdNetworkCoarseConversionValue,System.Boolean) @@ -21238,7 +19802,6 @@ M:StoreKit.SKCloudServiceController.RequestCapabilitiesAsync M:StoreKit.SKCloudServiceController.RequestStorefrontCountryCodeAsync M:StoreKit.SKCloudServiceController.RequestStorefrontIdentifierAsync M:StoreKit.SKCloudServiceSetupViewController.Dispose(System.Boolean) -M:StoreKit.SKCloudServiceSetupViewControllerDelegate_Extensions.DidDismiss(StoreKit.ISKCloudServiceSetupViewControllerDelegate,StoreKit.SKCloudServiceSetupViewController) M:StoreKit.SKOverlay.Dispose(System.Boolean) M:StoreKit.SKOverlayDelegate_Extensions.DidFailToLoad(StoreKit.ISKOverlayDelegate,StoreKit.SKOverlay,Foundation.NSError) M:StoreKit.SKOverlayDelegate_Extensions.DidFinishDismissal(StoreKit.ISKOverlayDelegate,StoreKit.SKOverlay,StoreKit.SKOverlayTransitionContext) @@ -21252,11 +19815,6 @@ M:StoreKit.SKPaymentQueueDelegate_Extensions.ShouldContinueTransaction(StoreKit. M:StoreKit.SKPaymentQueueDelegate_Extensions.ShouldShowPriceConsent(StoreKit.ISKPaymentQueueDelegate,StoreKit.SKPaymentQueue) M:StoreKit.SKPaymentTransactionObserver_Extensions.DidChangeStorefront(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue) M:StoreKit.SKPaymentTransactionObserver_Extensions.DidRevokeEntitlements(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,System.String[]) -M:StoreKit.SKPaymentTransactionObserver_Extensions.RemovedTransactions(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,StoreKit.SKPaymentTransaction[]) -M:StoreKit.SKPaymentTransactionObserver_Extensions.RestoreCompletedTransactionsFailedWithError(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,Foundation.NSError) -M:StoreKit.SKPaymentTransactionObserver_Extensions.RestoreCompletedTransactionsFinished(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue) -M:StoreKit.SKPaymentTransactionObserver_Extensions.ShouldAddStorePayment(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,StoreKit.SKPayment,StoreKit.SKProduct) -M:StoreKit.SKPaymentTransactionObserver_Extensions.UpdatedDownloads(StoreKit.ISKPaymentTransactionObserver,StoreKit.SKPaymentQueue,StoreKit.SKDownload[]) M:StoreKit.SKProductsRequest.add_ReceivedResponse(System.EventHandler{StoreKit.SKProductsRequestResponseEventArgs}) M:StoreKit.SKProductsRequest.Dispose(System.Boolean) M:StoreKit.SKProductsRequest.remove_ReceivedResponse(System.EventHandler{StoreKit.SKProductsRequestResponseEventArgs}) @@ -21266,15 +19824,12 @@ M:StoreKit.SKRequest.add_RequestFinished(System.EventHandler) M:StoreKit.SKRequest.Dispose(System.Boolean) M:StoreKit.SKRequest.remove_RequestFailed(System.EventHandler{StoreKit.SKRequestErrorEventArgs}) M:StoreKit.SKRequest.remove_RequestFinished(System.EventHandler) -M:StoreKit.SKRequestDelegate_Extensions.RequestFailed(StoreKit.ISKRequestDelegate,StoreKit.SKRequest,Foundation.NSError) -M:StoreKit.SKRequestDelegate_Extensions.RequestFinished(StoreKit.ISKRequestDelegate,StoreKit.SKRequest) M:StoreKit.SKStoreProductViewController.add_Finished(System.EventHandler) M:StoreKit.SKStoreProductViewController.Dispose(System.Boolean) M:StoreKit.SKStoreProductViewController.LoadProduct(StoreKit.StoreProductParameters,StoreKit.SKAdImpression,System.Action{System.Boolean,Foundation.NSError}) M:StoreKit.SKStoreProductViewController.LoadProductAsync(Foundation.NSDictionary,StoreKit.SKAdImpression) M:StoreKit.SKStoreProductViewController.LoadProductAsync(StoreKit.StoreProductParameters,StoreKit.SKAdImpression) M:StoreKit.SKStoreProductViewController.remove_Finished(System.EventHandler) -M:StoreKit.SKStoreProductViewControllerDelegate_Extensions.Finished(StoreKit.ISKStoreProductViewControllerDelegate,StoreKit.SKStoreProductViewController) M:Symbols.NSSymbolContentTransition.Copy(Foundation.NSZone) M:Symbols.NSSymbolEffect.Copy(Foundation.NSZone) M:Symbols.NSSymbolEffectOptions.Copy(Foundation.NSZone) @@ -21317,8 +19872,6 @@ M:TVMLKit.TVApplicationControllerDelegate_Extensions.DidStop(TVMLKit.ITVApplicat 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.AnimationEnded(System.Boolean) -M:TVMLKit.TVBrowserTransitionAnimator.GetInterruptibleAnimator(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) @@ -21455,112 +20008,45 @@ M:UIKit.INSTextViewportLayoutControllerDelegate.ConfigureRenderingSurface(UIKit. M:UIKit.INSTextViewportLayoutControllerDelegate.DidLayout(UIKit.NSTextViewportLayoutController) M:UIKit.INSTextViewportLayoutControllerDelegate.GetViewportBounds(UIKit.NSTextViewportLayoutController) M:UIKit.INSTextViewportLayoutControllerDelegate.WillLayout(UIKit.NSTextViewportLayoutController) -M:UIKit.IUIAccelerometerDelegate.DidAccelerate(UIKit.UIAccelerometer,UIKit.UIAcceleration) -M:UIKit.IUIAccessibilityContainer.AccessibilityElementCount M:UIKit.IUIAccessibilityContainer.GetAccessibilityElementAt(System.IntPtr) -M:UIKit.IUIAccessibilityContainer.GetAccessibilityElements -M:UIKit.IUIAccessibilityContainer.GetIndexOfAccessibilityElement(Foundation.NSObject) -M:UIKit.IUIAccessibilityContainer.SetAccessibilityElements(Foundation.NSObject) 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.GetAccessibilityAttributedPageContent 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.Canceled(UIKit.UIActionSheet) M:UIKit.IUIActionSheetDelegate.Clicked(UIKit.UIActionSheet,System.IntPtr) M:UIKit.IUIActionSheetDelegate.Dismissed(UIKit.UIActionSheet,System.IntPtr) -M:UIKit.IUIActionSheetDelegate.Presented(UIKit.UIActionSheet) M:UIKit.IUIActionSheetDelegate.WillDismiss(UIKit.UIActionSheet,System.IntPtr) -M:UIKit.IUIActionSheetDelegate.WillPresent(UIKit.UIActionSheet) M:UIKit.IUIActivityItemsConfigurationReading.GetActivityItemsConfigurationMetadata(Foundation.NSString) M:UIKit.IUIActivityItemsConfigurationReading.GetActivityItemsConfigurationMetadata(System.IntPtr,Foundation.NSString) M:UIKit.IUIActivityItemsConfigurationReading.GetActivityItemsConfigurationPreview(System.IntPtr,Foundation.NSString,CoreGraphics.CGSize) M:UIKit.IUIActivityItemsConfigurationReading.GetActivityItemsConfigurationSupportsInteraction(Foundation.NSString) M:UIKit.IUIActivityItemsConfigurationReading.GetApplicationActivitiesForActivityItemsConfiguration -M:UIKit.IUIActivityItemSource.GetDataTypeIdentifierForActivity(UIKit.UIActivityViewController,Foundation.NSString) 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.IUIActivityItemSource.GetSubjectForActivity(UIKit.UIActivityViewController,Foundation.NSString) -M:UIKit.IUIActivityItemSource.GetThumbnailImageForActivity(UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize) M:UIKit.IUIAdaptivePresentationControllerDelegate.DidAttemptToDismiss(UIKit.UIPresentationController) M:UIKit.IUIAdaptivePresentationControllerDelegate.DidDismiss(UIKit.UIPresentationController) -M:UIKit.IUIAdaptivePresentationControllerDelegate.GetAdaptivePresentationStyle(UIKit.UIPresentationController,UIKit.UITraitCollection) -M:UIKit.IUIAdaptivePresentationControllerDelegate.GetAdaptivePresentationStyle(UIKit.UIPresentationController) -M:UIKit.IUIAdaptivePresentationControllerDelegate.GetViewControllerForAdaptivePresentation(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle) M:UIKit.IUIAdaptivePresentationControllerDelegate.PrepareAdaptivePresentationController(UIKit.UIPresentationController,UIKit.UIPresentationController) M:UIKit.IUIAdaptivePresentationControllerDelegate.ShouldDismiss(UIKit.UIPresentationController) M:UIKit.IUIAdaptivePresentationControllerDelegate.WillDismiss(UIKit.UIPresentationController) -M:UIKit.IUIAdaptivePresentationControllerDelegate.WillPresent(UIKit.UIPresentationController,UIKit.UIModalPresentationStyle,UIKit.IUIViewControllerTransitionCoordinator) -M:UIKit.IUIAlertViewDelegate.Canceled(UIKit.UIAlertView) M:UIKit.IUIAlertViewDelegate.Clicked(UIKit.UIAlertView,System.IntPtr) M:UIKit.IUIAlertViewDelegate.Dismissed(UIKit.UIAlertView,System.IntPtr) -M:UIKit.IUIAlertViewDelegate.Presented(UIKit.UIAlertView) -M:UIKit.IUIAlertViewDelegate.ShouldEnableFirstOtherButton(UIKit.UIAlertView) M:UIKit.IUIAlertViewDelegate.WillDismiss(UIKit.UIAlertView,System.IntPtr) -M:UIKit.IUIAlertViewDelegate.WillPresent(UIKit.UIAlertView) M:UIKit.IUIApplicationDelegate.AccessibilityPerformMagicTap -M:UIKit.IUIApplicationDelegate.ApplicationSignificantTimeChange(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.ChangedStatusBarFrame(UIKit.UIApplication,CoreGraphics.CGRect) -M:UIKit.IUIApplicationDelegate.ContinueUserActivity(UIKit.UIApplication,Foundation.NSUserActivity,UIKit.UIApplicationRestorationHandler) -M:UIKit.IUIApplicationDelegate.DidChangeStatusBarOrientation(UIKit.UIApplication,UIKit.UIInterfaceOrientation) -M:UIKit.IUIApplicationDelegate.DidDecodeRestorableState(UIKit.UIApplication,Foundation.NSCoder) M:UIKit.IUIApplicationDelegate.DidDiscardSceneSessions(UIKit.UIApplication,Foundation.NSSet{UIKit.UISceneSession}) -M:UIKit.IUIApplicationDelegate.DidEnterBackground(UIKit.UIApplication) M:UIKit.IUIApplicationDelegate.DidFailToContinueUserActivity(UIKit.UIApplication,System.String,Foundation.NSError) -M:UIKit.IUIApplicationDelegate.DidReceiveRemoteNotification(UIKit.UIApplication,Foundation.NSDictionary,System.Action{UIKit.UIBackgroundFetchResult}) -M:UIKit.IUIApplicationDelegate.DidRegisterUserNotificationSettings(UIKit.UIApplication,UIKit.UIUserNotificationSettings) -M:UIKit.IUIApplicationDelegate.FailedToRegisterForRemoteNotifications(UIKit.UIApplication,Foundation.NSError) -M:UIKit.IUIApplicationDelegate.FinishedLaunching(UIKit.UIApplication,Foundation.NSDictionary) -M:UIKit.IUIApplicationDelegate.FinishedLaunching(UIKit.UIApplication) M:UIKit.IUIApplicationDelegate.GetConfiguration(UIKit.UIApplication,UIKit.UISceneSession,UIKit.UISceneConnectionOptions) M:UIKit.IUIApplicationDelegate.GetHandlerForIntent(UIKit.UIApplication,Intents.INIntent) -M:UIKit.IUIApplicationDelegate.GetSupportedInterfaceOrientations(UIKit.UIApplication,UIKit.UIWindow) -M:UIKit.IUIApplicationDelegate.GetViewController(UIKit.UIApplication,System.String[],Foundation.NSCoder) -M:UIKit.IUIApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,Foundation.NSDictionary,Foundation.NSDictionary,System.Action) -M:UIKit.IUIApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,Foundation.NSDictionary,System.Action) -M:UIKit.IUIApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,UIKit.UILocalNotification,Foundation.NSDictionary,System.Action) -M:UIKit.IUIApplicationDelegate.HandleAction(UIKit.UIApplication,System.String,UIKit.UILocalNotification,System.Action) -M:UIKit.IUIApplicationDelegate.HandleEventsForBackgroundUrl(UIKit.UIApplication,System.String,System.Action) -M:UIKit.IUIApplicationDelegate.HandleIntent(UIKit.UIApplication,Intents.INIntent,System.Action{Intents.INIntentResponse}) -M:UIKit.IUIApplicationDelegate.HandleOpenURL(UIKit.UIApplication,Foundation.NSUrl) -M:UIKit.IUIApplicationDelegate.HandleWatchKitExtensionRequest(UIKit.UIApplication,Foundation.NSDictionary,System.Action{Foundation.NSDictionary}) -M:UIKit.IUIApplicationDelegate.OnActivated(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.OnResignActivation(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.OpenUrl(UIKit.UIApplication,Foundation.NSUrl,Foundation.NSDictionary) -M:UIKit.IUIApplicationDelegate.OpenUrl(UIKit.UIApplication,Foundation.NSUrl,System.String,Foundation.NSObject) -M:UIKit.IUIApplicationDelegate.PerformActionForShortcutItem(UIKit.UIApplication,UIKit.UIApplicationShortcutItem,UIKit.UIOperationHandler) -M:UIKit.IUIApplicationDelegate.PerformFetch(UIKit.UIApplication,System.Action{UIKit.UIBackgroundFetchResult}) -M:UIKit.IUIApplicationDelegate.ProtectedDataDidBecomeAvailable(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.ProtectedDataWillBecomeUnavailable(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.ReceivedLocalNotification(UIKit.UIApplication,UIKit.UILocalNotification) -M:UIKit.IUIApplicationDelegate.ReceivedRemoteNotification(UIKit.UIApplication,Foundation.NSDictionary) -M:UIKit.IUIApplicationDelegate.ReceiveMemoryWarning(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.RegisteredForRemoteNotifications(UIKit.UIApplication,Foundation.NSData) -M:UIKit.IUIApplicationDelegate.ShouldAllowExtensionPointIdentifier(UIKit.UIApplication,Foundation.NSString) M:UIKit.IUIApplicationDelegate.ShouldAutomaticallyLocalizeKeyCommands(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.ShouldRequestHealthAuthorization(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.ShouldRestoreApplicationState(UIKit.UIApplication,Foundation.NSCoder) M:UIKit.IUIApplicationDelegate.ShouldRestoreSecureApplicationState(UIKit.UIApplication,Foundation.NSCoder) -M:UIKit.IUIApplicationDelegate.ShouldSaveApplicationState(UIKit.UIApplication,Foundation.NSCoder) M:UIKit.IUIApplicationDelegate.ShouldSaveSecureApplicationState(UIKit.UIApplication,Foundation.NSCoder) -M:UIKit.IUIApplicationDelegate.UserActivityUpdated(UIKit.UIApplication,Foundation.NSUserActivity) -M:UIKit.IUIApplicationDelegate.UserDidAcceptCloudKitShare(UIKit.UIApplication,CloudKit.CKShareMetadata) -M:UIKit.IUIApplicationDelegate.WillChangeStatusBarFrame(UIKit.UIApplication,CoreGraphics.CGRect) -M:UIKit.IUIApplicationDelegate.WillChangeStatusBarOrientation(UIKit.UIApplication,UIKit.UIInterfaceOrientation,System.Double) -M:UIKit.IUIApplicationDelegate.WillContinueUserActivity(UIKit.UIApplication,System.String) -M:UIKit.IUIApplicationDelegate.WillEncodeRestorableState(UIKit.UIApplication,Foundation.NSCoder) -M:UIKit.IUIApplicationDelegate.WillEnterForeground(UIKit.UIApplication) -M:UIKit.IUIApplicationDelegate.WillFinishLaunching(UIKit.UIApplication,Foundation.NSDictionary) -M:UIKit.IUIApplicationDelegate.WillTerminate(UIKit.UIApplication) -M:UIKit.IUIBarPositioningDelegate.GetPositionForBar(UIKit.IUIBarPositioning) M:UIKit.IUICalendarSelectionMultiDateDelegate.CanDeselectDate(UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents) M:UIKit.IUICalendarSelectionMultiDateDelegate.CanSelectDate(UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents) M:UIKit.IUICalendarSelectionMultiDateDelegate.DidDeselectDate(UIKit.UICalendarSelectionMultiDate,Foundation.NSDateComponents) @@ -21572,60 +20058,28 @@ 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.DidSaveShare(UIKit.UICloudSharingController) -M:UIKit.IUICloudSharingControllerDelegate.DidStopSharing(UIKit.UICloudSharingController) M:UIKit.IUICloudSharingControllerDelegate.FailedToSaveShare(UIKit.UICloudSharingController,Foundation.NSError) -M:UIKit.IUICloudSharingControllerDelegate.GetItemThumbnailData(UIKit.UICloudSharingController) M:UIKit.IUICloudSharingControllerDelegate.GetItemTitle(UIKit.UICloudSharingController) -M:UIKit.IUICloudSharingControllerDelegate.GetItemType(UIKit.UICloudSharingController) -M:UIKit.IUICollectionViewDataSource.CanMoveItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDataSource.GetCell(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDataSource.GetIndexPath(UIKit.UICollectionView,System.String,System.IntPtr) -M:UIKit.IUICollectionViewDataSource.GetIndexTitles(UIKit.UICollectionView) M:UIKit.IUICollectionViewDataSource.GetItemsCount(UIKit.UICollectionView,System.IntPtr) -M:UIKit.IUICollectionViewDataSource.GetViewForSupplementaryElement(UIKit.UICollectionView,Foundation.NSString,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDataSource.MoveItem(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDataSource.NumberOfSections(UIKit.UICollectionView) -M:UIKit.IUICollectionViewDataSourcePrefetching.CancelPrefetching(UIKit.UICollectionView,Foundation.NSIndexPath[]) M:UIKit.IUICollectionViewDataSourcePrefetching.PrefetchItems(UIKit.UICollectionView,Foundation.NSIndexPath[]) M:UIKit.IUICollectionViewDelegate.CanEditItem(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.CanFocusItem(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.CanPerformAction(UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) M:UIKit.IUICollectionViewDelegate.CanPerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.CellDisplayingEnded(UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDelegate.DidBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDelegate.DidEndMultipleSelectionInteraction(UIKit.UICollectionView) -M:UIKit.IUICollectionViewDelegate.DidUpdateFocus(UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:UIKit.IUICollectionViewDelegate.GetContextMenuConfiguration(UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint) M:UIKit.IUICollectionViewDelegate.GetContextMenuConfiguration(UIKit.UICollectionView,Foundation.NSIndexPath[],CoreGraphics.CGPoint) M:UIKit.IUICollectionViewDelegate.GetContextMenuConfigurationDismissalPreview(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDelegate.GetContextMenuConfigurationHighlightPreview(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.GetIndexPathForPreferredFocusedView(UIKit.UICollectionView) M:UIKit.IUICollectionViewDelegate.GetPreviewForDismissingContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration) M:UIKit.IUICollectionViewDelegate.GetPreviewForHighlightingContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration) M:UIKit.IUICollectionViewDelegate.GetSceneActivationConfigurationForItem(UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint) M:UIKit.IUICollectionViewDelegate.GetSelectionFollowsFocusForItem(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.GetTargetContentOffset(UIKit.UICollectionView,CoreGraphics.CGPoint) -M:UIKit.IUICollectionViewDelegate.GetTargetIndexPathForMove(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDelegate.GetTargetIndexPathForMoveOfItemFromOriginalIndexPath(UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ItemDeselected(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ItemHighlighted(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ItemSelected(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ItemUnhighlighted(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.PerformAction(UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) M:UIKit.IUICollectionViewDelegate.PerformPrimaryActionForItem(UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDelegate.ShouldBeginMultipleSelectionInteraction(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ShouldDeselectItem(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ShouldHighlightItem(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ShouldSelectItem(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ShouldShowMenu(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.ShouldSpringLoadItem(UIKit.UICollectionView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext) -M:UIKit.IUICollectionViewDelegate.ShouldUpdateFocus(UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext) -M:UIKit.IUICollectionViewDelegate.SupplementaryViewDisplayingEnded(UIKit.UICollectionView,UIKit.UICollectionReusableView,Foundation.NSString,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDelegate.TransitionLayout(UIKit.UICollectionView,UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayout) -M:UIKit.IUICollectionViewDelegate.WillDisplayCell(UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDelegate.WillDisplayContextMenu(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) -M:UIKit.IUICollectionViewDelegate.WillDisplaySupplementaryView(UIKit.UICollectionView,UIKit.UICollectionReusableView,System.String,Foundation.NSIndexPath) M:UIKit.IUICollectionViewDelegate.WillEndContextMenuInteraction(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) M:UIKit.IUICollectionViewDelegate.WillPerformPreviewAction(UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating) M:UIKit.IUICollectionViewDelegateFlowLayout.GetInsetForSection(UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr) @@ -21633,32 +20087,15 @@ 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.IUICollectionViewDelegateFlowLayout.GetSizeForItem(UIKit.UICollectionView,UIKit.UICollectionViewLayout,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDragDelegate.DragSessionAllowsMoveOperation(UIKit.UICollectionView,UIKit.IUIDragSession) -M:UIKit.IUICollectionViewDragDelegate.DragSessionDidEnd(UIKit.UICollectionView,UIKit.IUIDragSession) -M:UIKit.IUICollectionViewDragDelegate.DragSessionIsRestrictedToDraggingApplication(UIKit.UICollectionView,UIKit.IUIDragSession) -M:UIKit.IUICollectionViewDragDelegate.DragSessionWillBegin(UIKit.UICollectionView,UIKit.IUIDragSession) -M:UIKit.IUICollectionViewDragDelegate.GetDragPreviewParameters(UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDragDelegate.GetItemsForAddingToDragSession(UIKit.UICollectionView,UIKit.IUIDragSession,Foundation.NSIndexPath,CoreGraphics.CGPoint) 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.CanHandleDropSession(UIKit.UICollectionView,UIKit.IUIDropSession) -M:UIKit.IUICollectionViewDropDelegate.DropSessionDidEnd(UIKit.UICollectionView,UIKit.IUIDropSession) -M:UIKit.IUICollectionViewDropDelegate.DropSessionDidEnter(UIKit.UICollectionView,UIKit.IUIDropSession) -M:UIKit.IUICollectionViewDropDelegate.DropSessionDidExit(UIKit.UICollectionView,UIKit.IUIDropSession) -M:UIKit.IUICollectionViewDropDelegate.DropSessionDidUpdate(UIKit.UICollectionView,UIKit.IUIDropSession,Foundation.NSIndexPath) -M:UIKit.IUICollectionViewDropDelegate.GetDropPreviewParameters(UIKit.UICollectionView,Foundation.NSIndexPath) 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.IUICollisionBehaviorDelegate.BeganBoundaryContact(UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,Foundation.NSObject,CoreGraphics.CGPoint) -M:UIKit.IUICollisionBehaviorDelegate.BeganContact(UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,UIKit.IUIDynamicItem,CoreGraphics.CGPoint) -M:UIKit.IUICollisionBehaviorDelegate.EndedBoundaryContact(UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,Foundation.NSObject) -M:UIKit.IUICollisionBehaviorDelegate.EndedContact(UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,UIKit.IUIDynamicItem) M:UIKit.IUIColorPickerViewControllerDelegate.DidFinish(UIKit.UIColorPickerViewController) M:UIKit.IUIColorPickerViewControllerDelegate.DidSelectColor(UIKit.UIColorPickerViewController,UIKit.UIColor,System.Boolean) M:UIKit.IUIColorPickerViewControllerDelegate.DidSelectColor(UIKit.UIColorPickerViewController) @@ -21695,61 +20132,15 @@ 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.IUIDocumentBrowserViewControllerDelegate.DidImportDocument(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl,Foundation.NSUrl) -M:UIKit.IUIDocumentBrowserViewControllerDelegate.DidPickDocumentsAtUrls(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[]) -M:UIKit.IUIDocumentBrowserViewControllerDelegate.DidPickDocumentUrls(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[]) -M:UIKit.IUIDocumentBrowserViewControllerDelegate.DidRequestDocumentCreation(UIKit.UIDocumentBrowserViewController,System.Action{Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode}) -M:UIKit.IUIDocumentBrowserViewControllerDelegate.FailedToImportDocument(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl,Foundation.NSError) -M:UIKit.IUIDocumentBrowserViewControllerDelegate.GetApplicationActivities(UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[]) -M:UIKit.IUIDocumentBrowserViewControllerDelegate.WillPresent(UIKit.UIDocumentBrowserViewController,UIKit.UIActivityViewController) -M:UIKit.IUIDocumentInteractionControllerDelegate.CanPerformAction(UIKit.UIDocumentInteractionController,ObjCRuntime.Selector) -M:UIKit.IUIDocumentInteractionControllerDelegate.DidDismissOpenInMenu(UIKit.UIDocumentInteractionController) -M:UIKit.IUIDocumentInteractionControllerDelegate.DidDismissOptionsMenu(UIKit.UIDocumentInteractionController) -M:UIKit.IUIDocumentInteractionControllerDelegate.DidEndPreview(UIKit.UIDocumentInteractionController) -M:UIKit.IUIDocumentInteractionControllerDelegate.DidEndSendingToApplication(UIKit.UIDocumentInteractionController,System.String) -M:UIKit.IUIDocumentInteractionControllerDelegate.PerformAction(UIKit.UIDocumentInteractionController,ObjCRuntime.Selector) -M:UIKit.IUIDocumentInteractionControllerDelegate.RectangleForPreview(UIKit.UIDocumentInteractionController) -M:UIKit.IUIDocumentInteractionControllerDelegate.ViewControllerForPreview(UIKit.UIDocumentInteractionController) -M:UIKit.IUIDocumentInteractionControllerDelegate.ViewForPreview(UIKit.UIDocumentInteractionController) -M:UIKit.IUIDocumentInteractionControllerDelegate.WillBeginPreview(UIKit.UIDocumentInteractionController) -M:UIKit.IUIDocumentInteractionControllerDelegate.WillBeginSendingToApplication(UIKit.UIDocumentInteractionController,System.String) -M:UIKit.IUIDocumentInteractionControllerDelegate.WillPresentOpenInMenu(UIKit.UIDocumentInteractionController) -M:UIKit.IUIDocumentInteractionControllerDelegate.WillPresentOptionsMenu(UIKit.UIDocumentInteractionController) M:UIKit.IUIDocumentMenuDelegate.DidPickDocumentPicker(UIKit.UIDocumentMenuViewController,UIKit.UIDocumentPickerViewController) M:UIKit.IUIDocumentMenuDelegate.WasCancelled(UIKit.UIDocumentMenuViewController) M:UIKit.IUIDocumentPickerDelegate.DidPickDocument(UIKit.UIDocumentPickerViewController,Foundation.NSUrl) -M:UIKit.IUIDocumentPickerDelegate.DidPickDocument(UIKit.UIDocumentPickerViewController,Foundation.NSUrl[]) -M:UIKit.IUIDocumentPickerDelegate.WasCancelled(UIKit.UIDocumentPickerViewController) 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.GetItemsForAddingToSession(UIKit.UIDragInteraction,UIKit.IUIDragSession,CoreGraphics.CGPoint) M:UIKit.IUIDragInteractionDelegate.GetItemsForBeginningSession(UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.IUIDragInteractionDelegate.GetPreviewForCancellingItem(UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview) -M:UIKit.IUIDragInteractionDelegate.GetPreviewForLiftingItem(UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragSession) -M:UIKit.IUIDragInteractionDelegate.GetSessionForAddingItems(UIKit.UIDragInteraction,UIKit.IUIDragSession[],CoreGraphics.CGPoint) -M:UIKit.IUIDragInteractionDelegate.PrefersFullSizePreviews(UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.IUIDragInteractionDelegate.SessionAllowsMoveOperation(UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.IUIDragInteractionDelegate.SessionDidEnd(UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDropOperation) -M:UIKit.IUIDragInteractionDelegate.SessionDidMove(UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.IUIDragInteractionDelegate.SessionDidTransferItems(UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.IUIDragInteractionDelegate.SessionIsRestrictedToDraggingApplication(UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.IUIDragInteractionDelegate.SessionWillBegin(UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.IUIDragInteractionDelegate.SessionWillEnd(UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDropOperation) -M:UIKit.IUIDragInteractionDelegate.WillAddItems(UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDragItem[],UIKit.UIDragInteraction) -M:UIKit.IUIDragInteractionDelegate.WillAnimateCancel(UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating) -M:UIKit.IUIDragInteractionDelegate.WillAnimateLift(UIKit.UIDragInteraction,UIKit.IUIDragAnimating,UIKit.IUIDragSession) -M:UIKit.IUIDropInteractionDelegate.CanHandleSession(UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.IUIDropInteractionDelegate.ConcludeDrop(UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.IUIDropInteractionDelegate.GetPreviewForDroppingItem(UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview) -M:UIKit.IUIDropInteractionDelegate.PerformDrop(UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.IUIDropInteractionDelegate.SessionDidEnd(UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.IUIDropInteractionDelegate.SessionDidEnter(UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.IUIDropInteractionDelegate.SessionDidExit(UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.IUIDropInteractionDelegate.SessionDidUpdate(UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.IUIDropInteractionDelegate.WillAnimateDrop(UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating) M:UIKit.IUIDropSession.LoadObjects(ObjCRuntime.Class,System.Action{Foundation.INSItemProviderReading[]}) M:UIKit.IUIDynamicAnimatorDelegate.DidPause(UIKit.UIDynamicAnimator) M:UIKit.IUIDynamicAnimatorDelegate.WillResume(UIKit.UIDynamicAnimator) @@ -21767,22 +20158,12 @@ M:UIKit.IUIFocusEnvironment.GetSoundIdentifier(UIKit.UIFocusUpdateContext) M:UIKit.IUIFocusEnvironment.SetNeedsFocusUpdate M:UIKit.IUIFocusEnvironment.ShouldUpdateFocus(UIKit.UIFocusUpdateContext) M:UIKit.IUIFocusEnvironment.UpdateFocusIfNeeded -M:UIKit.IUIFocusItem.DidHintFocusMovement(UIKit.UIFocusMovementHint) M:UIKit.IUIFocusItemContainer.GetFocusItems(CoreGraphics.CGRect) M:UIKit.IUIFontPickerViewControllerDelegate.DidCancel(UIKit.UIFontPickerViewController) M:UIKit.IUIFontPickerViewControllerDelegate.DidPickFont(UIKit.UIFontPickerViewController) -M:UIKit.IUIGestureRecognizerDelegate.ShouldBegin(UIKit.UIGestureRecognizer) -M:UIKit.IUIGestureRecognizerDelegate.ShouldBeRequiredToFailBy(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) M:UIKit.IUIGestureRecognizerDelegate.ShouldReceiveEvent(UIKit.UIGestureRecognizer,UIKit.UIEvent) -M:UIKit.IUIGestureRecognizerDelegate.ShouldReceivePress(UIKit.UIGestureRecognizer,UIKit.UIPress) -M:UIKit.IUIGestureRecognizerDelegate.ShouldReceiveTouch(UIKit.UIGestureRecognizer,UIKit.UITouch) -M:UIKit.IUIGestureRecognizerDelegate.ShouldRecognizeSimultaneously(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) -M:UIKit.IUIGestureRecognizerDelegate.ShouldRequireFailureOf(UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) -M:UIKit.IUIGuidedAccessRestrictionDelegate.GetDetailTextForGuidedAccessRestriction(System.String) M:UIKit.IUIGuidedAccessRestrictionDelegate.GetTextForGuidedAccessRestriction(System.String) M:UIKit.IUIGuidedAccessRestrictionDelegate.GuidedAccessRestrictionChangedState(System.String,UIKit.UIGuidedAccessRestrictionState) -M:UIKit.IUIImagePickerControllerDelegate.Canceled(UIKit.UIImagePickerController) -M:UIKit.IUIImagePickerControllerDelegate.FinishedPickingMedia(UIKit.UIImagePickerController,Foundation.NSDictionary) 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) @@ -21817,17 +20198,7 @@ M:UIKit.IUIMutableTraits.GetValue(UIKit.IUINSIntegerTraitDefinition) M:UIKit.IUIMutableTraits.SetObject(Foundation.NSObject,UIKit.IUIObjectTraitDefinition) M:UIKit.IUIMutableTraits.SetValue(System.IntPtr,UIKit.IUINSIntegerTraitDefinition) M:UIKit.IUIMutableTraits.SetValue(System.Runtime.InteropServices.NFloat,UIKit.IUICGFloatTraitDefinition) -M:UIKit.IUINavigationBarDelegate.DidPopItem(UIKit.UINavigationBar,UIKit.UINavigationItem) -M:UIKit.IUINavigationBarDelegate.DidPushItem(UIKit.UINavigationBar,UIKit.UINavigationItem) M:UIKit.IUINavigationBarDelegate.GetNSToolbarSection(UIKit.UINavigationBar) -M:UIKit.IUINavigationBarDelegate.ShouldPopItem(UIKit.UINavigationBar,UIKit.UINavigationItem) -M:UIKit.IUINavigationBarDelegate.ShouldPushItem(UIKit.UINavigationBar,UIKit.UINavigationItem) -M:UIKit.IUINavigationControllerDelegate.DidShowViewController(UIKit.UINavigationController,UIKit.UIViewController,System.Boolean) -M:UIKit.IUINavigationControllerDelegate.GetAnimationControllerForOperation(UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController) -M:UIKit.IUINavigationControllerDelegate.GetInteractionControllerForAnimationController(UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning) -M:UIKit.IUINavigationControllerDelegate.GetPreferredInterfaceOrientation(UIKit.UINavigationController) -M:UIKit.IUINavigationControllerDelegate.SupportedInterfaceOrientations(UIKit.UINavigationController) -M:UIKit.IUINavigationControllerDelegate.WillShowViewController(UIKit.UINavigationController,UIKit.UIViewController,System.Boolean) M:UIKit.IUINavigationItemRenameDelegate.DidEndRenaming(UIKit.UINavigationItem,System.String) M:UIKit.IUINavigationItemRenameDelegate.ShouldBeginRenaming(UIKit.UINavigationItem) M:UIKit.IUINavigationItemRenameDelegate.ShouldEndRenaming(UIKit.UINavigationItem,System.String) @@ -21839,19 +20210,9 @@ M:UIKit.IUIPageControlProgressDelegate.VisibilityDidChange(UIKit.UIPageControlPr 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.GetPresentationCount(UIKit.UIPageViewController) -M:UIKit.IUIPageViewControllerDataSource.GetPresentationIndex(UIKit.UIPageViewController) M:UIKit.IUIPageViewControllerDataSource.GetPreviousViewController(UIKit.UIPageViewController,UIKit.UIViewController) -M:UIKit.IUIPageViewControllerDelegate.DidFinishAnimating(UIKit.UIPageViewController,System.Boolean,UIKit.UIViewController[],System.Boolean) -M:UIKit.IUIPageViewControllerDelegate.GetPreferredInterfaceOrientationForPresentation(UIKit.UIPageViewController) -M:UIKit.IUIPageViewControllerDelegate.GetSpineLocation(UIKit.UIPageViewController,UIKit.UIInterfaceOrientation) -M:UIKit.IUIPageViewControllerDelegate.SupportedInterfaceOrientations(UIKit.UIPageViewController) -M:UIKit.IUIPageViewControllerDelegate.WillTransition(UIKit.UIPageViewController,UIKit.UIViewController[]) -M:UIKit.IUIPasteConfigurationSupporting.CanPaste(Foundation.NSItemProvider[]) -M:UIKit.IUIPasteConfigurationSupporting.Paste(Foundation.NSItemProvider[]) M:UIKit.IUIPencilInteractionDelegate.DidReceiveSqueeze(UIKit.UIPencilInteraction,UIKit.UIPencilInteractionSqueeze) M:UIKit.IUIPencilInteractionDelegate.DidReceiveTap(UIKit.UIPencilInteraction,UIKit.UIPencilInteractionTap) -M:UIKit.IUIPencilInteractionDelegate.DidTap(UIKit.UIPencilInteraction) M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityAttributedHint(UIKit.UIPickerView,System.IntPtr) M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityAttributedLabel(UIKit.UIPickerView,System.IntPtr) M:UIKit.IUIPickerViewAccessibilityDelegate.GetAccessibilityAttributedUserInputLabels(UIKit.UIPickerView,System.IntPtr) @@ -21875,35 +20236,10 @@ M:UIKit.IUIPointerInteractionDelegate.WillExitRegion(UIKit.UIPointerInteraction, M:UIKit.IUIPopoverBackgroundViewMethods.GetArrowBase``1 M:UIKit.IUIPopoverBackgroundViewMethods.GetArrowHeight``1 M:UIKit.IUIPopoverBackgroundViewMethods.GetContentViewInsets``1 -M:UIKit.IUIPopoverControllerDelegate.DidDismiss(UIKit.UIPopoverController) -M:UIKit.IUIPopoverControllerDelegate.ShouldDismiss(UIKit.UIPopoverController) -M:UIKit.IUIPopoverControllerDelegate.WillReposition(UIKit.UIPopoverController,CoreGraphics.CGRect@,UIKit.UIView@) -M:UIKit.IUIPopoverPresentationControllerDelegate.DidDismissPopover(UIKit.UIPopoverPresentationController) -M:UIKit.IUIPopoverPresentationControllerDelegate.PrepareForPopoverPresentation(UIKit.UIPopoverPresentationController) -M:UIKit.IUIPopoverPresentationControllerDelegate.ShouldDismissPopover(UIKit.UIPopoverPresentationController) -M:UIKit.IUIPopoverPresentationControllerDelegate.WillRepositionPopover(UIKit.UIPopoverPresentationController,CoreGraphics.CGRect@,UIKit.UIView@) 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.IUIPreviewInteractionDelegate.ShouldBegin(UIKit.UIPreviewInteraction) -M:UIKit.IUIPrinterPickerControllerDelegate.DidDismiss(UIKit.UIPrinterPickerController) -M:UIKit.IUIPrinterPickerControllerDelegate.DidPresent(UIKit.UIPrinterPickerController) -M:UIKit.IUIPrinterPickerControllerDelegate.DidSelectPrinter(UIKit.UIPrinterPickerController) -M:UIKit.IUIPrinterPickerControllerDelegate.GetParentViewController(UIKit.UIPrinterPickerController) -M:UIKit.IUIPrinterPickerControllerDelegate.ShouldShowPrinter(UIKit.UIPrinterPickerController,UIKit.UIPrinter) -M:UIKit.IUIPrinterPickerControllerDelegate.WillDismiss(UIKit.UIPrinterPickerController) -M:UIKit.IUIPrinterPickerControllerDelegate.WillPresent(UIKit.UIPrinterPickerController) -M:UIKit.IUIPrintInteractionControllerDelegate.ChooseCutterBehavior(UIKit.UIPrintInteractionController,Foundation.NSNumber[]) -M:UIKit.IUIPrintInteractionControllerDelegate.ChoosePaper(UIKit.UIPrintInteractionController,UIKit.UIPrintPaper[]) -M:UIKit.IUIPrintInteractionControllerDelegate.CutLengthForPaper(UIKit.UIPrintInteractionController,UIKit.UIPrintPaper) -M:UIKit.IUIPrintInteractionControllerDelegate.DidDismissPrinterOptions(UIKit.UIPrintInteractionController) -M:UIKit.IUIPrintInteractionControllerDelegate.DidFinishJob(UIKit.UIPrintInteractionController) -M:UIKit.IUIPrintInteractionControllerDelegate.DidPresentPrinterOptions(UIKit.UIPrintInteractionController) -M:UIKit.IUIPrintInteractionControllerDelegate.GetViewController(UIKit.UIPrintInteractionController) -M:UIKit.IUIPrintInteractionControllerDelegate.WillDismissPrinterOptions(UIKit.UIPrintInteractionController) -M:UIKit.IUIPrintInteractionControllerDelegate.WillPresentPrinterOptions(UIKit.UIPrintInteractionController) -M:UIKit.IUIPrintInteractionControllerDelegate.WillStartJob(UIKit.UIPrintInteractionController) M:UIKit.IUIResponderStandardEditActions.Copy(Foundation.NSObject) M:UIKit.IUIResponderStandardEditActions.Cut(Foundation.NSObject) M:UIKit.IUIResponderStandardEditActions.DecreaseSize(Foundation.NSObject) @@ -21950,52 +20286,11 @@ M:UIKit.IUIScribbleInteractionDelegate.DidFinishWriting(UIKit.UIScribbleInteract M:UIKit.IUIScribbleInteractionDelegate.ShouldBegin(UIKit.UIScribbleInteraction,CoreGraphics.CGPoint) M:UIKit.IUIScribbleInteractionDelegate.ShouldDelayFocus(UIKit.UIScribbleInteraction) M:UIKit.IUIScribbleInteractionDelegate.WillBeginWriting(UIKit.UIScribbleInteraction) -M:UIKit.IUIScrollViewAccessibilityDelegate.GetAccessibilityAttributedScrollStatus(UIKit.UIScrollView) -M:UIKit.IUIScrollViewAccessibilityDelegate.GetAccessibilityScrollStatus(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.DecelerationEnded(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.DecelerationStarted(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.DidChangeAdjustedContentInset(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.DidZoom(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.DraggingEnded(UIKit.UIScrollView,System.Boolean) -M:UIKit.IUIScrollViewDelegate.DraggingStarted(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.ScrollAnimationEnded(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.Scrolled(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.ScrolledToTop(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.ShouldScrollToTop(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.ViewForZoomingInScrollView(UIKit.UIScrollView) -M:UIKit.IUIScrollViewDelegate.WillEndDragging(UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@) M:UIKit.IUIScrollViewDelegate.ZoomingEnded(UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat) -M:UIKit.IUIScrollViewDelegate.ZoomingStarted(UIKit.UIScrollView,UIKit.UIView) -M:UIKit.IUISearchBarDelegate.BookmarkButtonClicked(UIKit.UISearchBar) -M:UIKit.IUISearchBarDelegate.CancelButtonClicked(UIKit.UISearchBar) -M:UIKit.IUISearchBarDelegate.ListButtonClicked(UIKit.UISearchBar) -M:UIKit.IUISearchBarDelegate.OnEditingStarted(UIKit.UISearchBar) -M:UIKit.IUISearchBarDelegate.OnEditingStopped(UIKit.UISearchBar) -M:UIKit.IUISearchBarDelegate.SearchButtonClicked(UIKit.UISearchBar) M:UIKit.IUISearchBarDelegate.SelectedScopeButtonIndexChanged(UIKit.UISearchBar,System.IntPtr) -M:UIKit.IUISearchBarDelegate.ShouldBeginEditing(UIKit.UISearchBar) -M:UIKit.IUISearchBarDelegate.ShouldChangeTextInRange(UIKit.UISearchBar,Foundation.NSRange,System.String) -M:UIKit.IUISearchBarDelegate.ShouldEndEditing(UIKit.UISearchBar) -M:UIKit.IUISearchBarDelegate.TextChanged(UIKit.UISearchBar,System.String) M:UIKit.IUISearchControllerDelegate.DidChangeFromSearchBarPlacement(UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement) -M:UIKit.IUISearchControllerDelegate.DidDismissSearchController(UIKit.UISearchController) -M:UIKit.IUISearchControllerDelegate.DidPresentSearchController(UIKit.UISearchController) -M:UIKit.IUISearchControllerDelegate.PresentSearchController(UIKit.UISearchController) M:UIKit.IUISearchControllerDelegate.WillChangeToSearchBarPlacement(UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement) -M:UIKit.IUISearchControllerDelegate.WillDismissSearchController(UIKit.UISearchController) -M:UIKit.IUISearchControllerDelegate.WillPresentSearchController(UIKit.UISearchController) -M:UIKit.IUISearchDisplayDelegate.DidBeginSearch(UIKit.UISearchDisplayController) -M:UIKit.IUISearchDisplayDelegate.DidEndSearch(UIKit.UISearchDisplayController) -M:UIKit.IUISearchDisplayDelegate.DidHideSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView) -M:UIKit.IUISearchDisplayDelegate.DidLoadSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView) -M:UIKit.IUISearchDisplayDelegate.DidShowSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView) M:UIKit.IUISearchDisplayDelegate.ShouldReloadForSearchScope(UIKit.UISearchDisplayController,System.IntPtr) -M:UIKit.IUISearchDisplayDelegate.ShouldReloadForSearchString(UIKit.UISearchDisplayController,System.String) -M:UIKit.IUISearchDisplayDelegate.WillBeginSearch(UIKit.UISearchDisplayController) -M:UIKit.IUISearchDisplayDelegate.WillEndSearch(UIKit.UISearchDisplayController) -M:UIKit.IUISearchDisplayDelegate.WillHideSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView) -M:UIKit.IUISearchDisplayDelegate.WillShowSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView) -M:UIKit.IUISearchDisplayDelegate.WillUnloadSearchResults(UIKit.UISearchDisplayController,UIKit.UITableView) M:UIKit.IUISearchResultsUpdating.UpdateSearchResults(UIKit.UISearchController,UIKit.IUISearchSuggestion) M:UIKit.IUISearchResultsUpdating.UpdateSearchResultsForSearchController(UIKit.UISearchController) M:UIKit.IUISearchSuggestion.GetIconImage @@ -22005,51 +20300,24 @@ M:UIKit.IUISearchTextFieldDelegate.GetItemProvider(UIKit.UISearchTextField,UIKit M:UIKit.IUISearchTextFieldPasteItem.SetSearchTokenResult(UIKit.UISearchToken) M:UIKit.IUIShapeProvider.CreateResolvedShape(UIKit.UIShapeResolutionContext) M:UIKit.IUISheetPresentationControllerDelegate.DidChangeSelectedDetentIdentifier(UIKit.UISheetPresentationController) -M:UIKit.IUISplitViewControllerDelegate.CollapseSecondViewController(UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIViewController) M:UIKit.IUISplitViewControllerDelegate.DidCollapse(UIKit.UISplitViewController) M:UIKit.IUISplitViewControllerDelegate.DidExpand(UIKit.UISplitViewController) -M:UIKit.IUISplitViewControllerDelegate.EventShowDetailViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject) -M:UIKit.IUISplitViewControllerDelegate.EventShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject) M:UIKit.IUISplitViewControllerDelegate.GetDisplayModeForExpanding(UIKit.UISplitViewController,UIKit.UISplitViewControllerDisplayMode) -M:UIKit.IUISplitViewControllerDelegate.GetPreferredInterfaceOrientationForPresentation(UIKit.UISplitViewController) -M:UIKit.IUISplitViewControllerDelegate.GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.UISplitViewController) -M:UIKit.IUISplitViewControllerDelegate.GetPrimaryViewControllerForExpandingSplitViewController(UIKit.UISplitViewController) -M:UIKit.IUISplitViewControllerDelegate.GetTargetDisplayModeForAction(UIKit.UISplitViewController) M:UIKit.IUISplitViewControllerDelegate.GetTopColumnForCollapsing(UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn) M:UIKit.IUISplitViewControllerDelegate.InteractivePresentationGestureDidEnd(UIKit.UISplitViewController) M:UIKit.IUISplitViewControllerDelegate.InteractivePresentationGestureWillBegin(UIKit.UISplitViewController) -M:UIKit.IUISplitViewControllerDelegate.SeparateSecondaryViewController(UIKit.UISplitViewController,UIKit.UIViewController) -M:UIKit.IUISplitViewControllerDelegate.ShouldHideViewController(UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIInterfaceOrientation) -M:UIKit.IUISplitViewControllerDelegate.SupportedInterfaceOrientations(UIKit.UISplitViewController) -M:UIKit.IUISplitViewControllerDelegate.WillChangeDisplayMode(UIKit.UISplitViewController,UIKit.UISplitViewControllerDisplayMode) M:UIKit.IUISplitViewControllerDelegate.WillHideColumn(UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn) -M:UIKit.IUISplitViewControllerDelegate.WillHideViewController(UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIBarButtonItem,UIKit.UIPopoverController) -M:UIKit.IUISplitViewControllerDelegate.WillPresentViewController(UIKit.UISplitViewController,UIKit.UIPopoverController,UIKit.UIViewController) M:UIKit.IUISplitViewControllerDelegate.WillShowColumn(UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn) -M:UIKit.IUISplitViewControllerDelegate.WillShowViewController(UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIBarButtonItem) -M:UIKit.IUISpringLoadedInteractionBehavior.InteractionDidFinish(UIKit.UISpringLoadedInteraction) M:UIKit.IUISpringLoadedInteractionBehavior.ShouldAllowInteraction(UIKit.UISpringLoadedInteraction,UIKit.IUISpringLoadedInteractionContext) M:UIKit.IUISpringLoadedInteractionContext.LocationInView(UIKit.UIView) M:UIKit.IUISpringLoadedInteractionEffect.DidChange(UIKit.UISpringLoadedInteraction,UIKit.IUISpringLoadedInteractionContext) -M:UIKit.IUIStateRestoring.ApplicationFinishedRestoringState -M:UIKit.IUIStateRestoring.DecodeRestorableState(Foundation.NSCoder) -M:UIKit.IUIStateRestoring.EncodeRestorableState(Foundation.NSCoder) 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) M:UIKit.IUITabBarControllerDelegate.DisplayOrderDidChangeForGroup(UIKit.UITabBarController,UIKit.UITabGroup) -M:UIKit.IUITabBarControllerDelegate.FinishedCustomizingViewControllers(UIKit.UITabBarController,UIKit.UIViewController[],System.Boolean) -M:UIKit.IUITabBarControllerDelegate.GetAnimationControllerForTransition(UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController) M:UIKit.IUITabBarControllerDelegate.GetDisplayedViewControllers(UIKit.UITabBarController,UIKit.UITab,UIKit.UIViewController[]) -M:UIKit.IUITabBarControllerDelegate.GetInteractionControllerForAnimationController(UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning) M:UIKit.IUITabBarControllerDelegate.GetOperationForAcceptingItemsFromDropSession(UIKit.UITabBarController,UIKit.UITab,UIKit.IUIDropSession) -M:UIKit.IUITabBarControllerDelegate.GetPreferredInterfaceOrientation(UIKit.UITabBarController) -M:UIKit.IUITabBarControllerDelegate.OnCustomizingViewControllers(UIKit.UITabBarController,UIKit.UIViewController[]) -M:UIKit.IUITabBarControllerDelegate.OnEndCustomizingViewControllers(UIKit.UITabBarController,UIKit.UIViewController[],System.Boolean) M:UIKit.IUITabBarControllerDelegate.ShouldSelectTab(UIKit.UITabBarController,UIKit.UITab) -M:UIKit.IUITabBarControllerDelegate.ShouldSelectViewController(UIKit.UITabBarController,UIKit.UIViewController) -M:UIKit.IUITabBarControllerDelegate.SupportedInterfaceOrientations(UIKit.UITabBarController) -M:UIKit.IUITabBarControllerDelegate.ViewControllerSelected(UIKit.UITabBarController,UIKit.UIViewController) M:UIKit.IUITabBarControllerDelegate.VisibilityDidChangeForTabs(UIKit.UITabBarController,UIKit.UITab[]) M:UIKit.IUITabBarControllerDelegate.WillBeginEditing(UIKit.UITabBarController) M:UIKit.IUITabBarControllerSidebarAnimating.AddAnimations(System.Action) @@ -22066,93 +20334,39 @@ 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.IUITabBarDelegate.DidBeginCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[]) -M:UIKit.IUITabBarDelegate.DidEndCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean) -M:UIKit.IUITabBarDelegate.ItemSelected(UIKit.UITabBar,UIKit.UITabBarItem) -M:UIKit.IUITabBarDelegate.WillBeginCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[]) -M:UIKit.IUITabBarDelegate.WillEndCustomizingItems(UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean) -M:UIKit.IUITableViewDataSource.CanEditRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDataSource.CanMoveRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDataSource.CommitEditingStyle(UIKit.UITableView,UIKit.UITableViewCellEditingStyle,Foundation.NSIndexPath) M:UIKit.IUITableViewDataSource.GetCell(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDataSource.MoveRow(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath) -M:UIKit.IUITableViewDataSource.NumberOfSections(UIKit.UITableView) M:UIKit.IUITableViewDataSource.RowsInSection(UIKit.UITableView,System.IntPtr) M:UIKit.IUITableViewDataSource.SectionFor(UIKit.UITableView,System.String,System.IntPtr) -M:UIKit.IUITableViewDataSource.SectionIndexTitles(UIKit.UITableView) M:UIKit.IUITableViewDataSource.TitleForFooter(UIKit.UITableView,System.IntPtr) M:UIKit.IUITableViewDataSource.TitleForHeader(UIKit.UITableView,System.IntPtr) -M:UIKit.IUITableViewDataSourcePrefetching.CancelPrefetching(UIKit.UITableView,Foundation.NSIndexPath[]) M:UIKit.IUITableViewDataSourcePrefetching.PrefetchRows(UIKit.UITableView,Foundation.NSIndexPath[]) -M:UIKit.IUITableViewDelegate.AccessoryButtonTapped(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.CanFocusRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.CanPerformAction(UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) M:UIKit.IUITableViewDelegate.CanPerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.CellDisplayingEnded(UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.CustomizeMoveTarget(UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath) M:UIKit.IUITableViewDelegate.DidBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.DidEndEditing(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.IUITableViewDelegate.DidEndMultipleSelectionInteraction(UIKit.UITableView) -M:UIKit.IUITableViewDelegate.DidUpdateFocus(UIKit.UITableView,UIKit.UITableViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) -M:UIKit.IUITableViewDelegate.EditActionsForRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.EditingStyleForRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.EstimatedHeight(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.IUITableViewDelegate.EstimatedHeightForFooter(UIKit.UITableView,System.IntPtr) M:UIKit.IUITableViewDelegate.EstimatedHeightForHeader(UIKit.UITableView,System.IntPtr) M:UIKit.IUITableViewDelegate.FooterViewDisplayingEnded(UIKit.UITableView,UIKit.UIView,System.IntPtr) M:UIKit.IUITableViewDelegate.GetContextMenuConfiguration(UIKit.UITableView,Foundation.NSIndexPath,CoreGraphics.CGPoint) M:UIKit.IUITableViewDelegate.GetHeightForFooter(UIKit.UITableView,System.IntPtr) M:UIKit.IUITableViewDelegate.GetHeightForHeader(UIKit.UITableView,System.IntPtr) -M:UIKit.IUITableViewDelegate.GetHeightForRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.GetIndexPathForPreferredFocusedView(UIKit.UITableView) -M:UIKit.IUITableViewDelegate.GetLeadingSwipeActionsConfiguration(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.IUITableViewDelegate.GetPreviewForDismissingContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration) M:UIKit.IUITableViewDelegate.GetPreviewForHighlightingContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration) M:UIKit.IUITableViewDelegate.GetSelectionFollowsFocusForRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.GetTrailingSwipeActionsConfiguration(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.IUITableViewDelegate.GetViewForFooter(UIKit.UITableView,System.IntPtr) M:UIKit.IUITableViewDelegate.GetViewForHeader(UIKit.UITableView,System.IntPtr) M:UIKit.IUITableViewDelegate.HeaderViewDisplayingEnded(UIKit.UITableView,UIKit.UIView,System.IntPtr) -M:UIKit.IUITableViewDelegate.IndentationLevel(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.PerformAction(UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) M:UIKit.IUITableViewDelegate.PerformPrimaryAction(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.RowDeselected(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.RowHighlighted(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.RowSelected(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.RowUnhighlighted(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.IUITableViewDelegate.ShouldBeginMultipleSelectionInteraction(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.ShouldHighlightRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.ShouldIndentWhileEditing(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.ShouldShowMenu(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.ShouldSpringLoadRow(UIKit.UITableView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext) -M:UIKit.IUITableViewDelegate.ShouldUpdateFocus(UIKit.UITableView,UIKit.UITableViewFocusUpdateContext) -M:UIKit.IUITableViewDelegate.TitleForDeleteConfirmation(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.WillBeginEditing(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.WillDeselectRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDelegate.WillDisplay(UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath) M:UIKit.IUITableViewDelegate.WillDisplayContextMenu(UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) M:UIKit.IUITableViewDelegate.WillDisplayFooterView(UIKit.UITableView,UIKit.UIView,System.IntPtr) 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.IUITableViewDelegate.WillSelectRow(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDragDelegate.DragSessionAllowsMoveOperation(UIKit.UITableView,UIKit.IUIDragSession) -M:UIKit.IUITableViewDragDelegate.DragSessionDidEnd(UIKit.UITableView,UIKit.IUIDragSession) -M:UIKit.IUITableViewDragDelegate.DragSessionIsRestrictedToDraggingApplication(UIKit.UITableView,UIKit.IUIDragSession) -M:UIKit.IUITableViewDragDelegate.DragSessionWillBegin(UIKit.UITableView,UIKit.IUIDragSession) -M:UIKit.IUITableViewDragDelegate.GetDragPreviewParameters(UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.IUITableViewDragDelegate.GetItemsForAddingToDragSession(UIKit.UITableView,UIKit.IUIDragSession,Foundation.NSIndexPath,CoreGraphics.CGPoint) 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.CanHandleDropSession(UIKit.UITableView,UIKit.IUIDropSession) -M:UIKit.IUITableViewDropDelegate.DropSessionDidEnd(UIKit.UITableView,UIKit.IUIDropSession) -M:UIKit.IUITableViewDropDelegate.DropSessionDidEnter(UIKit.UITableView,UIKit.IUIDropSession) -M:UIKit.IUITableViewDropDelegate.DropSessionDidExit(UIKit.UITableView,UIKit.IUIDropSession) -M:UIKit.IUITableViewDropDelegate.DropSessionDidUpdate(UIKit.UITableView,UIKit.IUIDropSession,Foundation.NSIndexPath) -M:UIKit.IUITableViewDropDelegate.GetDropPreviewParameters(UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.IUITableViewDropDelegate.PerformDrop(UIKit.UITableView,UIKit.IUITableViewDropCoordinator) M:UIKit.IUITableViewDropPlaceholderContext.CommitInsertion(System.Action{Foundation.NSIndexPath}) M:UIKit.IUITableViewDropPlaceholderContext.DeletePlaceholder @@ -22160,30 +20374,9 @@ M:UIKit.IUITextCursorView.ResetBlinkAnimation M:UIKit.IUITextDocumentProxy.AdjustTextPositionByCharacterOffset(System.IntPtr) M:UIKit.IUITextDocumentProxy.SetMarkedText(System.String,Foundation.NSRange) M:UIKit.IUITextDocumentProxy.UnmarkText -M:UIKit.IUITextDragDelegate.DragSessionDidEnd(UIKit.IUITextDraggable,UIKit.IUIDragSession,UIKit.UIDropOperation) -M:UIKit.IUITextDragDelegate.DragSessionWillBegin(UIKit.IUITextDraggable,UIKit.IUIDragSession) -M:UIKit.IUITextDragDelegate.GetItemsForDrag(UIKit.IUITextDraggable,UIKit.IUITextDragRequest) -M:UIKit.IUITextDragDelegate.GetPreviewForLiftingItem(UIKit.IUITextDraggable,UIKit.UIDragItem,UIKit.IUIDragSession) -M:UIKit.IUITextDragDelegate.WillAnimateLift(UIKit.IUITextDraggable,UIKit.IUIDragAnimating,UIKit.IUIDragSession) -M:UIKit.IUITextDropDelegate.DropSessionDidEnd(UIKit.IUITextDroppable,UIKit.IUIDropSession) -M:UIKit.IUITextDropDelegate.DropSessionDidEnter(UIKit.IUITextDroppable,UIKit.IUIDropSession) -M:UIKit.IUITextDropDelegate.DropSessionDidExit(UIKit.IUITextDroppable,UIKit.IUIDropSession) -M:UIKit.IUITextDropDelegate.DropSessionDidUpdate(UIKit.IUITextDroppable,UIKit.IUIDropSession) -M:UIKit.IUITextDropDelegate.GetPreviewForDroppingAllItems(UIKit.IUITextDroppable,UIKit.UITargetedDragPreview) -M:UIKit.IUITextDropDelegate.GetProposalForDrop(UIKit.IUITextDroppable,UIKit.IUITextDropRequest) -M:UIKit.IUITextDropDelegate.WillBecomeEditable(UIKit.IUITextDroppable,UIKit.IUITextDropRequest) -M:UIKit.IUITextDropDelegate.WillPerformDrop(UIKit.IUITextDroppable,UIKit.IUITextDropRequest) M:UIKit.IUITextFieldDelegate.DidChangeSelection(UIKit.UITextField) -M:UIKit.IUITextFieldDelegate.EditingEnded(UIKit.UITextField,UIKit.UITextFieldDidEndEditingReason) -M:UIKit.IUITextFieldDelegate.EditingEnded(UIKit.UITextField) -M:UIKit.IUITextFieldDelegate.EditingStarted(UIKit.UITextField) M:UIKit.IUITextFieldDelegate.GetEditMenu(UIKit.UITextField,Foundation.NSRange,UIKit.UIMenuElement[]) M:UIKit.IUITextFieldDelegate.InsertInputSuggestion(UIKit.UITextField,UIKit.UIInputSuggestion) -M:UIKit.IUITextFieldDelegate.ShouldBeginEditing(UIKit.UITextField) -M:UIKit.IUITextFieldDelegate.ShouldChangeCharacters(UIKit.UITextField,Foundation.NSRange,System.String) -M:UIKit.IUITextFieldDelegate.ShouldClear(UIKit.UITextField) -M:UIKit.IUITextFieldDelegate.ShouldEndEditing(UIKit.UITextField) -M:UIKit.IUITextFieldDelegate.ShouldReturn(UIKit.UITextField) M:UIKit.IUITextFieldDelegate.WillDismissEditMenu(UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating) M:UIKit.IUITextFieldDelegate.WillPresentEditMenu(UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating) M:UIKit.IUITextFormattingCoordinatorDelegate.UpdateTextAttributes(UIKit.UITextAttributesConversionHandler) @@ -22191,24 +20384,18 @@ 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.BeginFloatingCursor(CoreGraphics.CGPoint) M:UIKit.IUITextInput.ComparePosition(UIKit.UITextPosition,UIKit.UITextPosition) -M:UIKit.IUITextInput.DictationRecognitionFailed -M:UIKit.IUITextInput.DictationRecordingDidEnd M:UIKit.IUITextInput.DidDismissWritingTools -M:UIKit.IUITextInput.EndFloatingCursor 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.GetCharacterOffsetOfPosition(UIKit.UITextPosition,UIKit.UITextRange) 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.GetFrameForDictationResultPlaceholder(Foundation.NSObject) 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) @@ -22216,25 +20403,19 @@ 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.GetTextStyling(UIKit.UITextPosition,UIKit.UITextStorageDirection) M:UIKit.IUITextInput.InsertAdaptiveImageGlyph(UIKit.NSAdaptiveImageGlyph,UIKit.UITextRange) M:UIKit.IUITextInput.InsertAttributedText(Foundation.NSAttributedString) -M:UIKit.IUITextInput.InsertDictationResult(Foundation.NSArray) -M:UIKit.IUITextInput.InsertDictationResultPlaceholder M:UIKit.IUITextInput.InsertInputSuggestion(UIKit.UIInputSuggestion) M:UIKit.IUITextInput.InsertText(System.String,System.String[],UIKit.UITextAlternativeStyle) M:UIKit.IUITextInput.InsertTextPlaceholder(CoreGraphics.CGSize) -M:UIKit.IUITextInput.RemoveDictationResultPlaceholder(Foundation.NSObject,System.Boolean) 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.ShouldChangeTextInRange(UIKit.UITextRange,System.String) M:UIKit.IUITextInput.TextInRange(UIKit.UITextRange) M:UIKit.IUITextInput.UnmarkText -M:UIKit.IUITextInput.UpdateFloatingCursor(CoreGraphics.CGPoint) M:UIKit.IUITextInput.WillDismissEditMenu(UIKit.IUIEditMenuInteractionAnimating) M:UIKit.IUITextInput.WillPresentEditMenu(UIKit.IUIEditMenuInteractionAnimating) M:UIKit.IUITextInput.WillPresentWritingTools @@ -22250,10 +20431,6 @@ M:UIKit.IUITextInputTokenizer.ProbeDirectionWithinTextUnit(UIKit.UITextPosition, M:UIKit.IUITextInteractionDelegate.DidEnd(UIKit.UITextInteraction) M:UIKit.IUITextInteractionDelegate.ShouldBegin(UIKit.UITextInteraction,CoreGraphics.CGPoint) M:UIKit.IUITextInteractionDelegate.WillBegin(UIKit.UITextInteraction) -M:UIKit.IUITextPasteDelegate.CombineItemAttributedStrings(UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString[],UIKit.UITextRange) -M:UIKit.IUITextPasteDelegate.PerformPaste(UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString,UIKit.UITextRange) -M:UIKit.IUITextPasteDelegate.ShouldAnimatePaste(UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString,UIKit.UITextRange) -M:UIKit.IUITextPasteDelegate.TransformPasteItem(UIKit.IUITextPasteConfigurationSupporting,UIKit.IUITextPasteItem) M:UIKit.IUITextPasteItem.SetAttachmentResult(UIKit.NSTextAttachment) M:UIKit.IUITextPasteItem.SetAttributedStringResult(Foundation.NSAttributedString) M:UIKit.IUITextPasteItem.SetDefaultResult @@ -22275,24 +20452,13 @@ M:UIKit.IUITextSearching.ShouldReplaceFoundText(UIKit.UITextRange,Foundation.INS M:UIKit.IUITextSearching.WillHighlight(UIKit.UITextRange,Foundation.INSCopying) M:UIKit.IUITextSelectionDisplayInteractionDelegate.GetSelectionContainerViewBelowText(UIKit.UITextSelectionDisplayInteraction) M:UIKit.IUITextSelectionHandleView.GetPreferredFrame(CoreGraphics.CGRect) -M:UIKit.IUITextViewDelegate.Changed(UIKit.UITextView) M:UIKit.IUITextViewDelegate.DidBeginFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController) M:UIKit.IUITextViewDelegate.DidEndFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController) -M:UIKit.IUITextViewDelegate.EditingEnded(UIKit.UITextView) -M:UIKit.IUITextViewDelegate.EditingStarted(UIKit.UITextView) M:UIKit.IUITextViewDelegate.GetEditMenuForText(UIKit.UITextView,Foundation.NSRange,UIKit.UIMenuElement[]) M:UIKit.IUITextViewDelegate.GetMenuConfiguration(UIKit.UITextView,UIKit.UITextItem,UIKit.UIMenu) M:UIKit.IUITextViewDelegate.GetPrimaryAction(UIKit.UITextView,UIKit.UITextItem,UIKit.UIAction) M:UIKit.IUITextViewDelegate.GetWritingToolsIgnoredRangesInEnclosingRange(UIKit.UITextView,Foundation.NSRange) M:UIKit.IUITextViewDelegate.InsertInputSuggestion(UIKit.UITextView,UIKit.UIInputSuggestion) -M:UIKit.IUITextViewDelegate.SelectionChanged(UIKit.UITextView) -M:UIKit.IUITextViewDelegate.ShouldBeginEditing(UIKit.UITextView) -M:UIKit.IUITextViewDelegate.ShouldChangeText(UIKit.UITextView,Foundation.NSRange,System.String) -M:UIKit.IUITextViewDelegate.ShouldEndEditing(UIKit.UITextView) -M:UIKit.IUITextViewDelegate.ShouldInteractWithTextAttachment(UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange,UIKit.UITextItemInteraction) -M:UIKit.IUITextViewDelegate.ShouldInteractWithTextAttachment(UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange) -M:UIKit.IUITextViewDelegate.ShouldInteractWithUrl(UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange,UIKit.UITextItemInteraction) -M:UIKit.IUITextViewDelegate.ShouldInteractWithUrl(UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange) M:UIKit.IUITextViewDelegate.WillBeginFormatting(UIKit.UITextView,UIKit.UITextFormattingViewController) M:UIKit.IUITextViewDelegate.WillDismissEditMenu(UIKit.UITextView,UIKit.IUIEditMenuInteractionAnimating) M:UIKit.IUITextViewDelegate.WillDisplay(UIKit.UITextView,UIKit.UITextItem,UIKit.IUIContextMenuInteractionAnimating) @@ -22311,17 +20477,12 @@ M:UIKit.IUITraitDefinition.GetIdentifier``1 M:UIKit.IUITraitDefinition.GetName``1 M:UIKit.IUITraitEnvironment.TraitCollectionDidChange(UIKit.UITraitCollection) M:UIKit.IUIUserActivityRestoring.RestoreUserActivityState(Foundation.NSUserActivity) -M:UIKit.IUIVideoEditorControllerDelegate.Failed(UIKit.UIVideoEditorController,Foundation.NSError) -M:UIKit.IUIVideoEditorControllerDelegate.UserCancelled(UIKit.UIVideoEditorController) -M:UIKit.IUIVideoEditorControllerDelegate.VideoSaved(UIKit.UIVideoEditorController,System.String) 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.AnimationEnded(System.Boolean) -M:UIKit.IUIViewControllerAnimatedTransitioning.GetInterruptibleAnimator(UIKit.IUIViewControllerContextTransitioning) M:UIKit.IUIViewControllerAnimatedTransitioning.TransitionDuration(UIKit.IUIViewControllerContextTransitioning) M:UIKit.IUIViewControllerContextTransitioning.CancelInteractiveTransition M:UIKit.IUIViewControllerContextTransitioning.CompleteTransition(System.Boolean) @@ -22341,14 +20502,7 @@ M:UIKit.IUIViewControllerTransitionCoordinator.NotifyWhenInteractionChanges(Syst M:UIKit.IUIViewControllerTransitionCoordinator.NotifyWhenInteractionEndsUsingBlock(System.Action{UIKit.IUIViewControllerTransitionCoordinatorContext}) M:UIKit.IUIViewControllerTransitionCoordinatorContext.GetViewControllerForKey(Foundation.NSString) M:UIKit.IUIViewControllerTransitionCoordinatorContext.TargetTransform -M:UIKit.IUIViewControllerTransitioningDelegate.GetAnimationControllerForDismissedController(UIKit.UIViewController) -M:UIKit.IUIViewControllerTransitioningDelegate.GetAnimationControllerForPresentedController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController) -M:UIKit.IUIViewControllerTransitioningDelegate.GetInteractionControllerForDismissal(UIKit.IUIViewControllerAnimatedTransitioning) -M:UIKit.IUIViewControllerTransitioningDelegate.GetInteractionControllerForPresentation(UIKit.IUIViewControllerAnimatedTransitioning) -M:UIKit.IUIViewControllerTransitioningDelegate.GetPresentationControllerForPresentedViewController(UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController) M:UIKit.IUIViewImplicitlyAnimating.AddAnimations(System.Action,System.Runtime.InteropServices.NFloat) -M:UIKit.IUIViewImplicitlyAnimating.AddAnimations(System.Action) -M:UIKit.IUIViewImplicitlyAnimating.AddCompletion(System.Action{UIKit.UIViewAnimatingPosition}) M:UIKit.IUIViewImplicitlyAnimating.ContinueAnimation(UIKit.IUITimingCurveProvider,System.Runtime.InteropServices.NFloat) M:UIKit.IUIWebViewDelegate.LoadFailed(UIKit.UIWebView,Foundation.NSError) M:UIKit.IUIWebViewDelegate.LoadingFinished(UIKit.UIWebView) @@ -22487,7 +20641,6 @@ M:UIKit.NSTextLayoutManagerDelegate_Extensions.GetRenderingAttributes(UIKit.INST M:UIKit.NSTextLayoutManagerDelegate_Extensions.GetTextLayoutFragment(UIKit.INSTextLayoutManagerDelegate,UIKit.NSTextLayoutManager,UIKit.INSTextLocation,UIKit.NSTextElement) M:UIKit.NSTextLayoutManagerDelegate_Extensions.ShouldBreakLineBeforeLocation(UIKit.INSTextLayoutManagerDelegate,UIKit.NSTextLayoutManager,UIKit.INSTextLocation,System.Boolean) M:UIKit.NSTextList.#ctor(System.String) -M:UIKit.NSTextList.#ctor(UIKit.NSTextListMarkerFormats,UIKit.NSTextListOptions) M:UIKit.NSTextList.#ctor(UIKit.NSTextListMarkerFormats) M:UIKit.NSTextList.Copy(Foundation.NSZone) M:UIKit.NSTextListElement.Dispose(System.Boolean) @@ -22510,14 +20663,9 @@ M:UIKit.TransitionCoordinator_UIViewController.GetTransitionCoordinator(UIKit.UI M:UIKit.UIAccelerometer.add_Acceleration(System.EventHandler{UIKit.UIAccelerometerEventArgs}) M:UIKit.UIAccelerometer.Dispose(System.Boolean) M:UIKit.UIAccelerometer.remove_Acceleration(System.EventHandler{UIKit.UIAccelerometerEventArgs}) -M:UIKit.UIAccelerometerDelegate_Extensions.DidAccelerate(UIKit.IUIAccelerometerDelegate,UIKit.UIAccelerometer,UIKit.UIAcceleration) -M:UIKit.UIAccessibilityContainer_Extensions.AccessibilityElementCount(UIKit.IUIAccessibilityContainer) M:UIKit.UIAccessibilityContainer_Extensions.GetAccessibilityContainerType(UIKit.IUIAccessibilityContainer) M:UIKit.UIAccessibilityContainer_Extensions.GetAccessibilityElementAt(UIKit.IUIAccessibilityContainer,System.IntPtr) -M:UIKit.UIAccessibilityContainer_Extensions.GetAccessibilityElements(UIKit.IUIAccessibilityContainer) -M:UIKit.UIAccessibilityContainer_Extensions.GetIndexOfAccessibilityElement(UIKit.IUIAccessibilityContainer,Foundation.NSObject) M:UIKit.UIAccessibilityContainer_Extensions.SetAccessibilityContainerType(UIKit.IUIAccessibilityContainer,UIKit.UIAccessibilityContainerType) -M:UIKit.UIAccessibilityContainer_Extensions.SetAccessibilityElements(UIKit.IUIAccessibilityContainer,Foundation.NSObject) M:UIKit.UIAccessibilityContainerDataTable_Extensions.GetAccessibilityHeaderElementsForColumn(UIKit.IUIAccessibilityContainerDataTable,System.UIntPtr) M:UIKit.UIAccessibilityContainerDataTable_Extensions.GetAccessibilityHeaderElementsForRow(UIKit.IUIAccessibilityContainerDataTable,System.UIntPtr) M:UIKit.UIAccessibilityCustomAction.Dispose(System.Boolean) @@ -22525,7 +20673,6 @@ M:UIKit.UIAccessibilityCustomRotorItemResult.Dispose(System.Boolean) M:UIKit.UIAccessibilityElement.Dispose(System.Boolean) M:UIKit.UIAccessibilityLocationDescriptor.Dispose(System.Boolean) M:UIKit.UIAccessibilityReadingContent_Extensions.GetAccessibilityAttributedContent(UIKit.IUIAccessibilityReadingContent,System.IntPtr) -M:UIKit.UIAccessibilityReadingContent_Extensions.GetAccessibilityAttributedPageContent(UIKit.IUIAccessibilityReadingContent) M:UIKit.UIActionSheet.add_Canceled(System.EventHandler) M:UIKit.UIActionSheet.add_Clicked(System.EventHandler{UIKit.UIButtonEventArgs}) M:UIKit.UIActionSheet.add_Dismissed(System.EventHandler{UIKit.UIButtonEventArgs}) @@ -22540,12 +20687,9 @@ M:UIKit.UIActionSheet.remove_Presented(System.EventHandler) M:UIKit.UIActionSheet.remove_WillDismiss(System.EventHandler{UIKit.UIButtonEventArgs}) M:UIKit.UIActionSheet.remove_WillPresent(System.EventHandler) M:UIKit.UIActionSheet.UIActionSheetAppearance.#ctor(System.IntPtr) -M:UIKit.UIActionSheetDelegate_Extensions.Canceled(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet) 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.Presented(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet) M:UIKit.UIActionSheetDelegate_Extensions.WillDismiss(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet,System.IntPtr) -M:UIKit.UIActionSheetDelegate_Extensions.WillPresent(UIKit.IUIActionSheetDelegate,UIKit.UIActionSheet) M:UIKit.UIActivityCollaborationModeRestriction.Copy(Foundation.NSZone) M:UIKit.UIActivityIndicatorView.UIActivityIndicatorViewAppearance.#ctor(System.IntPtr) M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigurationMetadata(UIKit.IUIActivityItemsConfigurationReading,Foundation.NSString) @@ -22553,20 +20697,13 @@ M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigura M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigurationPreview(UIKit.IUIActivityItemsConfigurationReading,System.IntPtr,Foundation.NSString,CoreGraphics.CGSize) M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetActivityItemsConfigurationSupportsInteraction(UIKit.IUIActivityItemsConfigurationReading,Foundation.NSString) M:UIKit.UIActivityItemsConfigurationReading_Extensions.GetApplicationActivitiesForActivityItemsConfiguration(UIKit.IUIActivityItemsConfigurationReading) -M:UIKit.UIActivityItemSource_Extensions.GetDataTypeIdentifierForActivity(UIKit.IUIActivityItemSource,UIKit.UIActivityViewController,Foundation.NSString) M:UIKit.UIActivityItemSource_Extensions.GetLinkMetadata(UIKit.IUIActivityItemSource,UIKit.UIActivityViewController) M:UIKit.UIActivityItemSource_Extensions.GetShareRecipients(UIKit.IUIActivityItemSource,UIKit.UIActivityViewController) -M:UIKit.UIActivityItemSource_Extensions.GetSubjectForActivity(UIKit.IUIActivityItemSource,UIKit.UIActivityViewController,Foundation.NSString) -M:UIKit.UIActivityItemSource_Extensions.GetThumbnailImageForActivity(UIKit.IUIActivityItemSource,UIKit.UIActivityViewController,Foundation.NSString,CoreGraphics.CGSize) M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.DidAttemptToDismiss(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController) M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.DidDismiss(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController) -M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.GetAdaptivePresentationStyle(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController,UIKit.UITraitCollection) -M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.GetAdaptivePresentationStyle(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController) -M:UIKit.UIAdaptivePresentationControllerDelegate_Extensions.GetViewControllerForAdaptivePresentation(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController,UIKit.UIModalPresentationStyle) 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.UIAdaptivePresentationControllerDelegate_Extensions.WillPresent(UIKit.IUIAdaptivePresentationControllerDelegate,UIKit.UIPresentationController,UIKit.UIModalPresentationStyle,UIKit.IUIViewControllerTransitionCoordinator) M:UIKit.UIAlertAction.Copy(Foundation.NSZone) M:UIKit.UIAlertView.add_Canceled(System.EventHandler) M:UIKit.UIAlertView.add_Clicked(System.EventHandler{UIKit.UIButtonEventArgs}) @@ -22582,74 +20719,24 @@ M:UIKit.UIAlertView.remove_Presented(System.EventHandler) M:UIKit.UIAlertView.remove_WillDismiss(System.EventHandler{UIKit.UIButtonEventArgs}) M:UIKit.UIAlertView.remove_WillPresent(System.EventHandler) M:UIKit.UIAlertView.UIAlertViewAppearance.#ctor(System.IntPtr) -M:UIKit.UIAlertViewDelegate_Extensions.Canceled(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView) M:UIKit.UIAlertViewDelegate_Extensions.Clicked(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView,System.IntPtr) M:UIKit.UIAlertViewDelegate_Extensions.Dismissed(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView,System.IntPtr) -M:UIKit.UIAlertViewDelegate_Extensions.Presented(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView) -M:UIKit.UIAlertViewDelegate_Extensions.ShouldEnableFirstOtherButton(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView) M:UIKit.UIAlertViewDelegate_Extensions.WillDismiss(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView,System.IntPtr) -M:UIKit.UIAlertViewDelegate_Extensions.WillPresent(UIKit.IUIAlertViewDelegate,UIKit.UIAlertView) M:UIKit.UIAppearance.op_Equality(UIKit.UIAppearance,UIKit.UIAppearance) M:UIKit.UIAppearance.op_Inequality(UIKit.UIAppearance,UIKit.UIAppearance) M:UIKit.UIApplication_DefaultApplication.GetDefaultStatus(UIKit.UIApplication,UIKit.UIApplicationCategory,Foundation.NSError@) M:UIKit.UIApplication.Dispose(System.Boolean) M:UIKit.UIApplication.GetPreferredContentSizeCategory M:UIKit.UIApplicationDelegate_Extensions.AccessibilityPerformMagicTap(UIKit.IUIApplicationDelegate) -M:UIKit.UIApplicationDelegate_Extensions.ApplicationSignificantTimeChange(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.ChangedStatusBarFrame(UIKit.IUIApplicationDelegate,UIKit.UIApplication,CoreGraphics.CGRect) -M:UIKit.UIApplicationDelegate_Extensions.ContinueUserActivity(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSUserActivity,UIKit.UIApplicationRestorationHandler) -M:UIKit.UIApplicationDelegate_Extensions.DidChangeStatusBarOrientation(UIKit.IUIApplicationDelegate,UIKit.UIApplication,UIKit.UIInterfaceOrientation) -M:UIKit.UIApplicationDelegate_Extensions.DidDecodeRestorableState(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSCoder) M:UIKit.UIApplicationDelegate_Extensions.DidDiscardSceneSessions(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSSet{UIKit.UISceneSession}) -M:UIKit.UIApplicationDelegate_Extensions.DidEnterBackground(UIKit.IUIApplicationDelegate,UIKit.UIApplication) M:UIKit.UIApplicationDelegate_Extensions.DidFailToContinueUserActivity(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String,Foundation.NSError) -M:UIKit.UIApplicationDelegate_Extensions.DidReceiveRemoteNotification(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSDictionary,System.Action{UIKit.UIBackgroundFetchResult}) -M:UIKit.UIApplicationDelegate_Extensions.DidRegisterUserNotificationSettings(UIKit.IUIApplicationDelegate,UIKit.UIApplication,UIKit.UIUserNotificationSettings) -M:UIKit.UIApplicationDelegate_Extensions.FailedToRegisterForRemoteNotifications(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSError) -M:UIKit.UIApplicationDelegate_Extensions.FinishedLaunching(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSDictionary) -M:UIKit.UIApplicationDelegate_Extensions.FinishedLaunching(UIKit.IUIApplicationDelegate,UIKit.UIApplication) M:UIKit.UIApplicationDelegate_Extensions.GetConfiguration(UIKit.IUIApplicationDelegate,UIKit.UIApplication,UIKit.UISceneSession,UIKit.UISceneConnectionOptions) M:UIKit.UIApplicationDelegate_Extensions.GetHandlerForIntent(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Intents.INIntent) -M:UIKit.UIApplicationDelegate_Extensions.GetSupportedInterfaceOrientations(UIKit.IUIApplicationDelegate,UIKit.UIApplication,UIKit.UIWindow) -M:UIKit.UIApplicationDelegate_Extensions.GetViewController(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String[],Foundation.NSCoder) M:UIKit.UIApplicationDelegate_Extensions.GetWindow(UIKit.IUIApplicationDelegate) -M:UIKit.UIApplicationDelegate_Extensions.HandleAction(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String,Foundation.NSDictionary,Foundation.NSDictionary,System.Action) -M:UIKit.UIApplicationDelegate_Extensions.HandleAction(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String,Foundation.NSDictionary,System.Action) -M:UIKit.UIApplicationDelegate_Extensions.HandleAction(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String,UIKit.UILocalNotification,Foundation.NSDictionary,System.Action) -M:UIKit.UIApplicationDelegate_Extensions.HandleAction(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String,UIKit.UILocalNotification,System.Action) -M:UIKit.UIApplicationDelegate_Extensions.HandleEventsForBackgroundUrl(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String,System.Action) -M:UIKit.UIApplicationDelegate_Extensions.HandleIntent(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Intents.INIntent,System.Action{Intents.INIntentResponse}) -M:UIKit.UIApplicationDelegate_Extensions.HandleOpenURL(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSUrl) -M:UIKit.UIApplicationDelegate_Extensions.HandleWatchKitExtensionRequest(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSDictionary,System.Action{Foundation.NSDictionary}) -M:UIKit.UIApplicationDelegate_Extensions.OnActivated(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.OnResignActivation(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.OpenUrl(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSUrl,Foundation.NSDictionary) -M:UIKit.UIApplicationDelegate_Extensions.OpenUrl(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSUrl,System.String,Foundation.NSObject) -M:UIKit.UIApplicationDelegate_Extensions.PerformActionForShortcutItem(UIKit.IUIApplicationDelegate,UIKit.UIApplication,UIKit.UIApplicationShortcutItem,UIKit.UIOperationHandler) -M:UIKit.UIApplicationDelegate_Extensions.PerformFetch(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.Action{UIKit.UIBackgroundFetchResult}) -M:UIKit.UIApplicationDelegate_Extensions.ProtectedDataDidBecomeAvailable(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.ProtectedDataWillBecomeUnavailable(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.ReceivedLocalNotification(UIKit.IUIApplicationDelegate,UIKit.UIApplication,UIKit.UILocalNotification) -M:UIKit.UIApplicationDelegate_Extensions.ReceivedRemoteNotification(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSDictionary) -M:UIKit.UIApplicationDelegate_Extensions.ReceiveMemoryWarning(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.RegisteredForRemoteNotifications(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSData) M:UIKit.UIApplicationDelegate_Extensions.SetWindow(UIKit.IUIApplicationDelegate,UIKit.UIWindow) -M:UIKit.UIApplicationDelegate_Extensions.ShouldAllowExtensionPointIdentifier(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSString) M:UIKit.UIApplicationDelegate_Extensions.ShouldAutomaticallyLocalizeKeyCommands(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.ShouldRequestHealthAuthorization(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.ShouldRestoreApplicationState(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSCoder) M:UIKit.UIApplicationDelegate_Extensions.ShouldRestoreSecureApplicationState(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSCoder) -M:UIKit.UIApplicationDelegate_Extensions.ShouldSaveApplicationState(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSCoder) M:UIKit.UIApplicationDelegate_Extensions.ShouldSaveSecureApplicationState(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSCoder) -M:UIKit.UIApplicationDelegate_Extensions.UserActivityUpdated(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSUserActivity) -M:UIKit.UIApplicationDelegate_Extensions.UserDidAcceptCloudKitShare(UIKit.IUIApplicationDelegate,UIKit.UIApplication,CloudKit.CKShareMetadata) -M:UIKit.UIApplicationDelegate_Extensions.WillChangeStatusBarFrame(UIKit.IUIApplicationDelegate,UIKit.UIApplication,CoreGraphics.CGRect) -M:UIKit.UIApplicationDelegate_Extensions.WillChangeStatusBarOrientation(UIKit.IUIApplicationDelegate,UIKit.UIApplication,UIKit.UIInterfaceOrientation,System.Double) -M:UIKit.UIApplicationDelegate_Extensions.WillContinueUserActivity(UIKit.IUIApplicationDelegate,UIKit.UIApplication,System.String) -M:UIKit.UIApplicationDelegate_Extensions.WillEncodeRestorableState(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSCoder) -M:UIKit.UIApplicationDelegate_Extensions.WillEnterForeground(UIKit.IUIApplicationDelegate,UIKit.UIApplication) -M:UIKit.UIApplicationDelegate_Extensions.WillFinishLaunching(UIKit.IUIApplicationDelegate,UIKit.UIApplication,Foundation.NSDictionary) -M:UIKit.UIApplicationDelegate_Extensions.WillTerminate(UIKit.IUIApplicationDelegate,UIKit.UIApplication) M:UIKit.UIApplicationShortcutIcon.Copy(Foundation.NSZone) M:UIKit.UIApplicationShortcutItem.Copy(Foundation.NSZone) M:UIKit.UIApplicationShortcutItem.MutableCopy(Foundation.NSZone) @@ -22678,7 +20765,6 @@ 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.UIBarPositioningDelegate_Extensions.GetPositionForBar(UIKit.IUIBarPositioningDelegate,UIKit.IUIBarPositioning) 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) @@ -22709,10 +20795,6 @@ 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.UICloudSharingControllerDelegate_Extensions.DidSaveShare(UIKit.IUICloudSharingControllerDelegate,UIKit.UICloudSharingController) -M:UIKit.UICloudSharingControllerDelegate_Extensions.DidStopSharing(UIKit.IUICloudSharingControllerDelegate,UIKit.UICloudSharingController) -M:UIKit.UICloudSharingControllerDelegate_Extensions.GetItemThumbnailData(UIKit.IUICloudSharingControllerDelegate,UIKit.UICloudSharingController) -M:UIKit.UICloudSharingControllerDelegate_Extensions.GetItemType(UIKit.IUICloudSharingControllerDelegate,UIKit.UICloudSharingController) M:UIKit.UICollectionLayoutListConfiguration.Copy(Foundation.NSZone) M:UIKit.UICollectionLayoutListConfiguration.Dispose(System.Boolean) M:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties.Copy(Foundation.NSZone) @@ -22722,51 +20804,23 @@ 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.CanMoveItem(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewDataSource_Extensions.GetIndexPath(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,System.String,System.IntPtr) -M:UIKit.UICollectionViewDataSource_Extensions.GetIndexTitles(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView) -M:UIKit.UICollectionViewDataSource_Extensions.GetViewForSupplementaryElement(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,Foundation.NSString,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDataSource_Extensions.MoveItem(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDataSource_Extensions.NumberOfSections(UIKit.IUICollectionViewDataSource,UIKit.UICollectionView) -M:UIKit.UICollectionViewDataSourcePrefetching_Extensions.CancelPrefetching(UIKit.IUICollectionViewDataSourcePrefetching,UIKit.UICollectionView,Foundation.NSIndexPath[]) M:UIKit.UICollectionViewDelegate_Extensions.CanEditItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.CanFocusItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.CanPerformAction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) M:UIKit.UICollectionViewDelegate_Extensions.CanPerformPrimaryActionForItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.CellDisplayingEnded(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath) M:UIKit.UICollectionViewDelegate_Extensions.DidBeginMultipleSelectionInteraction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewDelegate_Extensions.DidEndMultipleSelectionInteraction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView) -M:UIKit.UICollectionViewDelegate_Extensions.DidUpdateFocus(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) M:UIKit.UICollectionViewDelegate_Extensions.GetContextMenuConfiguration(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint) M:UIKit.UICollectionViewDelegate_Extensions.GetContextMenuConfiguration(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath[],CoreGraphics.CGPoint) M:UIKit.UICollectionViewDelegate_Extensions.GetContextMenuConfigurationDismissalPreview(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath) M:UIKit.UICollectionViewDelegate_Extensions.GetContextMenuConfigurationHighlightPreview(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.GetIndexPathForPreferredFocusedView(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView) M:UIKit.UICollectionViewDelegate_Extensions.GetPreviewForDismissingContextMenu(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration) M:UIKit.UICollectionViewDelegate_Extensions.GetPreviewForHighlightingContextMenu(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration) M:UIKit.UICollectionViewDelegate_Extensions.GetSceneActivationConfigurationForItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath,CoreGraphics.CGPoint) M:UIKit.UICollectionViewDelegate_Extensions.GetSelectionFollowsFocusForItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.GetTargetContentOffset(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,CoreGraphics.CGPoint) -M:UIKit.UICollectionViewDelegate_Extensions.GetTargetIndexPathForMove(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath) M:UIKit.UICollectionViewDelegate_Extensions.GetTargetIndexPathForMoveOfItemFromOriginalIndexPath(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath,Foundation.NSIndexPath,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ItemDeselected(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ItemHighlighted(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ItemSelected(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ItemUnhighlighted(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.PerformAction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) M:UIKit.UICollectionViewDelegate_Extensions.PerformPrimaryActionForItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewDelegate_Extensions.ShouldBeginMultipleSelectionInteraction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ShouldDeselectItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ShouldHighlightItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ShouldSelectItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ShouldShowMenu(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.ShouldSpringLoadItem(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext) -M:UIKit.UICollectionViewDelegate_Extensions.ShouldUpdateFocus(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UICollectionViewFocusUpdateContext) -M:UIKit.UICollectionViewDelegate_Extensions.SupplementaryViewDisplayingEnded(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UICollectionReusableView,Foundation.NSString,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDelegate_Extensions.TransitionLayout(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UICollectionViewLayout,UIKit.UICollectionViewLayout) -M:UIKit.UICollectionViewDelegate_Extensions.WillDisplayCell(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UICollectionViewCell,Foundation.NSIndexPath) M:UIKit.UICollectionViewDelegate_Extensions.WillDisplayContextMenu(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) -M:UIKit.UICollectionViewDelegate_Extensions.WillDisplaySupplementaryView(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UICollectionReusableView,System.String,Foundation.NSIndexPath) M:UIKit.UICollectionViewDelegate_Extensions.WillEndContextMenuInteraction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) M:UIKit.UICollectionViewDelegate_Extensions.WillPerformPreviewAction(UIKit.IUICollectionViewDelegate,UIKit.UICollectionView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating) M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetInsetForSection(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr) @@ -22774,23 +20828,10 @@ M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetMinimumInteritemSpacing M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetMinimumLineSpacingForSection(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr) M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetReferenceSizeForFooter(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr) M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetReferenceSizeForHeader(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,System.IntPtr) -M:UIKit.UICollectionViewDelegateFlowLayout_Extensions.GetSizeForItem(UIKit.IUICollectionViewDelegateFlowLayout,UIKit.UICollectionView,UIKit.UICollectionViewLayout,Foundation.NSIndexPath) M:UIKit.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.UICollectionViewDragDelegate_Extensions.DragSessionAllowsMoveOperation(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession) -M:UIKit.UICollectionViewDragDelegate_Extensions.DragSessionDidEnd(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession) -M:UIKit.UICollectionViewDragDelegate_Extensions.DragSessionIsRestrictedToDraggingApplication(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession) -M:UIKit.UICollectionViewDragDelegate_Extensions.DragSessionWillBegin(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession) -M:UIKit.UICollectionViewDragDelegate_Extensions.GetDragPreviewParameters(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDragDelegate_Extensions.GetItemsForAddingToDragSession(UIKit.IUICollectionViewDragDelegate,UIKit.UICollectionView,UIKit.IUIDragSession,Foundation.NSIndexPath,CoreGraphics.CGPoint) -M:UIKit.UICollectionViewDropDelegate_Extensions.CanHandleDropSession(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession) -M:UIKit.UICollectionViewDropDelegate_Extensions.DropSessionDidEnd(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession) -M:UIKit.UICollectionViewDropDelegate_Extensions.DropSessionDidEnter(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession) -M:UIKit.UICollectionViewDropDelegate_Extensions.DropSessionDidExit(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession) -M:UIKit.UICollectionViewDropDelegate_Extensions.DropSessionDidUpdate(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,UIKit.IUIDropSession,Foundation.NSIndexPath) -M:UIKit.UICollectionViewDropDelegate_Extensions.GetDropPreviewParameters(UIKit.IUICollectionViewDropDelegate,UIKit.UICollectionView,Foundation.NSIndexPath) M:UIKit.UICollectionViewLayoutAttributes.Copy(Foundation.NSZone) M:UIKit.UICollectionViewListCell.UICollectionViewListCellAppearance.#ctor(System.IntPtr) M:UIKit.UICollectionViewSupplementaryRegistration.GetRegistration(System.Type,System.String,UIKit.UICollectionViewSupplementaryRegistrationConfigurationHandler) @@ -22804,15 +20845,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.UICollisionBehaviorDelegate_Extensions.BeganBoundaryContact(UIKit.IUICollisionBehaviorDelegate,UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,Foundation.NSObject,CoreGraphics.CGPoint) -M:UIKit.UICollisionBehaviorDelegate_Extensions.BeganContact(UIKit.IUICollisionBehaviorDelegate,UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,UIKit.IUIDynamicItem,CoreGraphics.CGPoint) -M:UIKit.UICollisionBehaviorDelegate_Extensions.EndedBoundaryContact(UIKit.IUICollisionBehaviorDelegate,UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,Foundation.NSObject) -M:UIKit.UICollisionBehaviorDelegate_Extensions.EndedContact(UIKit.IUICollisionBehaviorDelegate,UIKit.UICollisionBehavior,UIKit.IUIDynamicItem,UIKit.IUIDynamicItem) M:UIKit.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.GetItemProviderVisibilityForTypeIdentifier(System.String) 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@) @@ -22877,38 +20913,14 @@ 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.AccommodatePresentedItemDeletion(System.Action{Foundation.NSError}) M:UIKit.UIDocument.AccommodatePresentedItemEviction(System.Action{Foundation.NSError}) -M:UIKit.UIDocument.AccommodatePresentedSubitemDeletion(Foundation.NSUrl,System.Action{Foundation.NSError}) M:UIKit.UIDocument.AutoSaveAsync M:UIKit.UIDocument.CloseAsync M:UIKit.UIDocument.OpenAsync M:UIKit.UIDocument.PerformAsynchronousFileAccessAsync -M:UIKit.UIDocument.PresentedItemChanged -M:UIKit.UIDocument.PresentedItemChangedUbiquityAttributes(Foundation.NSSet{Foundation.NSString}) -M:UIKit.UIDocument.PresentedItemGainedVersion(Foundation.NSFileVersion) -M:UIKit.UIDocument.PresentedItemLostVersion(Foundation.NSFileVersion) -M:UIKit.UIDocument.PresentedItemMoved(Foundation.NSUrl) -M:UIKit.UIDocument.PresentedItemResolveConflictVersion(Foundation.NSFileVersion) -M:UIKit.UIDocument.PresentedSubitemAppeared(Foundation.NSUrl) -M:UIKit.UIDocument.PresentedSubitemChanged(Foundation.NSUrl) -M:UIKit.UIDocument.PresentedSubitemGainedVersion(Foundation.NSUrl,Foundation.NSFileVersion) -M:UIKit.UIDocument.PresentedSubitemLostVersion(Foundation.NSUrl,Foundation.NSFileVersion) -M:UIKit.UIDocument.PresentedSubitemMoved(Foundation.NSUrl,Foundation.NSUrl) -M:UIKit.UIDocument.PresentedSubitemResolvedConflictVersion(Foundation.NSUrl,Foundation.NSFileVersion) -M:UIKit.UIDocument.RelinquishPresentedItemToReader(Foundation.NSFilePresenterReacquirer) -M:UIKit.UIDocument.RelinquishPresentedItemToWriter(Foundation.NSFilePresenterReacquirer) -M:UIKit.UIDocument.SavePresentedItemChanges(System.Action{Foundation.NSError}) M:UIKit.UIDocumentBrowserTransitionController.Dispose(System.Boolean) M:UIKit.UIDocumentBrowserViewController.Dispose(System.Boolean) M:UIKit.UIDocumentBrowserViewController.RenameDocumentAsync(Foundation.NSUrl,System.String) -M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.DidImportDocument(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl,Foundation.NSUrl) -M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.DidPickDocumentsAtUrls(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[]) -M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.DidPickDocumentUrls(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[]) -M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.DidRequestDocumentCreation(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,System.Action{Foundation.NSUrl,UIKit.UIDocumentBrowserImportMode}) -M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.FailedToImportDocument(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl,Foundation.NSError) -M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.GetApplicationActivities(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,Foundation.NSUrl[]) -M:UIKit.UIDocumentBrowserViewControllerDelegate_Extensions.WillPresent(UIKit.IUIDocumentBrowserViewControllerDelegate,UIKit.UIDocumentBrowserViewController,UIKit.UIActivityViewController) M:UIKit.UIDocumentInteractionController.add_DidDismissOpenInMenu(System.EventHandler) M:UIKit.UIDocumentInteractionController.add_DidDismissOptionsMenu(System.EventHandler) M:UIKit.UIDocumentInteractionController.add_DidEndPreview(System.EventHandler) @@ -22926,19 +20938,6 @@ 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.UIDocumentInteractionControllerDelegate_Extensions.CanPerformAction(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController,ObjCRuntime.Selector) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.DidDismissOpenInMenu(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.DidDismissOptionsMenu(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.DidEndPreview(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.DidEndSendingToApplication(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController,System.String) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.PerformAction(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController,ObjCRuntime.Selector) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.RectangleForPreview(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.ViewControllerForPreview(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.ViewForPreview(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.WillBeginPreview(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.WillBeginSendingToApplication(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController,System.String) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.WillPresentOpenInMenu(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) -M:UIKit.UIDocumentInteractionControllerDelegate_Extensions.WillPresentOptionsMenu(UIKit.IUIDocumentInteractionControllerDelegate,UIKit.UIDocumentInteractionController) M:UIKit.UIDocumentMenuDelegate_Extensions.WasCancelled(UIKit.IUIDocumentMenuDelegate,UIKit.UIDocumentMenuViewController) M:UIKit.UIDocumentMenuViewController.add_DidPickDocumentPicker(System.EventHandler{UIKit.UIDocumentMenuDocumentPickedEventArgs}) M:UIKit.UIDocumentMenuViewController.add_WasCancelled(System.EventHandler) @@ -22946,8 +20945,6 @@ 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.UIDocumentPickerDelegate_Extensions.DidPickDocument(UIKit.IUIDocumentPickerDelegate,UIKit.UIDocumentPickerViewController,Foundation.NSUrl[]) -M:UIKit.UIDocumentPickerDelegate_Extensions.WasCancelled(UIKit.IUIDocumentPickerDelegate,UIKit.UIDocumentPickerViewController) 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) @@ -22957,34 +20954,10 @@ 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.UIDragInteractionDelegate_Extensions.GetItemsForAddingToSession(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession,CoreGraphics.CGPoint) -M:UIKit.UIDragInteractionDelegate_Extensions.GetPreviewForCancellingItem(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview) -M:UIKit.UIDragInteractionDelegate_Extensions.GetPreviewForLiftingItem(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragSession) -M:UIKit.UIDragInteractionDelegate_Extensions.GetSessionForAddingItems(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession[],CoreGraphics.CGPoint) -M:UIKit.UIDragInteractionDelegate_Extensions.PrefersFullSizePreviews(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.UIDragInteractionDelegate_Extensions.SessionAllowsMoveOperation(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.UIDragInteractionDelegate_Extensions.SessionDidEnd(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDropOperation) -M:UIKit.UIDragInteractionDelegate_Extensions.SessionDidMove(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.UIDragInteractionDelegate_Extensions.SessionDidTransferItems(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.UIDragInteractionDelegate_Extensions.SessionIsRestrictedToDraggingApplication(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.UIDragInteractionDelegate_Extensions.SessionWillBegin(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession) -M:UIKit.UIDragInteractionDelegate_Extensions.SessionWillEnd(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDropOperation) -M:UIKit.UIDragInteractionDelegate_Extensions.WillAddItems(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragSession,UIKit.UIDragItem[],UIKit.UIDragInteraction) -M:UIKit.UIDragInteractionDelegate_Extensions.WillAnimateCancel(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating) -M:UIKit.UIDragInteractionDelegate_Extensions.WillAnimateLift(UIKit.IUIDragInteractionDelegate,UIKit.UIDragInteraction,UIKit.IUIDragAnimating,UIKit.IUIDragSession) M:UIKit.UIDragPreview.Copy(Foundation.NSZone) M:UIKit.UIDragPreviewParameters.Copy(Foundation.NSZone) M:UIKit.UIDragPreviewTarget.Copy(Foundation.NSZone) M:UIKit.UIDropInteraction.Dispose(System.Boolean) -M:UIKit.UIDropInteractionDelegate_Extensions.CanHandleSession(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.UIDropInteractionDelegate_Extensions.ConcludeDrop(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.UIDropInteractionDelegate_Extensions.GetPreviewForDroppingItem(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.UITargetedDragPreview) -M:UIKit.UIDropInteractionDelegate_Extensions.PerformDrop(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.UIDropInteractionDelegate_Extensions.SessionDidEnd(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.UIDropInteractionDelegate_Extensions.SessionDidEnter(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.UIDropInteractionDelegate_Extensions.SessionDidExit(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.UIDropInteractionDelegate_Extensions.SessionDidUpdate(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.IUIDropSession) -M:UIKit.UIDropInteractionDelegate_Extensions.WillAnimateDrop(UIKit.IUIDropInteractionDelegate,UIKit.UIDropInteraction,UIKit.UIDragItem,UIKit.IUIDragAnimating) M:UIKit.UIDropProposal.Copy(Foundation.NSZone) M:UIKit.UIDynamicAnimator.Dispose(System.Boolean) M:UIKit.UIDynamicAnimatorDelegate_Extensions.DidPause(UIKit.IUIDynamicAnimatorDelegate,UIKit.UIDynamicAnimator) @@ -23014,7 +20987,6 @@ M:UIKit.UIFocusEnvironment_Extensions.GetPreferredFocusedView(UIKit.IUIFocusEnvi M:UIKit.UIFocusEnvironment_Extensions.GetSoundIdentifier(UIKit.IUIFocusEnvironment,UIKit.UIFocusUpdateContext) M:UIKit.UIFocusGuide.Dispose(System.Boolean) M:UIKit.UIFocusHaloEffect.Dispose(System.Boolean) -M:UIKit.UIFocusItem_Extensions.DidHintFocusMovement(UIKit.IUIFocusItem,UIKit.UIFocusMovementHint) M:UIKit.UIFocusItem_Extensions.GetFocusEffect(UIKit.IUIFocusItem) M:UIKit.UIFocusItem_Extensions.GetFocusGroupPriority(UIKit.IUIFocusItem) M:UIKit.UIFocusItem_Extensions.GetFocusItemDeferralMode(UIKit.IUIFocusItem) @@ -23046,17 +21018,10 @@ M:UIKit.UIFontPickerViewControllerDelegate_Extensions.DidCancel(UIKit.IUIFontPic M:UIKit.UIFontPickerViewControllerDelegate_Extensions.DidPickFont(UIKit.IUIFontPickerViewControllerDelegate,UIKit.UIFontPickerViewController) M:UIKit.UIFontWeightExtensions.GetWeight(UIKit.UIFontWeight) M:UIKit.UIGestureRecognizer.Dispose(System.Boolean) -M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldBegin(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer) -M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldBeRequiredToFailBy(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldReceiveEvent(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIEvent) -M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldReceivePress(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIPress) -M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldReceiveTouch(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UITouch) -M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldRecognizeSimultaneously(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) -M:UIKit.UIGestureRecognizerDelegate_Extensions.ShouldRequireFailureOf(UIKit.IUIGestureRecognizerDelegate,UIKit.UIGestureRecognizer,UIKit.UIGestureRecognizer) M:UIKit.UIGraphics.BeginImageContextWithOptions(CoreGraphics.CGSize,System.Boolean,System.Runtime.InteropServices.NFloat) M:UIKit.UIGraphics.EndPDFContext M:UIKit.UIGraphicsRendererFormat.Copy(Foundation.NSZone) -M:UIKit.UIGuidedAccessRestrictionDelegate_Extensions.GetDetailTextForGuidedAccessRestriction(UIKit.IUIGuidedAccessRestrictionDelegate,System.String) M:UIKit.UIHoverAutomaticEffect.Copy(Foundation.NSZone) M:UIKit.UIHoverGestureRecognizer.#ctor(System.Action) M:UIKit.UIHoverGestureRecognizer.#ctor(System.Action{UIKit.UIHoverGestureRecognizer}) @@ -23064,7 +21029,6 @@ 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.GetItemProviderVisibilityForTypeIdentifier(System.String) 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) @@ -23077,8 +21041,6 @@ M:UIKit.UIImagePickerController.add_FinishedPickingMedia(System.EventHandler{UIK M:UIKit.UIImagePickerController.Dispose(System.Boolean) M:UIKit.UIImagePickerController.remove_Canceled(System.EventHandler) M:UIKit.UIImagePickerController.remove_FinishedPickingMedia(System.EventHandler{UIKit.UIImagePickerMediaPickedEventArgs}) -M:UIKit.UIImagePickerControllerDelegate_Extensions.Canceled(UIKit.IUIImagePickerControllerDelegate,UIKit.UIImagePickerController) -M:UIKit.UIImagePickerControllerDelegate_Extensions.FinishedPickingMedia(UIKit.IUIImagePickerControllerDelegate,UIKit.UIImagePickerController,Foundation.NSDictionary) M:UIKit.UIImageReader.GetImageAsync(Foundation.NSData) M:UIKit.UIImageReader.GetImageAsync(Foundation.NSUrl) M:UIKit.UIImageReaderConfiguration.Copy(Foundation.NSZone) @@ -23126,18 +21088,8 @@ M:UIKit.UINavigationBar.UINavigationBarAppearance.GetTitleVerticalPositionAdjust M:UIKit.UINavigationBar.UINavigationBarAppearance.SetBackgroundImage(UIKit.UIImage,UIKit.UIBarMetrics) M:UIKit.UINavigationBar.UINavigationBarAppearance.SetBackgroundImage(UIKit.UIImage,UIKit.UIBarPosition,UIKit.UIBarMetrics) M:UIKit.UINavigationBar.UINavigationBarAppearance.SetTitleVerticalPositionAdjustment(System.Runtime.InteropServices.NFloat,UIKit.UIBarMetrics) -M:UIKit.UINavigationBarDelegate_Extensions.DidPopItem(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar,UIKit.UINavigationItem) -M:UIKit.UINavigationBarDelegate_Extensions.DidPushItem(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar,UIKit.UINavigationItem) M:UIKit.UINavigationBarDelegate_Extensions.GetNSToolbarSection(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar) -M:UIKit.UINavigationBarDelegate_Extensions.ShouldPopItem(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar,UIKit.UINavigationItem) -M:UIKit.UINavigationBarDelegate_Extensions.ShouldPushItem(UIKit.IUINavigationBarDelegate,UIKit.UINavigationBar,UIKit.UINavigationItem) M:UIKit.UINavigationController.Dispose(System.Boolean) -M:UIKit.UINavigationControllerDelegate_Extensions.DidShowViewController(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController,UIKit.UIViewController,System.Boolean) -M:UIKit.UINavigationControllerDelegate_Extensions.GetAnimationControllerForOperation(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController,UIKit.UINavigationControllerOperation,UIKit.UIViewController,UIKit.UIViewController) -M:UIKit.UINavigationControllerDelegate_Extensions.GetInteractionControllerForAnimationController(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController,UIKit.IUIViewControllerAnimatedTransitioning) -M:UIKit.UINavigationControllerDelegate_Extensions.GetPreferredInterfaceOrientation(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController) -M:UIKit.UINavigationControllerDelegate_Extensions.SupportedInterfaceOrientations(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController) -M:UIKit.UINavigationControllerDelegate_Extensions.WillShowViewController(UIKit.IUINavigationControllerDelegate,UIKit.UINavigationController,UIKit.UIViewController,System.Boolean) M:UIKit.UINavigationItem.Dispose(System.Boolean) M:UIKit.UINavigationItemRenameDelegate_Extensions.ShouldBeginRenaming(UIKit.IUINavigationItemRenameDelegate,UIKit.UINavigationItem) M:UIKit.UINavigationItemRenameDelegate_Extensions.ShouldEndRenaming(UIKit.IUINavigationItemRenameDelegate,UIKit.UINavigationItem,System.String) @@ -23157,26 +21109,16 @@ M:UIKit.UIPageViewController.add_WillTransition(System.EventHandler{UIKit.UIPage M:UIKit.UIPageViewController.Dispose(System.Boolean) M:UIKit.UIPageViewController.remove_DidFinishAnimating(System.EventHandler{UIKit.UIPageViewFinishedAnimationEventArgs}) M:UIKit.UIPageViewController.remove_WillTransition(System.EventHandler{UIKit.UIPageViewControllerTransitionEventArgs}) -M:UIKit.UIPageViewControllerDataSource_Extensions.GetPresentationCount(UIKit.IUIPageViewControllerDataSource,UIKit.UIPageViewController) -M:UIKit.UIPageViewControllerDataSource_Extensions.GetPresentationIndex(UIKit.IUIPageViewControllerDataSource,UIKit.UIPageViewController) -M:UIKit.UIPageViewControllerDelegate_Extensions.DidFinishAnimating(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController,System.Boolean,UIKit.UIViewController[],System.Boolean) -M:UIKit.UIPageViewControllerDelegate_Extensions.GetPreferredInterfaceOrientationForPresentation(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController) -M:UIKit.UIPageViewControllerDelegate_Extensions.GetSpineLocation(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController,UIKit.UIInterfaceOrientation) -M:UIKit.UIPageViewControllerDelegate_Extensions.SupportedInterfaceOrientations(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController) -M:UIKit.UIPageViewControllerDelegate_Extensions.WillTransition(UIKit.IUIPageViewControllerDelegate,UIKit.UIPageViewController,UIKit.UIViewController[]) M:UIKit.UIPasteboard.DetectPatternsAsync(Foundation.NSSet{Foundation.NSString},Foundation.NSIndexSet) 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.UIPasteConfigurationSupporting_Extensions.CanPaste(UIKit.IUIPasteConfigurationSupporting,Foundation.NSItemProvider[]) -M:UIKit.UIPasteConfigurationSupporting_Extensions.Paste(UIKit.IUIPasteConfigurationSupporting,Foundation.NSItemProvider[]) M:UIKit.UIPasteControl.Dispose(System.Boolean) M:UIKit.UIPasteControl.UIPasteControlAppearance.#ctor(System.IntPtr) M:UIKit.UIPencilInteraction.Dispose(System.Boolean) M:UIKit.UIPencilInteractionDelegate_Extensions.DidReceiveSqueeze(UIKit.IUIPencilInteractionDelegate,UIKit.UIPencilInteraction,UIKit.UIPencilInteractionSqueeze) M:UIKit.UIPencilInteractionDelegate_Extensions.DidReceiveTap(UIKit.IUIPencilInteractionDelegate,UIKit.UIPencilInteraction,UIKit.UIPencilInteractionTap) -M:UIKit.UIPencilInteractionDelegate_Extensions.DidTap(UIKit.IUIPencilInteractionDelegate,UIKit.UIPencilInteraction) M:UIKit.UIPickerView.Dispose(System.Boolean) M:UIKit.UIPickerView.UIPickerViewAppearance.#ctor(System.IntPtr) M:UIKit.UIPickerViewAccessibilityDelegate_Extensions.GetAccessibilityAttributedHint(UIKit.IUIPickerViewAccessibilityDelegate,UIKit.UIPickerView,System.IntPtr) @@ -23208,9 +21150,6 @@ M:UIKit.UIPopoverController.add_WillReposition(System.EventHandler{UIKit.UIPopov M:UIKit.UIPopoverController.Dispose(System.Boolean) M:UIKit.UIPopoverController.remove_DidDismiss(System.EventHandler) M:UIKit.UIPopoverController.remove_WillReposition(System.EventHandler{UIKit.UIPopoverControllerRepositionEventArgs}) -M:UIKit.UIPopoverControllerDelegate_Extensions.DidDismiss(UIKit.IUIPopoverControllerDelegate,UIKit.UIPopoverController) -M:UIKit.UIPopoverControllerDelegate_Extensions.ShouldDismiss(UIKit.IUIPopoverControllerDelegate,UIKit.UIPopoverController) -M:UIKit.UIPopoverControllerDelegate_Extensions.WillReposition(UIKit.IUIPopoverControllerDelegate,UIKit.UIPopoverController,CoreGraphics.CGRect@,UIKit.UIView@) M:UIKit.UIPopoverPresentationController.add_DidDismiss(System.EventHandler) M:UIKit.UIPopoverPresentationController.add_PrepareForPresentation(System.EventHandler) M:UIKit.UIPopoverPresentationController.add_WillReposition(System.EventHandler{UIKit.UIPopoverPresentationControllerRepositionEventArgs}) @@ -23218,10 +21157,6 @@ M:UIKit.UIPopoverPresentationController.Dispose(System.Boolean) M:UIKit.UIPopoverPresentationController.remove_DidDismiss(System.EventHandler) M:UIKit.UIPopoverPresentationController.remove_PrepareForPresentation(System.EventHandler) M:UIKit.UIPopoverPresentationController.remove_WillReposition(System.EventHandler{UIKit.UIPopoverPresentationControllerRepositionEventArgs}) -M:UIKit.UIPopoverPresentationControllerDelegate_Extensions.DidDismissPopover(UIKit.IUIPopoverPresentationControllerDelegate,UIKit.UIPopoverPresentationController) -M:UIKit.UIPopoverPresentationControllerDelegate_Extensions.PrepareForPopoverPresentation(UIKit.IUIPopoverPresentationControllerDelegate,UIKit.UIPopoverPresentationController) -M:UIKit.UIPopoverPresentationControllerDelegate_Extensions.ShouldDismissPopover(UIKit.IUIPopoverPresentationControllerDelegate,UIKit.UIPopoverPresentationController) -M:UIKit.UIPopoverPresentationControllerDelegate_Extensions.WillRepositionPopover(UIKit.IUIPopoverPresentationControllerDelegate,UIKit.UIPopoverPresentationController,CoreGraphics.CGRect@,UIKit.UIView@) M:UIKit.UIPopoverPresentationControllerSourceItem_Extensions.GetFrame(UIKit.IUIPopoverPresentationControllerSourceItem,UIKit.UIView) M:UIKit.UIPresentationController.Dispose(System.Boolean) M:UIKit.UIPreviewAction.Copy(Foundation.NSZone) @@ -23234,19 +21169,11 @@ M:UIKit.UIPreviewInteraction.remove_DidCancel(System.EventHandler) M:UIKit.UIPreviewInteraction.remove_DidUpdateCommit(System.EventHandler{UIKit.NSPreviewInteractionPreviewUpdateEventArgs}) M:UIKit.UIPreviewInteraction.remove_DidUpdatePreviewTransition(System.EventHandler{UIKit.NSPreviewInteractionPreviewUpdateEventArgs}) M:UIKit.UIPreviewInteractionDelegate_Extensions.DidUpdateCommit(UIKit.IUIPreviewInteractionDelegate,UIKit.UIPreviewInteraction,System.Runtime.InteropServices.NFloat,System.Boolean) -M:UIKit.UIPreviewInteractionDelegate_Extensions.ShouldBegin(UIKit.IUIPreviewInteractionDelegate,UIKit.UIPreviewInteraction) M:UIKit.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.UIPrinterPickerControllerDelegate_Extensions.DidDismiss(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController) -M:UIKit.UIPrinterPickerControllerDelegate_Extensions.DidPresent(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController) -M:UIKit.UIPrinterPickerControllerDelegate_Extensions.DidSelectPrinter(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController) -M:UIKit.UIPrinterPickerControllerDelegate_Extensions.GetParentViewController(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController) -M:UIKit.UIPrinterPickerControllerDelegate_Extensions.ShouldShowPrinter(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController,UIKit.UIPrinter) -M:UIKit.UIPrinterPickerControllerDelegate_Extensions.WillDismiss(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController) -M:UIKit.UIPrinterPickerControllerDelegate_Extensions.WillPresent(UIKit.IUIPrinterPickerControllerDelegate,UIKit.UIPrinterPickerController) M:UIKit.UIPrintFormatter.Copy(Foundation.NSZone) M:UIKit.UIPrintFormatter.Dispose(System.Boolean) M:UIKit.UIPrintInfo.Copy(Foundation.NSZone) @@ -23264,16 +21191,6 @@ M:UIKit.UIPrintInteractionController.remove_DidPresentPrinterOptions(System.Even M:UIKit.UIPrintInteractionController.remove_WillDismissPrinterOptions(System.EventHandler) M:UIKit.UIPrintInteractionController.remove_WillPresentPrinterOptions(System.EventHandler) M:UIKit.UIPrintInteractionController.remove_WillStartJob(System.EventHandler) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.ChooseCutterBehavior(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController,Foundation.NSNumber[]) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.ChoosePaper(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController,UIKit.UIPrintPaper[]) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.CutLengthForPaper(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController,UIKit.UIPrintPaper) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.DidDismissPrinterOptions(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.DidFinishJob(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.DidPresentPrinterOptions(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.GetViewController(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.WillDismissPrinterOptions(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.WillPresentPrinterOptions(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController) -M:UIKit.UIPrintInteractionControllerDelegate_Extensions.WillStartJob(UIKit.IUIPrintInteractionControllerDelegate,UIKit.UIPrintInteractionController) M:UIKit.UIPrintInteractionResult.#ctor(UIKit.UIPrintInteractionController,System.Boolean) M:UIKit.UIProgressView.UIProgressViewAppearance.#ctor(System.IntPtr) M:UIKit.UIRefreshControl.UIRefreshControlAppearance.#ctor(System.IntPtr) @@ -23358,22 +21275,7 @@ M:UIKit.UIScrollView.remove_WillEndDragging(System.EventHandler{UIKit.WillEndDra M:UIKit.UIScrollView.remove_ZoomingEnded(System.EventHandler{UIKit.ZoomingEndedEventArgs}) M:UIKit.UIScrollView.remove_ZoomingStarted(System.EventHandler{UIKit.UIScrollViewZoomingEventArgs}) M:UIKit.UIScrollView.UIScrollViewAppearance.#ctor(System.IntPtr) -M:UIKit.UIScrollViewAccessibilityDelegate_Extensions.GetAccessibilityAttributedScrollStatus(UIKit.IUIScrollViewAccessibilityDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewAccessibilityDelegate_Extensions.GetAccessibilityScrollStatus(UIKit.IUIScrollViewAccessibilityDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.DecelerationEnded(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.DecelerationStarted(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.DidChangeAdjustedContentInset(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.DidZoom(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.DraggingEnded(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView,System.Boolean) -M:UIKit.UIScrollViewDelegate_Extensions.DraggingStarted(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.ScrollAnimationEnded(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.Scrolled(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.ScrolledToTop(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.ShouldScrollToTop(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.ViewForZoomingInScrollView(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView) -M:UIKit.UIScrollViewDelegate_Extensions.WillEndDragging(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView,CoreGraphics.CGPoint,CoreGraphics.CGPoint@) M:UIKit.UIScrollViewDelegate_Extensions.ZoomingEnded(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView,UIKit.UIView,System.Runtime.InteropServices.NFloat) -M:UIKit.UIScrollViewDelegate_Extensions.ZoomingStarted(UIKit.IUIScrollViewDelegate,UIKit.UIScrollView,UIKit.UIView) M:UIKit.UISearchBar.add_BookmarkButtonClicked(System.EventHandler) M:UIKit.UISearchBar.add_CancelButtonClicked(System.EventHandler) M:UIKit.UISearchBar.add_ListButtonClicked(System.EventHandler) @@ -23406,38 +21308,12 @@ M:UIKit.UISearchBar.UISearchBarAppearance.SetScopeBarButtonBackgroundImage(UIKit M:UIKit.UISearchBar.UISearchBarAppearance.SetScopeBarButtonDividerImage(UIKit.UIImage,UIKit.UIControlState,UIKit.UIControlState) M:UIKit.UISearchBar.UISearchBarAppearance.SetScopeBarButtonTitle(UIKit.UIStringAttributes,UIKit.UIControlState) M:UIKit.UISearchBar.UISearchBarAppearance.SetSearchFieldBackgroundImage(UIKit.UIImage,UIKit.UIControlState) -M:UIKit.UISearchBarDelegate_Extensions.BookmarkButtonClicked(UIKit.IUISearchBarDelegate,UIKit.UISearchBar) -M:UIKit.UISearchBarDelegate_Extensions.CancelButtonClicked(UIKit.IUISearchBarDelegate,UIKit.UISearchBar) -M:UIKit.UISearchBarDelegate_Extensions.ListButtonClicked(UIKit.IUISearchBarDelegate,UIKit.UISearchBar) -M:UIKit.UISearchBarDelegate_Extensions.OnEditingStarted(UIKit.IUISearchBarDelegate,UIKit.UISearchBar) -M:UIKit.UISearchBarDelegate_Extensions.OnEditingStopped(UIKit.IUISearchBarDelegate,UIKit.UISearchBar) -M:UIKit.UISearchBarDelegate_Extensions.SearchButtonClicked(UIKit.IUISearchBarDelegate,UIKit.UISearchBar) M:UIKit.UISearchBarDelegate_Extensions.SelectedScopeButtonIndexChanged(UIKit.IUISearchBarDelegate,UIKit.UISearchBar,System.IntPtr) -M:UIKit.UISearchBarDelegate_Extensions.ShouldBeginEditing(UIKit.IUISearchBarDelegate,UIKit.UISearchBar) -M:UIKit.UISearchBarDelegate_Extensions.ShouldChangeTextInRange(UIKit.IUISearchBarDelegate,UIKit.UISearchBar,Foundation.NSRange,System.String) -M:UIKit.UISearchBarDelegate_Extensions.ShouldEndEditing(UIKit.IUISearchBarDelegate,UIKit.UISearchBar) -M:UIKit.UISearchBarDelegate_Extensions.TextChanged(UIKit.IUISearchBarDelegate,UIKit.UISearchBar,System.String) M:UIKit.UISearchController.Dispose(System.Boolean) M:UIKit.UISearchControllerDelegate_Extensions.DidChangeFromSearchBarPlacement(UIKit.IUISearchControllerDelegate,UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement) -M:UIKit.UISearchControllerDelegate_Extensions.DidDismissSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController) -M:UIKit.UISearchControllerDelegate_Extensions.DidPresentSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController) -M:UIKit.UISearchControllerDelegate_Extensions.PresentSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController) M:UIKit.UISearchControllerDelegate_Extensions.WillChangeToSearchBarPlacement(UIKit.IUISearchControllerDelegate,UIKit.UISearchController,UIKit.UINavigationItemSearchBarPlacement) -M:UIKit.UISearchControllerDelegate_Extensions.WillDismissSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController) -M:UIKit.UISearchControllerDelegate_Extensions.WillPresentSearchController(UIKit.IUISearchControllerDelegate,UIKit.UISearchController) M:UIKit.UISearchDisplayController.Dispose(System.Boolean) -M:UIKit.UISearchDisplayDelegate_Extensions.DidBeginSearch(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController) -M:UIKit.UISearchDisplayDelegate_Extensions.DidEndSearch(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController) -M:UIKit.UISearchDisplayDelegate_Extensions.DidHideSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView) -M:UIKit.UISearchDisplayDelegate_Extensions.DidLoadSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView) -M:UIKit.UISearchDisplayDelegate_Extensions.DidShowSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView) M:UIKit.UISearchDisplayDelegate_Extensions.ShouldReloadForSearchScope(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,System.IntPtr) -M:UIKit.UISearchDisplayDelegate_Extensions.ShouldReloadForSearchString(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,System.String) -M:UIKit.UISearchDisplayDelegate_Extensions.WillBeginSearch(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController) -M:UIKit.UISearchDisplayDelegate_Extensions.WillEndSearch(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController) -M:UIKit.UISearchDisplayDelegate_Extensions.WillHideSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView) -M:UIKit.UISearchDisplayDelegate_Extensions.WillShowSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView) -M:UIKit.UISearchDisplayDelegate_Extensions.WillUnloadSearchResults(UIKit.IUISearchDisplayDelegate,UIKit.UISearchDisplayController,UIKit.UITableView) M:UIKit.UISearchResultsUpdating_Extensions.UpdateSearchResults(UIKit.IUISearchResultsUpdating,UIKit.UISearchController,UIKit.IUISearchSuggestion) M:UIKit.UISearchSuggestion_Extensions.GetIconImage(UIKit.IUISearchSuggestion) M:UIKit.UISearchSuggestion_Extensions.GetLocalizedAttributedSuggestion(UIKit.IUISearchSuggestion) @@ -23493,36 +21369,18 @@ M:UIKit.UISplitViewController.remove_WillHideViewController(System.EventHandler{ M:UIKit.UISplitViewController.remove_WillPresentViewController(System.EventHandler{UIKit.UISplitViewPresentEventArgs}) M:UIKit.UISplitViewController.remove_WillShowColumn(System.EventHandler{UIKit.UISplitViewControllerWillShowHideColumnEventArgs}) M:UIKit.UISplitViewController.remove_WillShowViewController(System.EventHandler{UIKit.UISplitViewShowEventArgs}) -M:UIKit.UISplitViewControllerDelegate_Extensions.CollapseSecondViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIViewController) M:UIKit.UISplitViewControllerDelegate_Extensions.DidCollapse(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) M:UIKit.UISplitViewControllerDelegate_Extensions.DidExpand(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) -M:UIKit.UISplitViewControllerDelegate_Extensions.EventShowDetailViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject) -M:UIKit.UISplitViewControllerDelegate_Extensions.EventShowViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController,Foundation.NSObject) M:UIKit.UISplitViewControllerDelegate_Extensions.GetDisplayModeForExpanding(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UISplitViewControllerDisplayMode) -M:UIKit.UISplitViewControllerDelegate_Extensions.GetPreferredInterfaceOrientationForPresentation(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) -M:UIKit.UISplitViewControllerDelegate_Extensions.GetPrimaryViewControllerForCollapsingSplitViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) -M:UIKit.UISplitViewControllerDelegate_Extensions.GetPrimaryViewControllerForExpandingSplitViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) -M:UIKit.UISplitViewControllerDelegate_Extensions.GetTargetDisplayModeForAction(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) M:UIKit.UISplitViewControllerDelegate_Extensions.GetTopColumnForCollapsing(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn) M:UIKit.UISplitViewControllerDelegate_Extensions.InteractivePresentationGestureDidEnd(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) M:UIKit.UISplitViewControllerDelegate_Extensions.InteractivePresentationGestureWillBegin(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) -M:UIKit.UISplitViewControllerDelegate_Extensions.SeparateSecondaryViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController) -M:UIKit.UISplitViewControllerDelegate_Extensions.ShouldHideViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIInterfaceOrientation) -M:UIKit.UISplitViewControllerDelegate_Extensions.SupportedInterfaceOrientations(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController) -M:UIKit.UISplitViewControllerDelegate_Extensions.WillChangeDisplayMode(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UISplitViewControllerDisplayMode) M:UIKit.UISplitViewControllerDelegate_Extensions.WillHideColumn(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn) -M:UIKit.UISplitViewControllerDelegate_Extensions.WillHideViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIBarButtonItem,UIKit.UIPopoverController) -M:UIKit.UISplitViewControllerDelegate_Extensions.WillPresentViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIPopoverController,UIKit.UIViewController) M:UIKit.UISplitViewControllerDelegate_Extensions.WillShowColumn(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UISplitViewControllerColumn) -M:UIKit.UISplitViewControllerDelegate_Extensions.WillShowViewController(UIKit.IUISplitViewControllerDelegate,UIKit.UISplitViewController,UIKit.UIViewController,UIKit.UIBarButtonItem) M:UIKit.UISpringLoadedInteraction.Dispose(System.Boolean) -M:UIKit.UISpringLoadedInteractionBehavior_Extensions.InteractionDidFinish(UIKit.IUISpringLoadedInteractionBehavior,UIKit.UISpringLoadedInteraction) M:UIKit.UISpringTimingParameters.Copy(Foundation.NSZone) M:UIKit.UIStackView.UIStackViewAppearance.#ctor(System.IntPtr) M:UIKit.UIStandardTextCursorView.UIStandardTextCursorViewAppearance.#ctor(System.IntPtr) -M:UIKit.UIStateRestoring_Extensions.ApplicationFinishedRestoringState(UIKit.IUIStateRestoring) -M:UIKit.UIStateRestoring_Extensions.DecodeRestorableState(UIKit.IUIStateRestoring,Foundation.NSCoder) -M:UIKit.UIStateRestoring_Extensions.EncodeRestorableState(UIKit.IUIStateRestoring,Foundation.NSCoder) M:UIKit.UIStateRestoring_Extensions.GetObjectRestorationClass(UIKit.IUIStateRestoring) M:UIKit.UIStateRestoring_Extensions.GetRestorationParent(UIKit.IUIStateRestoring) M:UIKit.UIStepper.UIStepperAppearance.#ctor(System.IntPtr) @@ -23590,107 +21448,44 @@ M:UIKit.UITabBarControllerDelegate_Extensions.AcceptItemsFromDropSession(UIKit.I M:UIKit.UITabBarControllerDelegate_Extensions.DidBeginEditing(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController) M:UIKit.UITabBarControllerDelegate_Extensions.DidSelectTab(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITab,UIKit.UITab) M:UIKit.UITabBarControllerDelegate_Extensions.DisplayOrderDidChangeForGroup(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITabGroup) -M:UIKit.UITabBarControllerDelegate_Extensions.FinishedCustomizingViewControllers(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController[],System.Boolean) -M:UIKit.UITabBarControllerDelegate_Extensions.GetAnimationControllerForTransition(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController,UIKit.UIViewController) M:UIKit.UITabBarControllerDelegate_Extensions.GetDisplayedViewControllers(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITab,UIKit.UIViewController[]) -M:UIKit.UITabBarControllerDelegate_Extensions.GetInteractionControllerForAnimationController(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.IUIViewControllerAnimatedTransitioning) M:UIKit.UITabBarControllerDelegate_Extensions.GetOperationForAcceptingItemsFromDropSession(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITab,UIKit.IUIDropSession) -M:UIKit.UITabBarControllerDelegate_Extensions.GetPreferredInterfaceOrientation(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController) -M:UIKit.UITabBarControllerDelegate_Extensions.OnCustomizingViewControllers(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController[]) -M:UIKit.UITabBarControllerDelegate_Extensions.OnEndCustomizingViewControllers(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController[],System.Boolean) M:UIKit.UITabBarControllerDelegate_Extensions.ShouldSelectTab(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITab) -M:UIKit.UITabBarControllerDelegate_Extensions.ShouldSelectViewController(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController) -M:UIKit.UITabBarControllerDelegate_Extensions.SupportedInterfaceOrientations(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController) -M:UIKit.UITabBarControllerDelegate_Extensions.ViewControllerSelected(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UIViewController) M:UIKit.UITabBarControllerDelegate_Extensions.VisibilityDidChangeForTabs(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController,UIKit.UITab[]) M:UIKit.UITabBarControllerDelegate_Extensions.WillBeginEditing(UIKit.IUITabBarControllerDelegate,UIKit.UITabBarController) M:UIKit.UITabBarControllerSidebar.Dispose(System.Boolean) -M:UIKit.UITabBarDelegate_Extensions.DidBeginCustomizingItems(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem[]) -M:UIKit.UITabBarDelegate_Extensions.DidEndCustomizingItems(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean) -M:UIKit.UITabBarDelegate_Extensions.ItemSelected(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem) -M:UIKit.UITabBarDelegate_Extensions.WillBeginCustomizingItems(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem[]) -M:UIKit.UITabBarDelegate_Extensions.WillEndCustomizingItems(UIKit.IUITabBarDelegate,UIKit.UITabBar,UIKit.UITabBarItem[],System.Boolean) M:UIKit.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) -M:UIKit.UITableViewDataSource_Extensions.CanEditRow(UIKit.IUITableViewDataSource,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDataSource_Extensions.CanMoveRow(UIKit.IUITableViewDataSource,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDataSource_Extensions.CommitEditingStyle(UIKit.IUITableViewDataSource,UIKit.UITableView,UIKit.UITableViewCellEditingStyle,Foundation.NSIndexPath) -M:UIKit.UITableViewDataSource_Extensions.MoveRow(UIKit.IUITableViewDataSource,UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath) -M:UIKit.UITableViewDataSource_Extensions.NumberOfSections(UIKit.IUITableViewDataSource,UIKit.UITableView) M:UIKit.UITableViewDataSource_Extensions.SectionFor(UIKit.IUITableViewDataSource,UIKit.UITableView,System.String,System.IntPtr) -M:UIKit.UITableViewDataSource_Extensions.SectionIndexTitles(UIKit.IUITableViewDataSource,UIKit.UITableView) M:UIKit.UITableViewDataSource_Extensions.TitleForFooter(UIKit.IUITableViewDataSource,UIKit.UITableView,System.IntPtr) M:UIKit.UITableViewDataSource_Extensions.TitleForHeader(UIKit.IUITableViewDataSource,UIKit.UITableView,System.IntPtr) -M:UIKit.UITableViewDataSourcePrefetching_Extensions.CancelPrefetching(UIKit.IUITableViewDataSourcePrefetching,UIKit.UITableView,Foundation.NSIndexPath[]) -M:UIKit.UITableViewDelegate_Extensions.AccessoryButtonTapped(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.CanFocusRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.CanPerformAction(UIKit.IUITableViewDelegate,UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) M:UIKit.UITableViewDelegate_Extensions.CanPerformPrimaryAction(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.CellDisplayingEnded(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.CustomizeMoveTarget(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath,Foundation.NSIndexPath) M:UIKit.UITableViewDelegate_Extensions.DidBeginMultipleSelectionInteraction(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.DidEndEditing(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDelegate_Extensions.DidEndMultipleSelectionInteraction(UIKit.IUITableViewDelegate,UIKit.UITableView) -M:UIKit.UITableViewDelegate_Extensions.DidUpdateFocus(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UITableViewFocusUpdateContext,UIKit.UIFocusAnimationCoordinator) -M:UIKit.UITableViewDelegate_Extensions.EditActionsForRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.EditingStyleForRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.EstimatedHeight(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDelegate_Extensions.EstimatedHeightForFooter(UIKit.IUITableViewDelegate,UIKit.UITableView,System.IntPtr) M:UIKit.UITableViewDelegate_Extensions.EstimatedHeightForHeader(UIKit.IUITableViewDelegate,UIKit.UITableView,System.IntPtr) M:UIKit.UITableViewDelegate_Extensions.FooterViewDisplayingEnded(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIView,System.IntPtr) M:UIKit.UITableViewDelegate_Extensions.GetContextMenuConfiguration(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath,CoreGraphics.CGPoint) M:UIKit.UITableViewDelegate_Extensions.GetHeightForFooter(UIKit.IUITableViewDelegate,UIKit.UITableView,System.IntPtr) M:UIKit.UITableViewDelegate_Extensions.GetHeightForHeader(UIKit.IUITableViewDelegate,UIKit.UITableView,System.IntPtr) -M:UIKit.UITableViewDelegate_Extensions.GetHeightForRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.GetIndexPathForPreferredFocusedView(UIKit.IUITableViewDelegate,UIKit.UITableView) -M:UIKit.UITableViewDelegate_Extensions.GetLeadingSwipeActionsConfiguration(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDelegate_Extensions.GetPreviewForDismissingContextMenu(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIContextMenuConfiguration) M:UIKit.UITableViewDelegate_Extensions.GetPreviewForHighlightingContextMenu(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIContextMenuConfiguration) M:UIKit.UITableViewDelegate_Extensions.GetSelectionFollowsFocusForRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.GetTrailingSwipeActionsConfiguration(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDelegate_Extensions.GetViewForFooter(UIKit.IUITableViewDelegate,UIKit.UITableView,System.IntPtr) M:UIKit.UITableViewDelegate_Extensions.GetViewForHeader(UIKit.IUITableViewDelegate,UIKit.UITableView,System.IntPtr) M:UIKit.UITableViewDelegate_Extensions.HeaderViewDisplayingEnded(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIView,System.IntPtr) -M:UIKit.UITableViewDelegate_Extensions.IndentationLevel(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.PerformAction(UIKit.IUITableViewDelegate,UIKit.UITableView,ObjCRuntime.Selector,Foundation.NSIndexPath,Foundation.NSObject) M:UIKit.UITableViewDelegate_Extensions.PerformPrimaryAction(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.RowDeselected(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.RowHighlighted(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.RowSelected(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.RowUnhighlighted(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDelegate_Extensions.ShouldBeginMultipleSelectionInteraction(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.ShouldHighlightRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.ShouldIndentWhileEditing(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.ShouldShowMenu(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.ShouldSpringLoadRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath,UIKit.IUISpringLoadedInteractionContext) -M:UIKit.UITableViewDelegate_Extensions.ShouldUpdateFocus(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UITableViewFocusUpdateContext) -M:UIKit.UITableViewDelegate_Extensions.TitleForDeleteConfirmation(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.WillBeginEditing(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.WillDeselectRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDelegate_Extensions.WillDisplay(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UITableViewCell,Foundation.NSIndexPath) M:UIKit.UITableViewDelegate_Extensions.WillDisplayContextMenu(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) M:UIKit.UITableViewDelegate_Extensions.WillDisplayFooterView(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIView,System.IntPtr) M:UIKit.UITableViewDelegate_Extensions.WillDisplayHeaderView(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIView,System.IntPtr) M:UIKit.UITableViewDelegate_Extensions.WillEndContextMenuInteraction(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionAnimating) M:UIKit.UITableViewDelegate_Extensions.WillPerformPreviewAction(UIKit.IUITableViewDelegate,UIKit.UITableView,UIKit.UIContextMenuConfiguration,UIKit.IUIContextMenuInteractionCommitAnimating) -M:UIKit.UITableViewDelegate_Extensions.WillSelectRow(UIKit.IUITableViewDelegate,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1},System.Boolean) M:UIKit.UITableViewDiffableDataSource`2.ApplySnapshotUsingReloadDataAsync(UIKit.NSDiffableDataSourceSnapshot{`0,`1}) -M:UIKit.UITableViewDragDelegate_Extensions.DragSessionAllowsMoveOperation(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession) -M:UIKit.UITableViewDragDelegate_Extensions.DragSessionDidEnd(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession) -M:UIKit.UITableViewDragDelegate_Extensions.DragSessionIsRestrictedToDraggingApplication(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession) -M:UIKit.UITableViewDragDelegate_Extensions.DragSessionWillBegin(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession) -M:UIKit.UITableViewDragDelegate_Extensions.GetDragPreviewParameters(UIKit.IUITableViewDragDelegate,UIKit.UITableView,Foundation.NSIndexPath) -M:UIKit.UITableViewDragDelegate_Extensions.GetItemsForAddingToDragSession(UIKit.IUITableViewDragDelegate,UIKit.UITableView,UIKit.IUIDragSession,Foundation.NSIndexPath,CoreGraphics.CGPoint) -M:UIKit.UITableViewDropDelegate_Extensions.CanHandleDropSession(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession) -M:UIKit.UITableViewDropDelegate_Extensions.DropSessionDidEnd(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession) -M:UIKit.UITableViewDropDelegate_Extensions.DropSessionDidEnter(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession) -M:UIKit.UITableViewDropDelegate_Extensions.DropSessionDidExit(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession) -M:UIKit.UITableViewDropDelegate_Extensions.DropSessionDidUpdate(UIKit.IUITableViewDropDelegate,UIKit.UITableView,UIKit.IUIDropSession,Foundation.NSIndexPath) -M:UIKit.UITableViewDropDelegate_Extensions.GetDropPreviewParameters(UIKit.IUITableViewDropDelegate,UIKit.UITableView,Foundation.NSIndexPath) M:UIKit.UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance.#ctor(System.IntPtr) M:UIKit.UITableViewRowAction.Copy(Foundation.NSZone) M:UIKit.UITabSidebarItem.Copy(Foundation.NSZone) @@ -23699,19 +21494,6 @@ 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.UITextDragDelegate_Extensions.DragSessionDidEnd(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.IUIDragSession,UIKit.UIDropOperation) -M:UIKit.UITextDragDelegate_Extensions.DragSessionWillBegin(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.IUIDragSession) -M:UIKit.UITextDragDelegate_Extensions.GetItemsForDrag(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.IUITextDragRequest) -M:UIKit.UITextDragDelegate_Extensions.GetPreviewForLiftingItem(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.UIDragItem,UIKit.IUIDragSession) -M:UIKit.UITextDragDelegate_Extensions.WillAnimateLift(UIKit.IUITextDragDelegate,UIKit.IUITextDraggable,UIKit.IUIDragAnimating,UIKit.IUIDragSession) -M:UIKit.UITextDropDelegate_Extensions.DropSessionDidEnd(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUIDropSession) -M:UIKit.UITextDropDelegate_Extensions.DropSessionDidEnter(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUIDropSession) -M:UIKit.UITextDropDelegate_Extensions.DropSessionDidExit(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUIDropSession) -M:UIKit.UITextDropDelegate_Extensions.DropSessionDidUpdate(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUIDropSession) -M:UIKit.UITextDropDelegate_Extensions.GetPreviewForDroppingAllItems(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.UITargetedDragPreview) -M:UIKit.UITextDropDelegate_Extensions.GetProposalForDrop(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUITextDropRequest) -M:UIKit.UITextDropDelegate_Extensions.WillBecomeEditable(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUITextDropRequest) -M:UIKit.UITextDropDelegate_Extensions.WillPerformDrop(UIKit.IUITextDropDelegate,UIKit.IUITextDroppable,UIKit.IUITextDropRequest) M:UIKit.UITextDropProposal.Copy(Foundation.NSZone) M:UIKit.UITextField.add_Ended(System.EventHandler) M:UIKit.UITextField.add_EndedWithReason(System.EventHandler{UIKit.UITextFieldEditingEndedEventArgs}) @@ -23722,16 +21504,8 @@ M:UIKit.UITextField.remove_EndedWithReason(System.EventHandler{UIKit.UITextField M:UIKit.UITextField.remove_Started(System.EventHandler) M:UIKit.UITextField.UITextFieldAppearance.#ctor(System.IntPtr) M:UIKit.UITextFieldDelegate_Extensions.DidChangeSelection(UIKit.IUITextFieldDelegate,UIKit.UITextField) -M:UIKit.UITextFieldDelegate_Extensions.EditingEnded(UIKit.IUITextFieldDelegate,UIKit.UITextField,UIKit.UITextFieldDidEndEditingReason) -M:UIKit.UITextFieldDelegate_Extensions.EditingEnded(UIKit.IUITextFieldDelegate,UIKit.UITextField) -M:UIKit.UITextFieldDelegate_Extensions.EditingStarted(UIKit.IUITextFieldDelegate,UIKit.UITextField) M:UIKit.UITextFieldDelegate_Extensions.GetEditMenu(UIKit.IUITextFieldDelegate,UIKit.UITextField,Foundation.NSRange,UIKit.UIMenuElement[]) M:UIKit.UITextFieldDelegate_Extensions.InsertInputSuggestion(UIKit.IUITextFieldDelegate,UIKit.UITextField,UIKit.UIInputSuggestion) -M:UIKit.UITextFieldDelegate_Extensions.ShouldBeginEditing(UIKit.IUITextFieldDelegate,UIKit.UITextField) -M:UIKit.UITextFieldDelegate_Extensions.ShouldChangeCharacters(UIKit.IUITextFieldDelegate,UIKit.UITextField,Foundation.NSRange,System.String) -M:UIKit.UITextFieldDelegate_Extensions.ShouldClear(UIKit.IUITextFieldDelegate,UIKit.UITextField) -M:UIKit.UITextFieldDelegate_Extensions.ShouldEndEditing(UIKit.IUITextFieldDelegate,UIKit.UITextField) -M:UIKit.UITextFieldDelegate_Extensions.ShouldReturn(UIKit.IUITextFieldDelegate,UIKit.UITextField) M:UIKit.UITextFieldDelegate_Extensions.WillDismissEditMenu(UIKit.IUITextFieldDelegate,UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating) M:UIKit.UITextFieldDelegate_Extensions.WillPresentEditMenu(UIKit.IUITextFieldDelegate,UIKit.UITextField,UIKit.IUIEditMenuInteractionAnimating) M:UIKit.UITextFormattingCoordinator.Dispose(System.Boolean) @@ -23747,37 +21521,25 @@ 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}) -M:UIKit.UITextInput_Extensions.BeginFloatingCursor(UIKit.IUITextInput,CoreGraphics.CGPoint) -M:UIKit.UITextInput_Extensions.DictationRecognitionFailed(UIKit.IUITextInput) -M:UIKit.UITextInput_Extensions.DictationRecordingDidEnd(UIKit.IUITextInput) M:UIKit.UITextInput_Extensions.DidDismissWritingTools(UIKit.IUITextInput) -M:UIKit.UITextInput_Extensions.EndFloatingCursor(UIKit.IUITextInput) M:UIKit.UITextInput_Extensions.GetAttributedText(UIKit.IUITextInput,UIKit.UITextRange) M:UIKit.UITextInput_Extensions.GetCaretTransform(UIKit.IUITextInput,UIKit.UITextPosition) -M:UIKit.UITextInput_Extensions.GetCharacterOffsetOfPosition(UIKit.IUITextInput,UIKit.UITextPosition,UIKit.UITextRange) M:UIKit.UITextInput_Extensions.GetEditable(UIKit.IUITextInput) M:UIKit.UITextInput_Extensions.GetEditMenu(UIKit.IUITextInput,UIKit.UITextRange,UIKit.UIMenuElement[]) -M:UIKit.UITextInput_Extensions.GetFrameForDictationResultPlaceholder(UIKit.IUITextInput,Foundation.NSObject) M:UIKit.UITextInput_Extensions.GetPosition(UIKit.IUITextInput,UIKit.UITextRange,System.IntPtr) M:UIKit.UITextInput_Extensions.GetSelectionAffinity(UIKit.IUITextInput) M:UIKit.UITextInput_Extensions.GetSupportsAdaptiveImageGlyph(UIKit.IUITextInput) M:UIKit.UITextInput_Extensions.GetTextInputView(UIKit.IUITextInput) -M:UIKit.UITextInput_Extensions.GetTextStyling(UIKit.IUITextInput,UIKit.UITextPosition,UIKit.UITextStorageDirection) M:UIKit.UITextInput_Extensions.InsertAdaptiveImageGlyph(UIKit.IUITextInput,UIKit.NSAdaptiveImageGlyph,UIKit.UITextRange) M:UIKit.UITextInput_Extensions.InsertAttributedText(UIKit.IUITextInput,Foundation.NSAttributedString) -M:UIKit.UITextInput_Extensions.InsertDictationResult(UIKit.IUITextInput,Foundation.NSArray) -M:UIKit.UITextInput_Extensions.InsertDictationResultPlaceholder(UIKit.IUITextInput) M:UIKit.UITextInput_Extensions.InsertInputSuggestion(UIKit.IUITextInput,UIKit.UIInputSuggestion) M:UIKit.UITextInput_Extensions.InsertText(UIKit.IUITextInput,System.String,System.String[],UIKit.UITextAlternativeStyle) M:UIKit.UITextInput_Extensions.InsertTextPlaceholder(UIKit.IUITextInput,CoreGraphics.CGSize) -M:UIKit.UITextInput_Extensions.RemoveDictationResultPlaceholder(UIKit.IUITextInput,Foundation.NSObject,System.Boolean) M:UIKit.UITextInput_Extensions.RemoveTextPlaceholder(UIKit.IUITextInput,UIKit.UITextPlaceholder) M:UIKit.UITextInput_Extensions.ReplaceRange(UIKit.IUITextInput,UIKit.UITextRange,Foundation.NSAttributedString) M:UIKit.UITextInput_Extensions.SetAttributedMarkedText(UIKit.IUITextInput,Foundation.NSAttributedString,Foundation.NSRange) M:UIKit.UITextInput_Extensions.SetSelectionAffinity(UIKit.IUITextInput,UIKit.UITextStorageDirection) M:UIKit.UITextInput_Extensions.SetSupportsAdaptiveImageGlyph(UIKit.IUITextInput,System.Boolean) -M:UIKit.UITextInput_Extensions.ShouldChangeTextInRange(UIKit.IUITextInput,UIKit.UITextRange,System.String) -M:UIKit.UITextInput_Extensions.UpdateFloatingCursor(UIKit.IUITextInput,CoreGraphics.CGPoint) 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) @@ -23822,10 +21584,6 @@ M:UIKit.UITextInteraction.Dispose(System.Boolean) M:UIKit.UITextInteractionDelegate_Extensions.DidEnd(UIKit.IUITextInteractionDelegate,UIKit.UITextInteraction) M:UIKit.UITextInteractionDelegate_Extensions.ShouldBegin(UIKit.IUITextInteractionDelegate,UIKit.UITextInteraction,CoreGraphics.CGPoint) M:UIKit.UITextInteractionDelegate_Extensions.WillBegin(UIKit.IUITextInteractionDelegate,UIKit.UITextInteraction) -M:UIKit.UITextPasteDelegate_Extensions.CombineItemAttributedStrings(UIKit.IUITextPasteDelegate,UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString[],UIKit.UITextRange) -M:UIKit.UITextPasteDelegate_Extensions.PerformPaste(UIKit.IUITextPasteDelegate,UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString,UIKit.UITextRange) -M:UIKit.UITextPasteDelegate_Extensions.ShouldAnimatePaste(UIKit.IUITextPasteDelegate,UIKit.IUITextPasteConfigurationSupporting,Foundation.NSAttributedString,UIKit.UITextRange) -M:UIKit.UITextPasteDelegate_Extensions.TransformPasteItem(UIKit.IUITextPasteDelegate,UIKit.IUITextPasteConfigurationSupporting,UIKit.IUITextPasteItem) M:UIKit.UITextSearching_Extensions.CompareOrder(UIKit.IUITextSearching,Foundation.INSCopying,Foundation.INSCopying) M:UIKit.UITextSearching_Extensions.GetSelectedTextSearchDocument(UIKit.IUITextSearching) M:UIKit.UITextSearching_Extensions.GetSupportsTextReplacement(UIKit.IUITextSearching) @@ -23859,24 +21617,13 @@ M:UIKit.UITextView.remove_WillEndFormatting(System.EventHandler{UIKit.UITextView M:UIKit.UITextView.remove_WritingToolsDidEnd(System.EventHandler) M:UIKit.UITextView.remove_WritingToolsWillBegin(System.EventHandler) M:UIKit.UITextView.UITextViewAppearance.#ctor(System.IntPtr) -M:UIKit.UITextViewDelegate_Extensions.Changed(UIKit.IUITextViewDelegate,UIKit.UITextView) M:UIKit.UITextViewDelegate_Extensions.DidBeginFormatting(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UITextFormattingViewController) M:UIKit.UITextViewDelegate_Extensions.DidEndFormatting(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UITextFormattingViewController) -M:UIKit.UITextViewDelegate_Extensions.EditingEnded(UIKit.IUITextViewDelegate,UIKit.UITextView) -M:UIKit.UITextViewDelegate_Extensions.EditingStarted(UIKit.IUITextViewDelegate,UIKit.UITextView) M:UIKit.UITextViewDelegate_Extensions.GetEditMenuForText(UIKit.IUITextViewDelegate,UIKit.UITextView,Foundation.NSRange,UIKit.UIMenuElement[]) M:UIKit.UITextViewDelegate_Extensions.GetMenuConfiguration(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UITextItem,UIKit.UIMenu) M:UIKit.UITextViewDelegate_Extensions.GetPrimaryAction(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UITextItem,UIKit.UIAction) M:UIKit.UITextViewDelegate_Extensions.GetWritingToolsIgnoredRangesInEnclosingRange(UIKit.IUITextViewDelegate,UIKit.UITextView,Foundation.NSRange) M:UIKit.UITextViewDelegate_Extensions.InsertInputSuggestion(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UIInputSuggestion) -M:UIKit.UITextViewDelegate_Extensions.SelectionChanged(UIKit.IUITextViewDelegate,UIKit.UITextView) -M:UIKit.UITextViewDelegate_Extensions.ShouldBeginEditing(UIKit.IUITextViewDelegate,UIKit.UITextView) -M:UIKit.UITextViewDelegate_Extensions.ShouldChangeText(UIKit.IUITextViewDelegate,UIKit.UITextView,Foundation.NSRange,System.String) -M:UIKit.UITextViewDelegate_Extensions.ShouldEndEditing(UIKit.IUITextViewDelegate,UIKit.UITextView) -M:UIKit.UITextViewDelegate_Extensions.ShouldInteractWithTextAttachment(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange,UIKit.UITextItemInteraction) -M:UIKit.UITextViewDelegate_Extensions.ShouldInteractWithTextAttachment(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.NSTextAttachment,Foundation.NSRange) -M:UIKit.UITextViewDelegate_Extensions.ShouldInteractWithUrl(UIKit.IUITextViewDelegate,UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange,UIKit.UITextItemInteraction) -M:UIKit.UITextViewDelegate_Extensions.ShouldInteractWithUrl(UIKit.IUITextViewDelegate,UIKit.UITextView,Foundation.NSUrl,Foundation.NSRange) M:UIKit.UITextViewDelegate_Extensions.WillBeginFormatting(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UITextFormattingViewController) M:UIKit.UITextViewDelegate_Extensions.WillDismissEditMenu(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.IUIEditMenuInteractionAnimating) M:UIKit.UITextViewDelegate_Extensions.WillDisplay(UIKit.IUITextViewDelegate,UIKit.UITextView,UIKit.UITextItem,UIKit.IUIContextMenuInteractionAnimating) @@ -23912,9 +21659,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.UIVideoEditorControllerDelegate_Extensions.Failed(UIKit.IUIVideoEditorControllerDelegate,UIKit.UIVideoEditorController,Foundation.NSError) -M:UIKit.UIVideoEditorControllerDelegate_Extensions.UserCancelled(UIKit.IUIVideoEditorControllerDelegate,UIKit.UIVideoEditorController) -M:UIKit.UIVideoEditorControllerDelegate_Extensions.VideoSaved(UIKit.IUIVideoEditorControllerDelegate,UIKit.UIVideoEditorController,System.String) M:UIKit.UIView_UITextField.EndEditing(UIKit.UIView,System.Boolean) M:UIKit.UIView.add_AnimationWillEnd(System.Action) M:UIKit.UIView.add_AnimationWillStart(System.Action) @@ -23927,19 +21671,10 @@ 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.UIViewControllerAnimatedTransitioning_Extensions.AnimationEnded(UIKit.IUIViewControllerAnimatedTransitioning,System.Boolean) -M:UIKit.UIViewControllerAnimatedTransitioning_Extensions.GetInterruptibleAnimator(UIKit.IUIViewControllerAnimatedTransitioning,UIKit.IUIViewControllerContextTransitioning) M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetCompletionCurve(UIKit.IUIViewControllerInteractiveTransitioning) M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetCompletionSpeed(UIKit.IUIViewControllerInteractiveTransitioning) M:UIKit.UIViewControllerInteractiveTransitioning_Extensions.GetWantsInteractiveStart(UIKit.IUIViewControllerInteractiveTransitioning) -M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetAnimationControllerForDismissedController(UIKit.IUIViewControllerTransitioningDelegate,UIKit.UIViewController) -M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetAnimationControllerForPresentedController(UIKit.IUIViewControllerTransitioningDelegate,UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController) -M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetInteractionControllerForDismissal(UIKit.IUIViewControllerTransitioningDelegate,UIKit.IUIViewControllerAnimatedTransitioning) -M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetInteractionControllerForPresentation(UIKit.IUIViewControllerTransitioningDelegate,UIKit.IUIViewControllerAnimatedTransitioning) -M:UIKit.UIViewControllerTransitioningDelegate_Extensions.GetPresentationControllerForPresentedViewController(UIKit.IUIViewControllerTransitioningDelegate,UIKit.UIViewController,UIKit.UIViewController,UIKit.UIViewController) M:UIKit.UIViewImplicitlyAnimating_Extensions.AddAnimations(UIKit.IUIViewImplicitlyAnimating,System.Action,System.Runtime.InteropServices.NFloat) -M:UIKit.UIViewImplicitlyAnimating_Extensions.AddAnimations(UIKit.IUIViewImplicitlyAnimating,System.Action) -M:UIKit.UIViewImplicitlyAnimating_Extensions.AddCompletion(UIKit.IUIViewImplicitlyAnimating,System.Action{UIKit.UIViewAnimatingPosition}) M:UIKit.UIViewImplicitlyAnimating_Extensions.ContinueAnimation(UIKit.IUIViewImplicitlyAnimating,UIKit.IUITimingCurveProvider,System.Runtime.InteropServices.NFloat) M:UIKit.UIViewPropertyAnimator.Copy(Foundation.NSZone) M:UIKit.UIVisualEffect.Copy(Foundation.NSZone) @@ -24016,21 +21751,15 @@ 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.IUNNotificationContentExtension.DidReceiveNotificationResponse(UserNotifications.UNNotificationResponse,System.Action{UserNotificationsUI.UNNotificationContentExtensionResponseOption}) -M:UserNotificationsUI.IUNNotificationContentExtension.PauseMedia -M:UserNotificationsUI.IUNNotificationContentExtension.PlayMedia 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.DidReceiveNotificationResponse(UserNotificationsUI.IUNNotificationContentExtension,UserNotifications.UNNotificationResponse,System.Action{UserNotificationsUI.UNNotificationContentExtensionResponseOption}) M:UserNotificationsUI.UNNotificationContentExtension_Extensions.GetMediaPlayPauseButtonFrame(UserNotificationsUI.IUNNotificationContentExtension) M:UserNotificationsUI.UNNotificationContentExtension_Extensions.GetMediaPlayPauseButtonTintColor(UserNotificationsUI.IUNNotificationContentExtension) M:UserNotificationsUI.UNNotificationContentExtension_Extensions.GetMediaPlayPauseButtonType(UserNotificationsUI.IUNNotificationContentExtension) -M:UserNotificationsUI.UNNotificationContentExtension_Extensions.PauseMedia(UserNotificationsUI.IUNNotificationContentExtension) -M:UserNotificationsUI.UNNotificationContentExtension_Extensions.PlayMedia(UserNotificationsUI.IUNNotificationContentExtension) M:VideoSubscriberAccount.VSAccountApplicationProvider.#ctor(System.String,System.String) M:VideoSubscriberAccount.VSAccountManager.Dispose(System.Boolean) M:VideoSubscriberAccount.VSAppleSubscription.#ctor(System.String,System.String[]) @@ -24238,39 +21967,21 @@ M:WebKit.IWKDownloadDelegate.DidReceiveAuthenticationChallenge(WebKit.WKDownload M:WebKit.IWKDownloadDelegate.DidReceiveFinalUrl(WebKit.WKDownload,Foundation.NSUrl) M:WebKit.IWKDownloadDelegate.DidReceivePlaceholderUrl(WebKit.WKDownload,Foundation.NSUrl,System.Action) M:WebKit.IWKDownloadDelegate.WillPerformHttpRedirection(WebKit.WKDownload,Foundation.NSHttpUrlResponse,Foundation.NSUrlRequest,System.Action{WebKit.WKDownloadRedirectPolicy}) -M:WebKit.IWKHttpCookieStoreObserver.CookiesDidChangeInCookieStore(WebKit.WKHttpCookieStore) -M:WebKit.IWKNavigationDelegate.ContentProcessDidTerminate(WebKit.WKWebView) -M:WebKit.IWKNavigationDelegate.DecidePolicy(WebKit.WKWebView,WebKit.WKNavigationAction,System.Action{WebKit.WKNavigationActionPolicy}) M:WebKit.IWKNavigationDelegate.DecidePolicy(WebKit.WKWebView,WebKit.WKNavigationAction,WebKit.WKWebpagePreferences,System.Action{WebKit.WKNavigationActionPolicy,WebKit.WKWebpagePreferences}) -M:WebKit.IWKNavigationDelegate.DecidePolicy(WebKit.WKWebView,WebKit.WKNavigationResponse,System.Action{WebKit.WKNavigationResponsePolicy}) -M:WebKit.IWKNavigationDelegate.DidCommitNavigation(WebKit.WKWebView,WebKit.WKNavigation) -M:WebKit.IWKNavigationDelegate.DidFailNavigation(WebKit.WKWebView,WebKit.WKNavigation,Foundation.NSError) -M:WebKit.IWKNavigationDelegate.DidFailProvisionalNavigation(WebKit.WKWebView,WebKit.WKNavigation,Foundation.NSError) -M:WebKit.IWKNavigationDelegate.DidFinishNavigation(WebKit.WKWebView,WebKit.WKNavigation) -M:WebKit.IWKNavigationDelegate.DidReceiveAuthenticationChallenge(WebKit.WKWebView,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential}) -M:WebKit.IWKNavigationDelegate.DidReceiveServerRedirectForProvisionalNavigation(WebKit.WKWebView,WebKit.WKNavigation) -M:WebKit.IWKNavigationDelegate.DidStartProvisionalNavigation(WebKit.WKWebView,WebKit.WKNavigation) M:WebKit.IWKNavigationDelegate.NavigationActionDidBecomeDownload(WebKit.WKWebView,WebKit.WKNavigationAction,WebKit.WKDownload) 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.CommitPreviewingViewController(WebKit.WKWebView,UIKit.UIViewController) M:WebKit.IWKUIDelegate.ContextMenuDidEnd(WebKit.WKWebView,WebKit.WKContextMenuElementInfo) M:WebKit.IWKUIDelegate.ContextMenuWillPresent(WebKit.WKWebView,WebKit.WKContextMenuElementInfo) -M:WebKit.IWKUIDelegate.CreateWebView(WebKit.WKWebView,WebKit.WKWebViewConfiguration,WebKit.WKNavigationAction,WebKit.WKWindowFeatures) -M:WebKit.IWKUIDelegate.DidClose(WebKit.WKWebView) -M:WebKit.IWKUIDelegate.GetPreviewingViewController(WebKit.WKWebView,WebKit.WKPreviewElementInfo,WebKit.IWKPreviewActionItem[]) M:WebKit.IWKUIDelegate.RequestDeviceOrientationAndMotionPermission(WebKit.WKWebView,WebKit.WKSecurityOrigin,WebKit.WKFrameInfo,System.Action{WebKit.WKPermissionDecision}) 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.RunJavaScriptAlertPanel(WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action) -M:WebKit.IWKUIDelegate.RunJavaScriptConfirmPanel(WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action{System.Boolean}) M:WebKit.IWKUIDelegate.RunOpenPanel(WebKit.WKWebView,WebKit.WKOpenPanelParameters,WebKit.WKFrameInfo,System.Action{Foundation.NSUrl[]}) M:WebKit.IWKUIDelegate.SetContextMenuConfiguration(WebKit.WKWebView,WebKit.WKContextMenuElementInfo,System.Action{UIKit.UIContextMenuConfiguration}) -M:WebKit.IWKUIDelegate.ShouldPreviewElement(WebKit.WKWebView,WebKit.WKPreviewElementInfo) 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) @@ -24549,18 +22260,7 @@ M:WebKit.WKFrameInfo.Dispose(System.Boolean) M:WebKit.WKHttpCookieStore.GetAllCookiesAsync M:WebKit.WKHttpCookieStore.GetCookiePolicyAsync M:WebKit.WKHttpCookieStore.SetCookiePolicyAsync(WebKit.WKCookiePolicy) -M:WebKit.WKHttpCookieStoreObserver_Extensions.CookiesDidChangeInCookieStore(WebKit.IWKHttpCookieStoreObserver,WebKit.WKHttpCookieStore) -M:WebKit.WKNavigationDelegate_Extensions.ContentProcessDidTerminate(WebKit.IWKNavigationDelegate,WebKit.WKWebView) -M:WebKit.WKNavigationDelegate_Extensions.DecidePolicy(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigationAction,System.Action{WebKit.WKNavigationActionPolicy}) M:WebKit.WKNavigationDelegate_Extensions.DecidePolicy(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigationAction,WebKit.WKWebpagePreferences,System.Action{WebKit.WKNavigationActionPolicy,WebKit.WKWebpagePreferences}) -M:WebKit.WKNavigationDelegate_Extensions.DecidePolicy(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigationResponse,System.Action{WebKit.WKNavigationResponsePolicy}) -M:WebKit.WKNavigationDelegate_Extensions.DidCommitNavigation(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigation) -M:WebKit.WKNavigationDelegate_Extensions.DidFailNavigation(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigation,Foundation.NSError) -M:WebKit.WKNavigationDelegate_Extensions.DidFailProvisionalNavigation(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigation,Foundation.NSError) -M:WebKit.WKNavigationDelegate_Extensions.DidFinishNavigation(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigation) -M:WebKit.WKNavigationDelegate_Extensions.DidReceiveAuthenticationChallenge(WebKit.IWKNavigationDelegate,WebKit.WKWebView,Foundation.NSUrlAuthenticationChallenge,System.Action{Foundation.NSUrlSessionAuthChallengeDisposition,Foundation.NSUrlCredential}) -M:WebKit.WKNavigationDelegate_Extensions.DidReceiveServerRedirectForProvisionalNavigation(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigation) -M:WebKit.WKNavigationDelegate_Extensions.DidStartProvisionalNavigation(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigation) M:WebKit.WKNavigationDelegate_Extensions.NavigationActionDidBecomeDownload(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigationAction,WebKit.WKDownload) M:WebKit.WKNavigationDelegate_Extensions.NavigationResponseDidBecomeDownload(WebKit.IWKNavigationDelegate,WebKit.WKWebView,WebKit.WKNavigationResponse,WebKit.WKDownload) M:WebKit.WKNavigationDelegate_Extensions.ShouldAllowDeprecatedTls(WebKit.IWKNavigationDelegate,WebKit.WKWebView,Foundation.NSUrlAuthenticationChallenge,System.Action{System.Boolean}) @@ -24570,21 +22270,14 @@ 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.CommitPreviewingViewController(WebKit.IWKUIDelegate,WebKit.WKWebView,UIKit.UIViewController) 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.CreateWebView(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKWebViewConfiguration,WebKit.WKNavigationAction,WebKit.WKWindowFeatures) -M:WebKit.WKUIDelegate_Extensions.DidClose(WebKit.IWKUIDelegate,WebKit.WKWebView) -M:WebKit.WKUIDelegate_Extensions.GetPreviewingViewController(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKPreviewElementInfo,WebKit.IWKPreviewActionItem[]) 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.RunJavaScriptAlertPanel(WebKit.IWKUIDelegate,WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action) -M:WebKit.WKUIDelegate_Extensions.RunJavaScriptConfirmPanel(WebKit.IWKUIDelegate,WebKit.WKWebView,System.String,WebKit.WKFrameInfo,System.Action{System.Boolean}) M:WebKit.WKUIDelegate_Extensions.RunOpenPanel(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKOpenPanelParameters,WebKit.WKFrameInfo,System.Action{Foundation.NSUrl[]}) M:WebKit.WKUIDelegate_Extensions.SetContextMenuConfiguration(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKContextMenuElementInfo,System.Action{UIKit.UIContextMenuConfiguration}) -M:WebKit.WKUIDelegate_Extensions.ShouldPreviewElement(WebKit.IWKUIDelegate,WebKit.WKWebView,WebKit.WKPreviewElementInfo) 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) @@ -29448,7 +27141,6 @@ P:Foundation.NSStream.Item(Foundation.NSString) P:Foundation.NSStreamEventArgs.StreamEvent P:Foundation.NSString.IsAbsolutePath P:Foundation.NSString.Item(System.IntPtr) -P:Foundation.NSStringDrawingContext.MinimumTrackingAdjustment P:Foundation.NSThread.ThreadWillExitNotification P:Foundation.NSThread.WillBecomeMultiThreadedNotification P:Foundation.NSTimeZone.SystemTimeZoneDidChangeNotification