Skip to content

Commit

Permalink
Updated the Actions on MessagingServiceAlert and MessagingServiceQues…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
jsauvexamarin committed Jan 18, 2016
1 parent 90668db commit 446837a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions FormsToolkit/FormsToolkit/Services/MessagingService.cs
Expand Up @@ -102,10 +102,10 @@ public class MessagingServiceQuestion
public string Negative { get; set; }

/// <summary>
/// Gets or sets the positive action, that action that is to be executed if the Positive choice is selected.
/// Gets or sets the OnCompleted Action&lt;bool&gt;.
/// </summary>
/// <value>The positive action.</value>
public Action PositiveAction { get; set; }
/// <value>The OnCompleted Action&lt;bool&gt;.</value>
public Action<bool> OnCompleted { get; set; }
}

/// <summary>
Expand All @@ -130,6 +130,12 @@ public class MessagingServiceAlert
/// </summary>
/// <value><c>true</c> if this instance cancel; otherwise, <c>false</c>.</value>
public string Cancel { get; set; }

/// <summary>
/// Gets or sets the OnCompleted Action.
/// </summary>
/// <value>The OnCompleted Action.</value>
public Action OnCompleted { get; set; }
}
}

0 comments on commit 446837a

Please sign in to comment.