SKCloudServiceSetupViewController.Load 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.
Overloads
Load(NSDictionary, Action<Boolean,NSError>) |
Loads a setup view with the specified |
Load(SKCloudServiceSetupOptions, Action<Boolean,NSError>) |
Loads a setup view with the specified |
Load(NSDictionary, Action<Boolean,NSError>)
Loads a setup view with the specified options
and runs a handler when the view is loaded.
[Foundation.Export("loadWithOptions:completionHandler:")]
public virtual void Load (Foundation.NSDictionary options, Action<bool,Foundation.NSError> completionHandler);
abstract member Load : Foundation.NSDictionary * Action<bool, Foundation.NSError> -> unit
override this.Load : Foundation.NSDictionary * Action<bool, Foundation.NSError> -> unit
Parameters
- options
- NSDictionary
A dictionary of setup options.
A handler to run after the load operation completes
This parameter can be null
.
- Attributes
Applies to
Load(SKCloudServiceSetupOptions, Action<Boolean,NSError>)
Loads a setup view with the specified options
and runs a handler when the view is loaded.
public void Load (StoreKit.SKCloudServiceSetupOptions options, Action<bool,Foundation.NSError> completionHandler);
member this.Load : StoreKit.SKCloudServiceSetupOptions * Action<bool, Foundation.NSError> -> unit
Parameters
- options
- SKCloudServiceSetupOptions
Setup options object.
A handler to run after the load operation completes
This parameter can be null
.