Castle.Facilities.Remoting.RemotingRegistry.Publish C# (CSharp) Метод

Publish() публичный Метод

public Publish ( Type serviceType ) : void
serviceType System.Type
Результат void
		public void Publish(Type serviceType)
		{
			// Resolve first
			var mbr = (MarshalByRefObject)kernel.Resolve(serviceType);

			// then get the model
			var model = GetModel(serviceType);

			RemoteMarshallerActivator.Marshal(mbr, model);
		}

Same methods

RemotingRegistry::Publish ( string key ) : void