ItemCollection.GetItem 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回由标识指定的项。
重载
GetItem<T>(String) |
使用指定的标识返回一个强类型的 GlobalItem 对象。 |
GetItem<T>(String, Boolean) |
通过使用指定的标识进行区分大小写或不区分大小写的搜索,返回一个强类型的 GlobalItem 对象。 |
GetItem<T>(String)
使用指定的标识返回一个强类型的 GlobalItem 对象。
public:
generic <typename T>
where T : System::Data::Metadata::Edm::GlobalItem T GetItem(System::String ^ identity);
public T GetItem<T> (string identity) where T : System.Data.Metadata.Edm.GlobalItem;
member this.GetItem : string -> 'T (requires 'T :> System.Data.Metadata.Edm.GlobalItem)
Public Function GetItem(Of T As GlobalItem) (identity As String) As T
类型参数
- T
由方法返回的类型。
参数
- identity
- String
项的标识。
返回
T
由标识指定的项。
适用于
GetItem<T>(String, Boolean)
通过使用指定的标识进行区分大小写或不区分大小写的搜索,返回一个强类型的 GlobalItem 对象。
public:
generic <typename T>
where T : System::Data::Metadata::Edm::GlobalItem T GetItem(System::String ^ identity, bool ignoreCase);
public T GetItem<T> (string identity, bool ignoreCase) where T : System.Data.Metadata.Edm.GlobalItem;
member this.GetItem : string * bool -> 'T (requires 'T :> System.Data.Metadata.Edm.GlobalItem)
Public Function GetItem(Of T As GlobalItem) (identity As String, ignoreCase As Boolean) As T
类型参数
- T
由方法返回的类型。
参数
- identity
- String
项的标识。
- ignoreCase
- Boolean
如果执行不区分大小写的搜索,则为 true
;否则为 false
。
返回
T
由标识指定的项。