Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Cloud Functions
  • Comparison with other Yandex Cloud services
    • Overview
    • Managing dependencies
    • Request handler
    • Invocation context
    • Logging
    • Handling errors
    • Using the SDK
  • Tools
  • Pricing policy
  • Access management
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ
  1. Developing in .NET Core
  2. Invocation context

.NET Core function invocation context

Written by
Yandex Cloud
Updated at January 22, 2025

Invocation context is an object that can be optionally accepted by the request handler if the YcFunction interface model is used. It is a Yandex.Cloud.Functions.Context type object providing properties you can use to get more information about the C# function version:

  • FunctionId: Returns the string ID of the function.
  • FunctionVersion: Returns the string ID of the function version.
  • MemoryLimitInMB: Returns the amount of memory specified when creating the version, MB.
  • RequestId: Returns the request ID.
  • TokenJson: Returns the parameters for authentication in the Yandex Cloud API.

Was the article helpful?

Previous
Request handler
Next
Logging
Yandex project
© 2025 Yandex.Cloud LLC