Mono exception to SocketException
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Core.Presentation / System / ServiceModel / Activities / Presentation / CorrelationScopeDesigner.xaml.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4
5 namespace System.ServiceModel.Activities.Presentation
6 {
7     using System;
8     using System.Activities.Presentation.Metadata;
9     using System.ComponentModel;
10     using System.Activities.Presentation;
11
12     partial class CorrelationScopeDesigner 
13     {
14         public CorrelationScopeDesigner()
15         {
16             InitializeComponent();
17         }
18
19         internal static void RegisterMetadata(AttributeTableBuilder builder)
20         {
21             Type type = typeof(CorrelationScope);
22             builder.AddCustomAttributes(type, new DesignerAttribute(typeof(CorrelationScopeDesigner)));
23             builder.AddCustomAttributes(type, type.GetProperty("Body"), BrowsableAttribute.No);
24         }
25     }
26 }