C# 클래스 Habanero.Smooth.Test.Guard

Performs common argument validation.
파일 보기 프로젝트 열기: Chillisoft/habanero.smooth

공개 메소드들

메소드 설명
AgainstEmptyString ( string argumentValue, string argumentName ) : void

Checks a string argument to ensure it isn't empty.

AgainstNull ( object argumentValue, string argumentName ) : void

Checks an argument to ensure it isn't null.

AgainstNullOrEmptyString ( string argumentValue, string argumentName ) : void

Checks a string argument to ensure it isn't null or empty.

메소드 상세

AgainstEmptyString() 공개 정적인 메소드

Checks a string argument to ensure it isn't empty.
is .
public static AgainstEmptyString ( string argumentValue, string argumentName ) : void
argumentValue string The argument value to check.
argumentName string The name of the argument.
리턴 void

AgainstNull() 공개 정적인 메소드

Checks an argument to ensure it isn't null.
is a null reference.
public static AgainstNull ( object argumentValue, string argumentName ) : void
argumentValue object The argument value to check.
argumentName string The name of the argument.
리턴 void

AgainstNullOrEmptyString() 공개 정적인 메소드

Checks a string argument to ensure it isn't null or empty.
is a null reference. is .
public static AgainstNullOrEmptyString ( string argumentValue, string argumentName ) : void
argumentValue string The argument value to check.
argumentName string The name of the argument.
리턴 void