DynamicLinqPadPostgreSqlDriver.UI.ViewModels.ConnectionInfoViewModel.OnErrorsChanged(string)

Here are the examples of the csharp api class DynamicLinqPadPostgreSqlDriver.UI.ViewModels.ConnectionInfoViewModel.OnErrorsChanged(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: linqpad-postgresql-driver
Source File: ConnectionInfoViewModel.cs
private void UpdateHasErrors()
      {
         HasErrors = (UseConnectionInfo && string.IsNullOrWhiteSpace(Server) || string.IsNullOrWhiteSpace(Database))
                   || (UseConnectionString && string.IsNullOrWhiteSpace(ConnectionString));

         OnErrorsChanged(nameof(Server));
         OnErrorsChanged(nameof(Database));
         OnErrorsChanged(nameof(ConnectionString));
      }