ApiInformation.IsMethodPresent Metodo

Definizione

Overload

IsMethodPresent(String, String)

Restituisce true o false per indicare se è presente un metodo specificato per un tipo specificato.

IsMethodPresent(String, String, UInt32)

Restituisce true o false per indicare se è presente un overload del metodo specificato con il numero specificato di parametri di input per un tipo specificato.

IsMethodPresent(String, String)

Restituisce true o false per indicare se è presente un metodo specificato per un tipo specificato.

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

Parametri

typeName
String

Platform::String

winrt::hstring

Nome completo dello spazio dei nomi del tipo.

methodName
String

Platform::String

winrt::hstring

Nome del metodo.

Restituisce

Boolean

bool

True se il metodo specificato è presente per il tipo; in caso contrario, false.

Attributi

Esempio

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

Vedi anche

Si applica a

IsMethodPresent(String, String, UInt32)

Restituisce true o false per indicare se è presente un overload del metodo specificato con il numero specificato di parametri di input per un tipo specificato.

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

Parametri

typeName
String

Platform::String

winrt::hstring

Nome completo dello spazio dei nomi del tipo.

methodName
String

Platform::String

winrt::hstring

Nome del metodo.

inputParameterCount
UInt32

unsigned int

uint32_t

Numero di parametri di input per l'overload.

Restituisce

Boolean

bool

True se il metodo specificato è presente per il tipo; in caso contrario, false.

Attributi

Esempio

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

Vedi anche

Si applica a