LegacyGipGameControllerProvider.IsPilot(User, String) 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.
Retrieves the ID of the copilot controller if this controller is a pilot.
public:
static Platform::String ^ IsPilot(User ^ user, Platform::String ^ controllerProviderId);
static winrt::hstring IsPilot(User const& user, winrt::hstring const& controllerProviderId);
public static string IsPilot(User user, string controllerProviderId);
function isPilot(user, controllerProviderId)
Public Shared Function IsPilot (user As User, controllerProviderId As String) As String
Parameters
- user
- User
User to check the pairing for.
- controllerProviderId
-
String
Platform::String
winrt::hstring
Provider id for the controller to check for pairings.
Returns
The ID of the copilot controller if this controller is a pilot; otherwise, null.
Examples
public void CopilotSample(GipGameControllerProvider pilotProvider,
GipGameControllerProvider copilotProvider)
{
// Establish a copilot pairing for the given pilot and copilot providers
string pilotId = GameControllerProviderInfo.GetProviderId(pilotProvider);
string copilotId = GameControllerProviderInfo.GetProviderId(copilotProvider);
User user = User.GetDefault();
LegacyGipGameControllerProvider.PairPilotToCopilot(user, pilotId,
copilotId);
// Read copilot properties
LegacyGipGameControllerProvider.IsPilot(user, pilotId); // Returns copilotId
LegacyGipGameControllerProvider.IsPilot(user, copilotId); // Returns null
LegacyGipGameControllerProvider.IsCopilot(user, pilotId); // Returns null
LegacyGipGameControllerProvider.IsCopilot(user, copilotId); // Returns pilotId
// Removes the pairing for both controllers
LegacyGipGameControllerProvider.ClearPairing(user, pilotId);
// Also removes the pairing for both controllers (unnecessary since the pairing was already removed)
LegacyGipGameControllerProvider.ClearPairing(user, copilotId);
}