mRemoteNG.Connection.ConnectionInfoInheritance.SetAllValues C# (CSharp) Метод

SetAllValues() приватный Метод

private SetAllValues ( ConnectionInfoInheritance otherInheritanceObject ) : void
otherInheritanceObject ConnectionInfoInheritance
Результат void
        private void SetAllValues(ConnectionInfoInheritance otherInheritanceObject)
        {
            var properties = GetProperties();
            foreach (var property in properties)
            {
                var newPropertyValue = property.GetValue(otherInheritanceObject, null);
                property.SetValue(this, newPropertyValue, null);
            }
        }

Same methods

ConnectionInfoInheritance::SetAllValues ( bool value ) : void