CodeRinseRepeat.Deluge.Torrent.ToString C# (CSharp) Метод

ToString() публичный Метод

public ToString ( ) : string
Результат string
        public override string ToString()
        {
            return string.Format ("[Torrent: Hash={0}, MaxDownloadSpeed={1}, DownloadSpeed={2}, ConnectedPeers={3}, Ratio={4}," +
                "TotalPeers={5}, TotalSize={6}, State={7}, MaxUploadSpeed={8}, ETA={9}, SavePath={10}, Progress={11}," +
                "TimeAdded={12}, TrackerHost={13}, TotalUploaded={14}, Files={15}, Downloaded={16}, TotalSeeds={17}," +
                "ConnectedSeeds={18}, Name={19}, Trackers={20}, IsAutoManaged={21}, Queue={22}, DistributedCopies={23}," +
                "Comment={24}, ActiveTime={25}, Seeding={26}, UploadSpeed={27}, Private={28}, TotalPayloadUpload={29}," +
                "Paused={30}, SeedRank={31}, SeedingTime={32}, MaxUploadSlots={33}, PrioritizeFirstLast={34}, Message={35}," +
                "MaxConnections={36}, Compact={37}, TotalWanted={38}, RemoveAtRatio={39}, Tracker={40}, Pieces={41}," +
                "TrackerStatus={42}, MoveOnCompleted={43}, NextAnnounce={44}, StopAtRatio={45}, PieceSize={46}," +
                "AllTimeDownload={47}, MoveOnCompletedPath={48}, Peers={49}, TotalPayloadDownload={50}, StopRatio={51}," +
                "Finished={52}]",
                Hash, MaxDownloadSpeed, DownloadSpeed, ConnectedPeers, Ratio, TotalPeers, TotalSize, State, MaxUploadSpeed,
                ETA, SavePath, Progress, TimeAdded, TrackerHost, TotalUploaded, string.Join (",", Files ?? new File[0]),
                Downloaded, TotalSeeds, ConnectedSeeds, Name, string.Join (",", Trackers ?? new Tracker[0]), IsAutoManaged,
                Queue, DistributedCopies, Comment, ActiveTime, Seeding, UploadSpeed, Private, TotalPayloadUpload, Paused,
                SeedRank, SeedingTime, MaxUploadSlots, PrioritizeFirstLast, Message, MaxConnections, Compact, TotalWanted,
                RemoveAtRatio, Tracker, Pieces, TrackerStatus, MoveOnCompleted, NextAnnounce, StopAtRatio, PieceSize,
                AllTimeDownload, MoveOnCompletedPath, string.Join (",", Peers ?? new Peer[0]), TotalPayloadDownload, StopRatio,
                Finished
            );
        }