Bottles.Services.Tests.Remote.Examples.control_appdomain_setup C# (CSharp) Метод

control_appdomain_setup() приватный Метод

private control_appdomain_setup ( ) : void
Результат void
        public void control_appdomain_setup()
        {
            // SAMPLE: appdomain-setup
            var runner = new RemoteServiceRunner(x => {

                // ShadowCopyFiles should be either "true" or "false"
                x.Setup.ShadowCopyFiles = true.ToString();

                // RemoteServiceRunner makes some guesses about the
                // PrivateBinPath based on the folders it sees,
                // but once in a while you may want to override
                // the bin path
                x.Setup.PrivateBinPath = "bin";
            });
            // ENDSAMPLE
        }