Ejemplo n.º 1
0
 public MessegerResquest(string Content, string FileName, string FilePath, string Key, int RowVersionLog, vnyi.Meta.log.Status Status, string Title, int Type)
 {
     this.Content       = Content;
     this.FileName      = FileName;
     this.FilePath      = FilePath;
     this.Key           = Key;
     this.RowVersionLog = RowVersionLog;
     this.Status        = Status;
     this.Title         = Title;
     this.Type          = Type;
 }
Ejemplo n.º 2
0
 public bool LogerMesseger(string Content, string FileName, string FilePath, string Key, int RowVersionLog, vnyi.Meta.log.Status Status, string Title, int Type, out string url)
 {
     vnyi.ServiceClient.ServerTransfer.MessegerResquest inValue = new vnyi.ServiceClient.ServerTransfer.MessegerResquest();
     inValue.Content       = Content;
     inValue.FileName      = FileName;
     inValue.FilePath      = FilePath;
     inValue.Key           = Key;
     inValue.RowVersionLog = RowVersionLog;
     inValue.Status        = Status;
     inValue.Title         = Title;
     inValue.Type          = Type;
     vnyi.ServiceClient.ServerTransfer.Status retVal = ((vnyi.ServiceClient.ServerTransfer.ITransferService)(this)).LogerMesseger(inValue);
     url = retVal.url;
     return(retVal.isSucess);
 }