LineSharp.Datatypes.TalkService.Client.getBuddyLocation C# (CSharp) Method

getBuddyLocation() public method

public getBuddyLocation ( string mid, int index ) : Geolocation
mid string
index int
return Geolocation
      public Geolocation getBuddyLocation(string mid, int index)
      {
        #if !SILVERLIGHT
        send_getBuddyLocation(mid, index);
        return recv_getBuddyLocation();

        #else
        var asyncResult = Begin_getBuddyLocation(null, null, mid, index);
        return End_getBuddyLocation(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client