AllJoynUnity.AllJoyn.BusObject._PropertyGet C# (CSharp) Method

_PropertyGet() private method

private _PropertyGet ( IntPtr context, IntPtr ifcName, IntPtr propName, IntPtr val ) : void
context System.IntPtr
ifcName System.IntPtr
propName System.IntPtr
val System.IntPtr
return void
            private void _PropertyGet(IntPtr context, IntPtr ifcName, IntPtr propName, IntPtr val)
            {
                OnPropertyGet(Marshal.PtrToStringAuto(ifcName),
                    Marshal.PtrToStringAuto(propName), new MsgArg(val));
            }