NSExtensionRequestHandling.BeginRequestWithExtensionContext Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Developers can implement this method to prepare their extension for the host application request.
[Foundation.Export("beginRequestWithExtensionContext:")]
public abstract void BeginRequestWithExtensionContext (Foundation.NSExtensionContext context);
abstract member BeginRequestWithExtensionContext : Foundation.NSExtensionContext -> unit
Parameters
- context
- NSExtensionContext
The T:Monotouch.Foundation.NSExtensionContext containing extension-relevant data.
Implements
- Attributes
Remarks
Developers who implement this method must call base.BeginRequestWithExtensionContext(context)
within their implementation.