Udostępnij za pośrednictwem


UstarTarEntry Konstruktory

Definicja

Przeciążenia

UstarTarEntry(TarEntry)

Inicjuje nowe UstarTarEntry wystąpienie, konwertując określony other wpis na format Ustar.

UstarTarEntry(TarEntryType, String)

Inicjuje nowe UstarTarEntry wystąpienie o określonym typie wpisu i nazwie wpisu.

UstarTarEntry(TarEntry)

Źródło:
UstarTarEntry.cs
Źródło:
UstarTarEntry.cs
Źródło:
UstarTarEntry.cs

Inicjuje nowe UstarTarEntry wystąpienie, konwertując określony other wpis na format Ustar.

public:
 UstarTarEntry(System::Formats::Tar::TarEntry ^ other);
public UstarTarEntry (System.Formats.Tar.TarEntry other);
new System.Formats.Tar.UstarTarEntry : System.Formats.Tar.TarEntry -> System.Formats.Tar.UstarTarEntry
Public Sub New (other As TarEntry)

Parametry

other
TarEntry

TarEntry Wystąpienie, które ma być konwertowane na format Ustar.

Wyjątki

other jest wystąpieniem PaxGlobalExtendedAttributesTarEntry .

-lub-

Typ other wpisu nie jest obsługiwany w formacie Ustar.

Dotyczy

UstarTarEntry(TarEntryType, String)

Źródło:
UstarTarEntry.cs
Źródło:
UstarTarEntry.cs
Źródło:
UstarTarEntry.cs

Inicjuje nowe UstarTarEntry wystąpienie o określonym typie wpisu i nazwie wpisu.

public:
 UstarTarEntry(System::Formats::Tar::TarEntryType entryType, System::String ^ entryName);
public UstarTarEntry (System.Formats.Tar.TarEntryType entryType, string entryName);
new System.Formats.Tar.UstarTarEntry : System.Formats.Tar.TarEntryType * string -> System.Formats.Tar.UstarTarEntry
Public Sub New (entryType As TarEntryType, entryName As String)

Parametry

entryType
TarEntryType

Typ wpisu.

entryName
String

Ciąg ze ścieżką i nazwą pliku tego wpisu.

Wyjątki

entryName to null.

entryName jest pusty.

-lub-

Typ wpisu nie jest obsługiwany do tworzenia wpisu w formacie Ustar.

Uwagi

Podczas tworzenia wystąpienia przy użyciu konstruktora UstarTarEntry(TarEntryType, String) obsługiwane są tylko następujące typy wpisów: Directory, HardLink, , SymbolicLinkRegularFile, BlockDevice, , CharacterDevicei Fifo.

Dotyczy