internal static CancelableAsyncResultWrapper GetInstance()
        {
            CancelableAsyncResult real = default(CancelableAsyncResult);

            RealInstanceFactory(ref real);
            var instance = (CancelableAsyncResultWrapper)CancelableAsyncResultWrapper.GetWrapper(real);

            InstanceFactory(ref instance);
            if (instance == null)
            {
                Assert.Inconclusive("Could not Create Test Instance");
            }
            return(instance);
        }
 static partial void InstanceFactory(ref CancelableAsyncResultWrapper instance, [CallerMemberName] string callerName = "");