Base.USocketManager.this C# (CSharp) Method

this() public method

public this ( IntPtr peerPtr ) : USocket
peerPtr IntPtr
return USocket
		public USocket this[IntPtr peerPtr]
		{
			get
			{
				if (!this.sockets.ContainsKey(peerPtr))
				{
					throw new KeyNotFoundException("No Peer Key");
				}
				return this.sockets[peerPtr];
			}
		}
	}