Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1640 for trunk/sources


Ignore:
Timestamp:
04/23/09 17:22:11 (15 years ago)
Author:
kgrading
Message:

vchanged max size (#467)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Contracts/3.2/WcfSettings.cs

    r1587 r1640  
    2424#else
    2525      NetTcpBinding binding = new NetTcpBinding();
     26      binding.MaxBufferSize = int.MaxValue;
     27      binding.MaxReceivedMessageSize = int.MaxValue;
     28      binding.ReaderQuotas.MaxArrayLength = int.MaxValue;
     29      binding.ReaderQuotas.MaxStringContentLength = int.MaxValue;
    2630#endif
    2731      return binding;
Note: See TracChangeset for help on using the changeset viewer.