Android.GetRegistrationServiceSamples.Callback C# (CSharp) Method

Callback() public method

public Callback ( GetRegistrationResponse response ) : void
response UrbanBlimp.Android.GetRegistrationResponse
return void
        void Callback(GetRegistrationResponse response)
        {
            Debug.WriteLine(response.Active);
            Debug.WriteLine(response.Alias);
            Debug.WriteLine(response.Created);
            Debug.WriteLine(string.Join(" ", response.Tags));
        }
GetRegistrationServiceSamples