_Solution.SaveAs メソッド
ソリューションを保存します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
Sub SaveAs ( _
FileName As String _
)
void SaveAs(
string FileName
)
void SaveAs(
[InAttribute] String^ FileName
)
abstract SaveAs :
FileName:string -> unit
function SaveAs(
FileName : String
)
パラメーター
FileName
型 : String必須。 保存するソリューションに付けるファイル名。 同名のファイルが存在する場合、そのファイルは上書きされます。
解説
指定したファイル名でソリューションを保存します。
例
Sub SaveAsExample(ByVal dte As DTE2)
' Create the full pathname to NewSolution.sln.
Dim tempPath As String = System.IO.Path.GetTempPath()
Dim solnName As String = "NewSolution"
Dim solnPath As String = tempPath & solnName & ".sln"
' Try to open NewSolution.sln.
Try
dte.Solution.Open(solnPath)
Catch ex As ArgumentException
If MsgBox("Solution " & solnPath & " doesn't exist. " & _
"Create it?", MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
' Create and save NewSolution.sln.
dte.Solution.Create(tempPath, solnName)
dte.Solution.SaveAs(solnPath)
End If
End Try
End Sub
public void SaveAsExample(DTE2 dte)
{
// Create the full pathname to NewSolution.sln.
string tempPath = System.IO.Path.GetTempPath();
string solnName = "NewSolution";
string solnPath = tempPath + solnName + ".sln";
// Try to open NewSolution.sln.
try
{
dte.Solution.Open(solnPath);
}
catch (Exception ex)
{
if (MessageBox.Show("Solution " + solnPath +
" doesn't exist. " + "Create it?", "",
MessageBoxButtons.YesNo) == DialogResult.Yes)
{
// Create and save NewSolution.sln.
dte.Solution.Create(tempPath, solnName);
dte.Solution.SaveAs(solnPath);
}
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。