This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Maps a parent object to a child object. <br></br> | |
/// </summary> | |
/// <typeparam name="T">Generic Type of the Parent Object</typeparam> | |
/// <typeparam name="U">Generic Type of the Child Object</typeparam> | |
/// <param name="parent">Parent Object</param> | |
/// <param name="child">Child Object</param> | |
/// <returns>U Child object</returns> | |
public U MapParentToChild<T, U>(T parent, U child) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Clear-TeamsCache { | |
[CmdletBinding(SupportsShouldProcess = $true)] | |
param ( | |
# Determine if settings should persist after clearing cache | |
[Parameter()] | |
[switch] | |
$PersistSettings | |
) | |
begin { |