EdmFunction Constructor (String, String, IEdmTypeReference)
Creates a new instance of the EdmFunction class.
Namespace: Microsoft.Data.Edm.Library
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Sub New ( _
namespaceName As String, _
name As String, _
returnType As IEdmTypeReference _
)
'Usage
Dim namespaceName As String
Dim name As String
Dim returnType As IEdmTypeReference
Dim instance As New EdmFunction(namespaceName, _
name, returnType)
public EdmFunction(
string namespaceName,
string name,
IEdmTypeReference returnType
)
public:
EdmFunction(
String^ namespaceName,
String^ name,
IEdmTypeReference^ returnType
)
new :
namespaceName:string *
name:string *
returnType:IEdmTypeReference -> EdmFunction
public function EdmFunction(
namespaceName : String,
name : String,
returnType : IEdmTypeReference
)
Parameters
- namespaceName
Type: System.String
The namespace of the function.
- name
Type: System.String
The name of the function.
- returnType
Type: Microsoft.Data.Edm.IEdmTypeReference
The return type of the function.