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