메소드 | 설명 | |
---|---|---|
Data ( string key ) : Task |
Outputs the raw bytes in an IPFS object ipfs data is a plumbing command for retreiving the raw bytes stored in a DAG node.It outputs to stdout, and
|
|
Get ( string key, IpfsEncoding encoding ) : Task |
Get and serialize the DAG node named by
|
|
Links ( string key ) : Task |
Outputs the links pointed to by the specified object 'ipfs object links' is a plumbing command for retreiving the links from a DAG node.It outputs to stdout, and
|
|
Put ( MerkleNode node ) : Task |
Stores input as a DAG object, outputs its key 'ipfs object put' is a plumbing command for storing DAG nodes. It reads from stdin, and the output is a base58 encoded multihash.
|
|
Stat ( string key ) : Task |
Get stats for the DAG node named by
|
메소드 | 설명 | |
---|---|---|
GetIpfsEncodingValue ( IpfsEncoding encoding ) : string | ||
IpfsObject ( |
public Data ( string key ) : Task |
||
key | string | Key of the object to retrieve, in base58-encoded multihash format |
리턴 | Task |
public Get ( string key, IpfsEncoding encoding ) : Task |
||
key | string | Key of the object to retrieve (in base58-encoded multihash format) |
encoding | IpfsEncoding | The encoding of the data |
리턴 | Task |
public Links ( string key ) : Task |
||
key | string | Key of the object to retrieve, in base58-encoded multihash format |
리턴 | Task |
public Put ( MerkleNode node ) : Task |
||
node | MerkleNode | Node to be stored as a DAG object |
리턴 | Task |
public Stat ( string key ) : Task |
||
key | string | Key of the object to retrieve (in base58-encoded multihash format) |
리턴 | Task |