DataDirect XML Converters 5.0 Send comments on this topic.
MaxBufferSize Property
See Also 
DDTek.XmlConverter Namespace > Configuration Class : MaxBufferSize Property




Gets or sets the current size limit for the memory buffer.

Syntax

Visual Basic (Declaration) 
Public Property MaxBufferSize As Integer
Visual Basic (Usage)Copy Code
Dim instance As Configuration
Dim value As Integer
 
instance.MaxBufferSize = value
 
value = instance.MaxBufferSize
C# 
public int MaxBufferSize {get; set;}
Managed Extensions for C++ 
public: __property int get_MaxBufferSize();
public: __property void set_MaxBufferSize( 
   int value
);
C++/CLI 
public:
property int MaxBufferSize {
   int get();
   void set (int value);
}

Return Value

A positive integer, or Configuration.UNLIMITED_BUFFER.

Remarks

Certain xml conversions require the use of an internal buffer. This property controlls how large that buffer can be before it overflows to a temp file. A positive integer value indicates the maximum allowable size, while the value UNLIMITED_BUFFER indicates the buffer may grow without bound. The default value is 1MB.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2009 All Rights Reserved.