Ejemplo n.º 1
0
 public FileValueImpl(sbyte[] value, FileValueType type, string filename, string mimeType, string encoding)
 {
     this.value    = value;
     this.type     = type;
     this.filename = filename;
     this.mimeType = mimeType;
     this.encoding = encoding;
 }
Ejemplo n.º 2
0
 public FileValueImpl(FileValueType type, string filename) : this(null, type, filename, null, null)
 {
 }