Base.USocketManager.this C# (CSharp) 메소드

this() 공개 메소드

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