39 references to Get
System.Activities (5)
Microsoft\VisualBasic\Activities\XamlIntegration\VisualBasicExpressionConverter.cs (2)
127
XNamespace xmlns = XNamespace.
Get
(prefix.Namespace);
282
XNamespace xmlns = XNamespace.
Get
(attributes[i].XmlNamespace);
System\Activities\Statements\CompensationExtension.cs (1)
17
static readonly XNamespace compensationNamespace = XNamespace.
Get
("urn:schemas-microsoft-com:System.Activities/4.0/compensation");
System\Activities\Statements\DurableTimerExtension.cs (2)
26
static readonly XName timerTableName = XNamespace.
Get
("urn:schemas-microsoft-com:System.Activities/4.0/properties").GetName("RegisteredTimers");
27
static readonly XName timerExpirationTimeName = XNamespace.
Get
("urn:schemas-microsoft-com:System.Activities/4.0/properties").GetName("TimerExpirationTime");
System.Activities.DurableInstancing (2)
System\Activities\DurableInstancing\SqlWorkflowInstanceStoreConstants.cs (2)
15
public static readonly XNamespace WorkflowNamespace = XNamespace.
Get
("urn:schemas-microsoft-com:System.Activities/4.0/properties");
16
public static readonly XNamespace DurableInstancingNamespace = XNamespace.
Get
("urn:schemas-microsoft-com:System.ServiceModel.Activities.DurableInstancing/SqlWorkflowInstanceStore");
System.Data.Services.Design (3)
System\Data\EntityModel\EntityClassGenerator.cs (2)
504
XNamespace oldNamespace = XNamespace.
Get
(oldNamespaceName);
505
XNamespace newNamespace = XNamespace.
Get
(newNamespaceName);
System\Data\Services\Design\Xml\XNodeSchemaApplier.cs (1)
59
XNamespace xsi = XNamespace.
Get
("http://www.w3.org/2001/XMLSchema-instance");
System.Runtime.DurableInstancing (10)
System\Runtime\DurableInstancing\InstancePersistence.cs (2)
15
static readonly XNamespace activitiesCommandNamespace = XNamespace.
Get
("urn:schemas-microsoft-com:System.Activities.Persistence/command");
16
static readonly XNamespace activitiesEventNamespace = XNamespace.
Get
("urn:schemas-microsoft-com:System.Activities.Persistence/event");
System\Runtime\PersistenceMetadataNamespace.cs (2)
13
static readonly XNamespace persistenceMetadataNamespace = XNamespace.
Get
(baseNamespace);
47
static readonly XNamespace activationNamespace = XNamespace.
Get
(baseNamespace);
System\Runtime\Workflow45Namespace.cs (1)
13
static readonly XNamespace workflow45Namespace = XNamespace.
Get
(baseNamespace);
System\Runtime\WorkflowNamespace.cs (3)
13
static readonly XNamespace workflowNamespace = XNamespace.
Get
(baseNamespace);
14
static readonly XNamespace variablesNamespace = XNamespace.
Get
(baseNamespace + "/variables");
15
static readonly XNamespace outputNamespace = XNamespace.
Get
(baseNamespace + "/output");
System\Runtime\WorkflowServiceNamespace.cs (2)
13
static readonly XNamespace workflowServiceNamespace = XNamespace.
Get
(baseNamespace);
14
static readonly XNamespace endpointsNamespace = XNamespace.
Get
(baseNamespace + "/endpoints");
System.ServiceModel (1)
System\ServiceModel\Channels\CorrelationKey.cs (1)
20
static readonly XNamespace CorrelationNamespace = XNamespace.
Get
("urn:microsoft-com:correlation");
System.ServiceModel.Activities (4)
System\ServiceModel\Activities\Description\CorrelationQueryBehavior.cs (1)
127
this.ScopeName = XNamespace.
Get
(description.Namespace).GetName(description.Name);
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (1)
45
InstanceValue sentinel = new InstanceValue(XNamespace.
Get
("http://tempuri.org").GetName("Sentinel"));
System\ServiceModel\Activities\WorkflowServiceHost.cs (2)
495
this.DurableInstancingOptions.ScopeName = XNamespace.
Get
(this.Description.Namespace).GetName(this.Description.Name);
503
this.ServiceName = XNamespace.
Get
(this.Description.Namespace).GetName(this.Description.Name);
System.Xml.Linq (14)
System\Xml\Linq\XLinq.cs (12)
109
return XNamespace.
Get
(namespaceName).GetName(localName);
337
return namespaceName != null ?
Get
(namespaceName) : null;
3418
this.ns = XNamespace.
Get
(namespaceName);
3774
return namespaceName != null ? XNamespace.
Get
(namespaceName) : XNamespace.None;
3788
if (namespaceName != null) return XNamespace.
Get
(namespaceName);
5068
name = XNamespace.
Get
(r.NamespaceURI).GetName(r.LocalName);
5084
XAttribute a = new XAttribute(XNamespace.
Get
(r.Prefix.Length == 0 ? string.Empty : r.NamespaceURI).GetName(r.LocalName), r.Value);
5204
resolver.AddFirst(a.Name.NamespaceName.Length == 0 ? string.Empty : a.Name.LocalName, XNamespace.
Get
(a.Value));
5218
resolver.Add(a.Name.NamespaceName.Length == 0 ? string.Empty : a.Name.LocalName, XNamespace.
Get
(a.Value));
7440
resolver.Add(a.Name.NamespaceName.Length == 0 ? string.Empty : a.Name.LocalName, XNamespace.
Get
(a.Value));
7992
attrName = XNamespace.
Get
(prefix.Length == 0 ? string.Empty : namespaceName).GetName(localName);
8003
AddNode(new XElement(XNamespace.
Get
(namespaceName).GetName(localName)));
System\Xml\Linq\XNodeValidator.cs (2)
30
XNamespace xsi = XNamespace.
Get
("http://www.w3.org/2001/XMLSchema-instance");
234
a = new XAttribute(XNamespace.
Get
(sa.QualifiedName.Namespace).GetName(sa.QualifiedName.Name), GetDefaultValue(sa));