Esempio n. 1
0
 public RestMultipart(RestMultipartType type, string stringValue, string contentType, string charset)
 {
     this._type        = type;
     this._value       = stringValue;
     this._contentType = contentType;
     this._charset     = charset;
 }
Esempio n. 2
0
 public RestMultipart(RestMultipartType type, string stringValue, string contentType) :
     this(type, stringValue, contentType, (string)null)
 {
 }