C# 클래스 Microsoft.R.Components.Application.Configuration.ConfigurationSettingsWriter

Storage of the R application settings. Settings are written into R file as assignment statements such as 'name <- value'. Value can be string or an expression. The difference is that string values are quoted when written into the file and expressions are written as is.
상속: IConfigurationSettingsWriter
파일 보기 프로젝트 열기: Microsoft/RTVS 1 사용 예제들

공개 메소드들

메소드 설명
ConfigurationSettingsWriter ( StreamWriter writer ) : System
Dispose ( ) : void
SaveSettings ( IEnumerable settings ) : void

Persists settings into R file. Settings are written into R file as assignment statements such as 'settings$name <- value'. Value

비공개 메소드들

메소드 설명
FormatValue ( IConfigurationSetting s ) : string
WriteAttributes ( IConfigurationSetting s ) : void
WriteHeader ( ) : void

메소드 상세

ConfigurationSettingsWriter() 공개 메소드

public ConfigurationSettingsWriter ( StreamWriter writer ) : System
writer System.IO.StreamWriter
리턴 System

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

SaveSettings() 공개 메소드

Persists settings into R file. Settings are written into R file as assignment statements such as 'settings$name <- value'. Value
public SaveSettings ( IEnumerable settings ) : void
settings IEnumerable
리턴 void