The network status indicator is controlled by the NetworkActivityIndicatorVisible property on the shared UIApplication.
You can query the current status by examining this property, and you can turn the spinner on and off by setting its value:
void SetBusy ()
{
UIApplication.SharedApplication.NetworkActivityIndicatorVisible = true;
}