UnityEditor.NetworkDetailStats.NetworkOperationDetails.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
            public void Clear()
            {
                foreach (NetworkDetailStats.NetworkOperationEntryDetails details in this.m_Entries.Values)
                {
                    details.Clear();
                }
                this.totalIn = 0f;
                this.totalOut = 0f;
            }
NetworkDetailStats.NetworkOperationDetails