Nexus.Client.Util.Downloader.FileMetadata.FileMetadata C# (CSharp) Method

FileMetadata() public method

The default constructor.
This builds a file meatadata object for a file that doesn't exist.
public FileMetadata ( ) : System
return System
		public FileMetadata()
		{
			Exists = false;
			NotFound = false;
			IsHtml = false;
			Length = 0;
			SupportsResume = false;
			Other = new Dictionary<string, string[]>();
		}

Same methods

FileMetadata::FileMetadata ( WebHeaderCollection p_whcFileHeader ) : System