Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
  • 1
    Online Resource
    Online Resource
    [New York, New York] : Apress
    ISBN: 9781484290316 , 1484290313
    Language: English
    Pages: 1 online resource (1 video file (48 min.)) , sound, color.
    Edition: [First edition].
    DDC: 006.7
    Keywords: Active server pages ; Web site development ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Learn to apply authentication and authorization on any ASP.NET Core endpoints from any client type by using Single Sign On. This video will teach you how to secure any type of ASP.NET Core endpoints by using an external Single Sign On provider. It covers any types of standard HTTP endpoints (Web API controllers, MVC controllers and Razor pages) as well as endpoints reachable by other communication mechanisms (SignalR and gRPC). You start by going through a short introduction about the video and the author followed by OpenID Connect and OAuth overview. You will then learn how to install development tools along with SSO. Further, you will learn how to apply SSO to secure Razor pages, MVC endpoints, REST API endpoints and Blazor Server Applications. Moving ahead, you will demonstrate how to apply SSO to secure Blazor WebAssembly applications, gRPS services and SignalR hubs. After going through this video, you will be able to set up a Single Sign On provider, so a user that has authenticated in one application would automatically authenticated in all applications within the ecosystem.
    Note: Online resource; title from title details screen (O’Reilly, viewed February 7, 2023)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    ISBN: 9781484292099 , 148429209X
    Language: English
    Pages: 1 online resource (1 video file (42 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.2/76
    Keywords: Microsoft .NET Framework ; Application software Development ; Web applications ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Build applications for any desktop or mobile operating system by using .NET MAUI - a cross-platform software development framework. This video will teach you how to use .NET MAUI, which is a .NET-based framework for cross-platform native application development. The framework allows you to build applications for Windows, Mac OS, iOS and Android by using the same codebase. The video starts with a short introduction about .NET MAUI and overall contents the author will discuss. You will then demonstrate how to install the necessary development tools that are needed to work with MAUI project templates followed by components of MAUI project structure. Moving forward, you will go through MAUI Blazor project template and learn XAML syntax along with implementation of various UI components. Next, you will learn the importance of Model-View-View-Model architectural pattern in MAUI and demonstrate how to build Windows applications. Towards the end, you will build iOS and Mac OS applications by using MAUI. After going through the video, you will be able build applications in Windows, Mac and iOS using MAUI.
    Note: Online resource; title from title details screen (O’Reilly, viewed February 7, 2023)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484262115
    Language: English
    Pages: 1 online resource (1 video file, approximately 54 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn how to use the ASP.NET Core implementation of gRPC, enabling components of your distributed applications to effectively communicate with each other using minimal code. Since the release of ASP.NET Core 3, gRPC has been fully integrated with the system libraries found in ASP.NET Core. gRPC is a network communication technology originally developed by Google. It works over the HTTP2 protocol and it is primarily used to enable communication between microservices in distributed clusters. The beauty of gRPC is that it simplifies all the complex implementation details. You'll see that for a software developer, gRPC can feel like writing code on the client application that can call endpoints on the server application directly, as if both of these are just parts of the same monolithic application. This makes gRPC incredibly easy to use and is the reason why it has become so popular over the last couple of years. What You Will Learn Discover the core gRPC concepts that apply to all implementations Create a Protobuf message structure Use gRPC on ASP.NET Core Secure gRPC endpoints Apply logging and diagnostics on ASP.NET services that use gRPC Update gRPC services to make them backwards-compatible Who This Video Is For ASP.NET developers who primarily work on distributed web and cloud applications. It is recommended that the viewer understand the fundamentals of ASP.NET Core.
    Note: Online resource; Title from title screen (viewed July 29, 2020) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Manning Publications | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 25 min.)
    Edition: 1st edition
    Keywords: Electronic videos
    Abstract: Clustering is an important functionality in the Internet of Things (IoT). It allows multiple devices to act as one and coordinate the work between themselves. If you use .NET for developing distributed IoT applications, you can use a library called SignalR. This library facilitates real-time two-way communication between the client and the server with minimal setup code. So, once the client makes the initial connection request, there is no longer request-response mechanism in place. Messages can travel both ways while the connection is live.
    Note: Online resource; Title from title screen (viewed May 3, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    ISBN: 1803249528 , 9781803249520
    Language: English
    Pages: 1 online resource
    Edition: 1st edition.
    DDC: 005.3
    Keywords: Application software Development ; Digital communications ; Logiciels d'application ; Développement ; Transmission numérique ; Application software ; Development ; Digital communications ; Electronic books
    Abstract: Learn how to implement gRPC on the .NET platform step by step and cover how to use gRPC on .NET, including fundamentals, use cases, and best practices Key Features Explore all aspects of gRPC implementation on .NET, from the most basic features to advanced ones Discover best practices for using gRPC to make sure that your applications are as efficient and as scalable as possible Identify when gRPC is the best tool for the job and when it isn't Book Description Explore gRPC's capabilities for faster communication between your microservices using the HTTP/2 protocol in this practical guide that shows you how to implement gRPC on the .NET platform. gRPC is one of the most efficient protocols for communication between microservices that is also relatively easy to implement. However, its official documentation is often fragmented and.NET developers might find it difficult to recognize the best way to map between C# data types and fields in gRPC messages. This book will address these concerns and much more. Starting with the fundamentals of gRPC, you'll discover how to use it inside .NET apps. You'll explore best practices for performance and focus on scaling a gRPC app. Once you're familiar with the inner workings of the different call types that gRPC supports, you'll advance to learning how to secure your gRPC endpoints by applying authentication and authorization. With detailed explanations, this gRPC .NET book will show you how the Protobuf protocol allows you to send messages efficiently by including only the necessary data. You'll never get confused again while translating between C# data types and the ones available in Protobuf. By the end of the book, you'll have gained practical gRPC knowledge and be able to use it in .NET apps to enable direct communication between microservices. What you will learn Get to grips with the fundamentals of gRPC and Protobuf Debug gRPC components inside a .NET application to locate and fix errors Understand gRPC best practices, such as performance enhancement Effectively translate between gRPC and native C# code by applying well-known types Secure gRPC communication inside a .NET application Discover how to monitor gRPC on .NET by applying logging and metrics Who this book is for This book is for NET developers who are working with microservices and are looking for efficient solutions to facilitate communication between services using gRPC. Anyone who is familiar with microservices architecture and has knowledge of the fundamentals of .NET Core, but not necessarily of gRPC, will also find this book useful.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    ISBN: 9781484282854 , 148428285X
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 32 min.)) , sound, color.
    Edition: [First edition].
    DDC: 004.67/8
    Keywords: Internet of things ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: This video will teach you how to build a cluster of IoT devices using only .NET components. After viewing it you will be able to build a complete distributed IoT solution using .NET 6, SignalR and Blazor. This videos explains how SignalR can substantially simplify two-way real-time communication between the server and its clients. Viewers will learn how to build and manage clusters of IoT devices using only .NET and will see, by example, how to build an IoT device management web interface without having to learn JavaScript
    Note: Online resource; title from title details screen (O’Reilly, viewed June 2, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484259238
    Language: English
    Pages: 1 online resource (1 video file, approximately 56 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: This video will teach you Blazor, a new web development framework from Microsoft now available with the release of .NET Core 3.0. You will learn how to build web applications without having to learn JavaScript. You will apply the most fundamental components of the Blazor framework, writing both client- and server-side components of your web applications using .NET languages. No knowledge of JavaScript is necessary; although Blazor code can easily inter-operate with JavaScript. You will discover the two hosting models for Blazor; Blazor WebAssembly and Blazor Server. The first, Blazor WebAssembly, runs compiled .NET code directly in a browser via WebAssembly. The second, Blazor Server, creates client-side components for you, while running all the logic on the server. Client-side components communicate with server-side components asynchronously in real time. Choose either, as the code syntax is the same, allowing you to easily move your code to Blazor WebAssembly or Blazor Server. What You Will Learn Get introduced to Blazor and find out why you should learn it Understand the differences between the Blazor Server and Blazor WebAssembly hosting models Discover the fundamental components of Blazor and Razor components Make Blazor applications modular Run Blazor on both server and browser Make your .NET code inter-operate with in-browser JavaScript Who This Video is For Developers who are already familiar with ASP.NET Core.
    Note: Online resource; Title from title screen (viewed April 7, 2020) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. More information can be found here...