ApiInformation.IsMethodPresent メソッド

定義

オーバーロード

IsMethodPresent(String, String)

指定した型に対して指定したメソッドが存在するかどうかを示す true または false を返します。

IsMethodPresent(String, String, UInt32)

指定した型に対して、指定した数の入力パラメーターを持つ指定したメソッド オーバーロードが存在するかどうかを示す true または false を返します。

IsMethodPresent(String, String)

指定した型に対して指定したメソッドが存在するかどうかを示す true または false を返します。

public:
 static bool IsMethodPresent(Platform::String ^ typeName, Platform::String ^ methodName);
/// [Windows.Foundation.Metadata.Overload("IsMethodPresent")]
 static bool IsMethodPresent(winrt::hstring const& typeName, winrt::hstring const& methodName);
[Windows.Foundation.Metadata.Overload("IsMethodPresent")]
public static bool IsMethodPresent(string typeName, string methodName);
function isMethodPresent(typeName, methodName)
Public Shared Function IsMethodPresent (typeName As String, methodName As String) As Boolean

パラメーター

typeName
String

Platform::String

winrt::hstring

型の名前空間修飾名。

methodName
String

Platform::String

winrt::hstring

メソッドの名前。

戻り値

Boolean

bool

True を指定 したメソッドが型に存在する場合。それ以外の場合は false

属性

if (Windows.Foundation.Metadata.ApiInformation.IsMethodPresent("Windows.Networking.Sockets.StreamSocket", "CancelIOAsync"))
{
    Debug.WriteLine("Windows.Networking.Sockets.StreamSocket.CancelIOAsync method found");
}
else
{
    Debug.WriteLine("Windows.Networking.Sockets.StreamSocket.CancelIOAsync method NOT found");
}

こちらもご覧ください

適用対象

IsMethodPresent(String, String, UInt32)

指定した型に対して、指定した数の入力パラメーターを持つ指定したメソッド オーバーロードが存在するかどうかを示す true または false を返します。

public:
 static bool IsMethodPresent(Platform::String ^ typeName, Platform::String ^ methodName, unsigned int inputParameterCount);
/// [Windows.Foundation.Metadata.Overload("IsMethodPresentWithArity")]
 static bool IsMethodPresent(winrt::hstring const& typeName, winrt::hstring const& methodName, uint32_t const& inputParameterCount);
[Windows.Foundation.Metadata.Overload("IsMethodPresentWithArity")]
public static bool IsMethodPresent(string typeName, string methodName, uint inputParameterCount);
function isMethodPresent(typeName, methodName, inputParameterCount)
Public Shared Function IsMethodPresent (typeName As String, methodName As String, inputParameterCount As UInteger) As Boolean

パラメーター

typeName
String

Platform::String

winrt::hstring

型の名前空間修飾名。

methodName
String

Platform::String

winrt::hstring

メソッドの名前。

inputParameterCount
UInt32

unsigned int

uint32_t

オーバーロードの入力パラメーターの数。

戻り値

Boolean

bool

True を指定 したメソッドが型に存在する場合。それ以外の場合は false

属性

if (Windows.Foundation.Metadata.ApiInformation.IsMethodPresent("Windows.Globalization.PhoneNumberFormatting.PhoneNumberFormatter", "Format", 2))
{
    Debug.WriteLine("Windows.Globalization.PhoneNumberFormatting.PhoneNumberFormatter.Format overload that takes 2 parameters was found");
}
else
{
    Debug.WriteLine("Windows.Globalization.PhoneNumberFormatting.PhoneNumberFormatter.Format overload that takes 2 parameters was NOT found");
}

こちらもご覧ください

適用対象