public void Set(QueryUserInfoByDisplayNameOptions other)
 {
     if (other != null)
     {
         m_ApiVersion = UserInfoInterface.QueryuserinfobydisplaynameApiLatest;
         LocalUserId  = other.LocalUserId;
         DisplayName  = other.DisplayName;
     }
 }
示例#2
0
        /// <summary>
        /// <see cref="QueryUserInfoByDisplayName" /> is used to start an asynchronous query to retrieve user information by display name. This can be useful for getting the <see cref="EpicAccountId" /> for a display name.
        /// Once the callback has been fired with a successful ResultCode, it is possible to call <see cref="CopyUserInfo" /> to receive an <see cref="UserInfoData" /> containing the available information.
        /// <seealso cref="UserInfoData" />
        /// <seealso cref="CopyUserInfo" />
        /// <seealso cref="QueryUserInfoByDisplayNameOptions" />
        /// <seealso cref="OnQueryUserInfoByDisplayNameCallback" />
        /// </summary>
        /// <param name="options">structure containing the input parameters</param>
        /// <param name="clientData">arbitrary data that is passed back to you in the CompletionDelegate</param>
        /// <param name="completionDelegate">a callback that is fired when the async operation completes, either successfully or in error</param>
        public void QueryUserInfoByDisplayName(QueryUserInfoByDisplayNameOptions options, object clientData, OnQueryUserInfoByDisplayNameCallback completionDelegate)
        {
            System.IntPtr optionsAddress = new System.IntPtr();
            Helper.TryMarshalSet <QueryUserInfoByDisplayNameOptionsInternal, QueryUserInfoByDisplayNameOptions>(ref optionsAddress, options);

            var clientDataAddress = System.IntPtr.Zero;

            var completionDelegateInternal = new OnQueryUserInfoByDisplayNameCallbackInternal(OnQueryUserInfoByDisplayNameCallbackInternalImplementation);

            Helper.AddCallback(ref clientDataAddress, clientData, completionDelegate, completionDelegateInternal);

            EOS_UserInfo_QueryUserInfoByDisplayName(InnerHandle, optionsAddress, clientDataAddress, completionDelegateInternal);

            Helper.TryMarshalDispose(ref optionsAddress);
        }