/// <summary> /// Sets the value of a field to an integer. /// </summary> /// <param name="field">Specifies the field to set.</param> /// <param name="value">new value of the field</param> /// <exception cref="ArgumentOutOfRangeException">The field is less than 0 or greater than the /// number of fields in the Record.</exception> /// <remarks><p> /// Win32 MSI API: /// <a href="http://msdn.microsoft.com/library/en-us/msi/setup/msirecordsetinteger.asp">MsiRecordSetInteger</a> /// </p></remarks> /// <seealso cref="SetNullableInteger(int,int?)"/> public void SetInteger(int field, int value) { this.CheckRange(field); uint ret = RemotableNativeMethods.MsiRecordSetInteger((int)this.Handle, (uint)field, value); if (ret != 0) { throw InstallerException.ExceptionFromReturnCode(ret); } }