18 instantiations of AuthorizedType
System.Workflow.ComponentModel (18)
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (18)
2105
AuthorizedType authType = new
AuthorizedType
();
2112
authType = new
AuthorizedType
();
2119
authType = new
AuthorizedType
();
2126
authType = new
AuthorizedType
();
2133
authType = new
AuthorizedType
();
2140
authType = new
AuthorizedType
();
2147
authType = new
AuthorizedType
();
2166
authType = new
AuthorizedType
();
2173
authType = new
AuthorizedType
();
2180
authType = new
AuthorizedType
();
2187
authType = new
AuthorizedType
();
2196
authType = new
AuthorizedType
();
2203
authType = new
AuthorizedType
();
2212
authType = new
AuthorizedType
();
2219
authType = new
AuthorizedType
();
2228
authType = new
AuthorizedType
();
2235
authType = new
AuthorizedType
();
2244
authType = new
AuthorizedType
();
35 references to AuthorizedType
System.Workflow.Activities (2)
Rules\RuleValidation.cs (2)
923
private IList<
AuthorizedType
> authorizedTypes;
3869
foreach (
AuthorizedType
authorizedType in authorizedTypes)
System.Workflow.ComponentModel (33)
AuthoringOM\Bind.cs (3)
261
IList<
AuthorizedType
> authorizedTypes = WorkflowCompilationContext.Current.GetAuthorizedTypes();
293
private static bool SafeType(IList<
AuthorizedType
> authorizedTypes, Type referenceType)
296
foreach (
AuthorizedType
authorizedType in authorizedTypes)
AuthoringOM\Compiler\Configuration.cs (8)
24
Dictionary<string, IList<
AuthorizedType
>> authorizedTypes = new Dictionary<string, IList<
AuthorizedType
>>();
29
authorizedTypeOverrides.Add(typeof(
AuthorizedType
), authorizedTypeAttributes);
30
XmlSerializer xmlSerializer = new XmlSerializer(typeof(
AuthorizedType
), authorizedTypeOverrides);
39
IList<
AuthorizedType
> versionTypes;
42
versionTypes = new List<
AuthorizedType
>();
47
AuthorizedType
authorizedType = xmlSerializer.Deserialize(new XmlNodeReader(authorizedTypeNode)) as
AuthorizedType
;
AuthoringOM\Compiler\XomlCompiler.cs (9)
118
ReadOnlyCollection<
AuthorizedType
> authorizedTypes;
207
public IList<
AuthorizedType
> GetAuthorizedTypes()
213
IList<
AuthorizedType
> authorizedTypes;
215
IDictionary<string, IList<
AuthorizedType
>> authorizedTypesDictionary =
216
ConfigurationManager.GetSection("System.Workflow.ComponentModel.WorkflowCompiler/authorizedTypes") as IDictionary<string, IList<
AuthorizedType
>>;
232
this.authorizedTypes = new ReadOnlyCollection<
AuthorizedType
>(authorizedTypes);
593
public TypeAuthorizerClass(IList<
AuthorizedType
> authorizedTypes, WorkflowCompilerResults results, string filename)
610
public IList<
AuthorizedType
> AuthorizedTypes
639
foreach (
AuthorizedType
authorizedType in AuthorizedTypes)
AuthoringOM\Compiler\XomlCompilerHelpers.cs (2)
58
IList<
AuthorizedType
> authorizedTypes = null;
251
foreach (
AuthorizedType
authorizedType in authorizedTypes)
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (11)
42
private static volatile ReadOnlyCollection<
AuthorizedType
> StaticAuthorizedTypes;
2103
static void AddUnauthorizedTypes(IList<
AuthorizedType
> authorizedTypes)
2105
AuthorizedType
authType = new AuthorizedType();
2262
IList<
AuthorizedType
> authorizedTypes;
2264
IDictionary<string, IList<
AuthorizedType
>> authorizedTypesDictionary =
2265
ConfigurationManager.GetSection("System.Workflow.ComponentModel.WorkflowCompiler/authorizedTypes") as IDictionary<string, IList<
AuthorizedType
>>;
2274
authorizedTypes = new List<
AuthorizedType
>();
2283
WorkflowMarkupSerializer.StaticAuthorizedTypes = new ReadOnlyCollection<
AuthorizedType
>(authorizedTypes);
2297
private IList<
AuthorizedType
> authorizedTypes;
2298
public SerializerTypeAuthorizerClass(IList<
AuthorizedType
> authorizedTypes)
2315
foreach (
AuthorizedType
authorizedType in this.authorizedTypes)