Gablarski.Clients.Update.Update C# (CSharp) Method

Update() public method

public Update ( System.Version version, string installerUrl ) : System
version System.Version
installerUrl string
return System
		public Update (Version version, string installerUrl)
		{
			if (version == null)
				throw new ArgumentNullException ("version");
			if (installerUrl == null)
				throw new ArgumentNullException ("installerUrl");

			Version = version;
			InstallerUrl = installerUrl;
		}
Update