public void SetQuotas(QuotaLimits quotas) { Win32.LsaSetQuotasForAccount( this, ref quotas ).ThrowIf(); }
public void SetQuotas(QuotaLimits quotas) { NtStatus status; if ((status = Win32.LsaSetQuotasForAccount( this, ref quotas )) >= NtStatus.Error) { Win32.Throw(status); } }