ItemCollection.GetFunctions Método

Definición

Devuelve todas las sobrecargas de las funciones mediante el uso del nombre especificado de esta colección de elementos.

Sobrecargas

GetFunctions(String)

Devuelve todas las sobrecargas de las funciones mediante el uso del nombre especificado de esta colección de elementos.

GetFunctions(String, Boolean)

Devuelve todas las sobrecargas de las funciones mediante el uso del nombre especificado de esta colección de elementos.

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

Devuelve todas las sobrecargas de las funciones mediante el uso del nombre especificado de esta colección de elementos.

GetFunctions(String)

Devuelve todas las sobrecargas de las funciones mediante el uso del nombre especificado de esta colección de elementos.

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)

Parámetros

functionName
String

Nombre completo de la función.

Devoluciones

Una colección de tipo ReadOnlyCollection<T> que contiene todas las funciones que poseen el nombre especificado.

Se aplica a

GetFunctions(String, Boolean)

Devuelve todas las sobrecargas de las funciones mediante el uso del nombre especificado de esta colección de elementos.

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)

Parámetros

functionName
String

Nombre completo de la función.

ignoreCase
Boolean

Es true para que la búsqueda se realice sin distinción entre mayúsculas y minúsculas; de lo contrario, es false.

Devoluciones

Una colección de tipo ReadOnlyCollection<T> que contiene todas las funciones que poseen el nombre especificado.

Se aplica a

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

Devuelve todas las sobrecargas de las funciones mediante el uso del nombre especificado de esta colección de elementos.

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)

Parámetros

functionCollection
Dictionary<String,ReadOnlyCollection<EdmFunction>>

Diccionario de funciones.

functionName
String

Nombre completo de la función.

ignoreCase
Boolean

Es true para que la búsqueda se realice sin distinción entre mayúsculas y minúsculas; de lo contrario, es false.

Devoluciones

Una colección de tipo ReadOnlyCollection que contiene todas las funciones que tienen el nombre especificado.

Se aplica a