AllJoynUnity.AllJoyn.BusAttachment.BusAttachment C# (CSharp) Method

BusAttachment() public method

public BusAttachment ( string applicationName, bool allowRemoteMessages ) : System
applicationName string
allowRemoteMessages bool
return System
            public BusAttachment(string applicationName, bool allowRemoteMessages)
            {
                _busAttachment = alljoyn_busattachment_create(applicationName, allowRemoteMessages ? 1 : 0);

                if(_sBusAttachmentMap == null) _sBusAttachmentMap = new Dictionary<IntPtr, BusAttachment>();
                _sBusAttachmentMap.Add(_busAttachment, this);
            }
AllJoyn.BusAttachment