Exemplo n.º 1
0
        public static UInt32 PartyXblChatUserSetCustomContext(
            PARTY_XBL_CHAT_USER_HANDLE handle,
            Object customContext)
        {
            if (handle == null)
            {
                return(PartyError.InvalidArg);
            }

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