ItemCollection.GetFunctions 方法

定义

通过使用此项集合中的指定名称返回函数的所有重载。

重载

名称 说明
GetFunctions(String)

通过使用此项集合中的指定名称返回函数的所有重载。

GetFunctions(String, Boolean)

通过使用此项集合中的指定名称返回函数的所有重载。

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

通过使用此项集合中的指定名称返回函数的所有重载。

GetFunctions(String)

通过使用此项集合中的指定名称返回函数的所有重载。

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)

参数

functionName
String

函数的全名。

返回

一个类型 ReadOnlyCollection<T> 集合,其中包含具有指定名称的所有函数。

适用于

GetFunctions(String, Boolean)

通过使用此项集合中的指定名称返回函数的所有重载。

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)

参数

functionName
String

函数的全名。

ignoreCase
Boolean

true 执行不区分大小写的搜索;否则,为 false.

返回

一个类型 ReadOnlyCollection<T> 集合,其中包含具有指定名称的所有函数。

适用于

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

通过使用此项集合中的指定名称返回函数的所有重载。

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)

参数

functionCollection
Dictionary<String,ReadOnlyCollection<EdmFunction>>

函数字典。

functionName
String

函数的全名。

ignoreCase
Boolean

true 执行不区分大小写的搜索;否则,为 false.

返回

ReadOnlyCollection 类型的集合,其中包含具有指定名称的所有函数。

适用于