diff options
Diffstat (limited to 'tools/Sandcastle/Source/BuildAssembler/BuildComponents/MsdnResolver.cs')
-rw-r--r-- | tools/Sandcastle/Source/BuildAssembler/BuildComponents/MsdnResolver.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/Sandcastle/Source/BuildAssembler/BuildComponents/MsdnResolver.cs b/tools/Sandcastle/Source/BuildAssembler/BuildComponents/MsdnResolver.cs index 95ad854..84a43f1 100644 --- a/tools/Sandcastle/Source/BuildAssembler/BuildComponents/MsdnResolver.cs +++ b/tools/Sandcastle/Source/BuildAssembler/BuildComponents/MsdnResolver.cs @@ -1,5 +1,8 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// +// Copyright © Microsoft Corporation. +// This source file is subject to the Microsoft Permissive License. +// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx. +// All other rights reserved. + using System; using System.Collections.Generic; using System.Net; @@ -45,7 +48,7 @@ namespace Microsoft.Ddue.Tools { try { getContentResponse msdnResponse = msdnService.GetContent(msdnRequest); endpoint = msdnResponse.contentId; - } catch (WebException e) { + } catch (WebException) { msdnService = null; } catch (SoapException) { // lookup failed |