Share via


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 형식의 컬렉션입니다.

적용 대상