Share via


CommonMethodNameTransforms.Prepend(String) Method

Definition

Gets a function that prepends a particular string in front of any RPC method name.

public static Func<string,string> Prepend (string prefix);
static member Prepend : string -> Func<string, string>
Public Shared Function Prepend (prefix As String) As Func(Of String, String)

Parameters

prefix
String

The prefix to prepend to any method name. This value must not be null. When this value is the empty string, no transformation is performed by the returned function.

Returns

The transform function.

Applies to