Hello @Kishore Kumar K , thank you for reaching out. There is no logout system available specific to B2B logouts. The logout process is implemented by clearing the app cookies or removing the user's session.
More details on the Sign-out process in OpenID Connect can be found here: https://learn.microsoft.com/en-us/azure/active-directory/develop/v2-protocols-oidc#send-a-sign-out-request
You can also find the code snippets for logout using ASP .net here: https://learn.microsoft.com/en-us/azure/active-directory/develop/scenario-web-app-sign-user-sign-in?tabs=aspnet#sign-out-button
You can also check the following sample (if not already) to get the view of the complete code and use it accordingly in your app to implement the logout:
https://github.com/Azure-Samples/ms-identity-aspnet-webapp-openidconnect
This sample uses OpenIDConnect and OWIN Middleware to implement the sign-in and signout methods.
Hope this helps.
Do let us know if this helps and if there are any more queries around this, please do let us know so that we can help you further. Also, please do not forget to accept the response as Answer; if the above response helped in answering your query.