Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
RenameTo
string
? System.Net.FtpWebRequest.RenameTo
get
set
Definition at line
136
of file
FtpWebRequest.cs
.
137
{
138
get
139
{
140
return
_renameTo
;
141
}
142
[param: DisallowNull]
143
set
144
{
145
if
(
InUse
)
146
{
147
throw
new
InvalidOperationException
(
System
.
SR
.
net_reqsubmitted
);
148
}
149
if
(
string
.IsNullOrEmpty(
value
))
150
{
151
throw
new
ArgumentException
(
System
.
SR
.
net_ftp_invalid_renameto
,
"value"
);
152
}
153
_renameTo
=
value
;
154
}
155
}
System.Net.FtpWebRequest.InUse
bool InUse
Definition
FtpWebRequest.cs:456
System.Net.FtpWebRequest._renameTo
string _renameTo
Definition
FtpWebRequest.cs:32
System.SR.net_ftp_invalid_renameto
static string net_ftp_invalid_renameto
Definition
SR.cs:88
System.SR.net_reqsubmitted
static string net_reqsubmitted
Definition
SR.cs:16
System.SR
Definition
SR.cs:7
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.Xml.ExceptionType.ArgumentException
@ ArgumentException
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Net
FtpWebRequest
Generated by
1.10.0