public void SendCooperationFileNoticeRequest(long fromUid, long toUid, string toJid, string projectid, string fileID, string iconString, string fileName, long fileSize)
 {
     CooperationFileNoticeRequest request = new CooperationFileNoticeRequest();
     request.from_uid = fromUid;
     request.to_uid = toUid;
     request.to_jid = toJid;
     request.projectId = projectid;
     request.fileID = fileID;
     request.iconString = iconString;
     request.fileName = fileName;
     request.fileSize = fileSize;
     this.connection.Send(PacketType.COOPERATION_NOTICE_FILE, request);
 }
예제 #2
0
        public void SendCooperationFileNoticeRequest(long fromUid, long toUid, string toJid, string projectid, string fileID, string iconString, string fileName, long fileSize)
        {
            CooperationFileNoticeRequest request = new CooperationFileNoticeRequest();

            request.from_uid   = fromUid;
            request.to_uid     = toUid;
            request.to_jid     = toJid;
            request.projectId  = projectid;
            request.fileID     = fileID;
            request.iconString = iconString;
            request.fileName   = fileName;
            request.fileSize   = fileSize;
            this.connection.Send(PacketType.COOPERATION_NOTICE_FILE, request);
        }