public IServerControl AddPartnerInterface(IHANetworkInterface iface, int priority) { return(new HAInterfaceEditor(this, iface) { ActionIsAdd = true, Priority = priority }); }
public IServerControl RemovePartnerInterface(IHANetworkInterface iface) { return(new HAInterfaceEditor(this, iface) { ActionIsAdd = false }); }
public IServerControl AddInterface(IHANetworkInterface iface, int priority) { return(Device.AddPartnerInterface(iface, priority)); }
public IServerControl RemoveInterface(IHANetworkInterface iface) { return(Device.RemovePartnerInterface(iface)); }
public HAInterfaceEditor(IHADeviceExt device, IHANetworkInterface iface) { Device = device; IFace = iface; }