ConoHaNet.OpenStackMember.CreateEmailWebHook C# (CSharp) Method

CreateEmailWebHook() public method

public CreateEmailWebHook ( string emailId, string webhookUrl, string keyword ) : EmailWebHook
emailId string
webhookUrl string
keyword string
return EmailWebHook
        public EmailWebHook CreateEmailWebHook(string emailId, string webhookUrl, string keyword)
        {
            return MailServiceProvider.CreateEmailWebHook(emailId, webhookUrl, keyword, this.DefaultRegion, this.Identity);
        }
OpenStackMember