Exemple #1
0
 public BinaryServerFormatterSinkProvider(IDictionary properties,
                                          ICollection providerData)
 {
     _binaryCore = new BinaryCore(this, properties, AllowedProperties);
 }
Exemple #2
0
 public BinaryServerFormatterSinkProvider()
 {
     _binaryCore = BinaryCore.DefaultInstance;
 }
		public BinaryClientFormatterSinkProvider (IDictionary properties,
							  ICollection providerData)
		{
			_binaryCore = new BinaryCore (this, properties, allowedProperties);
		}
		public BinaryClientFormatterSinkProvider ()
		{
			_binaryCore = BinaryCore.DefaultClientInstance;
		}
 public BinaryClientFormatterSinkProvider()
 {
     _binaryCore = BinaryCore.DefaultClientInstance;
 }
		public BinaryServerFormatterSinkProvider ()
		{
			_binaryCore = BinaryCore.DefaultInstance;
		}