AllJoynUnity.AllJoyn.AuthListener._AuthenticationComplete C# (CSharp) Метод

_AuthenticationComplete() приватный Метод

private _AuthenticationComplete ( IntPtr context, IntPtr authMechanism, IntPtr peerName, int success ) : void
context System.IntPtr
authMechanism System.IntPtr
peerName System.IntPtr
success int
Результат void
            private void _AuthenticationComplete(IntPtr context, IntPtr authMechanism, IntPtr peerName, int success)
            {
                AuthenticationComplete(Marshal.PtrToStringAuto(authMechanism), Marshal.PtrToStringAuto(peerName),
                    success == 1 ? true : false);
            }