Ejemplo n.º 1
0
 /// <summary>
 /// Creates a new instance of <see cref="BlobstoreFile"/>
 /// </summary>
 /// <param name="uriBuilder">The BlobStore URI builder</param>
 /// <param name="identifier">The identifier</param>
 /// <param name="fileName">The file name</param>
 public BlobstoreFile(BlobstoreUriBuilder uriBuilder, string identifier, string fileName)
 {
     this.Uri = uriBuilder.BuildRequestUri(identifier, fileName);
     this.Identifier = identifier;
     this.FileName = fileName;
 }
 /// <summary>
 /// Creates a new instance of <see cref="BlobstoreHttpAdapterFactory"/>
 /// </summary>
 /// <param name="credentials">The BlobStore credentials</param>
 /// <param name="uriBuilder">The BlobStore URI builder</param>
 public BlobstoreHttpAdapterFactory(BlobstoreCredentials credentials, BlobstoreUriBuilder uriBuilder)
 {
     this.credentials = credentials;
     this.uriBuilder = uriBuilder;
 }