Files
Aug2021-Cpp2IL-Dump/SA.iOS/CoreLocation/ISN_ICLLocationManagerDelegate.cs
2026-04-10 22:50:51 +02:00

42 lines
1.0 KiB
C#

using System;
using Cpp2IlInjected;
using SA.Foundation.Templates;
namespace SA.iOS.CoreLocation
{
// Token: 0x02000102 RID: 258
[Token(Token = "0x20000DA")]
public interface ISN_ICLLocationManagerDelegate
{
// Token: 0x060004E7 RID: 1255
[Token(Token = "0x6000471")]
[Address(Slot = "0")]
void DidChangeAuthorizationStatus(ISN_CLAuthorizationStatus authorizationStatus);
// Token: 0x060004E8 RID: 1256
[Token(Token = "0x6000472")]
[Address(Slot = "1")]
void DidUpdateLocations(ISN_CLLocationArray locations);
// Token: 0x060004E9 RID: 1257
[Token(Token = "0x6000473")]
[Address(Slot = "2")]
void DidFailWithError(SA_Error error);
// Token: 0x060004EA RID: 1258
[Token(Token = "0x6000474")]
[Address(Slot = "3")]
void DidFinishDeferredUpdatesWithError(SA_Error error);
// Token: 0x060004EB RID: 1259
[Token(Token = "0x6000475")]
[Address(Slot = "4")]
void DidPauseLocationUpdates();
// Token: 0x060004EC RID: 1260
[Token(Token = "0x6000476")]
[Address(Slot = "5")]
void DidResumeLocationUpdates();
}
}