BACnet.Explorer.Core.Controls.SessionSettings.SessionSettings C# (CSharp) Метод

SessionSettings() публичный Метод

public SessionSettings ( Session session ) : System
session BACnet.Explorer.Core.Models.Session
Результат System
        public SessionSettings(Session session)
        {
            _session = session;

            _name = new TextBox();
            _name.Bind(
                tb => tb.Text,
                _session,
                sess => sess.Name,
                DualBindingMode.TwoWay);

            this.AddRow(new Label() { Text = Constants.SessionNameLabel }, _name);

            this.AddRow();
        }
SessionSettings