Exemplo n.º 1
0
 /// <summary>
 /// assigns the the content to the thing
 /// </summary>
 /// <param name="thing"></param>
 /// <param name="content"></param>
 public void AssignContent(IStreamThing thing, Content <Stream> content)
 {
     if (thing == null || thing.ContentContainer == null || content == null || content.Data == null)
     {
         return;
     }
     thing.Data        = content.Data;
     thing.Compression = content.Compression;
     thing.StreamType  = content.ContentType;
     thing.Compress();
     thing.Flush();
     thing.ClearRealSubject();
 }