메소드 | 설명 | |
---|---|---|
Clone ( ) : object |
Retrieves a copy of itself.
|
|
GetEntryNames ( string section ) : string[] |
Retrieves the names of all the entries inside a section.
|
|
GetSectionNames ( ) : string[] |
Retrieves the names of all the sections.
|
|
GetValue ( string section, string entry ) : object |
Retrieves the value of an entry inside a section.
|
|
Ini ( ) : System | ||
Ini ( Ini ini ) : System | ||
Ini ( string fileName ) : System | ||
RemoveEntry ( string section, string entry ) : void |
Removes an entry from a section. The Profile.Changing event is raised before removing the entry. If its ProfileChangingArgs.Cancel property is set to true, this method returns immediately without removing the entry. After the entry has been removed, the Profile.Changed event is raised. |
|
RemoveSection ( string section ) : void |
Removes a section. The Profile.Changing event is raised before removing the section. If its ProfileChangingArgs.Cancel property is set to true, this method returns immediately without removing the section. After the section has been removed, the Profile.Changed event is raised. |
|
SetValue ( string section, string entry, object value ) : void |
Sets the value for an entry inside a section. If the INI file does not exist, it is created. The Profile.Changing event is raised before setting the value. If its ProfileChangingArgs.Cancel property is set to true, this method returns immediately without setting the value. After the value has been set, the Profile.Changed event is raised. |
메소드 | 설명 | |
---|---|---|
GetPrivateProfileString ( int section, string key, string defaultValue, [ result, int size, string fileName ) : int | ||
GetPrivateProfileString ( string section, int key, string defaultValue, [ result, int size, string fileName ) : int | ||
GetPrivateProfileString ( string section, string key, string defaultValue, StringBuilder result, int size, string fileName ) : int | ||
WritePrivateProfileString ( string section, int key, string value, string fileName ) : int | ||
WritePrivateProfileString ( string section, string key, int value, string fileName ) : int | ||
WritePrivateProfileString ( string section, string key, string value, string fileName ) : int |
public GetEntryNames ( string section ) : string[] | ||
section | string | /// The name of the section holding the entries. |
리턴 | string[] |
public GetValue ( string section, string entry ) : object | ||
section | string | /// The name of the section that holds the entry with the value. |
entry | string | /// The name of the entry where the value is stored. |
리턴 | object |
public RemoveEntry ( string section, string entry ) : void | ||
section | string | /// The name of the section that holds the entry. |
entry | string | /// The name of the entry to remove. |
리턴 | void |
public RemoveSection ( string section ) : void | ||
section | string | /// The name of the section to remove. |
리턴 | void |
public SetValue ( string section, string entry, object value ) : void | ||
section | string | /// The name of the section that holds the entry. |
entry | string | /// The name of the entry where the value will be set. |
value | object | /// The value to set. If it's null, the entry is removed. |
리턴 | void |