K2Informatics.Erlnet.OtpCookedConnection.unlink C# (CSharp) Méthode

unlink() public méthode

public unlink ( OtpErlangPid from, OtpErlangPid to ) : void
from OtpErlangPid
to OtpErlangPid
Résultat void
        public void unlink(OtpErlangPid from, OtpErlangPid to)
        {
            lock (this)
            {
                links.removeLink(from, to);
                try
                {
                    base.sendUnlink(from, to);
                }
                catch (IOException)
                {
                }
            }
        }