UnityEngine.Network.INTERNAL_CALL_CloseConnection C# (CSharp) Method

INTERNAL_CALL_CloseConnection() private method

private INTERNAL_CALL_CloseConnection ( NetworkPlayer &target, bool sendDisconnectionNotification ) : void
target NetworkPlayer
sendDisconnectionNotification bool
return void
        private static extern void INTERNAL_CALL_CloseConnection(ref NetworkPlayer target, bool sendDisconnectionNotification);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

コード例 #1
0
 public static void CloseConnection(NetworkPlayer target, bool sendDisconnectionNotification)
 {
     Network.INTERNAL_CALL_CloseConnection(ref target, sendDisconnectionNotification);
 }