Share via


IServiceRemotingMessageSerializationProvider.CreateRequestMessageSerializer Method

Definition

Creates a serializer that can serialize and deserialize the remoting request message bodies for the specified service interface.

public Microsoft.ServiceFabric.Services.Remoting.V2.IServiceRemotingRequestMessageBodySerializer CreateRequestMessageSerializer (Type serviceInterfaceType, System.Collections.Generic.IEnumerable<Type> requestWrappedTypes, System.Collections.Generic.IEnumerable<Type> requestBodyTypes = default);
abstract member CreateRequestMessageSerializer : Type * seq<Type> * seq<Type> -> Microsoft.ServiceFabric.Services.Remoting.V2.IServiceRemotingRequestMessageBodySerializer
Public Function CreateRequestMessageSerializer (serviceInterfaceType As Type, requestWrappedTypes As IEnumerable(Of Type), Optional requestBodyTypes As IEnumerable(Of Type) = Nothing) As IServiceRemotingRequestMessageBodySerializer

Parameters

serviceInterfaceType
Type

User service interface

requestWrappedTypes
IEnumerable<Type>

Wrapped Request object Types for all method

requestBodyTypes
IEnumerable<Type>

Parameters for all the methods in the serviceInterfaceType

Returns

An IServiceRemotingRequestMessageBodySerializer that can serialize and deserialize the remoting request message bodies created by the custom service remoting message body factory.

Applies to