Gets or sets the Url that will receive Instant Payment Notifications through PayPal's IPN mechanism.

Namespace:  C1.Web.C1PayPal
Assembly:  C1.Web.C1PayPal.2 (in C1.Web.C1PayPal.2.dll)

Syntax

C#
[BindableAttribute(true)]
[DescriptionAttribute("URL to receive instant payment notifications (IPN)")]
[DefaultValueAttribute("")]
[CategoryAttribute("Behavior")]
[EditorAttribute(typeof(UrlEditor), typeof(UITypeEditor))]
public string NotifyURL { get; set; }
Visual Basic (Declaration)
<BindableAttribute(True)> _
<DescriptionAttribute("URL to receive instant payment notifications (IPN)")> _
<DefaultValueAttribute("")> _
<CategoryAttribute("Behavior")> _
<EditorAttribute(GetType(UrlEditor), GetType(UITypeEditor))> _
Public Property NotifyURL As String

Remarks

For details about IPN, please refer to the PayPal IPN documentation (www.PayPal.com/IPN).

See Also