DurableOperationAttribute.CanCreateInstance Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether a new service instance can be created if an activation message is received on this operation. The dispatcher considers messages without an attached instance ID to be activation messages.
public:
property bool CanCreateInstance { bool get(); void set(bool value); };
public bool CanCreateInstance { get; set; }
member this.CanCreateInstance : bool with get, set
Public Property CanCreateInstance As Boolean
Property Value
true
if a new service instance can be created; otherwise, false
.
Remarks
If your contract disallows sessions, then CanCreateInstance must be set to true
for all operations.
If the contract permits or allows sessions, then all operations for which CanCreateInstance is set to true
must be request/response operations: that is, IsOneWay cannot be set to true
.