프로퍼티 | 타입 | 설명 | |
---|---|---|---|
CalculatePartSize | long | ||
CompleteMultipartUpload | void | ||
GetListParts | List | ||
GetMultipartUploadsList | List | ||
GetObjectList | List | ||
ListParts | IEnumerable |
||
NewMultipartUpload | string | ||
ParseError | |||
PutObject | string | ||
ReadFull | byte[] | ||
RemoveUpload | void | ||
StripXmlnsXsi | string | ||
UrlEncode | string | ||
isValidEndpoint | bool | ||
listIncompleteUploads | IEnumerable |
메소드 | 설명 | |
---|---|---|
BucketExists ( string bucketName ) : bool |
Returns true if the specified bucketName exists, otherwise returns false.
|
|
GetObject ( string bucketName, string objectName, Action |
Get an object. The object will be streamed to the callback given by the user.
|
|
GetPartialObject ( string bucketName, string objectName, ulong offset, Action |
Get an object starting with the byte specified in offset. The object will be streamed to the callback given by the user
|
|
GetPartialObject ( string bucketName, string objectName, ulong offset, ulong length, Action |
Get a byte range of an object given by the offset and length. The object will be streamed to the callback given by the user
|
|
ListBuckets ( ) : List |
Lists all buckets owned by the user
|
|
ListIncompleteUploads ( string bucketName ) : IEnumerable |
Lists all incomplete uploads in a given bucket
|
|
ListIncompleteUploads ( string bucketName, string prefix ) : IEnumerable |
Lists all incomplete uploads in a given bucket and prefix
|
|
ListIncompleteUploads ( string bucketName, string prefix, bool recursive ) : IEnumerable |
Lists all incomplete uploads in a given bucket and prefix recursively
|
|
ListObjects ( string bucketName ) : IEnumerable |
List all objects in a bucket
|
|
ListObjects ( string bucketName, string prefix ) : IEnumerable |
List all objects in a bucket with a given prefix
|
|
ListObjects ( string bucketName, string prefix, bool recursive ) : IEnumerable |
List all objects non-recursively in a bucket with a given prefix, optionally emulating a directory
|
|
MakeBucket ( string bucketName ) : void |
Create a private bucket with a give name.
|
|
MakeBucket ( string bucketName, string location ) : void |
Create a bucket with a given name and location.
|
|
MinioClient ( |
Creates and returns an Cloud Storage client.
|
|
MinioClient ( |
||
MinioClient ( string endpoint ) : System |
Creates and returns an Cloud Storage client
|
|
MinioClient ( string endpoint, int port, string accessKey, string secretKey ) : System | ||
MinioClient ( string endpoint, int port, string accessKey, string secretKey, bool secure ) : System |
Creates and returns an Cloud Storage client
|
|
MinioClient ( string url, string accessKey, string secretKey ) : System |
Creates and returns an Cloud Storage client
|
|
MinioClient ( string endpoint, string accessKey, string secretKey, bool secure ) : System | ||
PresignedGetObject ( string bucketName, string objectName, int expiresInt ) : string |
Presigned Get url.
|
|
PresignedPostPolicy ( |
Presigned post policy
|
|
PresignedPutObject ( string bucketName, string objectName, int expiresInt ) : string |
Presigned Put url.
|
|
PutObject ( string bucketName, string objectName, Stream data, long size, string contentType ) : void |
Creates an object
|
|
RemoveBucket ( string bucketName ) : void |
Remove a bucket
|
|
RemoveIncompleteUpload ( string bucketName, string objectName ) : void |
Remove incomplete uploads from a given bucket and objectName
|
|
RemoveObject ( string bucketName, string objectName ) : void |
Remove an object
|
|
SetAppInfo ( string appName, string appVersion ) : void | ||
StatObject ( string bucketName, string objectName ) : ObjectStat |
Tests the object's existence and returns metadata about existing objects.
|
메소드 | 설명 | |
---|---|---|
CalculatePartSize ( long size ) : long | ||
CompleteMultipartUpload ( string bucketName, string objectName, string uploadId, string>.Dictionary |
||
GetListParts ( string bucketName, string objectName, string uploadId, int partNumberMarker ) : List |
||
GetMultipartUploadsList ( string bucketName, string prefix, string keyMarker, string uploadIdMarker, string delimiter ) : List |
||
GetObjectList ( string bucketName, string prefix, bool recursive, string marker ) : List |
||
ListParts ( string bucketName, string objectName, string uploadId ) : IEnumerable |
||
NewMultipartUpload ( string bucketName, string objectName, string contentType ) : string | ||
ParseError ( IRestResponse response ) : |
||
PutObject ( string bucketName, string objectName, string uploadId, int partNumber, byte data, string contentType ) : string | ||
ReadFull ( Stream data, int currentPartSize ) : byte[] | ||
RemoveUpload ( string bucketName, string objectName, string uploadId ) : void | ||
StripXmlnsXsi ( string input ) : string | ||
UrlEncode ( string input ) : string | ||
isValidEndpoint ( string endpoint ) : bool | ||
listIncompleteUploads ( string bucketName, string prefix, string delimiter ) : IEnumerable |
Lists all or delimited incomplete uploads in a given bucket with a given objectName
|
public BucketExists ( string bucketName ) : bool | ||
bucketName | string | Bucket to test existence of |
리턴 | bool |
public GetObject ( string bucketName, string objectName, Action |
||
bucketName | string | Bucket to retrieve object from |
objectName | string | Name of object to retrieve |
callback | Action |
A stream will be passed to the callback |
리턴 | void |
public GetPartialObject ( string bucketName, string objectName, ulong offset, Action |
||
bucketName | string | Bucket to retrieve object from |
objectName | string | Name of object to retrieve |
offset | ulong | Number of bytes to skip |
callback | Action |
A stream will be passed to the callback |
리턴 | void |
public GetPartialObject ( string bucketName, string objectName, ulong offset, ulong length, Action |
||
bucketName | string | Bucket to retrieve object from |
objectName | string | Key of object to retrieve |
offset | ulong | Number of bytes to skip |
length | ulong | Length of requested byte range |
callback | Action |
A stream will be passed to the callback |
리턴 | void |
public ListIncompleteUploads ( string bucketName ) : IEnumerable |
||
bucketName | string | Bucket to list all incomplepte uploads from |
리턴 | IEnumerable |
public ListIncompleteUploads ( string bucketName, string prefix ) : IEnumerable |
||
bucketName | string | Bucket to list all incomplepte uploads from |
prefix | string | prefix to list all incomplepte uploads |
리턴 | IEnumerable |
public ListIncompleteUploads ( string bucketName, string prefix, bool recursive ) : IEnumerable |
||
bucketName | string | Bucket to list all incomplepte uploads from |
prefix | string | prefix to list all incomplepte uploads |
recursive | bool | option to list incomplete uploads recursively |
리턴 | IEnumerable |
public ListObjects ( string bucketName ) : IEnumerable |
||
bucketName | string | Bucket to list objects from |
리턴 | IEnumerable |
public ListObjects ( string bucketName, string prefix ) : IEnumerable |
||
bucketName | string | Bucket to list objects from |
prefix | string | Filters all objects not beginning with a given prefix |
리턴 | IEnumerable |
public ListObjects ( string bucketName, string prefix, bool recursive ) : IEnumerable |
||
bucketName | string | Bucket to list objects from |
prefix | string | Filters all objects not beginning with a given prefix |
recursive | bool | Set to false to emulate a directory |
리턴 | IEnumerable |
public MakeBucket ( string bucketName ) : void | ||
bucketName | string | Name of the new bucket |
리턴 | void |
public MakeBucket ( string bucketName, string location ) : void | ||
bucketName | string | Name of the new bucket |
location | string | Name of the location |
리턴 | void |
public MinioClient ( |
||
uri | Location of the server, supports HTTP and HTTPS. | |
리턴 | System |
public MinioClient ( |
||
uri | ||
accessKey | string | |
secretKey | string | |
리턴 | System |
public MinioClient ( string endpoint, int port, string accessKey, string secretKey ) : System | ||
endpoint | string | |
port | int | |
accessKey | string | |
secretKey | string | |
리턴 | System |
public MinioClient ( string endpoint, int port, string accessKey, string secretKey, bool secure ) : System | ||
endpoint | string | |
port | int | |
accessKey | string | Access Key for authenticated requests |
secretKey | string | Secret Key for authenticated requests |
secure | bool | Boolean value set to true/false makes the request HTTPS/HTTP respectively |
리턴 | System |
public MinioClient ( string url, string accessKey, string secretKey ) : System | ||
url | string | Location of the server, supports HTTP and HTTPS |
accessKey | string | Access Key for authenticated requests |
secretKey | string | Secret Key for authenticated requests |
리턴 | System |
public MinioClient ( string endpoint, string accessKey, string secretKey, bool secure ) : System | ||
endpoint | string | |
accessKey | string | |
secretKey | string | |
secure | bool | |
리턴 | System |
public PresignedGetObject ( string bucketName, string objectName, int expiresInt ) : string | ||
bucketName | string | Bucket to retrieve object from |
objectName | string | Key of object to retrieve |
expiresInt | int | Expiration time in seconds |
리턴 | string |
public PresignedPostPolicy ( |
||
policy | ||
리턴 | string>.Dictionary |
public PresignedPutObject ( string bucketName, string objectName, int expiresInt ) : string | ||
bucketName | string | Bucket to retrieve object from |
objectName | string | Key of object to retrieve |
expiresInt | int | Expiration time in seconds |
리턴 | string |
public PutObject ( string bucketName, string objectName, Stream data, long size, string contentType ) : void | ||
bucketName | string | Bucket to create object in |
objectName | string | Key of the new object |
data | Stream | Stream of bytes to send |
size | long | Total size of bytes to be written, must match with data's length |
contentType | string | Content type of the new object, null defaults to "application/octet-stream" |
리턴 | void |
public RemoveBucket ( string bucketName ) : void | ||
bucketName | string | Name of bucket to remove |
리턴 | void |
public RemoveIncompleteUpload ( string bucketName, string objectName ) : void | ||
bucketName | string | Bucket to remove incomplete uploads from |
objectName | string | Key to remove incomplete uploads from |
리턴 | void |
public RemoveObject ( string bucketName, string objectName ) : void | ||
bucketName | string | Name of bucket to remove |
objectName | string | Name of object to remove |
리턴 | void |
public SetAppInfo ( string appName, string appVersion ) : void | ||
appName | string | |
appVersion | string | |
리턴 | void |
public StatObject ( string bucketName, string objectName ) : ObjectStat | ||
bucketName | string | Bucket to test object in |
objectName | string | Name of the object to stat |
리턴 | ObjectStat |