QuestionQ8

Variables and Arguments

The DataTable_Users variable, of type DataTable, contains the following columns: First Name, Last Name, Date of Birth, and Username.

How can the out_UserID argument from BuildUserID.xaml be mapped to the appropriate value in Main.xaml?

Question Image

  • A CurrentRow("Usemame").ToString
  • B Usernames
  • C DataTable Users("Usemame").ToString
  • D UserID
Explanation

An Out argument passes a value from an invoked workflow back to the calling workflow, so it must be mapped to a compatible receiving variable in the caller. out_UserID is a String, and UserID is the compatible String variable in Main.xaml.

Community Discussion

No comments yet. Be the first to start the discussion!