コード例 #1
0
        public static UInt32 PartyXblChatUserGetCustomContext(
            PARTY_XBL_CHAT_USER_HANDLE handle,
            out Object customContext)
        {
            if (handle == null)
            {
                customContext = null;
                return(PartyError.InvalidArg);
            }

            return(MarshalHelpers.GetCustomContext <Interop.PARTY_XBL_CHAT_USER_HANDLE>(
                       PartyXblInterop.PartyXblChatUserGetCustomContext,
                       handle.InteropHandle,
                       out customContext));
        }