C# Class NFluent.Messages.InstanceBlock

Class describing block for any instance of a given type.
Inheritance: IValueDescription
显示文件 Open project: tpierrain/NFluent

Public Methods

Method Description
GetMessage ( ) : string

Gets the message as a string.

InstanceBlock ( Type type ) : System

Initializes a new instance of the InstanceBlock class.

WithEnumerableCount ( long itemsCount ) : void

Adds a description of the number of items (only relevant if the object is an enumerable).

WithHashCode ( bool active = true ) : void

Requests that the Hash value is included in the description block.

WithType ( Type forcedType ) : void

Requests that a specific type is included in the description block.

Default type is the type of the object instance given in constructor.

WithType ( bool active = true, bool full = false ) : void

Requests that the type is included in the description block.

Method Details

GetMessage() public method

Gets the message as a string.
public GetMessage ( ) : string
return string

InstanceBlock() public method

Initializes a new instance of the InstanceBlock class.
public InstanceBlock ( Type type ) : System
type System.Type /// The tested type. ///
return System

WithEnumerableCount() public method

Adds a description of the number of items (only relevant if the object is an enumerable).
public WithEnumerableCount ( long itemsCount ) : void
itemsCount long /// The number of items of the enumerable instance. ///
return void

WithHashCode() public method

Requests that the Hash value is included in the description block.
public WithHashCode ( bool active = true ) : void
active bool /// True to include the type. This is the default value. ///
return void

WithType() public method

Requests that a specific type is included in the description block.
Default type is the type of the object instance given in constructor.
public WithType ( Type forcedType ) : void
forcedType System.Type /// Type to include in the description. ///
return void

WithType() public method

Requests that the type is included in the description block.
public WithType ( bool active = true, bool full = false ) : void
active bool /// True to include the type. This is the default value. ///
full bool /// True to display the full type name (with assembly). ///
return void