… 0.0.0ţ˙˙˙ ˙˙fš†!ë5˜9Ý4QÁóBí7€˙˙˙˙€Ś€˛€ E€ ހ#€.€,€5a€ ހ#€.€,€†€r€ ހ# €.€, €H€Ť€˙˙˙˙ €1€1€˙˙˙˙ @ހ€ Q€j€ń€J˙˙˙˙Ŕ1€1€˙˙˙˙€ހ€€j€˙˙˙˙€\›€˙˙˙˙€H€r˙˙˙˙€1€1€˙˙˙˙@ހ€Q€j€H€w˙˙˙˙€1€1€˙˙˙˙@ހ€Q€j€H€€˙˙˙˙€1€1€˙˙˙˙@ހ€Q€j€y€ € ހ#!€.€,"€€…˙˙˙˙#@1€1€˙˙˙˙$ހ€%.€j€&Ő€“˙˙˙˙'€1€1€˙˙˙˙(Ŕހ€)€j€˙˙˙˙*€H€›€˙˙˙˙+€1€1€˙˙˙˙,@ހ€-Q€j€.y€ € /ހ#0€.€,1€ €§2@ž€ś 3@ހ#4€.€,5€H€ť˙˙˙˙6€1€1€˙˙˙˙7@ހ€8Q€j€9H€Ć˙˙˙˙:€1€1€˙˙˙˙;@ހ€<Q€j€=H€Ř˙˙˙˙>€1€1€˙˙˙˙?@ހ€@Q€j€AMonoImporterPPtrm_FileIDm_PathIDPPtrm_ExternalObjectsSourceAssetIdentifiertypeassemblynamem_UsedFileIDsm_DefaultReferencesexecutionOrdericonm_UserDatam_AssetBundleNamem_AssetBundleVariants˙˙ŁGń×܏Z56 :!@iÁJ*€7€˙˙˙˙€Ś€˛€E€ ހ€.€€(a€ ހ€.€€†€r€ ހ €.€ €H€Ť€˙˙˙˙ €1€1€˙˙˙˙ @ހ€ Q€j€H€ę€˙˙˙˙€1€1€˙˙˙˙@ހ€Q€j€ń€=˙˙˙˙€1€1€˙˙˙˙€ހ€€j€˙˙˙˙€H€›€˙˙˙˙€1€1€˙˙˙˙@ހ€Q€j€y€ € ހ€.€€y€Q ހ€.€ €ހX!H€i˙˙˙˙"€1€1€˙˙˙˙#@ހ€$Q€j€%H€u˙˙˙˙&€1€1€˙˙˙˙'@ހ€(Q€j€)PPtrm_FileIDm_PathIDPPtrm_DefaultReferencesm_Iconm_ExecutionOrderm_ClassNamem_Namespace\ŕyŻ`ŔŕyŻReadOnlyHttpResponseLusing System.Collections.Generic; namespace Unity.Services.Core.Networking.Internal { /// /// Read-only handle to a . /// struct ReadOnlyHttpResponse { HttpResponse m_Response; /// /// Create a read-only handle to the given . /// /// /// The response to create the read-only handle for. /// public ReadOnlyHttpResponse(HttpResponse response) { m_Response = response; } /// public ReadOnlyHttpRequest Request => m_Response.Request; /// public IReadOnlyDictionary Headers => m_Response.Headers; /// public byte[] Data => m_Response.Data; /// public long StatusCode => m_Response.StatusCode; /// /// /// Can be filled by the server for HTTP errors or by the local request manager for network errors. /// public string ErrorMessage => m_Response.ErrorMessage; /// public bool IsHttpError => m_Response.IsHttpError; /// public bool IsNetworkError => m_Response.IsNetworkError; } } ReadOnlyHttpResponse