C# 클래스 Pathoschild.DesignByContract.NotEmptyAttribute

상속: System.Attribute, IParameterPrecondition, IReturnValuePrecondition
파일 보기 프로젝트 열기: Pathoschild/DesignByContract

보호된 프로퍼티들

프로퍼티 타입 설명
RaiseErrorOnNull bool

공개 메소드들

메소드 설명
OnParameterPrecondition ( ParameterMetadata parameter, object value ) : void

Validate the requirement on a single method parameter or property setter value.

OnReturnValuePrecondition ( ReturnValueMetadata returnValue, object value ) : void

Validate the requirement on a method or property return value.

보호된 메소드들

메소드 설명
IsEmpty ( object value ) : bool

Get whether the value is an empty enumeration.

IsNull ( object value ) : bool

Get whether the value is null and RaiseErrorOnNull is true.

메소드 상세

IsEmpty() 보호된 메소드

Get whether the value is an empty enumeration.
protected IsEmpty ( object value ) : bool
value object The value to check.
리턴 bool

IsNull() 보호된 메소드

Get whether the value is null and RaiseErrorOnNull is true.
protected IsNull ( object value ) : bool
value object The value to check.
리턴 bool

OnParameterPrecondition() 공개 메소드

Validate the requirement on a single method parameter or property setter value.
The contract requirement was not met.
public OnParameterPrecondition ( ParameterMetadata parameter, object value ) : void
parameter Pathoschild.DesignByContract.Framework.ParameterMetadata The parameter metadata.
value object The parameter value.
리턴 void

OnReturnValuePrecondition() 공개 메소드

Validate the requirement on a method or property return value.
The contract requirement was not met.
public OnReturnValuePrecondition ( ReturnValueMetadata returnValue, object value ) : void
returnValue Pathoschild.DesignByContract.Framework.ReturnValueMetadata The return value metadata.
value object The return value.
리턴 void

프로퍼티 상세

RaiseErrorOnNull 보호되어 있는 프로퍼티

Whether to raise a validation error on null values.
protected bool RaiseErrorOnNull
리턴 bool