22 references to ReadOnly
System.Workflow.Activities (6)
EventSinkActivity.cs (1)
32
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(HandleExternalEventActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
InvokeMethodActivity.cs (1)
31
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(CallExternalMethodActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
InvokeSchedule.cs (1)
39
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(InvokeWorkflowActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
InvokeWebService.cs (1)
65
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(InvokeWebServiceActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
WebServiceReceive.cs (1)
41
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(WebServiceInputActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
WebServiceResponse.cs (1)
33
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(WebServiceOutputActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
System.Workflow.ComponentModel (13)
AuthoringOM\Activity.cs (2)
147
private static DependencyProperty QualifiedNameProperty = DependencyProperty.Register("QualifiedName", typeof(string), typeof(Activity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
));
148
private static DependencyProperty DottedPathProperty = DependencyProperty.Register("DottedPath", typeof(string), typeof(Activity), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
));
AuthoringOM\DependencyObject.cs (2)
24
private static DependencyProperty ReadonlyProperty = DependencyProperty.Register("Readonly", typeof(bool), typeof(DependencyObject), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
26
private static DependencyProperty UserDataProperty = DependencyProperty.Register("UserData", typeof(IDictionary), typeof(DependencyObject), new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
AuthoringOM\PropertyMetadata.cs (1)
170
return (this.options & DependencyPropertyOptions.
ReadOnly
) > 0;
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (8)
977
isReadOnly = ((dependencyProperty.DefaultMetadata.Options & DependencyPropertyOptions.
ReadOnly
) == DependencyPropertyOptions.
ReadOnly
);
1475
if ((dependencyProperty.DefaultMetadata.Options & DependencyPropertyOptions.
ReadOnly
) == DependencyPropertyOptions.
ReadOnly
)
1802
isReadOnly = ((dependencyProperty.DefaultMetadata.Options & DependencyPropertyOptions.
ReadOnly
) == DependencyPropertyOptions.
ReadOnly
);
1918
isReadOnly = ((dependencyProperty.DefaultMetadata.Options & DependencyPropertyOptions.
ReadOnly
) == DependencyPropertyOptions.
ReadOnly
);
System.WorkflowServices (3)
System\Workflow\Activities\OperationInfo.cs (1)
37
new PropertyMetadata(null, DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
,
System\Workflow\Activities\ReceiveActivity.cs (1)
83
new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
));
System\Workflow\Activities\SendActivity.cs (1)
67
new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.
ReadOnly
));