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

_PropertySet() private method

private _PropertySet ( 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 _PropertySet(IntPtr context, IntPtr ifcName, IntPtr propName, IntPtr val)
            {
                OnPropertySet(Marshal.PtrToStringAuto(ifcName),
                    Marshal.PtrToStringAuto(propName), new MsgArg(val));
            }