SetupSet(TProperty) Method

Moq

Collapse imageExpand ImageCopy imageCopyHover image
Specifies a setup for an invocation on a property setter with the given propertyName.

Namespace: Moq.Protected
Assembly: Moq (in Moq.dll) Version: 4.0.10827.0 (4.0.0.0)

Syntax

C#
ISetupSetter<TMock, TProperty> SetupSet<TProperty>(
	string propertyName,
	Object value
)

Parameters

propertyName
Type: System..::..String
The name of the property.
value
Type: System..::..Object
The property value. If argument matchers are used, remember to use ItExpr rather than It.

Type Parameters

TProperty
The type of the property.

See Also