System.ComponentModel.AsyncOperation.VerifyDelegateNotNull C# (CSharp) 메소드

VerifyDelegateNotNull() 개인적인 메소드

private VerifyDelegateNotNull ( SendOrPostCallback d ) : void
d SendOrPostCallback
리턴 void
        private void VerifyDelegateNotNull(SendOrPostCallback d)
        {
            if (d == null)
            {
                throw new ArgumentNullException(SR.GetString(SR.Async_NullDelegate), "d");
            }
        }