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;
		}