Nexus.Client.ModManagement.AddModDescriptor.GetHost C# (CSharp) Method

GetHost() public method

Gets the host where the file is currently being downloaded.
public GetHost ( Int32 index ) : string
index System.Int32
return string
		public string GetHost(Int32 index)
		{
			if (DownloadFiles != null)
				if (DownloadFiles[index] != null)
					return DownloadFiles[index].Host;
			
			return string.Empty;
		}
	}