Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-rc1_System.Resources.Tools.md « Microsoft.WindowsDesktop.App « rc1 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fef50b297258045897aaf80cae6dbcd9f4ab475b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# System.Resources.Tools

``` diff
+namespace System.Resources.Tools {
+    [EditorBrowsableAttribute(1)]
+    public interface ITargetAwareCodeDomProvider {
+        bool SupportsProperty(Type type, string propertyName, bool isWritable);
+    }
+    public static class StronglyTypedResourceBuilder {
+        public static CodeCompileUnit Create(IDictionary resourceList, string baseName, string generatedCodeNamespace, CodeDomProvider codeProvider, bool internalClass, out string[] unmatchable);
+        public static CodeCompileUnit Create(IDictionary resourceList, string baseName, string generatedCodeNamespace, string resourcesNamespace, CodeDomProvider codeProvider, bool internalClass, out string[] unmatchable);
+        public static CodeCompileUnit Create(string resxFile, string baseName, string generatedCodeNamespace, CodeDomProvider codeProvider, bool internalClass, out string[] unmatchable);
+        public static CodeCompileUnit Create(string resxFile, string baseName, string generatedCodeNamespace, string resourcesNamespace, CodeDomProvider codeProvider, bool internalClass, out string[] unmatchable);
+        public static string VerifyResourceName(string key, CodeDomProvider provider);
+    }
+}
```