ApexLumia.SkyDrive.clientGetMe_GetCompleted C# (CSharp) Method

clientGetMe_GetCompleted() public method

public clientGetMe_GetCompleted ( object sender, LiveOperationCompletedEventArgs e ) : void
sender object
e LiveOperationCompletedEventArgs
return void
        void clientGetMe_GetCompleted(object sender, LiveOperationCompletedEventArgs e)
        {
            if (e.Error == null)
            {
                dataFullName.Text = (string)e.Result["name"];
            }
        }