ItemCollection.GetFunctions Method

Definition

Returns all the overloads of the functions by using the specified name from this item collection.

Overloads

GetFunctions(String)

Returns all the overloads of the functions by using the specified name from this item collection.

GetFunctions(String, Boolean)

Returns all the overloads of the functions by using the specified name from this item collection.

GetFunctions(Dictionary<String,ReadOnlyCollection<EdmFunction>>, String, Boolean)

Returns all the overloads of the functions by using the specified name from this item collection.

GetFunctions(String)

Returns all the overloads of the functions by using the specified name from this item collection.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Data::Metadata::Edm::EdmFunction ^> ^ GetFunctions(System::String ^ functionName);
public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions (string functionName);
member this.GetFunctions : string -> System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>
Public Function GetFunctions (functionName As String) As ReadOnlyCollection(Of EdmFunction)

Parameters

functionName
String

The full name of the function.

Returns

A collection of type ReadOnlyCollection<T> that contains all the functions that have the specified name.

Applies to

GetFunctions(String, Boolean)

Returns all the overloads of the functions by using the specified name from this item collection.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Data::Metadata::Edm::EdmFunction ^> ^ GetFunctions(System::String ^ functionName, bool ignoreCase);
public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions (string functionName, bool ignoreCase);
member this.GetFunctions : string * bool -> System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>
Public Function GetFunctions (functionName As String, ignoreCase As Boolean) As ReadOnlyCollection(Of EdmFunction)

Parameters

functionName
String

The full name of the function.

ignoreCase
Boolean

true to perform the case-insensitive search; otherwise, false.

Returns

A collection of type ReadOnlyCollection<T> that contains all the functions that have the specified name.

Applies to

GetFunctions(Dictionary<String,ReadOnlyCollection<EdmFunction>>, String, Boolean)

Returns all the overloads of the functions by using the specified name from this item collection.

protected:
 static System::Collections::ObjectModel::ReadOnlyCollection<System::Data::Metadata::Edm::EdmFunction ^> ^ GetFunctions(System::Collections::Generic::Dictionary<System::String ^, System::Collections::ObjectModel::ReadOnlyCollection<System::Data::Metadata::Edm::EdmFunction ^> ^> ^ functionCollection, System::String ^ functionName, bool ignoreCase);
protected static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions (System.Collections.Generic.Dictionary<string,System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>> functionCollection, string functionName, bool ignoreCase);
static member GetFunctions : System.Collections.Generic.Dictionary<string, System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>> * string * bool -> System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>
Protected Shared Function GetFunctions (functionCollection As Dictionary(Of String, ReadOnlyCollection(Of EdmFunction)), functionName As String, ignoreCase As Boolean) As ReadOnlyCollection(Of EdmFunction)

Parameters

functionCollection
Dictionary<String,ReadOnlyCollection<EdmFunction>>

A dictionary of functions.

functionName
String

The full name of the function.

ignoreCase
Boolean

true to perform the case-insensitive search; otherwise, false.

Returns

A collection of type ReadOnlyCollection that contains all the functions that have the specified name.

Applies to