aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/IisErrors.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/IisErrors.cs')
-rw-r--r--src/wixext/IisErrors.cs70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/wixext/IisErrors.cs b/src/wixext/IisErrors.cs
new file mode 100644
index 00000000..874c5609
--- /dev/null
+++ b/src/wixext/IisErrors.cs
@@ -0,0 +1,70 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Iis
4{
5 using System;
6 using WixToolset.Data;
7
8 public static class IIsErrors
9 {
10 public static Message MimeMapExtensionMissingPeriod(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string attributeValue)
11 {
12 throw new NotImplementedException();
13 }
14
15 public static Message IllegalAttributeWithoutComponent(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
16 {
17 throw new NotImplementedException();
18 }
19
20 public static Message IllegalElementWithoutComponent(SourceLineNumber sourceLineNumbers, string elementName)
21 {
22 throw new NotImplementedException();
23 }
24
25 public static Message OneOfAttributesRequiredUnderComponent(SourceLineNumber sourceLineNumbers, string elementName, string attributeName1, string attributeName2, string attributeName3, string attributeName4)
26 {
27 throw new NotImplementedException();
28 }
29
30 public static Message WebSiteAttributeUnderWebSite(SourceLineNumber sourceLineNumbers, string elementName)
31 {
32 throw new NotImplementedException();
33 }
34
35 public static Message WebApplicationAlreadySpecified(SourceLineNumber sourceLineNumbers, string elementName)
36 {
37 throw new NotImplementedException();
38 }
39
40 public static Message IllegalCharacterInAttributeValue(SourceLineNumber sourceLineNumbers, string elementName, string attributeName, string value, char illegalCharacter)
41 {
42 throw new NotImplementedException();
43 }
44
45 public static Message DeprecatedBinaryChildElement(SourceLineNumber sourceLineNumbers, string elementName)
46 {
47 throw new NotImplementedException();
48 }
49
50 public static Message WebSiteNotFound(string webSiteDescription)
51 {
52 throw new NotImplementedException();
53 }
54
55 public static Message InsufficientPermissionHarvestWebSite()
56 {
57 throw new NotImplementedException();
58 }
59
60 public static Message CannotHarvestWebSite()
61 {
62 throw new NotImplementedException();
63 }
64
65 public static Message RequiredAttributeUnderComponent(SourceLineNumber sourceLineNumbers, string elementName, string attributeName)
66 {
67 throw new NotImplementedException();
68 }
69 }
70} \ No newline at end of file