SmtpPermission.AddPermission(SmtpAccess) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the specified access level value to the permission.
public:
void AddPermission(System::Net::Mail::SmtpAccess access);
public void AddPermission (System.Net.Mail.SmtpAccess access);
member this.AddPermission : System.Net.Mail.SmtpAccess -> unit
Public Sub AddPermission (access As SmtpAccess)
Parameters
- access
- SmtpAccess
One of the SmtpAccess values.
Examples
The following code example adds Connect access to a permission object.
static SmtpPermission^ GiveFullAccess(
SmtpPermission^ permission)
{
permission->AddPermission(SmtpAccess::Connect);
return permission;
}
public static SmtpPermission GiveFullAccess(SmtpPermission permission)
{
permission.AddPermission(SmtpAccess.Connect);
return permission;
}
Remarks
Use this method to modify access to Simple Mail Transport Protocol servers by adding to the state of this permission instance.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.