System::ObjectType::GetType メソッド

ObjectType::GetType() method

typeof() の変換を実装します。プリミティブ型用のオーバーロード。

template<typename T> static std::enable_if<std::is_fundamental<T>::value &&!std::is_enum<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
パラメーター説明
Tプリミティブ型。

ReturnValue

指定された型を記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType() method

typeof() の変換を実装します。列挙型用のオーバーロード。

template<typename T> static std::enable_if<std::is_enum<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
パラメーター説明
Tプリミティブ型。

ReturnValue

指定された型を記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType() method

typeof() の変換を実装します。構造体とポインタ用のオーバーロード。

template<typename T> static std::enable_if<(!std::is_fundamental<T>::value &&!std::is_enum<T>::value &&!IsBoxable<T>::value)||IsExceptionWrapper<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
パラメーター説明
Tプリミティブ型。

ReturnValue

指定された構造体を記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType() method

typeof() の変換を実装します。Nullable 用のオーバーロードです。

template<typename T> static std::enable_if<IsNullable<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
パラメーター説明
TNullable 型。

ReturnValue

指定された構造体を記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType() method

typeof() の変換を実装します。MutlicastDelegate 用のオーバーロード。

template<typename T> static std::enable_if<detail::is_a<T, MulticastDelegate>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
パラメーター説明
TMulticastDelegate 型。

ReturnValue

指定された構造体を記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType() method

typeof() の変換を実装します。構造体とポインタ用のオーバーロード。

template<typename T> static std::enable_if<!std::is_fundamental<T>::value &&!std::is_enum<T>::value &&IsBoxable<T>::value &&!detail::is_a<T, MulticastDelegate>::value &&!IsNullable<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
パラメーター説明
Tプリミティブ型。

ReturnValue

指定された構造体を記述する、または SmartPtr が呼び出された場合は指す型を記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType() method

typeof() の変換を実装します。uint8_t 用のオーバーロード。

const System::TypeInfo & System::ObjectType::GetType()

参照

ObjectType::GetType() method

typeof() の変換を実装します。char16_t 用のオーバーロードです。

const System::TypeInfo & System::ObjectType::GetType()

参照

ObjectType::GetType() method

typeof() の変換を実装します。int32_t 用のオーバーロードです。

const System::TypeInfo & System::ObjectType::GetType()

参照

ObjectType::GetType() method

typeof() の変換を実装します。int64_t 用のオーバーロードです。

const System::TypeInfo & System::ObjectType::GetType()

参照

ObjectType::GetType() method

typeof() の変換を実装します。bool 用のオーバーロードです。

const System::TypeInfo & System::ObjectType::GetType()

参照

ObjectType::GetType() method

typeof() の変換を実装します。Void 用のオーバーロードです。

const System::TypeInfo & System::ObjectType::GetType()

参照

ObjectType::GetType(const String&) method

typeof() の変換を実装します。文字列型用のオーバーロード。

static const System::TypeInfo & System::ObjectType::GetType(const String &obj)
パラメーター説明
Tプリミティブ型。

ReturnValue

String 型を記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType(const T&) method

typeof() の変換を実装します。スマートポインタ用のオーバーロード。

template<typename T> static std::enable_if<IsSmartPtr<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T &obj)
パラメーター説明
Tポインタオブジェクト型。
パラメーター説明
objconst T&ObjectTypeInfo を取得するためのもの。

ReturnValue

渡されたオブジェクトの最終クラスを記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType(const T&) method

typeof() の変換を実装します。構造体用のオーバーロード。

template<typename T> static std::enable_if<!IsExceptionWrapper<T>::value &&!IsSmartPtr<T>::value &&!std::is_fundamental<T>::value &&!std::is_enum<T>::value &&!IsNullable<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T &obj)
パラメーター説明
T構造体型。
パラメーター説明
objconst T&ObjectTypeInfo を取得するためのもの。

ReturnValue

渡されたオブジェクトの最終クラスを記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType(const T&) method

typeof() の変換を実装します。例外用のオーバーロード。

template<typename T> static std::enable_if<IsExceptionWrapper<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T &obj)
パラメーター説明
TException 型。
パラメーター説明
objconst T&ObjectTypeInfo を取得するためのもの。

ReturnValue

渡されたオブジェクトの最終クラスを記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType(const T) method

typeof() の変換を実装します。プリミティブ型用のオーバーロード。

template<typename T> static std::enable_if<std::is_fundamental<T>::value||std::is_enum<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T obj)
パラメーター説明
Tプリミティブ型。
パラメーター説明
objconst TIGNORED

ReturnValue

渡されたオブジェクトの型を記述する TypeInfo 構造体への const 参照。

参照

ObjectType::GetType(const T) method

typeof() の変換を実装します。Nullable 型用のオーバーロードです。

template<typename T> static std::enable_if<IsNullable<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T obj)
パラメーター説明
TNullable 型。
パラメーター説明
objconst TIGNORED

ReturnValue

渡されたオブジェクトの型を記述する TypeInfo 構造体への const 参照。

参照