Last active
August 25, 2018 19:00
-
-
Save ameerthehacker/26cdb1faf60fcf67ac95debf3d768d86 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
namespace XamarinFormValidation.Behaviors | |
{ | |
public class ValidationGroupBehavior: Behavior<View> | |
{ | |
... | |
public void Add(ValidationBehavior validationBehavior) | |
{ | |
_validationBehaviors.Add(validationBehavior); | |
} | |
public void Remove(ValidationBehavior validationBehavior) | |
{ | |
_validationBehaviors.Remove(validationBehavior); | |
} | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment