Close() public method

public Close ( ) : void
return void
示例#1
0
        public string close(Dictionary <string, object> parameters)
        {
            try
            {
                if (library == OSCLibrary.SharpOSC)
                {
                    sharposcclient.Close();
                }
                else
                {
                    ventuzclient.Dispose();
                }
            }
            catch (Exception ex)
            {
                return(ex.ToString());
            }

            return(null);
        }