Ejemplo n.º 1
0
 public sqlBlobProperties(sqlBlobProperties other)
 {
     BlobType        = other.BlobType;
     CacheControl    = other.CacheControl;
     ContentEncoding = other.ContentEncoding;
     ContentLanguage = other.ContentLanguage;
     ContentMD5      = other.ContentMD5;
     ContentType     = other.ContentType;
     ETag            = other.ETag;
     LastModifiedUtc = other.LastModifiedUtc;
     LeaseStatus     = other.LeaseStatus;
     Length          = other.Length;
 }
Ejemplo n.º 2
0
 public sqlBlobProperties(sqlBlobProperties other)
 {
     BlobType = other.BlobType;
       CacheControl = other.CacheControl;
       ContentEncoding = other.ContentEncoding;
       ContentLanguage = other.ContentLanguage;
       ContentMD5 = other.ContentMD5;
       ContentType = other.ContentType;
       ETag = other.ETag;
       LastModifiedUtc = other.LastModifiedUtc;
       LeaseStatus = other.LeaseStatus;
       Length = other.Length;
 }
Ejemplo n.º 3
0
 internal bool GetBlobContentsWithoutInitialization(string blobName, Stream outputStream, out sqlBlobProperties properties)
 {
     properties = new sqlBlobProperties();
     return false;
 }
Ejemplo n.º 4
0
 internal MemoryStream GetBlobContent(string blobName, out sqlBlobProperties properties)
 {
     properties = null;
     return null;
 }