ItemCollection.GetFunctions メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この項目コレクションから指定した名前を使用して、関数のすべてのオーバーロードを返します。
オーバーロード
| 名前 | 説明 |
|---|---|
| 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 型のコレクション。