ODataUriParser.FunctionParameterAliasCallback Property
Gets or sets a callback that returns the raw string value for an aliased function parameter.
Namespace: Microsoft.Data.OData.Query
Assembly: Microsoft.Data.OData (in Microsoft.Data.OData.dll)
Syntax
'Declaration
Public Property FunctionParameterAliasCallback As Func(Of String, String)
Get
Set
'Usage
Dim instance As ODataUriParser
Dim value As Func(Of String, String)
value = instance.FunctionParameterAliasCallback
instance.FunctionParameterAliasCallback = value
public Func<string, string> FunctionParameterAliasCallback { get; set; }
public:
property Func<String^, String^>^ FunctionParameterAliasCallback {
Func<String^, String^>^ get ();
void set (Func<String^, String^>^ value);
}
member FunctionParameterAliasCallback : Func<string, string> with get, set
function get FunctionParameterAliasCallback () : Func<String, String>
function set FunctionParameterAliasCallback (value : Func<String, String>)
Property Value
Type: System.Func<String, String>