WKWebView.TakeSnapshot Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
TakeSnapshot(WKSnapshotConfiguration, Action<NSImage,NSError>) | |
TakeSnapshot(WKSnapshotConfiguration, Action<UIImage,NSError>) |
Toma una instantánea de la ventanilla actual y ejecuta un controlador que toma la imagen resultante y se detecta cualquier error. |
TakeSnapshot(WKSnapshotConfiguration, Action<NSImage,NSError>)
[Foundation.Export("takeSnapshotWithConfiguration:completionHandler:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 13, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void TakeSnapshot (WebKit.WKSnapshotConfiguration snapshotConfiguration, Action<AppKit.NSImage,Foundation.NSError> completionHandler);
abstract member TakeSnapshot : WebKit.WKSnapshotConfiguration * Action<AppKit.NSImage, Foundation.NSError> -> unit
override this.TakeSnapshot : WebKit.WKSnapshotConfiguration * Action<AppKit.NSImage, Foundation.NSError> -> unit
Parámetros
- snapshotConfiguration
- WKSnapshotConfiguration
- Atributos
Se aplica a
TakeSnapshot(WKSnapshotConfiguration, Action<UIImage,NSError>)
Toma una instantánea de la ventanilla actual y ejecuta un controlador que toma la imagen resultante y se detecta cualquier error.
[Foundation.Export("takeSnapshotWithConfiguration:completionHandler:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void TakeSnapshot (WebKit.WKSnapshotConfiguration snapshotConfiguration, Action<UIKit.UIImage,Foundation.NSError> completionHandler);
abstract member TakeSnapshot : WebKit.WKSnapshotConfiguration * Action<UIKit.UIImage, Foundation.NSError> -> unit
override this.TakeSnapshot : WebKit.WKSnapshotConfiguration * Action<UIKit.UIImage, Foundation.NSError> -> unit
Parámetros
- snapshotConfiguration
- WKSnapshotConfiguration
Configuración de instantánea que se va a usar.
Este parámetro puede ser null
.
Controlador de finalización que recibe la imagen (o null
si se produjo un error) y el error (o null
si no se produjo ningún error).
- Atributos