Apple.GetRegistrationServiceSamples.Callback C# (CSharp) Method

Callback() public method

public Callback ( GetRegistrationResponse response ) : void
response UrbanBlimp.Apple.GetRegistrationResponse
return void
        void Callback(GetRegistrationResponse response)
        {
            Debug.WriteLine(response.Badge);
            Debug.WriteLine(response.Alias);
            Debug.WriteLine(response.QuietTime);
            Debug.WriteLine(response.TimeZone);
            Debug.WriteLine(string.Join(" ", response.Tags));
        }
GetRegistrationServiceSamples