次の方法で共有


V7TarEntry コンストラクター

定義

オーバーロード

V7TarEntry(TarEntry)

指定したotherエントリを V7 形式に変換して、新しいV7TarEntryインスタンスを初期化します。

V7TarEntry(TarEntryType, String)

指定したエントリの種類とエントリ名を使用して、新しい V7TarEntry インスタンスを初期化します。

V7TarEntry(TarEntry)

ソース:
V7TarEntry.cs
ソース:
V7TarEntry.cs
ソース:
V7TarEntry.cs

指定したotherエントリを V7 形式に変換して、新しいV7TarEntryインスタンスを初期化します。

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

パラメーター

other
TarEntry

TarEntry V7 形式に変換するインスタンス。

例外

other は であり PaxGlobalExtendedAttributesTarEntry 、変換できません。

または

のエントリの other 種類は、V7 形式ではサポートされていません。

適用対象

V7TarEntry(TarEntryType, String)

ソース:
V7TarEntry.cs
ソース:
V7TarEntry.cs
ソース:
V7TarEntry.cs

指定したエントリの種類とエントリ名を使用して、新しい V7TarEntry インスタンスを初期化します。

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

パラメーター

entryType
TarEntryType

エントリの型。

entryName
String

このエントリのパスとファイル名を含む文字列。

例外

entryNamenullです。

entryName が空です。

- または -

エントリの種類は、V7 形式のエントリの作成ではサポートされていません。

注釈

コンストラクターを使用してV7TarEntry(TarEntryType, String)インスタンスを作成する場合は、、および V7RegularFileの各エントリの種類のみがサポートされますHardLinkDirectorySymbolicLink

適用対象