AllJoynUnity.AllJoyn.AuthListener._AuthenticationComplete C# (CSharp) Méthode

_AuthenticationComplete() private méthode

private _AuthenticationComplete ( IntPtr context, IntPtr authMechanism, IntPtr peerName, int success ) : void
context System.IntPtr
authMechanism System.IntPtr
peerName System.IntPtr
success int
Résultat void
            private void _AuthenticationComplete(IntPtr context, IntPtr authMechanism, IntPtr peerName, int success)
            {
                AuthenticationComplete(Marshal.PtrToStringAuto(authMechanism), Marshal.PtrToStringAuto(peerName),
                    success == 1 ? true : false);
            }