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 型のコレクション。

適用対象