Ejemplo n.º 1
0
 public UserData(UserDataContentType contentType, string content, string fileName, Encoding encoding)
 {
     ContentType = contentType;
     Content     = content;
     FileName    = fileName;
     Encoding    = encoding;
 }
Ejemplo n.º 2
0
 public UserData(UserDataContentType contentType, string content, Encoding encoding)
 {
     ContentType = contentType;
     Content     = content;
     Encoding    = encoding;
 }