ItemCollection.TryGetType Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an EdmType object by using the specified type name and the namespace name from this item collection.
Overloads
TryGetType(String, String, EdmType) |
Returns an EdmType object by using the specified type name and the namespace name from this item collection. |
TryGetType(String, String, Boolean, EdmType) |
Returns an EdmType object by using the specified type name and the namespace name from this item collection. |
TryGetType(String, String, EdmType)
Returns an EdmType object by using the specified type name and the namespace name from this item collection.
public:
bool TryGetType(System::String ^ name, System::String ^ namespaceName, [Runtime::InteropServices::Out] System::Data::Metadata::Edm::EdmType ^ % type);
public bool TryGetType (string name, string namespaceName, out System.Data.Metadata.Edm.EdmType type);
member this.TryGetType : string * string * EdmType -> bool
Public Function TryGetType (name As String, namespaceName As String, ByRef type As EdmType) As Boolean
Parameters
- name
- String
The name of the type.
- namespaceName
- String
The namespace of the type.
- type
- EdmType
When this method returns, this output parameter contains an EdmType object. If there is no type with the specified name and namespace name in this item collection, this output parameter contains null.
Returns
true
if there is a type that matches the search criteria; otherwise, false
.
Applies to
TryGetType(String, String, Boolean, EdmType)
Returns an EdmType object by using the specified type name and the namespace name from this item collection.
public:
bool TryGetType(System::String ^ name, System::String ^ namespaceName, bool ignoreCase, [Runtime::InteropServices::Out] System::Data::Metadata::Edm::EdmType ^ % type);
public bool TryGetType (string name, string namespaceName, bool ignoreCase, out System.Data.Metadata.Edm.EdmType type);
member this.TryGetType : string * string * bool * EdmType -> bool
Public Function TryGetType (name As String, namespaceName As String, ignoreCase As Boolean, ByRef type As EdmType) As Boolean
Parameters
- name
- String
The name of the type.
- namespaceName
- String
The namespace of the type.
- ignoreCase
- Boolean
true
to perform the case-insensitive search; otherwise, false
.
- type
- EdmType
When this method returns, this output parameter contains an EdmType object. If there is no type with the specified name and namespace name in this item collection, this output parameter contains null.
Returns
true
if there is a type that matches the search criteria; otherwise, false
.