# KERB\_EXTERNAL\_TICKET

```csharp
public struct KERB_EXTERNAL_TICKET
{
    public unsafe KERB_EXTERNAL_NAME* ServiceName;
    public unsafe KERB_EXTERNAL_NAME* TargetName;
    public unsafe KERB_EXTERNAL_NAME* ClientName;
    public LSA_UNICODE_STRING DomainName;
    public LSA_UNICODE_STRING TargetDomainName;
    public LSA_UNICODE_STRING AltTargetDomainName;
    public KERB_CRYPTO_KEY SessionKey;
    public KERB_TICKET_FLAGS TicketFlags;
    public uint Flags;
    public long KeyExpirationTime;
    public long StartTime;
    public long EndTime;
    public long RenewUntil;
    public long TimeSkew;
    public uint EncodedTicketSize;
    public unsafe byte* EncodedTicket;
}
```

[KERB\_EXTERNAL\_NAME](/identity/kerb_external_name.md)

[LSA\_UNICODE\_STRING](/authentication/lsa_unicode_string.md)

[KERB\_CRYPTO\_KEY](/identity/kerb_crypto_key.md)

[KERB\_TICKET\_FLAGS](/identity/kerb_ticket_flags.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.pinvoke.dev/identity/kerb_external_ticket.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
