This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var customFields = new MergeVar | |
{ | |
//{"JTITLE", data["JobTitle"]}, | |
//{"PCODE", data["PostCode"]} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
subscriber.Add(subscriptionData["EmailAddress"], subscriptionData["Name"], | |
BuildCustomFields(subscriptionData), false); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static List<SubscriberCustomField> BuildCustomFields(FormDataCollection subscriptionData) | |
{ | |
var customFields = new List<SubscriberCustomField> | |
{ | |
new SubscriberCustomField | |
{ | |
Key = "JobTitle", | |
Value = subscriptionData["JobTitle"] | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nodeQuery name="Query1" selectCount="10"> | |
<where property="IsWebPage" operator="Equals" value="true" /> | |
</nodeQuery> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nodeQuery name="Query1" selectCount="10"> | |
<where property="IsHomePage" operator="Equals" value="true" /> | |
</nodeQuery> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nodeQuery name="Query1" selectCount="10"> | |
<where property="NotIn" operator="IsEqualTo" value="1234" /> | |
</nodeQuery> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nodeQuery name="Query1" selectCount="10"> | |
<where property="In" operator="IsEqualTo" value="1234" /> | |
</nodeQuery> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nodeQuery name="Query1" selectCount="10"> | |
<where property="SynchronisationType" operator="IsNotNull" /> | |
</nodeQuery> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nodeQuery name="Query1" selectCount="10"> | |
<where property="SynchronisationType" operator="IsNull" /> | |
</nodeQuery> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nodeQuery name="Query1" selectCount="10"> | |
<where property="SynchronisationType" operator="IsNotEmpty" /> | |
</nodeQuery> |