Bamboo.Prevalence.PrevalenceActivator.CreateAutoVersionMigrationFormatter C# (CSharp) 메소드

CreateAutoVersionMigrationFormatter() 개인적인 정적인 메소드

private static CreateAutoVersionMigrationFormatter ( System type ) : BinaryFormatter
type System
리턴 System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
		private static BinaryFormatter CreateAutoVersionMigrationFormatter(System.Type type)
		{
			ISurrogateSelector autoVersionMigrationSurrogate = new AutoVersionMigrationSurrogate(type.Assembly);
			BinaryFormatter formatter = new BinaryFormatter(autoVersionMigrationSurrogate, new StreamingContext(StreamingContextStates.All));
			return formatter;
		}