C# 클래스 ConstructorIO.Tracker

파일 보기 프로젝트 열기: Constructor-io/constructorio-csharp 1 사용 예제들

공개 메소드들

메소드 설명
TrackClickThrough ( string Term, string AutocompleteSection, HashArgs ExtraParams = null ) : bool

Tracks the fact that someone clicked through a search result on the site.

TrackClickThroughAsync ( string Term, string AutocompleteSection, HashArgs ExtraParams = null ) : Task

Tracks the fact that someone clicked through a search result on the site.

TrackConversion ( string Term, string AutocompleteSection, string ItemName = null, HashArgs ExtraParams = null ) : bool

Tracks the fact that someone converted on your site. Can be for any definition of conversion, whether someone buys a product or signs up or does something important to your site.

TrackConversionAsync ( string Term, string AutocompleteSection, string ItemName = null, HashArgs ExtraParams = null ) : Task

Tracks the fact that someone converted on your site. Can be for any definition of conversion, whether someone buys a product or signs up or does something important to your site.

TrackSearch ( string Term, HashArgs ExtraParams = null ) : bool

Tracks the fact that someone searched on your site. There's no autocompleteSection parameter because if you're searching, you aren't using an autocomplete.

TrackSearchAsync ( string Term, HashArgs ExtraParams = null ) : Task

Tracks the fact that someone searched on your site. There's no autocompleteSection parameter because if you're searching, you aren't using an autocomplete.

비공개 메소드들

메소드 설명
CreateTrackingRequest ( APIRequestType APIPath, string Method, HashArgs ExtraArgs ) : ConstructorIORequest
Tracker ( ConstructorIOAPI ParentAPI ) : System

메소드 상세

TrackClickThrough() 공개 메소드

Tracks the fact that someone clicked through a search result on the site.
public TrackClickThrough ( string Term, string AutocompleteSection, HashArgs ExtraParams = null ) : bool
Term string
AutocompleteSection string
ExtraParams HashArgs Any extra parameters to be included in the body of the
리턴 bool

TrackClickThroughAsync() 공개 메소드

Tracks the fact that someone clicked through a search result on the site.
public TrackClickThroughAsync ( string Term, string AutocompleteSection, HashArgs ExtraParams = null ) : Task
Term string
AutocompleteSection string
ExtraParams HashArgs
리턴 Task

TrackConversion() 공개 메소드

Tracks the fact that someone converted on your site. Can be for any definition of conversion, whether someone buys a product or signs up or does something important to your site.
public TrackConversion ( string Term, string AutocompleteSection, string ItemName = null, HashArgs ExtraParams = null ) : bool
Term string
AutocompleteSection string
ItemName string
ExtraParams HashArgs
리턴 bool

TrackConversionAsync() 공개 메소드

Tracks the fact that someone converted on your site. Can be for any definition of conversion, whether someone buys a product or signs up or does something important to your site.
public TrackConversionAsync ( string Term, string AutocompleteSection, string ItemName = null, HashArgs ExtraParams = null ) : Task
Term string
AutocompleteSection string
ItemName string
ExtraParams HashArgs
리턴 Task

TrackSearch() 공개 메소드

Tracks the fact that someone searched on your site. There's no autocompleteSection parameter because if you're searching, you aren't using an autocomplete.
public TrackSearch ( string Term, HashArgs ExtraParams = null ) : bool
Term string the term that someone searched.
ExtraParams HashArgs
리턴 bool

TrackSearchAsync() 공개 메소드

Tracks the fact that someone searched on your site. There's no autocompleteSection parameter because if you're searching, you aren't using an autocomplete.
public TrackSearchAsync ( string Term, HashArgs ExtraParams = null ) : Task
Term string the term that someone searched.
ExtraParams HashArgs
리턴 Task