NativeActivityContext.CreateBookmark Método
Definição
Cria um ponto no qual uma NativeActivity pode esperar passivamente para ser retomada.Creates a point at which a NativeActivity can passively wait to be resumed.
Sobrecargas
| CreateBookmark(String, BookmarkCallback, BookmarkScope, BookmarkOptions) |
Cria o ponto no qual um NativeActivity passivamente pode esperar para ser retomado com o nome especificado, o método especificado a ser executada quando a notificação de operação de retomada for concluído, o escopo especificado do indicador e a opção especificado que rege como o indicador é usado durante a execução da atual NativeActivity.Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, the specified scope of the bookmark, and the specified option that governs how the bookmark is used during the execution of the current NativeActivity. |
| CreateBookmark(String, BookmarkCallback, BookmarkScope) |
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada, com o nome especificado, o método especificado para ser executado quando a notificação da operação de retomada for concluída e o escopo especificado do indicador.Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, and the specified scope of the bookmark. |
| CreateBookmark(String, BookmarkCallback, BookmarkOptions) |
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada, com o nome especificado, o método especificado para ser executado quando a notificação da operação de retomada for concluída e com a opção especificada que rege como o indicador é usado durante a execução da NativeActivity atual.Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, and the specified option that governs how the bookmark is used during the execution of the current NativeActivity. |
| CreateBookmark(String, BookmarkCallback) |
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada, com o nome especificado e com o método especificado para ser executado quando a notificação da operação de retomada for concluída.Creates the point at which a NativeActivity can passively wait to be resumed, with the specified name and with the specified method to execute when notification of the resume operation completes. |
| CreateBookmark(String) |
Cria o ponto com o nome especificado, no qual uma NativeActivity pode esperar passivamente para ser retomada.Creates the point, with the specified name, at which a NativeActivity can passively wait to be resumed. |
| CreateBookmark(BookmarkCallback) |
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada e agenda o método especificado a ser executado quando a notificação da operação de retomada for concluída.Creates the point at which a NativeActivity can passively wait to be resumed and schedules the specified method to execute when notification of the resume operation completes. |
| CreateBookmark() |
Cria um ponto no qual uma NativeActivity pode esperar passivamente para ser retomada.Creates a point at which a NativeActivity can passively wait to be resumed. |
| CreateBookmark(BookmarkCallback, BookmarkOptions) |
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada, com o método especificado para ser executado quando a notificação da operação de retomada for concluída e com a opção especificada que rege como o indicador é usado durante a execução da NativeActivity atual.Creates the point at which a NativeActivity can passively wait to be resumed, with the specified method to execute when notification of the resume operation completes and with the specified option that governs how the bookmark is used during the execution of the current NativeActivity. |
CreateBookmark(String, BookmarkCallback, BookmarkScope, BookmarkOptions)
Cria o ponto no qual um NativeActivity passivamente pode esperar para ser retomado com o nome especificado, o método especificado a ser executada quando a notificação de operação de retomada for concluído, o escopo especificado do indicador e a opção especificado que rege como o indicador é usado durante a execução da atual NativeActivity.Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, the specified scope of the bookmark, and the specified option that governs how the bookmark is used during the execution of the current NativeActivity.
public:
System::Activities::Bookmark ^ CreateBookmark(System::String ^ name, System::Activities::BookmarkCallback ^ callback, System::Activities::BookmarkScope ^ scope, System::Activities::BookmarkOptions options);
public System.Activities.Bookmark CreateBookmark (string name, System.Activities.BookmarkCallback callback, System.Activities.BookmarkScope scope, System.Activities.BookmarkOptions options);
member this.CreateBookmark : string * System.Activities.BookmarkCallback * System.Activities.BookmarkScope * System.Activities.BookmarkOptions -> System.Activities.Bookmark
Public Function CreateBookmark (name As String, callback As BookmarkCallback, scope As BookmarkScope, options As BookmarkOptions) As Bookmark
Parâmetros
- name
- String
O nome do indicador.The name of the bookmark.
- callback
- BookmarkCallback
O método a ser chamado quando uma notificação sinaliza a retomada da NativeActivity.The method to be called when a notification signals resumption of the NativeActivity.
- scope
- BookmarkScope
Um identificador aplicado a um grupo de indicadores que operam com o mesmo protocolo durante um runtime de fluxo de trabalho.An identifier applied to a group of bookmarks that operate under the same protocol during a workflow runtime.
- options
- BookmarkOptions
As opções do indicador que regem como o indicador é usado durante a execução da NativeActivity atual.The bookmark options that governs how the bookmark is used during the execution of the current NativeActivity.
Retornos
Um indicador que inclui o nome do indicador, o método de retorno de chamada, o escopo do indicador e a opção de execução do indicador.A bookmark that includes the name of the bookmark, the callback method, the scope of the bookmark, and the bookmark execution option.
Comentários
Os retornos de chamada de indicador podem operar sem opções de indicador, mas as opções de indicador devem ser sempre emparelhadas com um retorno de chamada porque as opções não se aplicam em situações em que não há nenhum método de retorno de chamada.Bookmark callbacks can operate without bookmark options but bookmark options must always be paired with a callback because the options do not apply in situations where there is no callback method.
Aplica-se a
CreateBookmark(String, BookmarkCallback, BookmarkScope)
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada, com o nome especificado, o método especificado para ser executado quando a notificação da operação de retomada for concluída e o escopo especificado do indicador.Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, and the specified scope of the bookmark.
public:
System::Activities::Bookmark ^ CreateBookmark(System::String ^ name, System::Activities::BookmarkCallback ^ callback, System::Activities::BookmarkScope ^ scope);
public System.Activities.Bookmark CreateBookmark (string name, System.Activities.BookmarkCallback callback, System.Activities.BookmarkScope scope);
member this.CreateBookmark : string * System.Activities.BookmarkCallback * System.Activities.BookmarkScope -> System.Activities.Bookmark
Public Function CreateBookmark (name As String, callback As BookmarkCallback, scope As BookmarkScope) As Bookmark
Parâmetros
- name
- String
O nome do indicador.The name of the bookmark.
- callback
- BookmarkCallback
O método a ser chamado quando uma notificação sinaliza a retomada da NativeActivity.The method to be called when a notification signals resumption of the NativeActivity.
- scope
- BookmarkScope
Um identificador aplicado a um grupo de indicadores que operam com o mesmo protocolo durante um runtime de fluxo de trabalho.An identifier applied to a group of bookmarks that operate under the same protocol during a workflow runtime.
Retornos
Um indicador que inclui o nome do indicador, o método de retorno de chamada e o escopo do indicador.A bookmark that includes the name of the bookmark, the callback method, and the scope of the bookmark.
Comentários
Os retornos de chamada de indicador podem operar sem opções de indicador, mas as opções de indicador devem ser sempre emparelhadas com um retorno de chamada porque as opções não se aplicam em situações em que não há nenhum método de retorno de chamada.Bookmark callbacks can operate without bookmark options but bookmark options must always be paired with a callback because the options do not apply in situations where there is no callback method.
Aplica-se a
CreateBookmark(String, BookmarkCallback, BookmarkOptions)
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada, com o nome especificado, o método especificado para ser executado quando a notificação da operação de retomada for concluída e com a opção especificada que rege como o indicador é usado durante a execução da NativeActivity atual.Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, and the specified option that governs how the bookmark is used during the execution of the current NativeActivity.
public:
System::Activities::Bookmark ^ CreateBookmark(System::String ^ name, System::Activities::BookmarkCallback ^ callback, System::Activities::BookmarkOptions options);
public System.Activities.Bookmark CreateBookmark (string name, System.Activities.BookmarkCallback callback, System.Activities.BookmarkOptions options);
member this.CreateBookmark : string * System.Activities.BookmarkCallback * System.Activities.BookmarkOptions -> System.Activities.Bookmark
Public Function CreateBookmark (name As String, callback As BookmarkCallback, options As BookmarkOptions) As Bookmark
Parâmetros
- name
- String
O nome do indicador.The name of the bookmark.
- callback
- BookmarkCallback
O método a ser chamado quando uma notificação sinaliza a retomada da NativeActivity.The method to be called when a notification signals resumption of the NativeActivity.
- options
- BookmarkOptions
As opções de indicador que regem como o indicador é usado durante a execução da NativeActivity atual.The bookmark options that govern how the bookmark is used during the execution of the current NativeActivity.
Retornos
Um indicador que inclui o nome do indicador, o método de retorno de chamada e a opção de execução do indicador.A bookmark that includes the name of the bookmark, the callback method, and the bookmark execution option.
Comentários
Os retornos de chamada de indicador podem operar sem opções de indicador, mas as opções de indicador devem ser sempre emparelhadas com um retorno de chamada porque as opções não se aplicam em situações em que não há nenhum método de retorno de chamada.Bookmark callbacks can operate without bookmark options but bookmark options must always be paired with a callback because the options do not apply in situations where there is no callback method.
Aplica-se a
CreateBookmark(String, BookmarkCallback)
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada, com o nome especificado e com o método especificado para ser executado quando a notificação da operação de retomada for concluída.Creates the point at which a NativeActivity can passively wait to be resumed, with the specified name and with the specified method to execute when notification of the resume operation completes.
public:
System::Activities::Bookmark ^ CreateBookmark(System::String ^ name, System::Activities::BookmarkCallback ^ callback);
public System.Activities.Bookmark CreateBookmark (string name, System.Activities.BookmarkCallback callback);
member this.CreateBookmark : string * System.Activities.BookmarkCallback -> System.Activities.Bookmark
Public Function CreateBookmark (name As String, callback As BookmarkCallback) As Bookmark
Parâmetros
- name
- String
O nome do indicador.The name of the bookmark.
- callback
- BookmarkCallback
O método a ser chamado quando uma notificação sinaliza a retomada da NativeActivity.The method to be called when a notification signals resumption of the NativeActivity.
Retornos
Um indicador que inclui o nome do indicador e o método de retorno de chamada.A bookmark that includes the name of the bookmark and the callback method.
Aplica-se a
CreateBookmark(String)
Cria o ponto com o nome especificado, no qual uma NativeActivity pode esperar passivamente para ser retomada.Creates the point, with the specified name, at which a NativeActivity can passively wait to be resumed.
public:
System::Activities::Bookmark ^ CreateBookmark(System::String ^ name);
public System.Activities.Bookmark CreateBookmark (string name);
member this.CreateBookmark : string -> System.Activities.Bookmark
Public Function CreateBookmark (name As String) As Bookmark
Parâmetros
- name
- String
O nome do indicador.The name of the bookmark.
Retornos
Um indicador que inclui o nome do indicador.A bookmark that includes the name of the bookmark.
Aplica-se a
CreateBookmark(BookmarkCallback)
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada e agenda o método especificado a ser executado quando a notificação da operação de retomada for concluída.Creates the point at which a NativeActivity can passively wait to be resumed and schedules the specified method to execute when notification of the resume operation completes.
public:
System::Activities::Bookmark ^ CreateBookmark(System::Activities::BookmarkCallback ^ callback);
public System.Activities.Bookmark CreateBookmark (System.Activities.BookmarkCallback callback);
member this.CreateBookmark : System.Activities.BookmarkCallback -> System.Activities.Bookmark
Public Function CreateBookmark (callback As BookmarkCallback) As Bookmark
Parâmetros
- callback
- BookmarkCallback
O método a ser chamado quando uma notificação sinaliza a retomada da NativeActivity.The method to be called when a notification signals resumption of the NativeActivity.
Retornos
O método de retorno de chamada.The callback method.
Aplica-se a
CreateBookmark()
Cria um ponto no qual uma NativeActivity pode esperar passivamente para ser retomada.Creates a point at which a NativeActivity can passively wait to be resumed.
public:
System::Activities::Bookmark ^ CreateBookmark();
public System.Activities.Bookmark CreateBookmark ();
member this.CreateBookmark : unit -> System.Activities.Bookmark
Public Function CreateBookmark () As Bookmark
Retornos
Um indicador.A bookmark.
Aplica-se a
CreateBookmark(BookmarkCallback, BookmarkOptions)
Cria o ponto no qual uma NativeActivity pode esperar passivamente para ser retomada, com o método especificado para ser executado quando a notificação da operação de retomada for concluída e com a opção especificada que rege como o indicador é usado durante a execução da NativeActivity atual.Creates the point at which a NativeActivity can passively wait to be resumed, with the specified method to execute when notification of the resume operation completes and with the specified option that governs how the bookmark is used during the execution of the current NativeActivity.
public:
System::Activities::Bookmark ^ CreateBookmark(System::Activities::BookmarkCallback ^ callback, System::Activities::BookmarkOptions options);
public System.Activities.Bookmark CreateBookmark (System.Activities.BookmarkCallback callback, System.Activities.BookmarkOptions options);
member this.CreateBookmark : System.Activities.BookmarkCallback * System.Activities.BookmarkOptions -> System.Activities.Bookmark
Public Function CreateBookmark (callback As BookmarkCallback, options As BookmarkOptions) As Bookmark
Parâmetros
- callback
- BookmarkCallback
O método a ser chamado quando uma notificação sinaliza a retomada da NativeActivity.The method to be called when a notification signals resumption of the NativeActivity.
- options
- BookmarkOptions
Uma configuração enumerada que rege como o indicador opera em relação a outros threads durante a execução da NativeActivity atual.An enumerated setting that governs how the bookmark operates in relation to other threads during the execution of the current NativeActivity.
Retornos
Um indicador que inclui o método de retorno de chamada e a opção de execução do indicador.A bookmark that includes the callback method and the bookmark execution option.
Comentários
As opções de indicador incluem MultipleResume NonBlocking e None .Bookmark options include MultipleResume, NonBlocking and None.
Os retornos de chamada de indicador podem operar sem opções de indicador, mas as opções de indicador devem ser sempre emparelhadas com um retorno de chamada porque as opções não se aplicam em situações em que não há nenhum método de retorno de chamada.Bookmark callbacks can operate without bookmark options but bookmark options must always be paired with a callback because the options do not apply in situations where there is no callback method.