Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6361417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:46:29+00:00 2026-05-24T23:46:29+00:00

What’s considered best practice when performing data validation while using ReactiveUI ? Let’s say

  • 0

What’s considered “best practice” when performing data validation while using ReactiveUI? Let’s say I have a view model that looks like this:

public class MyViewModel: ReactiveObject
{
    public ReactiveAsyncCommand SaveMyDataCommand { get; protected set; }

    private string _email;
    public string Email
    {
        get { return _email; }
        set
        {
          _email = value;
          raisePropertyChanged("Email");
        }
    }

    private string _name;
    public string Name
    {
        get { return _name; }
        set
        {
          _name= value;
          raisePropertyChanged("Name");
        }
    }

    private bool _sendEmail = false;
    public bool SendEmail
    {
        get { return _sendEmail; }
        set
        {
          _sendEmail = value;
          raisePropertyChanged("SendEmail");
        }
    }  

    public MyViewModel()
    {
        SaveMyDataCommand = new ReactiveAsyncCommand(null, 1);
    }
}

Here’s what I want to validate:

  1. If SendEmail == true then make sure there’s a valid email address in the Email property. (I’m not worried about the actual email address validation piece itself. This is just a what if scenario.)
  2. If a value was set to the Email property, make sure it’s a valid email address.
  3. If either 1. or 2. fail validation, SaveMyDataCommand should not be executable.

I’m just looking for a good example on how to do simple / slightly more complex data validation using ReactiveUI. Can anyone shed some light on this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T23:46:30+00:00Added an answer on May 24, 2026 at 11:46 pm

    For anyone else looking for an example on using ReactiveValidatedObject, here’s what worked for me. Note that you’ll have to add a reference to System.ComponentModel to your class as well.

    public class MyViewModel: ReactiveValidatedObject
    {
      public ReactiveAsyncCommand SaveMyDataCommand { get; protected set; }
    
      // THIS PROPERTY INDICATES WHETHER ALL FIELDS HAVE BEEN VALIDATED
      public bool IsSaveEnabled
      {
        get { return IsObjectValid(); }
      }
    
      private string _email;
      [ValidatesViaMethod(AllowBlanks=true,AllowNull=true,Name="IsEmailValid",ErrorMessage="Please enter a valid email address")]
      public string Email
      {
        get { return _email; }
        set
        {
          _email = value;
          raisePropertyChanged("Email");
          SendEmail = SendEmail;
          raisePropertyChanged("IsSaveEnabled");
        }
      }
    
      private string _name;
      public string Name
      {
        get { return _name; }
        set
        {
          _name= value;
          raisePropertyChanged("Name");
        }
      }
    
      private bool _sendEmail = false;
      [ValidatesViaMethod(Name = "IsSendEmailValid", ErrorMessage = "Make sure a valid email address is entered.")]
      public bool SendEmail
      {
        get { return _sendEmail; }
        set
        {
          _sendEmail = value;
          raisePropertyChanged("SendEmail");
          raisePropertyChanged("IsSaveEnabled");
        }
      }  
    
      public bool IsEmailValid(string email)
      {
        if (string.IsNullOrEmpty(email))
        {
          return true;
        } 
    
        // Return result of Email validation
      }
    
      public bool IsSendEmailValid(bool sendEmail)
      {
         if (sendEmail)
         {
           if (string.IsNullOrEmpty(Email))
           {
             return false;
           }
    
           // Return result of Email validation
         }
      }
    
      public MyViewModel()
      {
        SaveMyDataCommand = new ReactiveAsyncCommand(null, 1);
      }
    }
    

    I hope this helps someone! 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some data like this: 1 2 3 4 5 9 2 6
I have thousands of HTML files to process using Groovy/Java and I need to
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I have a jquery bug and I've been looking for hours now, I can't
this is what i have right now Drawing an RSS feed into the php,
I have a French site that I want to parse, but am running into
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.