Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -119,4 +119,4 @@ private static string Truncate(string value, int maxLength)
return value.Length <= maxLength ? value : value.Substring(0, maxLength);
}
}
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down