There are cases when an operation has no returned values and the client does not care about the success or failure of the invocation.

To support this sort of fire-and-forget invocation, WCF offers one-way operations.

It’s simple to implement. We just need to add “IsOneWay” property to ‘true’ to the [OperationContract] property.

[ServiceContract]

interface IWCFContract

{

[OperationContract(IsOneWay = true)]

void HelloWorld()

}

Note : The Operation Contract must have a “void” return type without any outgoing parameters.

Refer this article for more.

🙂

Leave a Reply

Discover more from Rajeev Pentyala – Technical Blog on Power Platform, Azure and AI

Subscribe now to keep reading and get access to the full archive.

Continue reading