Esempio n. 1
0
 public FileValueImpl(byte[] value, IFileValueType type, string filename, string mimeType, string encoding)
 {
     this.value    = value;
     this.type     = type;
     this.filename = filename;
     this.mimeType = mimeType;
     this.encoding = encoding;
 }
Esempio n. 2
0
 public FileValueImpl(IFileValueType type, string filename) : this(null, type, filename, null, null)
 {
 }