Castle.Facilities.WcfIntegration.Internal.WcfBehaviorInspector.UpdateLifestyle C# (CSharp) Method

UpdateLifestyle() private static method

private static UpdateLifestyle ( ComponentModel model ) : void
model Castle.Core.ComponentModel
return void
		private static void UpdateLifestyle(ComponentModel model)
		{
			if (model.LifestyleType == LifestyleType.Undefined)
			{
				model.LifestyleType = LifestyleType.Transient;
			}
		}
	}