UnityEditor.HeapshotWindow.EventHeapShotReceived C# (CSharp) Метод

EventHeapShotReceived() приватный статический Метод

private static EventHeapShotReceived ( string name ) : void
name string
Результат void
        private static void EventHeapShotReceived(string name)
        {
            Debug.Log("Received " + name);
            if (onReceivedHeapshot != null)
            {
                onReceivedHeapshot(name);
            }
        }