Base.TService.Remove C# (CSharp) Method

Remove() public method

public Remove ( long id ) : void
id long
return void
		public override void Remove(long id)
		{
			TChannel channel;
			if (!this.idChannels.TryGetValue(id, out channel))
			{
				return;
			}
			if (channel == null)
			{
				return;
			}
			this.idChannels.Remove(id);
			channel.Dispose();
		}