Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add getFileProviderConnectionWithCompletionHandler signature to start… #18533

Merged
merged 3 commits into from Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/foundation.cs
Expand Up @@ -15446,6 +15446,10 @@ partial interface NSFileManager {
interface NSFileProviderService {
[Export ("name")]
string Name { get; }

[Async]
[Export ("getFileProviderConnectionWithCompletionHandler:")]
void GetFileProviderConnection (Action<NSXpcConnection, NSError> completionHandler);
}

#if MONOMAC
Expand Down
Expand Up @@ -115,7 +115,6 @@
!missing-selector! NSCreateCommand::resolvedKeyDictionary not bound
!missing-selector! NSDeleteCommand::keySpecifier not bound
!missing-selector! NSDeleteCommand::setReceiversSpecifier: not bound
!missing-selector! NSFileProviderService::getFileProviderConnectionWithCompletionHandler: not bound
!missing-selector! NSIndexSpecifier::index not bound
!missing-selector! NSIndexSpecifier::initWithContainerClassDescription:containerSpecifier:key:index: not bound
!missing-selector! NSIndexSpecifier::setIndex: not bound
Expand Down
@@ -1,4 +1,3 @@
!missing-selector! NSFileProviderService::getFileProviderConnectionWithCompletionHandler: not bound

!missing-protocol-conformance! NSXPCConnection should conform to NSXPCProxyCreating
!missing-selector! NSXPCInterface::interfaceForSelector:argumentIndex:ofReply: not bound
Expand Down
Expand Up @@ -153,7 +153,6 @@
!missing-selector! NSDeleteCommand::keySpecifier not bound
!missing-selector! NSDeleteCommand::setReceiversSpecifier: not bound
!missing-selector! NSDirectoryEnumerator::level not bound
!missing-selector! NSFileProviderService::getFileProviderConnectionWithCompletionHandler: not bound
!missing-selector! NSIndexSpecifier::index not bound
!missing-selector! NSIndexSpecifier::initWithContainerClassDescription:containerSpecifier:key:index: not bound
!missing-selector! NSIndexSpecifier::setIndex: not bound
Expand Down
1 change: 0 additions & 1 deletion tests/xtro-sharpie/iOS-Foundation.ignore
@@ -1,4 +1,3 @@
!missing-selector! NSFileProviderService::getFileProviderConnectionWithCompletionHandler: not bound

!missing-protocol-conformance! NSXPCConnection should conform to NSXPCProxyCreating
!missing-selector! NSXPCInterface::interfaceForSelector:argumentIndex:ofReply: not bound
Expand Down
1 change: 0 additions & 1 deletion tests/xtro-sharpie/macOS-Foundation.ignore
Expand Up @@ -160,7 +160,6 @@
!missing-selector! NSDeleteCommand::keySpecifier not bound
!missing-selector! NSDeleteCommand::setReceiversSpecifier: not bound
!missing-selector! NSDirectoryEnumerator::level not bound
!missing-selector! NSFileProviderService::getFileProviderConnectionWithCompletionHandler: not bound
!missing-selector! NSIndexSpecifier::index not bound
!missing-selector! NSIndexSpecifier::initWithContainerClassDescription:containerSpecifier:key:index: not bound
!missing-selector! NSIndexSpecifier::setIndex: not bound
Expand Down