Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
[GoogleAnalytics] Api Enhacement
Browse files Browse the repository at this point in the history
  • Loading branch information
dalexsoto committed Dec 9, 2013
1 parent 0243c55 commit 4d09f7a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions GoogleAnalytics/binding/ApiDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ interface GAI
GAI SharedInstance { get; }

[Export ("trackerWithName:trackingId:")]
IGAITracker Tracker (string name, string trackingId);
IGAITracker GetTracker (string name, string trackingId);

[Export ("trackerWithTrackingId:")]
IGAITracker Tracker (string trackingId);
IGAITracker GetTracker (string trackingId);

[Export ("removeTrackerByName:")]
void RemoveTracker (string name);
Expand All @@ -57,10 +57,10 @@ interface GAI
interface GAIDictionaryBuilder
{
[Export ("set:forKey:")]
GAIDictionaryBuilder Set (string value, string key);
GAIDictionaryBuilder Set ([NullAllowed] string value, [NullAllowed] string key);

[Export ("setAll:")]
GAIDictionaryBuilder SetAll (NSDictionary parameters);
GAIDictionaryBuilder SetAll ([NullAllowed] NSDictionary parameters);

[Export ("get:")]
string Get ([NullAllowed] string paramName);
Expand Down

0 comments on commit 4d09f7a

Please sign in to comment.