System.Runtime.Remoting.RemotingConfiguration.RemotingConfiguration.RegisterWellKnownClientType C# (CSharp) Method

RegisterWellKnownClientType() public static method

public static RegisterWellKnownClientType ( Type type, string objectUrl ) : void
type System.Type
objectUrl string
return void
		public static void RegisterWellKnownClientType (Type type, string objectUrl) 
		{
			if (type == null) throw new ArgumentNullException ("type");
			if (objectUrl == null) throw new ArgumentNullException ("objectUrl");

			RegisterWellKnownClientType (new WellKnownClientTypeEntry (type, objectUrl));
		}

Same methods

RemotingConfiguration.RemotingConfiguration::RegisterWellKnownClientType ( WellKnownClientTypeEntry entry ) : void