using System;
using Microsoft.Identity.Client;
///
/// Used to propogate a created instance of via an event handler and allow for modifications before the application uses it.
///
public class AcquireTokenInteractiveParameterBuilderCreatedEventArgs : EventArgs
{
///
/// Creates a new instance of .
///
public AcquireTokenInteractiveParameterBuilderCreatedEventArgs( AcquireTokenInteractiveParameterBuilder builder)
{
Builder = builder;
}
///
/// The created instance of that will be used by the application.
///
///
/// Can be read and reassigned. The assigned value will be used by the application when all synchronous event handlers have finished being raised.
///
public AcquireTokenInteractiveParameterBuilder Builder { get; set; }
}