UnityEngine.Networking.NetworkManager.OnDropConnection C# (CSharp) Method

OnDropConnection() public method

Callback that happens when a NetworkMatch.DropConnection match request has been processed on the server.

public OnDropConnection ( bool success, string extendedInfo ) : void
success bool Indicates if the request succeeded.
extendedInfo string A text description for the error if success is false.
return void
        public virtual void OnDropConnection(bool success, string extendedInfo)
        {
            if (LogFilter.logDebug)
            {
                object[] args = new object[] { success, extendedInfo };
                Debug.LogFormat("NetworkManager OnDropConnection Success:{0}, ExtendedInfo:{1}", args);
            }
        }