TorrentPackage

TorrentRootPackage.TorrentPackage property

TORRENT 파일 메타데이터 패키지를 가져옵니다.

public TorrentPackage TorrentPackage { get; }

자산 가치

TORRENT 파일 메타데이터 패키지.

비고

더 알아보기

이 코드 샘플은 TORRENT 파일에서 메타데이터를 업데이트하는 방법을 보여줍니다.

using (Metadata metadata = new Metadata(Constants.InputTorrent))
{
    var root = metadata.GetRootPackage<TorrentRootPackage>();

    root.TorrentPackage.Comment = "test comment";
    root.TorrentPackage.CreatedBy = "GroupDocs.Metadata";
    root.TorrentPackage.CreationDate = DateTime.Today;

    metadata.Save(Constants.OutputTorrent);
}

또한보십시오