maui handler-patterns.instructions.md

Coding rules for .NET MAUI handlers, which connect cross-platform controls to native platform views. They cover property updates, event setup and cleanup, callback safety, and preserving native defaults.

In plain words
What is it for?
Use it when adding or changing handler mappers, property updates, connection and disconnection logic, or platform callbacks.
Why use it?
It reduces bugs caused by bypassing custom property mappings, leaving event listeners attached, using disconnected handlers, or applying results after an asynchronous operation has ended.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/dotnet/maui/handler-patterns
Clone the repo
git clone --depth 1 https://github.com/dotnet/maui

Made for: GitHub Copilot.

Per session 464 This file is loaded in full into every session.
When invoked 464 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00464 $0.00464
Opus 5 $0.00232 $0.00232
Sonnet 5 $0.00093 $0.00093
Haiku 4.5 $0.00046 $0.00046

Measured yesterday against content hash cb2d7da041a3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

maui handler-patterns.instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/handler-patterns.instructions.md · 37 lines

How it starts

The opening of the file, as written. The whole thing — 37 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Handler Mapper and Property Patterns

Property Update Flow

  • Property updates MUST go through Handler.UpdateValue(nameof(Property)) — never call mapper methods directly
  • Direct calls bypass user-registered AppendToMapping/PrependToMapping customizations
  • Map dependencies before dependents — if property B reads property A, A's mapper must run first
  • CommandMapper entries return void and use the (handler, view, args) signature

Lifecycle Management

  • ConnectHandler: Register listeners, subscribe to events, capture native defaults BEFORE applying cross-platform properties
  • DisconnectHandler: Unsubscribe all events, dispose platform resources, null out references
  • Call base.ConnectHandler/base.DisconnectHandler — base class performs platform hookup/teardown (NOT mapper initialization, which happens in SetVirtualView)

Null Safety in Callbacks

  • Null-check VirtualView before access in every mapper method and platform callback — it is null during disconnect
  • Validate MauiContext before use — throw InvalidOperationException with descriptive message if null
  • After async operations, verify the handler is still connected before applying results

Native Defaults Preservation

  • Capture native default values (colors, fonts, styles) in ConnectHandler BEFORE any cross-platform property is applied
  • Clearing a cross-platform property (setting to null/default) must restore the captured native default, not a hardcoded fallback
  • On Windows, preserve WinUI XAML style-applied values; on Android, cache theme-inherited drawables; on iOS, capture UIAppearance defaults

Mapper Extensibility

  • When extending existing mappers, ensure the base mapper chain is called — do not silently replace
  • Static mapper methods should be public static to enable platform-specific overrides
  • Use nameof() for property keys — avoid magic strings

Fire-and-Forget Async

  • Use .FireAndForget(handler) for async operations in mapper methods — never use bare async void
  • The FireAndForget overload accepting a handler logs exceptions through the handler's service provider

Read the full file on GitHub · 37 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 37 lines · 464 tokens per session scan A cb2d7da041a3

Subscribe to this mod's changes

maui handler-patterns.instructions.md is an instructions file published in the GitHub repository dotnet/maui (23,317 stars, last pushed yesterday), licensed MIT. It adds 464 tokens to every session, about $0.0023 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.