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);
            }