C# 클래스 Ipfs.IpfsClient

상속: IDisposable
파일 보기 프로젝트 열기: TrekDev/net-ipfs-api

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Add ( IpfsStream file, bool recursive = false, bool quiet = false, bool wrapWithDirectory = false, bool trickle = false ) : Task

Add an object to ipfs. Adds contents of to ipfs. Use -r to add directories. Note that directories are added recursively, to form the ipfs MerkleDAG.A smarter partial add with a staging area(like git) remains to be implemented

Cat ( string ipfsPath ) : Task

Show IPFS object data Retrieves the object named by and outputs the data it contains.

Commands ( ) : Task

List all available commands. Lists all available commands (and subcommands) and exits.

ConfigCommand ( string key, string value = null, bool @bool = false ) : Task

get and set IPFS config values ipfs config controls configuration variables. It works much like 'git config'. The configuration values are stored in a config file inside your IPFS repository.

Dispose ( ) : void
Get ( string ipfsPath, string output = null, bool archive = false, bool compress = false, int compressionLevel = null ) : Task

Download IPFS objects Retrieves the object named by and stores the data to disk. By default, the output will be stored at./, but an alternate path can be specified with '--output=' or '-o='. To output a TAR archive instead of unpacked files, use '--archive' or '-a'. To compress the output with GZIP compression, use '--compress' or '-C'. You may also specify the level of compression by specifying '-l=<1-9>'.

Id ( string peerId = null, string format = null ) : Task

Show IPFS Node ID info Prints out information about the specified peer, if no peer is specified, prints out local peers info. ipfs id supports the format option for output with the following keys: : the peers id : agent version : protocol version : public key

IpfsClient ( ) : Ipfs.Commands
IpfsClient ( Uri address ) : Ipfs.Commands
IpfsClient ( Uri address, HttpClient httpClient ) : Ipfs.Commands
IpfsClient ( Uri address, HttpClient httpClient, IJsonSerializer jsonSerializer ) : Ipfs.Commands
IpfsClient ( string address ) : Ipfs.Commands
Ls ( string path ) : Task>

List links from an object. Retrieves the object named by and displays the links it contains, with the following format:

Mount ( string f = null, string n = null ) : Task

Mounts IPFS to the filesystem (read-only) Mount ipfs at a read-only mountpoint on the OS (default: /ipfs and /ipns). All ipfs objects will be accessible under that directory.Note that the root will not be listable, as it is virtual. Access known paths directly. You may have to create /ipfs and /ipfs before using 'ipfs mount'

Ping ( string peerId, int count = null ) : Task

send echo request packets to IPFS hosts ipfs ping is a tool to test sending data to other nodes. It finds nodes via the routing system, send pings, wait for pongs, and print out round- trip latency information.

RefsCommand ( string ipfsPath, string format = null, bool edges = false, bool unique = false, bool recursive = false ) : Task

Lists links (references) from an object Retrieves the object named by and displays the link hashes it contains, with the following format:

TourCommand ( string id ) : Task

An introduction to IPFS This is a tour that takes you through various IPFS concepts, features, and tools to make sure you get up to speed with IPFS very quickly

Version ( bool number = false ) : Task

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

메소드 상세

Add() 공개 메소드

Add an object to ipfs. Adds contents of to ipfs. Use -r to add directories. Note that directories are added recursively, to form the ipfs MerkleDAG.A smarter partial add with a staging area(like git) remains to be implemented
public Add ( IpfsStream file, bool recursive = false, bool quiet = false, bool wrapWithDirectory = false, bool trickle = false ) : Task
file IpfsStream
recursive bool Add directory paths recursively
quiet bool Write minimal output
wrapWithDirectory bool Wrap files with a directory object
trickle bool Use trickle-dag format for dag generation
리턴 Task

Cat() 공개 메소드

Show IPFS object data Retrieves the object named by and outputs the data it contains.
public Cat ( string ipfsPath ) : Task
ipfsPath string The path to the IPFS object(s) to be outputted
리턴 Task

Commands() 공개 메소드

List all available commands. Lists all available commands (and subcommands) and exits.
public Commands ( ) : Task
리턴 Task

ConfigCommand() 공개 메소드

