/// <summary> /// Called by the client when the name returned by <see cref="IClientHelper.GetName"/> already exists on the server. /// </summary> /// <remarks> /// Derived classes may use this method to create a new login name. /// </remarks> public void NotifyNameExists() { concreteClient.NotifyNameExists(); }
/// <summary> /// Called by the client when the name returned by <see cref="GetName"/> already exists on the server. /// </summary> /// <remarks> /// Derived classes may use this method to create a new login name. /// </remarks> public virtual void NotifyNameExists() { helper.NotifyNameExists(); }