ItemCollection.TryGetType メソッド (String, String, Boolean, EdmType%)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
この項目コレクションから、指定された型名と名前空間名を使用して、EdmType オブジェクトを返します。
名前空間: System.Data.Entity.Core.Metadata.Edm
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Function TryGetType ( _
name As String, _
namespaceName As String, _
ignoreCase As Boolean, _
<OutAttribute> ByRef type As EdmType _
) As Boolean
'使用
Dim instance As ItemCollection
Dim name As String
Dim namespaceName As String
Dim ignoreCase As Boolean
Dim type As EdmType
Dim returnValue As Boolean
returnValue = instance.TryGetType(name, _
namespaceName, ignoreCase, type)
public bool TryGetType(
string name,
string namespaceName,
bool ignoreCase,
out EdmType type
)
public:
bool TryGetType(
String^ name,
String^ namespaceName,
bool ignoreCase,
[OutAttribute] EdmType^% type
)
member TryGetType :
name:string *
namespaceName:string *
ignoreCase:bool *
type:EdmType byref -> bool
public function TryGetType(
name : String,
namespaceName : String,
ignoreCase : boolean,
type : EdmType
) : boolean
パラメーター
- name
型 : System.String
型の名前。
- namespaceName
型 : System.String
型の名前空間。
- ignoreCase
型 : System.Boolean
大文字と小文字を区別せずに検索する場合は true、それ以外の場合は false。
- type
型 : System.Data.Entity.Core.Metadata.Edm.EdmType%
このメソッドから制御が戻った時点で、この出力パラメーターには EdmType オブジェクトが格納されます。 項目コレクションに、指定された名前と名前空間名に一致する型が存在しなかった場合、この出力パラメーターには NULL が格納されます。
戻り値
型 : System.Boolean
検索条件と一致する型が存在した場合は true、それ以外の場合は false。