C# 클래스 Habanero.Base.DataMappers.BoolDataMapper

Data mapper for boolean types
상속: Habanero.Base.DataMappers.DataMapper
파일 보기 프로젝트 열기: Chillisoft/habanero 1 사용 예제들

공개 메소드들

메소드 설명
TryParsePropValue ( object valueToParse, object &returnValue ) : bool

This method provides the functionality to convert any object to the appropriate type for this mapper. The default behaviour only handles null values, empty strings and DBNull.Value and parses all three to null. This method should be overridden in subtypes to parse values to the type you want.

메소드 상세

TryParsePropValue() 공개 메소드

This method provides the functionality to convert any object to the appropriate type for this mapper. The default behaviour only handles null values, empty strings and DBNull.Value and parses all three to null. This method should be overridden in subtypes to parse values to the type you want.
public TryParsePropValue ( object valueToParse, object &returnValue ) : bool
valueToParse object The value to be attempted to parse
returnValue object the parsed value, if parsing was successful
리턴 bool