Appboy.AppboyBinding.setUserTwitterData C# (CSharp) Метод

setUserTwitterData() публичный статический Метод

public static setUserTwitterData ( int twitterUserId, string twitterHandle, string name, string description, int followerCount, int followingCount, int tweetCount, string profileImageUrl ) : void
twitterUserId int
twitterHandle string
name string
description string
followerCount int
followingCount int
tweetCount int
profileImageUrl string
Результат void
        public static void setUserTwitterData(int? twitterUserId, string twitterHandle, string name, string description, int? followerCount, int? followingCount, int? tweetCount, string profileImageUrl)
        {
            _setUserTwitterData(twitterUserId == null ? -1 : (int)twitterUserId, twitterHandle, name, description, followerCount == null ? -1 : (int)followerCount, followingCount == null ? -1 : (int)followingCount, tweetCount == null ? -1 : (int)tweetCount, profileImageUrl);
        }
AppboyBinding