Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Port
int System.Net.Mail.SmtpClient.Port
get
set
Definition at line
100
of file
SmtpClient.cs
.
101
{
102
get
103
{
104
return
_port
;
105
}
106
set
107
{
108
if
(
InCall
)
109
{
110
throw
new
InvalidOperationException
(
System
.
SR
.
SmtpInvalidOperationDuringSend
);
111
}
112
if
(
value
<= 0)
113
{
114
throw
new
ArgumentOutOfRangeException(
"value"
);
115
}
116
if
(
value
!=
_port
)
117
{
118
_port
=
value
;
119
_servicePoint
=
null
;
120
}
121
}
122
}
System.Net.Mail.SmtpClient.InCall
bool InCall
Definition
SmtpClient.cs:252
System.Net.Mail.SmtpClient._port
int _port
Definition
SmtpClient.cs:22
System.Net.Mail.SmtpClient._servicePoint
ServicePoint _servicePoint
Definition
SmtpClient.cs:62
System.SR.SmtpInvalidOperationDuringSend
static string SmtpInvalidOperationDuringSend
Definition
SR.cs:90
System.SR
Definition
SR.cs:7
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
Referenced by
System.Net.Mail.SmtpClient.SendAsync()
.
System
Net
Mail
SmtpClient
Generated by
1.10.0