コード例 #1
0
ファイル: ClientSocket.cs プロジェクト: cyuuu4u/facetrip
        public void Send(SslAppData sad)
        {
            SslRecord sr = new SslRecord();

            sr.SetContentType(SslRecord.CT_APPLICATION_DATA);
            sr.SetFragment(sad.GetBytes());

            this.Send(sr);
        }