Share via


TextIo.newmethod Method

Definition

Overloads

newmethod(String, String)

Creates a new instance of the TextIO class.

newmethod(String, String, Int32)

newmethod(String, String)

Creates a new instance of the TextIO class.

public:
 override void newmethod(System::String ^ text1, System::String ^ text2);
public override void newmethod (string text1, string text2);
override this.newmethod : string * string -> unit
Public Overrides Sub newmethod (text1 As String, text2 As String)

Parameters

text1
String
text2
String

Remarks

A run-time error occurs if the file is accessed with a method that does not correspond to the current opened mode (for example, you try to write to a read-mode file). If an attacker can control input to the new method, a security risk exists. This method runs under Code Access Security. Calls to this method on the server require permission from the FileIoPermission class. Ensure that the user has development privileges by setting the security key to SysDevelopment on the control that calls this method. The following table describes some of the more common code pages that might be specified for the _codePage parameter.

Value CodePage Description
0 ANSI code page (ACP) The code page that supports only characters in the user's current language. The code page is unsuitable for anything that might contain multilingual data or for monolingual data that might be transferred between two systems by using different code pages.
437 OEM code page 437 The IBM PC or MS-DOS code page 437. It is often abbreviated as CP437 and also called DOS-US or OEM-US.
850 Code page 850 A code page that was used in Western Europe running on operating systems, such as MS-DOS.
1200 UTF-16LE The native Unicode representation on Microsoft Windows x86 systems. Almost all characters are stored as 16 bit. Some Chinese characters require 32 bit. An identifying byte-order mark is written, examined, and then discarded when the rest of the character is read.
1201 UTF-16BE The same as UTF-16LE but byte-swapped. Used for compatibility with some non-x86 systems, which store bytes from left-to-right instead of low-order to high-order. An identifying byte-order mark is written first, examined, and then discarded when the rest of the character is read.
65001 UTF-8 Stores Unicode in a byte-stream-friendly way: ASCII characters are 1 byte, European alphabets (including basic diacritics) are 2 bytes per character, and Chinese, Japanese, and Korean require 3 bytes per character. This code page is a good choice when a file contains a very high percentage of ASCII, relatively few other characters, and it is important to save space. For example, .xpo files are stored in UTF-8. UTF-8 files begin with a 3-byte byte-order mark sequence, which is the first item written. It is examined, and then discarded when the rest of the character is read.
54936 GB-18030 Stores data in the GB-18030 character representation that is required by the Chinese government. No byte-order mark is written. These files cannot be distinguished from those written in code page 20936 (GB-2312, which is the ACP for Simplified Chinese systems) unless the file contains characters outside the repertoire of GB-2312.

The following example creates a TextIO object to access a file that is named filename in read mode by using code page 850 encoding.

protected void openFile(str _fileOpen = #io_read) 
{ 
    importFile = new TextIo(filename, _fileOpen, 850); 
    if (! importFile) 
    { 
        throw error(strfmt("@SYS18678", filename)); 
    } 
}

Applies to

newmethod(String, String, Int32)

public:
 void newmethod(System::String ^ _filename, System::String ^ _mode, int _codepage);
public void newmethod (string _filename, string _mode, int _codepage);
override this.newmethod : string * string * int -> unit
Public Sub newmethod (_filename As String, _mode As String, _codepage As Integer)

Parameters

_filename
String

The code page number for the character set to be read from or written to the file. The default value is 1200 (UTF-16LE). This parameter is optional. For more information, see https://docs.microsoft.com/en-us/windows/win32/intl/code-pages. An error is reported if an invalid code page is requested. Notice that a code page is reported as "invalid" if it is not installed on the computer (different code pages may be installed on the client and server). For example, specifying code page 1253 for Greek fails unless the computer's ACP is Greek or Greek language support has been loaded by using Control Panel > Regional Options.

_mode
String

The code page number for the character set to be read from or written to the file. The default value is 1200 (UTF-16LE). This parameter is optional. For more information, see https://docs.microsoft.com/en-us/windows/win32/intl/code-pages. An error is reported if an invalid code page is requested. Notice that a code page is reported as "invalid" if it is not installed on the computer (different code pages may be installed on the client and server). For example, specifying code page 1253 for Greek fails unless the computer's ACP is Greek or Greek language support has been loaded by using Control Panel > Regional Options.

_codepage
Int32

The code page number for the character set to be read from or written to the file. The default value is 1200 (UTF-16LE). This parameter is optional. For more information, see https://docs.microsoft.com/en-us/windows/win32/intl/code-pages.An error is reported if an invalid code page is requested. Notice that a code page is reported as "invalid" if it is not installed on the computer (different code pages may be installed on the client and server). For example, specifying code page 1253 for Greek fails unless the computer's ACP is Greek or Greek language support has been loaded by using Control Panel > Regional Options.

Applies to