Opc.Ua.Com.Server.ComDaProxy.AddGroup C# (CSharp) Method

AddGroup() public method

Adds the group.
public AddGroup ( string groupName, bool active, int updateRate, int clientHandle, int timeBias, float deadband, int lcid ) : ComDaGroup
groupName string The group name.
active bool if set to true the group is active.
updateRate int The update rate.
clientHandle int The client handle.
timeBias int The time bias.
deadband float The deadband.
lcid int The lcid.
return ComDaGroup
        public ComDaGroup AddGroup(
            string groupName,
            bool active,
            int updateRate,
            int clientHandle,
            int timeBias,
            float deadband,
            int lcid)
        {
            return m_groupManager.AddGroup(groupName, active, updateRate, clientHandle, timeBias, deadband, lcid);
        }