From 4ef8b630ac956b0bb847ff60d16b67c824932d17 Mon Sep 17 00:00:00 2001 From: lxod <91487485+lxod@users.noreply.github.com> Date: Mon, 7 Nov 2022 16:52:33 +0000 Subject: [PATCH 1/2] Update README.md updated URL for ref link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd0c922..9144933 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The code was initially straight from Microsoft's example here: ...with assistance from this article: -* [http://blogs.technet.com/b/cloudpfe/archive/2013/12/27/how-to-create-a-custom-attribute-store-for-active-directory-federation-services-3-0.aspx]() +* [https://learn.microsoft.com/en-us/archive/blogs/cloudpfe/how-to-create-a-custom-attribute-store-for-active-directory-federation-services-3-0]() See those pages for details on compiling, installing, and using the DLL. From 6badb3144a73086f8e530c47c132556fcd480a69 Mon Sep 17 00:00:00 2001 From: lxod <91487485+lxod@users.noreply.github.com> Date: Mon, 7 Nov 2022 16:53:17 +0000 Subject: [PATCH 2/2] Update StringProcessingAttributeStore.cs --- .../StringProcessingAttributeStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ADFS StringProc Attribute Store/StringProcessingAttributeStore.cs b/ADFS StringProc Attribute Store/StringProcessingAttributeStore.cs index 04542f8..97cbd70 100644 --- a/ADFS StringProc Attribute Store/StringProcessingAttributeStore.cs +++ b/ADFS StringProc Attribute Store/StringProcessingAttributeStore.cs @@ -11,7 +11,7 @@ * The code started straight from Microsoft's example here: * https://msdn.microsoft.com/en-us/library/hh599320.aspx * ...with assistance from this article: - * http://blogs.technet.com/b/cloudpfe/archive/2013/12/27/how-to-create-a-custom-attribute-store-for-active-directory-federation-services-3-0.aspx + * https://learn.microsoft.com/en-us/archive/blogs/cloudpfe/how-to-create-a-custom-attribute-store-for-active-directory-federation-services-3-0 * See those pages for details on compiling, installing, and using the DLL. * * --Eric Wallace, March 2015 @@ -119,4 +119,4 @@ private static string Truncate(string value, int maxLength) return value.Length <= maxLength ? value : value.Substring(0, maxLength); } } -} \ No newline at end of file +}