get and set IPFS config values ipfs config controls configuration variables. It works much like 'git config'. The configuration values are stored in a config file inside your IPFS repository.
public ConfigCommand ( string key, string value = null, bool @bool = false ) : Task
key string The key of the config entry (e.g. "Addresses.API")
value string The value to set the config entry to
@bool bool
리턴 Task

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

Get() 공개 메소드

Download IPFS objects Retrieves the object named by and stores the data to disk. By default, the output will be stored at./, but an alternate path can be specified with '--output=' or '-o='. To output a TAR archive instead of unpacked files, use '--archive' or '-a'. To compress the output with GZIP compression, use '--compress' or '-C'. You may also specify the level of compression by specifying '-l=<1-9>'.
public Get ( string ipfsPath, string output = null, bool archive = false, bool compress = false, int compressionLevel = null ) : Task
ipfsPath string The path to the IPFS object(s) to be outputted
output string The path where output should be stored
archive bool Output a TAR archive
compress bool Compress the output with GZIP compression
compressionLevel int The level of compression (1-9)
리턴 Task

Id() 공개 메소드

Show IPFS Node ID info Prints out information about the specified peer, if no peer is specified, prints out local peers info. ipfs id supports the format option for output with the following keys: : the peers id : agent version : protocol version : public key
public Id ( string peerId = null, string format = null ) : Task
peerId string peer.ID of node to look up
format string optional output format
리턴 Task

IpfsClient() 공개 메소드

public IpfsClient ( ) : Ipfs.Commands
리턴 Ipfs.Commands

IpfsClient() 공개 메소드

public IpfsClient ( Uri address ) : Ipfs.Commands
address System.Uri
리턴 Ipfs.Commands

IpfsClient() 공개 메소드

public IpfsClient ( Uri address, HttpClient httpClient ) : Ipfs.Commands
address System.Uri
httpClient System.Net.Http.HttpClient
리턴 Ipfs.Commands

IpfsClient() 공개 메소드

public IpfsClient ( Uri address, HttpClient httpClient, IJsonSerializer jsonSerializer ) : Ipfs.Commands
address System.Uri
httpClient System.Net.Http.HttpClient
jsonSerializer IJsonSerializer
리턴 Ipfs.Commands

IpfsClient() 공개 메소드

public IpfsClient ( string address ) : Ipfs.Commands
address string
리턴 Ipfs.Commands

Ls() 공개 메소드

List links from an object. Retrieves the object named by and displays the links it contains, with the following format:
public Ls ( string path ) : Task>
path string The path to the IPFS object(s) to list links from
리턴 Task>

Mount() 공개 메소드

Mounts IPFS to the filesystem (read-only) Mount ipfs at a read-only mountpoint on the OS (default: /ipfs and /ipns). All ipfs objects will be accessible under that directory.Note that the root will not be listable, as it is virtual. Access known paths directly. You may have to create /ipfs and /ipfs before using 'ipfs mount'
public Mount ( string f = null, string n = null ) : Task
f string The path where IPFS should be mounted
n string The path where IPNS should be mounted
리턴 Task

Ping() 공개 메소드

send echo request packets to IPFS hosts ipfs ping is a tool to test sending data to other nodes. It finds nodes via the routing system, send pings, wait for pongs, and print out round- trip latency information.
public Ping ( string peerId, int count = null ) : Task
peerId string ID of peer to be pinged
count int number of ping messages to send
리턴 Task

RefsCommand() 공개 메소드

Lists links (references) from an object Retrieves the object named by and displays the link hashes it contains, with the following format:
public RefsCommand ( string ipfsPath, string format = null, bool edges = false, bool unique = false, bool recursive = false ) : Task
ipfsPath string Path to the object(s) to list refs from
format string Emit edges with given format. tokens:
edges bool Emit edge format: ` -> `
unique bool Omit duplicate refs from output
recursive bool Recursively list links of child nodes
리턴 Task

TourCommand() 공개 메소드

An introduction to IPFS This is a tour that takes you through various IPFS concepts, features, and tools to make sure you get up to speed with IPFS very quickly
public TourCommand ( string id ) : Task
id string The id of the topic you would like to tour
리턴 Task

Version() 공개 메소드

public Version ( bool number = false ) : Task
number bool
리턴 Task