共用方式為


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");
}

另請參閱

適用於