コード例 #1
0
 /**
  * Gets blob cache control.
  *
  * @return string.
  */
 public function getBlobCacheControl()
 {
     return $this->_blobProperties->getCacheControl();
 }
コード例 #2
0
 /**
  * @covers MicrosoftAzure\Storage\Blob\Models\BlobProperties::setCacheControl
  * @covers MicrosoftAzure\Storage\Blob\Models\BlobProperties::getCacheControl
  */
 public function testSetCacheControl()
 {
     // Setup
     $expected = '0x8CAFB82EFF70C46';
     $properties = new BlobProperties();
     $properties->setCacheControl($expected);
     // Test
     $properties->setCacheControl($expected);
     // Assert
     $this->assertEquals($expected, $properties->getCacheControl());
 }