| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Runtime.InteropServices;
- namespace Urho.Network {
- public partial class Connection {
- public void SendMessage (int msgId, bool reliable, bool inOrder, byte [] buffer, uint contentId = 0)
- {
- Runtime.ValidateRefCounted(this);
- unsafe {
- fixed (byte *p = &buffer[0])
- Connection_SendMessage (handle, msgId, reliable, inOrder, p, (uint) buffer.Length, contentId);
- }
- }
- [DllImport (Consts.NativeImport, CallingConvention=CallingConvention.Cdecl)]
- extern static IntPtr Connection_GetControls (IntPtr handle);
- [DllImport (Consts.NativeImport, CallingConvention=CallingConvention.Cdecl)]
- extern static IntPtr Connection_SetControls (IntPtr handle, IntPtr controlHandle);
-
- public Controls Controls {
- get
- {
- Runtime.ValidateRefCounted(this);
- return new Controls (this, Connection_GetControls (handle));
- }
- set
- {
- Runtime.ValidateRefCounted(this);
- Connection_SetControls (handle, value.handle);
- }
- }
- }
- }
|