internal void DeinitSender()

in src/main/csharp/Destination.cs [180:192]


		internal void DeinitSender()
		{
			if(null != this.producerEndpoint)
			{
				if(null != this.session
					&& null != this.session.Connection)
				{
					this.session.Connection.ReleaseProducer(this.producerEndpoint);
				}

				this.producerEndpoint = null;
			}
		}