Exemple #1
0
        /// <summary>
        /// Load the method that this frame refers to.
        /// </summary>
        public Task <DalvikMethod> GetMethodAsync()
        {
            if (method != null)
            {
                return(method.AsTask());
            }
            var refType = GetReferenceType();

            return(refType.GetMethodsAsync().Select(x => x.FirstOrDefault(m => m.Id.Equals(Location.Method))).SaveAndReturn(x => method = x));
        }