Castle.ManagementExtensions.ManagedObjectName.SetupDomain C# (CSharp) Method

SetupDomain() protected method

Sets up the domain. Can be empty but can't be null.
protected SetupDomain ( String domain ) : void
domain String
return void
		protected virtual void SetupDomain(String domain)
		{
			if (domain == null)
			{
				throw new ArgumentNullException("domain");
			}

			this.domain = domain;
		}