AppProperties.Equality Operator (AppProperties, AppProperties)
Determines whether the first AppPProperties is equal to the second AppProperties.
Namespace: Microsoft.Owin.BuilderProperties
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
public static bool operator ==(
AppProperties left,
AppProperties right
)
public:
static bool operator ==(
AppProperties left,
AppProperties right
)
static let inline (=)
left:AppProperties *
right:AppProperties : bool
Public Shared Operator = (
left As AppProperties,
right As AppProperties
) As Boolean
Parameters
left
Type: Microsoft.Owin.BuilderProperties.AppPropertiesThe first AppPropeties to compare.
right
Type: Microsoft.Owin.BuilderProperties.AppPropertiesThe second AppPropeties to compare.
Return Value
Type: System.Boolean
true if both AppProperties are equal; otherwise, false.
See Also
AppProperties Structure
Microsoft.Owin.BuilderProperties Namespace
Return to top